xref: /openbmc/linux/drivers/scsi/hpsa.c (revision b9092b79ccaf4404509d6aeb2c76eb7cbfa57bf1)
1edd16368SStephen M. Cameron /*
2edd16368SStephen M. Cameron  *    Disk Array driver for HP Smart Array SAS controllers
31358f6dcSDon Brace  *    Copyright 2014-2015 PMC-Sierra, Inc.
41358f6dcSDon Brace  *    Copyright 2000,2009-2015 Hewlett-Packard Development Company, L.P.
5edd16368SStephen M. Cameron  *
6edd16368SStephen M. Cameron  *    This program is free software; you can redistribute it and/or modify
7edd16368SStephen M. Cameron  *    it under the terms of the GNU General Public License as published by
8edd16368SStephen M. Cameron  *    the Free Software Foundation; version 2 of the License.
9edd16368SStephen M. Cameron  *
10edd16368SStephen M. Cameron  *    This program is distributed in the hope that it will be useful,
11edd16368SStephen M. Cameron  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
12edd16368SStephen M. Cameron  *    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13edd16368SStephen M. Cameron  *    NON INFRINGEMENT.  See the GNU General Public License for more details.
14edd16368SStephen M. Cameron  *
151358f6dcSDon Brace  *    Questions/Comments/Bugfixes to storagedev@pmcs.com
16edd16368SStephen M. Cameron  *
17edd16368SStephen M. Cameron  */
18edd16368SStephen M. Cameron 
19edd16368SStephen M. Cameron #include <linux/module.h>
20edd16368SStephen M. Cameron #include <linux/interrupt.h>
21edd16368SStephen M. Cameron #include <linux/types.h>
22edd16368SStephen M. Cameron #include <linux/pci.h>
23e5a44df8SMatthew Garrett #include <linux/pci-aspm.h>
24edd16368SStephen M. Cameron #include <linux/kernel.h>
25edd16368SStephen M. Cameron #include <linux/slab.h>
26edd16368SStephen M. Cameron #include <linux/delay.h>
27edd16368SStephen M. Cameron #include <linux/fs.h>
28edd16368SStephen M. Cameron #include <linux/timer.h>
29edd16368SStephen M. Cameron #include <linux/init.h>
30edd16368SStephen M. Cameron #include <linux/spinlock.h>
31edd16368SStephen M. Cameron #include <linux/compat.h>
32edd16368SStephen M. Cameron #include <linux/blktrace_api.h>
33edd16368SStephen M. Cameron #include <linux/uaccess.h>
34edd16368SStephen M. Cameron #include <linux/io.h>
35edd16368SStephen M. Cameron #include <linux/dma-mapping.h>
36edd16368SStephen M. Cameron #include <linux/completion.h>
37edd16368SStephen M. Cameron #include <linux/moduleparam.h>
38edd16368SStephen M. Cameron #include <scsi/scsi.h>
39edd16368SStephen M. Cameron #include <scsi/scsi_cmnd.h>
40edd16368SStephen M. Cameron #include <scsi/scsi_device.h>
41edd16368SStephen M. Cameron #include <scsi/scsi_host.h>
42667e23d4SStephen M. Cameron #include <scsi/scsi_tcq.h>
439437ac43SStephen Cameron #include <scsi/scsi_eh.h>
4473153fe5SWebb Scales #include <scsi/scsi_dbg.h>
45edd16368SStephen M. Cameron #include <linux/cciss_ioctl.h>
46edd16368SStephen M. Cameron #include <linux/string.h>
47edd16368SStephen M. Cameron #include <linux/bitmap.h>
4860063497SArun Sharma #include <linux/atomic.h>
49a0c12413SStephen M. Cameron #include <linux/jiffies.h>
5042a91641SDon Brace #include <linux/percpu-defs.h>
51094963daSStephen M. Cameron #include <linux/percpu.h>
522b08b3e9SDon Brace #include <asm/unaligned.h>
53283b4a9bSStephen M. Cameron #include <asm/div64.h>
54edd16368SStephen M. Cameron #include "hpsa_cmd.h"
55edd16368SStephen M. Cameron #include "hpsa.h"
56edd16368SStephen M. Cameron 
57edd16368SStephen M. Cameron /* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */
58f532a3f9SDon Brace #define HPSA_DRIVER_VERSION "3.4.10-0"
59edd16368SStephen M. Cameron #define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")"
60f79cfec6SStephen M. Cameron #define HPSA "hpsa"
61edd16368SStephen M. Cameron 
62007e7aa9SRobert Elliott /* How long to wait for CISS doorbell communication */
63007e7aa9SRobert Elliott #define CLEAR_EVENT_WAIT_INTERVAL 20	/* ms for each msleep() call */
64007e7aa9SRobert Elliott #define MODE_CHANGE_WAIT_INTERVAL 10	/* ms for each msleep() call */
65007e7aa9SRobert Elliott #define MAX_CLEAR_EVENT_WAIT 30000	/* times 20 ms = 600 s */
66007e7aa9SRobert Elliott #define MAX_MODE_CHANGE_WAIT 2000	/* times 10 ms = 20 s */
67edd16368SStephen M. Cameron #define MAX_IOCTL_CONFIG_WAIT 1000
68edd16368SStephen M. Cameron 
69edd16368SStephen M. Cameron /*define how many times we will try a command because of bus resets */
70edd16368SStephen M. Cameron #define MAX_CMD_RETRIES 3
71edd16368SStephen M. Cameron 
72edd16368SStephen M. Cameron /* Embedded module documentation macros - see modules.h */
73edd16368SStephen M. Cameron MODULE_AUTHOR("Hewlett-Packard Company");
74edd16368SStephen M. Cameron MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \
75edd16368SStephen M. Cameron 	HPSA_DRIVER_VERSION);
76edd16368SStephen M. Cameron MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers");
77edd16368SStephen M. Cameron MODULE_VERSION(HPSA_DRIVER_VERSION);
78edd16368SStephen M. Cameron MODULE_LICENSE("GPL");
79edd16368SStephen M. Cameron 
80edd16368SStephen M. Cameron static int hpsa_allow_any;
81edd16368SStephen M. Cameron module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR);
82edd16368SStephen M. Cameron MODULE_PARM_DESC(hpsa_allow_any,
83edd16368SStephen M. Cameron 		"Allow hpsa driver to access unknown HP Smart Array hardware");
8402ec19c8SStephen M. Cameron static int hpsa_simple_mode;
8502ec19c8SStephen M. Cameron module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR);
8602ec19c8SStephen M. Cameron MODULE_PARM_DESC(hpsa_simple_mode,
8702ec19c8SStephen M. Cameron 	"Use 'simple mode' rather than 'performant mode'");
88edd16368SStephen M. Cameron 
89edd16368SStephen M. Cameron /* define the PCI info for the cards we can control */
90edd16368SStephen M. Cameron static const struct pci_device_id hpsa_pci_device_id[] = {
91edd16368SStephen M. Cameron 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSE,     0x103C, 0x3241},
92edd16368SStephen M. Cameron 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSE,     0x103C, 0x3243},
93edd16368SStephen M. Cameron 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSE,     0x103C, 0x3245},
94edd16368SStephen M. Cameron 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSE,     0x103C, 0x3247},
95edd16368SStephen M. Cameron 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSE,     0x103C, 0x3249},
96163dbcd8SMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSE,     0x103C, 0x324A},
97163dbcd8SMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSE,     0x103C, 0x324B},
98f8b01eb9SMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSE,     0x103C, 0x3233},
999143a961Sscameron@beardog.cce.hp.com 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSF,     0x103C, 0x3350},
1009143a961Sscameron@beardog.cce.hp.com 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSF,     0x103C, 0x3351},
1019143a961Sscameron@beardog.cce.hp.com 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSF,     0x103C, 0x3352},
1029143a961Sscameron@beardog.cce.hp.com 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSF,     0x103C, 0x3353},
1039143a961Sscameron@beardog.cce.hp.com 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSF,     0x103C, 0x3354},
1049143a961Sscameron@beardog.cce.hp.com 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSF,     0x103C, 0x3355},
1059143a961Sscameron@beardog.cce.hp.com 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSF,     0x103C, 0x3356},
106fe0c9610SMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSH,     0x103C, 0x1921},
107fe0c9610SMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSH,     0x103C, 0x1922},
108fe0c9610SMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSH,     0x103C, 0x1923},
109fe0c9610SMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSH,     0x103C, 0x1924},
110fe0c9610SMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSH,     0x103C, 0x1926},
111fe0c9610SMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSH,     0x103C, 0x1928},
11297b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSH,     0x103C, 0x1929},
11397b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21BD},
11497b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21BE},
11597b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21BF},
11697b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C0},
11797b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C1},
11897b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C2},
11997b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C3},
12097b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C4},
12197b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C5},
1223b7a45e5SJoe Handzik 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C6},
12397b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C7},
12497b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C8},
12597b9f53dSMike Miller 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21C9},
1263b7a45e5SJoe Handzik 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21CA},
1273b7a45e5SJoe Handzik 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21CB},
1283b7a45e5SJoe Handzik 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21CC},
1293b7a45e5SJoe Handzik 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21CD},
1303b7a45e5SJoe Handzik 	{PCI_VENDOR_ID_HP,     PCI_DEVICE_ID_HP_CISSI,     0x103C, 0x21CE},
131fdfa4b6dSDon Brace 	{PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0580},
132cbb47dcbSDon Brace 	{PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0581},
133cbb47dcbSDon Brace 	{PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0582},
134cbb47dcbSDon Brace 	{PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0583},
135cbb47dcbSDon Brace 	{PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0584},
136cbb47dcbSDon Brace 	{PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0585},
1378e616a5eSStephen M. Cameron 	{PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076},
1388e616a5eSStephen M. Cameron 	{PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087},
1398e616a5eSStephen M. Cameron 	{PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D},
1408e616a5eSStephen M. Cameron 	{PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088},
1418e616a5eSStephen M. Cameron 	{PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f},
142edd16368SStephen M. Cameron 	{PCI_VENDOR_ID_HP,     PCI_ANY_ID,	PCI_ANY_ID, PCI_ANY_ID,
143edd16368SStephen M. Cameron 		PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0},
144edd16368SStephen M. Cameron 	{0,}
145edd16368SStephen M. Cameron };
146edd16368SStephen M. Cameron 
147edd16368SStephen M. Cameron MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id);
148edd16368SStephen M. Cameron 
149edd16368SStephen M. Cameron /*  board_id = Subsystem Device ID & Vendor ID
150edd16368SStephen M. Cameron  *  product = Marketing Name for the board
151edd16368SStephen M. Cameron  *  access = Address of the struct of function pointers
152edd16368SStephen M. Cameron  */
153edd16368SStephen M. Cameron static struct board_type products[] = {
154edd16368SStephen M. Cameron 	{0x3241103C, "Smart Array P212", &SA5_access},
155edd16368SStephen M. Cameron 	{0x3243103C, "Smart Array P410", &SA5_access},
156edd16368SStephen M. Cameron 	{0x3245103C, "Smart Array P410i", &SA5_access},
157edd16368SStephen M. Cameron 	{0x3247103C, "Smart Array P411", &SA5_access},
158edd16368SStephen M. Cameron 	{0x3249103C, "Smart Array P812", &SA5_access},
159163dbcd8SMike Miller 	{0x324A103C, "Smart Array P712m", &SA5_access},
160163dbcd8SMike Miller 	{0x324B103C, "Smart Array P711m", &SA5_access},
1617d2cce58SStephen M. Cameron 	{0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */
162fe0c9610SMike Miller 	{0x3350103C, "Smart Array P222", &SA5_access},
163fe0c9610SMike Miller 	{0x3351103C, "Smart Array P420", &SA5_access},
164fe0c9610SMike Miller 	{0x3352103C, "Smart Array P421", &SA5_access},
165fe0c9610SMike Miller 	{0x3353103C, "Smart Array P822", &SA5_access},
166fe0c9610SMike Miller 	{0x3354103C, "Smart Array P420i", &SA5_access},
167fe0c9610SMike Miller 	{0x3355103C, "Smart Array P220i", &SA5_access},
168fe0c9610SMike Miller 	{0x3356103C, "Smart Array P721m", &SA5_access},
1691fd6c8e3SMike Miller 	{0x1921103C, "Smart Array P830i", &SA5_access},
1701fd6c8e3SMike Miller 	{0x1922103C, "Smart Array P430", &SA5_access},
1711fd6c8e3SMike Miller 	{0x1923103C, "Smart Array P431", &SA5_access},
1721fd6c8e3SMike Miller 	{0x1924103C, "Smart Array P830", &SA5_access},
1731fd6c8e3SMike Miller 	{0x1926103C, "Smart Array P731m", &SA5_access},
1741fd6c8e3SMike Miller 	{0x1928103C, "Smart Array P230i", &SA5_access},
1751fd6c8e3SMike Miller 	{0x1929103C, "Smart Array P530", &SA5_access},
17627fb8137SDon Brace 	{0x21BD103C, "Smart Array P244br", &SA5_access},
17727fb8137SDon Brace 	{0x21BE103C, "Smart Array P741m", &SA5_access},
17827fb8137SDon Brace 	{0x21BF103C, "Smart HBA H240ar", &SA5_access},
17927fb8137SDon Brace 	{0x21C0103C, "Smart Array P440ar", &SA5_access},
180c8ae0ab1SDon Brace 	{0x21C1103C, "Smart Array P840ar", &SA5_access},
18127fb8137SDon Brace 	{0x21C2103C, "Smart Array P440", &SA5_access},
18227fb8137SDon Brace 	{0x21C3103C, "Smart Array P441", &SA5_access},
18397b9f53dSMike Miller 	{0x21C4103C, "Smart Array", &SA5_access},
18427fb8137SDon Brace 	{0x21C5103C, "Smart Array P841", &SA5_access},
18527fb8137SDon Brace 	{0x21C6103C, "Smart HBA H244br", &SA5_access},
18627fb8137SDon Brace 	{0x21C7103C, "Smart HBA H240", &SA5_access},
18727fb8137SDon Brace 	{0x21C8103C, "Smart HBA H241", &SA5_access},
18897b9f53dSMike Miller 	{0x21C9103C, "Smart Array", &SA5_access},
18927fb8137SDon Brace 	{0x21CA103C, "Smart Array P246br", &SA5_access},
19027fb8137SDon Brace 	{0x21CB103C, "Smart Array P840", &SA5_access},
1913b7a45e5SJoe Handzik 	{0x21CC103C, "Smart Array", &SA5_access},
1923b7a45e5SJoe Handzik 	{0x21CD103C, "Smart Array", &SA5_access},
19327fb8137SDon Brace 	{0x21CE103C, "Smart HBA", &SA5_access},
194fdfa4b6dSDon Brace 	{0x05809005, "SmartHBA-SA", &SA5_access},
195cbb47dcbSDon Brace 	{0x05819005, "SmartHBA-SA 8i", &SA5_access},
196cbb47dcbSDon Brace 	{0x05829005, "SmartHBA-SA 8i8e", &SA5_access},
197cbb47dcbSDon Brace 	{0x05839005, "SmartHBA-SA 8e", &SA5_access},
198cbb47dcbSDon Brace 	{0x05849005, "SmartHBA-SA 16i", &SA5_access},
199cbb47dcbSDon Brace 	{0x05859005, "SmartHBA-SA 4i4e", &SA5_access},
2008e616a5eSStephen M. Cameron 	{0x00761590, "HP Storage P1224 Array Controller", &SA5_access},
2018e616a5eSStephen M. Cameron 	{0x00871590, "HP Storage P1224e Array Controller", &SA5_access},
2028e616a5eSStephen M. Cameron 	{0x007D1590, "HP Storage P1228 Array Controller", &SA5_access},
2038e616a5eSStephen M. Cameron 	{0x00881590, "HP Storage P1228e Array Controller", &SA5_access},
2048e616a5eSStephen M. Cameron 	{0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access},
205edd16368SStephen M. Cameron 	{0xFFFF103C, "Unknown Smart Array", &SA5_access},
206edd16368SStephen M. Cameron };
207edd16368SStephen M. Cameron 
208a58e7e53SWebb Scales #define SCSI_CMD_BUSY ((struct scsi_cmnd *)&hpsa_cmd_busy)
209a58e7e53SWebb Scales static const struct scsi_cmnd hpsa_cmd_busy;
210a58e7e53SWebb Scales #define SCSI_CMD_IDLE ((struct scsi_cmnd *)&hpsa_cmd_idle)
211a58e7e53SWebb Scales static const struct scsi_cmnd hpsa_cmd_idle;
212edd16368SStephen M. Cameron static int number_of_controllers;
213edd16368SStephen M. Cameron 
21410f66018SStephen M. Cameron static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id);
21510f66018SStephen M. Cameron static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id);
21642a91641SDon Brace static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
217edd16368SStephen M. Cameron 
218edd16368SStephen M. Cameron #ifdef CONFIG_COMPAT
21942a91641SDon Brace static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd,
22042a91641SDon Brace 	void __user *arg);
221edd16368SStephen M. Cameron #endif
222edd16368SStephen M. Cameron 
223edd16368SStephen M. Cameron static void cmd_free(struct ctlr_info *h, struct CommandList *c);
224edd16368SStephen M. Cameron static struct CommandList *cmd_alloc(struct ctlr_info *h);
22573153fe5SWebb Scales static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c);
22673153fe5SWebb Scales static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
22773153fe5SWebb Scales 					    struct scsi_cmnd *scmd);
228a2dac136SStephen M. Cameron static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
229b7bb24ebSStephen M. Cameron 	void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
230edd16368SStephen M. Cameron 	int cmd_type);
2312c143342SRobert Elliott static void hpsa_free_cmd_pool(struct ctlr_info *h);
232b7bb24ebSStephen M. Cameron #define VPD_PAGE (1 << 8)
233edd16368SStephen M. Cameron 
234f281233dSJeff Garzik static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd);
235a08a8471SStephen M. Cameron static void hpsa_scan_start(struct Scsi_Host *);
236a08a8471SStephen M. Cameron static int hpsa_scan_finished(struct Scsi_Host *sh,
237a08a8471SStephen M. Cameron 	unsigned long elapsed_time);
2387c0a0229SDon Brace static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth);
239edd16368SStephen M. Cameron 
240edd16368SStephen M. Cameron static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd);
24175167d2cSStephen M. Cameron static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd);
242edd16368SStephen M. Cameron static int hpsa_slave_alloc(struct scsi_device *sdev);
24341ce4c35SStephen Cameron static int hpsa_slave_configure(struct scsi_device *sdev);
244edd16368SStephen M. Cameron static void hpsa_slave_destroy(struct scsi_device *sdev);
245edd16368SStephen M. Cameron 
246edd16368SStephen M. Cameron static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno);
247edd16368SStephen M. Cameron static int check_for_unit_attention(struct ctlr_info *h,
248edd16368SStephen M. Cameron 	struct CommandList *c);
249edd16368SStephen M. Cameron static void check_ioctl_unit_attention(struct ctlr_info *h,
250edd16368SStephen M. Cameron 	struct CommandList *c);
251303932fdSDon Brace /* performant mode helper functions */
252303932fdSDon Brace static void calc_bucket_map(int *bucket, int num_buckets,
2532b08b3e9SDon Brace 	int nsgs, int min_blocks, u32 *bucket_map);
254105a3dbcSRobert Elliott static void hpsa_free_performant_mode(struct ctlr_info *h);
255105a3dbcSRobert Elliott static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h);
256254f796bSMatt Gates static inline u32 next_command(struct ctlr_info *h, u8 q);
2576f039790SGreg Kroah-Hartman static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
2586f039790SGreg Kroah-Hartman 			       u32 *cfg_base_addr, u64 *cfg_base_addr_index,
2591df8552aSStephen M. Cameron 			       u64 *cfg_offset);
2606f039790SGreg Kroah-Hartman static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
2611df8552aSStephen M. Cameron 				    unsigned long *memory_bar);
2626f039790SGreg Kroah-Hartman static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id);
2636f039790SGreg Kroah-Hartman static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
2646f039790SGreg Kroah-Hartman 				     int wait_for_ready);
26575167d2cSStephen M. Cameron static inline void finish_cmd(struct CommandList *c);
266c706a795SRobert Elliott static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h);
267fe5389c8SStephen M. Cameron #define BOARD_NOT_READY 0
268fe5389c8SStephen M. Cameron #define BOARD_READY 1
26923100dd9SStephen M. Cameron static void hpsa_drain_accel_commands(struct ctlr_info *h);
27076438d08SStephen M. Cameron static void hpsa_flush_cache(struct ctlr_info *h);
271c349775eSScott Teel static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
272c349775eSScott Teel 	struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
27303383736SDon Brace 	u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk);
274080ef1ccSDon Brace static void hpsa_command_resubmit_worker(struct work_struct *work);
27525163bd5SWebb Scales static u32 lockup_detected(struct ctlr_info *h);
27625163bd5SWebb Scales static int detect_controller_lockup(struct ctlr_info *h);
2778270b862SJoe Handzik static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device);
278edd16368SStephen M. Cameron 
279edd16368SStephen M. Cameron static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev)
280edd16368SStephen M. Cameron {
281edd16368SStephen M. Cameron 	unsigned long *priv = shost_priv(sdev->host);
282edd16368SStephen M. Cameron 	return (struct ctlr_info *) *priv;
283edd16368SStephen M. Cameron }
284edd16368SStephen M. Cameron 
285a23513e8SStephen M. Cameron static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh)
286a23513e8SStephen M. Cameron {
287a23513e8SStephen M. Cameron 	unsigned long *priv = shost_priv(sh);
288a23513e8SStephen M. Cameron 	return (struct ctlr_info *) *priv;
289a23513e8SStephen M. Cameron }
290a23513e8SStephen M. Cameron 
291a58e7e53SWebb Scales static inline bool hpsa_is_cmd_idle(struct CommandList *c)
292a58e7e53SWebb Scales {
293a58e7e53SWebb Scales 	return c->scsi_cmd == SCSI_CMD_IDLE;
294a58e7e53SWebb Scales }
295a58e7e53SWebb Scales 
296d604f533SWebb Scales static inline bool hpsa_is_pending_event(struct CommandList *c)
297d604f533SWebb Scales {
298d604f533SWebb Scales 	return c->abort_pending || c->reset_pending;
299d604f533SWebb Scales }
300d604f533SWebb Scales 
3019437ac43SStephen Cameron /* extract sense key, asc, and ascq from sense data.  -1 means invalid. */
3029437ac43SStephen Cameron static void decode_sense_data(const u8 *sense_data, int sense_data_len,
3039437ac43SStephen Cameron 			u8 *sense_key, u8 *asc, u8 *ascq)
3049437ac43SStephen Cameron {
3059437ac43SStephen Cameron 	struct scsi_sense_hdr sshdr;
3069437ac43SStephen Cameron 	bool rc;
3079437ac43SStephen Cameron 
3089437ac43SStephen Cameron 	*sense_key = -1;
3099437ac43SStephen Cameron 	*asc = -1;
3109437ac43SStephen Cameron 	*ascq = -1;
3119437ac43SStephen Cameron 
3129437ac43SStephen Cameron 	if (sense_data_len < 1)
3139437ac43SStephen Cameron 		return;
3149437ac43SStephen Cameron 
3159437ac43SStephen Cameron 	rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr);
3169437ac43SStephen Cameron 	if (rc) {
3179437ac43SStephen Cameron 		*sense_key = sshdr.sense_key;
3189437ac43SStephen Cameron 		*asc = sshdr.asc;
3199437ac43SStephen Cameron 		*ascq = sshdr.ascq;
3209437ac43SStephen Cameron 	}
3219437ac43SStephen Cameron }
3229437ac43SStephen Cameron 
323edd16368SStephen M. Cameron static int check_for_unit_attention(struct ctlr_info *h,
324edd16368SStephen M. Cameron 	struct CommandList *c)
325edd16368SStephen M. Cameron {
3269437ac43SStephen Cameron 	u8 sense_key, asc, ascq;
3279437ac43SStephen Cameron 	int sense_len;
3289437ac43SStephen Cameron 
3299437ac43SStephen Cameron 	if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
3309437ac43SStephen Cameron 		sense_len = sizeof(c->err_info->SenseInfo);
3319437ac43SStephen Cameron 	else
3329437ac43SStephen Cameron 		sense_len = c->err_info->SenseLen;
3339437ac43SStephen Cameron 
3349437ac43SStephen Cameron 	decode_sense_data(c->err_info->SenseInfo, sense_len,
3359437ac43SStephen Cameron 				&sense_key, &asc, &ascq);
33681c27557SDon Brace 	if (sense_key != UNIT_ATTENTION || asc == 0xff)
337edd16368SStephen M. Cameron 		return 0;
338edd16368SStephen M. Cameron 
3399437ac43SStephen Cameron 	switch (asc) {
340edd16368SStephen M. Cameron 	case STATE_CHANGED:
3419437ac43SStephen Cameron 		dev_warn(&h->pdev->dev,
3422946e82bSRobert Elliott 			"%s: a state change detected, command retried\n",
3432946e82bSRobert Elliott 			h->devname);
344edd16368SStephen M. Cameron 		break;
345edd16368SStephen M. Cameron 	case LUN_FAILED:
3467f73695aSStephen M. Cameron 		dev_warn(&h->pdev->dev,
3472946e82bSRobert Elliott 			"%s: LUN failure detected\n", h->devname);
348edd16368SStephen M. Cameron 		break;
349edd16368SStephen M. Cameron 	case REPORT_LUNS_CHANGED:
3507f73695aSStephen M. Cameron 		dev_warn(&h->pdev->dev,
3512946e82bSRobert Elliott 			"%s: report LUN data changed\n", h->devname);
352edd16368SStephen M. Cameron 	/*
3534f4eb9f1SScott Teel 	 * Note: this REPORT_LUNS_CHANGED condition only occurs on the external
3544f4eb9f1SScott Teel 	 * target (array) devices.
355edd16368SStephen M. Cameron 	 */
356edd16368SStephen M. Cameron 		break;
357edd16368SStephen M. Cameron 	case POWER_OR_RESET:
3582946e82bSRobert Elliott 		dev_warn(&h->pdev->dev,
3592946e82bSRobert Elliott 			"%s: a power on or device reset detected\n",
3602946e82bSRobert Elliott 			h->devname);
361edd16368SStephen M. Cameron 		break;
362edd16368SStephen M. Cameron 	case UNIT_ATTENTION_CLEARED:
3632946e82bSRobert Elliott 		dev_warn(&h->pdev->dev,
3642946e82bSRobert Elliott 			"%s: unit attention cleared by another initiator\n",
3652946e82bSRobert Elliott 			h->devname);
366edd16368SStephen M. Cameron 		break;
367edd16368SStephen M. Cameron 	default:
3682946e82bSRobert Elliott 		dev_warn(&h->pdev->dev,
3692946e82bSRobert Elliott 			"%s: unknown unit attention detected\n",
3702946e82bSRobert Elliott 			h->devname);
371edd16368SStephen M. Cameron 		break;
372edd16368SStephen M. Cameron 	}
373edd16368SStephen M. Cameron 	return 1;
374edd16368SStephen M. Cameron }
375edd16368SStephen M. Cameron 
376852af20aSMatt Bondurant static int check_for_busy(struct ctlr_info *h, struct CommandList *c)
377852af20aSMatt Bondurant {
378852af20aSMatt Bondurant 	if (c->err_info->CommandStatus != CMD_TARGET_STATUS ||
379852af20aSMatt Bondurant 		(c->err_info->ScsiStatus != SAM_STAT_BUSY &&
380852af20aSMatt Bondurant 		 c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL))
381852af20aSMatt Bondurant 		return 0;
382852af20aSMatt Bondurant 	dev_warn(&h->pdev->dev, HPSA "device busy");
383852af20aSMatt Bondurant 	return 1;
384852af20aSMatt Bondurant }
385852af20aSMatt Bondurant 
386e985c58fSStephen Cameron static u32 lockup_detected(struct ctlr_info *h);
387e985c58fSStephen Cameron static ssize_t host_show_lockup_detected(struct device *dev,
388e985c58fSStephen Cameron 		struct device_attribute *attr, char *buf)
389e985c58fSStephen Cameron {
390e985c58fSStephen Cameron 	int ld;
391e985c58fSStephen Cameron 	struct ctlr_info *h;
392e985c58fSStephen Cameron 	struct Scsi_Host *shost = class_to_shost(dev);
393e985c58fSStephen Cameron 
394e985c58fSStephen Cameron 	h = shost_to_hba(shost);
395e985c58fSStephen Cameron 	ld = lockup_detected(h);
396e985c58fSStephen Cameron 
397e985c58fSStephen Cameron 	return sprintf(buf, "ld=%d\n", ld);
398e985c58fSStephen Cameron }
399e985c58fSStephen Cameron 
400da0697bdSScott Teel static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev,
401da0697bdSScott Teel 					 struct device_attribute *attr,
402da0697bdSScott Teel 					 const char *buf, size_t count)
403da0697bdSScott Teel {
404da0697bdSScott Teel 	int status, len;
405da0697bdSScott Teel 	struct ctlr_info *h;
406da0697bdSScott Teel 	struct Scsi_Host *shost = class_to_shost(dev);
407da0697bdSScott Teel 	char tmpbuf[10];
408da0697bdSScott Teel 
409da0697bdSScott Teel 	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
410da0697bdSScott Teel 		return -EACCES;
411da0697bdSScott Teel 	len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
412da0697bdSScott Teel 	strncpy(tmpbuf, buf, len);
413da0697bdSScott Teel 	tmpbuf[len] = '\0';
414da0697bdSScott Teel 	if (sscanf(tmpbuf, "%d", &status) != 1)
415da0697bdSScott Teel 		return -EINVAL;
416da0697bdSScott Teel 	h = shost_to_hba(shost);
417da0697bdSScott Teel 	h->acciopath_status = !!status;
418da0697bdSScott Teel 	dev_warn(&h->pdev->dev,
419da0697bdSScott Teel 		"hpsa: HP SSD Smart Path %s via sysfs update.\n",
420da0697bdSScott Teel 		h->acciopath_status ? "enabled" : "disabled");
421da0697bdSScott Teel 	return count;
422da0697bdSScott Teel }
423da0697bdSScott Teel 
4242ba8bfc8SStephen M. Cameron static ssize_t host_store_raid_offload_debug(struct device *dev,
4252ba8bfc8SStephen M. Cameron 					 struct device_attribute *attr,
4262ba8bfc8SStephen M. Cameron 					 const char *buf, size_t count)
4272ba8bfc8SStephen M. Cameron {
4282ba8bfc8SStephen M. Cameron 	int debug_level, len;
4292ba8bfc8SStephen M. Cameron 	struct ctlr_info *h;
4302ba8bfc8SStephen M. Cameron 	struct Scsi_Host *shost = class_to_shost(dev);
4312ba8bfc8SStephen M. Cameron 	char tmpbuf[10];
4322ba8bfc8SStephen M. Cameron 
4332ba8bfc8SStephen M. Cameron 	if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
4342ba8bfc8SStephen M. Cameron 		return -EACCES;
4352ba8bfc8SStephen M. Cameron 	len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count;
4362ba8bfc8SStephen M. Cameron 	strncpy(tmpbuf, buf, len);
4372ba8bfc8SStephen M. Cameron 	tmpbuf[len] = '\0';
4382ba8bfc8SStephen M. Cameron 	if (sscanf(tmpbuf, "%d", &debug_level) != 1)
4392ba8bfc8SStephen M. Cameron 		return -EINVAL;
4402ba8bfc8SStephen M. Cameron 	if (debug_level < 0)
4412ba8bfc8SStephen M. Cameron 		debug_level = 0;
4422ba8bfc8SStephen M. Cameron 	h = shost_to_hba(shost);
4432ba8bfc8SStephen M. Cameron 	h->raid_offload_debug = debug_level;
4442ba8bfc8SStephen M. Cameron 	dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n",
4452ba8bfc8SStephen M. Cameron 		h->raid_offload_debug);
4462ba8bfc8SStephen M. Cameron 	return count;
4472ba8bfc8SStephen M. Cameron }
4482ba8bfc8SStephen M. Cameron 
449edd16368SStephen M. Cameron static ssize_t host_store_rescan(struct device *dev,
450edd16368SStephen M. Cameron 				 struct device_attribute *attr,
451edd16368SStephen M. Cameron 				 const char *buf, size_t count)
452edd16368SStephen M. Cameron {
453edd16368SStephen M. Cameron 	struct ctlr_info *h;
454edd16368SStephen M. Cameron 	struct Scsi_Host *shost = class_to_shost(dev);
455a23513e8SStephen M. Cameron 	h = shost_to_hba(shost);
45631468401SMike Miller 	hpsa_scan_start(h->scsi_host);
457edd16368SStephen M. Cameron 	return count;
458edd16368SStephen M. Cameron }
459edd16368SStephen M. Cameron 
460d28ce020SStephen M. Cameron static ssize_t host_show_firmware_revision(struct device *dev,
461d28ce020SStephen M. Cameron 	     struct device_attribute *attr, char *buf)
462d28ce020SStephen M. Cameron {
463d28ce020SStephen M. Cameron 	struct ctlr_info *h;
464d28ce020SStephen M. Cameron 	struct Scsi_Host *shost = class_to_shost(dev);
465d28ce020SStephen M. Cameron 	unsigned char *fwrev;
466d28ce020SStephen M. Cameron 
467d28ce020SStephen M. Cameron 	h = shost_to_hba(shost);
468d28ce020SStephen M. Cameron 	if (!h->hba_inquiry_data)
469d28ce020SStephen M. Cameron 		return 0;
470d28ce020SStephen M. Cameron 	fwrev = &h->hba_inquiry_data[32];
471d28ce020SStephen M. Cameron 	return snprintf(buf, 20, "%c%c%c%c\n",
472d28ce020SStephen M. Cameron 		fwrev[0], fwrev[1], fwrev[2], fwrev[3]);
473d28ce020SStephen M. Cameron }
474d28ce020SStephen M. Cameron 
47594a13649SStephen M. Cameron static ssize_t host_show_commands_outstanding(struct device *dev,
47694a13649SStephen M. Cameron 	     struct device_attribute *attr, char *buf)
47794a13649SStephen M. Cameron {
47894a13649SStephen M. Cameron 	struct Scsi_Host *shost = class_to_shost(dev);
47994a13649SStephen M. Cameron 	struct ctlr_info *h = shost_to_hba(shost);
48094a13649SStephen M. Cameron 
4810cbf768eSStephen M. Cameron 	return snprintf(buf, 20, "%d\n",
4820cbf768eSStephen M. Cameron 			atomic_read(&h->commands_outstanding));
48394a13649SStephen M. Cameron }
48494a13649SStephen M. Cameron 
485745a7a25SStephen M. Cameron static ssize_t host_show_transport_mode(struct device *dev,
486745a7a25SStephen M. Cameron 	struct device_attribute *attr, char *buf)
487745a7a25SStephen M. Cameron {
488745a7a25SStephen M. Cameron 	struct ctlr_info *h;
489745a7a25SStephen M. Cameron 	struct Scsi_Host *shost = class_to_shost(dev);
490745a7a25SStephen M. Cameron 
491745a7a25SStephen M. Cameron 	h = shost_to_hba(shost);
492745a7a25SStephen M. Cameron 	return snprintf(buf, 20, "%s\n",
493960a30e7SStephen M. Cameron 		h->transMethod & CFGTBL_Trans_Performant ?
494745a7a25SStephen M. Cameron 			"performant" : "simple");
495745a7a25SStephen M. Cameron }
496745a7a25SStephen M. Cameron 
497da0697bdSScott Teel static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev,
498da0697bdSScott Teel 	struct device_attribute *attr, char *buf)
499da0697bdSScott Teel {
500da0697bdSScott Teel 	struct ctlr_info *h;
501da0697bdSScott Teel 	struct Scsi_Host *shost = class_to_shost(dev);
502da0697bdSScott Teel 
503da0697bdSScott Teel 	h = shost_to_hba(shost);
504da0697bdSScott Teel 	return snprintf(buf, 30, "HP SSD Smart Path %s\n",
505da0697bdSScott Teel 		(h->acciopath_status == 1) ?  "enabled" : "disabled");
506da0697bdSScott Teel }
507da0697bdSScott Teel 
50846380786SStephen M. Cameron /* List of controllers which cannot be hard reset on kexec with reset_devices */
509941b1cdaSStephen M. Cameron static u32 unresettable_controller[] = {
510941b1cdaSStephen M. Cameron 	0x324a103C, /* Smart Array P712m */
511941b1cdaSStephen M. Cameron 	0x324b103C, /* Smart Array P711m */
512941b1cdaSStephen M. Cameron 	0x3223103C, /* Smart Array P800 */
513941b1cdaSStephen M. Cameron 	0x3234103C, /* Smart Array P400 */
514941b1cdaSStephen M. Cameron 	0x3235103C, /* Smart Array P400i */
515941b1cdaSStephen M. Cameron 	0x3211103C, /* Smart Array E200i */
516941b1cdaSStephen M. Cameron 	0x3212103C, /* Smart Array E200 */
517941b1cdaSStephen M. Cameron 	0x3213103C, /* Smart Array E200i */
518941b1cdaSStephen M. Cameron 	0x3214103C, /* Smart Array E200i */
519941b1cdaSStephen M. Cameron 	0x3215103C, /* Smart Array E200i */
520941b1cdaSStephen M. Cameron 	0x3237103C, /* Smart Array E500 */
521941b1cdaSStephen M. Cameron 	0x323D103C, /* Smart Array P700m */
5227af0abbcSTomas Henzl 	0x40800E11, /* Smart Array 5i */
523941b1cdaSStephen M. Cameron 	0x409C0E11, /* Smart Array 6400 */
524941b1cdaSStephen M. Cameron 	0x409D0E11, /* Smart Array 6400 EM */
5255a4f934eSTomas Henzl 	0x40700E11, /* Smart Array 5300 */
5265a4f934eSTomas Henzl 	0x40820E11, /* Smart Array 532 */
5275a4f934eSTomas Henzl 	0x40830E11, /* Smart Array 5312 */
5285a4f934eSTomas Henzl 	0x409A0E11, /* Smart Array 641 */
5295a4f934eSTomas Henzl 	0x409B0E11, /* Smart Array 642 */
5305a4f934eSTomas Henzl 	0x40910E11, /* Smart Array 6i */
531941b1cdaSStephen M. Cameron };
532941b1cdaSStephen M. Cameron 
53346380786SStephen M. Cameron /* List of controllers which cannot even be soft reset */
53446380786SStephen M. Cameron static u32 soft_unresettable_controller[] = {
5357af0abbcSTomas Henzl 	0x40800E11, /* Smart Array 5i */
5365a4f934eSTomas Henzl 	0x40700E11, /* Smart Array 5300 */
5375a4f934eSTomas Henzl 	0x40820E11, /* Smart Array 532 */
5385a4f934eSTomas Henzl 	0x40830E11, /* Smart Array 5312 */
5395a4f934eSTomas Henzl 	0x409A0E11, /* Smart Array 641 */
5405a4f934eSTomas Henzl 	0x409B0E11, /* Smart Array 642 */
5415a4f934eSTomas Henzl 	0x40910E11, /* Smart Array 6i */
54246380786SStephen M. Cameron 	/* Exclude 640x boards.  These are two pci devices in one slot
54346380786SStephen M. Cameron 	 * which share a battery backed cache module.  One controls the
54446380786SStephen M. Cameron 	 * cache, the other accesses the cache through the one that controls
54546380786SStephen M. Cameron 	 * it.  If we reset the one controlling the cache, the other will
54646380786SStephen M. Cameron 	 * likely not be happy.  Just forbid resetting this conjoined mess.
54746380786SStephen M. Cameron 	 * The 640x isn't really supported by hpsa anyway.
54846380786SStephen M. Cameron 	 */
54946380786SStephen M. Cameron 	0x409C0E11, /* Smart Array 6400 */
55046380786SStephen M. Cameron 	0x409D0E11, /* Smart Array 6400 EM */
55146380786SStephen M. Cameron };
55246380786SStephen M. Cameron 
5539b5c48c2SStephen Cameron static u32 needs_abort_tags_swizzled[] = {
5549b5c48c2SStephen Cameron 	0x323D103C, /* Smart Array P700m */
5559b5c48c2SStephen Cameron 	0x324a103C, /* Smart Array P712m */
5569b5c48c2SStephen Cameron 	0x324b103C, /* SmartArray P711m */
5579b5c48c2SStephen Cameron };
5589b5c48c2SStephen Cameron 
5599b5c48c2SStephen Cameron static int board_id_in_array(u32 a[], int nelems, u32 board_id)
560941b1cdaSStephen M. Cameron {
561941b1cdaSStephen M. Cameron 	int i;
562941b1cdaSStephen M. Cameron 
5639b5c48c2SStephen Cameron 	for (i = 0; i < nelems; i++)
5649b5c48c2SStephen Cameron 		if (a[i] == board_id)
565941b1cdaSStephen M. Cameron 			return 1;
5669b5c48c2SStephen Cameron 	return 0;
5679b5c48c2SStephen Cameron }
5689b5c48c2SStephen Cameron 
5699b5c48c2SStephen Cameron static int ctlr_is_hard_resettable(u32 board_id)
5709b5c48c2SStephen Cameron {
5719b5c48c2SStephen Cameron 	return !board_id_in_array(unresettable_controller,
5729b5c48c2SStephen Cameron 			ARRAY_SIZE(unresettable_controller), board_id);
573941b1cdaSStephen M. Cameron }
574941b1cdaSStephen M. Cameron 
57546380786SStephen M. Cameron static int ctlr_is_soft_resettable(u32 board_id)
57646380786SStephen M. Cameron {
5779b5c48c2SStephen Cameron 	return !board_id_in_array(soft_unresettable_controller,
5789b5c48c2SStephen Cameron 			ARRAY_SIZE(soft_unresettable_controller), board_id);
57946380786SStephen M. Cameron }
58046380786SStephen M. Cameron 
58146380786SStephen M. Cameron static int ctlr_is_resettable(u32 board_id)
58246380786SStephen M. Cameron {
58346380786SStephen M. Cameron 	return ctlr_is_hard_resettable(board_id) ||
58446380786SStephen M. Cameron 		ctlr_is_soft_resettable(board_id);
58546380786SStephen M. Cameron }
58646380786SStephen M. Cameron 
5879b5c48c2SStephen Cameron static int ctlr_needs_abort_tags_swizzled(u32 board_id)
5889b5c48c2SStephen Cameron {
5899b5c48c2SStephen Cameron 	return board_id_in_array(needs_abort_tags_swizzled,
5909b5c48c2SStephen Cameron 			ARRAY_SIZE(needs_abort_tags_swizzled), board_id);
5919b5c48c2SStephen Cameron }
5929b5c48c2SStephen Cameron 
593941b1cdaSStephen M. Cameron static ssize_t host_show_resettable(struct device *dev,
594941b1cdaSStephen M. Cameron 	struct device_attribute *attr, char *buf)
595941b1cdaSStephen M. Cameron {
596941b1cdaSStephen M. Cameron 	struct ctlr_info *h;
597941b1cdaSStephen M. Cameron 	struct Scsi_Host *shost = class_to_shost(dev);
598941b1cdaSStephen M. Cameron 
599941b1cdaSStephen M. Cameron 	h = shost_to_hba(shost);
60046380786SStephen M. Cameron 	return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id));
601941b1cdaSStephen M. Cameron }
602941b1cdaSStephen M. Cameron 
603edd16368SStephen M. Cameron static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[])
604edd16368SStephen M. Cameron {
605edd16368SStephen M. Cameron 	return (scsi3addr[3] & 0xC0) == 0x40;
606edd16368SStephen M. Cameron }
607edd16368SStephen M. Cameron 
608f2ef0ce7SRobert Elliott static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6",
609f2ef0ce7SRobert Elliott 	"1(+0)ADM", "UNKNOWN"
610edd16368SStephen M. Cameron };
6116b80b18fSScott Teel #define HPSA_RAID_0	0
6126b80b18fSScott Teel #define HPSA_RAID_4	1
6136b80b18fSScott Teel #define HPSA_RAID_1	2	/* also used for RAID 10 */
6146b80b18fSScott Teel #define HPSA_RAID_5	3	/* also used for RAID 50 */
6156b80b18fSScott Teel #define HPSA_RAID_51	4
6166b80b18fSScott Teel #define HPSA_RAID_6	5	/* also used for RAID 60 */
6176b80b18fSScott Teel #define HPSA_RAID_ADM	6	/* also used for RAID 1+0 ADM */
618edd16368SStephen M. Cameron #define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1)
619edd16368SStephen M. Cameron 
620edd16368SStephen M. Cameron static ssize_t raid_level_show(struct device *dev,
621edd16368SStephen M. Cameron 	     struct device_attribute *attr, char *buf)
622edd16368SStephen M. Cameron {
623edd16368SStephen M. Cameron 	ssize_t l = 0;
62482a72c0aSStephen M. Cameron 	unsigned char rlevel;
625edd16368SStephen M. Cameron 	struct ctlr_info *h;
626edd16368SStephen M. Cameron 	struct scsi_device *sdev;
627edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *hdev;
628edd16368SStephen M. Cameron 	unsigned long flags;
629edd16368SStephen M. Cameron 
630edd16368SStephen M. Cameron 	sdev = to_scsi_device(dev);
631edd16368SStephen M. Cameron 	h = sdev_to_hba(sdev);
632edd16368SStephen M. Cameron 	spin_lock_irqsave(&h->lock, flags);
633edd16368SStephen M. Cameron 	hdev = sdev->hostdata;
634edd16368SStephen M. Cameron 	if (!hdev) {
635edd16368SStephen M. Cameron 		spin_unlock_irqrestore(&h->lock, flags);
636edd16368SStephen M. Cameron 		return -ENODEV;
637edd16368SStephen M. Cameron 	}
638edd16368SStephen M. Cameron 
639edd16368SStephen M. Cameron 	/* Is this even a logical drive? */
640edd16368SStephen M. Cameron 	if (!is_logical_dev_addr_mode(hdev->scsi3addr)) {
641edd16368SStephen M. Cameron 		spin_unlock_irqrestore(&h->lock, flags);
642edd16368SStephen M. Cameron 		l = snprintf(buf, PAGE_SIZE, "N/A\n");
643edd16368SStephen M. Cameron 		return l;
644edd16368SStephen M. Cameron 	}
645edd16368SStephen M. Cameron 
646edd16368SStephen M. Cameron 	rlevel = hdev->raid_level;
647edd16368SStephen M. Cameron 	spin_unlock_irqrestore(&h->lock, flags);
64882a72c0aSStephen M. Cameron 	if (rlevel > RAID_UNKNOWN)
649edd16368SStephen M. Cameron 		rlevel = RAID_UNKNOWN;
650edd16368SStephen M. Cameron 	l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]);
651edd16368SStephen M. Cameron 	return l;
652edd16368SStephen M. Cameron }
653edd16368SStephen M. Cameron 
654edd16368SStephen M. Cameron static ssize_t lunid_show(struct device *dev,
655edd16368SStephen M. Cameron 	     struct device_attribute *attr, char *buf)
656edd16368SStephen M. Cameron {
657edd16368SStephen M. Cameron 	struct ctlr_info *h;
658edd16368SStephen M. Cameron 	struct scsi_device *sdev;
659edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *hdev;
660edd16368SStephen M. Cameron 	unsigned long flags;
661edd16368SStephen M. Cameron 	unsigned char lunid[8];
662edd16368SStephen M. Cameron 
663edd16368SStephen M. Cameron 	sdev = to_scsi_device(dev);
664edd16368SStephen M. Cameron 	h = sdev_to_hba(sdev);
665edd16368SStephen M. Cameron 	spin_lock_irqsave(&h->lock, flags);
666edd16368SStephen M. Cameron 	hdev = sdev->hostdata;
667edd16368SStephen M. Cameron 	if (!hdev) {
668edd16368SStephen M. Cameron 		spin_unlock_irqrestore(&h->lock, flags);
669edd16368SStephen M. Cameron 		return -ENODEV;
670edd16368SStephen M. Cameron 	}
671edd16368SStephen M. Cameron 	memcpy(lunid, hdev->scsi3addr, sizeof(lunid));
672edd16368SStephen M. Cameron 	spin_unlock_irqrestore(&h->lock, flags);
673edd16368SStephen M. Cameron 	return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
674edd16368SStephen M. Cameron 		lunid[0], lunid[1], lunid[2], lunid[3],
675edd16368SStephen M. Cameron 		lunid[4], lunid[5], lunid[6], lunid[7]);
676edd16368SStephen M. Cameron }
677edd16368SStephen M. Cameron 
678edd16368SStephen M. Cameron static ssize_t unique_id_show(struct device *dev,
679edd16368SStephen M. Cameron 	     struct device_attribute *attr, char *buf)
680edd16368SStephen M. Cameron {
681edd16368SStephen M. Cameron 	struct ctlr_info *h;
682edd16368SStephen M. Cameron 	struct scsi_device *sdev;
683edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *hdev;
684edd16368SStephen M. Cameron 	unsigned long flags;
685edd16368SStephen M. Cameron 	unsigned char sn[16];
686edd16368SStephen M. Cameron 
687edd16368SStephen M. Cameron 	sdev = to_scsi_device(dev);
688edd16368SStephen M. Cameron 	h = sdev_to_hba(sdev);
689edd16368SStephen M. Cameron 	spin_lock_irqsave(&h->lock, flags);
690edd16368SStephen M. Cameron 	hdev = sdev->hostdata;
691edd16368SStephen M. Cameron 	if (!hdev) {
692edd16368SStephen M. Cameron 		spin_unlock_irqrestore(&h->lock, flags);
693edd16368SStephen M. Cameron 		return -ENODEV;
694edd16368SStephen M. Cameron 	}
695edd16368SStephen M. Cameron 	memcpy(sn, hdev->device_id, sizeof(sn));
696edd16368SStephen M. Cameron 	spin_unlock_irqrestore(&h->lock, flags);
697edd16368SStephen M. Cameron 	return snprintf(buf, 16 * 2 + 2,
698edd16368SStephen M. Cameron 			"%02X%02X%02X%02X%02X%02X%02X%02X"
699edd16368SStephen M. Cameron 			"%02X%02X%02X%02X%02X%02X%02X%02X\n",
700edd16368SStephen M. Cameron 			sn[0], sn[1], sn[2], sn[3],
701edd16368SStephen M. Cameron 			sn[4], sn[5], sn[6], sn[7],
702edd16368SStephen M. Cameron 			sn[8], sn[9], sn[10], sn[11],
703edd16368SStephen M. Cameron 			sn[12], sn[13], sn[14], sn[15]);
704edd16368SStephen M. Cameron }
705edd16368SStephen M. Cameron 
706c1988684SScott Teel static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev,
707c1988684SScott Teel 	     struct device_attribute *attr, char *buf)
708c1988684SScott Teel {
709c1988684SScott Teel 	struct ctlr_info *h;
710c1988684SScott Teel 	struct scsi_device *sdev;
711c1988684SScott Teel 	struct hpsa_scsi_dev_t *hdev;
712c1988684SScott Teel 	unsigned long flags;
713c1988684SScott Teel 	int offload_enabled;
714c1988684SScott Teel 
715c1988684SScott Teel 	sdev = to_scsi_device(dev);
716c1988684SScott Teel 	h = sdev_to_hba(sdev);
717c1988684SScott Teel 	spin_lock_irqsave(&h->lock, flags);
718c1988684SScott Teel 	hdev = sdev->hostdata;
719c1988684SScott Teel 	if (!hdev) {
720c1988684SScott Teel 		spin_unlock_irqrestore(&h->lock, flags);
721c1988684SScott Teel 		return -ENODEV;
722c1988684SScott Teel 	}
723c1988684SScott Teel 	offload_enabled = hdev->offload_enabled;
724c1988684SScott Teel 	spin_unlock_irqrestore(&h->lock, flags);
725c1988684SScott Teel 	return snprintf(buf, 20, "%d\n", offload_enabled);
726c1988684SScott Teel }
727c1988684SScott Teel 
7288270b862SJoe Handzik #define MAX_PATHS 8
7298270b862SJoe Handzik #define PATH_STRING_LEN 50
7308270b862SJoe Handzik 
7318270b862SJoe Handzik static ssize_t path_info_show(struct device *dev,
7328270b862SJoe Handzik 	     struct device_attribute *attr, char *buf)
7338270b862SJoe Handzik {
7348270b862SJoe Handzik 	struct ctlr_info *h;
7358270b862SJoe Handzik 	struct scsi_device *sdev;
7368270b862SJoe Handzik 	struct hpsa_scsi_dev_t *hdev;
7378270b862SJoe Handzik 	unsigned long flags;
7388270b862SJoe Handzik 	int i;
7398270b862SJoe Handzik 	int output_len = 0;
7408270b862SJoe Handzik 	u8 box;
7418270b862SJoe Handzik 	u8 bay;
7428270b862SJoe Handzik 	u8 path_map_index = 0;
7438270b862SJoe Handzik 	char *active;
7448270b862SJoe Handzik 	unsigned char phys_connector[2];
7458270b862SJoe Handzik 	unsigned char path[MAX_PATHS][PATH_STRING_LEN];
7468270b862SJoe Handzik 
7478270b862SJoe Handzik 	memset(path, 0, MAX_PATHS * PATH_STRING_LEN);
7488270b862SJoe Handzik 	sdev = to_scsi_device(dev);
7498270b862SJoe Handzik 	h = sdev_to_hba(sdev);
7508270b862SJoe Handzik 	spin_lock_irqsave(&h->devlock, flags);
7518270b862SJoe Handzik 	hdev = sdev->hostdata;
7528270b862SJoe Handzik 	if (!hdev) {
7538270b862SJoe Handzik 		spin_unlock_irqrestore(&h->devlock, flags);
7548270b862SJoe Handzik 		return -ENODEV;
7558270b862SJoe Handzik 	}
7568270b862SJoe Handzik 
7578270b862SJoe Handzik 	bay = hdev->bay;
7588270b862SJoe Handzik 	for (i = 0; i < MAX_PATHS; i++) {
7598270b862SJoe Handzik 		path_map_index = 1<<i;
7608270b862SJoe Handzik 		if (i == hdev->active_path_index)
7618270b862SJoe Handzik 			active = "Active";
7628270b862SJoe Handzik 		else if (hdev->path_map & path_map_index)
7638270b862SJoe Handzik 			active = "Inactive";
7648270b862SJoe Handzik 		else
7658270b862SJoe Handzik 			continue;
7668270b862SJoe Handzik 
7678270b862SJoe Handzik 		output_len = snprintf(path[i],
7688270b862SJoe Handzik 				PATH_STRING_LEN, "[%d:%d:%d:%d] %20.20s ",
7698270b862SJoe Handzik 				h->scsi_host->host_no,
7708270b862SJoe Handzik 				hdev->bus, hdev->target, hdev->lun,
7718270b862SJoe Handzik 				scsi_device_type(hdev->devtype));
7728270b862SJoe Handzik 
7738270b862SJoe Handzik 		if (is_ext_target(h, hdev) ||
7748270b862SJoe Handzik 			(hdev->devtype == TYPE_RAID) ||
7758270b862SJoe Handzik 			is_logical_dev_addr_mode(hdev->scsi3addr)) {
7768270b862SJoe Handzik 			output_len += snprintf(path[i] + output_len,
7778270b862SJoe Handzik 						PATH_STRING_LEN, "%s\n",
7788270b862SJoe Handzik 						active);
7798270b862SJoe Handzik 			continue;
7808270b862SJoe Handzik 		}
7818270b862SJoe Handzik 
7828270b862SJoe Handzik 		box = hdev->box[i];
7838270b862SJoe Handzik 		memcpy(&phys_connector, &hdev->phys_connector[i],
7848270b862SJoe Handzik 			sizeof(phys_connector));
7858270b862SJoe Handzik 		if (phys_connector[0] < '0')
7868270b862SJoe Handzik 			phys_connector[0] = '0';
7878270b862SJoe Handzik 		if (phys_connector[1] < '0')
7888270b862SJoe Handzik 			phys_connector[1] = '0';
7898270b862SJoe Handzik 		if (hdev->phys_connector[i] > 0)
7908270b862SJoe Handzik 			output_len += snprintf(path[i] + output_len,
7918270b862SJoe Handzik 				PATH_STRING_LEN,
7928270b862SJoe Handzik 				"PORT: %.2s ",
7938270b862SJoe Handzik 				phys_connector);
794*b9092b79SKevin Barnett 		if (hdev->devtype == TYPE_DISK &&
795*b9092b79SKevin Barnett 			hdev->expose_state != HPSA_DO_NOT_EXPOSE) {
7968270b862SJoe Handzik 			if (box == 0 || box == 0xFF) {
7978270b862SJoe Handzik 				output_len += snprintf(path[i] + output_len,
7988270b862SJoe Handzik 					PATH_STRING_LEN,
7998270b862SJoe Handzik 					"BAY: %hhu %s\n",
8008270b862SJoe Handzik 					bay, active);
8018270b862SJoe Handzik 			} else {
8028270b862SJoe Handzik 				output_len += snprintf(path[i] + output_len,
8038270b862SJoe Handzik 					PATH_STRING_LEN,
8048270b862SJoe Handzik 					"BOX: %hhu BAY: %hhu %s\n",
8058270b862SJoe Handzik 					box, bay, active);
8068270b862SJoe Handzik 			}
8078270b862SJoe Handzik 		} else if (box != 0 && box != 0xFF) {
8088270b862SJoe Handzik 			output_len += snprintf(path[i] + output_len,
8098270b862SJoe Handzik 				PATH_STRING_LEN, "BOX: %hhu %s\n",
8108270b862SJoe Handzik 				box, active);
8118270b862SJoe Handzik 		} else
8128270b862SJoe Handzik 			output_len += snprintf(path[i] + output_len,
8138270b862SJoe Handzik 				PATH_STRING_LEN, "%s\n", active);
8148270b862SJoe Handzik 	}
8158270b862SJoe Handzik 
8168270b862SJoe Handzik 	spin_unlock_irqrestore(&h->devlock, flags);
8178270b862SJoe Handzik 	return snprintf(buf, output_len+1, "%s%s%s%s%s%s%s%s",
8188270b862SJoe Handzik 		path[0], path[1], path[2], path[3],
8198270b862SJoe Handzik 		path[4], path[5], path[6], path[7]);
8208270b862SJoe Handzik }
8218270b862SJoe Handzik 
8223f5eac3aSStephen M. Cameron static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL);
8233f5eac3aSStephen M. Cameron static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL);
8243f5eac3aSStephen M. Cameron static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL);
8253f5eac3aSStephen M. Cameron static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan);
826c1988684SScott Teel static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO,
827c1988684SScott Teel 			host_show_hp_ssd_smart_path_enabled, NULL);
8288270b862SJoe Handzik static DEVICE_ATTR(path_info, S_IRUGO, path_info_show, NULL);
829da0697bdSScott Teel static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH,
830da0697bdSScott Teel 		host_show_hp_ssd_smart_path_status,
831da0697bdSScott Teel 		host_store_hp_ssd_smart_path_status);
8322ba8bfc8SStephen M. Cameron static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL,
8332ba8bfc8SStephen M. Cameron 			host_store_raid_offload_debug);
8343f5eac3aSStephen M. Cameron static DEVICE_ATTR(firmware_revision, S_IRUGO,
8353f5eac3aSStephen M. Cameron 	host_show_firmware_revision, NULL);
8363f5eac3aSStephen M. Cameron static DEVICE_ATTR(commands_outstanding, S_IRUGO,
8373f5eac3aSStephen M. Cameron 	host_show_commands_outstanding, NULL);
8383f5eac3aSStephen M. Cameron static DEVICE_ATTR(transport_mode, S_IRUGO,
8393f5eac3aSStephen M. Cameron 	host_show_transport_mode, NULL);
840941b1cdaSStephen M. Cameron static DEVICE_ATTR(resettable, S_IRUGO,
841941b1cdaSStephen M. Cameron 	host_show_resettable, NULL);
842e985c58fSStephen Cameron static DEVICE_ATTR(lockup_detected, S_IRUGO,
843e985c58fSStephen Cameron 	host_show_lockup_detected, NULL);
8443f5eac3aSStephen M. Cameron 
8453f5eac3aSStephen M. Cameron static struct device_attribute *hpsa_sdev_attrs[] = {
8463f5eac3aSStephen M. Cameron 	&dev_attr_raid_level,
8473f5eac3aSStephen M. Cameron 	&dev_attr_lunid,
8483f5eac3aSStephen M. Cameron 	&dev_attr_unique_id,
849c1988684SScott Teel 	&dev_attr_hp_ssd_smart_path_enabled,
8508270b862SJoe Handzik 	&dev_attr_path_info,
851e985c58fSStephen Cameron 	&dev_attr_lockup_detected,
8523f5eac3aSStephen M. Cameron 	NULL,
8533f5eac3aSStephen M. Cameron };
8543f5eac3aSStephen M. Cameron 
8553f5eac3aSStephen M. Cameron static struct device_attribute *hpsa_shost_attrs[] = {
8563f5eac3aSStephen M. Cameron 	&dev_attr_rescan,
8573f5eac3aSStephen M. Cameron 	&dev_attr_firmware_revision,
8583f5eac3aSStephen M. Cameron 	&dev_attr_commands_outstanding,
8593f5eac3aSStephen M. Cameron 	&dev_attr_transport_mode,
860941b1cdaSStephen M. Cameron 	&dev_attr_resettable,
861da0697bdSScott Teel 	&dev_attr_hp_ssd_smart_path_status,
8622ba8bfc8SStephen M. Cameron 	&dev_attr_raid_offload_debug,
8633f5eac3aSStephen M. Cameron 	NULL,
8643f5eac3aSStephen M. Cameron };
8653f5eac3aSStephen M. Cameron 
86641ce4c35SStephen Cameron #define HPSA_NRESERVED_CMDS	(HPSA_CMDS_RESERVED_FOR_ABORTS + \
86741ce4c35SStephen Cameron 		HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS)
86841ce4c35SStephen Cameron 
8693f5eac3aSStephen M. Cameron static struct scsi_host_template hpsa_driver_template = {
8703f5eac3aSStephen M. Cameron 	.module			= THIS_MODULE,
871f79cfec6SStephen M. Cameron 	.name			= HPSA,
872f79cfec6SStephen M. Cameron 	.proc_name		= HPSA,
8733f5eac3aSStephen M. Cameron 	.queuecommand		= hpsa_scsi_queue_command,
8743f5eac3aSStephen M. Cameron 	.scan_start		= hpsa_scan_start,
8753f5eac3aSStephen M. Cameron 	.scan_finished		= hpsa_scan_finished,
8767c0a0229SDon Brace 	.change_queue_depth	= hpsa_change_queue_depth,
8773f5eac3aSStephen M. Cameron 	.this_id		= -1,
8783f5eac3aSStephen M. Cameron 	.use_clustering		= ENABLE_CLUSTERING,
87975167d2cSStephen M. Cameron 	.eh_abort_handler	= hpsa_eh_abort_handler,
8803f5eac3aSStephen M. Cameron 	.eh_device_reset_handler = hpsa_eh_device_reset_handler,
8813f5eac3aSStephen M. Cameron 	.ioctl			= hpsa_ioctl,
8823f5eac3aSStephen M. Cameron 	.slave_alloc		= hpsa_slave_alloc,
88341ce4c35SStephen Cameron 	.slave_configure	= hpsa_slave_configure,
8843f5eac3aSStephen M. Cameron 	.slave_destroy		= hpsa_slave_destroy,
8853f5eac3aSStephen M. Cameron #ifdef CONFIG_COMPAT
8863f5eac3aSStephen M. Cameron 	.compat_ioctl		= hpsa_compat_ioctl,
8873f5eac3aSStephen M. Cameron #endif
8883f5eac3aSStephen M. Cameron 	.sdev_attrs = hpsa_sdev_attrs,
8893f5eac3aSStephen M. Cameron 	.shost_attrs = hpsa_shost_attrs,
890c0d6a4d1SStephen M. Cameron 	.max_sectors = 8192,
89154b2b50cSMartin K. Petersen 	.no_write_same = 1,
8923f5eac3aSStephen M. Cameron };
8933f5eac3aSStephen M. Cameron 
894254f796bSMatt Gates static inline u32 next_command(struct ctlr_info *h, u8 q)
8953f5eac3aSStephen M. Cameron {
8963f5eac3aSStephen M. Cameron 	u32 a;
897072b0518SStephen M. Cameron 	struct reply_queue_buffer *rq = &h->reply_queue[q];
8983f5eac3aSStephen M. Cameron 
899e1f7de0cSMatt Gates 	if (h->transMethod & CFGTBL_Trans_io_accel1)
900e1f7de0cSMatt Gates 		return h->access.command_completed(h, q);
901e1f7de0cSMatt Gates 
9023f5eac3aSStephen M. Cameron 	if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
903254f796bSMatt Gates 		return h->access.command_completed(h, q);
9043f5eac3aSStephen M. Cameron 
905254f796bSMatt Gates 	if ((rq->head[rq->current_entry] & 1) == rq->wraparound) {
906254f796bSMatt Gates 		a = rq->head[rq->current_entry];
907254f796bSMatt Gates 		rq->current_entry++;
9080cbf768eSStephen M. Cameron 		atomic_dec(&h->commands_outstanding);
9093f5eac3aSStephen M. Cameron 	} else {
9103f5eac3aSStephen M. Cameron 		a = FIFO_EMPTY;
9113f5eac3aSStephen M. Cameron 	}
9123f5eac3aSStephen M. Cameron 	/* Check for wraparound */
913254f796bSMatt Gates 	if (rq->current_entry == h->max_commands) {
914254f796bSMatt Gates 		rq->current_entry = 0;
915254f796bSMatt Gates 		rq->wraparound ^= 1;
9163f5eac3aSStephen M. Cameron 	}
9173f5eac3aSStephen M. Cameron 	return a;
9183f5eac3aSStephen M. Cameron }
9193f5eac3aSStephen M. Cameron 
920c349775eSScott Teel /*
921c349775eSScott Teel  * There are some special bits in the bus address of the
922c349775eSScott Teel  * command that we have to set for the controller to know
923c349775eSScott Teel  * how to process the command:
924c349775eSScott Teel  *
925c349775eSScott Teel  * Normal performant mode:
926c349775eSScott Teel  * bit 0: 1 means performant mode, 0 means simple mode.
927c349775eSScott Teel  * bits 1-3 = block fetch table entry
928c349775eSScott Teel  * bits 4-6 = command type (== 0)
929c349775eSScott Teel  *
930c349775eSScott Teel  * ioaccel1 mode:
931c349775eSScott Teel  * bit 0 = "performant mode" bit.
932c349775eSScott Teel  * bits 1-3 = block fetch table entry
933c349775eSScott Teel  * bits 4-6 = command type (== 110)
934c349775eSScott Teel  * (command type is needed because ioaccel1 mode
935c349775eSScott Teel  * commands are submitted through the same register as normal
936c349775eSScott Teel  * mode commands, so this is how the controller knows whether
937c349775eSScott Teel  * the command is normal mode or ioaccel1 mode.)
938c349775eSScott Teel  *
939c349775eSScott Teel  * ioaccel2 mode:
940c349775eSScott Teel  * bit 0 = "performant mode" bit.
941c349775eSScott Teel  * bits 1-4 = block fetch table entry (note extra bit)
942c349775eSScott Teel  * bits 4-6 = not needed, because ioaccel2 mode has
943c349775eSScott Teel  * a separate special register for submitting commands.
944c349775eSScott Teel  */
945c349775eSScott Teel 
94625163bd5SWebb Scales /*
94725163bd5SWebb Scales  * set_performant_mode: Modify the tag for cciss performant
9483f5eac3aSStephen M. Cameron  * set bit 0 for pull model, bits 3-1 for block fetch
9493f5eac3aSStephen M. Cameron  * register number
9503f5eac3aSStephen M. Cameron  */
95125163bd5SWebb Scales #define DEFAULT_REPLY_QUEUE (-1)
95225163bd5SWebb Scales static void set_performant_mode(struct ctlr_info *h, struct CommandList *c,
95325163bd5SWebb Scales 					int reply_queue)
9543f5eac3aSStephen M. Cameron {
955254f796bSMatt Gates 	if (likely(h->transMethod & CFGTBL_Trans_Performant)) {
9563f5eac3aSStephen M. Cameron 		c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1);
95725163bd5SWebb Scales 		if (unlikely(!h->msix_vector))
95825163bd5SWebb Scales 			return;
95925163bd5SWebb Scales 		if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
960254f796bSMatt Gates 			c->Header.ReplyQueue =
961804a5cb5SJohn Kacur 				raw_smp_processor_id() % h->nreply_queues;
96225163bd5SWebb Scales 		else
96325163bd5SWebb Scales 			c->Header.ReplyQueue = reply_queue % h->nreply_queues;
964254f796bSMatt Gates 	}
9653f5eac3aSStephen M. Cameron }
9663f5eac3aSStephen M. Cameron 
967c349775eSScott Teel static void set_ioaccel1_performant_mode(struct ctlr_info *h,
96825163bd5SWebb Scales 						struct CommandList *c,
96925163bd5SWebb Scales 						int reply_queue)
970c349775eSScott Teel {
971c349775eSScott Teel 	struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
972c349775eSScott Teel 
97325163bd5SWebb Scales 	/*
97425163bd5SWebb Scales 	 * Tell the controller to post the reply to the queue for this
975c349775eSScott Teel 	 * processor.  This seems to give the best I/O throughput.
976c349775eSScott Teel 	 */
97725163bd5SWebb Scales 	if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
978c349775eSScott Teel 		cp->ReplyQueue = smp_processor_id() % h->nreply_queues;
97925163bd5SWebb Scales 	else
98025163bd5SWebb Scales 		cp->ReplyQueue = reply_queue % h->nreply_queues;
98125163bd5SWebb Scales 	/*
98225163bd5SWebb Scales 	 * Set the bits in the address sent down to include:
983c349775eSScott Teel 	 *  - performant mode bit (bit 0)
984c349775eSScott Teel 	 *  - pull count (bits 1-3)
985c349775eSScott Teel 	 *  - command type (bits 4-6)
986c349775eSScott Teel 	 */
987c349775eSScott Teel 	c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) |
988c349775eSScott Teel 					IOACCEL1_BUSADDR_CMDTYPE;
989c349775eSScott Teel }
990c349775eSScott Teel 
9918be986ccSStephen Cameron static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h,
9928be986ccSStephen Cameron 						struct CommandList *c,
9938be986ccSStephen Cameron 						int reply_queue)
9948be986ccSStephen Cameron {
9958be986ccSStephen Cameron 	struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *)
9968be986ccSStephen Cameron 		&h->ioaccel2_cmd_pool[c->cmdindex];
9978be986ccSStephen Cameron 
9988be986ccSStephen Cameron 	/* Tell the controller to post the reply to the queue for this
9998be986ccSStephen Cameron 	 * processor.  This seems to give the best I/O throughput.
10008be986ccSStephen Cameron 	 */
10018be986ccSStephen Cameron 	if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
10028be986ccSStephen Cameron 		cp->reply_queue = smp_processor_id() % h->nreply_queues;
10038be986ccSStephen Cameron 	else
10048be986ccSStephen Cameron 		cp->reply_queue = reply_queue % h->nreply_queues;
10058be986ccSStephen Cameron 	/* Set the bits in the address sent down to include:
10068be986ccSStephen Cameron 	 *  - performant mode bit not used in ioaccel mode 2
10078be986ccSStephen Cameron 	 *  - pull count (bits 0-3)
10088be986ccSStephen Cameron 	 *  - command type isn't needed for ioaccel2
10098be986ccSStephen Cameron 	 */
10108be986ccSStephen Cameron 	c->busaddr |= h->ioaccel2_blockFetchTable[0];
10118be986ccSStephen Cameron }
10128be986ccSStephen Cameron 
1013c349775eSScott Teel static void set_ioaccel2_performant_mode(struct ctlr_info *h,
101425163bd5SWebb Scales 						struct CommandList *c,
101525163bd5SWebb Scales 						int reply_queue)
1016c349775eSScott Teel {
1017c349775eSScott Teel 	struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
1018c349775eSScott Teel 
101925163bd5SWebb Scales 	/*
102025163bd5SWebb Scales 	 * Tell the controller to post the reply to the queue for this
1021c349775eSScott Teel 	 * processor.  This seems to give the best I/O throughput.
1022c349775eSScott Teel 	 */
102325163bd5SWebb Scales 	if (likely(reply_queue == DEFAULT_REPLY_QUEUE))
1024c349775eSScott Teel 		cp->reply_queue = smp_processor_id() % h->nreply_queues;
102525163bd5SWebb Scales 	else
102625163bd5SWebb Scales 		cp->reply_queue = reply_queue % h->nreply_queues;
102725163bd5SWebb Scales 	/*
102825163bd5SWebb Scales 	 * Set the bits in the address sent down to include:
1029c349775eSScott Teel 	 *  - performant mode bit not used in ioaccel mode 2
1030c349775eSScott Teel 	 *  - pull count (bits 0-3)
1031c349775eSScott Teel 	 *  - command type isn't needed for ioaccel2
1032c349775eSScott Teel 	 */
1033c349775eSScott Teel 	c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]);
1034c349775eSScott Teel }
1035c349775eSScott Teel 
1036e85c5974SStephen M. Cameron static int is_firmware_flash_cmd(u8 *cdb)
1037e85c5974SStephen M. Cameron {
1038e85c5974SStephen M. Cameron 	return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE;
1039e85c5974SStephen M. Cameron }
1040e85c5974SStephen M. Cameron 
1041e85c5974SStephen M. Cameron /*
1042e85c5974SStephen M. Cameron  * During firmware flash, the heartbeat register may not update as frequently
1043e85c5974SStephen M. Cameron  * as it should.  So we dial down lockup detection during firmware flash. and
1044e85c5974SStephen M. Cameron  * dial it back up when firmware flash completes.
1045e85c5974SStephen M. Cameron  */
1046e85c5974SStephen M. Cameron #define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ)
1047e85c5974SStephen M. Cameron #define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ)
1048e85c5974SStephen M. Cameron static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h,
1049e85c5974SStephen M. Cameron 		struct CommandList *c)
1050e85c5974SStephen M. Cameron {
1051e85c5974SStephen M. Cameron 	if (!is_firmware_flash_cmd(c->Request.CDB))
1052e85c5974SStephen M. Cameron 		return;
1053e85c5974SStephen M. Cameron 	atomic_inc(&h->firmware_flash_in_progress);
1054e85c5974SStephen M. Cameron 	h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH;
1055e85c5974SStephen M. Cameron }
1056e85c5974SStephen M. Cameron 
1057e85c5974SStephen M. Cameron static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h,
1058e85c5974SStephen M. Cameron 		struct CommandList *c)
1059e85c5974SStephen M. Cameron {
1060e85c5974SStephen M. Cameron 	if (is_firmware_flash_cmd(c->Request.CDB) &&
1061e85c5974SStephen M. Cameron 		atomic_dec_and_test(&h->firmware_flash_in_progress))
1062e85c5974SStephen M. Cameron 		h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
1063e85c5974SStephen M. Cameron }
1064e85c5974SStephen M. Cameron 
106525163bd5SWebb Scales static void __enqueue_cmd_and_start_io(struct ctlr_info *h,
106625163bd5SWebb Scales 	struct CommandList *c, int reply_queue)
10673f5eac3aSStephen M. Cameron {
1068c05e8866SStephen Cameron 	dial_down_lockup_detection_during_fw_flash(h, c);
1069c05e8866SStephen Cameron 	atomic_inc(&h->commands_outstanding);
1070c349775eSScott Teel 	switch (c->cmd_type) {
1071c349775eSScott Teel 	case CMD_IOACCEL1:
107225163bd5SWebb Scales 		set_ioaccel1_performant_mode(h, c, reply_queue);
1073c05e8866SStephen Cameron 		writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET);
1074c349775eSScott Teel 		break;
1075c349775eSScott Teel 	case CMD_IOACCEL2:
107625163bd5SWebb Scales 		set_ioaccel2_performant_mode(h, c, reply_queue);
1077c05e8866SStephen Cameron 		writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
1078c349775eSScott Teel 		break;
10798be986ccSStephen Cameron 	case IOACCEL2_TMF:
10808be986ccSStephen Cameron 		set_ioaccel2_tmf_performant_mode(h, c, reply_queue);
10818be986ccSStephen Cameron 		writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32);
10828be986ccSStephen Cameron 		break;
1083c349775eSScott Teel 	default:
108425163bd5SWebb Scales 		set_performant_mode(h, c, reply_queue);
1085f2405db8SDon Brace 		h->access.submit_command(h, c);
10863f5eac3aSStephen M. Cameron 	}
1087c05e8866SStephen Cameron }
10883f5eac3aSStephen M. Cameron 
1089a58e7e53SWebb Scales static void enqueue_cmd_and_start_io(struct ctlr_info *h, struct CommandList *c)
109025163bd5SWebb Scales {
1091d604f533SWebb Scales 	if (unlikely(hpsa_is_pending_event(c)))
1092a58e7e53SWebb Scales 		return finish_cmd(c);
1093a58e7e53SWebb Scales 
109425163bd5SWebb Scales 	__enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE);
109525163bd5SWebb Scales }
109625163bd5SWebb Scales 
10973f5eac3aSStephen M. Cameron static inline int is_hba_lunid(unsigned char scsi3addr[])
10983f5eac3aSStephen M. Cameron {
10993f5eac3aSStephen M. Cameron 	return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0;
11003f5eac3aSStephen M. Cameron }
11013f5eac3aSStephen M. Cameron 
11023f5eac3aSStephen M. Cameron static inline int is_scsi_rev_5(struct ctlr_info *h)
11033f5eac3aSStephen M. Cameron {
11043f5eac3aSStephen M. Cameron 	if (!h->hba_inquiry_data)
11053f5eac3aSStephen M. Cameron 		return 0;
11063f5eac3aSStephen M. Cameron 	if ((h->hba_inquiry_data[2] & 0x07) == 5)
11073f5eac3aSStephen M. Cameron 		return 1;
11083f5eac3aSStephen M. Cameron 	return 0;
11093f5eac3aSStephen M. Cameron }
11103f5eac3aSStephen M. Cameron 
1111edd16368SStephen M. Cameron static int hpsa_find_target_lun(struct ctlr_info *h,
1112edd16368SStephen M. Cameron 	unsigned char scsi3addr[], int bus, int *target, int *lun)
1113edd16368SStephen M. Cameron {
1114edd16368SStephen M. Cameron 	/* finds an unused bus, target, lun for a new physical device
1115edd16368SStephen M. Cameron 	 * assumes h->devlock is held
1116edd16368SStephen M. Cameron 	 */
1117edd16368SStephen M. Cameron 	int i, found = 0;
1118cfe5badcSScott Teel 	DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES);
1119edd16368SStephen M. Cameron 
1120263d9401SAkinobu Mita 	bitmap_zero(lun_taken, HPSA_MAX_DEVICES);
1121edd16368SStephen M. Cameron 
1122edd16368SStephen M. Cameron 	for (i = 0; i < h->ndevices; i++) {
1123edd16368SStephen M. Cameron 		if (h->dev[i]->bus == bus && h->dev[i]->target != -1)
1124263d9401SAkinobu Mita 			__set_bit(h->dev[i]->target, lun_taken);
1125edd16368SStephen M. Cameron 	}
1126edd16368SStephen M. Cameron 
1127263d9401SAkinobu Mita 	i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES);
1128263d9401SAkinobu Mita 	if (i < HPSA_MAX_DEVICES) {
1129edd16368SStephen M. Cameron 		/* *bus = 1; */
1130edd16368SStephen M. Cameron 		*target = i;
1131edd16368SStephen M. Cameron 		*lun = 0;
1132edd16368SStephen M. Cameron 		found = 1;
1133edd16368SStephen M. Cameron 	}
1134edd16368SStephen M. Cameron 	return !found;
1135edd16368SStephen M. Cameron }
1136edd16368SStephen M. Cameron 
11370d96ef5fSWebb Scales static inline void hpsa_show_dev_msg(const char *level, struct ctlr_info *h,
11380d96ef5fSWebb Scales 	struct hpsa_scsi_dev_t *dev, char *description)
11390d96ef5fSWebb Scales {
11400d96ef5fSWebb Scales 	dev_printk(level, &h->pdev->dev,
11410d96ef5fSWebb Scales 			"scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n",
11420d96ef5fSWebb Scales 			h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
11430d96ef5fSWebb Scales 			description,
11440d96ef5fSWebb Scales 			scsi_device_type(dev->devtype),
11450d96ef5fSWebb Scales 			dev->vendor,
11460d96ef5fSWebb Scales 			dev->model,
11470d96ef5fSWebb Scales 			dev->raid_level > RAID_UNKNOWN ?
11480d96ef5fSWebb Scales 				"RAID-?" : raid_label[dev->raid_level],
11490d96ef5fSWebb Scales 			dev->offload_config ? '+' : '-',
11500d96ef5fSWebb Scales 			dev->offload_enabled ? '+' : '-',
11510d96ef5fSWebb Scales 			dev->expose_state);
11520d96ef5fSWebb Scales }
11530d96ef5fSWebb Scales 
1154edd16368SStephen M. Cameron /* Add an entry into h->dev[] array. */
1155edd16368SStephen M. Cameron static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno,
1156edd16368SStephen M. Cameron 		struct hpsa_scsi_dev_t *device,
1157edd16368SStephen M. Cameron 		struct hpsa_scsi_dev_t *added[], int *nadded)
1158edd16368SStephen M. Cameron {
1159edd16368SStephen M. Cameron 	/* assumes h->devlock is held */
1160edd16368SStephen M. Cameron 	int n = h->ndevices;
1161edd16368SStephen M. Cameron 	int i;
1162edd16368SStephen M. Cameron 	unsigned char addr1[8], addr2[8];
1163edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *sd;
1164edd16368SStephen M. Cameron 
1165cfe5badcSScott Teel 	if (n >= HPSA_MAX_DEVICES) {
1166edd16368SStephen M. Cameron 		dev_err(&h->pdev->dev, "too many devices, some will be "
1167edd16368SStephen M. Cameron 			"inaccessible.\n");
1168edd16368SStephen M. Cameron 		return -1;
1169edd16368SStephen M. Cameron 	}
1170edd16368SStephen M. Cameron 
1171edd16368SStephen M. Cameron 	/* physical devices do not have lun or target assigned until now. */
1172edd16368SStephen M. Cameron 	if (device->lun != -1)
1173edd16368SStephen M. Cameron 		/* Logical device, lun is already assigned. */
1174edd16368SStephen M. Cameron 		goto lun_assigned;
1175edd16368SStephen M. Cameron 
1176edd16368SStephen M. Cameron 	/* If this device a non-zero lun of a multi-lun device
1177edd16368SStephen M. Cameron 	 * byte 4 of the 8-byte LUN addr will contain the logical
11782b08b3e9SDon Brace 	 * unit no, zero otherwise.
1179edd16368SStephen M. Cameron 	 */
1180edd16368SStephen M. Cameron 	if (device->scsi3addr[4] == 0) {
1181edd16368SStephen M. Cameron 		/* This is not a non-zero lun of a multi-lun device */
1182edd16368SStephen M. Cameron 		if (hpsa_find_target_lun(h, device->scsi3addr,
1183edd16368SStephen M. Cameron 			device->bus, &device->target, &device->lun) != 0)
1184edd16368SStephen M. Cameron 			return -1;
1185edd16368SStephen M. Cameron 		goto lun_assigned;
1186edd16368SStephen M. Cameron 	}
1187edd16368SStephen M. Cameron 
1188edd16368SStephen M. Cameron 	/* This is a non-zero lun of a multi-lun device.
1189edd16368SStephen M. Cameron 	 * Search through our list and find the device which
1190edd16368SStephen M. Cameron 	 * has the same 8 byte LUN address, excepting byte 4.
1191edd16368SStephen M. Cameron 	 * Assign the same bus and target for this new LUN.
1192edd16368SStephen M. Cameron 	 * Use the logical unit number from the firmware.
1193edd16368SStephen M. Cameron 	 */
1194edd16368SStephen M. Cameron 	memcpy(addr1, device->scsi3addr, 8);
1195edd16368SStephen M. Cameron 	addr1[4] = 0;
1196edd16368SStephen M. Cameron 	for (i = 0; i < n; i++) {
1197edd16368SStephen M. Cameron 		sd = h->dev[i];
1198edd16368SStephen M. Cameron 		memcpy(addr2, sd->scsi3addr, 8);
1199edd16368SStephen M. Cameron 		addr2[4] = 0;
1200edd16368SStephen M. Cameron 		/* differ only in byte 4? */
1201edd16368SStephen M. Cameron 		if (memcmp(addr1, addr2, 8) == 0) {
1202edd16368SStephen M. Cameron 			device->bus = sd->bus;
1203edd16368SStephen M. Cameron 			device->target = sd->target;
1204edd16368SStephen M. Cameron 			device->lun = device->scsi3addr[4];
1205edd16368SStephen M. Cameron 			break;
1206edd16368SStephen M. Cameron 		}
1207edd16368SStephen M. Cameron 	}
1208edd16368SStephen M. Cameron 	if (device->lun == -1) {
1209edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev, "physical device with no LUN=0,"
1210edd16368SStephen M. Cameron 			" suspect firmware bug or unsupported hardware "
1211edd16368SStephen M. Cameron 			"configuration.\n");
1212edd16368SStephen M. Cameron 			return -1;
1213edd16368SStephen M. Cameron 	}
1214edd16368SStephen M. Cameron 
1215edd16368SStephen M. Cameron lun_assigned:
1216edd16368SStephen M. Cameron 
1217edd16368SStephen M. Cameron 	h->dev[n] = device;
1218edd16368SStephen M. Cameron 	h->ndevices++;
1219edd16368SStephen M. Cameron 	added[*nadded] = device;
1220edd16368SStephen M. Cameron 	(*nadded)++;
12210d96ef5fSWebb Scales 	hpsa_show_dev_msg(KERN_INFO, h, device,
12220d96ef5fSWebb Scales 		device->expose_state & HPSA_SCSI_ADD ? "added" : "masked");
1223a473d86cSRobert Elliott 	device->offload_to_be_enabled = device->offload_enabled;
1224a473d86cSRobert Elliott 	device->offload_enabled = 0;
1225edd16368SStephen M. Cameron 	return 0;
1226edd16368SStephen M. Cameron }
1227edd16368SStephen M. Cameron 
1228bd9244f7SScott Teel /* Update an entry in h->dev[] array. */
1229bd9244f7SScott Teel static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno,
1230bd9244f7SScott Teel 	int entry, struct hpsa_scsi_dev_t *new_entry)
1231bd9244f7SScott Teel {
1232a473d86cSRobert Elliott 	int offload_enabled;
1233bd9244f7SScott Teel 	/* assumes h->devlock is held */
1234bd9244f7SScott Teel 	BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1235bd9244f7SScott Teel 
1236bd9244f7SScott Teel 	/* Raid level changed. */
1237bd9244f7SScott Teel 	h->dev[entry]->raid_level = new_entry->raid_level;
1238250fb125SStephen M. Cameron 
123903383736SDon Brace 	/* Raid offload parameters changed.  Careful about the ordering. */
124003383736SDon Brace 	if (new_entry->offload_config && new_entry->offload_enabled) {
124103383736SDon Brace 		/*
124203383736SDon Brace 		 * if drive is newly offload_enabled, we want to copy the
124303383736SDon Brace 		 * raid map data first.  If previously offload_enabled and
124403383736SDon Brace 		 * offload_config were set, raid map data had better be
124503383736SDon Brace 		 * the same as it was before.  if raid map data is changed
124603383736SDon Brace 		 * then it had better be the case that
124703383736SDon Brace 		 * h->dev[entry]->offload_enabled is currently 0.
124803383736SDon Brace 		 */
12499fb0de2dSStephen M. Cameron 		h->dev[entry]->raid_map = new_entry->raid_map;
125003383736SDon Brace 		h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
125103383736SDon Brace 	}
1252a3144e0bSJoe Handzik 	if (new_entry->hba_ioaccel_enabled) {
1253a3144e0bSJoe Handzik 		h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle;
1254a3144e0bSJoe Handzik 		wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */
1255a3144e0bSJoe Handzik 	}
1256a3144e0bSJoe Handzik 	h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled;
125703383736SDon Brace 	h->dev[entry]->offload_config = new_entry->offload_config;
125803383736SDon Brace 	h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror;
125903383736SDon Brace 	h->dev[entry]->queue_depth = new_entry->queue_depth;
1260250fb125SStephen M. Cameron 
126141ce4c35SStephen Cameron 	/*
126241ce4c35SStephen Cameron 	 * We can turn off ioaccel offload now, but need to delay turning
126341ce4c35SStephen Cameron 	 * it on until we can update h->dev[entry]->phys_disk[], but we
126441ce4c35SStephen Cameron 	 * can't do that until all the devices are updated.
126541ce4c35SStephen Cameron 	 */
126641ce4c35SStephen Cameron 	h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled;
126741ce4c35SStephen Cameron 	if (!new_entry->offload_enabled)
126841ce4c35SStephen Cameron 		h->dev[entry]->offload_enabled = 0;
126941ce4c35SStephen Cameron 
1270a473d86cSRobert Elliott 	offload_enabled = h->dev[entry]->offload_enabled;
1271a473d86cSRobert Elliott 	h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled;
12720d96ef5fSWebb Scales 	hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated");
1273a473d86cSRobert Elliott 	h->dev[entry]->offload_enabled = offload_enabled;
1274bd9244f7SScott Teel }
1275bd9244f7SScott Teel 
12762a8ccf31SStephen M. Cameron /* Replace an entry from h->dev[] array. */
12772a8ccf31SStephen M. Cameron static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno,
12782a8ccf31SStephen M. Cameron 	int entry, struct hpsa_scsi_dev_t *new_entry,
12792a8ccf31SStephen M. Cameron 	struct hpsa_scsi_dev_t *added[], int *nadded,
12802a8ccf31SStephen M. Cameron 	struct hpsa_scsi_dev_t *removed[], int *nremoved)
12812a8ccf31SStephen M. Cameron {
12822a8ccf31SStephen M. Cameron 	/* assumes h->devlock is held */
1283cfe5badcSScott Teel 	BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
12842a8ccf31SStephen M. Cameron 	removed[*nremoved] = h->dev[entry];
12852a8ccf31SStephen M. Cameron 	(*nremoved)++;
128601350d05SStephen M. Cameron 
128701350d05SStephen M. Cameron 	/*
128801350d05SStephen M. Cameron 	 * New physical devices won't have target/lun assigned yet
128901350d05SStephen M. Cameron 	 * so we need to preserve the values in the slot we are replacing.
129001350d05SStephen M. Cameron 	 */
129101350d05SStephen M. Cameron 	if (new_entry->target == -1) {
129201350d05SStephen M. Cameron 		new_entry->target = h->dev[entry]->target;
129301350d05SStephen M. Cameron 		new_entry->lun = h->dev[entry]->lun;
129401350d05SStephen M. Cameron 	}
129501350d05SStephen M. Cameron 
12962a8ccf31SStephen M. Cameron 	h->dev[entry] = new_entry;
12972a8ccf31SStephen M. Cameron 	added[*nadded] = new_entry;
12982a8ccf31SStephen M. Cameron 	(*nadded)++;
12990d96ef5fSWebb Scales 	hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced");
1300a473d86cSRobert Elliott 	new_entry->offload_to_be_enabled = new_entry->offload_enabled;
1301a473d86cSRobert Elliott 	new_entry->offload_enabled = 0;
13022a8ccf31SStephen M. Cameron }
13032a8ccf31SStephen M. Cameron 
1304edd16368SStephen M. Cameron /* Remove an entry from h->dev[] array. */
1305edd16368SStephen M. Cameron static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry,
1306edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *removed[], int *nremoved)
1307edd16368SStephen M. Cameron {
1308edd16368SStephen M. Cameron 	/* assumes h->devlock is held */
1309edd16368SStephen M. Cameron 	int i;
1310edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *sd;
1311edd16368SStephen M. Cameron 
1312cfe5badcSScott Teel 	BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES);
1313edd16368SStephen M. Cameron 
1314edd16368SStephen M. Cameron 	sd = h->dev[entry];
1315edd16368SStephen M. Cameron 	removed[*nremoved] = h->dev[entry];
1316edd16368SStephen M. Cameron 	(*nremoved)++;
1317edd16368SStephen M. Cameron 
1318edd16368SStephen M. Cameron 	for (i = entry; i < h->ndevices-1; i++)
1319edd16368SStephen M. Cameron 		h->dev[i] = h->dev[i+1];
1320edd16368SStephen M. Cameron 	h->ndevices--;
13210d96ef5fSWebb Scales 	hpsa_show_dev_msg(KERN_INFO, h, sd, "removed");
1322edd16368SStephen M. Cameron }
1323edd16368SStephen M. Cameron 
1324edd16368SStephen M. Cameron #define SCSI3ADDR_EQ(a, b) ( \
1325edd16368SStephen M. Cameron 	(a)[7] == (b)[7] && \
1326edd16368SStephen M. Cameron 	(a)[6] == (b)[6] && \
1327edd16368SStephen M. Cameron 	(a)[5] == (b)[5] && \
1328edd16368SStephen M. Cameron 	(a)[4] == (b)[4] && \
1329edd16368SStephen M. Cameron 	(a)[3] == (b)[3] && \
1330edd16368SStephen M. Cameron 	(a)[2] == (b)[2] && \
1331edd16368SStephen M. Cameron 	(a)[1] == (b)[1] && \
1332edd16368SStephen M. Cameron 	(a)[0] == (b)[0])
1333edd16368SStephen M. Cameron 
1334edd16368SStephen M. Cameron static void fixup_botched_add(struct ctlr_info *h,
1335edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *added)
1336edd16368SStephen M. Cameron {
1337edd16368SStephen M. Cameron 	/* called when scsi_add_device fails in order to re-adjust
1338edd16368SStephen M. Cameron 	 * h->dev[] to match the mid layer's view.
1339edd16368SStephen M. Cameron 	 */
1340edd16368SStephen M. Cameron 	unsigned long flags;
1341edd16368SStephen M. Cameron 	int i, j;
1342edd16368SStephen M. Cameron 
1343edd16368SStephen M. Cameron 	spin_lock_irqsave(&h->lock, flags);
1344edd16368SStephen M. Cameron 	for (i = 0; i < h->ndevices; i++) {
1345edd16368SStephen M. Cameron 		if (h->dev[i] == added) {
1346edd16368SStephen M. Cameron 			for (j = i; j < h->ndevices-1; j++)
1347edd16368SStephen M. Cameron 				h->dev[j] = h->dev[j+1];
1348edd16368SStephen M. Cameron 			h->ndevices--;
1349edd16368SStephen M. Cameron 			break;
1350edd16368SStephen M. Cameron 		}
1351edd16368SStephen M. Cameron 	}
1352edd16368SStephen M. Cameron 	spin_unlock_irqrestore(&h->lock, flags);
1353edd16368SStephen M. Cameron 	kfree(added);
1354edd16368SStephen M. Cameron }
1355edd16368SStephen M. Cameron 
1356edd16368SStephen M. Cameron static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1,
1357edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *dev2)
1358edd16368SStephen M. Cameron {
1359edd16368SStephen M. Cameron 	/* we compare everything except lun and target as these
1360edd16368SStephen M. Cameron 	 * are not yet assigned.  Compare parts likely
1361edd16368SStephen M. Cameron 	 * to differ first
1362edd16368SStephen M. Cameron 	 */
1363edd16368SStephen M. Cameron 	if (memcmp(dev1->scsi3addr, dev2->scsi3addr,
1364edd16368SStephen M. Cameron 		sizeof(dev1->scsi3addr)) != 0)
1365edd16368SStephen M. Cameron 		return 0;
1366edd16368SStephen M. Cameron 	if (memcmp(dev1->device_id, dev2->device_id,
1367edd16368SStephen M. Cameron 		sizeof(dev1->device_id)) != 0)
1368edd16368SStephen M. Cameron 		return 0;
1369edd16368SStephen M. Cameron 	if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0)
1370edd16368SStephen M. Cameron 		return 0;
1371edd16368SStephen M. Cameron 	if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0)
1372edd16368SStephen M. Cameron 		return 0;
1373edd16368SStephen M. Cameron 	if (dev1->devtype != dev2->devtype)
1374edd16368SStephen M. Cameron 		return 0;
1375edd16368SStephen M. Cameron 	if (dev1->bus != dev2->bus)
1376edd16368SStephen M. Cameron 		return 0;
1377edd16368SStephen M. Cameron 	return 1;
1378edd16368SStephen M. Cameron }
1379edd16368SStephen M. Cameron 
1380bd9244f7SScott Teel static inline int device_updated(struct hpsa_scsi_dev_t *dev1,
1381bd9244f7SScott Teel 	struct hpsa_scsi_dev_t *dev2)
1382bd9244f7SScott Teel {
1383bd9244f7SScott Teel 	/* Device attributes that can change, but don't mean
1384bd9244f7SScott Teel 	 * that the device is a different device, nor that the OS
1385bd9244f7SScott Teel 	 * needs to be told anything about the change.
1386bd9244f7SScott Teel 	 */
1387bd9244f7SScott Teel 	if (dev1->raid_level != dev2->raid_level)
1388bd9244f7SScott Teel 		return 1;
1389250fb125SStephen M. Cameron 	if (dev1->offload_config != dev2->offload_config)
1390250fb125SStephen M. Cameron 		return 1;
1391250fb125SStephen M. Cameron 	if (dev1->offload_enabled != dev2->offload_enabled)
1392250fb125SStephen M. Cameron 		return 1;
139393849508SDon Brace 	if (!is_logical_dev_addr_mode(dev1->scsi3addr))
139403383736SDon Brace 		if (dev1->queue_depth != dev2->queue_depth)
139503383736SDon Brace 			return 1;
1396bd9244f7SScott Teel 	return 0;
1397bd9244f7SScott Teel }
1398bd9244f7SScott Teel 
1399edd16368SStephen M. Cameron /* Find needle in haystack.  If exact match found, return DEVICE_SAME,
1400edd16368SStephen M. Cameron  * and return needle location in *index.  If scsi3addr matches, but not
1401edd16368SStephen M. Cameron  * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle
1402bd9244f7SScott Teel  * location in *index.
1403bd9244f7SScott Teel  * In the case of a minor device attribute change, such as RAID level, just
1404bd9244f7SScott Teel  * return DEVICE_UPDATED, along with the updated device's location in index.
1405bd9244f7SScott Teel  * If needle not found, return DEVICE_NOT_FOUND.
1406edd16368SStephen M. Cameron  */
1407edd16368SStephen M. Cameron static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle,
1408edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *haystack[], int haystack_size,
1409edd16368SStephen M. Cameron 	int *index)
1410edd16368SStephen M. Cameron {
1411edd16368SStephen M. Cameron 	int i;
1412edd16368SStephen M. Cameron #define DEVICE_NOT_FOUND 0
1413edd16368SStephen M. Cameron #define DEVICE_CHANGED 1
1414edd16368SStephen M. Cameron #define DEVICE_SAME 2
1415bd9244f7SScott Teel #define DEVICE_UPDATED 3
1416edd16368SStephen M. Cameron 	for (i = 0; i < haystack_size; i++) {
141723231048SStephen M. Cameron 		if (haystack[i] == NULL) /* previously removed. */
141823231048SStephen M. Cameron 			continue;
1419edd16368SStephen M. Cameron 		if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) {
1420edd16368SStephen M. Cameron 			*index = i;
1421bd9244f7SScott Teel 			if (device_is_the_same(needle, haystack[i])) {
1422bd9244f7SScott Teel 				if (device_updated(needle, haystack[i]))
1423bd9244f7SScott Teel 					return DEVICE_UPDATED;
1424edd16368SStephen M. Cameron 				return DEVICE_SAME;
1425bd9244f7SScott Teel 			} else {
14269846590eSStephen M. Cameron 				/* Keep offline devices offline */
14279846590eSStephen M. Cameron 				if (needle->volume_offline)
14289846590eSStephen M. Cameron 					return DEVICE_NOT_FOUND;
1429edd16368SStephen M. Cameron 				return DEVICE_CHANGED;
1430edd16368SStephen M. Cameron 			}
1431edd16368SStephen M. Cameron 		}
1432bd9244f7SScott Teel 	}
1433edd16368SStephen M. Cameron 	*index = -1;
1434edd16368SStephen M. Cameron 	return DEVICE_NOT_FOUND;
1435edd16368SStephen M. Cameron }
1436edd16368SStephen M. Cameron 
14379846590eSStephen M. Cameron static void hpsa_monitor_offline_device(struct ctlr_info *h,
14389846590eSStephen M. Cameron 					unsigned char scsi3addr[])
14399846590eSStephen M. Cameron {
14409846590eSStephen M. Cameron 	struct offline_device_entry *device;
14419846590eSStephen M. Cameron 	unsigned long flags;
14429846590eSStephen M. Cameron 
14439846590eSStephen M. Cameron 	/* Check to see if device is already on the list */
14449846590eSStephen M. Cameron 	spin_lock_irqsave(&h->offline_device_lock, flags);
14459846590eSStephen M. Cameron 	list_for_each_entry(device, &h->offline_device_list, offline_list) {
14469846590eSStephen M. Cameron 		if (memcmp(device->scsi3addr, scsi3addr,
14479846590eSStephen M. Cameron 			sizeof(device->scsi3addr)) == 0) {
14489846590eSStephen M. Cameron 			spin_unlock_irqrestore(&h->offline_device_lock, flags);
14499846590eSStephen M. Cameron 			return;
14509846590eSStephen M. Cameron 		}
14519846590eSStephen M. Cameron 	}
14529846590eSStephen M. Cameron 	spin_unlock_irqrestore(&h->offline_device_lock, flags);
14539846590eSStephen M. Cameron 
14549846590eSStephen M. Cameron 	/* Device is not on the list, add it. */
14559846590eSStephen M. Cameron 	device = kmalloc(sizeof(*device), GFP_KERNEL);
14569846590eSStephen M. Cameron 	if (!device) {
14579846590eSStephen M. Cameron 		dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__);
14589846590eSStephen M. Cameron 		return;
14599846590eSStephen M. Cameron 	}
14609846590eSStephen M. Cameron 	memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr));
14619846590eSStephen M. Cameron 	spin_lock_irqsave(&h->offline_device_lock, flags);
14629846590eSStephen M. Cameron 	list_add_tail(&device->offline_list, &h->offline_device_list);
14639846590eSStephen M. Cameron 	spin_unlock_irqrestore(&h->offline_device_lock, flags);
14649846590eSStephen M. Cameron }
14659846590eSStephen M. Cameron 
14669846590eSStephen M. Cameron /* Print a message explaining various offline volume states */
14679846590eSStephen M. Cameron static void hpsa_show_volume_status(struct ctlr_info *h,
14689846590eSStephen M. Cameron 	struct hpsa_scsi_dev_t *sd)
14699846590eSStephen M. Cameron {
14709846590eSStephen M. Cameron 	if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED)
14719846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
14729846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n",
14739846590eSStephen M. Cameron 			h->scsi_host->host_no,
14749846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
14759846590eSStephen M. Cameron 	switch (sd->volume_offline) {
14769846590eSStephen M. Cameron 	case HPSA_LV_OK:
14779846590eSStephen M. Cameron 		break;
14789846590eSStephen M. Cameron 	case HPSA_LV_UNDERGOING_ERASE:
14799846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
14809846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n",
14819846590eSStephen M. Cameron 			h->scsi_host->host_no,
14829846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
14839846590eSStephen M. Cameron 		break;
14849846590eSStephen M. Cameron 	case HPSA_LV_UNDERGOING_RPI:
14859846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
14869846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n",
14879846590eSStephen M. Cameron 			h->scsi_host->host_no,
14889846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
14899846590eSStephen M. Cameron 		break;
14909846590eSStephen M. Cameron 	case HPSA_LV_PENDING_RPI:
14919846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
14929846590eSStephen M. Cameron 				"C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n",
14939846590eSStephen M. Cameron 				h->scsi_host->host_no,
14949846590eSStephen M. Cameron 				sd->bus, sd->target, sd->lun);
14959846590eSStephen M. Cameron 		break;
14969846590eSStephen M. Cameron 	case HPSA_LV_ENCRYPTED_NO_KEY:
14979846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
14989846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n",
14999846590eSStephen M. Cameron 			h->scsi_host->host_no,
15009846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
15019846590eSStephen M. Cameron 		break;
15029846590eSStephen M. Cameron 	case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
15039846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
15049846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n",
15059846590eSStephen M. Cameron 			h->scsi_host->host_no,
15069846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
15079846590eSStephen M. Cameron 		break;
15089846590eSStephen M. Cameron 	case HPSA_LV_UNDERGOING_ENCRYPTION:
15099846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
15109846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n",
15119846590eSStephen M. Cameron 			h->scsi_host->host_no,
15129846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
15139846590eSStephen M. Cameron 		break;
15149846590eSStephen M. Cameron 	case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
15159846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
15169846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n",
15179846590eSStephen M. Cameron 			h->scsi_host->host_no,
15189846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
15199846590eSStephen M. Cameron 		break;
15209846590eSStephen M. Cameron 	case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
15219846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
15229846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n",
15239846590eSStephen M. Cameron 			h->scsi_host->host_no,
15249846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
15259846590eSStephen M. Cameron 		break;
15269846590eSStephen M. Cameron 	case HPSA_LV_PENDING_ENCRYPTION:
15279846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
15289846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n",
15299846590eSStephen M. Cameron 			h->scsi_host->host_no,
15309846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
15319846590eSStephen M. Cameron 		break;
15329846590eSStephen M. Cameron 	case HPSA_LV_PENDING_ENCRYPTION_REKEYING:
15339846590eSStephen M. Cameron 		dev_info(&h->pdev->dev,
15349846590eSStephen M. Cameron 			"C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n",
15359846590eSStephen M. Cameron 			h->scsi_host->host_no,
15369846590eSStephen M. Cameron 			sd->bus, sd->target, sd->lun);
15379846590eSStephen M. Cameron 		break;
15389846590eSStephen M. Cameron 	}
15399846590eSStephen M. Cameron }
15409846590eSStephen M. Cameron 
154103383736SDon Brace /*
154203383736SDon Brace  * Figure the list of physical drive pointers for a logical drive with
154303383736SDon Brace  * raid offload configured.
154403383736SDon Brace  */
154503383736SDon Brace static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h,
154603383736SDon Brace 				struct hpsa_scsi_dev_t *dev[], int ndevices,
154703383736SDon Brace 				struct hpsa_scsi_dev_t *logical_drive)
154803383736SDon Brace {
154903383736SDon Brace 	struct raid_map_data *map = &logical_drive->raid_map;
155003383736SDon Brace 	struct raid_map_disk_data *dd = &map->data[0];
155103383736SDon Brace 	int i, j;
155203383736SDon Brace 	int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
155303383736SDon Brace 				le16_to_cpu(map->metadata_disks_per_row);
155403383736SDon Brace 	int nraid_map_entries = le16_to_cpu(map->row_cnt) *
155503383736SDon Brace 				le16_to_cpu(map->layout_map_count) *
155603383736SDon Brace 				total_disks_per_row;
155703383736SDon Brace 	int nphys_disk = le16_to_cpu(map->layout_map_count) *
155803383736SDon Brace 				total_disks_per_row;
155903383736SDon Brace 	int qdepth;
156003383736SDon Brace 
156103383736SDon Brace 	if (nraid_map_entries > RAID_MAP_MAX_ENTRIES)
156203383736SDon Brace 		nraid_map_entries = RAID_MAP_MAX_ENTRIES;
156303383736SDon Brace 
1564d604f533SWebb Scales 	logical_drive->nphysical_disks = nraid_map_entries;
1565d604f533SWebb Scales 
156603383736SDon Brace 	qdepth = 0;
156703383736SDon Brace 	for (i = 0; i < nraid_map_entries; i++) {
156803383736SDon Brace 		logical_drive->phys_disk[i] = NULL;
156903383736SDon Brace 		if (!logical_drive->offload_config)
157003383736SDon Brace 			continue;
157103383736SDon Brace 		for (j = 0; j < ndevices; j++) {
157203383736SDon Brace 			if (dev[j]->devtype != TYPE_DISK)
157303383736SDon Brace 				continue;
157403383736SDon Brace 			if (is_logical_dev_addr_mode(dev[j]->scsi3addr))
157503383736SDon Brace 				continue;
157603383736SDon Brace 			if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle)
157703383736SDon Brace 				continue;
157803383736SDon Brace 
157903383736SDon Brace 			logical_drive->phys_disk[i] = dev[j];
158003383736SDon Brace 			if (i < nphys_disk)
158103383736SDon Brace 				qdepth = min(h->nr_cmds, qdepth +
158203383736SDon Brace 				    logical_drive->phys_disk[i]->queue_depth);
158303383736SDon Brace 			break;
158403383736SDon Brace 		}
158503383736SDon Brace 
158603383736SDon Brace 		/*
158703383736SDon Brace 		 * This can happen if a physical drive is removed and
158803383736SDon Brace 		 * the logical drive is degraded.  In that case, the RAID
158903383736SDon Brace 		 * map data will refer to a physical disk which isn't actually
159003383736SDon Brace 		 * present.  And in that case offload_enabled should already
159103383736SDon Brace 		 * be 0, but we'll turn it off here just in case
159203383736SDon Brace 		 */
159303383736SDon Brace 		if (!logical_drive->phys_disk[i]) {
159403383736SDon Brace 			logical_drive->offload_enabled = 0;
159541ce4c35SStephen Cameron 			logical_drive->offload_to_be_enabled = 0;
159641ce4c35SStephen Cameron 			logical_drive->queue_depth = 8;
159703383736SDon Brace 		}
159803383736SDon Brace 	}
159903383736SDon Brace 	if (nraid_map_entries)
160003383736SDon Brace 		/*
160103383736SDon Brace 		 * This is correct for reads, too high for full stripe writes,
160203383736SDon Brace 		 * way too high for partial stripe writes
160303383736SDon Brace 		 */
160403383736SDon Brace 		logical_drive->queue_depth = qdepth;
160503383736SDon Brace 	else
160603383736SDon Brace 		logical_drive->queue_depth = h->nr_cmds;
160703383736SDon Brace }
160803383736SDon Brace 
160903383736SDon Brace static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h,
161003383736SDon Brace 				struct hpsa_scsi_dev_t *dev[], int ndevices)
161103383736SDon Brace {
161203383736SDon Brace 	int i;
161303383736SDon Brace 
161403383736SDon Brace 	for (i = 0; i < ndevices; i++) {
161503383736SDon Brace 		if (dev[i]->devtype != TYPE_DISK)
161603383736SDon Brace 			continue;
161703383736SDon Brace 		if (!is_logical_dev_addr_mode(dev[i]->scsi3addr))
161803383736SDon Brace 			continue;
161941ce4c35SStephen Cameron 
162041ce4c35SStephen Cameron 		/*
162141ce4c35SStephen Cameron 		 * If offload is currently enabled, the RAID map and
162241ce4c35SStephen Cameron 		 * phys_disk[] assignment *better* not be changing
162341ce4c35SStephen Cameron 		 * and since it isn't changing, we do not need to
162441ce4c35SStephen Cameron 		 * update it.
162541ce4c35SStephen Cameron 		 */
162641ce4c35SStephen Cameron 		if (dev[i]->offload_enabled)
162741ce4c35SStephen Cameron 			continue;
162841ce4c35SStephen Cameron 
162903383736SDon Brace 		hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]);
163003383736SDon Brace 	}
163103383736SDon Brace }
163203383736SDon Brace 
16334967bd3eSStephen M. Cameron static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno,
1634edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *sd[], int nsds)
1635edd16368SStephen M. Cameron {
1636edd16368SStephen M. Cameron 	/* sd contains scsi3 addresses and devtypes, and inquiry
1637edd16368SStephen M. Cameron 	 * data.  This function takes what's in sd to be the current
1638edd16368SStephen M. Cameron 	 * reality and updates h->dev[] to reflect that reality.
1639edd16368SStephen M. Cameron 	 */
1640edd16368SStephen M. Cameron 	int i, entry, device_change, changes = 0;
1641edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *csd;
1642edd16368SStephen M. Cameron 	unsigned long flags;
1643edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t **added, **removed;
1644edd16368SStephen M. Cameron 	int nadded, nremoved;
1645edd16368SStephen M. Cameron 	struct Scsi_Host *sh = NULL;
1646edd16368SStephen M. Cameron 
1647cfe5badcSScott Teel 	added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL);
1648cfe5badcSScott Teel 	removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL);
1649edd16368SStephen M. Cameron 
1650edd16368SStephen M. Cameron 	if (!added || !removed) {
1651edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev, "out of memory in "
1652edd16368SStephen M. Cameron 			"adjust_hpsa_scsi_table\n");
1653edd16368SStephen M. Cameron 		goto free_and_out;
1654edd16368SStephen M. Cameron 	}
1655edd16368SStephen M. Cameron 
1656edd16368SStephen M. Cameron 	spin_lock_irqsave(&h->devlock, flags);
1657edd16368SStephen M. Cameron 
1658edd16368SStephen M. Cameron 	/* find any devices in h->dev[] that are not in
1659edd16368SStephen M. Cameron 	 * sd[] and remove them from h->dev[], and for any
1660edd16368SStephen M. Cameron 	 * devices which have changed, remove the old device
1661edd16368SStephen M. Cameron 	 * info and add the new device info.
1662bd9244f7SScott Teel 	 * If minor device attributes change, just update
1663bd9244f7SScott Teel 	 * the existing device structure.
1664edd16368SStephen M. Cameron 	 */
1665edd16368SStephen M. Cameron 	i = 0;
1666edd16368SStephen M. Cameron 	nremoved = 0;
1667edd16368SStephen M. Cameron 	nadded = 0;
1668edd16368SStephen M. Cameron 	while (i < h->ndevices) {
1669edd16368SStephen M. Cameron 		csd = h->dev[i];
1670edd16368SStephen M. Cameron 		device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry);
1671edd16368SStephen M. Cameron 		if (device_change == DEVICE_NOT_FOUND) {
1672edd16368SStephen M. Cameron 			changes++;
1673edd16368SStephen M. Cameron 			hpsa_scsi_remove_entry(h, hostno, i,
1674edd16368SStephen M. Cameron 				removed, &nremoved);
1675edd16368SStephen M. Cameron 			continue; /* remove ^^^, hence i not incremented */
1676edd16368SStephen M. Cameron 		} else if (device_change == DEVICE_CHANGED) {
1677edd16368SStephen M. Cameron 			changes++;
16782a8ccf31SStephen M. Cameron 			hpsa_scsi_replace_entry(h, hostno, i, sd[entry],
16792a8ccf31SStephen M. Cameron 				added, &nadded, removed, &nremoved);
1680c7f172dcSStephen M. Cameron 			/* Set it to NULL to prevent it from being freed
1681c7f172dcSStephen M. Cameron 			 * at the bottom of hpsa_update_scsi_devices()
1682c7f172dcSStephen M. Cameron 			 */
1683c7f172dcSStephen M. Cameron 			sd[entry] = NULL;
1684bd9244f7SScott Teel 		} else if (device_change == DEVICE_UPDATED) {
1685bd9244f7SScott Teel 			hpsa_scsi_update_entry(h, hostno, i, sd[entry]);
1686edd16368SStephen M. Cameron 		}
1687edd16368SStephen M. Cameron 		i++;
1688edd16368SStephen M. Cameron 	}
1689edd16368SStephen M. Cameron 
1690edd16368SStephen M. Cameron 	/* Now, make sure every device listed in sd[] is also
1691edd16368SStephen M. Cameron 	 * listed in h->dev[], adding them if they aren't found
1692edd16368SStephen M. Cameron 	 */
1693edd16368SStephen M. Cameron 
1694edd16368SStephen M. Cameron 	for (i = 0; i < nsds; i++) {
1695edd16368SStephen M. Cameron 		if (!sd[i]) /* if already added above. */
1696edd16368SStephen M. Cameron 			continue;
16979846590eSStephen M. Cameron 
16989846590eSStephen M. Cameron 		/* Don't add devices which are NOT READY, FORMAT IN PROGRESS
16999846590eSStephen M. Cameron 		 * as the SCSI mid-layer does not handle such devices well.
17009846590eSStephen M. Cameron 		 * It relentlessly loops sending TUR at 3Hz, then READ(10)
17019846590eSStephen M. Cameron 		 * at 160Hz, and prevents the system from coming up.
17029846590eSStephen M. Cameron 		 */
17039846590eSStephen M. Cameron 		if (sd[i]->volume_offline) {
17049846590eSStephen M. Cameron 			hpsa_show_volume_status(h, sd[i]);
17050d96ef5fSWebb Scales 			hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline");
17069846590eSStephen M. Cameron 			continue;
17079846590eSStephen M. Cameron 		}
17089846590eSStephen M. Cameron 
1709edd16368SStephen M. Cameron 		device_change = hpsa_scsi_find_entry(sd[i], h->dev,
1710edd16368SStephen M. Cameron 					h->ndevices, &entry);
1711edd16368SStephen M. Cameron 		if (device_change == DEVICE_NOT_FOUND) {
1712edd16368SStephen M. Cameron 			changes++;
1713edd16368SStephen M. Cameron 			if (hpsa_scsi_add_entry(h, hostno, sd[i],
1714edd16368SStephen M. Cameron 				added, &nadded) != 0)
1715edd16368SStephen M. Cameron 				break;
1716edd16368SStephen M. Cameron 			sd[i] = NULL; /* prevent from being freed later. */
1717edd16368SStephen M. Cameron 		} else if (device_change == DEVICE_CHANGED) {
1718edd16368SStephen M. Cameron 			/* should never happen... */
1719edd16368SStephen M. Cameron 			changes++;
1720edd16368SStephen M. Cameron 			dev_warn(&h->pdev->dev,
1721edd16368SStephen M. Cameron 				"device unexpectedly changed.\n");
1722edd16368SStephen M. Cameron 			/* but if it does happen, we just ignore that device */
1723edd16368SStephen M. Cameron 		}
1724edd16368SStephen M. Cameron 	}
172541ce4c35SStephen Cameron 	hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices);
172641ce4c35SStephen Cameron 
172741ce4c35SStephen Cameron 	/* Now that h->dev[]->phys_disk[] is coherent, we can enable
172841ce4c35SStephen Cameron 	 * any logical drives that need it enabled.
172941ce4c35SStephen Cameron 	 */
173041ce4c35SStephen Cameron 	for (i = 0; i < h->ndevices; i++)
173141ce4c35SStephen Cameron 		h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled;
173241ce4c35SStephen Cameron 
1733edd16368SStephen M. Cameron 	spin_unlock_irqrestore(&h->devlock, flags);
1734edd16368SStephen M. Cameron 
17359846590eSStephen M. Cameron 	/* Monitor devices which are in one of several NOT READY states to be
17369846590eSStephen M. Cameron 	 * brought online later. This must be done without holding h->devlock,
17379846590eSStephen M. Cameron 	 * so don't touch h->dev[]
17389846590eSStephen M. Cameron 	 */
17399846590eSStephen M. Cameron 	for (i = 0; i < nsds; i++) {
17409846590eSStephen M. Cameron 		if (!sd[i]) /* if already added above. */
17419846590eSStephen M. Cameron 			continue;
17429846590eSStephen M. Cameron 		if (sd[i]->volume_offline)
17439846590eSStephen M. Cameron 			hpsa_monitor_offline_device(h, sd[i]->scsi3addr);
17449846590eSStephen M. Cameron 	}
17459846590eSStephen M. Cameron 
1746edd16368SStephen M. Cameron 	/* Don't notify scsi mid layer of any changes the first time through
1747edd16368SStephen M. Cameron 	 * (or if there are no changes) scsi_scan_host will do it later the
1748edd16368SStephen M. Cameron 	 * first time through.
1749edd16368SStephen M. Cameron 	 */
1750edd16368SStephen M. Cameron 	if (hostno == -1 || !changes)
1751edd16368SStephen M. Cameron 		goto free_and_out;
1752edd16368SStephen M. Cameron 
1753edd16368SStephen M. Cameron 	sh = h->scsi_host;
1754edd16368SStephen M. Cameron 	/* Notify scsi mid layer of any removed devices */
1755edd16368SStephen M. Cameron 	for (i = 0; i < nremoved; i++) {
175641ce4c35SStephen Cameron 		if (removed[i]->expose_state & HPSA_SCSI_ADD) {
1757edd16368SStephen M. Cameron 			struct scsi_device *sdev =
1758edd16368SStephen M. Cameron 				scsi_device_lookup(sh, removed[i]->bus,
1759edd16368SStephen M. Cameron 					removed[i]->target, removed[i]->lun);
1760edd16368SStephen M. Cameron 			if (sdev != NULL) {
1761edd16368SStephen M. Cameron 				scsi_remove_device(sdev);
1762edd16368SStephen M. Cameron 				scsi_device_put(sdev);
1763edd16368SStephen M. Cameron 			} else {
176441ce4c35SStephen Cameron 				/*
176541ce4c35SStephen Cameron 				 * We don't expect to get here.
1766edd16368SStephen M. Cameron 				 * future cmds to this device will get selection
1767edd16368SStephen M. Cameron 				 * timeout as if the device was gone.
1768edd16368SStephen M. Cameron 				 */
17690d96ef5fSWebb Scales 				hpsa_show_dev_msg(KERN_WARNING, h, removed[i],
17700d96ef5fSWebb Scales 					"didn't find device for removal.");
1771edd16368SStephen M. Cameron 			}
177241ce4c35SStephen Cameron 		}
1773edd16368SStephen M. Cameron 		kfree(removed[i]);
1774edd16368SStephen M. Cameron 		removed[i] = NULL;
1775edd16368SStephen M. Cameron 	}
1776edd16368SStephen M. Cameron 
1777edd16368SStephen M. Cameron 	/* Notify scsi mid layer of any added devices */
1778edd16368SStephen M. Cameron 	for (i = 0; i < nadded; i++) {
177941ce4c35SStephen Cameron 		if (!(added[i]->expose_state & HPSA_SCSI_ADD))
178041ce4c35SStephen Cameron 			continue;
1781edd16368SStephen M. Cameron 		if (scsi_add_device(sh, added[i]->bus,
1782edd16368SStephen M. Cameron 			added[i]->target, added[i]->lun) == 0)
1783edd16368SStephen M. Cameron 			continue;
17840d96ef5fSWebb Scales 		hpsa_show_dev_msg(KERN_WARNING, h, added[i],
17850d96ef5fSWebb Scales 					"addition failed, device not added.");
1786edd16368SStephen M. Cameron 		/* now we have to remove it from h->dev,
1787edd16368SStephen M. Cameron 		 * since it didn't get added to scsi mid layer
1788edd16368SStephen M. Cameron 		 */
1789edd16368SStephen M. Cameron 		fixup_botched_add(h, added[i]);
1790105a3dbcSRobert Elliott 		added[i] = NULL;
1791edd16368SStephen M. Cameron 	}
1792edd16368SStephen M. Cameron 
1793edd16368SStephen M. Cameron free_and_out:
1794edd16368SStephen M. Cameron 	kfree(added);
1795edd16368SStephen M. Cameron 	kfree(removed);
1796edd16368SStephen M. Cameron }
1797edd16368SStephen M. Cameron 
1798edd16368SStephen M. Cameron /*
17999e03aa2fSJoe Perches  * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t *
1800edd16368SStephen M. Cameron  * Assume's h->devlock is held.
1801edd16368SStephen M. Cameron  */
1802edd16368SStephen M. Cameron static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h,
1803edd16368SStephen M. Cameron 	int bus, int target, int lun)
1804edd16368SStephen M. Cameron {
1805edd16368SStephen M. Cameron 	int i;
1806edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *sd;
1807edd16368SStephen M. Cameron 
1808edd16368SStephen M. Cameron 	for (i = 0; i < h->ndevices; i++) {
1809edd16368SStephen M. Cameron 		sd = h->dev[i];
1810edd16368SStephen M. Cameron 		if (sd->bus == bus && sd->target == target && sd->lun == lun)
1811edd16368SStephen M. Cameron 			return sd;
1812edd16368SStephen M. Cameron 	}
1813edd16368SStephen M. Cameron 	return NULL;
1814edd16368SStephen M. Cameron }
1815edd16368SStephen M. Cameron 
1816edd16368SStephen M. Cameron static int hpsa_slave_alloc(struct scsi_device *sdev)
1817edd16368SStephen M. Cameron {
1818edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *sd;
1819edd16368SStephen M. Cameron 	unsigned long flags;
1820edd16368SStephen M. Cameron 	struct ctlr_info *h;
1821edd16368SStephen M. Cameron 
1822edd16368SStephen M. Cameron 	h = sdev_to_hba(sdev);
1823edd16368SStephen M. Cameron 	spin_lock_irqsave(&h->devlock, flags);
1824edd16368SStephen M. Cameron 	sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev),
1825edd16368SStephen M. Cameron 		sdev_id(sdev), sdev->lun);
182641ce4c35SStephen Cameron 	if (likely(sd)) {
182703383736SDon Brace 		atomic_set(&sd->ioaccel_cmds_out, 0);
182841ce4c35SStephen Cameron 		sdev->hostdata = (sd->expose_state & HPSA_SCSI_ADD) ? sd : NULL;
182941ce4c35SStephen Cameron 	} else
183041ce4c35SStephen Cameron 		sdev->hostdata = NULL;
1831edd16368SStephen M. Cameron 	spin_unlock_irqrestore(&h->devlock, flags);
1832edd16368SStephen M. Cameron 	return 0;
1833edd16368SStephen M. Cameron }
1834edd16368SStephen M. Cameron 
183541ce4c35SStephen Cameron /* configure scsi device based on internal per-device structure */
183641ce4c35SStephen Cameron static int hpsa_slave_configure(struct scsi_device *sdev)
183741ce4c35SStephen Cameron {
183841ce4c35SStephen Cameron 	struct hpsa_scsi_dev_t *sd;
183941ce4c35SStephen Cameron 	int queue_depth;
184041ce4c35SStephen Cameron 
184141ce4c35SStephen Cameron 	sd = sdev->hostdata;
184241ce4c35SStephen Cameron 	sdev->no_uld_attach = !sd || !(sd->expose_state & HPSA_ULD_ATTACH);
184341ce4c35SStephen Cameron 
184441ce4c35SStephen Cameron 	if (sd)
184541ce4c35SStephen Cameron 		queue_depth = sd->queue_depth != 0 ?
184641ce4c35SStephen Cameron 			sd->queue_depth : sdev->host->can_queue;
184741ce4c35SStephen Cameron 	else
184841ce4c35SStephen Cameron 		queue_depth = sdev->host->can_queue;
184941ce4c35SStephen Cameron 
185041ce4c35SStephen Cameron 	scsi_change_queue_depth(sdev, queue_depth);
185141ce4c35SStephen Cameron 
185241ce4c35SStephen Cameron 	return 0;
185341ce4c35SStephen Cameron }
185441ce4c35SStephen Cameron 
1855edd16368SStephen M. Cameron static void hpsa_slave_destroy(struct scsi_device *sdev)
1856edd16368SStephen M. Cameron {
1857bcc44255SStephen M. Cameron 	/* nothing to do. */
1858edd16368SStephen M. Cameron }
1859edd16368SStephen M. Cameron 
1860d9a729f3SWebb Scales static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1861d9a729f3SWebb Scales {
1862d9a729f3SWebb Scales 	int i;
1863d9a729f3SWebb Scales 
1864d9a729f3SWebb Scales 	if (!h->ioaccel2_cmd_sg_list)
1865d9a729f3SWebb Scales 		return;
1866d9a729f3SWebb Scales 	for (i = 0; i < h->nr_cmds; i++) {
1867d9a729f3SWebb Scales 		kfree(h->ioaccel2_cmd_sg_list[i]);
1868d9a729f3SWebb Scales 		h->ioaccel2_cmd_sg_list[i] = NULL;
1869d9a729f3SWebb Scales 	}
1870d9a729f3SWebb Scales 	kfree(h->ioaccel2_cmd_sg_list);
1871d9a729f3SWebb Scales 	h->ioaccel2_cmd_sg_list = NULL;
1872d9a729f3SWebb Scales }
1873d9a729f3SWebb Scales 
1874d9a729f3SWebb Scales static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h)
1875d9a729f3SWebb Scales {
1876d9a729f3SWebb Scales 	int i;
1877d9a729f3SWebb Scales 
1878d9a729f3SWebb Scales 	if (h->chainsize <= 0)
1879d9a729f3SWebb Scales 		return 0;
1880d9a729f3SWebb Scales 
1881d9a729f3SWebb Scales 	h->ioaccel2_cmd_sg_list =
1882d9a729f3SWebb Scales 		kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds,
1883d9a729f3SWebb Scales 					GFP_KERNEL);
1884d9a729f3SWebb Scales 	if (!h->ioaccel2_cmd_sg_list)
1885d9a729f3SWebb Scales 		return -ENOMEM;
1886d9a729f3SWebb Scales 	for (i = 0; i < h->nr_cmds; i++) {
1887d9a729f3SWebb Scales 		h->ioaccel2_cmd_sg_list[i] =
1888d9a729f3SWebb Scales 			kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) *
1889d9a729f3SWebb Scales 					h->maxsgentries, GFP_KERNEL);
1890d9a729f3SWebb Scales 		if (!h->ioaccel2_cmd_sg_list[i])
1891d9a729f3SWebb Scales 			goto clean;
1892d9a729f3SWebb Scales 	}
1893d9a729f3SWebb Scales 	return 0;
1894d9a729f3SWebb Scales 
1895d9a729f3SWebb Scales clean:
1896d9a729f3SWebb Scales 	hpsa_free_ioaccel2_sg_chain_blocks(h);
1897d9a729f3SWebb Scales 	return -ENOMEM;
1898d9a729f3SWebb Scales }
1899d9a729f3SWebb Scales 
190033a2ffceSStephen M. Cameron static void hpsa_free_sg_chain_blocks(struct ctlr_info *h)
190133a2ffceSStephen M. Cameron {
190233a2ffceSStephen M. Cameron 	int i;
190333a2ffceSStephen M. Cameron 
190433a2ffceSStephen M. Cameron 	if (!h->cmd_sg_list)
190533a2ffceSStephen M. Cameron 		return;
190633a2ffceSStephen M. Cameron 	for (i = 0; i < h->nr_cmds; i++) {
190733a2ffceSStephen M. Cameron 		kfree(h->cmd_sg_list[i]);
190833a2ffceSStephen M. Cameron 		h->cmd_sg_list[i] = NULL;
190933a2ffceSStephen M. Cameron 	}
191033a2ffceSStephen M. Cameron 	kfree(h->cmd_sg_list);
191133a2ffceSStephen M. Cameron 	h->cmd_sg_list = NULL;
191233a2ffceSStephen M. Cameron }
191333a2ffceSStephen M. Cameron 
1914105a3dbcSRobert Elliott static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h)
191533a2ffceSStephen M. Cameron {
191633a2ffceSStephen M. Cameron 	int i;
191733a2ffceSStephen M. Cameron 
191833a2ffceSStephen M. Cameron 	if (h->chainsize <= 0)
191933a2ffceSStephen M. Cameron 		return 0;
192033a2ffceSStephen M. Cameron 
192133a2ffceSStephen M. Cameron 	h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds,
192233a2ffceSStephen M. Cameron 				GFP_KERNEL);
19233d4e6af8SRobert Elliott 	if (!h->cmd_sg_list) {
19243d4e6af8SRobert Elliott 		dev_err(&h->pdev->dev, "Failed to allocate SG list\n");
192533a2ffceSStephen M. Cameron 		return -ENOMEM;
19263d4e6af8SRobert Elliott 	}
192733a2ffceSStephen M. Cameron 	for (i = 0; i < h->nr_cmds; i++) {
192833a2ffceSStephen M. Cameron 		h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) *
192933a2ffceSStephen M. Cameron 						h->chainsize, GFP_KERNEL);
19303d4e6af8SRobert Elliott 		if (!h->cmd_sg_list[i]) {
19313d4e6af8SRobert Elliott 			dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n");
193233a2ffceSStephen M. Cameron 			goto clean;
193333a2ffceSStephen M. Cameron 		}
19343d4e6af8SRobert Elliott 	}
193533a2ffceSStephen M. Cameron 	return 0;
193633a2ffceSStephen M. Cameron 
193733a2ffceSStephen M. Cameron clean:
193833a2ffceSStephen M. Cameron 	hpsa_free_sg_chain_blocks(h);
193933a2ffceSStephen M. Cameron 	return -ENOMEM;
194033a2ffceSStephen M. Cameron }
194133a2ffceSStephen M. Cameron 
1942d9a729f3SWebb Scales static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h,
1943d9a729f3SWebb Scales 	struct io_accel2_cmd *cp, struct CommandList *c)
1944d9a729f3SWebb Scales {
1945d9a729f3SWebb Scales 	struct ioaccel2_sg_element *chain_block;
1946d9a729f3SWebb Scales 	u64 temp64;
1947d9a729f3SWebb Scales 	u32 chain_size;
1948d9a729f3SWebb Scales 
1949d9a729f3SWebb Scales 	chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex];
1950d9a729f3SWebb Scales 	chain_size = le32_to_cpu(cp->data_len);
1951d9a729f3SWebb Scales 	temp64 = pci_map_single(h->pdev, chain_block, chain_size,
1952d9a729f3SWebb Scales 				PCI_DMA_TODEVICE);
1953d9a729f3SWebb Scales 	if (dma_mapping_error(&h->pdev->dev, temp64)) {
1954d9a729f3SWebb Scales 		/* prevent subsequent unmapping */
1955d9a729f3SWebb Scales 		cp->sg->address = 0;
1956d9a729f3SWebb Scales 		return -1;
1957d9a729f3SWebb Scales 	}
1958d9a729f3SWebb Scales 	cp->sg->address = cpu_to_le64(temp64);
1959d9a729f3SWebb Scales 	return 0;
1960d9a729f3SWebb Scales }
1961d9a729f3SWebb Scales 
1962d9a729f3SWebb Scales static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h,
1963d9a729f3SWebb Scales 	struct io_accel2_cmd *cp)
1964d9a729f3SWebb Scales {
1965d9a729f3SWebb Scales 	struct ioaccel2_sg_element *chain_sg;
1966d9a729f3SWebb Scales 	u64 temp64;
1967d9a729f3SWebb Scales 	u32 chain_size;
1968d9a729f3SWebb Scales 
1969d9a729f3SWebb Scales 	chain_sg = cp->sg;
1970d9a729f3SWebb Scales 	temp64 = le64_to_cpu(chain_sg->address);
1971d9a729f3SWebb Scales 	chain_size = le32_to_cpu(cp->data_len);
1972d9a729f3SWebb Scales 	pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE);
1973d9a729f3SWebb Scales }
1974d9a729f3SWebb Scales 
1975e2bea6dfSStephen M. Cameron static int hpsa_map_sg_chain_block(struct ctlr_info *h,
197633a2ffceSStephen M. Cameron 	struct CommandList *c)
197733a2ffceSStephen M. Cameron {
197833a2ffceSStephen M. Cameron 	struct SGDescriptor *chain_sg, *chain_block;
197933a2ffceSStephen M. Cameron 	u64 temp64;
198050a0decfSStephen M. Cameron 	u32 chain_len;
198133a2ffceSStephen M. Cameron 
198233a2ffceSStephen M. Cameron 	chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
198333a2ffceSStephen M. Cameron 	chain_block = h->cmd_sg_list[c->cmdindex];
198450a0decfSStephen M. Cameron 	chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN);
198550a0decfSStephen M. Cameron 	chain_len = sizeof(*chain_sg) *
19862b08b3e9SDon Brace 		(le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries);
198750a0decfSStephen M. Cameron 	chain_sg->Len = cpu_to_le32(chain_len);
198850a0decfSStephen M. Cameron 	temp64 = pci_map_single(h->pdev, chain_block, chain_len,
198933a2ffceSStephen M. Cameron 				PCI_DMA_TODEVICE);
1990e2bea6dfSStephen M. Cameron 	if (dma_mapping_error(&h->pdev->dev, temp64)) {
1991e2bea6dfSStephen M. Cameron 		/* prevent subsequent unmapping */
199250a0decfSStephen M. Cameron 		chain_sg->Addr = cpu_to_le64(0);
1993e2bea6dfSStephen M. Cameron 		return -1;
1994e2bea6dfSStephen M. Cameron 	}
199550a0decfSStephen M. Cameron 	chain_sg->Addr = cpu_to_le64(temp64);
1996e2bea6dfSStephen M. Cameron 	return 0;
199733a2ffceSStephen M. Cameron }
199833a2ffceSStephen M. Cameron 
199933a2ffceSStephen M. Cameron static void hpsa_unmap_sg_chain_block(struct ctlr_info *h,
200033a2ffceSStephen M. Cameron 	struct CommandList *c)
200133a2ffceSStephen M. Cameron {
200233a2ffceSStephen M. Cameron 	struct SGDescriptor *chain_sg;
200333a2ffceSStephen M. Cameron 
200450a0decfSStephen M. Cameron 	if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries)
200533a2ffceSStephen M. Cameron 		return;
200633a2ffceSStephen M. Cameron 
200733a2ffceSStephen M. Cameron 	chain_sg = &c->SG[h->max_cmd_sg_entries - 1];
200850a0decfSStephen M. Cameron 	pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr),
200950a0decfSStephen M. Cameron 			le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE);
201033a2ffceSStephen M. Cameron }
201133a2ffceSStephen M. Cameron 
2012a09c1441SScott Teel 
2013a09c1441SScott Teel /* Decode the various types of errors on ioaccel2 path.
2014a09c1441SScott Teel  * Return 1 for any error that should generate a RAID path retry.
2015a09c1441SScott Teel  * Return 0 for errors that don't require a RAID path retry.
2016a09c1441SScott Teel  */
2017a09c1441SScott Teel static int handle_ioaccel_mode2_error(struct ctlr_info *h,
2018c349775eSScott Teel 					struct CommandList *c,
2019c349775eSScott Teel 					struct scsi_cmnd *cmd,
2020c349775eSScott Teel 					struct io_accel2_cmd *c2)
2021c349775eSScott Teel {
2022c349775eSScott Teel 	int data_len;
2023a09c1441SScott Teel 	int retry = 0;
2024c40820d5SJoe Handzik 	u32 ioaccel2_resid = 0;
2025c349775eSScott Teel 
2026c349775eSScott Teel 	switch (c2->error_data.serv_response) {
2027c349775eSScott Teel 	case IOACCEL2_SERV_RESPONSE_COMPLETE:
2028c349775eSScott Teel 		switch (c2->error_data.status) {
2029c349775eSScott Teel 		case IOACCEL2_STATUS_SR_TASK_COMP_GOOD:
2030c349775eSScott Teel 			break;
2031c349775eSScott Teel 		case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND:
2032ee6b1889SStephen M. Cameron 			cmd->result |= SAM_STAT_CHECK_CONDITION;
2033c349775eSScott Teel 			if (c2->error_data.data_present !=
2034ee6b1889SStephen M. Cameron 					IOACCEL2_SENSE_DATA_PRESENT) {
2035ee6b1889SStephen M. Cameron 				memset(cmd->sense_buffer, 0,
2036ee6b1889SStephen M. Cameron 					SCSI_SENSE_BUFFERSIZE);
2037c349775eSScott Teel 				break;
2038ee6b1889SStephen M. Cameron 			}
2039c349775eSScott Teel 			/* copy the sense data */
2040c349775eSScott Teel 			data_len = c2->error_data.sense_data_len;
2041c349775eSScott Teel 			if (data_len > SCSI_SENSE_BUFFERSIZE)
2042c349775eSScott Teel 				data_len = SCSI_SENSE_BUFFERSIZE;
2043c349775eSScott Teel 			if (data_len > sizeof(c2->error_data.sense_data_buff))
2044c349775eSScott Teel 				data_len =
2045c349775eSScott Teel 					sizeof(c2->error_data.sense_data_buff);
2046c349775eSScott Teel 			memcpy(cmd->sense_buffer,
2047c349775eSScott Teel 				c2->error_data.sense_data_buff, data_len);
2048a09c1441SScott Teel 			retry = 1;
2049c349775eSScott Teel 			break;
2050c349775eSScott Teel 		case IOACCEL2_STATUS_SR_TASK_COMP_BUSY:
2051a09c1441SScott Teel 			retry = 1;
2052c349775eSScott Teel 			break;
2053c349775eSScott Teel 		case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON:
2054a09c1441SScott Teel 			retry = 1;
2055c349775eSScott Teel 			break;
2056c349775eSScott Teel 		case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL:
20574a8da22bSStephen Cameron 			retry = 1;
2058c349775eSScott Teel 			break;
2059c349775eSScott Teel 		case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED:
2060a09c1441SScott Teel 			retry = 1;
2061c349775eSScott Teel 			break;
2062c349775eSScott Teel 		default:
2063a09c1441SScott Teel 			retry = 1;
2064c349775eSScott Teel 			break;
2065c349775eSScott Teel 		}
2066c349775eSScott Teel 		break;
2067c349775eSScott Teel 	case IOACCEL2_SERV_RESPONSE_FAILURE:
2068c40820d5SJoe Handzik 		switch (c2->error_data.status) {
2069c40820d5SJoe Handzik 		case IOACCEL2_STATUS_SR_IO_ERROR:
2070c40820d5SJoe Handzik 		case IOACCEL2_STATUS_SR_IO_ABORTED:
2071c40820d5SJoe Handzik 		case IOACCEL2_STATUS_SR_OVERRUN:
2072c40820d5SJoe Handzik 			retry = 1;
2073c40820d5SJoe Handzik 			break;
2074c40820d5SJoe Handzik 		case IOACCEL2_STATUS_SR_UNDERRUN:
2075c40820d5SJoe Handzik 			cmd->result = (DID_OK << 16);		/* host byte */
2076c40820d5SJoe Handzik 			cmd->result |= (COMMAND_COMPLETE << 8);	/* msg byte */
2077c40820d5SJoe Handzik 			ioaccel2_resid = get_unaligned_le32(
2078c40820d5SJoe Handzik 						&c2->error_data.resid_cnt[0]);
2079c40820d5SJoe Handzik 			scsi_set_resid(cmd, ioaccel2_resid);
2080c40820d5SJoe Handzik 			break;
2081c40820d5SJoe Handzik 		case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE:
2082c40820d5SJoe Handzik 		case IOACCEL2_STATUS_SR_INVALID_DEVICE:
2083c40820d5SJoe Handzik 		case IOACCEL2_STATUS_SR_IOACCEL_DISABLED:
2084c40820d5SJoe Handzik 			/* We will get an event from ctlr to trigger rescan */
2085c40820d5SJoe Handzik 			retry = 1;
2086c40820d5SJoe Handzik 			break;
2087c40820d5SJoe Handzik 		default:
2088c40820d5SJoe Handzik 			retry = 1;
2089c40820d5SJoe Handzik 		}
2090c349775eSScott Teel 		break;
2091c349775eSScott Teel 	case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
2092c349775eSScott Teel 		break;
2093c349775eSScott Teel 	case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
2094c349775eSScott Teel 		break;
2095c349775eSScott Teel 	case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
2096a09c1441SScott Teel 		retry = 1;
2097c349775eSScott Teel 		break;
2098c349775eSScott Teel 	case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
2099c349775eSScott Teel 		break;
2100c349775eSScott Teel 	default:
2101a09c1441SScott Teel 		retry = 1;
2102c349775eSScott Teel 		break;
2103c349775eSScott Teel 	}
2104a09c1441SScott Teel 
2105a09c1441SScott Teel 	return retry;	/* retry on raid path? */
2106c349775eSScott Teel }
2107c349775eSScott Teel 
2108a58e7e53SWebb Scales static void hpsa_cmd_resolve_events(struct ctlr_info *h,
2109a58e7e53SWebb Scales 		struct CommandList *c)
2110a58e7e53SWebb Scales {
2111d604f533SWebb Scales 	bool do_wake = false;
2112d604f533SWebb Scales 
2113a58e7e53SWebb Scales 	/*
2114a58e7e53SWebb Scales 	 * Prevent the following race in the abort handler:
2115a58e7e53SWebb Scales 	 *
2116a58e7e53SWebb Scales 	 * 1. LLD is requested to abort a SCSI command
2117a58e7e53SWebb Scales 	 * 2. The SCSI command completes
2118a58e7e53SWebb Scales 	 * 3. The struct CommandList associated with step 2 is made available
2119a58e7e53SWebb Scales 	 * 4. New I/O request to LLD to another LUN re-uses struct CommandList
2120a58e7e53SWebb Scales 	 * 5. Abort handler follows scsi_cmnd->host_scribble and
2121a58e7e53SWebb Scales 	 *    finds struct CommandList and tries to aborts it
2122a58e7e53SWebb Scales 	 * Now we have aborted the wrong command.
2123a58e7e53SWebb Scales 	 *
2124d604f533SWebb Scales 	 * Reset c->scsi_cmd here so that the abort or reset handler will know
2125d604f533SWebb Scales 	 * this command has completed.  Then, check to see if the handler is
2126a58e7e53SWebb Scales 	 * waiting for this command, and, if so, wake it.
2127a58e7e53SWebb Scales 	 */
2128a58e7e53SWebb Scales 	c->scsi_cmd = SCSI_CMD_IDLE;
2129d604f533SWebb Scales 	mb();	/* Declare command idle before checking for pending events. */
2130a58e7e53SWebb Scales 	if (c->abort_pending) {
2131d604f533SWebb Scales 		do_wake = true;
2132a58e7e53SWebb Scales 		c->abort_pending = false;
2133a58e7e53SWebb Scales 	}
2134d604f533SWebb Scales 	if (c->reset_pending) {
2135d604f533SWebb Scales 		unsigned long flags;
2136d604f533SWebb Scales 		struct hpsa_scsi_dev_t *dev;
2137d604f533SWebb Scales 
2138d604f533SWebb Scales 		/*
2139d604f533SWebb Scales 		 * There appears to be a reset pending; lock the lock and
2140d604f533SWebb Scales 		 * reconfirm.  If so, then decrement the count of outstanding
2141d604f533SWebb Scales 		 * commands and wake the reset command if this is the last one.
2142d604f533SWebb Scales 		 */
2143d604f533SWebb Scales 		spin_lock_irqsave(&h->lock, flags);
2144d604f533SWebb Scales 		dev = c->reset_pending;		/* Re-fetch under the lock. */
2145d604f533SWebb Scales 		if (dev && atomic_dec_and_test(&dev->reset_cmds_out))
2146d604f533SWebb Scales 			do_wake = true;
2147d604f533SWebb Scales 		c->reset_pending = NULL;
2148d604f533SWebb Scales 		spin_unlock_irqrestore(&h->lock, flags);
2149d604f533SWebb Scales 	}
2150d604f533SWebb Scales 
2151d604f533SWebb Scales 	if (do_wake)
2152d604f533SWebb Scales 		wake_up_all(&h->event_sync_wait_queue);
2153a58e7e53SWebb Scales }
2154a58e7e53SWebb Scales 
215573153fe5SWebb Scales static void hpsa_cmd_resolve_and_free(struct ctlr_info *h,
215673153fe5SWebb Scales 				      struct CommandList *c)
215773153fe5SWebb Scales {
215873153fe5SWebb Scales 	hpsa_cmd_resolve_events(h, c);
215973153fe5SWebb Scales 	cmd_tagged_free(h, c);
216073153fe5SWebb Scales }
216173153fe5SWebb Scales 
21628a0ff92cSWebb Scales static void hpsa_cmd_free_and_done(struct ctlr_info *h,
21638a0ff92cSWebb Scales 		struct CommandList *c, struct scsi_cmnd *cmd)
21648a0ff92cSWebb Scales {
216573153fe5SWebb Scales 	hpsa_cmd_resolve_and_free(h, c);
21668a0ff92cSWebb Scales 	cmd->scsi_done(cmd);
21678a0ff92cSWebb Scales }
21688a0ff92cSWebb Scales 
21698a0ff92cSWebb Scales static void hpsa_retry_cmd(struct ctlr_info *h, struct CommandList *c)
21708a0ff92cSWebb Scales {
21718a0ff92cSWebb Scales 	INIT_WORK(&c->work, hpsa_command_resubmit_worker);
21728a0ff92cSWebb Scales 	queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work);
21738a0ff92cSWebb Scales }
21748a0ff92cSWebb Scales 
2175a58e7e53SWebb Scales static void hpsa_set_scsi_cmd_aborted(struct scsi_cmnd *cmd)
2176a58e7e53SWebb Scales {
2177a58e7e53SWebb Scales 	cmd->result = DID_ABORT << 16;
2178a58e7e53SWebb Scales }
2179a58e7e53SWebb Scales 
2180a58e7e53SWebb Scales static void hpsa_cmd_abort_and_free(struct ctlr_info *h, struct CommandList *c,
2181a58e7e53SWebb Scales 				    struct scsi_cmnd *cmd)
2182a58e7e53SWebb Scales {
2183a58e7e53SWebb Scales 	hpsa_set_scsi_cmd_aborted(cmd);
2184a58e7e53SWebb Scales 	dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n",
2185a58e7e53SWebb Scales 			 c->Request.CDB, c->err_info->ScsiStatus);
218673153fe5SWebb Scales 	hpsa_cmd_resolve_and_free(h, c);
2187a58e7e53SWebb Scales }
2188a58e7e53SWebb Scales 
2189c349775eSScott Teel static void process_ioaccel2_completion(struct ctlr_info *h,
2190c349775eSScott Teel 		struct CommandList *c, struct scsi_cmnd *cmd,
2191c349775eSScott Teel 		struct hpsa_scsi_dev_t *dev)
2192c349775eSScott Teel {
2193c349775eSScott Teel 	struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2194c349775eSScott Teel 
2195c349775eSScott Teel 	/* check for good status */
2196c349775eSScott Teel 	if (likely(c2->error_data.serv_response == 0 &&
21978a0ff92cSWebb Scales 			c2->error_data.status == 0))
21988a0ff92cSWebb Scales 		return hpsa_cmd_free_and_done(h, c, cmd);
2199c349775eSScott Teel 
22008a0ff92cSWebb Scales 	/*
22018a0ff92cSWebb Scales 	 * Any RAID offload error results in retry which will use
2202c349775eSScott Teel 	 * the normal I/O path so the controller can handle whatever's
2203c349775eSScott Teel 	 * wrong.
2204c349775eSScott Teel 	 */
2205c349775eSScott Teel 	if (is_logical_dev_addr_mode(dev->scsi3addr) &&
2206c349775eSScott Teel 		c2->error_data.serv_response ==
2207c349775eSScott Teel 			IOACCEL2_SERV_RESPONSE_FAILURE) {
2208080ef1ccSDon Brace 		if (c2->error_data.status ==
2209080ef1ccSDon Brace 			IOACCEL2_STATUS_SR_IOACCEL_DISABLED)
2210c349775eSScott Teel 			dev->offload_enabled = 0;
22118a0ff92cSWebb Scales 
22128a0ff92cSWebb Scales 		return hpsa_retry_cmd(h, c);
2213080ef1ccSDon Brace 	}
2214080ef1ccSDon Brace 
2215080ef1ccSDon Brace 	if (handle_ioaccel_mode2_error(h, c, cmd, c2))
22168a0ff92cSWebb Scales 		return hpsa_retry_cmd(h, c);
2217080ef1ccSDon Brace 
22188a0ff92cSWebb Scales 	return hpsa_cmd_free_and_done(h, c, cmd);
2219c349775eSScott Teel }
2220c349775eSScott Teel 
22219437ac43SStephen Cameron /* Returns 0 on success, < 0 otherwise. */
22229437ac43SStephen Cameron static int hpsa_evaluate_tmf_status(struct ctlr_info *h,
22239437ac43SStephen Cameron 					struct CommandList *cp)
22249437ac43SStephen Cameron {
22259437ac43SStephen Cameron 	u8 tmf_status = cp->err_info->ScsiStatus;
22269437ac43SStephen Cameron 
22279437ac43SStephen Cameron 	switch (tmf_status) {
22289437ac43SStephen Cameron 	case CISS_TMF_COMPLETE:
22299437ac43SStephen Cameron 		/*
22309437ac43SStephen Cameron 		 * CISS_TMF_COMPLETE never happens, instead,
22319437ac43SStephen Cameron 		 * ei->CommandStatus == 0 for this case.
22329437ac43SStephen Cameron 		 */
22339437ac43SStephen Cameron 	case CISS_TMF_SUCCESS:
22349437ac43SStephen Cameron 		return 0;
22359437ac43SStephen Cameron 	case CISS_TMF_INVALID_FRAME:
22369437ac43SStephen Cameron 	case CISS_TMF_NOT_SUPPORTED:
22379437ac43SStephen Cameron 	case CISS_TMF_FAILED:
22389437ac43SStephen Cameron 	case CISS_TMF_WRONG_LUN:
22399437ac43SStephen Cameron 	case CISS_TMF_OVERLAPPED_TAG:
22409437ac43SStephen Cameron 		break;
22419437ac43SStephen Cameron 	default:
22429437ac43SStephen Cameron 		dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n",
22439437ac43SStephen Cameron 				tmf_status);
22449437ac43SStephen Cameron 		break;
22459437ac43SStephen Cameron 	}
22469437ac43SStephen Cameron 	return -tmf_status;
22479437ac43SStephen Cameron }
22489437ac43SStephen Cameron 
22491fb011fbSStephen M. Cameron static void complete_scsi_command(struct CommandList *cp)
2250edd16368SStephen M. Cameron {
2251edd16368SStephen M. Cameron 	struct scsi_cmnd *cmd;
2252edd16368SStephen M. Cameron 	struct ctlr_info *h;
2253edd16368SStephen M. Cameron 	struct ErrorInfo *ei;
2254283b4a9bSStephen M. Cameron 	struct hpsa_scsi_dev_t *dev;
2255d9a729f3SWebb Scales 	struct io_accel2_cmd *c2;
2256edd16368SStephen M. Cameron 
22579437ac43SStephen Cameron 	u8 sense_key;
22589437ac43SStephen Cameron 	u8 asc;      /* additional sense code */
22599437ac43SStephen Cameron 	u8 ascq;     /* additional sense code qualifier */
2260db111e18SStephen M. Cameron 	unsigned long sense_data_size;
2261edd16368SStephen M. Cameron 
2262edd16368SStephen M. Cameron 	ei = cp->err_info;
22637fa3030cSStephen Cameron 	cmd = cp->scsi_cmd;
2264edd16368SStephen M. Cameron 	h = cp->h;
2265283b4a9bSStephen M. Cameron 	dev = cmd->device->hostdata;
2266d9a729f3SWebb Scales 	c2 = &h->ioaccel2_cmd_pool[cp->cmdindex];
2267edd16368SStephen M. Cameron 
2268edd16368SStephen M. Cameron 	scsi_dma_unmap(cmd); /* undo the DMA mappings */
2269e1f7de0cSMatt Gates 	if ((cp->cmd_type == CMD_SCSI) &&
22702b08b3e9SDon Brace 		(le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries))
227133a2ffceSStephen M. Cameron 		hpsa_unmap_sg_chain_block(h, cp);
2272edd16368SStephen M. Cameron 
2273d9a729f3SWebb Scales 	if ((cp->cmd_type == CMD_IOACCEL2) &&
2274d9a729f3SWebb Scales 		(c2->sg[0].chain_indicator == IOACCEL2_CHAIN))
2275d9a729f3SWebb Scales 		hpsa_unmap_ioaccel2_sg_chain_block(h, c2);
2276d9a729f3SWebb Scales 
2277edd16368SStephen M. Cameron 	cmd->result = (DID_OK << 16); 		/* host byte */
2278edd16368SStephen M. Cameron 	cmd->result |= (COMMAND_COMPLETE << 8);	/* msg byte */
2279c349775eSScott Teel 
228003383736SDon Brace 	if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1)
228103383736SDon Brace 		atomic_dec(&cp->phys_disk->ioaccel_cmds_out);
228203383736SDon Brace 
228325163bd5SWebb Scales 	/*
228425163bd5SWebb Scales 	 * We check for lockup status here as it may be set for
228525163bd5SWebb Scales 	 * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by
228625163bd5SWebb Scales 	 * fail_all_oustanding_cmds()
228725163bd5SWebb Scales 	 */
228825163bd5SWebb Scales 	if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) {
228925163bd5SWebb Scales 		/* DID_NO_CONNECT will prevent a retry */
229025163bd5SWebb Scales 		cmd->result = DID_NO_CONNECT << 16;
22918a0ff92cSWebb Scales 		return hpsa_cmd_free_and_done(h, cp, cmd);
229225163bd5SWebb Scales 	}
229325163bd5SWebb Scales 
2294d604f533SWebb Scales 	if ((unlikely(hpsa_is_pending_event(cp)))) {
2295d604f533SWebb Scales 		if (cp->reset_pending)
2296d604f533SWebb Scales 			return hpsa_cmd_resolve_and_free(h, cp);
2297d604f533SWebb Scales 		if (cp->abort_pending)
2298d604f533SWebb Scales 			return hpsa_cmd_abort_and_free(h, cp, cmd);
2299d604f533SWebb Scales 	}
2300d604f533SWebb Scales 
2301c349775eSScott Teel 	if (cp->cmd_type == CMD_IOACCEL2)
2302c349775eSScott Teel 		return process_ioaccel2_completion(h, cp, cmd, dev);
2303c349775eSScott Teel 
23046aa4c361SRobert Elliott 	scsi_set_resid(cmd, ei->ResidualCnt);
23058a0ff92cSWebb Scales 	if (ei->CommandStatus == 0)
23068a0ff92cSWebb Scales 		return hpsa_cmd_free_and_done(h, cp, cmd);
23076aa4c361SRobert Elliott 
2308e1f7de0cSMatt Gates 	/* For I/O accelerator commands, copy over some fields to the normal
2309e1f7de0cSMatt Gates 	 * CISS header used below for error handling.
2310e1f7de0cSMatt Gates 	 */
2311e1f7de0cSMatt Gates 	if (cp->cmd_type == CMD_IOACCEL1) {
2312e1f7de0cSMatt Gates 		struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex];
23132b08b3e9SDon Brace 		cp->Header.SGList = scsi_sg_count(cmd);
23142b08b3e9SDon Brace 		cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList);
23152b08b3e9SDon Brace 		cp->Request.CDBLen = le16_to_cpu(c->io_flags) &
23162b08b3e9SDon Brace 			IOACCEL1_IOFLAGS_CDBLEN_MASK;
231750a0decfSStephen M. Cameron 		cp->Header.tag = c->tag;
2318e1f7de0cSMatt Gates 		memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8);
2319e1f7de0cSMatt Gates 		memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen);
2320283b4a9bSStephen M. Cameron 
2321283b4a9bSStephen M. Cameron 		/* Any RAID offload error results in retry which will use
2322283b4a9bSStephen M. Cameron 		 * the normal I/O path so the controller can handle whatever's
2323283b4a9bSStephen M. Cameron 		 * wrong.
2324283b4a9bSStephen M. Cameron 		 */
2325283b4a9bSStephen M. Cameron 		if (is_logical_dev_addr_mode(dev->scsi3addr)) {
2326283b4a9bSStephen M. Cameron 			if (ei->CommandStatus == CMD_IOACCEL_DISABLED)
2327283b4a9bSStephen M. Cameron 				dev->offload_enabled = 0;
23288a0ff92cSWebb Scales 			return hpsa_retry_cmd(h, cp);
2329283b4a9bSStephen M. Cameron 		}
2330e1f7de0cSMatt Gates 	}
2331e1f7de0cSMatt Gates 
2332edd16368SStephen M. Cameron 	/* an error has occurred */
2333edd16368SStephen M. Cameron 	switch (ei->CommandStatus) {
2334edd16368SStephen M. Cameron 
2335edd16368SStephen M. Cameron 	case CMD_TARGET_STATUS:
23369437ac43SStephen Cameron 		cmd->result |= ei->ScsiStatus;
23379437ac43SStephen Cameron 		/* copy the sense data */
23389437ac43SStephen Cameron 		if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo))
23399437ac43SStephen Cameron 			sense_data_size = SCSI_SENSE_BUFFERSIZE;
23409437ac43SStephen Cameron 		else
23419437ac43SStephen Cameron 			sense_data_size = sizeof(ei->SenseInfo);
23429437ac43SStephen Cameron 		if (ei->SenseLen < sense_data_size)
23439437ac43SStephen Cameron 			sense_data_size = ei->SenseLen;
23449437ac43SStephen Cameron 		memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size);
23459437ac43SStephen Cameron 		if (ei->ScsiStatus)
23469437ac43SStephen Cameron 			decode_sense_data(ei->SenseInfo, sense_data_size,
23479437ac43SStephen Cameron 				&sense_key, &asc, &ascq);
2348edd16368SStephen M. Cameron 		if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) {
23491d3b3609SMatt Gates 			if (sense_key == ABORTED_COMMAND) {
23502e311fbaSStephen M. Cameron 				cmd->result |= DID_SOFT_ERROR << 16;
23511d3b3609SMatt Gates 				break;
23521d3b3609SMatt Gates 			}
2353edd16368SStephen M. Cameron 			break;
2354edd16368SStephen M. Cameron 		}
2355edd16368SStephen M. Cameron 		/* Problem was not a check condition
2356edd16368SStephen M. Cameron 		 * Pass it up to the upper layers...
2357edd16368SStephen M. Cameron 		 */
2358edd16368SStephen M. Cameron 		if (ei->ScsiStatus) {
2359edd16368SStephen M. Cameron 			dev_warn(&h->pdev->dev, "cp %p has status 0x%x "
2360edd16368SStephen M. Cameron 				"Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, "
2361edd16368SStephen M. Cameron 				"Returning result: 0x%x\n",
2362edd16368SStephen M. Cameron 				cp, ei->ScsiStatus,
2363edd16368SStephen M. Cameron 				sense_key, asc, ascq,
2364edd16368SStephen M. Cameron 				cmd->result);
2365edd16368SStephen M. Cameron 		} else {  /* scsi status is zero??? How??? */
2366edd16368SStephen M. Cameron 			dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. "
2367edd16368SStephen M. Cameron 				"Returning no connection.\n", cp),
2368edd16368SStephen M. Cameron 
2369edd16368SStephen M. Cameron 			/* Ordinarily, this case should never happen,
2370edd16368SStephen M. Cameron 			 * but there is a bug in some released firmware
2371edd16368SStephen M. Cameron 			 * revisions that allows it to happen if, for
2372edd16368SStephen M. Cameron 			 * example, a 4100 backplane loses power and
2373edd16368SStephen M. Cameron 			 * the tape drive is in it.  We assume that
2374edd16368SStephen M. Cameron 			 * it's a fatal error of some kind because we
2375edd16368SStephen M. Cameron 			 * can't show that it wasn't. We will make it
2376edd16368SStephen M. Cameron 			 * look like selection timeout since that is
2377edd16368SStephen M. Cameron 			 * the most common reason for this to occur,
2378edd16368SStephen M. Cameron 			 * and it's severe enough.
2379edd16368SStephen M. Cameron 			 */
2380edd16368SStephen M. Cameron 
2381edd16368SStephen M. Cameron 			cmd->result = DID_NO_CONNECT << 16;
2382edd16368SStephen M. Cameron 		}
2383edd16368SStephen M. Cameron 		break;
2384edd16368SStephen M. Cameron 
2385edd16368SStephen M. Cameron 	case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2386edd16368SStephen M. Cameron 		break;
2387edd16368SStephen M. Cameron 	case CMD_DATA_OVERRUN:
2388f42e81e1SStephen Cameron 		dev_warn(&h->pdev->dev,
2389f42e81e1SStephen Cameron 			"CDB %16phN data overrun\n", cp->Request.CDB);
2390edd16368SStephen M. Cameron 		break;
2391edd16368SStephen M. Cameron 	case CMD_INVALID: {
2392edd16368SStephen M. Cameron 		/* print_bytes(cp, sizeof(*cp), 1, 0);
2393edd16368SStephen M. Cameron 		print_cmd(cp); */
2394edd16368SStephen M. Cameron 		/* We get CMD_INVALID if you address a non-existent device
2395edd16368SStephen M. Cameron 		 * instead of a selection timeout (no response).  You will
2396edd16368SStephen M. Cameron 		 * see this if you yank out a drive, then try to access it.
2397edd16368SStephen M. Cameron 		 * This is kind of a shame because it means that any other
2398edd16368SStephen M. Cameron 		 * CMD_INVALID (e.g. driver bug) will get interpreted as a
2399edd16368SStephen M. Cameron 		 * missing target. */
2400edd16368SStephen M. Cameron 		cmd->result = DID_NO_CONNECT << 16;
2401edd16368SStephen M. Cameron 	}
2402edd16368SStephen M. Cameron 		break;
2403edd16368SStephen M. Cameron 	case CMD_PROTOCOL_ERR:
2404256d0eaaSStephen M. Cameron 		cmd->result = DID_ERROR << 16;
2405f42e81e1SStephen Cameron 		dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n",
2406f42e81e1SStephen Cameron 				cp->Request.CDB);
2407edd16368SStephen M. Cameron 		break;
2408edd16368SStephen M. Cameron 	case CMD_HARDWARE_ERR:
2409edd16368SStephen M. Cameron 		cmd->result = DID_ERROR << 16;
2410f42e81e1SStephen Cameron 		dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n",
2411f42e81e1SStephen Cameron 			cp->Request.CDB);
2412edd16368SStephen M. Cameron 		break;
2413edd16368SStephen M. Cameron 	case CMD_CONNECTION_LOST:
2414edd16368SStephen M. Cameron 		cmd->result = DID_ERROR << 16;
2415f42e81e1SStephen Cameron 		dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n",
2416f42e81e1SStephen Cameron 			cp->Request.CDB);
2417edd16368SStephen M. Cameron 		break;
2418edd16368SStephen M. Cameron 	case CMD_ABORTED:
2419a58e7e53SWebb Scales 		/* Return now to avoid calling scsi_done(). */
2420a58e7e53SWebb Scales 		return hpsa_cmd_abort_and_free(h, cp, cmd);
2421edd16368SStephen M. Cameron 	case CMD_ABORT_FAILED:
2422edd16368SStephen M. Cameron 		cmd->result = DID_ERROR << 16;
2423f42e81e1SStephen Cameron 		dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n",
2424f42e81e1SStephen Cameron 			cp->Request.CDB);
2425edd16368SStephen M. Cameron 		break;
2426edd16368SStephen M. Cameron 	case CMD_UNSOLICITED_ABORT:
2427f6e76055SStephen M. Cameron 		cmd->result = DID_SOFT_ERROR << 16; /* retry the command */
2428f42e81e1SStephen Cameron 		dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n",
2429f42e81e1SStephen Cameron 			cp->Request.CDB);
2430edd16368SStephen M. Cameron 		break;
2431edd16368SStephen M. Cameron 	case CMD_TIMEOUT:
2432edd16368SStephen M. Cameron 		cmd->result = DID_TIME_OUT << 16;
2433f42e81e1SStephen Cameron 		dev_warn(&h->pdev->dev, "CDB %16phN timed out\n",
2434f42e81e1SStephen Cameron 			cp->Request.CDB);
2435edd16368SStephen M. Cameron 		break;
24361d5e2ed0SStephen M. Cameron 	case CMD_UNABORTABLE:
24371d5e2ed0SStephen M. Cameron 		cmd->result = DID_ERROR << 16;
24381d5e2ed0SStephen M. Cameron 		dev_warn(&h->pdev->dev, "Command unabortable\n");
24391d5e2ed0SStephen M. Cameron 		break;
24409437ac43SStephen Cameron 	case CMD_TMF_STATUS:
24419437ac43SStephen Cameron 		if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */
24429437ac43SStephen Cameron 			cmd->result = DID_ERROR << 16;
24439437ac43SStephen Cameron 		break;
2444283b4a9bSStephen M. Cameron 	case CMD_IOACCEL_DISABLED:
2445283b4a9bSStephen M. Cameron 		/* This only handles the direct pass-through case since RAID
2446283b4a9bSStephen M. Cameron 		 * offload is handled above.  Just attempt a retry.
2447283b4a9bSStephen M. Cameron 		 */
2448283b4a9bSStephen M. Cameron 		cmd->result = DID_SOFT_ERROR << 16;
2449283b4a9bSStephen M. Cameron 		dev_warn(&h->pdev->dev,
2450283b4a9bSStephen M. Cameron 				"cp %p had HP SSD Smart Path error\n", cp);
2451283b4a9bSStephen M. Cameron 		break;
2452edd16368SStephen M. Cameron 	default:
2453edd16368SStephen M. Cameron 		cmd->result = DID_ERROR << 16;
2454edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n",
2455edd16368SStephen M. Cameron 				cp, ei->CommandStatus);
2456edd16368SStephen M. Cameron 	}
24578a0ff92cSWebb Scales 
24588a0ff92cSWebb Scales 	return hpsa_cmd_free_and_done(h, cp, cmd);
2459edd16368SStephen M. Cameron }
2460edd16368SStephen M. Cameron 
2461edd16368SStephen M. Cameron static void hpsa_pci_unmap(struct pci_dev *pdev,
2462edd16368SStephen M. Cameron 	struct CommandList *c, int sg_used, int data_direction)
2463edd16368SStephen M. Cameron {
2464edd16368SStephen M. Cameron 	int i;
2465edd16368SStephen M. Cameron 
246650a0decfSStephen M. Cameron 	for (i = 0; i < sg_used; i++)
246750a0decfSStephen M. Cameron 		pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr),
246850a0decfSStephen M. Cameron 				le32_to_cpu(c->SG[i].Len),
2469edd16368SStephen M. Cameron 				data_direction);
2470edd16368SStephen M. Cameron }
2471edd16368SStephen M. Cameron 
2472a2dac136SStephen M. Cameron static int hpsa_map_one(struct pci_dev *pdev,
2473edd16368SStephen M. Cameron 		struct CommandList *cp,
2474edd16368SStephen M. Cameron 		unsigned char *buf,
2475edd16368SStephen M. Cameron 		size_t buflen,
2476edd16368SStephen M. Cameron 		int data_direction)
2477edd16368SStephen M. Cameron {
247801a02ffcSStephen M. Cameron 	u64 addr64;
2479edd16368SStephen M. Cameron 
2480edd16368SStephen M. Cameron 	if (buflen == 0 || data_direction == PCI_DMA_NONE) {
2481edd16368SStephen M. Cameron 		cp->Header.SGList = 0;
248250a0decfSStephen M. Cameron 		cp->Header.SGTotal = cpu_to_le16(0);
2483a2dac136SStephen M. Cameron 		return 0;
2484edd16368SStephen M. Cameron 	}
2485edd16368SStephen M. Cameron 
248650a0decfSStephen M. Cameron 	addr64 = pci_map_single(pdev, buf, buflen, data_direction);
2487eceaae18SShuah Khan 	if (dma_mapping_error(&pdev->dev, addr64)) {
2488a2dac136SStephen M. Cameron 		/* Prevent subsequent unmap of something never mapped */
2489eceaae18SShuah Khan 		cp->Header.SGList = 0;
249050a0decfSStephen M. Cameron 		cp->Header.SGTotal = cpu_to_le16(0);
2491a2dac136SStephen M. Cameron 		return -1;
2492eceaae18SShuah Khan 	}
249350a0decfSStephen M. Cameron 	cp->SG[0].Addr = cpu_to_le64(addr64);
249450a0decfSStephen M. Cameron 	cp->SG[0].Len = cpu_to_le32(buflen);
249550a0decfSStephen M. Cameron 	cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */
249650a0decfSStephen M. Cameron 	cp->Header.SGList = 1;   /* no. SGs contig in this cmd */
249750a0decfSStephen M. Cameron 	cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */
2498a2dac136SStephen M. Cameron 	return 0;
2499edd16368SStephen M. Cameron }
2500edd16368SStephen M. Cameron 
250125163bd5SWebb Scales #define NO_TIMEOUT ((unsigned long) -1)
250225163bd5SWebb Scales #define DEFAULT_TIMEOUT 30000 /* milliseconds */
250325163bd5SWebb Scales static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h,
250425163bd5SWebb Scales 	struct CommandList *c, int reply_queue, unsigned long timeout_msecs)
2505edd16368SStephen M. Cameron {
2506edd16368SStephen M. Cameron 	DECLARE_COMPLETION_ONSTACK(wait);
2507edd16368SStephen M. Cameron 
2508edd16368SStephen M. Cameron 	c->waiting = &wait;
250925163bd5SWebb Scales 	__enqueue_cmd_and_start_io(h, c, reply_queue);
251025163bd5SWebb Scales 	if (timeout_msecs == NO_TIMEOUT) {
251125163bd5SWebb Scales 		/* TODO: get rid of this no-timeout thing */
251225163bd5SWebb Scales 		wait_for_completion_io(&wait);
251325163bd5SWebb Scales 		return IO_OK;
251425163bd5SWebb Scales 	}
251525163bd5SWebb Scales 	if (!wait_for_completion_io_timeout(&wait,
251625163bd5SWebb Scales 					msecs_to_jiffies(timeout_msecs))) {
251725163bd5SWebb Scales 		dev_warn(&h->pdev->dev, "Command timed out.\n");
251825163bd5SWebb Scales 		return -ETIMEDOUT;
251925163bd5SWebb Scales 	}
252025163bd5SWebb Scales 	return IO_OK;
252125163bd5SWebb Scales }
252225163bd5SWebb Scales 
252325163bd5SWebb Scales static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c,
252425163bd5SWebb Scales 				   int reply_queue, unsigned long timeout_msecs)
252525163bd5SWebb Scales {
252625163bd5SWebb Scales 	if (unlikely(lockup_detected(h))) {
252725163bd5SWebb Scales 		c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
252825163bd5SWebb Scales 		return IO_OK;
252925163bd5SWebb Scales 	}
253025163bd5SWebb Scales 	return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs);
2531edd16368SStephen M. Cameron }
2532edd16368SStephen M. Cameron 
2533094963daSStephen M. Cameron static u32 lockup_detected(struct ctlr_info *h)
2534094963daSStephen M. Cameron {
2535094963daSStephen M. Cameron 	int cpu;
2536094963daSStephen M. Cameron 	u32 rc, *lockup_detected;
2537094963daSStephen M. Cameron 
2538094963daSStephen M. Cameron 	cpu = get_cpu();
2539094963daSStephen M. Cameron 	lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
2540094963daSStephen M. Cameron 	rc = *lockup_detected;
2541094963daSStephen M. Cameron 	put_cpu();
2542094963daSStephen M. Cameron 	return rc;
2543094963daSStephen M. Cameron }
2544094963daSStephen M. Cameron 
25459c2fc160SStephen M. Cameron #define MAX_DRIVER_CMD_RETRIES 25
254625163bd5SWebb Scales static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h,
254725163bd5SWebb Scales 	struct CommandList *c, int data_direction, unsigned long timeout_msecs)
2548edd16368SStephen M. Cameron {
25499c2fc160SStephen M. Cameron 	int backoff_time = 10, retry_count = 0;
255025163bd5SWebb Scales 	int rc;
2551edd16368SStephen M. Cameron 
2552edd16368SStephen M. Cameron 	do {
25537630abd0SJoe Perches 		memset(c->err_info, 0, sizeof(*c->err_info));
255425163bd5SWebb Scales 		rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE,
255525163bd5SWebb Scales 						  timeout_msecs);
255625163bd5SWebb Scales 		if (rc)
255725163bd5SWebb Scales 			break;
2558edd16368SStephen M. Cameron 		retry_count++;
25599c2fc160SStephen M. Cameron 		if (retry_count > 3) {
25609c2fc160SStephen M. Cameron 			msleep(backoff_time);
25619c2fc160SStephen M. Cameron 			if (backoff_time < 1000)
25629c2fc160SStephen M. Cameron 				backoff_time *= 2;
25639c2fc160SStephen M. Cameron 		}
2564852af20aSMatt Bondurant 	} while ((check_for_unit_attention(h, c) ||
25659c2fc160SStephen M. Cameron 			check_for_busy(h, c)) &&
25669c2fc160SStephen M. Cameron 			retry_count <= MAX_DRIVER_CMD_RETRIES);
2567edd16368SStephen M. Cameron 	hpsa_pci_unmap(h->pdev, c, 1, data_direction);
256825163bd5SWebb Scales 	if (retry_count > MAX_DRIVER_CMD_RETRIES)
256925163bd5SWebb Scales 		rc = -EIO;
257025163bd5SWebb Scales 	return rc;
2571edd16368SStephen M. Cameron }
2572edd16368SStephen M. Cameron 
2573d1e8beacSStephen M. Cameron static void hpsa_print_cmd(struct ctlr_info *h, char *txt,
2574d1e8beacSStephen M. Cameron 				struct CommandList *c)
2575edd16368SStephen M. Cameron {
2576d1e8beacSStephen M. Cameron 	const u8 *cdb = c->Request.CDB;
2577d1e8beacSStephen M. Cameron 	const u8 *lun = c->Header.LUN.LunAddrBytes;
2578edd16368SStephen M. Cameron 
2579d1e8beacSStephen M. Cameron 	dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x"
2580d1e8beacSStephen M. Cameron 	" CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n",
2581d1e8beacSStephen M. Cameron 		txt, lun[0], lun[1], lun[2], lun[3],
2582d1e8beacSStephen M. Cameron 		lun[4], lun[5], lun[6], lun[7],
2583d1e8beacSStephen M. Cameron 		cdb[0], cdb[1], cdb[2], cdb[3],
2584d1e8beacSStephen M. Cameron 		cdb[4], cdb[5], cdb[6], cdb[7],
2585d1e8beacSStephen M. Cameron 		cdb[8], cdb[9], cdb[10], cdb[11],
2586d1e8beacSStephen M. Cameron 		cdb[12], cdb[13], cdb[14], cdb[15]);
2587d1e8beacSStephen M. Cameron }
2588d1e8beacSStephen M. Cameron 
2589d1e8beacSStephen M. Cameron static void hpsa_scsi_interpret_error(struct ctlr_info *h,
2590d1e8beacSStephen M. Cameron 			struct CommandList *cp)
2591d1e8beacSStephen M. Cameron {
2592d1e8beacSStephen M. Cameron 	const struct ErrorInfo *ei = cp->err_info;
2593d1e8beacSStephen M. Cameron 	struct device *d = &cp->h->pdev->dev;
25949437ac43SStephen Cameron 	u8 sense_key, asc, ascq;
25959437ac43SStephen Cameron 	int sense_len;
2596d1e8beacSStephen M. Cameron 
2597edd16368SStephen M. Cameron 	switch (ei->CommandStatus) {
2598edd16368SStephen M. Cameron 	case CMD_TARGET_STATUS:
25999437ac43SStephen Cameron 		if (ei->SenseLen > sizeof(ei->SenseInfo))
26009437ac43SStephen Cameron 			sense_len = sizeof(ei->SenseInfo);
26019437ac43SStephen Cameron 		else
26029437ac43SStephen Cameron 			sense_len = ei->SenseLen;
26039437ac43SStephen Cameron 		decode_sense_data(ei->SenseInfo, sense_len,
26049437ac43SStephen Cameron 					&sense_key, &asc, &ascq);
2605d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "SCSI status", cp);
2606d1e8beacSStephen M. Cameron 		if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION)
26079437ac43SStephen Cameron 			dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n",
26089437ac43SStephen Cameron 				sense_key, asc, ascq);
2609d1e8beacSStephen M. Cameron 		else
26109437ac43SStephen Cameron 			dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus);
2611edd16368SStephen M. Cameron 		if (ei->ScsiStatus == 0)
2612edd16368SStephen M. Cameron 			dev_warn(d, "SCSI status is abnormally zero.  "
2613edd16368SStephen M. Cameron 			"(probably indicates selection timeout "
2614edd16368SStephen M. Cameron 			"reported incorrectly due to a known "
2615edd16368SStephen M. Cameron 			"firmware bug, circa July, 2001.)\n");
2616edd16368SStephen M. Cameron 		break;
2617edd16368SStephen M. Cameron 	case CMD_DATA_UNDERRUN: /* let mid layer handle it. */
2618edd16368SStephen M. Cameron 		break;
2619edd16368SStephen M. Cameron 	case CMD_DATA_OVERRUN:
2620d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "overrun condition", cp);
2621edd16368SStephen M. Cameron 		break;
2622edd16368SStephen M. Cameron 	case CMD_INVALID: {
2623edd16368SStephen M. Cameron 		/* controller unfortunately reports SCSI passthru's
2624edd16368SStephen M. Cameron 		 * to non-existent targets as invalid commands.
2625edd16368SStephen M. Cameron 		 */
2626d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "invalid command", cp);
2627d1e8beacSStephen M. Cameron 		dev_warn(d, "probably means device no longer present\n");
2628edd16368SStephen M. Cameron 		}
2629edd16368SStephen M. Cameron 		break;
2630edd16368SStephen M. Cameron 	case CMD_PROTOCOL_ERR:
2631d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "protocol error", cp);
2632edd16368SStephen M. Cameron 		break;
2633edd16368SStephen M. Cameron 	case CMD_HARDWARE_ERR:
2634d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "hardware error", cp);
2635edd16368SStephen M. Cameron 		break;
2636edd16368SStephen M. Cameron 	case CMD_CONNECTION_LOST:
2637d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "connection lost", cp);
2638edd16368SStephen M. Cameron 		break;
2639edd16368SStephen M. Cameron 	case CMD_ABORTED:
2640d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "aborted", cp);
2641edd16368SStephen M. Cameron 		break;
2642edd16368SStephen M. Cameron 	case CMD_ABORT_FAILED:
2643d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "abort failed", cp);
2644edd16368SStephen M. Cameron 		break;
2645edd16368SStephen M. Cameron 	case CMD_UNSOLICITED_ABORT:
2646d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "unsolicited abort", cp);
2647edd16368SStephen M. Cameron 		break;
2648edd16368SStephen M. Cameron 	case CMD_TIMEOUT:
2649d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "timed out", cp);
2650edd16368SStephen M. Cameron 		break;
26511d5e2ed0SStephen M. Cameron 	case CMD_UNABORTABLE:
2652d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "unabortable", cp);
26531d5e2ed0SStephen M. Cameron 		break;
265425163bd5SWebb Scales 	case CMD_CTLR_LOCKUP:
265525163bd5SWebb Scales 		hpsa_print_cmd(h, "controller lockup detected", cp);
265625163bd5SWebb Scales 		break;
2657edd16368SStephen M. Cameron 	default:
2658d1e8beacSStephen M. Cameron 		hpsa_print_cmd(h, "unknown status", cp);
2659d1e8beacSStephen M. Cameron 		dev_warn(d, "Unknown command status %x\n",
2660edd16368SStephen M. Cameron 				ei->CommandStatus);
2661edd16368SStephen M. Cameron 	}
2662edd16368SStephen M. Cameron }
2663edd16368SStephen M. Cameron 
2664edd16368SStephen M. Cameron static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr,
2665b7bb24ebSStephen M. Cameron 			u16 page, unsigned char *buf,
2666edd16368SStephen M. Cameron 			unsigned char bufsize)
2667edd16368SStephen M. Cameron {
2668edd16368SStephen M. Cameron 	int rc = IO_OK;
2669edd16368SStephen M. Cameron 	struct CommandList *c;
2670edd16368SStephen M. Cameron 	struct ErrorInfo *ei;
2671edd16368SStephen M. Cameron 
267245fcb86eSStephen Cameron 	c = cmd_alloc(h);
2673edd16368SStephen M. Cameron 
2674a2dac136SStephen M. Cameron 	if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize,
2675a2dac136SStephen M. Cameron 			page, scsi3addr, TYPE_CMD)) {
2676a2dac136SStephen M. Cameron 		rc = -1;
2677a2dac136SStephen M. Cameron 		goto out;
2678a2dac136SStephen M. Cameron 	}
267925163bd5SWebb Scales 	rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
268025163bd5SWebb Scales 					PCI_DMA_FROMDEVICE, NO_TIMEOUT);
268125163bd5SWebb Scales 	if (rc)
268225163bd5SWebb Scales 		goto out;
2683edd16368SStephen M. Cameron 	ei = c->err_info;
2684edd16368SStephen M. Cameron 	if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2685d1e8beacSStephen M. Cameron 		hpsa_scsi_interpret_error(h, c);
2686edd16368SStephen M. Cameron 		rc = -1;
2687edd16368SStephen M. Cameron 	}
2688a2dac136SStephen M. Cameron out:
268945fcb86eSStephen Cameron 	cmd_free(h, c);
2690edd16368SStephen M. Cameron 	return rc;
2691edd16368SStephen M. Cameron }
2692edd16368SStephen M. Cameron 
2693bf711ac6SScott Teel static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr,
269425163bd5SWebb Scales 	u8 reset_type, int reply_queue)
2695edd16368SStephen M. Cameron {
2696edd16368SStephen M. Cameron 	int rc = IO_OK;
2697edd16368SStephen M. Cameron 	struct CommandList *c;
2698edd16368SStephen M. Cameron 	struct ErrorInfo *ei;
2699edd16368SStephen M. Cameron 
270045fcb86eSStephen Cameron 	c = cmd_alloc(h);
2701edd16368SStephen M. Cameron 
2702edd16368SStephen M. Cameron 
2703a2dac136SStephen M. Cameron 	/* fill_cmd can't fail here, no data buffer to map. */
2704bf711ac6SScott Teel 	(void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
2705bf711ac6SScott Teel 			scsi3addr, TYPE_MSG);
2706bf711ac6SScott Teel 	c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */
270725163bd5SWebb Scales 	rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
270825163bd5SWebb Scales 	if (rc) {
270925163bd5SWebb Scales 		dev_warn(&h->pdev->dev, "Failed to send reset command\n");
271025163bd5SWebb Scales 		goto out;
271125163bd5SWebb Scales 	}
2712edd16368SStephen M. Cameron 	/* no unmap needed here because no data xfer. */
2713edd16368SStephen M. Cameron 
2714edd16368SStephen M. Cameron 	ei = c->err_info;
2715edd16368SStephen M. Cameron 	if (ei->CommandStatus != 0) {
2716d1e8beacSStephen M. Cameron 		hpsa_scsi_interpret_error(h, c);
2717edd16368SStephen M. Cameron 		rc = -1;
2718edd16368SStephen M. Cameron 	}
271925163bd5SWebb Scales out:
272045fcb86eSStephen Cameron 	cmd_free(h, c);
2721edd16368SStephen M. Cameron 	return rc;
2722edd16368SStephen M. Cameron }
2723edd16368SStephen M. Cameron 
2724d604f533SWebb Scales static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c,
2725d604f533SWebb Scales 			       struct hpsa_scsi_dev_t *dev,
2726d604f533SWebb Scales 			       unsigned char *scsi3addr)
2727d604f533SWebb Scales {
2728d604f533SWebb Scales 	int i;
2729d604f533SWebb Scales 	bool match = false;
2730d604f533SWebb Scales 	struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
2731d604f533SWebb Scales 	struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
2732d604f533SWebb Scales 
2733d604f533SWebb Scales 	if (hpsa_is_cmd_idle(c))
2734d604f533SWebb Scales 		return false;
2735d604f533SWebb Scales 
2736d604f533SWebb Scales 	switch (c->cmd_type) {
2737d604f533SWebb Scales 	case CMD_SCSI:
2738d604f533SWebb Scales 	case CMD_IOCTL_PEND:
2739d604f533SWebb Scales 		match = !memcmp(scsi3addr, &c->Header.LUN.LunAddrBytes,
2740d604f533SWebb Scales 				sizeof(c->Header.LUN.LunAddrBytes));
2741d604f533SWebb Scales 		break;
2742d604f533SWebb Scales 
2743d604f533SWebb Scales 	case CMD_IOACCEL1:
2744d604f533SWebb Scales 	case CMD_IOACCEL2:
2745d604f533SWebb Scales 		if (c->phys_disk == dev) {
2746d604f533SWebb Scales 			/* HBA mode match */
2747d604f533SWebb Scales 			match = true;
2748d604f533SWebb Scales 		} else {
2749d604f533SWebb Scales 			/* Possible RAID mode -- check each phys dev. */
2750d604f533SWebb Scales 			/* FIXME:  Do we need to take out a lock here?  If
2751d604f533SWebb Scales 			 * so, we could just call hpsa_get_pdisk_of_ioaccel2()
2752d604f533SWebb Scales 			 * instead. */
2753d604f533SWebb Scales 			for (i = 0; i < dev->nphysical_disks && !match; i++) {
2754d604f533SWebb Scales 				/* FIXME: an alternate test might be
2755d604f533SWebb Scales 				 *
2756d604f533SWebb Scales 				 * match = dev->phys_disk[i]->ioaccel_handle
2757d604f533SWebb Scales 				 *              == c2->scsi_nexus;      */
2758d604f533SWebb Scales 				match = dev->phys_disk[i] == c->phys_disk;
2759d604f533SWebb Scales 			}
2760d604f533SWebb Scales 		}
2761d604f533SWebb Scales 		break;
2762d604f533SWebb Scales 
2763d604f533SWebb Scales 	case IOACCEL2_TMF:
2764d604f533SWebb Scales 		for (i = 0; i < dev->nphysical_disks && !match; i++) {
2765d604f533SWebb Scales 			match = dev->phys_disk[i]->ioaccel_handle ==
2766d604f533SWebb Scales 					le32_to_cpu(ac->it_nexus);
2767d604f533SWebb Scales 		}
2768d604f533SWebb Scales 		break;
2769d604f533SWebb Scales 
2770d604f533SWebb Scales 	case 0:		/* The command is in the middle of being initialized. */
2771d604f533SWebb Scales 		match = false;
2772d604f533SWebb Scales 		break;
2773d604f533SWebb Scales 
2774d604f533SWebb Scales 	default:
2775d604f533SWebb Scales 		dev_err(&h->pdev->dev, "unexpected cmd_type: %d\n",
2776d604f533SWebb Scales 			c->cmd_type);
2777d604f533SWebb Scales 		BUG();
2778d604f533SWebb Scales 	}
2779d604f533SWebb Scales 
2780d604f533SWebb Scales 	return match;
2781d604f533SWebb Scales }
2782d604f533SWebb Scales 
2783d604f533SWebb Scales static int hpsa_do_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev,
2784d604f533SWebb Scales 	unsigned char *scsi3addr, u8 reset_type, int reply_queue)
2785d604f533SWebb Scales {
2786d604f533SWebb Scales 	int i;
2787d604f533SWebb Scales 	int rc = 0;
2788d604f533SWebb Scales 
2789d604f533SWebb Scales 	/* We can really only handle one reset at a time */
2790d604f533SWebb Scales 	if (mutex_lock_interruptible(&h->reset_mutex) == -EINTR) {
2791d604f533SWebb Scales 		dev_warn(&h->pdev->dev, "concurrent reset wait interrupted.\n");
2792d604f533SWebb Scales 		return -EINTR;
2793d604f533SWebb Scales 	}
2794d604f533SWebb Scales 
2795d604f533SWebb Scales 	BUG_ON(atomic_read(&dev->reset_cmds_out) != 0);
2796d604f533SWebb Scales 
2797d604f533SWebb Scales 	for (i = 0; i < h->nr_cmds; i++) {
2798d604f533SWebb Scales 		struct CommandList *c = h->cmd_pool + i;
2799d604f533SWebb Scales 		int refcount = atomic_inc_return(&c->refcount);
2800d604f533SWebb Scales 
2801d604f533SWebb Scales 		if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev, scsi3addr)) {
2802d604f533SWebb Scales 			unsigned long flags;
2803d604f533SWebb Scales 
2804d604f533SWebb Scales 			/*
2805d604f533SWebb Scales 			 * Mark the target command as having a reset pending,
2806d604f533SWebb Scales 			 * then lock a lock so that the command cannot complete
2807d604f533SWebb Scales 			 * while we're considering it.  If the command is not
2808d604f533SWebb Scales 			 * idle then count it; otherwise revoke the event.
2809d604f533SWebb Scales 			 */
2810d604f533SWebb Scales 			c->reset_pending = dev;
2811d604f533SWebb Scales 			spin_lock_irqsave(&h->lock, flags);	/* Implied MB */
2812d604f533SWebb Scales 			if (!hpsa_is_cmd_idle(c))
2813d604f533SWebb Scales 				atomic_inc(&dev->reset_cmds_out);
2814d604f533SWebb Scales 			else
2815d604f533SWebb Scales 				c->reset_pending = NULL;
2816d604f533SWebb Scales 			spin_unlock_irqrestore(&h->lock, flags);
2817d604f533SWebb Scales 		}
2818d604f533SWebb Scales 
2819d604f533SWebb Scales 		cmd_free(h, c);
2820d604f533SWebb Scales 	}
2821d604f533SWebb Scales 
2822d604f533SWebb Scales 	rc = hpsa_send_reset(h, scsi3addr, reset_type, reply_queue);
2823d604f533SWebb Scales 	if (!rc)
2824d604f533SWebb Scales 		wait_event(h->event_sync_wait_queue,
2825d604f533SWebb Scales 			atomic_read(&dev->reset_cmds_out) == 0 ||
2826d604f533SWebb Scales 			lockup_detected(h));
2827d604f533SWebb Scales 
2828d604f533SWebb Scales 	if (unlikely(lockup_detected(h))) {
2829d604f533SWebb Scales 		dev_warn(&h->pdev->dev,
2830d604f533SWebb Scales 			 "Controller lockup detected during reset wait\n");
2831d604f533SWebb Scales 		rc = -ENODEV;
2832d604f533SWebb Scales 	}
2833d604f533SWebb Scales 
2834d604f533SWebb Scales 	if (unlikely(rc))
2835d604f533SWebb Scales 		atomic_set(&dev->reset_cmds_out, 0);
2836d604f533SWebb Scales 
2837d604f533SWebb Scales 	mutex_unlock(&h->reset_mutex);
2838d604f533SWebb Scales 	return rc;
2839d604f533SWebb Scales }
2840d604f533SWebb Scales 
2841edd16368SStephen M. Cameron static void hpsa_get_raid_level(struct ctlr_info *h,
2842edd16368SStephen M. Cameron 	unsigned char *scsi3addr, unsigned char *raid_level)
2843edd16368SStephen M. Cameron {
2844edd16368SStephen M. Cameron 	int rc;
2845edd16368SStephen M. Cameron 	unsigned char *buf;
2846edd16368SStephen M. Cameron 
2847edd16368SStephen M. Cameron 	*raid_level = RAID_UNKNOWN;
2848edd16368SStephen M. Cameron 	buf = kzalloc(64, GFP_KERNEL);
2849edd16368SStephen M. Cameron 	if (!buf)
2850edd16368SStephen M. Cameron 		return;
2851b7bb24ebSStephen M. Cameron 	rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64);
2852edd16368SStephen M. Cameron 	if (rc == 0)
2853edd16368SStephen M. Cameron 		*raid_level = buf[8];
2854edd16368SStephen M. Cameron 	if (*raid_level > RAID_UNKNOWN)
2855edd16368SStephen M. Cameron 		*raid_level = RAID_UNKNOWN;
2856edd16368SStephen M. Cameron 	kfree(buf);
2857edd16368SStephen M. Cameron 	return;
2858edd16368SStephen M. Cameron }
2859edd16368SStephen M. Cameron 
2860283b4a9bSStephen M. Cameron #define HPSA_MAP_DEBUG
2861283b4a9bSStephen M. Cameron #ifdef HPSA_MAP_DEBUG
2862283b4a9bSStephen M. Cameron static void hpsa_debug_map_buff(struct ctlr_info *h, int rc,
2863283b4a9bSStephen M. Cameron 				struct raid_map_data *map_buff)
2864283b4a9bSStephen M. Cameron {
2865283b4a9bSStephen M. Cameron 	struct raid_map_disk_data *dd = &map_buff->data[0];
2866283b4a9bSStephen M. Cameron 	int map, row, col;
2867283b4a9bSStephen M. Cameron 	u16 map_cnt, row_cnt, disks_per_row;
2868283b4a9bSStephen M. Cameron 
2869283b4a9bSStephen M. Cameron 	if (rc != 0)
2870283b4a9bSStephen M. Cameron 		return;
2871283b4a9bSStephen M. Cameron 
28722ba8bfc8SStephen M. Cameron 	/* Show details only if debugging has been activated. */
28732ba8bfc8SStephen M. Cameron 	if (h->raid_offload_debug < 2)
28742ba8bfc8SStephen M. Cameron 		return;
28752ba8bfc8SStephen M. Cameron 
2876283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "structure_size = %u\n",
2877283b4a9bSStephen M. Cameron 				le32_to_cpu(map_buff->structure_size));
2878283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "volume_blk_size = %u\n",
2879283b4a9bSStephen M. Cameron 			le32_to_cpu(map_buff->volume_blk_size));
2880283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n",
2881283b4a9bSStephen M. Cameron 			le64_to_cpu(map_buff->volume_blk_cnt));
2882283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "physicalBlockShift = %u\n",
2883283b4a9bSStephen M. Cameron 			map_buff->phys_blk_shift);
2884283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n",
2885283b4a9bSStephen M. Cameron 			map_buff->parity_rotation_shift);
2886283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "strip_size = %u\n",
2887283b4a9bSStephen M. Cameron 			le16_to_cpu(map_buff->strip_size));
2888283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n",
2889283b4a9bSStephen M. Cameron 			le64_to_cpu(map_buff->disk_starting_blk));
2890283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n",
2891283b4a9bSStephen M. Cameron 			le64_to_cpu(map_buff->disk_blk_cnt));
2892283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "data_disks_per_row = %u\n",
2893283b4a9bSStephen M. Cameron 			le16_to_cpu(map_buff->data_disks_per_row));
2894283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n",
2895283b4a9bSStephen M. Cameron 			le16_to_cpu(map_buff->metadata_disks_per_row));
2896283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "row_cnt = %u\n",
2897283b4a9bSStephen M. Cameron 			le16_to_cpu(map_buff->row_cnt));
2898283b4a9bSStephen M. Cameron 	dev_info(&h->pdev->dev, "layout_map_count = %u\n",
2899283b4a9bSStephen M. Cameron 			le16_to_cpu(map_buff->layout_map_count));
29002b08b3e9SDon Brace 	dev_info(&h->pdev->dev, "flags = 0x%x\n",
2901dd0e19f3SScott Teel 			le16_to_cpu(map_buff->flags));
29022b08b3e9SDon Brace 	dev_info(&h->pdev->dev, "encrypytion = %s\n",
29032b08b3e9SDon Brace 			le16_to_cpu(map_buff->flags) &
29042b08b3e9SDon Brace 			RAID_MAP_FLAG_ENCRYPT_ON ?  "ON" : "OFF");
2905dd0e19f3SScott Teel 	dev_info(&h->pdev->dev, "dekindex = %u\n",
2906dd0e19f3SScott Teel 			le16_to_cpu(map_buff->dekindex));
2907283b4a9bSStephen M. Cameron 	map_cnt = le16_to_cpu(map_buff->layout_map_count);
2908283b4a9bSStephen M. Cameron 	for (map = 0; map < map_cnt; map++) {
2909283b4a9bSStephen M. Cameron 		dev_info(&h->pdev->dev, "Map%u:\n", map);
2910283b4a9bSStephen M. Cameron 		row_cnt = le16_to_cpu(map_buff->row_cnt);
2911283b4a9bSStephen M. Cameron 		for (row = 0; row < row_cnt; row++) {
2912283b4a9bSStephen M. Cameron 			dev_info(&h->pdev->dev, "  Row%u:\n", row);
2913283b4a9bSStephen M. Cameron 			disks_per_row =
2914283b4a9bSStephen M. Cameron 				le16_to_cpu(map_buff->data_disks_per_row);
2915283b4a9bSStephen M. Cameron 			for (col = 0; col < disks_per_row; col++, dd++)
2916283b4a9bSStephen M. Cameron 				dev_info(&h->pdev->dev,
2917283b4a9bSStephen M. Cameron 					"    D%02u: h=0x%04x xor=%u,%u\n",
2918283b4a9bSStephen M. Cameron 					col, dd->ioaccel_handle,
2919283b4a9bSStephen M. Cameron 					dd->xor_mult[0], dd->xor_mult[1]);
2920283b4a9bSStephen M. Cameron 			disks_per_row =
2921283b4a9bSStephen M. Cameron 				le16_to_cpu(map_buff->metadata_disks_per_row);
2922283b4a9bSStephen M. Cameron 			for (col = 0; col < disks_per_row; col++, dd++)
2923283b4a9bSStephen M. Cameron 				dev_info(&h->pdev->dev,
2924283b4a9bSStephen M. Cameron 					"    M%02u: h=0x%04x xor=%u,%u\n",
2925283b4a9bSStephen M. Cameron 					col, dd->ioaccel_handle,
2926283b4a9bSStephen M. Cameron 					dd->xor_mult[0], dd->xor_mult[1]);
2927283b4a9bSStephen M. Cameron 		}
2928283b4a9bSStephen M. Cameron 	}
2929283b4a9bSStephen M. Cameron }
2930283b4a9bSStephen M. Cameron #else
2931283b4a9bSStephen M. Cameron static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h,
2932283b4a9bSStephen M. Cameron 			__attribute__((unused)) int rc,
2933283b4a9bSStephen M. Cameron 			__attribute__((unused)) struct raid_map_data *map_buff)
2934283b4a9bSStephen M. Cameron {
2935283b4a9bSStephen M. Cameron }
2936283b4a9bSStephen M. Cameron #endif
2937283b4a9bSStephen M. Cameron 
2938283b4a9bSStephen M. Cameron static int hpsa_get_raid_map(struct ctlr_info *h,
2939283b4a9bSStephen M. Cameron 	unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
2940283b4a9bSStephen M. Cameron {
2941283b4a9bSStephen M. Cameron 	int rc = 0;
2942283b4a9bSStephen M. Cameron 	struct CommandList *c;
2943283b4a9bSStephen M. Cameron 	struct ErrorInfo *ei;
2944283b4a9bSStephen M. Cameron 
294545fcb86eSStephen Cameron 	c = cmd_alloc(h);
2946bf43caf3SRobert Elliott 
2947283b4a9bSStephen M. Cameron 	if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map,
2948283b4a9bSStephen M. Cameron 			sizeof(this_device->raid_map), 0,
2949283b4a9bSStephen M. Cameron 			scsi3addr, TYPE_CMD)) {
29502dd02d74SRobert Elliott 		dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n");
29512dd02d74SRobert Elliott 		cmd_free(h, c);
29522dd02d74SRobert Elliott 		return -1;
2953283b4a9bSStephen M. Cameron 	}
295425163bd5SWebb Scales 	rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
295525163bd5SWebb Scales 					PCI_DMA_FROMDEVICE, NO_TIMEOUT);
295625163bd5SWebb Scales 	if (rc)
295725163bd5SWebb Scales 		goto out;
2958283b4a9bSStephen M. Cameron 	ei = c->err_info;
2959283b4a9bSStephen M. Cameron 	if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
2960d1e8beacSStephen M. Cameron 		hpsa_scsi_interpret_error(h, c);
296125163bd5SWebb Scales 		rc = -1;
296225163bd5SWebb Scales 		goto out;
2963283b4a9bSStephen M. Cameron 	}
296445fcb86eSStephen Cameron 	cmd_free(h, c);
2965283b4a9bSStephen M. Cameron 
2966283b4a9bSStephen M. Cameron 	/* @todo in the future, dynamically allocate RAID map memory */
2967283b4a9bSStephen M. Cameron 	if (le32_to_cpu(this_device->raid_map.structure_size) >
2968283b4a9bSStephen M. Cameron 				sizeof(this_device->raid_map)) {
2969283b4a9bSStephen M. Cameron 		dev_warn(&h->pdev->dev, "RAID map size is too large!\n");
2970283b4a9bSStephen M. Cameron 		rc = -1;
2971283b4a9bSStephen M. Cameron 	}
2972283b4a9bSStephen M. Cameron 	hpsa_debug_map_buff(h, rc, &this_device->raid_map);
2973283b4a9bSStephen M. Cameron 	return rc;
297425163bd5SWebb Scales out:
297525163bd5SWebb Scales 	cmd_free(h, c);
297625163bd5SWebb Scales 	return rc;
2977283b4a9bSStephen M. Cameron }
2978283b4a9bSStephen M. Cameron 
297903383736SDon Brace static int hpsa_bmic_id_physical_device(struct ctlr_info *h,
298003383736SDon Brace 		unsigned char scsi3addr[], u16 bmic_device_index,
298103383736SDon Brace 		struct bmic_identify_physical_device *buf, size_t bufsize)
298203383736SDon Brace {
298303383736SDon Brace 	int rc = IO_OK;
298403383736SDon Brace 	struct CommandList *c;
298503383736SDon Brace 	struct ErrorInfo *ei;
298603383736SDon Brace 
298703383736SDon Brace 	c = cmd_alloc(h);
298803383736SDon Brace 	rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize,
298903383736SDon Brace 		0, RAID_CTLR_LUNID, TYPE_CMD);
299003383736SDon Brace 	if (rc)
299103383736SDon Brace 		goto out;
299203383736SDon Brace 
299303383736SDon Brace 	c->Request.CDB[2] = bmic_device_index & 0xff;
299403383736SDon Brace 	c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff;
299503383736SDon Brace 
299625163bd5SWebb Scales 	hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE,
299725163bd5SWebb Scales 						NO_TIMEOUT);
299803383736SDon Brace 	ei = c->err_info;
299903383736SDon Brace 	if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) {
300003383736SDon Brace 		hpsa_scsi_interpret_error(h, c);
300103383736SDon Brace 		rc = -1;
300203383736SDon Brace 	}
300303383736SDon Brace out:
300403383736SDon Brace 	cmd_free(h, c);
300503383736SDon Brace 	return rc;
300603383736SDon Brace }
300703383736SDon Brace 
30081b70150aSStephen M. Cameron static int hpsa_vpd_page_supported(struct ctlr_info *h,
30091b70150aSStephen M. Cameron 	unsigned char scsi3addr[], u8 page)
30101b70150aSStephen M. Cameron {
30111b70150aSStephen M. Cameron 	int rc;
30121b70150aSStephen M. Cameron 	int i;
30131b70150aSStephen M. Cameron 	int pages;
30141b70150aSStephen M. Cameron 	unsigned char *buf, bufsize;
30151b70150aSStephen M. Cameron 
30161b70150aSStephen M. Cameron 	buf = kzalloc(256, GFP_KERNEL);
30171b70150aSStephen M. Cameron 	if (!buf)
30181b70150aSStephen M. Cameron 		return 0;
30191b70150aSStephen M. Cameron 
30201b70150aSStephen M. Cameron 	/* Get the size of the page list first */
30211b70150aSStephen M. Cameron 	rc = hpsa_scsi_do_inquiry(h, scsi3addr,
30221b70150aSStephen M. Cameron 				VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
30231b70150aSStephen M. Cameron 				buf, HPSA_VPD_HEADER_SZ);
30241b70150aSStephen M. Cameron 	if (rc != 0)
30251b70150aSStephen M. Cameron 		goto exit_unsupported;
30261b70150aSStephen M. Cameron 	pages = buf[3];
30271b70150aSStephen M. Cameron 	if ((pages + HPSA_VPD_HEADER_SZ) <= 255)
30281b70150aSStephen M. Cameron 		bufsize = pages + HPSA_VPD_HEADER_SZ;
30291b70150aSStephen M. Cameron 	else
30301b70150aSStephen M. Cameron 		bufsize = 255;
30311b70150aSStephen M. Cameron 
30321b70150aSStephen M. Cameron 	/* Get the whole VPD page list */
30331b70150aSStephen M. Cameron 	rc = hpsa_scsi_do_inquiry(h, scsi3addr,
30341b70150aSStephen M. Cameron 				VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES,
30351b70150aSStephen M. Cameron 				buf, bufsize);
30361b70150aSStephen M. Cameron 	if (rc != 0)
30371b70150aSStephen M. Cameron 		goto exit_unsupported;
30381b70150aSStephen M. Cameron 
30391b70150aSStephen M. Cameron 	pages = buf[3];
30401b70150aSStephen M. Cameron 	for (i = 1; i <= pages; i++)
30411b70150aSStephen M. Cameron 		if (buf[3 + i] == page)
30421b70150aSStephen M. Cameron 			goto exit_supported;
30431b70150aSStephen M. Cameron exit_unsupported:
30441b70150aSStephen M. Cameron 	kfree(buf);
30451b70150aSStephen M. Cameron 	return 0;
30461b70150aSStephen M. Cameron exit_supported:
30471b70150aSStephen M. Cameron 	kfree(buf);
30481b70150aSStephen M. Cameron 	return 1;
30491b70150aSStephen M. Cameron }
30501b70150aSStephen M. Cameron 
3051283b4a9bSStephen M. Cameron static void hpsa_get_ioaccel_status(struct ctlr_info *h,
3052283b4a9bSStephen M. Cameron 	unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device)
3053283b4a9bSStephen M. Cameron {
3054283b4a9bSStephen M. Cameron 	int rc;
3055283b4a9bSStephen M. Cameron 	unsigned char *buf;
3056283b4a9bSStephen M. Cameron 	u8 ioaccel_status;
3057283b4a9bSStephen M. Cameron 
3058283b4a9bSStephen M. Cameron 	this_device->offload_config = 0;
3059283b4a9bSStephen M. Cameron 	this_device->offload_enabled = 0;
306041ce4c35SStephen Cameron 	this_device->offload_to_be_enabled = 0;
3061283b4a9bSStephen M. Cameron 
3062283b4a9bSStephen M. Cameron 	buf = kzalloc(64, GFP_KERNEL);
3063283b4a9bSStephen M. Cameron 	if (!buf)
3064283b4a9bSStephen M. Cameron 		return;
30651b70150aSStephen M. Cameron 	if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS))
30661b70150aSStephen M. Cameron 		goto out;
3067283b4a9bSStephen M. Cameron 	rc = hpsa_scsi_do_inquiry(h, scsi3addr,
3068b7bb24ebSStephen M. Cameron 			VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64);
3069283b4a9bSStephen M. Cameron 	if (rc != 0)
3070283b4a9bSStephen M. Cameron 		goto out;
3071283b4a9bSStephen M. Cameron 
3072283b4a9bSStephen M. Cameron #define IOACCEL_STATUS_BYTE 4
3073283b4a9bSStephen M. Cameron #define OFFLOAD_CONFIGURED_BIT 0x01
3074283b4a9bSStephen M. Cameron #define OFFLOAD_ENABLED_BIT 0x02
3075283b4a9bSStephen M. Cameron 	ioaccel_status = buf[IOACCEL_STATUS_BYTE];
3076283b4a9bSStephen M. Cameron 	this_device->offload_config =
3077283b4a9bSStephen M. Cameron 		!!(ioaccel_status & OFFLOAD_CONFIGURED_BIT);
3078283b4a9bSStephen M. Cameron 	if (this_device->offload_config) {
3079283b4a9bSStephen M. Cameron 		this_device->offload_enabled =
3080283b4a9bSStephen M. Cameron 			!!(ioaccel_status & OFFLOAD_ENABLED_BIT);
3081283b4a9bSStephen M. Cameron 		if (hpsa_get_raid_map(h, scsi3addr, this_device))
3082283b4a9bSStephen M. Cameron 			this_device->offload_enabled = 0;
3083283b4a9bSStephen M. Cameron 	}
308441ce4c35SStephen Cameron 	this_device->offload_to_be_enabled = this_device->offload_enabled;
3085283b4a9bSStephen M. Cameron out:
3086283b4a9bSStephen M. Cameron 	kfree(buf);
3087283b4a9bSStephen M. Cameron 	return;
3088283b4a9bSStephen M. Cameron }
3089283b4a9bSStephen M. Cameron 
3090edd16368SStephen M. Cameron /* Get the device id from inquiry page 0x83 */
3091edd16368SStephen M. Cameron static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr,
3092edd16368SStephen M. Cameron 	unsigned char *device_id, int buflen)
3093edd16368SStephen M. Cameron {
3094edd16368SStephen M. Cameron 	int rc;
3095edd16368SStephen M. Cameron 	unsigned char *buf;
3096edd16368SStephen M. Cameron 
3097edd16368SStephen M. Cameron 	if (buflen > 16)
3098edd16368SStephen M. Cameron 		buflen = 16;
3099edd16368SStephen M. Cameron 	buf = kzalloc(64, GFP_KERNEL);
3100edd16368SStephen M. Cameron 	if (!buf)
3101a84d794dSStephen M. Cameron 		return -ENOMEM;
3102b7bb24ebSStephen M. Cameron 	rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64);
3103edd16368SStephen M. Cameron 	if (rc == 0)
3104edd16368SStephen M. Cameron 		memcpy(device_id, &buf[8], buflen);
3105edd16368SStephen M. Cameron 	kfree(buf);
3106edd16368SStephen M. Cameron 	return rc != 0;
3107edd16368SStephen M. Cameron }
3108edd16368SStephen M. Cameron 
3109edd16368SStephen M. Cameron static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical,
311003383736SDon Brace 		void *buf, int bufsize,
3111edd16368SStephen M. Cameron 		int extended_response)
3112edd16368SStephen M. Cameron {
3113edd16368SStephen M. Cameron 	int rc = IO_OK;
3114edd16368SStephen M. Cameron 	struct CommandList *c;
3115edd16368SStephen M. Cameron 	unsigned char scsi3addr[8];
3116edd16368SStephen M. Cameron 	struct ErrorInfo *ei;
3117edd16368SStephen M. Cameron 
311845fcb86eSStephen Cameron 	c = cmd_alloc(h);
3119bf43caf3SRobert Elliott 
3120e89c0ae7SStephen M. Cameron 	/* address the controller */
3121e89c0ae7SStephen M. Cameron 	memset(scsi3addr, 0, sizeof(scsi3addr));
3122a2dac136SStephen M. Cameron 	if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h,
3123a2dac136SStephen M. Cameron 		buf, bufsize, 0, scsi3addr, TYPE_CMD)) {
3124a2dac136SStephen M. Cameron 		rc = -1;
3125a2dac136SStephen M. Cameron 		goto out;
3126a2dac136SStephen M. Cameron 	}
3127edd16368SStephen M. Cameron 	if (extended_response)
3128edd16368SStephen M. Cameron 		c->Request.CDB[1] = extended_response;
312925163bd5SWebb Scales 	rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
313025163bd5SWebb Scales 					PCI_DMA_FROMDEVICE, NO_TIMEOUT);
313125163bd5SWebb Scales 	if (rc)
313225163bd5SWebb Scales 		goto out;
3133edd16368SStephen M. Cameron 	ei = c->err_info;
3134edd16368SStephen M. Cameron 	if (ei->CommandStatus != 0 &&
3135edd16368SStephen M. Cameron 	    ei->CommandStatus != CMD_DATA_UNDERRUN) {
3136d1e8beacSStephen M. Cameron 		hpsa_scsi_interpret_error(h, c);
3137edd16368SStephen M. Cameron 		rc = -1;
3138283b4a9bSStephen M. Cameron 	} else {
313903383736SDon Brace 		struct ReportLUNdata *rld = buf;
314003383736SDon Brace 
314103383736SDon Brace 		if (rld->extended_response_flag != extended_response) {
3142283b4a9bSStephen M. Cameron 			dev_err(&h->pdev->dev,
3143283b4a9bSStephen M. Cameron 				"report luns requested format %u, got %u\n",
3144283b4a9bSStephen M. Cameron 				extended_response,
314503383736SDon Brace 				rld->extended_response_flag);
3146283b4a9bSStephen M. Cameron 			rc = -1;
3147283b4a9bSStephen M. Cameron 		}
3148edd16368SStephen M. Cameron 	}
3149a2dac136SStephen M. Cameron out:
315045fcb86eSStephen Cameron 	cmd_free(h, c);
3151edd16368SStephen M. Cameron 	return rc;
3152edd16368SStephen M. Cameron }
3153edd16368SStephen M. Cameron 
3154edd16368SStephen M. Cameron static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h,
315503383736SDon Brace 		struct ReportExtendedLUNdata *buf, int bufsize)
3156edd16368SStephen M. Cameron {
315703383736SDon Brace 	return hpsa_scsi_do_report_luns(h, 0, buf, bufsize,
315803383736SDon Brace 						HPSA_REPORT_PHYS_EXTENDED);
3159edd16368SStephen M. Cameron }
3160edd16368SStephen M. Cameron 
3161edd16368SStephen M. Cameron static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h,
3162edd16368SStephen M. Cameron 		struct ReportLUNdata *buf, int bufsize)
3163edd16368SStephen M. Cameron {
3164edd16368SStephen M. Cameron 	return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0);
3165edd16368SStephen M. Cameron }
3166edd16368SStephen M. Cameron 
3167edd16368SStephen M. Cameron static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device,
3168edd16368SStephen M. Cameron 	int bus, int target, int lun)
3169edd16368SStephen M. Cameron {
3170edd16368SStephen M. Cameron 	device->bus = bus;
3171edd16368SStephen M. Cameron 	device->target = target;
3172edd16368SStephen M. Cameron 	device->lun = lun;
3173edd16368SStephen M. Cameron }
3174edd16368SStephen M. Cameron 
31759846590eSStephen M. Cameron /* Use VPD inquiry to get details of volume status */
31769846590eSStephen M. Cameron static int hpsa_get_volume_status(struct ctlr_info *h,
31779846590eSStephen M. Cameron 					unsigned char scsi3addr[])
31789846590eSStephen M. Cameron {
31799846590eSStephen M. Cameron 	int rc;
31809846590eSStephen M. Cameron 	int status;
31819846590eSStephen M. Cameron 	int size;
31829846590eSStephen M. Cameron 	unsigned char *buf;
31839846590eSStephen M. Cameron 
31849846590eSStephen M. Cameron 	buf = kzalloc(64, GFP_KERNEL);
31859846590eSStephen M. Cameron 	if (!buf)
31869846590eSStephen M. Cameron 		return HPSA_VPD_LV_STATUS_UNSUPPORTED;
31879846590eSStephen M. Cameron 
31889846590eSStephen M. Cameron 	/* Does controller have VPD for logical volume status? */
318924a4b078SStephen M. Cameron 	if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS))
31909846590eSStephen M. Cameron 		goto exit_failed;
31919846590eSStephen M. Cameron 
31929846590eSStephen M. Cameron 	/* Get the size of the VPD return buffer */
31939846590eSStephen M. Cameron 	rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
31949846590eSStephen M. Cameron 					buf, HPSA_VPD_HEADER_SZ);
319524a4b078SStephen M. Cameron 	if (rc != 0)
31969846590eSStephen M. Cameron 		goto exit_failed;
31979846590eSStephen M. Cameron 	size = buf[3];
31989846590eSStephen M. Cameron 
31999846590eSStephen M. Cameron 	/* Now get the whole VPD buffer */
32009846590eSStephen M. Cameron 	rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS,
32019846590eSStephen M. Cameron 					buf, size + HPSA_VPD_HEADER_SZ);
320224a4b078SStephen M. Cameron 	if (rc != 0)
32039846590eSStephen M. Cameron 		goto exit_failed;
32049846590eSStephen M. Cameron 	status = buf[4]; /* status byte */
32059846590eSStephen M. Cameron 
32069846590eSStephen M. Cameron 	kfree(buf);
32079846590eSStephen M. Cameron 	return status;
32089846590eSStephen M. Cameron exit_failed:
32099846590eSStephen M. Cameron 	kfree(buf);
32109846590eSStephen M. Cameron 	return HPSA_VPD_LV_STATUS_UNSUPPORTED;
32119846590eSStephen M. Cameron }
32129846590eSStephen M. Cameron 
32139846590eSStephen M. Cameron /* Determine offline status of a volume.
32149846590eSStephen M. Cameron  * Return either:
32159846590eSStephen M. Cameron  *  0 (not offline)
321667955ba3SStephen M. Cameron  *  0xff (offline for unknown reasons)
32179846590eSStephen M. Cameron  *  # (integer code indicating one of several NOT READY states
32189846590eSStephen M. Cameron  *     describing why a volume is to be kept offline)
32199846590eSStephen M. Cameron  */
322067955ba3SStephen M. Cameron static int hpsa_volume_offline(struct ctlr_info *h,
32219846590eSStephen M. Cameron 					unsigned char scsi3addr[])
32229846590eSStephen M. Cameron {
32239846590eSStephen M. Cameron 	struct CommandList *c;
32249437ac43SStephen Cameron 	unsigned char *sense;
32259437ac43SStephen Cameron 	u8 sense_key, asc, ascq;
32269437ac43SStephen Cameron 	int sense_len;
322725163bd5SWebb Scales 	int rc, ldstat = 0;
32289846590eSStephen M. Cameron 	u16 cmd_status;
32299846590eSStephen M. Cameron 	u8 scsi_status;
32309846590eSStephen M. Cameron #define ASC_LUN_NOT_READY 0x04
32319846590eSStephen M. Cameron #define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04
32329846590eSStephen M. Cameron #define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02
32339846590eSStephen M. Cameron 
32349846590eSStephen M. Cameron 	c = cmd_alloc(h);
3235bf43caf3SRobert Elliott 
32369846590eSStephen M. Cameron 	(void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD);
323725163bd5SWebb Scales 	rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
323825163bd5SWebb Scales 	if (rc) {
323925163bd5SWebb Scales 		cmd_free(h, c);
324025163bd5SWebb Scales 		return 0;
324125163bd5SWebb Scales 	}
32429846590eSStephen M. Cameron 	sense = c->err_info->SenseInfo;
32439437ac43SStephen Cameron 	if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo))
32449437ac43SStephen Cameron 		sense_len = sizeof(c->err_info->SenseInfo);
32459437ac43SStephen Cameron 	else
32469437ac43SStephen Cameron 		sense_len = c->err_info->SenseLen;
32479437ac43SStephen Cameron 	decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq);
32489846590eSStephen M. Cameron 	cmd_status = c->err_info->CommandStatus;
32499846590eSStephen M. Cameron 	scsi_status = c->err_info->ScsiStatus;
32509846590eSStephen M. Cameron 	cmd_free(h, c);
32519846590eSStephen M. Cameron 	/* Is the volume 'not ready'? */
32529846590eSStephen M. Cameron 	if (cmd_status != CMD_TARGET_STATUS ||
32539846590eSStephen M. Cameron 		scsi_status != SAM_STAT_CHECK_CONDITION ||
32549846590eSStephen M. Cameron 		sense_key != NOT_READY ||
32559846590eSStephen M. Cameron 		asc != ASC_LUN_NOT_READY)  {
32569846590eSStephen M. Cameron 		return 0;
32579846590eSStephen M. Cameron 	}
32589846590eSStephen M. Cameron 
32599846590eSStephen M. Cameron 	/* Determine the reason for not ready state */
32609846590eSStephen M. Cameron 	ldstat = hpsa_get_volume_status(h, scsi3addr);
32619846590eSStephen M. Cameron 
32629846590eSStephen M. Cameron 	/* Keep volume offline in certain cases: */
32639846590eSStephen M. Cameron 	switch (ldstat) {
32649846590eSStephen M. Cameron 	case HPSA_LV_UNDERGOING_ERASE:
32659846590eSStephen M. Cameron 	case HPSA_LV_UNDERGOING_RPI:
32669846590eSStephen M. Cameron 	case HPSA_LV_PENDING_RPI:
32679846590eSStephen M. Cameron 	case HPSA_LV_ENCRYPTED_NO_KEY:
32689846590eSStephen M. Cameron 	case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER:
32699846590eSStephen M. Cameron 	case HPSA_LV_UNDERGOING_ENCRYPTION:
32709846590eSStephen M. Cameron 	case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING:
32719846590eSStephen M. Cameron 	case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER:
32729846590eSStephen M. Cameron 		return ldstat;
32739846590eSStephen M. Cameron 	case HPSA_VPD_LV_STATUS_UNSUPPORTED:
32749846590eSStephen M. Cameron 		/* If VPD status page isn't available,
32759846590eSStephen M. Cameron 		 * use ASC/ASCQ to determine state
32769846590eSStephen M. Cameron 		 */
32779846590eSStephen M. Cameron 		if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) ||
32789846590eSStephen M. Cameron 			(ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ))
32799846590eSStephen M. Cameron 			return ldstat;
32809846590eSStephen M. Cameron 		break;
32819846590eSStephen M. Cameron 	default:
32829846590eSStephen M. Cameron 		break;
32839846590eSStephen M. Cameron 	}
32849846590eSStephen M. Cameron 	return 0;
32859846590eSStephen M. Cameron }
32869846590eSStephen M. Cameron 
32879b5c48c2SStephen Cameron /*
32889b5c48c2SStephen Cameron  * Find out if a logical device supports aborts by simply trying one.
32899b5c48c2SStephen Cameron  * Smart Array may claim not to support aborts on logical drives, but
32909b5c48c2SStephen Cameron  * if a MSA2000 * is connected, the drives on that will be presented
32919b5c48c2SStephen Cameron  * by the Smart Array as logical drives, and aborts may be sent to
32929b5c48c2SStephen Cameron  * those devices successfully.  So the simplest way to find out is
32939b5c48c2SStephen Cameron  * to simply try an abort and see how the device responds.
32949b5c48c2SStephen Cameron  */
32959b5c48c2SStephen Cameron static int hpsa_device_supports_aborts(struct ctlr_info *h,
32969b5c48c2SStephen Cameron 					unsigned char *scsi3addr)
32979b5c48c2SStephen Cameron {
32989b5c48c2SStephen Cameron 	struct CommandList *c;
32999b5c48c2SStephen Cameron 	struct ErrorInfo *ei;
33009b5c48c2SStephen Cameron 	int rc = 0;
33019b5c48c2SStephen Cameron 
33029b5c48c2SStephen Cameron 	u64 tag = (u64) -1; /* bogus tag */
33039b5c48c2SStephen Cameron 
33049b5c48c2SStephen Cameron 	/* Assume that physical devices support aborts */
33059b5c48c2SStephen Cameron 	if (!is_logical_dev_addr_mode(scsi3addr))
33069b5c48c2SStephen Cameron 		return 1;
33079b5c48c2SStephen Cameron 
33089b5c48c2SStephen Cameron 	c = cmd_alloc(h);
3309bf43caf3SRobert Elliott 
33109b5c48c2SStephen Cameron 	(void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG);
33119b5c48c2SStephen Cameron 	(void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
33129b5c48c2SStephen Cameron 	/* no unmap needed here because no data xfer. */
33139b5c48c2SStephen Cameron 	ei = c->err_info;
33149b5c48c2SStephen Cameron 	switch (ei->CommandStatus) {
33159b5c48c2SStephen Cameron 	case CMD_INVALID:
33169b5c48c2SStephen Cameron 		rc = 0;
33179b5c48c2SStephen Cameron 		break;
33189b5c48c2SStephen Cameron 	case CMD_UNABORTABLE:
33199b5c48c2SStephen Cameron 	case CMD_ABORT_FAILED:
33209b5c48c2SStephen Cameron 		rc = 1;
33219b5c48c2SStephen Cameron 		break;
33229437ac43SStephen Cameron 	case CMD_TMF_STATUS:
33239437ac43SStephen Cameron 		rc = hpsa_evaluate_tmf_status(h, c);
33249437ac43SStephen Cameron 		break;
33259b5c48c2SStephen Cameron 	default:
33269b5c48c2SStephen Cameron 		rc = 0;
33279b5c48c2SStephen Cameron 		break;
33289b5c48c2SStephen Cameron 	}
33299b5c48c2SStephen Cameron 	cmd_free(h, c);
33309b5c48c2SStephen Cameron 	return rc;
33319b5c48c2SStephen Cameron }
33329b5c48c2SStephen Cameron 
3333edd16368SStephen M. Cameron static int hpsa_update_device_info(struct ctlr_info *h,
33340b0e1d6cSStephen M. Cameron 	unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device,
33350b0e1d6cSStephen M. Cameron 	unsigned char *is_OBDR_device)
3336edd16368SStephen M. Cameron {
33370b0e1d6cSStephen M. Cameron 
33380b0e1d6cSStephen M. Cameron #define OBDR_SIG_OFFSET 43
33390b0e1d6cSStephen M. Cameron #define OBDR_TAPE_SIG "$DR-10"
33400b0e1d6cSStephen M. Cameron #define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1)
33410b0e1d6cSStephen M. Cameron #define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN)
33420b0e1d6cSStephen M. Cameron 
3343ea6d3bc3SStephen M. Cameron 	unsigned char *inq_buff;
33440b0e1d6cSStephen M. Cameron 	unsigned char *obdr_sig;
3345edd16368SStephen M. Cameron 
3346ea6d3bc3SStephen M. Cameron 	inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL);
3347edd16368SStephen M. Cameron 	if (!inq_buff)
3348edd16368SStephen M. Cameron 		goto bail_out;
3349edd16368SStephen M. Cameron 
3350edd16368SStephen M. Cameron 	/* Do an inquiry to the device to see what it is. */
3351edd16368SStephen M. Cameron 	if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff,
3352edd16368SStephen M. Cameron 		(unsigned char) OBDR_TAPE_INQ_SIZE) != 0) {
3353edd16368SStephen M. Cameron 		/* Inquiry failed (msg printed already) */
3354edd16368SStephen M. Cameron 		dev_err(&h->pdev->dev,
3355edd16368SStephen M. Cameron 			"hpsa_update_device_info: inquiry failed\n");
3356edd16368SStephen M. Cameron 		goto bail_out;
3357edd16368SStephen M. Cameron 	}
3358edd16368SStephen M. Cameron 
3359edd16368SStephen M. Cameron 	this_device->devtype = (inq_buff[0] & 0x1f);
3360edd16368SStephen M. Cameron 	memcpy(this_device->scsi3addr, scsi3addr, 8);
3361edd16368SStephen M. Cameron 	memcpy(this_device->vendor, &inq_buff[8],
3362edd16368SStephen M. Cameron 		sizeof(this_device->vendor));
3363edd16368SStephen M. Cameron 	memcpy(this_device->model, &inq_buff[16],
3364edd16368SStephen M. Cameron 		sizeof(this_device->model));
3365edd16368SStephen M. Cameron 	memset(this_device->device_id, 0,
3366edd16368SStephen M. Cameron 		sizeof(this_device->device_id));
3367edd16368SStephen M. Cameron 	hpsa_get_device_id(h, scsi3addr, this_device->device_id,
3368edd16368SStephen M. Cameron 		sizeof(this_device->device_id));
3369edd16368SStephen M. Cameron 
3370edd16368SStephen M. Cameron 	if (this_device->devtype == TYPE_DISK &&
3371283b4a9bSStephen M. Cameron 		is_logical_dev_addr_mode(scsi3addr)) {
337267955ba3SStephen M. Cameron 		int volume_offline;
337367955ba3SStephen M. Cameron 
3374edd16368SStephen M. Cameron 		hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level);
3375283b4a9bSStephen M. Cameron 		if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC)
3376283b4a9bSStephen M. Cameron 			hpsa_get_ioaccel_status(h, scsi3addr, this_device);
337767955ba3SStephen M. Cameron 		volume_offline = hpsa_volume_offline(h, scsi3addr);
337867955ba3SStephen M. Cameron 		if (volume_offline < 0 || volume_offline > 0xff)
337967955ba3SStephen M. Cameron 			volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED;
338067955ba3SStephen M. Cameron 		this_device->volume_offline = volume_offline & 0xff;
3381283b4a9bSStephen M. Cameron 	} else {
3382edd16368SStephen M. Cameron 		this_device->raid_level = RAID_UNKNOWN;
3383283b4a9bSStephen M. Cameron 		this_device->offload_config = 0;
3384283b4a9bSStephen M. Cameron 		this_device->offload_enabled = 0;
338541ce4c35SStephen Cameron 		this_device->offload_to_be_enabled = 0;
3386a3144e0bSJoe Handzik 		this_device->hba_ioaccel_enabled = 0;
33879846590eSStephen M. Cameron 		this_device->volume_offline = 0;
338803383736SDon Brace 		this_device->queue_depth = h->nr_cmds;
3389283b4a9bSStephen M. Cameron 	}
3390edd16368SStephen M. Cameron 
33910b0e1d6cSStephen M. Cameron 	if (is_OBDR_device) {
33920b0e1d6cSStephen M. Cameron 		/* See if this is a One-Button-Disaster-Recovery device
33930b0e1d6cSStephen M. Cameron 		 * by looking for "$DR-10" at offset 43 in inquiry data.
33940b0e1d6cSStephen M. Cameron 		 */
33950b0e1d6cSStephen M. Cameron 		obdr_sig = &inq_buff[OBDR_SIG_OFFSET];
33960b0e1d6cSStephen M. Cameron 		*is_OBDR_device = (this_device->devtype == TYPE_ROM &&
33970b0e1d6cSStephen M. Cameron 					strncmp(obdr_sig, OBDR_TAPE_SIG,
33980b0e1d6cSStephen M. Cameron 						OBDR_SIG_LEN) == 0);
33990b0e1d6cSStephen M. Cameron 	}
3400edd16368SStephen M. Cameron 	kfree(inq_buff);
3401edd16368SStephen M. Cameron 	return 0;
3402edd16368SStephen M. Cameron 
3403edd16368SStephen M. Cameron bail_out:
3404edd16368SStephen M. Cameron 	kfree(inq_buff);
3405edd16368SStephen M. Cameron 	return 1;
3406edd16368SStephen M. Cameron }
3407edd16368SStephen M. Cameron 
34089b5c48c2SStephen Cameron static void hpsa_update_device_supports_aborts(struct ctlr_info *h,
34099b5c48c2SStephen Cameron 			struct hpsa_scsi_dev_t *dev, u8 *scsi3addr)
34109b5c48c2SStephen Cameron {
34119b5c48c2SStephen Cameron 	unsigned long flags;
34129b5c48c2SStephen Cameron 	int rc, entry;
34139b5c48c2SStephen Cameron 	/*
34149b5c48c2SStephen Cameron 	 * See if this device supports aborts.  If we already know
34159b5c48c2SStephen Cameron 	 * the device, we already know if it supports aborts, otherwise
34169b5c48c2SStephen Cameron 	 * we have to find out if it supports aborts by trying one.
34179b5c48c2SStephen Cameron 	 */
34189b5c48c2SStephen Cameron 	spin_lock_irqsave(&h->devlock, flags);
34199b5c48c2SStephen Cameron 	rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry);
34209b5c48c2SStephen Cameron 	if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) &&
34219b5c48c2SStephen Cameron 		entry >= 0 && entry < h->ndevices) {
34229b5c48c2SStephen Cameron 		dev->supports_aborts = h->dev[entry]->supports_aborts;
34239b5c48c2SStephen Cameron 		spin_unlock_irqrestore(&h->devlock, flags);
34249b5c48c2SStephen Cameron 	} else {
34259b5c48c2SStephen Cameron 		spin_unlock_irqrestore(&h->devlock, flags);
34269b5c48c2SStephen Cameron 		dev->supports_aborts =
34279b5c48c2SStephen Cameron 				hpsa_device_supports_aborts(h, scsi3addr);
34289b5c48c2SStephen Cameron 		if (dev->supports_aborts < 0)
34299b5c48c2SStephen Cameron 			dev->supports_aborts = 0;
34309b5c48c2SStephen Cameron 	}
34319b5c48c2SStephen Cameron }
34329b5c48c2SStephen Cameron 
34334f4eb9f1SScott Teel static unsigned char *ext_target_model[] = {
3434edd16368SStephen M. Cameron 	"MSA2012",
3435edd16368SStephen M. Cameron 	"MSA2024",
3436edd16368SStephen M. Cameron 	"MSA2312",
3437edd16368SStephen M. Cameron 	"MSA2324",
3438fda38518SStephen M. Cameron 	"P2000 G3 SAS",
3439e06c8e5cSStephen M. Cameron 	"MSA 2040 SAS",
3440edd16368SStephen M. Cameron 	NULL,
3441edd16368SStephen M. Cameron };
3442edd16368SStephen M. Cameron 
34434f4eb9f1SScott Teel static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device)
3444edd16368SStephen M. Cameron {
3445edd16368SStephen M. Cameron 	int i;
3446edd16368SStephen M. Cameron 
34474f4eb9f1SScott Teel 	for (i = 0; ext_target_model[i]; i++)
34484f4eb9f1SScott Teel 		if (strncmp(device->model, ext_target_model[i],
34494f4eb9f1SScott Teel 			strlen(ext_target_model[i])) == 0)
3450edd16368SStephen M. Cameron 			return 1;
3451edd16368SStephen M. Cameron 	return 0;
3452edd16368SStephen M. Cameron }
3453edd16368SStephen M. Cameron 
3454edd16368SStephen M. Cameron /* Helper function to assign bus, target, lun mapping of devices.
34554f4eb9f1SScott Teel  * Puts non-external target logical volumes on bus 0, external target logical
3456edd16368SStephen M. Cameron  * volumes on bus 1, physical devices on bus 2. and the hba on bus 3.
3457edd16368SStephen M. Cameron  * Logical drive target and lun are assigned at this time, but
3458edd16368SStephen M. Cameron  * physical device lun and target assignment are deferred (assigned
3459edd16368SStephen M. Cameron  * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.)
3460edd16368SStephen M. Cameron  */
3461edd16368SStephen M. Cameron static void figure_bus_target_lun(struct ctlr_info *h,
34621f310bdeSStephen M. Cameron 	u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device)
3463edd16368SStephen M. Cameron {
34641f310bdeSStephen M. Cameron 	u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes));
3465edd16368SStephen M. Cameron 
34661f310bdeSStephen M. Cameron 	if (!is_logical_dev_addr_mode(lunaddrbytes)) {
34671f310bdeSStephen M. Cameron 		/* physical device, target and lun filled in later */
34681f310bdeSStephen M. Cameron 		if (is_hba_lunid(lunaddrbytes))
34691f310bdeSStephen M. Cameron 			hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff);
34701f310bdeSStephen M. Cameron 		else
34711f310bdeSStephen M. Cameron 			/* defer target, lun assignment for physical devices */
34721f310bdeSStephen M. Cameron 			hpsa_set_bus_target_lun(device, 2, -1, -1);
34731f310bdeSStephen M. Cameron 		return;
34741f310bdeSStephen M. Cameron 	}
34751f310bdeSStephen M. Cameron 	/* It's a logical device */
34764f4eb9f1SScott Teel 	if (is_ext_target(h, device)) {
34774f4eb9f1SScott Teel 		/* external target way, put logicals on bus 1
3478339b2b14SStephen M. Cameron 		 * and match target/lun numbers box
34791f310bdeSStephen M. Cameron 		 * reports, other smart array, bus 0, target 0, match lunid
3480339b2b14SStephen M. Cameron 		 */
34811f310bdeSStephen M. Cameron 		hpsa_set_bus_target_lun(device,
34821f310bdeSStephen M. Cameron 			1, (lunid >> 16) & 0x3fff, lunid & 0x00ff);
34831f310bdeSStephen M. Cameron 		return;
3484339b2b14SStephen M. Cameron 	}
34851f310bdeSStephen M. Cameron 	hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff);
3486edd16368SStephen M. Cameron }
3487edd16368SStephen M. Cameron 
3488edd16368SStephen M. Cameron /*
3489edd16368SStephen M. Cameron  * If there is no lun 0 on a target, linux won't find any devices.
34904f4eb9f1SScott Teel  * For the external targets (arrays), we have to manually detect the enclosure
3491edd16368SStephen M. Cameron  * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report
3492edd16368SStephen M. Cameron  * it for some reason.  *tmpdevice is the target we're adding,
3493edd16368SStephen M. Cameron  * this_device is a pointer into the current element of currentsd[]
3494edd16368SStephen M. Cameron  * that we're building up in update_scsi_devices(), below.
3495edd16368SStephen M. Cameron  * lunzerobits is a bitmap that tracks which targets already have a
3496edd16368SStephen M. Cameron  * lun 0 assigned.
3497edd16368SStephen M. Cameron  * Returns 1 if an enclosure was added, 0 if not.
3498edd16368SStephen M. Cameron  */
34994f4eb9f1SScott Teel static int add_ext_target_dev(struct ctlr_info *h,
3500edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *tmpdevice,
350101a02ffcSStephen M. Cameron 	struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes,
35024f4eb9f1SScott Teel 	unsigned long lunzerobits[], int *n_ext_target_devs)
3503edd16368SStephen M. Cameron {
3504edd16368SStephen M. Cameron 	unsigned char scsi3addr[8];
3505edd16368SStephen M. Cameron 
35061f310bdeSStephen M. Cameron 	if (test_bit(tmpdevice->target, lunzerobits))
3507edd16368SStephen M. Cameron 		return 0; /* There is already a lun 0 on this target. */
3508edd16368SStephen M. Cameron 
3509edd16368SStephen M. Cameron 	if (!is_logical_dev_addr_mode(lunaddrbytes))
3510edd16368SStephen M. Cameron 		return 0; /* It's the logical targets that may lack lun 0. */
3511edd16368SStephen M. Cameron 
35124f4eb9f1SScott Teel 	if (!is_ext_target(h, tmpdevice))
35134f4eb9f1SScott Teel 		return 0; /* Only external target devices have this problem. */
3514edd16368SStephen M. Cameron 
35151f310bdeSStephen M. Cameron 	if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */
3516edd16368SStephen M. Cameron 		return 0;
3517edd16368SStephen M. Cameron 
3518c4f8a299SStephen M. Cameron 	memset(scsi3addr, 0, 8);
35191f310bdeSStephen M. Cameron 	scsi3addr[3] = tmpdevice->target;
3520edd16368SStephen M. Cameron 	if (is_hba_lunid(scsi3addr))
3521edd16368SStephen M. Cameron 		return 0; /* Don't add the RAID controller here. */
3522edd16368SStephen M. Cameron 
3523339b2b14SStephen M. Cameron 	if (is_scsi_rev_5(h))
3524339b2b14SStephen M. Cameron 		return 0; /* p1210m doesn't need to do this. */
3525339b2b14SStephen M. Cameron 
35264f4eb9f1SScott Teel 	if (*n_ext_target_devs >= MAX_EXT_TARGETS) {
3527aca4a520SScott Teel 		dev_warn(&h->pdev->dev, "Maximum number of external "
3528aca4a520SScott Teel 			"target devices exceeded.  Check your hardware "
3529edd16368SStephen M. Cameron 			"configuration.");
3530edd16368SStephen M. Cameron 		return 0;
3531edd16368SStephen M. Cameron 	}
3532edd16368SStephen M. Cameron 
35330b0e1d6cSStephen M. Cameron 	if (hpsa_update_device_info(h, scsi3addr, this_device, NULL))
3534edd16368SStephen M. Cameron 		return 0;
35354f4eb9f1SScott Teel 	(*n_ext_target_devs)++;
35361f310bdeSStephen M. Cameron 	hpsa_set_bus_target_lun(this_device,
35371f310bdeSStephen M. Cameron 				tmpdevice->bus, tmpdevice->target, 0);
35389b5c48c2SStephen Cameron 	hpsa_update_device_supports_aborts(h, this_device, scsi3addr);
35391f310bdeSStephen M. Cameron 	set_bit(tmpdevice->target, lunzerobits);
3540edd16368SStephen M. Cameron 	return 1;
3541edd16368SStephen M. Cameron }
3542edd16368SStephen M. Cameron 
3543edd16368SStephen M. Cameron /*
354454b6e9e9SScott Teel  * Get address of physical disk used for an ioaccel2 mode command:
354554b6e9e9SScott Teel  *	1. Extract ioaccel2 handle from the command.
354654b6e9e9SScott Teel  *	2. Find a matching ioaccel2 handle from list of physical disks.
354754b6e9e9SScott Teel  *	3. Return:
354854b6e9e9SScott Teel  *		1 and set scsi3addr to address of matching physical
354954b6e9e9SScott Teel  *		0 if no matching physical disk was found.
355054b6e9e9SScott Teel  */
355154b6e9e9SScott Teel static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h,
355254b6e9e9SScott Teel 	struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr)
355354b6e9e9SScott Teel {
355441ce4c35SStephen Cameron 	struct io_accel2_cmd *c2 =
355541ce4c35SStephen Cameron 			&h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex];
355641ce4c35SStephen Cameron 	unsigned long flags;
355754b6e9e9SScott Teel 	int i;
355854b6e9e9SScott Teel 
355941ce4c35SStephen Cameron 	spin_lock_irqsave(&h->devlock, flags);
356041ce4c35SStephen Cameron 	for (i = 0; i < h->ndevices; i++)
356141ce4c35SStephen Cameron 		if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) {
356241ce4c35SStephen Cameron 			memcpy(scsi3addr, h->dev[i]->scsi3addr,
356341ce4c35SStephen Cameron 				sizeof(h->dev[i]->scsi3addr));
356441ce4c35SStephen Cameron 			spin_unlock_irqrestore(&h->devlock, flags);
356554b6e9e9SScott Teel 			return 1;
356654b6e9e9SScott Teel 		}
356741ce4c35SStephen Cameron 	spin_unlock_irqrestore(&h->devlock, flags);
356841ce4c35SStephen Cameron 	return 0;
356941ce4c35SStephen Cameron }
357041ce4c35SStephen Cameron 
357154b6e9e9SScott Teel /*
3572edd16368SStephen M. Cameron  * Do CISS_REPORT_PHYS and CISS_REPORT_LOG.  Data is returned in physdev,
3573edd16368SStephen M. Cameron  * logdev.  The number of luns in physdev and logdev are returned in
3574edd16368SStephen M. Cameron  * *nphysicals and *nlogicals, respectively.
3575edd16368SStephen M. Cameron  * Returns 0 on success, -1 otherwise.
3576edd16368SStephen M. Cameron  */
3577edd16368SStephen M. Cameron static int hpsa_gather_lun_info(struct ctlr_info *h,
357803383736SDon Brace 	struct ReportExtendedLUNdata *physdev, u32 *nphysicals,
357901a02ffcSStephen M. Cameron 	struct ReportLUNdata *logdev, u32 *nlogicals)
3580edd16368SStephen M. Cameron {
358103383736SDon Brace 	if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) {
3582edd16368SStephen M. Cameron 		dev_err(&h->pdev->dev, "report physical LUNs failed.\n");
3583edd16368SStephen M. Cameron 		return -1;
3584edd16368SStephen M. Cameron 	}
358503383736SDon Brace 	*nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24;
3586edd16368SStephen M. Cameron 	if (*nphysicals > HPSA_MAX_PHYS_LUN) {
358703383736SDon Brace 		dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n",
358803383736SDon Brace 			HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN);
3589edd16368SStephen M. Cameron 		*nphysicals = HPSA_MAX_PHYS_LUN;
3590edd16368SStephen M. Cameron 	}
359103383736SDon Brace 	if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) {
3592edd16368SStephen M. Cameron 		dev_err(&h->pdev->dev, "report logical LUNs failed.\n");
3593edd16368SStephen M. Cameron 		return -1;
3594edd16368SStephen M. Cameron 	}
35956df1e954SStephen M. Cameron 	*nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8;
3596edd16368SStephen M. Cameron 	/* Reject Logicals in excess of our max capability. */
3597edd16368SStephen M. Cameron 	if (*nlogicals > HPSA_MAX_LUN) {
3598edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev,
3599edd16368SStephen M. Cameron 			"maximum logical LUNs (%d) exceeded.  "
3600edd16368SStephen M. Cameron 			"%d LUNs ignored.\n", HPSA_MAX_LUN,
3601edd16368SStephen M. Cameron 			*nlogicals - HPSA_MAX_LUN);
3602edd16368SStephen M. Cameron 			*nlogicals = HPSA_MAX_LUN;
3603edd16368SStephen M. Cameron 	}
3604edd16368SStephen M. Cameron 	if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) {
3605edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev,
3606edd16368SStephen M. Cameron 			"maximum logical + physical LUNs (%d) exceeded. "
3607edd16368SStephen M. Cameron 			"%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN,
3608edd16368SStephen M. Cameron 			*nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN);
3609edd16368SStephen M. Cameron 		*nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals;
3610edd16368SStephen M. Cameron 	}
3611edd16368SStephen M. Cameron 	return 0;
3612edd16368SStephen M. Cameron }
3613edd16368SStephen M. Cameron 
361442a91641SDon Brace static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position,
361542a91641SDon Brace 	int i, int nphysicals, int nlogicals,
3616a93aa1feSMatt Gates 	struct ReportExtendedLUNdata *physdev_list,
3617339b2b14SStephen M. Cameron 	struct ReportLUNdata *logdev_list)
3618339b2b14SStephen M. Cameron {
3619339b2b14SStephen M. Cameron 	/* Helper function, figure out where the LUN ID info is coming from
3620339b2b14SStephen M. Cameron 	 * given index i, lists of physical and logical devices, where in
3621339b2b14SStephen M. Cameron 	 * the list the raid controller is supposed to appear (first or last)
3622339b2b14SStephen M. Cameron 	 */
3623339b2b14SStephen M. Cameron 
3624339b2b14SStephen M. Cameron 	int logicals_start = nphysicals + (raid_ctlr_position == 0);
3625339b2b14SStephen M. Cameron 	int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0);
3626339b2b14SStephen M. Cameron 
3627339b2b14SStephen M. Cameron 	if (i == raid_ctlr_position)
3628339b2b14SStephen M. Cameron 		return RAID_CTLR_LUNID;
3629339b2b14SStephen M. Cameron 
3630339b2b14SStephen M. Cameron 	if (i < logicals_start)
3631d5b5d964SStephen M. Cameron 		return &physdev_list->LUN[i -
3632d5b5d964SStephen M. Cameron 				(raid_ctlr_position == 0)].lunid[0];
3633339b2b14SStephen M. Cameron 
3634339b2b14SStephen M. Cameron 	if (i < last_device)
3635339b2b14SStephen M. Cameron 		return &logdev_list->LUN[i - nphysicals -
3636339b2b14SStephen M. Cameron 			(raid_ctlr_position == 0)][0];
3637339b2b14SStephen M. Cameron 	BUG();
3638339b2b14SStephen M. Cameron 	return NULL;
3639339b2b14SStephen M. Cameron }
3640339b2b14SStephen M. Cameron 
364103383736SDon Brace /* get physical drive ioaccel handle and queue depth */
364203383736SDon Brace static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h,
364303383736SDon Brace 		struct hpsa_scsi_dev_t *dev,
364403383736SDon Brace 		u8 *lunaddrbytes,
364503383736SDon Brace 		struct bmic_identify_physical_device *id_phys)
364603383736SDon Brace {
364703383736SDon Brace 	int rc;
364803383736SDon Brace 	struct ext_report_lun_entry *rle =
364903383736SDon Brace 		(struct ext_report_lun_entry *) lunaddrbytes;
365003383736SDon Brace 
365103383736SDon Brace 	dev->ioaccel_handle = rle->ioaccel_handle;
3652a3144e0bSJoe Handzik 	if (PHYS_IOACCEL(lunaddrbytes) && dev->ioaccel_handle)
3653a3144e0bSJoe Handzik 		dev->hba_ioaccel_enabled = 1;
365403383736SDon Brace 	memset(id_phys, 0, sizeof(*id_phys));
365503383736SDon Brace 	rc = hpsa_bmic_id_physical_device(h, lunaddrbytes,
365603383736SDon Brace 			GET_BMIC_DRIVE_NUMBER(lunaddrbytes), id_phys,
365703383736SDon Brace 			sizeof(*id_phys));
365803383736SDon Brace 	if (!rc)
365903383736SDon Brace 		/* Reserve space for FW operations */
366003383736SDon Brace #define DRIVE_CMDS_RESERVED_FOR_FW 2
366103383736SDon Brace #define DRIVE_QUEUE_DEPTH 7
366203383736SDon Brace 		dev->queue_depth =
366303383736SDon Brace 			le16_to_cpu(id_phys->current_queue_depth_limit) -
366403383736SDon Brace 				DRIVE_CMDS_RESERVED_FOR_FW;
366503383736SDon Brace 	else
366603383736SDon Brace 		dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */
366703383736SDon Brace 	atomic_set(&dev->ioaccel_cmds_out, 0);
3668d604f533SWebb Scales 	atomic_set(&dev->reset_cmds_out, 0);
366903383736SDon Brace }
367003383736SDon Brace 
36718270b862SJoe Handzik static void hpsa_get_path_info(struct hpsa_scsi_dev_t *this_device,
36728270b862SJoe Handzik 	u8 *lunaddrbytes,
36738270b862SJoe Handzik 	struct bmic_identify_physical_device *id_phys)
36748270b862SJoe Handzik {
36758270b862SJoe Handzik 	if (PHYS_IOACCEL(lunaddrbytes)
36768270b862SJoe Handzik 		&& this_device->ioaccel_handle)
36778270b862SJoe Handzik 		this_device->hba_ioaccel_enabled = 1;
36788270b862SJoe Handzik 
36798270b862SJoe Handzik 	memcpy(&this_device->active_path_index,
36808270b862SJoe Handzik 		&id_phys->active_path_number,
36818270b862SJoe Handzik 		sizeof(this_device->active_path_index));
36828270b862SJoe Handzik 	memcpy(&this_device->path_map,
36838270b862SJoe Handzik 		&id_phys->redundant_path_present_map,
36848270b862SJoe Handzik 		sizeof(this_device->path_map));
36858270b862SJoe Handzik 	memcpy(&this_device->box,
36868270b862SJoe Handzik 		&id_phys->alternate_paths_phys_box_on_port,
36878270b862SJoe Handzik 		sizeof(this_device->box));
36888270b862SJoe Handzik 	memcpy(&this_device->phys_connector,
36898270b862SJoe Handzik 		&id_phys->alternate_paths_phys_connector,
36908270b862SJoe Handzik 		sizeof(this_device->phys_connector));
36918270b862SJoe Handzik 	memcpy(&this_device->bay,
36928270b862SJoe Handzik 		&id_phys->phys_bay_in_box,
36938270b862SJoe Handzik 		sizeof(this_device->bay));
36948270b862SJoe Handzik }
36958270b862SJoe Handzik 
3696edd16368SStephen M. Cameron static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno)
3697edd16368SStephen M. Cameron {
3698edd16368SStephen M. Cameron 	/* the idea here is we could get notified
3699edd16368SStephen M. Cameron 	 * that some devices have changed, so we do a report
3700edd16368SStephen M. Cameron 	 * physical luns and report logical luns cmd, and adjust
3701edd16368SStephen M. Cameron 	 * our list of devices accordingly.
3702edd16368SStephen M. Cameron 	 *
3703edd16368SStephen M. Cameron 	 * The scsi3addr's of devices won't change so long as the
3704edd16368SStephen M. Cameron 	 * adapter is not reset.  That means we can rescan and
3705edd16368SStephen M. Cameron 	 * tell which devices we already know about, vs. new
3706edd16368SStephen M. Cameron 	 * devices, vs.  disappearing devices.
3707edd16368SStephen M. Cameron 	 */
3708a93aa1feSMatt Gates 	struct ReportExtendedLUNdata *physdev_list = NULL;
3709edd16368SStephen M. Cameron 	struct ReportLUNdata *logdev_list = NULL;
371003383736SDon Brace 	struct bmic_identify_physical_device *id_phys = NULL;
371101a02ffcSStephen M. Cameron 	u32 nphysicals = 0;
371201a02ffcSStephen M. Cameron 	u32 nlogicals = 0;
371301a02ffcSStephen M. Cameron 	u32 ndev_allocated = 0;
3714edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice;
3715edd16368SStephen M. Cameron 	int ncurrent = 0;
37164f4eb9f1SScott Teel 	int i, n_ext_target_devs, ndevs_to_allocate;
3717339b2b14SStephen M. Cameron 	int raid_ctlr_position;
3718aca4a520SScott Teel 	DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS);
3719edd16368SStephen M. Cameron 
3720cfe5badcSScott Teel 	currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL);
372192084715SStephen M. Cameron 	physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL);
372292084715SStephen M. Cameron 	logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL);
3723edd16368SStephen M. Cameron 	tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL);
372403383736SDon Brace 	id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL);
3725edd16368SStephen M. Cameron 
372603383736SDon Brace 	if (!currentsd || !physdev_list || !logdev_list ||
372703383736SDon Brace 		!tmpdevice || !id_phys) {
3728edd16368SStephen M. Cameron 		dev_err(&h->pdev->dev, "out of memory\n");
3729edd16368SStephen M. Cameron 		goto out;
3730edd16368SStephen M. Cameron 	}
3731edd16368SStephen M. Cameron 	memset(lunzerobits, 0, sizeof(lunzerobits));
3732edd16368SStephen M. Cameron 
373303383736SDon Brace 	if (hpsa_gather_lun_info(h, physdev_list, &nphysicals,
373403383736SDon Brace 			logdev_list, &nlogicals))
3735edd16368SStephen M. Cameron 		goto out;
3736edd16368SStephen M. Cameron 
3737aca4a520SScott Teel 	/* We might see up to the maximum number of logical and physical disks
3738aca4a520SScott Teel 	 * plus external target devices, and a device for the local RAID
3739aca4a520SScott Teel 	 * controller.
3740edd16368SStephen M. Cameron 	 */
3741aca4a520SScott Teel 	ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1;
3742edd16368SStephen M. Cameron 
3743edd16368SStephen M. Cameron 	/* Allocate the per device structures */
3744edd16368SStephen M. Cameron 	for (i = 0; i < ndevs_to_allocate; i++) {
3745b7ec021fSScott Teel 		if (i >= HPSA_MAX_DEVICES) {
3746b7ec021fSScott Teel 			dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded."
3747b7ec021fSScott Teel 				"  %d devices ignored.\n", HPSA_MAX_DEVICES,
3748b7ec021fSScott Teel 				ndevs_to_allocate - HPSA_MAX_DEVICES);
3749b7ec021fSScott Teel 			break;
3750b7ec021fSScott Teel 		}
3751b7ec021fSScott Teel 
3752edd16368SStephen M. Cameron 		currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL);
3753edd16368SStephen M. Cameron 		if (!currentsd[i]) {
3754edd16368SStephen M. Cameron 			dev_warn(&h->pdev->dev, "out of memory at %s:%d\n",
3755edd16368SStephen M. Cameron 				__FILE__, __LINE__);
3756edd16368SStephen M. Cameron 			goto out;
3757edd16368SStephen M. Cameron 		}
3758edd16368SStephen M. Cameron 		ndev_allocated++;
3759edd16368SStephen M. Cameron 	}
3760edd16368SStephen M. Cameron 
37618645291bSStephen M. Cameron 	if (is_scsi_rev_5(h))
3762339b2b14SStephen M. Cameron 		raid_ctlr_position = 0;
3763339b2b14SStephen M. Cameron 	else
3764339b2b14SStephen M. Cameron 		raid_ctlr_position = nphysicals + nlogicals;
3765339b2b14SStephen M. Cameron 
3766edd16368SStephen M. Cameron 	/* adjust our table of devices */
37674f4eb9f1SScott Teel 	n_ext_target_devs = 0;
3768edd16368SStephen M. Cameron 	for (i = 0; i < nphysicals + nlogicals + 1; i++) {
37690b0e1d6cSStephen M. Cameron 		u8 *lunaddrbytes, is_OBDR = 0;
3770edd16368SStephen M. Cameron 
3771edd16368SStephen M. Cameron 		/* Figure out where the LUN ID info is coming from */
3772339b2b14SStephen M. Cameron 		lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position,
3773339b2b14SStephen M. Cameron 			i, nphysicals, nlogicals, physdev_list, logdev_list);
377441ce4c35SStephen Cameron 
377541ce4c35SStephen Cameron 		/* skip masked non-disk devices */
377641ce4c35SStephen Cameron 		if (MASKED_DEVICE(lunaddrbytes))
377741ce4c35SStephen Cameron 			if (i < nphysicals + (raid_ctlr_position == 0) &&
377841ce4c35SStephen Cameron 				NON_DISK_PHYS_DEV(lunaddrbytes))
3779edd16368SStephen M. Cameron 				continue;
3780edd16368SStephen M. Cameron 
3781edd16368SStephen M. Cameron 		/* Get device type, vendor, model, device id */
37820b0e1d6cSStephen M. Cameron 		if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice,
37830b0e1d6cSStephen M. Cameron 							&is_OBDR))
3784edd16368SStephen M. Cameron 			continue; /* skip it if we can't talk to it. */
37851f310bdeSStephen M. Cameron 		figure_bus_target_lun(h, lunaddrbytes, tmpdevice);
37869b5c48c2SStephen Cameron 		hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes);
3787edd16368SStephen M. Cameron 		this_device = currentsd[ncurrent];
3788edd16368SStephen M. Cameron 
3789edd16368SStephen M. Cameron 		/*
37904f4eb9f1SScott Teel 		 * For external target devices, we have to insert a LUN 0 which
3791edd16368SStephen M. Cameron 		 * doesn't show up in CCISS_REPORT_PHYSICAL data, but there
3792edd16368SStephen M. Cameron 		 * is nonetheless an enclosure device there.  We have to
3793edd16368SStephen M. Cameron 		 * present that otherwise linux won't find anything if
3794edd16368SStephen M. Cameron 		 * there is no lun 0.
3795edd16368SStephen M. Cameron 		 */
37964f4eb9f1SScott Teel 		if (add_ext_target_dev(h, tmpdevice, this_device,
37971f310bdeSStephen M. Cameron 				lunaddrbytes, lunzerobits,
37984f4eb9f1SScott Teel 				&n_ext_target_devs)) {
3799edd16368SStephen M. Cameron 			ncurrent++;
3800edd16368SStephen M. Cameron 			this_device = currentsd[ncurrent];
3801edd16368SStephen M. Cameron 		}
3802edd16368SStephen M. Cameron 
3803edd16368SStephen M. Cameron 		*this_device = *tmpdevice;
3804edd16368SStephen M. Cameron 
380541ce4c35SStephen Cameron 		/* do not expose masked devices */
380641ce4c35SStephen Cameron 		if (MASKED_DEVICE(lunaddrbytes) &&
380741ce4c35SStephen Cameron 			i < nphysicals + (raid_ctlr_position == 0)) {
380841ce4c35SStephen Cameron 			this_device->expose_state = HPSA_DO_NOT_EXPOSE;
380941ce4c35SStephen Cameron 		} else {
381041ce4c35SStephen Cameron 			this_device->expose_state =
381141ce4c35SStephen Cameron 					HPSA_SG_ATTACH | HPSA_ULD_ATTACH;
381241ce4c35SStephen Cameron 		}
381341ce4c35SStephen Cameron 
3814edd16368SStephen M. Cameron 		switch (this_device->devtype) {
38150b0e1d6cSStephen M. Cameron 		case TYPE_ROM:
3816edd16368SStephen M. Cameron 			/* We don't *really* support actual CD-ROM devices,
3817edd16368SStephen M. Cameron 			 * just "One Button Disaster Recovery" tape drive
3818edd16368SStephen M. Cameron 			 * which temporarily pretends to be a CD-ROM drive.
3819edd16368SStephen M. Cameron 			 * So we check that the device is really an OBDR tape
3820edd16368SStephen M. Cameron 			 * device by checking for "$DR-10" in bytes 43-48 of
3821edd16368SStephen M. Cameron 			 * the inquiry data.
3822edd16368SStephen M. Cameron 			 */
38230b0e1d6cSStephen M. Cameron 			if (is_OBDR)
3824edd16368SStephen M. Cameron 				ncurrent++;
3825edd16368SStephen M. Cameron 			break;
3826edd16368SStephen M. Cameron 		case TYPE_DISK:
3827*b9092b79SKevin Barnett 			if (i < nphysicals + (raid_ctlr_position == 0)) {
3828*b9092b79SKevin Barnett 				/* The disk is in HBA mode. */
3829*b9092b79SKevin Barnett 				/* Never use RAID mapper in HBA mode. */
3830ecf418d1SJoe Handzik 				this_device->offload_enabled = 0;
383103383736SDon Brace 				hpsa_get_ioaccel_drive_info(h, this_device,
383203383736SDon Brace 					lunaddrbytes, id_phys);
3833*b9092b79SKevin Barnett 				hpsa_get_path_info(this_device, lunaddrbytes,
3834*b9092b79SKevin Barnett 							id_phys);
3835*b9092b79SKevin Barnett 			}
3836edd16368SStephen M. Cameron 			ncurrent++;
3837edd16368SStephen M. Cameron 			break;
3838edd16368SStephen M. Cameron 		case TYPE_TAPE:
3839edd16368SStephen M. Cameron 		case TYPE_MEDIUM_CHANGER:
384041ce4c35SStephen Cameron 		case TYPE_ENCLOSURE:
384141ce4c35SStephen Cameron 			ncurrent++;
384241ce4c35SStephen Cameron 			break;
3843edd16368SStephen M. Cameron 		case TYPE_RAID:
3844edd16368SStephen M. Cameron 			/* Only present the Smartarray HBA as a RAID controller.
3845edd16368SStephen M. Cameron 			 * If it's a RAID controller other than the HBA itself
3846edd16368SStephen M. Cameron 			 * (an external RAID controller, MSA500 or similar)
3847edd16368SStephen M. Cameron 			 * don't present it.
3848edd16368SStephen M. Cameron 			 */
3849edd16368SStephen M. Cameron 			if (!is_hba_lunid(lunaddrbytes))
3850edd16368SStephen M. Cameron 				break;
3851edd16368SStephen M. Cameron 			ncurrent++;
3852edd16368SStephen M. Cameron 			break;
3853edd16368SStephen M. Cameron 		default:
3854edd16368SStephen M. Cameron 			break;
3855edd16368SStephen M. Cameron 		}
3856cfe5badcSScott Teel 		if (ncurrent >= HPSA_MAX_DEVICES)
3857edd16368SStephen M. Cameron 			break;
3858edd16368SStephen M. Cameron 	}
3859edd16368SStephen M. Cameron 	adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent);
3860edd16368SStephen M. Cameron out:
3861edd16368SStephen M. Cameron 	kfree(tmpdevice);
3862edd16368SStephen M. Cameron 	for (i = 0; i < ndev_allocated; i++)
3863edd16368SStephen M. Cameron 		kfree(currentsd[i]);
3864edd16368SStephen M. Cameron 	kfree(currentsd);
3865edd16368SStephen M. Cameron 	kfree(physdev_list);
3866edd16368SStephen M. Cameron 	kfree(logdev_list);
386703383736SDon Brace 	kfree(id_phys);
3868edd16368SStephen M. Cameron }
3869edd16368SStephen M. Cameron 
3870ec5cbf04SWebb Scales static void hpsa_set_sg_descriptor(struct SGDescriptor *desc,
3871ec5cbf04SWebb Scales 				   struct scatterlist *sg)
3872ec5cbf04SWebb Scales {
3873ec5cbf04SWebb Scales 	u64 addr64 = (u64) sg_dma_address(sg);
3874ec5cbf04SWebb Scales 	unsigned int len = sg_dma_len(sg);
3875ec5cbf04SWebb Scales 
3876ec5cbf04SWebb Scales 	desc->Addr = cpu_to_le64(addr64);
3877ec5cbf04SWebb Scales 	desc->Len = cpu_to_le32(len);
3878ec5cbf04SWebb Scales 	desc->Ext = 0;
3879ec5cbf04SWebb Scales }
3880ec5cbf04SWebb Scales 
3881c7ee65b3SWebb Scales /*
3882c7ee65b3SWebb Scales  * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci
3883edd16368SStephen M. Cameron  * dma mapping  and fills in the scatter gather entries of the
3884edd16368SStephen M. Cameron  * hpsa command, cp.
3885edd16368SStephen M. Cameron  */
388633a2ffceSStephen M. Cameron static int hpsa_scatter_gather(struct ctlr_info *h,
3887edd16368SStephen M. Cameron 		struct CommandList *cp,
3888edd16368SStephen M. Cameron 		struct scsi_cmnd *cmd)
3889edd16368SStephen M. Cameron {
3890edd16368SStephen M. Cameron 	struct scatterlist *sg;
3891b3a7ba7cSWebb Scales 	int use_sg, i, sg_limit, chained, last_sg;
389233a2ffceSStephen M. Cameron 	struct SGDescriptor *curr_sg;
3893edd16368SStephen M. Cameron 
389433a2ffceSStephen M. Cameron 	BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
3895edd16368SStephen M. Cameron 
3896edd16368SStephen M. Cameron 	use_sg = scsi_dma_map(cmd);
3897edd16368SStephen M. Cameron 	if (use_sg < 0)
3898edd16368SStephen M. Cameron 		return use_sg;
3899edd16368SStephen M. Cameron 
3900edd16368SStephen M. Cameron 	if (!use_sg)
3901edd16368SStephen M. Cameron 		goto sglist_finished;
3902edd16368SStephen M. Cameron 
3903b3a7ba7cSWebb Scales 	/*
3904b3a7ba7cSWebb Scales 	 * If the number of entries is greater than the max for a single list,
3905b3a7ba7cSWebb Scales 	 * then we have a chained list; we will set up all but one entry in the
3906b3a7ba7cSWebb Scales 	 * first list (the last entry is saved for link information);
3907b3a7ba7cSWebb Scales 	 * otherwise, we don't have a chained list and we'll set up at each of
3908b3a7ba7cSWebb Scales 	 * the entries in the one list.
3909b3a7ba7cSWebb Scales 	 */
391033a2ffceSStephen M. Cameron 	curr_sg = cp->SG;
3911b3a7ba7cSWebb Scales 	chained = use_sg > h->max_cmd_sg_entries;
3912b3a7ba7cSWebb Scales 	sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg;
3913b3a7ba7cSWebb Scales 	last_sg = scsi_sg_count(cmd) - 1;
3914b3a7ba7cSWebb Scales 	scsi_for_each_sg(cmd, sg, sg_limit, i) {
3915ec5cbf04SWebb Scales 		hpsa_set_sg_descriptor(curr_sg, sg);
391633a2ffceSStephen M. Cameron 		curr_sg++;
391733a2ffceSStephen M. Cameron 	}
3918ec5cbf04SWebb Scales 
3919b3a7ba7cSWebb Scales 	if (chained) {
3920b3a7ba7cSWebb Scales 		/*
3921b3a7ba7cSWebb Scales 		 * Continue with the chained list.  Set curr_sg to the chained
3922b3a7ba7cSWebb Scales 		 * list.  Modify the limit to the total count less the entries
3923b3a7ba7cSWebb Scales 		 * we've already set up.  Resume the scan at the list entry
3924b3a7ba7cSWebb Scales 		 * where the previous loop left off.
3925b3a7ba7cSWebb Scales 		 */
3926b3a7ba7cSWebb Scales 		curr_sg = h->cmd_sg_list[cp->cmdindex];
3927b3a7ba7cSWebb Scales 		sg_limit = use_sg - sg_limit;
3928b3a7ba7cSWebb Scales 		for_each_sg(sg, sg, sg_limit, i) {
3929b3a7ba7cSWebb Scales 			hpsa_set_sg_descriptor(curr_sg, sg);
3930b3a7ba7cSWebb Scales 			curr_sg++;
3931b3a7ba7cSWebb Scales 		}
3932b3a7ba7cSWebb Scales 	}
3933b3a7ba7cSWebb Scales 
3934ec5cbf04SWebb Scales 	/* Back the pointer up to the last entry and mark it as "last". */
3935b3a7ba7cSWebb Scales 	(curr_sg - 1)->Ext = cpu_to_le32(HPSA_SG_LAST);
393633a2ffceSStephen M. Cameron 
393733a2ffceSStephen M. Cameron 	if (use_sg + chained > h->maxSG)
393833a2ffceSStephen M. Cameron 		h->maxSG = use_sg + chained;
393933a2ffceSStephen M. Cameron 
394033a2ffceSStephen M. Cameron 	if (chained) {
394133a2ffceSStephen M. Cameron 		cp->Header.SGList = h->max_cmd_sg_entries;
394250a0decfSStephen M. Cameron 		cp->Header.SGTotal = cpu_to_le16(use_sg + 1);
3943e2bea6dfSStephen M. Cameron 		if (hpsa_map_sg_chain_block(h, cp)) {
3944e2bea6dfSStephen M. Cameron 			scsi_dma_unmap(cmd);
3945e2bea6dfSStephen M. Cameron 			return -1;
3946e2bea6dfSStephen M. Cameron 		}
394733a2ffceSStephen M. Cameron 		return 0;
3948edd16368SStephen M. Cameron 	}
3949edd16368SStephen M. Cameron 
3950edd16368SStephen M. Cameron sglist_finished:
3951edd16368SStephen M. Cameron 
395201a02ffcSStephen M. Cameron 	cp->Header.SGList = (u8) use_sg;   /* no. SGs contig in this cmd */
3953c7ee65b3SWebb Scales 	cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */
3954edd16368SStephen M. Cameron 	return 0;
3955edd16368SStephen M. Cameron }
3956edd16368SStephen M. Cameron 
3957283b4a9bSStephen M. Cameron #define IO_ACCEL_INELIGIBLE (1)
3958283b4a9bSStephen M. Cameron static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len)
3959283b4a9bSStephen M. Cameron {
3960283b4a9bSStephen M. Cameron 	int is_write = 0;
3961283b4a9bSStephen M. Cameron 	u32 block;
3962283b4a9bSStephen M. Cameron 	u32 block_cnt;
3963283b4a9bSStephen M. Cameron 
3964283b4a9bSStephen M. Cameron 	/* Perform some CDB fixups if needed using 10 byte reads/writes only */
3965283b4a9bSStephen M. Cameron 	switch (cdb[0]) {
3966283b4a9bSStephen M. Cameron 	case WRITE_6:
3967283b4a9bSStephen M. Cameron 	case WRITE_12:
3968283b4a9bSStephen M. Cameron 		is_write = 1;
3969283b4a9bSStephen M. Cameron 	case READ_6:
3970283b4a9bSStephen M. Cameron 	case READ_12:
3971283b4a9bSStephen M. Cameron 		if (*cdb_len == 6) {
3972283b4a9bSStephen M. Cameron 			block = (((u32) cdb[2]) << 8) | cdb[3];
3973283b4a9bSStephen M. Cameron 			block_cnt = cdb[4];
3974283b4a9bSStephen M. Cameron 		} else {
3975283b4a9bSStephen M. Cameron 			BUG_ON(*cdb_len != 12);
3976283b4a9bSStephen M. Cameron 			block = (((u32) cdb[2]) << 24) |
3977283b4a9bSStephen M. Cameron 				(((u32) cdb[3]) << 16) |
3978283b4a9bSStephen M. Cameron 				(((u32) cdb[4]) << 8) |
3979283b4a9bSStephen M. Cameron 				cdb[5];
3980283b4a9bSStephen M. Cameron 			block_cnt =
3981283b4a9bSStephen M. Cameron 				(((u32) cdb[6]) << 24) |
3982283b4a9bSStephen M. Cameron 				(((u32) cdb[7]) << 16) |
3983283b4a9bSStephen M. Cameron 				(((u32) cdb[8]) << 8) |
3984283b4a9bSStephen M. Cameron 				cdb[9];
3985283b4a9bSStephen M. Cameron 		}
3986283b4a9bSStephen M. Cameron 		if (block_cnt > 0xffff)
3987283b4a9bSStephen M. Cameron 			return IO_ACCEL_INELIGIBLE;
3988283b4a9bSStephen M. Cameron 
3989283b4a9bSStephen M. Cameron 		cdb[0] = is_write ? WRITE_10 : READ_10;
3990283b4a9bSStephen M. Cameron 		cdb[1] = 0;
3991283b4a9bSStephen M. Cameron 		cdb[2] = (u8) (block >> 24);
3992283b4a9bSStephen M. Cameron 		cdb[3] = (u8) (block >> 16);
3993283b4a9bSStephen M. Cameron 		cdb[4] = (u8) (block >> 8);
3994283b4a9bSStephen M. Cameron 		cdb[5] = (u8) (block);
3995283b4a9bSStephen M. Cameron 		cdb[6] = 0;
3996283b4a9bSStephen M. Cameron 		cdb[7] = (u8) (block_cnt >> 8);
3997283b4a9bSStephen M. Cameron 		cdb[8] = (u8) (block_cnt);
3998283b4a9bSStephen M. Cameron 		cdb[9] = 0;
3999283b4a9bSStephen M. Cameron 		*cdb_len = 10;
4000283b4a9bSStephen M. Cameron 		break;
4001283b4a9bSStephen M. Cameron 	}
4002283b4a9bSStephen M. Cameron 	return 0;
4003283b4a9bSStephen M. Cameron }
4004283b4a9bSStephen M. Cameron 
4005c349775eSScott Teel static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h,
4006283b4a9bSStephen M. Cameron 	struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
400703383736SDon Brace 	u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
4008e1f7de0cSMatt Gates {
4009e1f7de0cSMatt Gates 	struct scsi_cmnd *cmd = c->scsi_cmd;
4010e1f7de0cSMatt Gates 	struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex];
4011e1f7de0cSMatt Gates 	unsigned int len;
4012e1f7de0cSMatt Gates 	unsigned int total_len = 0;
4013e1f7de0cSMatt Gates 	struct scatterlist *sg;
4014e1f7de0cSMatt Gates 	u64 addr64;
4015e1f7de0cSMatt Gates 	int use_sg, i;
4016e1f7de0cSMatt Gates 	struct SGDescriptor *curr_sg;
4017e1f7de0cSMatt Gates 	u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE;
4018e1f7de0cSMatt Gates 
4019283b4a9bSStephen M. Cameron 	/* TODO: implement chaining support */
402003383736SDon Brace 	if (scsi_sg_count(cmd) > h->ioaccel_maxsg) {
402103383736SDon Brace 		atomic_dec(&phys_disk->ioaccel_cmds_out);
4022283b4a9bSStephen M. Cameron 		return IO_ACCEL_INELIGIBLE;
402303383736SDon Brace 	}
4024283b4a9bSStephen M. Cameron 
4025e1f7de0cSMatt Gates 	BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX);
4026e1f7de0cSMatt Gates 
402703383736SDon Brace 	if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
402803383736SDon Brace 		atomic_dec(&phys_disk->ioaccel_cmds_out);
4029283b4a9bSStephen M. Cameron 		return IO_ACCEL_INELIGIBLE;
403003383736SDon Brace 	}
4031283b4a9bSStephen M. Cameron 
4032e1f7de0cSMatt Gates 	c->cmd_type = CMD_IOACCEL1;
4033e1f7de0cSMatt Gates 
4034e1f7de0cSMatt Gates 	/* Adjust the DMA address to point to the accelerated command buffer */
4035e1f7de0cSMatt Gates 	c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle +
4036e1f7de0cSMatt Gates 				(c->cmdindex * sizeof(*cp));
4037e1f7de0cSMatt Gates 	BUG_ON(c->busaddr & 0x0000007F);
4038e1f7de0cSMatt Gates 
4039e1f7de0cSMatt Gates 	use_sg = scsi_dma_map(cmd);
404003383736SDon Brace 	if (use_sg < 0) {
404103383736SDon Brace 		atomic_dec(&phys_disk->ioaccel_cmds_out);
4042e1f7de0cSMatt Gates 		return use_sg;
404303383736SDon Brace 	}
4044e1f7de0cSMatt Gates 
4045e1f7de0cSMatt Gates 	if (use_sg) {
4046e1f7de0cSMatt Gates 		curr_sg = cp->SG;
4047e1f7de0cSMatt Gates 		scsi_for_each_sg(cmd, sg, use_sg, i) {
4048e1f7de0cSMatt Gates 			addr64 = (u64) sg_dma_address(sg);
4049e1f7de0cSMatt Gates 			len  = sg_dma_len(sg);
4050e1f7de0cSMatt Gates 			total_len += len;
405150a0decfSStephen M. Cameron 			curr_sg->Addr = cpu_to_le64(addr64);
405250a0decfSStephen M. Cameron 			curr_sg->Len = cpu_to_le32(len);
405350a0decfSStephen M. Cameron 			curr_sg->Ext = cpu_to_le32(0);
4054e1f7de0cSMatt Gates 			curr_sg++;
4055e1f7de0cSMatt Gates 		}
405650a0decfSStephen M. Cameron 		(--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST);
4057e1f7de0cSMatt Gates 
4058e1f7de0cSMatt Gates 		switch (cmd->sc_data_direction) {
4059e1f7de0cSMatt Gates 		case DMA_TO_DEVICE:
4060e1f7de0cSMatt Gates 			control |= IOACCEL1_CONTROL_DATA_OUT;
4061e1f7de0cSMatt Gates 			break;
4062e1f7de0cSMatt Gates 		case DMA_FROM_DEVICE:
4063e1f7de0cSMatt Gates 			control |= IOACCEL1_CONTROL_DATA_IN;
4064e1f7de0cSMatt Gates 			break;
4065e1f7de0cSMatt Gates 		case DMA_NONE:
4066e1f7de0cSMatt Gates 			control |= IOACCEL1_CONTROL_NODATAXFER;
4067e1f7de0cSMatt Gates 			break;
4068e1f7de0cSMatt Gates 		default:
4069e1f7de0cSMatt Gates 			dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4070e1f7de0cSMatt Gates 			cmd->sc_data_direction);
4071e1f7de0cSMatt Gates 			BUG();
4072e1f7de0cSMatt Gates 			break;
4073e1f7de0cSMatt Gates 		}
4074e1f7de0cSMatt Gates 	} else {
4075e1f7de0cSMatt Gates 		control |= IOACCEL1_CONTROL_NODATAXFER;
4076e1f7de0cSMatt Gates 	}
4077e1f7de0cSMatt Gates 
4078c349775eSScott Teel 	c->Header.SGList = use_sg;
4079e1f7de0cSMatt Gates 	/* Fill out the command structure to submit */
40802b08b3e9SDon Brace 	cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF);
40812b08b3e9SDon Brace 	cp->transfer_len = cpu_to_le32(total_len);
40822b08b3e9SDon Brace 	cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ |
40832b08b3e9SDon Brace 			(cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK));
40842b08b3e9SDon Brace 	cp->control = cpu_to_le32(control);
4085283b4a9bSStephen M. Cameron 	memcpy(cp->CDB, cdb, cdb_len);
4086283b4a9bSStephen M. Cameron 	memcpy(cp->CISS_LUN, scsi3addr, 8);
4087c349775eSScott Teel 	/* Tag was already set at init time. */
4088e1f7de0cSMatt Gates 	enqueue_cmd_and_start_io(h, c);
4089e1f7de0cSMatt Gates 	return 0;
4090e1f7de0cSMatt Gates }
4091edd16368SStephen M. Cameron 
4092283b4a9bSStephen M. Cameron /*
4093283b4a9bSStephen M. Cameron  * Queue a command directly to a device behind the controller using the
4094283b4a9bSStephen M. Cameron  * I/O accelerator path.
4095283b4a9bSStephen M. Cameron  */
4096283b4a9bSStephen M. Cameron static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h,
4097283b4a9bSStephen M. Cameron 	struct CommandList *c)
4098283b4a9bSStephen M. Cameron {
4099283b4a9bSStephen M. Cameron 	struct scsi_cmnd *cmd = c->scsi_cmd;
4100283b4a9bSStephen M. Cameron 	struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4101283b4a9bSStephen M. Cameron 
410203383736SDon Brace 	c->phys_disk = dev;
410303383736SDon Brace 
4104283b4a9bSStephen M. Cameron 	return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle,
410503383736SDon Brace 		cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev);
4106283b4a9bSStephen M. Cameron }
4107283b4a9bSStephen M. Cameron 
4108dd0e19f3SScott Teel /*
4109dd0e19f3SScott Teel  * Set encryption parameters for the ioaccel2 request
4110dd0e19f3SScott Teel  */
4111dd0e19f3SScott Teel static void set_encrypt_ioaccel2(struct ctlr_info *h,
4112dd0e19f3SScott Teel 	struct CommandList *c, struct io_accel2_cmd *cp)
4113dd0e19f3SScott Teel {
4114dd0e19f3SScott Teel 	struct scsi_cmnd *cmd = c->scsi_cmd;
4115dd0e19f3SScott Teel 	struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4116dd0e19f3SScott Teel 	struct raid_map_data *map = &dev->raid_map;
4117dd0e19f3SScott Teel 	u64 first_block;
4118dd0e19f3SScott Teel 
4119dd0e19f3SScott Teel 	/* Are we doing encryption on this device */
41202b08b3e9SDon Brace 	if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON))
4121dd0e19f3SScott Teel 		return;
4122dd0e19f3SScott Teel 	/* Set the data encryption key index. */
4123dd0e19f3SScott Teel 	cp->dekindex = map->dekindex;
4124dd0e19f3SScott Teel 
4125dd0e19f3SScott Teel 	/* Set the encryption enable flag, encoded into direction field. */
4126dd0e19f3SScott Teel 	cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK;
4127dd0e19f3SScott Teel 
4128dd0e19f3SScott Teel 	/* Set encryption tweak values based on logical block address
4129dd0e19f3SScott Teel 	 * If block size is 512, tweak value is LBA.
4130dd0e19f3SScott Teel 	 * For other block sizes, tweak is (LBA * block size)/ 512)
4131dd0e19f3SScott Teel 	 */
4132dd0e19f3SScott Teel 	switch (cmd->cmnd[0]) {
4133dd0e19f3SScott Teel 	/* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */
4134dd0e19f3SScott Teel 	case WRITE_6:
4135dd0e19f3SScott Teel 	case READ_6:
41362b08b3e9SDon Brace 		first_block = get_unaligned_be16(&cmd->cmnd[2]);
4137dd0e19f3SScott Teel 		break;
4138dd0e19f3SScott Teel 	case WRITE_10:
4139dd0e19f3SScott Teel 	case READ_10:
4140dd0e19f3SScott Teel 	/* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */
4141dd0e19f3SScott Teel 	case WRITE_12:
4142dd0e19f3SScott Teel 	case READ_12:
41432b08b3e9SDon Brace 		first_block = get_unaligned_be32(&cmd->cmnd[2]);
4144dd0e19f3SScott Teel 		break;
4145dd0e19f3SScott Teel 	case WRITE_16:
4146dd0e19f3SScott Teel 	case READ_16:
41472b08b3e9SDon Brace 		first_block = get_unaligned_be64(&cmd->cmnd[2]);
4148dd0e19f3SScott Teel 		break;
4149dd0e19f3SScott Teel 	default:
4150dd0e19f3SScott Teel 		dev_err(&h->pdev->dev,
41512b08b3e9SDon Brace 			"ERROR: %s: size (0x%x) not supported for encryption\n",
41522b08b3e9SDon Brace 			__func__, cmd->cmnd[0]);
4153dd0e19f3SScott Teel 		BUG();
4154dd0e19f3SScott Teel 		break;
4155dd0e19f3SScott Teel 	}
41562b08b3e9SDon Brace 
41572b08b3e9SDon Brace 	if (le32_to_cpu(map->volume_blk_size) != 512)
41582b08b3e9SDon Brace 		first_block = first_block *
41592b08b3e9SDon Brace 				le32_to_cpu(map->volume_blk_size)/512;
41602b08b3e9SDon Brace 
41612b08b3e9SDon Brace 	cp->tweak_lower = cpu_to_le32(first_block);
41622b08b3e9SDon Brace 	cp->tweak_upper = cpu_to_le32(first_block >> 32);
4163dd0e19f3SScott Teel }
4164dd0e19f3SScott Teel 
4165c349775eSScott Teel static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h,
4166c349775eSScott Teel 	struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
416703383736SDon Brace 	u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
4168c349775eSScott Teel {
4169c349775eSScott Teel 	struct scsi_cmnd *cmd = c->scsi_cmd;
4170c349775eSScott Teel 	struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex];
4171c349775eSScott Teel 	struct ioaccel2_sg_element *curr_sg;
4172c349775eSScott Teel 	int use_sg, i;
4173c349775eSScott Teel 	struct scatterlist *sg;
4174c349775eSScott Teel 	u64 addr64;
4175c349775eSScott Teel 	u32 len;
4176c349775eSScott Teel 	u32 total_len = 0;
4177c349775eSScott Teel 
4178d9a729f3SWebb Scales 	BUG_ON(scsi_sg_count(cmd) > h->maxsgentries);
4179c349775eSScott Teel 
418003383736SDon Brace 	if (fixup_ioaccel_cdb(cdb, &cdb_len)) {
418103383736SDon Brace 		atomic_dec(&phys_disk->ioaccel_cmds_out);
4182c349775eSScott Teel 		return IO_ACCEL_INELIGIBLE;
418303383736SDon Brace 	}
418403383736SDon Brace 
4185c349775eSScott Teel 	c->cmd_type = CMD_IOACCEL2;
4186c349775eSScott Teel 	/* Adjust the DMA address to point to the accelerated command buffer */
4187c349775eSScott Teel 	c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
4188c349775eSScott Teel 				(c->cmdindex * sizeof(*cp));
4189c349775eSScott Teel 	BUG_ON(c->busaddr & 0x0000007F);
4190c349775eSScott Teel 
4191c349775eSScott Teel 	memset(cp, 0, sizeof(*cp));
4192c349775eSScott Teel 	cp->IU_type = IOACCEL2_IU_TYPE;
4193c349775eSScott Teel 
4194c349775eSScott Teel 	use_sg = scsi_dma_map(cmd);
419503383736SDon Brace 	if (use_sg < 0) {
419603383736SDon Brace 		atomic_dec(&phys_disk->ioaccel_cmds_out);
4197c349775eSScott Teel 		return use_sg;
419803383736SDon Brace 	}
4199c349775eSScott Teel 
4200c349775eSScott Teel 	if (use_sg) {
4201c349775eSScott Teel 		curr_sg = cp->sg;
4202d9a729f3SWebb Scales 		if (use_sg > h->ioaccel_maxsg) {
4203d9a729f3SWebb Scales 			addr64 = le64_to_cpu(
4204d9a729f3SWebb Scales 				h->ioaccel2_cmd_sg_list[c->cmdindex]->address);
4205d9a729f3SWebb Scales 			curr_sg->address = cpu_to_le64(addr64);
4206d9a729f3SWebb Scales 			curr_sg->length = 0;
4207d9a729f3SWebb Scales 			curr_sg->reserved[0] = 0;
4208d9a729f3SWebb Scales 			curr_sg->reserved[1] = 0;
4209d9a729f3SWebb Scales 			curr_sg->reserved[2] = 0;
4210d9a729f3SWebb Scales 			curr_sg->chain_indicator = 0x80;
4211d9a729f3SWebb Scales 
4212d9a729f3SWebb Scales 			curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex];
4213d9a729f3SWebb Scales 		}
4214c349775eSScott Teel 		scsi_for_each_sg(cmd, sg, use_sg, i) {
4215c349775eSScott Teel 			addr64 = (u64) sg_dma_address(sg);
4216c349775eSScott Teel 			len  = sg_dma_len(sg);
4217c349775eSScott Teel 			total_len += len;
4218c349775eSScott Teel 			curr_sg->address = cpu_to_le64(addr64);
4219c349775eSScott Teel 			curr_sg->length = cpu_to_le32(len);
4220c349775eSScott Teel 			curr_sg->reserved[0] = 0;
4221c349775eSScott Teel 			curr_sg->reserved[1] = 0;
4222c349775eSScott Teel 			curr_sg->reserved[2] = 0;
4223c349775eSScott Teel 			curr_sg->chain_indicator = 0;
4224c349775eSScott Teel 			curr_sg++;
4225c349775eSScott Teel 		}
4226c349775eSScott Teel 
4227c349775eSScott Teel 		switch (cmd->sc_data_direction) {
4228c349775eSScott Teel 		case DMA_TO_DEVICE:
4229dd0e19f3SScott Teel 			cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4230dd0e19f3SScott Teel 			cp->direction |= IOACCEL2_DIR_DATA_OUT;
4231c349775eSScott Teel 			break;
4232c349775eSScott Teel 		case DMA_FROM_DEVICE:
4233dd0e19f3SScott Teel 			cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4234dd0e19f3SScott Teel 			cp->direction |= IOACCEL2_DIR_DATA_IN;
4235c349775eSScott Teel 			break;
4236c349775eSScott Teel 		case DMA_NONE:
4237dd0e19f3SScott Teel 			cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4238dd0e19f3SScott Teel 			cp->direction |= IOACCEL2_DIR_NO_DATA;
4239c349775eSScott Teel 			break;
4240c349775eSScott Teel 		default:
4241c349775eSScott Teel 			dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4242c349775eSScott Teel 				cmd->sc_data_direction);
4243c349775eSScott Teel 			BUG();
4244c349775eSScott Teel 			break;
4245c349775eSScott Teel 		}
4246c349775eSScott Teel 	} else {
4247dd0e19f3SScott Teel 		cp->direction &= ~IOACCEL2_DIRECTION_MASK;
4248dd0e19f3SScott Teel 		cp->direction |= IOACCEL2_DIR_NO_DATA;
4249c349775eSScott Teel 	}
4250dd0e19f3SScott Teel 
4251dd0e19f3SScott Teel 	/* Set encryption parameters, if necessary */
4252dd0e19f3SScott Teel 	set_encrypt_ioaccel2(h, c, cp);
4253dd0e19f3SScott Teel 
42542b08b3e9SDon Brace 	cp->scsi_nexus = cpu_to_le32(ioaccel_handle);
4255f2405db8SDon Brace 	cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT);
4256c349775eSScott Teel 	memcpy(cp->cdb, cdb, sizeof(cp->cdb));
4257c349775eSScott Teel 
4258c349775eSScott Teel 	cp->data_len = cpu_to_le32(total_len);
4259c349775eSScott Teel 	cp->err_ptr = cpu_to_le64(c->busaddr +
4260c349775eSScott Teel 			offsetof(struct io_accel2_cmd, error_data));
426150a0decfSStephen M. Cameron 	cp->err_len = cpu_to_le32(sizeof(cp->error_data));
4262c349775eSScott Teel 
4263d9a729f3SWebb Scales 	/* fill in sg elements */
4264d9a729f3SWebb Scales 	if (use_sg > h->ioaccel_maxsg) {
4265d9a729f3SWebb Scales 		cp->sg_count = 1;
4266d9a729f3SWebb Scales 		if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) {
4267d9a729f3SWebb Scales 			atomic_dec(&phys_disk->ioaccel_cmds_out);
4268d9a729f3SWebb Scales 			scsi_dma_unmap(cmd);
4269d9a729f3SWebb Scales 			return -1;
4270d9a729f3SWebb Scales 		}
4271d9a729f3SWebb Scales 	} else
4272d9a729f3SWebb Scales 		cp->sg_count = (u8) use_sg;
4273d9a729f3SWebb Scales 
4274c349775eSScott Teel 	enqueue_cmd_and_start_io(h, c);
4275c349775eSScott Teel 	return 0;
4276c349775eSScott Teel }
4277c349775eSScott Teel 
4278c349775eSScott Teel /*
4279c349775eSScott Teel  * Queue a command to the correct I/O accelerator path.
4280c349775eSScott Teel  */
4281c349775eSScott Teel static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h,
4282c349775eSScott Teel 	struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len,
428303383736SDon Brace 	u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk)
4284c349775eSScott Teel {
428503383736SDon Brace 	/* Try to honor the device's queue depth */
428603383736SDon Brace 	if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) >
428703383736SDon Brace 					phys_disk->queue_depth) {
428803383736SDon Brace 		atomic_dec(&phys_disk->ioaccel_cmds_out);
428903383736SDon Brace 		return IO_ACCEL_INELIGIBLE;
429003383736SDon Brace 	}
4291c349775eSScott Teel 	if (h->transMethod & CFGTBL_Trans_io_accel1)
4292c349775eSScott Teel 		return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle,
429303383736SDon Brace 						cdb, cdb_len, scsi3addr,
429403383736SDon Brace 						phys_disk);
4295c349775eSScott Teel 	else
4296c349775eSScott Teel 		return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle,
429703383736SDon Brace 						cdb, cdb_len, scsi3addr,
429803383736SDon Brace 						phys_disk);
4299c349775eSScott Teel }
4300c349775eSScott Teel 
43016b80b18fSScott Teel static void raid_map_helper(struct raid_map_data *map,
43026b80b18fSScott Teel 		int offload_to_mirror, u32 *map_index, u32 *current_group)
43036b80b18fSScott Teel {
43046b80b18fSScott Teel 	if (offload_to_mirror == 0)  {
43056b80b18fSScott Teel 		/* use physical disk in the first mirrored group. */
43062b08b3e9SDon Brace 		*map_index %= le16_to_cpu(map->data_disks_per_row);
43076b80b18fSScott Teel 		return;
43086b80b18fSScott Teel 	}
43096b80b18fSScott Teel 	do {
43106b80b18fSScott Teel 		/* determine mirror group that *map_index indicates */
43112b08b3e9SDon Brace 		*current_group = *map_index /
43122b08b3e9SDon Brace 			le16_to_cpu(map->data_disks_per_row);
43136b80b18fSScott Teel 		if (offload_to_mirror == *current_group)
43146b80b18fSScott Teel 			continue;
43152b08b3e9SDon Brace 		if (*current_group < le16_to_cpu(map->layout_map_count) - 1) {
43166b80b18fSScott Teel 			/* select map index from next group */
43172b08b3e9SDon Brace 			*map_index += le16_to_cpu(map->data_disks_per_row);
43186b80b18fSScott Teel 			(*current_group)++;
43196b80b18fSScott Teel 		} else {
43206b80b18fSScott Teel 			/* select map index from first group */
43212b08b3e9SDon Brace 			*map_index %= le16_to_cpu(map->data_disks_per_row);
43226b80b18fSScott Teel 			*current_group = 0;
43236b80b18fSScott Teel 		}
43246b80b18fSScott Teel 	} while (offload_to_mirror != *current_group);
43256b80b18fSScott Teel }
43266b80b18fSScott Teel 
4327283b4a9bSStephen M. Cameron /*
4328283b4a9bSStephen M. Cameron  * Attempt to perform offload RAID mapping for a logical volume I/O.
4329283b4a9bSStephen M. Cameron  */
4330283b4a9bSStephen M. Cameron static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h,
4331283b4a9bSStephen M. Cameron 	struct CommandList *c)
4332283b4a9bSStephen M. Cameron {
4333283b4a9bSStephen M. Cameron 	struct scsi_cmnd *cmd = c->scsi_cmd;
4334283b4a9bSStephen M. Cameron 	struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4335283b4a9bSStephen M. Cameron 	struct raid_map_data *map = &dev->raid_map;
4336283b4a9bSStephen M. Cameron 	struct raid_map_disk_data *dd = &map->data[0];
4337283b4a9bSStephen M. Cameron 	int is_write = 0;
4338283b4a9bSStephen M. Cameron 	u32 map_index;
4339283b4a9bSStephen M. Cameron 	u64 first_block, last_block;
4340283b4a9bSStephen M. Cameron 	u32 block_cnt;
4341283b4a9bSStephen M. Cameron 	u32 blocks_per_row;
4342283b4a9bSStephen M. Cameron 	u64 first_row, last_row;
4343283b4a9bSStephen M. Cameron 	u32 first_row_offset, last_row_offset;
4344283b4a9bSStephen M. Cameron 	u32 first_column, last_column;
43456b80b18fSScott Teel 	u64 r0_first_row, r0_last_row;
43466b80b18fSScott Teel 	u32 r5or6_blocks_per_row;
43476b80b18fSScott Teel 	u64 r5or6_first_row, r5or6_last_row;
43486b80b18fSScott Teel 	u32 r5or6_first_row_offset, r5or6_last_row_offset;
43496b80b18fSScott Teel 	u32 r5or6_first_column, r5or6_last_column;
43506b80b18fSScott Teel 	u32 total_disks_per_row;
43516b80b18fSScott Teel 	u32 stripesize;
43526b80b18fSScott Teel 	u32 first_group, last_group, current_group;
4353283b4a9bSStephen M. Cameron 	u32 map_row;
4354283b4a9bSStephen M. Cameron 	u32 disk_handle;
4355283b4a9bSStephen M. Cameron 	u64 disk_block;
4356283b4a9bSStephen M. Cameron 	u32 disk_block_cnt;
4357283b4a9bSStephen M. Cameron 	u8 cdb[16];
4358283b4a9bSStephen M. Cameron 	u8 cdb_len;
43592b08b3e9SDon Brace 	u16 strip_size;
4360283b4a9bSStephen M. Cameron #if BITS_PER_LONG == 32
4361283b4a9bSStephen M. Cameron 	u64 tmpdiv;
4362283b4a9bSStephen M. Cameron #endif
43636b80b18fSScott Teel 	int offload_to_mirror;
4364283b4a9bSStephen M. Cameron 
4365283b4a9bSStephen M. Cameron 	/* check for valid opcode, get LBA and block count */
4366283b4a9bSStephen M. Cameron 	switch (cmd->cmnd[0]) {
4367283b4a9bSStephen M. Cameron 	case WRITE_6:
4368283b4a9bSStephen M. Cameron 		is_write = 1;
4369283b4a9bSStephen M. Cameron 	case READ_6:
4370283b4a9bSStephen M. Cameron 		first_block =
4371283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[2]) << 8) |
4372283b4a9bSStephen M. Cameron 			cmd->cmnd[3];
4373283b4a9bSStephen M. Cameron 		block_cnt = cmd->cmnd[4];
43743fa89a04SStephen M. Cameron 		if (block_cnt == 0)
43753fa89a04SStephen M. Cameron 			block_cnt = 256;
4376283b4a9bSStephen M. Cameron 		break;
4377283b4a9bSStephen M. Cameron 	case WRITE_10:
4378283b4a9bSStephen M. Cameron 		is_write = 1;
4379283b4a9bSStephen M. Cameron 	case READ_10:
4380283b4a9bSStephen M. Cameron 		first_block =
4381283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[2]) << 24) |
4382283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[3]) << 16) |
4383283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[4]) << 8) |
4384283b4a9bSStephen M. Cameron 			cmd->cmnd[5];
4385283b4a9bSStephen M. Cameron 		block_cnt =
4386283b4a9bSStephen M. Cameron 			(((u32) cmd->cmnd[7]) << 8) |
4387283b4a9bSStephen M. Cameron 			cmd->cmnd[8];
4388283b4a9bSStephen M. Cameron 		break;
4389283b4a9bSStephen M. Cameron 	case WRITE_12:
4390283b4a9bSStephen M. Cameron 		is_write = 1;
4391283b4a9bSStephen M. Cameron 	case READ_12:
4392283b4a9bSStephen M. Cameron 		first_block =
4393283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[2]) << 24) |
4394283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[3]) << 16) |
4395283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[4]) << 8) |
4396283b4a9bSStephen M. Cameron 			cmd->cmnd[5];
4397283b4a9bSStephen M. Cameron 		block_cnt =
4398283b4a9bSStephen M. Cameron 			(((u32) cmd->cmnd[6]) << 24) |
4399283b4a9bSStephen M. Cameron 			(((u32) cmd->cmnd[7]) << 16) |
4400283b4a9bSStephen M. Cameron 			(((u32) cmd->cmnd[8]) << 8) |
4401283b4a9bSStephen M. Cameron 		cmd->cmnd[9];
4402283b4a9bSStephen M. Cameron 		break;
4403283b4a9bSStephen M. Cameron 	case WRITE_16:
4404283b4a9bSStephen M. Cameron 		is_write = 1;
4405283b4a9bSStephen M. Cameron 	case READ_16:
4406283b4a9bSStephen M. Cameron 		first_block =
4407283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[2]) << 56) |
4408283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[3]) << 48) |
4409283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[4]) << 40) |
4410283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[5]) << 32) |
4411283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[6]) << 24) |
4412283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[7]) << 16) |
4413283b4a9bSStephen M. Cameron 			(((u64) cmd->cmnd[8]) << 8) |
4414283b4a9bSStephen M. Cameron 			cmd->cmnd[9];
4415283b4a9bSStephen M. Cameron 		block_cnt =
4416283b4a9bSStephen M. Cameron 			(((u32) cmd->cmnd[10]) << 24) |
4417283b4a9bSStephen M. Cameron 			(((u32) cmd->cmnd[11]) << 16) |
4418283b4a9bSStephen M. Cameron 			(((u32) cmd->cmnd[12]) << 8) |
4419283b4a9bSStephen M. Cameron 			cmd->cmnd[13];
4420283b4a9bSStephen M. Cameron 		break;
4421283b4a9bSStephen M. Cameron 	default:
4422283b4a9bSStephen M. Cameron 		return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */
4423283b4a9bSStephen M. Cameron 	}
4424283b4a9bSStephen M. Cameron 	last_block = first_block + block_cnt - 1;
4425283b4a9bSStephen M. Cameron 
4426283b4a9bSStephen M. Cameron 	/* check for write to non-RAID-0 */
4427283b4a9bSStephen M. Cameron 	if (is_write && dev->raid_level != 0)
4428283b4a9bSStephen M. Cameron 		return IO_ACCEL_INELIGIBLE;
4429283b4a9bSStephen M. Cameron 
4430283b4a9bSStephen M. Cameron 	/* check for invalid block or wraparound */
44312b08b3e9SDon Brace 	if (last_block >= le64_to_cpu(map->volume_blk_cnt) ||
44322b08b3e9SDon Brace 		last_block < first_block)
4433283b4a9bSStephen M. Cameron 		return IO_ACCEL_INELIGIBLE;
4434283b4a9bSStephen M. Cameron 
4435283b4a9bSStephen M. Cameron 	/* calculate stripe information for the request */
44362b08b3e9SDon Brace 	blocks_per_row = le16_to_cpu(map->data_disks_per_row) *
44372b08b3e9SDon Brace 				le16_to_cpu(map->strip_size);
44382b08b3e9SDon Brace 	strip_size = le16_to_cpu(map->strip_size);
4439283b4a9bSStephen M. Cameron #if BITS_PER_LONG == 32
4440283b4a9bSStephen M. Cameron 	tmpdiv = first_block;
4441283b4a9bSStephen M. Cameron 	(void) do_div(tmpdiv, blocks_per_row);
4442283b4a9bSStephen M. Cameron 	first_row = tmpdiv;
4443283b4a9bSStephen M. Cameron 	tmpdiv = last_block;
4444283b4a9bSStephen M. Cameron 	(void) do_div(tmpdiv, blocks_per_row);
4445283b4a9bSStephen M. Cameron 	last_row = tmpdiv;
4446283b4a9bSStephen M. Cameron 	first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4447283b4a9bSStephen M. Cameron 	last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
4448283b4a9bSStephen M. Cameron 	tmpdiv = first_row_offset;
44492b08b3e9SDon Brace 	(void) do_div(tmpdiv, strip_size);
4450283b4a9bSStephen M. Cameron 	first_column = tmpdiv;
4451283b4a9bSStephen M. Cameron 	tmpdiv = last_row_offset;
44522b08b3e9SDon Brace 	(void) do_div(tmpdiv, strip_size);
4453283b4a9bSStephen M. Cameron 	last_column = tmpdiv;
4454283b4a9bSStephen M. Cameron #else
4455283b4a9bSStephen M. Cameron 	first_row = first_block / blocks_per_row;
4456283b4a9bSStephen M. Cameron 	last_row = last_block / blocks_per_row;
4457283b4a9bSStephen M. Cameron 	first_row_offset = (u32) (first_block - (first_row * blocks_per_row));
4458283b4a9bSStephen M. Cameron 	last_row_offset = (u32) (last_block - (last_row * blocks_per_row));
44592b08b3e9SDon Brace 	first_column = first_row_offset / strip_size;
44602b08b3e9SDon Brace 	last_column = last_row_offset / strip_size;
4461283b4a9bSStephen M. Cameron #endif
4462283b4a9bSStephen M. Cameron 
4463283b4a9bSStephen M. Cameron 	/* if this isn't a single row/column then give to the controller */
4464283b4a9bSStephen M. Cameron 	if ((first_row != last_row) || (first_column != last_column))
4465283b4a9bSStephen M. Cameron 		return IO_ACCEL_INELIGIBLE;
4466283b4a9bSStephen M. Cameron 
4467283b4a9bSStephen M. Cameron 	/* proceeding with driver mapping */
44682b08b3e9SDon Brace 	total_disks_per_row = le16_to_cpu(map->data_disks_per_row) +
44692b08b3e9SDon Brace 				le16_to_cpu(map->metadata_disks_per_row);
4470283b4a9bSStephen M. Cameron 	map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
44712b08b3e9SDon Brace 				le16_to_cpu(map->row_cnt);
44726b80b18fSScott Teel 	map_index = (map_row * total_disks_per_row) + first_column;
44736b80b18fSScott Teel 
44746b80b18fSScott Teel 	switch (dev->raid_level) {
44756b80b18fSScott Teel 	case HPSA_RAID_0:
44766b80b18fSScott Teel 		break; /* nothing special to do */
44776b80b18fSScott Teel 	case HPSA_RAID_1:
44786b80b18fSScott Teel 		/* Handles load balance across RAID 1 members.
44796b80b18fSScott Teel 		 * (2-drive R1 and R10 with even # of drives.)
44806b80b18fSScott Teel 		 * Appropriate for SSDs, not optimal for HDDs
4481283b4a9bSStephen M. Cameron 		 */
44822b08b3e9SDon Brace 		BUG_ON(le16_to_cpu(map->layout_map_count) != 2);
4483283b4a9bSStephen M. Cameron 		if (dev->offload_to_mirror)
44842b08b3e9SDon Brace 			map_index += le16_to_cpu(map->data_disks_per_row);
4485283b4a9bSStephen M. Cameron 		dev->offload_to_mirror = !dev->offload_to_mirror;
44866b80b18fSScott Teel 		break;
44876b80b18fSScott Teel 	case HPSA_RAID_ADM:
44886b80b18fSScott Teel 		/* Handles N-way mirrors  (R1-ADM)
44896b80b18fSScott Teel 		 * and R10 with # of drives divisible by 3.)
44906b80b18fSScott Teel 		 */
44912b08b3e9SDon Brace 		BUG_ON(le16_to_cpu(map->layout_map_count) != 3);
44926b80b18fSScott Teel 
44936b80b18fSScott Teel 		offload_to_mirror = dev->offload_to_mirror;
44946b80b18fSScott Teel 		raid_map_helper(map, offload_to_mirror,
44956b80b18fSScott Teel 				&map_index, &current_group);
44966b80b18fSScott Teel 		/* set mirror group to use next time */
44976b80b18fSScott Teel 		offload_to_mirror =
44982b08b3e9SDon Brace 			(offload_to_mirror >=
44992b08b3e9SDon Brace 			le16_to_cpu(map->layout_map_count) - 1)
45006b80b18fSScott Teel 			? 0 : offload_to_mirror + 1;
45016b80b18fSScott Teel 		dev->offload_to_mirror = offload_to_mirror;
45026b80b18fSScott Teel 		/* Avoid direct use of dev->offload_to_mirror within this
45036b80b18fSScott Teel 		 * function since multiple threads might simultaneously
45046b80b18fSScott Teel 		 * increment it beyond the range of dev->layout_map_count -1.
45056b80b18fSScott Teel 		 */
45066b80b18fSScott Teel 		break;
45076b80b18fSScott Teel 	case HPSA_RAID_5:
45086b80b18fSScott Teel 	case HPSA_RAID_6:
45092b08b3e9SDon Brace 		if (le16_to_cpu(map->layout_map_count) <= 1)
45106b80b18fSScott Teel 			break;
45116b80b18fSScott Teel 
45126b80b18fSScott Teel 		/* Verify first and last block are in same RAID group */
45136b80b18fSScott Teel 		r5or6_blocks_per_row =
45142b08b3e9SDon Brace 			le16_to_cpu(map->strip_size) *
45152b08b3e9SDon Brace 			le16_to_cpu(map->data_disks_per_row);
45166b80b18fSScott Teel 		BUG_ON(r5or6_blocks_per_row == 0);
45172b08b3e9SDon Brace 		stripesize = r5or6_blocks_per_row *
45182b08b3e9SDon Brace 			le16_to_cpu(map->layout_map_count);
45196b80b18fSScott Teel #if BITS_PER_LONG == 32
45206b80b18fSScott Teel 		tmpdiv = first_block;
45216b80b18fSScott Teel 		first_group = do_div(tmpdiv, stripesize);
45226b80b18fSScott Teel 		tmpdiv = first_group;
45236b80b18fSScott Teel 		(void) do_div(tmpdiv, r5or6_blocks_per_row);
45246b80b18fSScott Teel 		first_group = tmpdiv;
45256b80b18fSScott Teel 		tmpdiv = last_block;
45266b80b18fSScott Teel 		last_group = do_div(tmpdiv, stripesize);
45276b80b18fSScott Teel 		tmpdiv = last_group;
45286b80b18fSScott Teel 		(void) do_div(tmpdiv, r5or6_blocks_per_row);
45296b80b18fSScott Teel 		last_group = tmpdiv;
45306b80b18fSScott Teel #else
45316b80b18fSScott Teel 		first_group = (first_block % stripesize) / r5or6_blocks_per_row;
45326b80b18fSScott Teel 		last_group = (last_block % stripesize) / r5or6_blocks_per_row;
45336b80b18fSScott Teel #endif
4534000ff7c2SStephen M. Cameron 		if (first_group != last_group)
45356b80b18fSScott Teel 			return IO_ACCEL_INELIGIBLE;
45366b80b18fSScott Teel 
45376b80b18fSScott Teel 		/* Verify request is in a single row of RAID 5/6 */
45386b80b18fSScott Teel #if BITS_PER_LONG == 32
45396b80b18fSScott Teel 		tmpdiv = first_block;
45406b80b18fSScott Teel 		(void) do_div(tmpdiv, stripesize);
45416b80b18fSScott Teel 		first_row = r5or6_first_row = r0_first_row = tmpdiv;
45426b80b18fSScott Teel 		tmpdiv = last_block;
45436b80b18fSScott Teel 		(void) do_div(tmpdiv, stripesize);
45446b80b18fSScott Teel 		r5or6_last_row = r0_last_row = tmpdiv;
45456b80b18fSScott Teel #else
45466b80b18fSScott Teel 		first_row = r5or6_first_row = r0_first_row =
45476b80b18fSScott Teel 						first_block / stripesize;
45486b80b18fSScott Teel 		r5or6_last_row = r0_last_row = last_block / stripesize;
45496b80b18fSScott Teel #endif
45506b80b18fSScott Teel 		if (r5or6_first_row != r5or6_last_row)
45516b80b18fSScott Teel 			return IO_ACCEL_INELIGIBLE;
45526b80b18fSScott Teel 
45536b80b18fSScott Teel 
45546b80b18fSScott Teel 		/* Verify request is in a single column */
45556b80b18fSScott Teel #if BITS_PER_LONG == 32
45566b80b18fSScott Teel 		tmpdiv = first_block;
45576b80b18fSScott Teel 		first_row_offset = do_div(tmpdiv, stripesize);
45586b80b18fSScott Teel 		tmpdiv = first_row_offset;
45596b80b18fSScott Teel 		first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row);
45606b80b18fSScott Teel 		r5or6_first_row_offset = first_row_offset;
45616b80b18fSScott Teel 		tmpdiv = last_block;
45626b80b18fSScott Teel 		r5or6_last_row_offset = do_div(tmpdiv, stripesize);
45636b80b18fSScott Teel 		tmpdiv = r5or6_last_row_offset;
45646b80b18fSScott Teel 		r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row);
45656b80b18fSScott Teel 		tmpdiv = r5or6_first_row_offset;
45666b80b18fSScott Teel 		(void) do_div(tmpdiv, map->strip_size);
45676b80b18fSScott Teel 		first_column = r5or6_first_column = tmpdiv;
45686b80b18fSScott Teel 		tmpdiv = r5or6_last_row_offset;
45696b80b18fSScott Teel 		(void) do_div(tmpdiv, map->strip_size);
45706b80b18fSScott Teel 		r5or6_last_column = tmpdiv;
45716b80b18fSScott Teel #else
45726b80b18fSScott Teel 		first_row_offset = r5or6_first_row_offset =
45736b80b18fSScott Teel 			(u32)((first_block % stripesize) %
45746b80b18fSScott Teel 						r5or6_blocks_per_row);
45756b80b18fSScott Teel 
45766b80b18fSScott Teel 		r5or6_last_row_offset =
45776b80b18fSScott Teel 			(u32)((last_block % stripesize) %
45786b80b18fSScott Teel 						r5or6_blocks_per_row);
45796b80b18fSScott Teel 
45806b80b18fSScott Teel 		first_column = r5or6_first_column =
45812b08b3e9SDon Brace 			r5or6_first_row_offset / le16_to_cpu(map->strip_size);
45826b80b18fSScott Teel 		r5or6_last_column =
45832b08b3e9SDon Brace 			r5or6_last_row_offset / le16_to_cpu(map->strip_size);
45846b80b18fSScott Teel #endif
45856b80b18fSScott Teel 		if (r5or6_first_column != r5or6_last_column)
45866b80b18fSScott Teel 			return IO_ACCEL_INELIGIBLE;
45876b80b18fSScott Teel 
45886b80b18fSScott Teel 		/* Request is eligible */
45896b80b18fSScott Teel 		map_row = ((u32)(first_row >> map->parity_rotation_shift)) %
45902b08b3e9SDon Brace 			le16_to_cpu(map->row_cnt);
45916b80b18fSScott Teel 
45926b80b18fSScott Teel 		map_index = (first_group *
45932b08b3e9SDon Brace 			(le16_to_cpu(map->row_cnt) * total_disks_per_row)) +
45946b80b18fSScott Teel 			(map_row * total_disks_per_row) + first_column;
45956b80b18fSScott Teel 		break;
45966b80b18fSScott Teel 	default:
45976b80b18fSScott Teel 		return IO_ACCEL_INELIGIBLE;
4598283b4a9bSStephen M. Cameron 	}
45996b80b18fSScott Teel 
460007543e0cSStephen Cameron 	if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES))
460107543e0cSStephen Cameron 		return IO_ACCEL_INELIGIBLE;
460207543e0cSStephen Cameron 
460303383736SDon Brace 	c->phys_disk = dev->phys_disk[map_index];
460403383736SDon Brace 
4605283b4a9bSStephen M. Cameron 	disk_handle = dd[map_index].ioaccel_handle;
46062b08b3e9SDon Brace 	disk_block = le64_to_cpu(map->disk_starting_blk) +
46072b08b3e9SDon Brace 			first_row * le16_to_cpu(map->strip_size) +
46082b08b3e9SDon Brace 			(first_row_offset - first_column *
46092b08b3e9SDon Brace 			le16_to_cpu(map->strip_size));
4610283b4a9bSStephen M. Cameron 	disk_block_cnt = block_cnt;
4611283b4a9bSStephen M. Cameron 
4612283b4a9bSStephen M. Cameron 	/* handle differing logical/physical block sizes */
4613283b4a9bSStephen M. Cameron 	if (map->phys_blk_shift) {
4614283b4a9bSStephen M. Cameron 		disk_block <<= map->phys_blk_shift;
4615283b4a9bSStephen M. Cameron 		disk_block_cnt <<= map->phys_blk_shift;
4616283b4a9bSStephen M. Cameron 	}
4617283b4a9bSStephen M. Cameron 	BUG_ON(disk_block_cnt > 0xffff);
4618283b4a9bSStephen M. Cameron 
4619283b4a9bSStephen M. Cameron 	/* build the new CDB for the physical disk I/O */
4620283b4a9bSStephen M. Cameron 	if (disk_block > 0xffffffff) {
4621283b4a9bSStephen M. Cameron 		cdb[0] = is_write ? WRITE_16 : READ_16;
4622283b4a9bSStephen M. Cameron 		cdb[1] = 0;
4623283b4a9bSStephen M. Cameron 		cdb[2] = (u8) (disk_block >> 56);
4624283b4a9bSStephen M. Cameron 		cdb[3] = (u8) (disk_block >> 48);
4625283b4a9bSStephen M. Cameron 		cdb[4] = (u8) (disk_block >> 40);
4626283b4a9bSStephen M. Cameron 		cdb[5] = (u8) (disk_block >> 32);
4627283b4a9bSStephen M. Cameron 		cdb[6] = (u8) (disk_block >> 24);
4628283b4a9bSStephen M. Cameron 		cdb[7] = (u8) (disk_block >> 16);
4629283b4a9bSStephen M. Cameron 		cdb[8] = (u8) (disk_block >> 8);
4630283b4a9bSStephen M. Cameron 		cdb[9] = (u8) (disk_block);
4631283b4a9bSStephen M. Cameron 		cdb[10] = (u8) (disk_block_cnt >> 24);
4632283b4a9bSStephen M. Cameron 		cdb[11] = (u8) (disk_block_cnt >> 16);
4633283b4a9bSStephen M. Cameron 		cdb[12] = (u8) (disk_block_cnt >> 8);
4634283b4a9bSStephen M. Cameron 		cdb[13] = (u8) (disk_block_cnt);
4635283b4a9bSStephen M. Cameron 		cdb[14] = 0;
4636283b4a9bSStephen M. Cameron 		cdb[15] = 0;
4637283b4a9bSStephen M. Cameron 		cdb_len = 16;
4638283b4a9bSStephen M. Cameron 	} else {
4639283b4a9bSStephen M. Cameron 		cdb[0] = is_write ? WRITE_10 : READ_10;
4640283b4a9bSStephen M. Cameron 		cdb[1] = 0;
4641283b4a9bSStephen M. Cameron 		cdb[2] = (u8) (disk_block >> 24);
4642283b4a9bSStephen M. Cameron 		cdb[3] = (u8) (disk_block >> 16);
4643283b4a9bSStephen M. Cameron 		cdb[4] = (u8) (disk_block >> 8);
4644283b4a9bSStephen M. Cameron 		cdb[5] = (u8) (disk_block);
4645283b4a9bSStephen M. Cameron 		cdb[6] = 0;
4646283b4a9bSStephen M. Cameron 		cdb[7] = (u8) (disk_block_cnt >> 8);
4647283b4a9bSStephen M. Cameron 		cdb[8] = (u8) (disk_block_cnt);
4648283b4a9bSStephen M. Cameron 		cdb[9] = 0;
4649283b4a9bSStephen M. Cameron 		cdb_len = 10;
4650283b4a9bSStephen M. Cameron 	}
4651283b4a9bSStephen M. Cameron 	return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len,
465203383736SDon Brace 						dev->scsi3addr,
465303383736SDon Brace 						dev->phys_disk[map_index]);
4654283b4a9bSStephen M. Cameron }
4655283b4a9bSStephen M. Cameron 
465625163bd5SWebb Scales /*
465725163bd5SWebb Scales  * Submit commands down the "normal" RAID stack path
465825163bd5SWebb Scales  * All callers to hpsa_ciss_submit must check lockup_detected
465925163bd5SWebb Scales  * beforehand, before (opt.) and after calling cmd_alloc
466025163bd5SWebb Scales  */
4661574f05d3SStephen Cameron static int hpsa_ciss_submit(struct ctlr_info *h,
4662574f05d3SStephen Cameron 	struct CommandList *c, struct scsi_cmnd *cmd,
4663574f05d3SStephen Cameron 	unsigned char scsi3addr[])
4664edd16368SStephen M. Cameron {
4665edd16368SStephen M. Cameron 	cmd->host_scribble = (unsigned char *) c;
4666edd16368SStephen M. Cameron 	c->cmd_type = CMD_SCSI;
4667edd16368SStephen M. Cameron 	c->scsi_cmd = cmd;
4668edd16368SStephen M. Cameron 	c->Header.ReplyQueue = 0;  /* unused in simple mode */
4669edd16368SStephen M. Cameron 	memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8);
4670f2405db8SDon Brace 	c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT));
4671edd16368SStephen M. Cameron 
4672edd16368SStephen M. Cameron 	/* Fill in the request block... */
4673edd16368SStephen M. Cameron 
4674edd16368SStephen M. Cameron 	c->Request.Timeout = 0;
4675edd16368SStephen M. Cameron 	BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB));
4676edd16368SStephen M. Cameron 	c->Request.CDBLen = cmd->cmd_len;
4677edd16368SStephen M. Cameron 	memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len);
4678edd16368SStephen M. Cameron 	switch (cmd->sc_data_direction) {
4679edd16368SStephen M. Cameron 	case DMA_TO_DEVICE:
4680a505b86fSStephen M. Cameron 		c->Request.type_attr_dir =
4681a505b86fSStephen M. Cameron 			TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE);
4682edd16368SStephen M. Cameron 		break;
4683edd16368SStephen M. Cameron 	case DMA_FROM_DEVICE:
4684a505b86fSStephen M. Cameron 		c->Request.type_attr_dir =
4685a505b86fSStephen M. Cameron 			TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ);
4686edd16368SStephen M. Cameron 		break;
4687edd16368SStephen M. Cameron 	case DMA_NONE:
4688a505b86fSStephen M. Cameron 		c->Request.type_attr_dir =
4689a505b86fSStephen M. Cameron 			TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE);
4690edd16368SStephen M. Cameron 		break;
4691edd16368SStephen M. Cameron 	case DMA_BIDIRECTIONAL:
4692edd16368SStephen M. Cameron 		/* This can happen if a buggy application does a scsi passthru
4693edd16368SStephen M. Cameron 		 * and sets both inlen and outlen to non-zero. ( see
4694edd16368SStephen M. Cameron 		 * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() )
4695edd16368SStephen M. Cameron 		 */
4696edd16368SStephen M. Cameron 
4697a505b86fSStephen M. Cameron 		c->Request.type_attr_dir =
4698a505b86fSStephen M. Cameron 			TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD);
4699edd16368SStephen M. Cameron 		/* This is technically wrong, and hpsa controllers should
4700edd16368SStephen M. Cameron 		 * reject it with CMD_INVALID, which is the most correct
4701edd16368SStephen M. Cameron 		 * response, but non-fibre backends appear to let it
4702edd16368SStephen M. Cameron 		 * slide by, and give the same results as if this field
4703edd16368SStephen M. Cameron 		 * were set correctly.  Either way is acceptable for
4704edd16368SStephen M. Cameron 		 * our purposes here.
4705edd16368SStephen M. Cameron 		 */
4706edd16368SStephen M. Cameron 
4707edd16368SStephen M. Cameron 		break;
4708edd16368SStephen M. Cameron 
4709edd16368SStephen M. Cameron 	default:
4710edd16368SStephen M. Cameron 		dev_err(&h->pdev->dev, "unknown data direction: %d\n",
4711edd16368SStephen M. Cameron 			cmd->sc_data_direction);
4712edd16368SStephen M. Cameron 		BUG();
4713edd16368SStephen M. Cameron 		break;
4714edd16368SStephen M. Cameron 	}
4715edd16368SStephen M. Cameron 
471633a2ffceSStephen M. Cameron 	if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */
471773153fe5SWebb Scales 		hpsa_cmd_resolve_and_free(h, c);
4718edd16368SStephen M. Cameron 		return SCSI_MLQUEUE_HOST_BUSY;
4719edd16368SStephen M. Cameron 	}
4720edd16368SStephen M. Cameron 	enqueue_cmd_and_start_io(h, c);
4721edd16368SStephen M. Cameron 	/* the cmd'll come back via intr handler in complete_scsi_command()  */
4722edd16368SStephen M. Cameron 	return 0;
4723edd16368SStephen M. Cameron }
4724edd16368SStephen M. Cameron 
4725360c73bdSStephen Cameron static void hpsa_cmd_init(struct ctlr_info *h, int index,
4726360c73bdSStephen Cameron 				struct CommandList *c)
4727360c73bdSStephen Cameron {
4728360c73bdSStephen Cameron 	dma_addr_t cmd_dma_handle, err_dma_handle;
4729360c73bdSStephen Cameron 
4730360c73bdSStephen Cameron 	/* Zero out all of commandlist except the last field, refcount */
4731360c73bdSStephen Cameron 	memset(c, 0, offsetof(struct CommandList, refcount));
4732360c73bdSStephen Cameron 	c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT));
4733360c73bdSStephen Cameron 	cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4734360c73bdSStephen Cameron 	c->err_info = h->errinfo_pool + index;
4735360c73bdSStephen Cameron 	memset(c->err_info, 0, sizeof(*c->err_info));
4736360c73bdSStephen Cameron 	err_dma_handle = h->errinfo_pool_dhandle
4737360c73bdSStephen Cameron 	    + index * sizeof(*c->err_info);
4738360c73bdSStephen Cameron 	c->cmdindex = index;
4739360c73bdSStephen Cameron 	c->busaddr = (u32) cmd_dma_handle;
4740360c73bdSStephen Cameron 	c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle);
4741360c73bdSStephen Cameron 	c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info));
4742360c73bdSStephen Cameron 	c->h = h;
4743a58e7e53SWebb Scales 	c->scsi_cmd = SCSI_CMD_IDLE;
4744360c73bdSStephen Cameron }
4745360c73bdSStephen Cameron 
4746360c73bdSStephen Cameron static void hpsa_preinitialize_commands(struct ctlr_info *h)
4747360c73bdSStephen Cameron {
4748360c73bdSStephen Cameron 	int i;
4749360c73bdSStephen Cameron 
4750360c73bdSStephen Cameron 	for (i = 0; i < h->nr_cmds; i++) {
4751360c73bdSStephen Cameron 		struct CommandList *c = h->cmd_pool + i;
4752360c73bdSStephen Cameron 
4753360c73bdSStephen Cameron 		hpsa_cmd_init(h, i, c);
4754360c73bdSStephen Cameron 		atomic_set(&c->refcount, 0);
4755360c73bdSStephen Cameron 	}
4756360c73bdSStephen Cameron }
4757360c73bdSStephen Cameron 
4758360c73bdSStephen Cameron static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index,
4759360c73bdSStephen Cameron 				struct CommandList *c)
4760360c73bdSStephen Cameron {
4761360c73bdSStephen Cameron 	dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c);
4762360c73bdSStephen Cameron 
476373153fe5SWebb Scales 	BUG_ON(c->cmdindex != index);
476473153fe5SWebb Scales 
4765360c73bdSStephen Cameron 	memset(c->Request.CDB, 0, sizeof(c->Request.CDB));
4766360c73bdSStephen Cameron 	memset(c->err_info, 0, sizeof(*c->err_info));
4767360c73bdSStephen Cameron 	c->busaddr = (u32) cmd_dma_handle;
4768360c73bdSStephen Cameron }
4769360c73bdSStephen Cameron 
4770592a0ad5SWebb Scales static int hpsa_ioaccel_submit(struct ctlr_info *h,
4771592a0ad5SWebb Scales 		struct CommandList *c, struct scsi_cmnd *cmd,
4772592a0ad5SWebb Scales 		unsigned char *scsi3addr)
4773592a0ad5SWebb Scales {
4774592a0ad5SWebb Scales 	struct hpsa_scsi_dev_t *dev = cmd->device->hostdata;
4775592a0ad5SWebb Scales 	int rc = IO_ACCEL_INELIGIBLE;
4776592a0ad5SWebb Scales 
4777592a0ad5SWebb Scales 	cmd->host_scribble = (unsigned char *) c;
4778592a0ad5SWebb Scales 
4779592a0ad5SWebb Scales 	if (dev->offload_enabled) {
4780592a0ad5SWebb Scales 		hpsa_cmd_init(h, c->cmdindex, c);
4781592a0ad5SWebb Scales 		c->cmd_type = CMD_SCSI;
4782592a0ad5SWebb Scales 		c->scsi_cmd = cmd;
4783592a0ad5SWebb Scales 		rc = hpsa_scsi_ioaccel_raid_map(h, c);
4784592a0ad5SWebb Scales 		if (rc < 0)     /* scsi_dma_map failed. */
4785592a0ad5SWebb Scales 			rc = SCSI_MLQUEUE_HOST_BUSY;
4786a3144e0bSJoe Handzik 	} else if (dev->hba_ioaccel_enabled) {
4787592a0ad5SWebb Scales 		hpsa_cmd_init(h, c->cmdindex, c);
4788592a0ad5SWebb Scales 		c->cmd_type = CMD_SCSI;
4789592a0ad5SWebb Scales 		c->scsi_cmd = cmd;
4790592a0ad5SWebb Scales 		rc = hpsa_scsi_ioaccel_direct_map(h, c);
4791592a0ad5SWebb Scales 		if (rc < 0)     /* scsi_dma_map failed. */
4792592a0ad5SWebb Scales 			rc = SCSI_MLQUEUE_HOST_BUSY;
4793592a0ad5SWebb Scales 	}
4794592a0ad5SWebb Scales 	return rc;
4795592a0ad5SWebb Scales }
4796592a0ad5SWebb Scales 
4797080ef1ccSDon Brace static void hpsa_command_resubmit_worker(struct work_struct *work)
4798080ef1ccSDon Brace {
4799080ef1ccSDon Brace 	struct scsi_cmnd *cmd;
4800080ef1ccSDon Brace 	struct hpsa_scsi_dev_t *dev;
48018a0ff92cSWebb Scales 	struct CommandList *c = container_of(work, struct CommandList, work);
4802080ef1ccSDon Brace 
4803080ef1ccSDon Brace 	cmd = c->scsi_cmd;
4804080ef1ccSDon Brace 	dev = cmd->device->hostdata;
4805080ef1ccSDon Brace 	if (!dev) {
4806080ef1ccSDon Brace 		cmd->result = DID_NO_CONNECT << 16;
48078a0ff92cSWebb Scales 		return hpsa_cmd_free_and_done(c->h, c, cmd);
4808080ef1ccSDon Brace 	}
4809d604f533SWebb Scales 	if (c->reset_pending)
4810d604f533SWebb Scales 		return hpsa_cmd_resolve_and_free(c->h, c);
4811a58e7e53SWebb Scales 	if (c->abort_pending)
4812a58e7e53SWebb Scales 		return hpsa_cmd_abort_and_free(c->h, c, cmd);
4813592a0ad5SWebb Scales 	if (c->cmd_type == CMD_IOACCEL2) {
4814592a0ad5SWebb Scales 		struct ctlr_info *h = c->h;
4815592a0ad5SWebb Scales 		struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
4816592a0ad5SWebb Scales 		int rc;
4817592a0ad5SWebb Scales 
4818592a0ad5SWebb Scales 		if (c2->error_data.serv_response ==
4819592a0ad5SWebb Scales 				IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) {
4820592a0ad5SWebb Scales 			rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr);
4821592a0ad5SWebb Scales 			if (rc == 0)
4822592a0ad5SWebb Scales 				return;
4823592a0ad5SWebb Scales 			if (rc == SCSI_MLQUEUE_HOST_BUSY) {
4824592a0ad5SWebb Scales 				/*
4825592a0ad5SWebb Scales 				 * If we get here, it means dma mapping failed.
4826592a0ad5SWebb Scales 				 * Try again via scsi mid layer, which will
4827592a0ad5SWebb Scales 				 * then get SCSI_MLQUEUE_HOST_BUSY.
4828592a0ad5SWebb Scales 				 */
4829592a0ad5SWebb Scales 				cmd->result = DID_IMM_RETRY << 16;
48308a0ff92cSWebb Scales 				return hpsa_cmd_free_and_done(h, c, cmd);
4831592a0ad5SWebb Scales 			}
4832592a0ad5SWebb Scales 			/* else, fall thru and resubmit down CISS path */
4833592a0ad5SWebb Scales 		}
4834592a0ad5SWebb Scales 	}
4835360c73bdSStephen Cameron 	hpsa_cmd_partial_init(c->h, c->cmdindex, c);
4836080ef1ccSDon Brace 	if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) {
4837080ef1ccSDon Brace 		/*
4838080ef1ccSDon Brace 		 * If we get here, it means dma mapping failed. Try
4839080ef1ccSDon Brace 		 * again via scsi mid layer, which will then get
4840080ef1ccSDon Brace 		 * SCSI_MLQUEUE_HOST_BUSY.
4841592a0ad5SWebb Scales 		 *
4842592a0ad5SWebb Scales 		 * hpsa_ciss_submit will have already freed c
4843592a0ad5SWebb Scales 		 * if it encountered a dma mapping failure.
4844080ef1ccSDon Brace 		 */
4845080ef1ccSDon Brace 		cmd->result = DID_IMM_RETRY << 16;
4846080ef1ccSDon Brace 		cmd->scsi_done(cmd);
4847080ef1ccSDon Brace 	}
4848080ef1ccSDon Brace }
4849080ef1ccSDon Brace 
4850574f05d3SStephen Cameron /* Running in struct Scsi_Host->host_lock less mode */
4851574f05d3SStephen Cameron static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd)
4852574f05d3SStephen Cameron {
4853574f05d3SStephen Cameron 	struct ctlr_info *h;
4854574f05d3SStephen Cameron 	struct hpsa_scsi_dev_t *dev;
4855574f05d3SStephen Cameron 	unsigned char scsi3addr[8];
4856574f05d3SStephen Cameron 	struct CommandList *c;
4857574f05d3SStephen Cameron 	int rc = 0;
4858574f05d3SStephen Cameron 
4859574f05d3SStephen Cameron 	/* Get the ptr to our adapter structure out of cmd->host. */
4860574f05d3SStephen Cameron 	h = sdev_to_hba(cmd->device);
486173153fe5SWebb Scales 
486273153fe5SWebb Scales 	BUG_ON(cmd->request->tag < 0);
486373153fe5SWebb Scales 
4864574f05d3SStephen Cameron 	dev = cmd->device->hostdata;
4865574f05d3SStephen Cameron 	if (!dev) {
4866574f05d3SStephen Cameron 		cmd->result = DID_NO_CONNECT << 16;
4867574f05d3SStephen Cameron 		cmd->scsi_done(cmd);
4868574f05d3SStephen Cameron 		return 0;
4869574f05d3SStephen Cameron 	}
487073153fe5SWebb Scales 
4871574f05d3SStephen Cameron 	memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr));
4872574f05d3SStephen Cameron 
4873574f05d3SStephen Cameron 	if (unlikely(lockup_detected(h))) {
487425163bd5SWebb Scales 		cmd->result = DID_NO_CONNECT << 16;
4875574f05d3SStephen Cameron 		cmd->scsi_done(cmd);
4876574f05d3SStephen Cameron 		return 0;
4877574f05d3SStephen Cameron 	}
487873153fe5SWebb Scales 	c = cmd_tagged_alloc(h, cmd);
4879574f05d3SStephen Cameron 
4880407863cbSStephen Cameron 	/*
4881407863cbSStephen Cameron 	 * Call alternate submit routine for I/O accelerated commands.
4882574f05d3SStephen Cameron 	 * Retries always go down the normal I/O path.
4883574f05d3SStephen Cameron 	 */
4884574f05d3SStephen Cameron 	if (likely(cmd->retries == 0 &&
4885574f05d3SStephen Cameron 		cmd->request->cmd_type == REQ_TYPE_FS &&
4886574f05d3SStephen Cameron 		h->acciopath_status)) {
4887592a0ad5SWebb Scales 		rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr);
4888574f05d3SStephen Cameron 		if (rc == 0)
4889592a0ad5SWebb Scales 			return 0;
4890592a0ad5SWebb Scales 		if (rc == SCSI_MLQUEUE_HOST_BUSY) {
489173153fe5SWebb Scales 			hpsa_cmd_resolve_and_free(h, c);
4892574f05d3SStephen Cameron 			return SCSI_MLQUEUE_HOST_BUSY;
4893574f05d3SStephen Cameron 		}
4894574f05d3SStephen Cameron 	}
4895574f05d3SStephen Cameron 	return hpsa_ciss_submit(h, c, cmd, scsi3addr);
4896574f05d3SStephen Cameron }
4897574f05d3SStephen Cameron 
48988ebc9248SWebb Scales static void hpsa_scan_complete(struct ctlr_info *h)
48995f389360SStephen M. Cameron {
49005f389360SStephen M. Cameron 	unsigned long flags;
49015f389360SStephen M. Cameron 
49025f389360SStephen M. Cameron 	spin_lock_irqsave(&h->scan_lock, flags);
49035f389360SStephen M. Cameron 	h->scan_finished = 1;
49045f389360SStephen M. Cameron 	wake_up_all(&h->scan_wait_queue);
49055f389360SStephen M. Cameron 	spin_unlock_irqrestore(&h->scan_lock, flags);
49065f389360SStephen M. Cameron }
49075f389360SStephen M. Cameron 
4908a08a8471SStephen M. Cameron static void hpsa_scan_start(struct Scsi_Host *sh)
4909a08a8471SStephen M. Cameron {
4910a08a8471SStephen M. Cameron 	struct ctlr_info *h = shost_to_hba(sh);
4911a08a8471SStephen M. Cameron 	unsigned long flags;
4912a08a8471SStephen M. Cameron 
49138ebc9248SWebb Scales 	/*
49148ebc9248SWebb Scales 	 * Don't let rescans be initiated on a controller known to be locked
49158ebc9248SWebb Scales 	 * up.  If the controller locks up *during* a rescan, that thread is
49168ebc9248SWebb Scales 	 * probably hosed, but at least we can prevent new rescan threads from
49178ebc9248SWebb Scales 	 * piling up on a locked up controller.
49188ebc9248SWebb Scales 	 */
49198ebc9248SWebb Scales 	if (unlikely(lockup_detected(h)))
49208ebc9248SWebb Scales 		return hpsa_scan_complete(h);
49215f389360SStephen M. Cameron 
4922a08a8471SStephen M. Cameron 	/* wait until any scan already in progress is finished. */
4923a08a8471SStephen M. Cameron 	while (1) {
4924a08a8471SStephen M. Cameron 		spin_lock_irqsave(&h->scan_lock, flags);
4925a08a8471SStephen M. Cameron 		if (h->scan_finished)
4926a08a8471SStephen M. Cameron 			break;
4927a08a8471SStephen M. Cameron 		spin_unlock_irqrestore(&h->scan_lock, flags);
4928a08a8471SStephen M. Cameron 		wait_event(h->scan_wait_queue, h->scan_finished);
4929a08a8471SStephen M. Cameron 		/* Note: We don't need to worry about a race between this
4930a08a8471SStephen M. Cameron 		 * thread and driver unload because the midlayer will
4931a08a8471SStephen M. Cameron 		 * have incremented the reference count, so unload won't
4932a08a8471SStephen M. Cameron 		 * happen if we're in here.
4933a08a8471SStephen M. Cameron 		 */
4934a08a8471SStephen M. Cameron 	}
4935a08a8471SStephen M. Cameron 	h->scan_finished = 0; /* mark scan as in progress */
4936a08a8471SStephen M. Cameron 	spin_unlock_irqrestore(&h->scan_lock, flags);
4937a08a8471SStephen M. Cameron 
49388ebc9248SWebb Scales 	if (unlikely(lockup_detected(h)))
49398ebc9248SWebb Scales 		return hpsa_scan_complete(h);
49405f389360SStephen M. Cameron 
4941a08a8471SStephen M. Cameron 	hpsa_update_scsi_devices(h, h->scsi_host->host_no);
4942a08a8471SStephen M. Cameron 
49438ebc9248SWebb Scales 	hpsa_scan_complete(h);
4944a08a8471SStephen M. Cameron }
4945a08a8471SStephen M. Cameron 
49467c0a0229SDon Brace static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth)
49477c0a0229SDon Brace {
494803383736SDon Brace 	struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata;
494903383736SDon Brace 
495003383736SDon Brace 	if (!logical_drive)
495103383736SDon Brace 		return -ENODEV;
49527c0a0229SDon Brace 
49537c0a0229SDon Brace 	if (qdepth < 1)
49547c0a0229SDon Brace 		qdepth = 1;
495503383736SDon Brace 	else if (qdepth > logical_drive->queue_depth)
495603383736SDon Brace 		qdepth = logical_drive->queue_depth;
495703383736SDon Brace 
495803383736SDon Brace 	return scsi_change_queue_depth(sdev, qdepth);
49597c0a0229SDon Brace }
49607c0a0229SDon Brace 
4961a08a8471SStephen M. Cameron static int hpsa_scan_finished(struct Scsi_Host *sh,
4962a08a8471SStephen M. Cameron 	unsigned long elapsed_time)
4963a08a8471SStephen M. Cameron {
4964a08a8471SStephen M. Cameron 	struct ctlr_info *h = shost_to_hba(sh);
4965a08a8471SStephen M. Cameron 	unsigned long flags;
4966a08a8471SStephen M. Cameron 	int finished;
4967a08a8471SStephen M. Cameron 
4968a08a8471SStephen M. Cameron 	spin_lock_irqsave(&h->scan_lock, flags);
4969a08a8471SStephen M. Cameron 	finished = h->scan_finished;
4970a08a8471SStephen M. Cameron 	spin_unlock_irqrestore(&h->scan_lock, flags);
4971a08a8471SStephen M. Cameron 	return finished;
4972a08a8471SStephen M. Cameron }
4973a08a8471SStephen M. Cameron 
49742946e82bSRobert Elliott static int hpsa_scsi_host_alloc(struct ctlr_info *h)
4975edd16368SStephen M. Cameron {
4976b705690dSStephen M. Cameron 	struct Scsi_Host *sh;
4977b705690dSStephen M. Cameron 	int error;
4978edd16368SStephen M. Cameron 
4979b705690dSStephen M. Cameron 	sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h));
49802946e82bSRobert Elliott 	if (sh == NULL) {
49812946e82bSRobert Elliott 		dev_err(&h->pdev->dev, "scsi_host_alloc failed\n");
49822946e82bSRobert Elliott 		return -ENOMEM;
49832946e82bSRobert Elliott 	}
4984b705690dSStephen M. Cameron 
4985b705690dSStephen M. Cameron 	sh->io_port = 0;
4986b705690dSStephen M. Cameron 	sh->n_io_port = 0;
4987b705690dSStephen M. Cameron 	sh->this_id = -1;
4988b705690dSStephen M. Cameron 	sh->max_channel = 3;
4989b705690dSStephen M. Cameron 	sh->max_cmd_len = MAX_COMMAND_SIZE;
4990b705690dSStephen M. Cameron 	sh->max_lun = HPSA_MAX_LUN;
4991b705690dSStephen M. Cameron 	sh->max_id = HPSA_MAX_LUN;
499241ce4c35SStephen Cameron 	sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS;
4993d54c5c24SStephen Cameron 	sh->cmd_per_lun = sh->can_queue;
4994b705690dSStephen M. Cameron 	sh->sg_tablesize = h->maxsgentries;
4995b705690dSStephen M. Cameron 	sh->hostdata[0] = (unsigned long) h;
4996b705690dSStephen M. Cameron 	sh->irq = h->intr[h->intr_mode];
4997b705690dSStephen M. Cameron 	sh->unique_id = sh->irq;
499873153fe5SWebb Scales 	error = scsi_init_shared_tag_map(sh, sh->can_queue);
499973153fe5SWebb Scales 	if (error) {
500073153fe5SWebb Scales 		dev_err(&h->pdev->dev,
500173153fe5SWebb Scales 			"%s: scsi_init_shared_tag_map failed for controller %d\n",
500273153fe5SWebb Scales 			__func__, h->ctlr);
5003b705690dSStephen M. Cameron 			scsi_host_put(sh);
5004b705690dSStephen M. Cameron 			return error;
50052946e82bSRobert Elliott 	}
50062946e82bSRobert Elliott 	h->scsi_host = sh;
50072946e82bSRobert Elliott 	return 0;
50082946e82bSRobert Elliott }
50092946e82bSRobert Elliott 
50102946e82bSRobert Elliott static int hpsa_scsi_add_host(struct ctlr_info *h)
50112946e82bSRobert Elliott {
50122946e82bSRobert Elliott 	int rv;
50132946e82bSRobert Elliott 
50142946e82bSRobert Elliott 	rv = scsi_add_host(h->scsi_host, &h->pdev->dev);
50152946e82bSRobert Elliott 	if (rv) {
50162946e82bSRobert Elliott 		dev_err(&h->pdev->dev, "scsi_add_host failed\n");
50172946e82bSRobert Elliott 		return rv;
50182946e82bSRobert Elliott 	}
50192946e82bSRobert Elliott 	scsi_scan_host(h->scsi_host);
50202946e82bSRobert Elliott 	return 0;
5021edd16368SStephen M. Cameron }
5022edd16368SStephen M. Cameron 
5023b69324ffSWebb Scales /*
502473153fe5SWebb Scales  * The block layer has already gone to the trouble of picking out a unique,
502573153fe5SWebb Scales  * small-integer tag for this request.  We use an offset from that value as
502673153fe5SWebb Scales  * an index to select our command block.  (The offset allows us to reserve the
502773153fe5SWebb Scales  * low-numbered entries for our own uses.)
502873153fe5SWebb Scales  */
502973153fe5SWebb Scales static int hpsa_get_cmd_index(struct scsi_cmnd *scmd)
503073153fe5SWebb Scales {
503173153fe5SWebb Scales 	int idx = scmd->request->tag;
503273153fe5SWebb Scales 
503373153fe5SWebb Scales 	if (idx < 0)
503473153fe5SWebb Scales 		return idx;
503573153fe5SWebb Scales 
503673153fe5SWebb Scales 	/* Offset to leave space for internal cmds. */
503773153fe5SWebb Scales 	return idx += HPSA_NRESERVED_CMDS;
503873153fe5SWebb Scales }
503973153fe5SWebb Scales 
504073153fe5SWebb Scales /*
5041b69324ffSWebb Scales  * Send a TEST_UNIT_READY command to the specified LUN using the specified
5042b69324ffSWebb Scales  * reply queue; returns zero if the unit is ready, and non-zero otherwise.
5043b69324ffSWebb Scales  */
5044b69324ffSWebb Scales static int hpsa_send_test_unit_ready(struct ctlr_info *h,
5045b69324ffSWebb Scales 				struct CommandList *c, unsigned char lunaddr[],
5046b69324ffSWebb Scales 				int reply_queue)
5047edd16368SStephen M. Cameron {
50488919358eSTomas Henzl 	int rc;
5049edd16368SStephen M. Cameron 
5050a2dac136SStephen M. Cameron 	/* Send the Test Unit Ready, fill_cmd can't fail, no mapping */
5051a2dac136SStephen M. Cameron 	(void) fill_cmd(c, TEST_UNIT_READY, h,
5052a2dac136SStephen M. Cameron 			NULL, 0, 0, lunaddr, TYPE_CMD);
5053b69324ffSWebb Scales 	rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
505425163bd5SWebb Scales 	if (rc)
5055b69324ffSWebb Scales 		return rc;
5056edd16368SStephen M. Cameron 	/* no unmap needed here because no data xfer. */
5057edd16368SStephen M. Cameron 
5058b69324ffSWebb Scales 	/* Check if the unit is already ready. */
5059edd16368SStephen M. Cameron 	if (c->err_info->CommandStatus == CMD_SUCCESS)
5060b69324ffSWebb Scales 		return 0;
5061edd16368SStephen M. Cameron 
5062b69324ffSWebb Scales 	/*
5063b69324ffSWebb Scales 	 * The first command sent after reset will receive "unit attention" to
5064b69324ffSWebb Scales 	 * indicate that the LUN has been reset...this is actually what we're
5065b69324ffSWebb Scales 	 * looking for (but, success is good too).
5066b69324ffSWebb Scales 	 */
5067edd16368SStephen M. Cameron 	if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
5068edd16368SStephen M. Cameron 		c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION &&
5069edd16368SStephen M. Cameron 			(c->err_info->SenseInfo[2] == NO_SENSE ||
5070edd16368SStephen M. Cameron 			 c->err_info->SenseInfo[2] == UNIT_ATTENTION))
5071b69324ffSWebb Scales 		return 0;
5072b69324ffSWebb Scales 
5073b69324ffSWebb Scales 	return 1;
5074b69324ffSWebb Scales }
5075b69324ffSWebb Scales 
5076b69324ffSWebb Scales /*
5077b69324ffSWebb Scales  * Wait for a TEST_UNIT_READY command to complete, retrying as necessary;
5078b69324ffSWebb Scales  * returns zero when the unit is ready, and non-zero when giving up.
5079b69324ffSWebb Scales  */
5080b69324ffSWebb Scales static int hpsa_wait_for_test_unit_ready(struct ctlr_info *h,
5081b69324ffSWebb Scales 				struct CommandList *c,
5082b69324ffSWebb Scales 				unsigned char lunaddr[], int reply_queue)
5083b69324ffSWebb Scales {
5084b69324ffSWebb Scales 	int rc;
5085b69324ffSWebb Scales 	int count = 0;
5086b69324ffSWebb Scales 	int waittime = 1; /* seconds */
5087b69324ffSWebb Scales 
5088b69324ffSWebb Scales 	/* Send test unit ready until device ready, or give up. */
5089b69324ffSWebb Scales 	for (count = 0; count < HPSA_TUR_RETRY_LIMIT; count++) {
5090b69324ffSWebb Scales 
5091b69324ffSWebb Scales 		/*
5092b69324ffSWebb Scales 		 * Wait for a bit.  do this first, because if we send
5093b69324ffSWebb Scales 		 * the TUR right away, the reset will just abort it.
5094b69324ffSWebb Scales 		 */
5095b69324ffSWebb Scales 		msleep(1000 * waittime);
5096b69324ffSWebb Scales 
5097b69324ffSWebb Scales 		rc = hpsa_send_test_unit_ready(h, c, lunaddr, reply_queue);
5098b69324ffSWebb Scales 		if (!rc)
5099edd16368SStephen M. Cameron 			break;
5100b69324ffSWebb Scales 
5101b69324ffSWebb Scales 		/* Increase wait time with each try, up to a point. */
5102b69324ffSWebb Scales 		if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS)
5103b69324ffSWebb Scales 			waittime *= 2;
5104b69324ffSWebb Scales 
5105b69324ffSWebb Scales 		dev_warn(&h->pdev->dev,
5106b69324ffSWebb Scales 			 "waiting %d secs for device to become ready.\n",
5107b69324ffSWebb Scales 			 waittime);
5108b69324ffSWebb Scales 	}
5109b69324ffSWebb Scales 
5110b69324ffSWebb Scales 	return rc;
5111b69324ffSWebb Scales }
5112b69324ffSWebb Scales 
5113b69324ffSWebb Scales static int wait_for_device_to_become_ready(struct ctlr_info *h,
5114b69324ffSWebb Scales 					   unsigned char lunaddr[],
5115b69324ffSWebb Scales 					   int reply_queue)
5116b69324ffSWebb Scales {
5117b69324ffSWebb Scales 	int first_queue;
5118b69324ffSWebb Scales 	int last_queue;
5119b69324ffSWebb Scales 	int rq;
5120b69324ffSWebb Scales 	int rc = 0;
5121b69324ffSWebb Scales 	struct CommandList *c;
5122b69324ffSWebb Scales 
5123b69324ffSWebb Scales 	c = cmd_alloc(h);
5124b69324ffSWebb Scales 
5125b69324ffSWebb Scales 	/*
5126b69324ffSWebb Scales 	 * If no specific reply queue was requested, then send the TUR
5127b69324ffSWebb Scales 	 * repeatedly, requesting a reply on each reply queue; otherwise execute
5128b69324ffSWebb Scales 	 * the loop exactly once using only the specified queue.
5129b69324ffSWebb Scales 	 */
5130b69324ffSWebb Scales 	if (reply_queue == DEFAULT_REPLY_QUEUE) {
5131b69324ffSWebb Scales 		first_queue = 0;
5132b69324ffSWebb Scales 		last_queue = h->nreply_queues - 1;
5133b69324ffSWebb Scales 	} else {
5134b69324ffSWebb Scales 		first_queue = reply_queue;
5135b69324ffSWebb Scales 		last_queue = reply_queue;
5136b69324ffSWebb Scales 	}
5137b69324ffSWebb Scales 
5138b69324ffSWebb Scales 	for (rq = first_queue; rq <= last_queue; rq++) {
5139b69324ffSWebb Scales 		rc = hpsa_wait_for_test_unit_ready(h, c, lunaddr, rq);
5140b69324ffSWebb Scales 		if (rc)
5141b69324ffSWebb Scales 			break;
5142edd16368SStephen M. Cameron 	}
5143edd16368SStephen M. Cameron 
5144edd16368SStephen M. Cameron 	if (rc)
5145edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev, "giving up on device.\n");
5146edd16368SStephen M. Cameron 	else
5147edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev, "device is ready.\n");
5148edd16368SStephen M. Cameron 
514945fcb86eSStephen Cameron 	cmd_free(h, c);
5150edd16368SStephen M. Cameron 	return rc;
5151edd16368SStephen M. Cameron }
5152edd16368SStephen M. Cameron 
5153edd16368SStephen M. Cameron /* Need at least one of these error handlers to keep ../scsi/hosts.c from
5154edd16368SStephen M. Cameron  * complaining.  Doing a host- or bus-reset can't do anything good here.
5155edd16368SStephen M. Cameron  */
5156edd16368SStephen M. Cameron static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd)
5157edd16368SStephen M. Cameron {
5158edd16368SStephen M. Cameron 	int rc;
5159edd16368SStephen M. Cameron 	struct ctlr_info *h;
5160edd16368SStephen M. Cameron 	struct hpsa_scsi_dev_t *dev;
51612dc127bbSDan Carpenter 	char msg[48];
5162edd16368SStephen M. Cameron 
5163edd16368SStephen M. Cameron 	/* find the controller to which the command to be aborted was sent */
5164edd16368SStephen M. Cameron 	h = sdev_to_hba(scsicmd->device);
5165edd16368SStephen M. Cameron 	if (h == NULL) /* paranoia */
5166edd16368SStephen M. Cameron 		return FAILED;
5167e345893bSDon Brace 
5168e345893bSDon Brace 	if (lockup_detected(h))
5169e345893bSDon Brace 		return FAILED;
5170e345893bSDon Brace 
5171edd16368SStephen M. Cameron 	dev = scsicmd->device->hostdata;
5172edd16368SStephen M. Cameron 	if (!dev) {
5173d604f533SWebb Scales 		dev_err(&h->pdev->dev, "%s: device lookup failed\n", __func__);
5174edd16368SStephen M. Cameron 		return FAILED;
5175edd16368SStephen M. Cameron 	}
517625163bd5SWebb Scales 
517725163bd5SWebb Scales 	/* if controller locked up, we can guarantee command won't complete */
517825163bd5SWebb Scales 	if (lockup_detected(h)) {
51792dc127bbSDan Carpenter 		snprintf(msg, sizeof(msg),
51802dc127bbSDan Carpenter 			 "cmd %d RESET FAILED, lockup detected",
518173153fe5SWebb Scales 			 hpsa_get_cmd_index(scsicmd));
518273153fe5SWebb Scales 		hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
518325163bd5SWebb Scales 		return FAILED;
518425163bd5SWebb Scales 	}
518525163bd5SWebb Scales 
518625163bd5SWebb Scales 	/* this reset request might be the result of a lockup; check */
518725163bd5SWebb Scales 	if (detect_controller_lockup(h)) {
51882dc127bbSDan Carpenter 		snprintf(msg, sizeof(msg),
51892dc127bbSDan Carpenter 			 "cmd %d RESET FAILED, new lockup detected",
519073153fe5SWebb Scales 			 hpsa_get_cmd_index(scsicmd));
519173153fe5SWebb Scales 		hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
519225163bd5SWebb Scales 		return FAILED;
519325163bd5SWebb Scales 	}
519425163bd5SWebb Scales 
5195d604f533SWebb Scales 	/* Do not attempt on controller */
5196d604f533SWebb Scales 	if (is_hba_lunid(dev->scsi3addr))
5197d604f533SWebb Scales 		return SUCCESS;
5198d604f533SWebb Scales 
519925163bd5SWebb Scales 	hpsa_show_dev_msg(KERN_WARNING, h, dev, "resetting");
520025163bd5SWebb Scales 
5201edd16368SStephen M. Cameron 	/* send a reset to the SCSI LUN which the command was sent to */
5202d604f533SWebb Scales 	rc = hpsa_do_reset(h, dev, dev->scsi3addr, HPSA_RESET_TYPE_LUN,
520325163bd5SWebb Scales 			   DEFAULT_REPLY_QUEUE);
52042dc127bbSDan Carpenter 	snprintf(msg, sizeof(msg), "reset %s",
52052dc127bbSDan Carpenter 		 rc == 0 ? "completed successfully" : "failed");
5206d604f533SWebb Scales 	hpsa_show_dev_msg(KERN_WARNING, h, dev, msg);
5207d604f533SWebb Scales 	return rc == 0 ? SUCCESS : FAILED;
5208edd16368SStephen M. Cameron }
5209edd16368SStephen M. Cameron 
52106cba3f19SStephen M. Cameron static void swizzle_abort_tag(u8 *tag)
52116cba3f19SStephen M. Cameron {
52126cba3f19SStephen M. Cameron 	u8 original_tag[8];
52136cba3f19SStephen M. Cameron 
52146cba3f19SStephen M. Cameron 	memcpy(original_tag, tag, 8);
52156cba3f19SStephen M. Cameron 	tag[0] = original_tag[3];
52166cba3f19SStephen M. Cameron 	tag[1] = original_tag[2];
52176cba3f19SStephen M. Cameron 	tag[2] = original_tag[1];
52186cba3f19SStephen M. Cameron 	tag[3] = original_tag[0];
52196cba3f19SStephen M. Cameron 	tag[4] = original_tag[7];
52206cba3f19SStephen M. Cameron 	tag[5] = original_tag[6];
52216cba3f19SStephen M. Cameron 	tag[6] = original_tag[5];
52226cba3f19SStephen M. Cameron 	tag[7] = original_tag[4];
52236cba3f19SStephen M. Cameron }
52246cba3f19SStephen M. Cameron 
522517eb87d2SScott Teel static void hpsa_get_tag(struct ctlr_info *h,
52262b08b3e9SDon Brace 	struct CommandList *c, __le32 *taglower, __le32 *tagupper)
522717eb87d2SScott Teel {
52282b08b3e9SDon Brace 	u64 tag;
522917eb87d2SScott Teel 	if (c->cmd_type == CMD_IOACCEL1) {
523017eb87d2SScott Teel 		struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *)
523117eb87d2SScott Teel 			&h->ioaccel_cmd_pool[c->cmdindex];
52322b08b3e9SDon Brace 		tag = le64_to_cpu(cm1->tag);
52332b08b3e9SDon Brace 		*tagupper = cpu_to_le32(tag >> 32);
52342b08b3e9SDon Brace 		*taglower = cpu_to_le32(tag);
523554b6e9e9SScott Teel 		return;
523654b6e9e9SScott Teel 	}
523754b6e9e9SScott Teel 	if (c->cmd_type == CMD_IOACCEL2) {
523854b6e9e9SScott Teel 		struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *)
523954b6e9e9SScott Teel 			&h->ioaccel2_cmd_pool[c->cmdindex];
5240dd0e19f3SScott Teel 		/* upper tag not used in ioaccel2 mode */
5241dd0e19f3SScott Teel 		memset(tagupper, 0, sizeof(*tagupper));
5242dd0e19f3SScott Teel 		*taglower = cm2->Tag;
524354b6e9e9SScott Teel 		return;
524454b6e9e9SScott Teel 	}
52452b08b3e9SDon Brace 	tag = le64_to_cpu(c->Header.tag);
52462b08b3e9SDon Brace 	*tagupper = cpu_to_le32(tag >> 32);
52472b08b3e9SDon Brace 	*taglower = cpu_to_le32(tag);
524817eb87d2SScott Teel }
524954b6e9e9SScott Teel 
525075167d2cSStephen M. Cameron static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr,
52519b5c48c2SStephen Cameron 	struct CommandList *abort, int reply_queue)
525275167d2cSStephen M. Cameron {
525375167d2cSStephen M. Cameron 	int rc = IO_OK;
525475167d2cSStephen M. Cameron 	struct CommandList *c;
525575167d2cSStephen M. Cameron 	struct ErrorInfo *ei;
52562b08b3e9SDon Brace 	__le32 tagupper, taglower;
525775167d2cSStephen M. Cameron 
525845fcb86eSStephen Cameron 	c = cmd_alloc(h);
525975167d2cSStephen M. Cameron 
5260a2dac136SStephen M. Cameron 	/* fill_cmd can't fail here, no buffer to map */
52619b5c48c2SStephen Cameron 	(void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag,
5262a2dac136SStephen M. Cameron 		0, 0, scsi3addr, TYPE_MSG);
52639b5c48c2SStephen Cameron 	if (h->needs_abort_tags_swizzled)
52646cba3f19SStephen M. Cameron 		swizzle_abort_tag(&c->Request.CDB[4]);
526525163bd5SWebb Scales 	(void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
526617eb87d2SScott Teel 	hpsa_get_tag(h, abort, &taglower, &tagupper);
526725163bd5SWebb Scales 	dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n",
526817eb87d2SScott Teel 		__func__, tagupper, taglower);
526975167d2cSStephen M. Cameron 	/* no unmap needed here because no data xfer. */
527075167d2cSStephen M. Cameron 
527175167d2cSStephen M. Cameron 	ei = c->err_info;
527275167d2cSStephen M. Cameron 	switch (ei->CommandStatus) {
527375167d2cSStephen M. Cameron 	case CMD_SUCCESS:
527475167d2cSStephen M. Cameron 		break;
52759437ac43SStephen Cameron 	case CMD_TMF_STATUS:
52769437ac43SStephen Cameron 		rc = hpsa_evaluate_tmf_status(h, c);
52779437ac43SStephen Cameron 		break;
527875167d2cSStephen M. Cameron 	case CMD_UNABORTABLE: /* Very common, don't make noise. */
527975167d2cSStephen M. Cameron 		rc = -1;
528075167d2cSStephen M. Cameron 		break;
528175167d2cSStephen M. Cameron 	default:
528275167d2cSStephen M. Cameron 		dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n",
528317eb87d2SScott Teel 			__func__, tagupper, taglower);
5284d1e8beacSStephen M. Cameron 		hpsa_scsi_interpret_error(h, c);
528575167d2cSStephen M. Cameron 		rc = -1;
528675167d2cSStephen M. Cameron 		break;
528775167d2cSStephen M. Cameron 	}
528845fcb86eSStephen Cameron 	cmd_free(h, c);
5289dd0e19f3SScott Teel 	dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n",
5290dd0e19f3SScott Teel 		__func__, tagupper, taglower);
529175167d2cSStephen M. Cameron 	return rc;
529275167d2cSStephen M. Cameron }
529375167d2cSStephen M. Cameron 
52948be986ccSStephen Cameron static void setup_ioaccel2_abort_cmd(struct CommandList *c, struct ctlr_info *h,
52958be986ccSStephen Cameron 	struct CommandList *command_to_abort, int reply_queue)
52968be986ccSStephen Cameron {
52978be986ccSStephen Cameron 	struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
52988be986ccSStephen Cameron 	struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2;
52998be986ccSStephen Cameron 	struct io_accel2_cmd *c2a =
53008be986ccSStephen Cameron 		&h->ioaccel2_cmd_pool[command_to_abort->cmdindex];
5301a58e7e53SWebb Scales 	struct scsi_cmnd *scmd = command_to_abort->scsi_cmd;
53028be986ccSStephen Cameron 	struct hpsa_scsi_dev_t *dev = scmd->device->hostdata;
53038be986ccSStephen Cameron 
53048be986ccSStephen Cameron 	/*
53058be986ccSStephen Cameron 	 * We're overlaying struct hpsa_tmf_struct on top of something which
53068be986ccSStephen Cameron 	 * was allocated as a struct io_accel2_cmd, so we better be sure it
53078be986ccSStephen Cameron 	 * actually fits, and doesn't overrun the error info space.
53088be986ccSStephen Cameron 	 */
53098be986ccSStephen Cameron 	BUILD_BUG_ON(sizeof(struct hpsa_tmf_struct) >
53108be986ccSStephen Cameron 			sizeof(struct io_accel2_cmd));
53118be986ccSStephen Cameron 	BUG_ON(offsetof(struct io_accel2_cmd, error_data) <
53128be986ccSStephen Cameron 			offsetof(struct hpsa_tmf_struct, error_len) +
53138be986ccSStephen Cameron 				sizeof(ac->error_len));
53148be986ccSStephen Cameron 
53158be986ccSStephen Cameron 	c->cmd_type = IOACCEL2_TMF;
5316a58e7e53SWebb Scales 	c->scsi_cmd = SCSI_CMD_BUSY;
5317a58e7e53SWebb Scales 
53188be986ccSStephen Cameron 	/* Adjust the DMA address to point to the accelerated command buffer */
53198be986ccSStephen Cameron 	c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle +
53208be986ccSStephen Cameron 				(c->cmdindex * sizeof(struct io_accel2_cmd));
53218be986ccSStephen Cameron 	BUG_ON(c->busaddr & 0x0000007F);
53228be986ccSStephen Cameron 
53238be986ccSStephen Cameron 	memset(ac, 0, sizeof(*c2)); /* yes this is correct */
53248be986ccSStephen Cameron 	ac->iu_type = IOACCEL2_IU_TMF_TYPE;
53258be986ccSStephen Cameron 	ac->reply_queue = reply_queue;
53268be986ccSStephen Cameron 	ac->tmf = IOACCEL2_TMF_ABORT;
53278be986ccSStephen Cameron 	ac->it_nexus = cpu_to_le32(dev->ioaccel_handle);
53288be986ccSStephen Cameron 	memset(ac->lun_id, 0, sizeof(ac->lun_id));
53298be986ccSStephen Cameron 	ac->tag = cpu_to_le64(c->cmdindex << DIRECT_LOOKUP_SHIFT);
53308be986ccSStephen Cameron 	ac->abort_tag = cpu_to_le64(le32_to_cpu(c2a->Tag));
53318be986ccSStephen Cameron 	ac->error_ptr = cpu_to_le64(c->busaddr +
53328be986ccSStephen Cameron 			offsetof(struct io_accel2_cmd, error_data));
53338be986ccSStephen Cameron 	ac->error_len = cpu_to_le32(sizeof(c2->error_data));
53348be986ccSStephen Cameron }
53358be986ccSStephen Cameron 
533654b6e9e9SScott Teel /* ioaccel2 path firmware cannot handle abort task requests.
533754b6e9e9SScott Teel  * Change abort requests to physical target reset, and send to the
533854b6e9e9SScott Teel  * address of the physical disk used for the ioaccel 2 command.
533954b6e9e9SScott Teel  * Return 0 on success (IO_OK)
534054b6e9e9SScott Teel  *	 -1 on failure
534154b6e9e9SScott Teel  */
534254b6e9e9SScott Teel 
534354b6e9e9SScott Teel static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h,
534425163bd5SWebb Scales 	unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
534554b6e9e9SScott Teel {
534654b6e9e9SScott Teel 	int rc = IO_OK;
534754b6e9e9SScott Teel 	struct scsi_cmnd *scmd; /* scsi command within request being aborted */
534854b6e9e9SScott Teel 	struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */
534954b6e9e9SScott Teel 	unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */
535054b6e9e9SScott Teel 	unsigned char *psa = &phys_scsi3addr[0];
535154b6e9e9SScott Teel 
535254b6e9e9SScott Teel 	/* Get a pointer to the hpsa logical device. */
53537fa3030cSStephen Cameron 	scmd = abort->scsi_cmd;
535454b6e9e9SScott Teel 	dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata);
535554b6e9e9SScott Teel 	if (dev == NULL) {
535654b6e9e9SScott Teel 		dev_warn(&h->pdev->dev,
535754b6e9e9SScott Teel 			"Cannot abort: no device pointer for command.\n");
535854b6e9e9SScott Teel 			return -1; /* not abortable */
535954b6e9e9SScott Teel 	}
536054b6e9e9SScott Teel 
53612ba8bfc8SStephen M. Cameron 	if (h->raid_offload_debug > 0)
53622ba8bfc8SStephen M. Cameron 		dev_info(&h->pdev->dev,
53630d96ef5fSWebb Scales 			"scsi %d:%d:%d:%d %s scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
53642ba8bfc8SStephen M. Cameron 			h->scsi_host->host_no, dev->bus, dev->target, dev->lun,
53650d96ef5fSWebb Scales 			"Reset as abort",
53662ba8bfc8SStephen M. Cameron 			scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3],
53672ba8bfc8SStephen M. Cameron 			scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]);
53682ba8bfc8SStephen M. Cameron 
536954b6e9e9SScott Teel 	if (!dev->offload_enabled) {
537054b6e9e9SScott Teel 		dev_warn(&h->pdev->dev,
537154b6e9e9SScott Teel 			"Can't abort: device is not operating in HP SSD Smart Path mode.\n");
537254b6e9e9SScott Teel 		return -1; /* not abortable */
537354b6e9e9SScott Teel 	}
537454b6e9e9SScott Teel 
537554b6e9e9SScott Teel 	/* Incoming scsi3addr is logical addr. We need physical disk addr. */
537654b6e9e9SScott Teel 	if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) {
537754b6e9e9SScott Teel 		dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n");
537854b6e9e9SScott Teel 		return -1; /* not abortable */
537954b6e9e9SScott Teel 	}
538054b6e9e9SScott Teel 
538154b6e9e9SScott Teel 	/* send the reset */
53822ba8bfc8SStephen M. Cameron 	if (h->raid_offload_debug > 0)
53832ba8bfc8SStephen M. Cameron 		dev_info(&h->pdev->dev,
53842ba8bfc8SStephen M. Cameron 			"Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
53852ba8bfc8SStephen M. Cameron 			psa[0], psa[1], psa[2], psa[3],
53862ba8bfc8SStephen M. Cameron 			psa[4], psa[5], psa[6], psa[7]);
5387d604f533SWebb Scales 	rc = hpsa_do_reset(h, dev, psa, HPSA_RESET_TYPE_TARGET, reply_queue);
538854b6e9e9SScott Teel 	if (rc != 0) {
538954b6e9e9SScott Teel 		dev_warn(&h->pdev->dev,
539054b6e9e9SScott Teel 			"Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
539154b6e9e9SScott Teel 			psa[0], psa[1], psa[2], psa[3],
539254b6e9e9SScott Teel 			psa[4], psa[5], psa[6], psa[7]);
539354b6e9e9SScott Teel 		return rc; /* failed to reset */
539454b6e9e9SScott Teel 	}
539554b6e9e9SScott Teel 
539654b6e9e9SScott Teel 	/* wait for device to recover */
5397b69324ffSWebb Scales 	if (wait_for_device_to_become_ready(h, psa, reply_queue) != 0) {
539854b6e9e9SScott Teel 		dev_warn(&h->pdev->dev,
539954b6e9e9SScott Teel 			"Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
540054b6e9e9SScott Teel 			psa[0], psa[1], psa[2], psa[3],
540154b6e9e9SScott Teel 			psa[4], psa[5], psa[6], psa[7]);
540254b6e9e9SScott Teel 		return -1;  /* failed to recover */
540354b6e9e9SScott Teel 	}
540454b6e9e9SScott Teel 
540554b6e9e9SScott Teel 	/* device recovered */
540654b6e9e9SScott Teel 	dev_info(&h->pdev->dev,
540754b6e9e9SScott Teel 		"Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n",
540854b6e9e9SScott Teel 		psa[0], psa[1], psa[2], psa[3],
540954b6e9e9SScott Teel 		psa[4], psa[5], psa[6], psa[7]);
541054b6e9e9SScott Teel 
541154b6e9e9SScott Teel 	return rc; /* success */
541254b6e9e9SScott Teel }
541354b6e9e9SScott Teel 
54148be986ccSStephen Cameron static int hpsa_send_abort_ioaccel2(struct ctlr_info *h,
54158be986ccSStephen Cameron 	struct CommandList *abort, int reply_queue)
54168be986ccSStephen Cameron {
54178be986ccSStephen Cameron 	int rc = IO_OK;
54188be986ccSStephen Cameron 	struct CommandList *c;
54198be986ccSStephen Cameron 	__le32 taglower, tagupper;
54208be986ccSStephen Cameron 	struct hpsa_scsi_dev_t *dev;
54218be986ccSStephen Cameron 	struct io_accel2_cmd *c2;
54228be986ccSStephen Cameron 
54238be986ccSStephen Cameron 	dev = abort->scsi_cmd->device->hostdata;
54248be986ccSStephen Cameron 	if (!dev->offload_enabled && !dev->hba_ioaccel_enabled)
54258be986ccSStephen Cameron 		return -1;
54268be986ccSStephen Cameron 
54278be986ccSStephen Cameron 	c = cmd_alloc(h);
54288be986ccSStephen Cameron 	setup_ioaccel2_abort_cmd(c, h, abort, reply_queue);
54298be986ccSStephen Cameron 	c2 = &h->ioaccel2_cmd_pool[c->cmdindex];
54308be986ccSStephen Cameron 	(void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT);
54318be986ccSStephen Cameron 	hpsa_get_tag(h, abort, &taglower, &tagupper);
54328be986ccSStephen Cameron 	dev_dbg(&h->pdev->dev,
54338be986ccSStephen Cameron 		"%s: Tag:0x%08x:%08x: do_simple_cmd(ioaccel2 abort) completed.\n",
54348be986ccSStephen Cameron 		__func__, tagupper, taglower);
54358be986ccSStephen Cameron 	/* no unmap needed here because no data xfer. */
54368be986ccSStephen Cameron 
54378be986ccSStephen Cameron 	dev_dbg(&h->pdev->dev,
54388be986ccSStephen Cameron 		"%s: Tag:0x%08x:%08x: abort service response = 0x%02x.\n",
54398be986ccSStephen Cameron 		__func__, tagupper, taglower, c2->error_data.serv_response);
54408be986ccSStephen Cameron 	switch (c2->error_data.serv_response) {
54418be986ccSStephen Cameron 	case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE:
54428be986ccSStephen Cameron 	case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS:
54438be986ccSStephen Cameron 		rc = 0;
54448be986ccSStephen Cameron 		break;
54458be986ccSStephen Cameron 	case IOACCEL2_SERV_RESPONSE_TMF_REJECTED:
54468be986ccSStephen Cameron 	case IOACCEL2_SERV_RESPONSE_FAILURE:
54478be986ccSStephen Cameron 	case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN:
54488be986ccSStephen Cameron 		rc = -1;
54498be986ccSStephen Cameron 		break;
54508be986ccSStephen Cameron 	default:
54518be986ccSStephen Cameron 		dev_warn(&h->pdev->dev,
54528be986ccSStephen Cameron 			"%s: Tag:0x%08x:%08x: unknown abort service response 0x%02x\n",
54538be986ccSStephen Cameron 			__func__, tagupper, taglower,
54548be986ccSStephen Cameron 			c2->error_data.serv_response);
54558be986ccSStephen Cameron 		rc = -1;
54568be986ccSStephen Cameron 	}
54578be986ccSStephen Cameron 	cmd_free(h, c);
54588be986ccSStephen Cameron 	dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", __func__,
54598be986ccSStephen Cameron 		tagupper, taglower);
54608be986ccSStephen Cameron 	return rc;
54618be986ccSStephen Cameron }
54628be986ccSStephen Cameron 
54636cba3f19SStephen M. Cameron static int hpsa_send_abort_both_ways(struct ctlr_info *h,
546425163bd5SWebb Scales 	unsigned char *scsi3addr, struct CommandList *abort, int reply_queue)
54656cba3f19SStephen M. Cameron {
54668be986ccSStephen Cameron 	/*
54678be986ccSStephen Cameron 	 * ioccelerator mode 2 commands should be aborted via the
546854b6e9e9SScott Teel 	 * accelerated path, since RAID path is unaware of these commands,
54698be986ccSStephen Cameron 	 * but not all underlying firmware can handle abort TMF.
54708be986ccSStephen Cameron 	 * Change abort to physical device reset when abort TMF is unsupported.
547154b6e9e9SScott Teel 	 */
54728be986ccSStephen Cameron 	if (abort->cmd_type == CMD_IOACCEL2) {
54738be986ccSStephen Cameron 		if (HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags)
54748be986ccSStephen Cameron 			return hpsa_send_abort_ioaccel2(h, abort,
54758be986ccSStephen Cameron 						reply_queue);
54768be986ccSStephen Cameron 		else
547725163bd5SWebb Scales 			return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr,
547825163bd5SWebb Scales 							abort, reply_queue);
54798be986ccSStephen Cameron 	}
54809b5c48c2SStephen Cameron 	return hpsa_send_abort(h, scsi3addr, abort, reply_queue);
548125163bd5SWebb Scales }
548225163bd5SWebb Scales 
548325163bd5SWebb Scales /* Find out which reply queue a command was meant to return on */
548425163bd5SWebb Scales static int hpsa_extract_reply_queue(struct ctlr_info *h,
548525163bd5SWebb Scales 					struct CommandList *c)
548625163bd5SWebb Scales {
548725163bd5SWebb Scales 	if (c->cmd_type == CMD_IOACCEL2)
548825163bd5SWebb Scales 		return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue;
548925163bd5SWebb Scales 	return c->Header.ReplyQueue;
54906cba3f19SStephen M. Cameron }
54916cba3f19SStephen M. Cameron 
54929b5c48c2SStephen Cameron /*
54939b5c48c2SStephen Cameron  * Limit concurrency of abort commands to prevent
54949b5c48c2SStephen Cameron  * over-subscription of commands
54959b5c48c2SStephen Cameron  */
54969b5c48c2SStephen Cameron static inline int wait_for_available_abort_cmd(struct ctlr_info *h)
54979b5c48c2SStephen Cameron {
54989b5c48c2SStephen Cameron #define ABORT_CMD_WAIT_MSECS 5000
54999b5c48c2SStephen Cameron 	return !wait_event_timeout(h->abort_cmd_wait_queue,
55009b5c48c2SStephen Cameron 			atomic_dec_if_positive(&h->abort_cmds_available) >= 0,
55019b5c48c2SStephen Cameron 			msecs_to_jiffies(ABORT_CMD_WAIT_MSECS));
55029b5c48c2SStephen Cameron }
55039b5c48c2SStephen Cameron 
550475167d2cSStephen M. Cameron /* Send an abort for the specified command.
550575167d2cSStephen M. Cameron  *	If the device and controller support it,
550675167d2cSStephen M. Cameron  *		send a task abort request.
550775167d2cSStephen M. Cameron  */
550875167d2cSStephen M. Cameron static int hpsa_eh_abort_handler(struct scsi_cmnd *sc)
550975167d2cSStephen M. Cameron {
551075167d2cSStephen M. Cameron 
5511a58e7e53SWebb Scales 	int rc;
551275167d2cSStephen M. Cameron 	struct ctlr_info *h;
551375167d2cSStephen M. Cameron 	struct hpsa_scsi_dev_t *dev;
551475167d2cSStephen M. Cameron 	struct CommandList *abort; /* pointer to command to be aborted */
551575167d2cSStephen M. Cameron 	struct scsi_cmnd *as;	/* ptr to scsi cmd inside aborted command. */
551675167d2cSStephen M. Cameron 	char msg[256];		/* For debug messaging. */
551775167d2cSStephen M. Cameron 	int ml = 0;
55182b08b3e9SDon Brace 	__le32 tagupper, taglower;
551925163bd5SWebb Scales 	int refcount, reply_queue;
552025163bd5SWebb Scales 
552125163bd5SWebb Scales 	if (sc == NULL)
552225163bd5SWebb Scales 		return FAILED;
552375167d2cSStephen M. Cameron 
55249b5c48c2SStephen Cameron 	if (sc->device == NULL)
55259b5c48c2SStephen Cameron 		return FAILED;
55269b5c48c2SStephen Cameron 
552775167d2cSStephen M. Cameron 	/* Find the controller of the command to be aborted */
552875167d2cSStephen M. Cameron 	h = sdev_to_hba(sc->device);
55299b5c48c2SStephen Cameron 	if (h == NULL)
553075167d2cSStephen M. Cameron 		return FAILED;
553175167d2cSStephen M. Cameron 
553225163bd5SWebb Scales 	/* Find the device of the command to be aborted */
553325163bd5SWebb Scales 	dev = sc->device->hostdata;
553425163bd5SWebb Scales 	if (!dev) {
553525163bd5SWebb Scales 		dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n",
553625163bd5SWebb Scales 				msg);
5537e345893bSDon Brace 		return FAILED;
553825163bd5SWebb Scales 	}
553925163bd5SWebb Scales 
554025163bd5SWebb Scales 	/* If controller locked up, we can guarantee command won't complete */
554125163bd5SWebb Scales 	if (lockup_detected(h)) {
554225163bd5SWebb Scales 		hpsa_show_dev_msg(KERN_WARNING, h, dev,
554325163bd5SWebb Scales 					"ABORT FAILED, lockup detected");
554425163bd5SWebb Scales 		return FAILED;
554525163bd5SWebb Scales 	}
554625163bd5SWebb Scales 
554725163bd5SWebb Scales 	/* This is a good time to check if controller lockup has occurred */
554825163bd5SWebb Scales 	if (detect_controller_lockup(h)) {
554925163bd5SWebb Scales 		hpsa_show_dev_msg(KERN_WARNING, h, dev,
555025163bd5SWebb Scales 					"ABORT FAILED, new lockup detected");
555125163bd5SWebb Scales 		return FAILED;
555225163bd5SWebb Scales 	}
5553e345893bSDon Brace 
555475167d2cSStephen M. Cameron 	/* Check that controller supports some kind of task abort */
555575167d2cSStephen M. Cameron 	if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) &&
555675167d2cSStephen M. Cameron 		!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
555775167d2cSStephen M. Cameron 		return FAILED;
555875167d2cSStephen M. Cameron 
555975167d2cSStephen M. Cameron 	memset(msg, 0, sizeof(msg));
55604b761557SRobert Elliott 	ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s %p",
556175167d2cSStephen M. Cameron 		h->scsi_host->host_no, sc->device->channel,
55620d96ef5fSWebb Scales 		sc->device->id, sc->device->lun,
55634b761557SRobert Elliott 		"Aborting command", sc);
556475167d2cSStephen M. Cameron 
556575167d2cSStephen M. Cameron 	/* Get SCSI command to be aborted */
556675167d2cSStephen M. Cameron 	abort = (struct CommandList *) sc->host_scribble;
556775167d2cSStephen M. Cameron 	if (abort == NULL) {
5568281a7fd0SWebb Scales 		/* This can happen if the command already completed. */
5569281a7fd0SWebb Scales 		return SUCCESS;
5570281a7fd0SWebb Scales 	}
5571281a7fd0SWebb Scales 	refcount = atomic_inc_return(&abort->refcount);
5572281a7fd0SWebb Scales 	if (refcount == 1) { /* Command is done already. */
5573281a7fd0SWebb Scales 		cmd_free(h, abort);
5574281a7fd0SWebb Scales 		return SUCCESS;
557575167d2cSStephen M. Cameron 	}
55769b5c48c2SStephen Cameron 
55779b5c48c2SStephen Cameron 	/* Don't bother trying the abort if we know it won't work. */
55789b5c48c2SStephen Cameron 	if (abort->cmd_type != CMD_IOACCEL2 &&
55799b5c48c2SStephen Cameron 		abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) {
55809b5c48c2SStephen Cameron 		cmd_free(h, abort);
55819b5c48c2SStephen Cameron 		return FAILED;
55829b5c48c2SStephen Cameron 	}
55839b5c48c2SStephen Cameron 
5584a58e7e53SWebb Scales 	/*
5585a58e7e53SWebb Scales 	 * Check that we're aborting the right command.
5586a58e7e53SWebb Scales 	 * It's possible the CommandList already completed and got re-used.
5587a58e7e53SWebb Scales 	 */
5588a58e7e53SWebb Scales 	if (abort->scsi_cmd != sc) {
5589a58e7e53SWebb Scales 		cmd_free(h, abort);
5590a58e7e53SWebb Scales 		return SUCCESS;
5591a58e7e53SWebb Scales 	}
5592a58e7e53SWebb Scales 
5593a58e7e53SWebb Scales 	abort->abort_pending = true;
559417eb87d2SScott Teel 	hpsa_get_tag(h, abort, &taglower, &tagupper);
559525163bd5SWebb Scales 	reply_queue = hpsa_extract_reply_queue(h, abort);
559617eb87d2SScott Teel 	ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower);
55977fa3030cSStephen Cameron 	as  = abort->scsi_cmd;
559875167d2cSStephen M. Cameron 	if (as != NULL)
55994b761557SRobert Elliott 		ml += sprintf(msg+ml,
56004b761557SRobert Elliott 			"CDBLen: %d CDB: 0x%02x%02x... SN: 0x%lx ",
56014b761557SRobert Elliott 			as->cmd_len, as->cmnd[0], as->cmnd[1],
56024b761557SRobert Elliott 			as->serial_number);
56034b761557SRobert Elliott 	dev_warn(&h->pdev->dev, "%s BEING SENT\n", msg);
56040d96ef5fSWebb Scales 	hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command");
56054b761557SRobert Elliott 
560675167d2cSStephen M. Cameron 	/*
560775167d2cSStephen M. Cameron 	 * Command is in flight, or possibly already completed
560875167d2cSStephen M. Cameron 	 * by the firmware (but not to the scsi mid layer) but we can't
560975167d2cSStephen M. Cameron 	 * distinguish which.  Send the abort down.
561075167d2cSStephen M. Cameron 	 */
56119b5c48c2SStephen Cameron 	if (wait_for_available_abort_cmd(h)) {
56129b5c48c2SStephen Cameron 		dev_warn(&h->pdev->dev,
56134b761557SRobert Elliott 			"%s FAILED, timeout waiting for an abort command to become available.\n",
56144b761557SRobert Elliott 			msg);
56159b5c48c2SStephen Cameron 		cmd_free(h, abort);
56169b5c48c2SStephen Cameron 		return FAILED;
56179b5c48c2SStephen Cameron 	}
561825163bd5SWebb Scales 	rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue);
56199b5c48c2SStephen Cameron 	atomic_inc(&h->abort_cmds_available);
56209b5c48c2SStephen Cameron 	wake_up_all(&h->abort_cmd_wait_queue);
562175167d2cSStephen M. Cameron 	if (rc != 0) {
56224b761557SRobert Elliott 		dev_warn(&h->pdev->dev, "%s SENT, FAILED\n", msg);
56230d96ef5fSWebb Scales 		hpsa_show_dev_msg(KERN_WARNING, h, dev,
56240d96ef5fSWebb Scales 				"FAILED to abort command");
5625281a7fd0SWebb Scales 		cmd_free(h, abort);
562675167d2cSStephen M. Cameron 		return FAILED;
562775167d2cSStephen M. Cameron 	}
56284b761557SRobert Elliott 	dev_info(&h->pdev->dev, "%s SENT, SUCCESS\n", msg);
5629d604f533SWebb Scales 	wait_event(h->event_sync_wait_queue,
5630a58e7e53SWebb Scales 		   abort->scsi_cmd != sc || lockup_detected(h));
5631281a7fd0SWebb Scales 	cmd_free(h, abort);
5632a58e7e53SWebb Scales 	return !lockup_detected(h) ? SUCCESS : FAILED;
563375167d2cSStephen M. Cameron }
563475167d2cSStephen M. Cameron 
5635edd16368SStephen M. Cameron /*
563673153fe5SWebb Scales  * For operations with an associated SCSI command, a command block is allocated
563773153fe5SWebb Scales  * at init, and managed by cmd_tagged_alloc() and cmd_tagged_free() using the
563873153fe5SWebb Scales  * block request tag as an index into a table of entries.  cmd_tagged_free() is
563973153fe5SWebb Scales  * the complement, although cmd_free() may be called instead.
564073153fe5SWebb Scales  */
564173153fe5SWebb Scales static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h,
564273153fe5SWebb Scales 					    struct scsi_cmnd *scmd)
564373153fe5SWebb Scales {
564473153fe5SWebb Scales 	int idx = hpsa_get_cmd_index(scmd);
564573153fe5SWebb Scales 	struct CommandList *c = h->cmd_pool + idx;
564673153fe5SWebb Scales 
564773153fe5SWebb Scales 	if (idx < HPSA_NRESERVED_CMDS || idx >= h->nr_cmds) {
564873153fe5SWebb Scales 		dev_err(&h->pdev->dev, "Bad block tag: %d not in [%d..%d]\n",
564973153fe5SWebb Scales 			idx, HPSA_NRESERVED_CMDS, h->nr_cmds - 1);
565073153fe5SWebb Scales 		/* The index value comes from the block layer, so if it's out of
565173153fe5SWebb Scales 		 * bounds, it's probably not our bug.
565273153fe5SWebb Scales 		 */
565373153fe5SWebb Scales 		BUG();
565473153fe5SWebb Scales 	}
565573153fe5SWebb Scales 
565673153fe5SWebb Scales 	atomic_inc(&c->refcount);
565773153fe5SWebb Scales 	if (unlikely(!hpsa_is_cmd_idle(c))) {
565873153fe5SWebb Scales 		/*
565973153fe5SWebb Scales 		 * We expect that the SCSI layer will hand us a unique tag
566073153fe5SWebb Scales 		 * value.  Thus, there should never be a collision here between
566173153fe5SWebb Scales 		 * two requests...because if the selected command isn't idle
566273153fe5SWebb Scales 		 * then someone is going to be very disappointed.
566373153fe5SWebb Scales 		 */
566473153fe5SWebb Scales 		dev_err(&h->pdev->dev,
566573153fe5SWebb Scales 			"tag collision (tag=%d) in cmd_tagged_alloc().\n",
566673153fe5SWebb Scales 			idx);
566773153fe5SWebb Scales 		if (c->scsi_cmd != NULL)
566873153fe5SWebb Scales 			scsi_print_command(c->scsi_cmd);
566973153fe5SWebb Scales 		scsi_print_command(scmd);
567073153fe5SWebb Scales 	}
567173153fe5SWebb Scales 
567273153fe5SWebb Scales 	hpsa_cmd_partial_init(h, idx, c);
567373153fe5SWebb Scales 	return c;
567473153fe5SWebb Scales }
567573153fe5SWebb Scales 
567673153fe5SWebb Scales static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c)
567773153fe5SWebb Scales {
567873153fe5SWebb Scales 	/*
567973153fe5SWebb Scales 	 * Release our reference to the block.  We don't need to do anything
568073153fe5SWebb Scales 	 * else to free it, because it is accessed by index.  (There's no point
568173153fe5SWebb Scales 	 * in checking the result of the decrement, since we cannot guarantee
568273153fe5SWebb Scales 	 * that there isn't a concurrent abort which is also accessing it.)
568373153fe5SWebb Scales 	 */
568473153fe5SWebb Scales 	(void)atomic_dec(&c->refcount);
568573153fe5SWebb Scales }
568673153fe5SWebb Scales 
568773153fe5SWebb Scales /*
5688edd16368SStephen M. Cameron  * For operations that cannot sleep, a command block is allocated at init,
5689edd16368SStephen M. Cameron  * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track
5690edd16368SStephen M. Cameron  * which ones are free or in use.  Lock must be held when calling this.
5691edd16368SStephen M. Cameron  * cmd_free() is the complement.
5692bf43caf3SRobert Elliott  * This function never gives up and returns NULL.  If it hangs,
5693bf43caf3SRobert Elliott  * another thread must call cmd_free() to free some tags.
5694edd16368SStephen M. Cameron  */
5695281a7fd0SWebb Scales 
5696edd16368SStephen M. Cameron static struct CommandList *cmd_alloc(struct ctlr_info *h)
5697edd16368SStephen M. Cameron {
5698edd16368SStephen M. Cameron 	struct CommandList *c;
5699360c73bdSStephen Cameron 	int refcount, i;
570073153fe5SWebb Scales 	int offset = 0;
5701edd16368SStephen M. Cameron 
570233811026SRobert Elliott 	/*
570333811026SRobert Elliott 	 * There is some *extremely* small but non-zero chance that that
57044c413128SStephen M. Cameron 	 * multiple threads could get in here, and one thread could
57054c413128SStephen M. Cameron 	 * be scanning through the list of bits looking for a free
57064c413128SStephen M. Cameron 	 * one, but the free ones are always behind him, and other
57074c413128SStephen M. Cameron 	 * threads sneak in behind him and eat them before he can
57084c413128SStephen M. Cameron 	 * get to them, so that while there is always a free one, a
57094c413128SStephen M. Cameron 	 * very unlucky thread might be starved anyway, never able to
57104c413128SStephen M. Cameron 	 * beat the other threads.  In reality, this happens so
57114c413128SStephen M. Cameron 	 * infrequently as to be indistinguishable from never.
571273153fe5SWebb Scales 	 *
571373153fe5SWebb Scales 	 * Note that we start allocating commands before the SCSI host structure
571473153fe5SWebb Scales 	 * is initialized.  Since the search starts at bit zero, this
571573153fe5SWebb Scales 	 * all works, since we have at least one command structure available;
571673153fe5SWebb Scales 	 * however, it means that the structures with the low indexes have to be
571773153fe5SWebb Scales 	 * reserved for driver-initiated requests, while requests from the block
571873153fe5SWebb Scales 	 * layer will use the higher indexes.
57194c413128SStephen M. Cameron 	 */
57204c413128SStephen M. Cameron 
5721281a7fd0SWebb Scales 	for (;;) {
572273153fe5SWebb Scales 		i = find_next_zero_bit(h->cmd_pool_bits,
572373153fe5SWebb Scales 					HPSA_NRESERVED_CMDS,
572473153fe5SWebb Scales 					offset);
572573153fe5SWebb Scales 		if (unlikely(i >= HPSA_NRESERVED_CMDS)) {
5726281a7fd0SWebb Scales 			offset = 0;
5727281a7fd0SWebb Scales 			continue;
5728281a7fd0SWebb Scales 		}
5729edd16368SStephen M. Cameron 		c = h->cmd_pool + i;
5730281a7fd0SWebb Scales 		refcount = atomic_inc_return(&c->refcount);
5731281a7fd0SWebb Scales 		if (unlikely(refcount > 1)) {
5732281a7fd0SWebb Scales 			cmd_free(h, c); /* already in use */
573373153fe5SWebb Scales 			offset = (i + 1) % HPSA_NRESERVED_CMDS;
5734281a7fd0SWebb Scales 			continue;
5735281a7fd0SWebb Scales 		}
5736281a7fd0SWebb Scales 		set_bit(i & (BITS_PER_LONG - 1),
5737281a7fd0SWebb Scales 			h->cmd_pool_bits + (i / BITS_PER_LONG));
5738281a7fd0SWebb Scales 		break; /* it's ours now. */
5739281a7fd0SWebb Scales 	}
5740360c73bdSStephen Cameron 	hpsa_cmd_partial_init(h, i, c);
5741edd16368SStephen M. Cameron 	return c;
5742edd16368SStephen M. Cameron }
5743edd16368SStephen M. Cameron 
574473153fe5SWebb Scales /*
574573153fe5SWebb Scales  * This is the complementary operation to cmd_alloc().  Note, however, in some
574673153fe5SWebb Scales  * corner cases it may also be used to free blocks allocated by
574773153fe5SWebb Scales  * cmd_tagged_alloc() in which case the ref-count decrement does the trick and
574873153fe5SWebb Scales  * the clear-bit is harmless.
574973153fe5SWebb Scales  */
5750edd16368SStephen M. Cameron static void cmd_free(struct ctlr_info *h, struct CommandList *c)
5751edd16368SStephen M. Cameron {
5752281a7fd0SWebb Scales 	if (atomic_dec_and_test(&c->refcount)) {
5753edd16368SStephen M. Cameron 		int i;
5754edd16368SStephen M. Cameron 
5755edd16368SStephen M. Cameron 		i = c - h->cmd_pool;
5756edd16368SStephen M. Cameron 		clear_bit(i & (BITS_PER_LONG - 1),
5757edd16368SStephen M. Cameron 			  h->cmd_pool_bits + (i / BITS_PER_LONG));
5758edd16368SStephen M. Cameron 	}
5759281a7fd0SWebb Scales }
5760edd16368SStephen M. Cameron 
5761edd16368SStephen M. Cameron #ifdef CONFIG_COMPAT
5762edd16368SStephen M. Cameron 
576342a91641SDon Brace static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd,
576442a91641SDon Brace 	void __user *arg)
5765edd16368SStephen M. Cameron {
5766edd16368SStephen M. Cameron 	IOCTL32_Command_struct __user *arg32 =
5767edd16368SStephen M. Cameron 	    (IOCTL32_Command_struct __user *) arg;
5768edd16368SStephen M. Cameron 	IOCTL_Command_struct arg64;
5769edd16368SStephen M. Cameron 	IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64));
5770edd16368SStephen M. Cameron 	int err;
5771edd16368SStephen M. Cameron 	u32 cp;
5772edd16368SStephen M. Cameron 
5773938abd84SVasiliy Kulikov 	memset(&arg64, 0, sizeof(arg64));
5774edd16368SStephen M. Cameron 	err = 0;
5775edd16368SStephen M. Cameron 	err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5776edd16368SStephen M. Cameron 			   sizeof(arg64.LUN_info));
5777edd16368SStephen M. Cameron 	err |= copy_from_user(&arg64.Request, &arg32->Request,
5778edd16368SStephen M. Cameron 			   sizeof(arg64.Request));
5779edd16368SStephen M. Cameron 	err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5780edd16368SStephen M. Cameron 			   sizeof(arg64.error_info));
5781edd16368SStephen M. Cameron 	err |= get_user(arg64.buf_size, &arg32->buf_size);
5782edd16368SStephen M. Cameron 	err |= get_user(cp, &arg32->buf);
5783edd16368SStephen M. Cameron 	arg64.buf = compat_ptr(cp);
5784edd16368SStephen M. Cameron 	err |= copy_to_user(p, &arg64, sizeof(arg64));
5785edd16368SStephen M. Cameron 
5786edd16368SStephen M. Cameron 	if (err)
5787edd16368SStephen M. Cameron 		return -EFAULT;
5788edd16368SStephen M. Cameron 
578942a91641SDon Brace 	err = hpsa_ioctl(dev, CCISS_PASSTHRU, p);
5790edd16368SStephen M. Cameron 	if (err)
5791edd16368SStephen M. Cameron 		return err;
5792edd16368SStephen M. Cameron 	err |= copy_in_user(&arg32->error_info, &p->error_info,
5793edd16368SStephen M. Cameron 			 sizeof(arg32->error_info));
5794edd16368SStephen M. Cameron 	if (err)
5795edd16368SStephen M. Cameron 		return -EFAULT;
5796edd16368SStephen M. Cameron 	return err;
5797edd16368SStephen M. Cameron }
5798edd16368SStephen M. Cameron 
5799edd16368SStephen M. Cameron static int hpsa_ioctl32_big_passthru(struct scsi_device *dev,
580042a91641SDon Brace 	int cmd, void __user *arg)
5801edd16368SStephen M. Cameron {
5802edd16368SStephen M. Cameron 	BIG_IOCTL32_Command_struct __user *arg32 =
5803edd16368SStephen M. Cameron 	    (BIG_IOCTL32_Command_struct __user *) arg;
5804edd16368SStephen M. Cameron 	BIG_IOCTL_Command_struct arg64;
5805edd16368SStephen M. Cameron 	BIG_IOCTL_Command_struct __user *p =
5806edd16368SStephen M. Cameron 	    compat_alloc_user_space(sizeof(arg64));
5807edd16368SStephen M. Cameron 	int err;
5808edd16368SStephen M. Cameron 	u32 cp;
5809edd16368SStephen M. Cameron 
5810938abd84SVasiliy Kulikov 	memset(&arg64, 0, sizeof(arg64));
5811edd16368SStephen M. Cameron 	err = 0;
5812edd16368SStephen M. Cameron 	err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info,
5813edd16368SStephen M. Cameron 			   sizeof(arg64.LUN_info));
5814edd16368SStephen M. Cameron 	err |= copy_from_user(&arg64.Request, &arg32->Request,
5815edd16368SStephen M. Cameron 			   sizeof(arg64.Request));
5816edd16368SStephen M. Cameron 	err |= copy_from_user(&arg64.error_info, &arg32->error_info,
5817edd16368SStephen M. Cameron 			   sizeof(arg64.error_info));
5818edd16368SStephen M. Cameron 	err |= get_user(arg64.buf_size, &arg32->buf_size);
5819edd16368SStephen M. Cameron 	err |= get_user(arg64.malloc_size, &arg32->malloc_size);
5820edd16368SStephen M. Cameron 	err |= get_user(cp, &arg32->buf);
5821edd16368SStephen M. Cameron 	arg64.buf = compat_ptr(cp);
5822edd16368SStephen M. Cameron 	err |= copy_to_user(p, &arg64, sizeof(arg64));
5823edd16368SStephen M. Cameron 
5824edd16368SStephen M. Cameron 	if (err)
5825edd16368SStephen M. Cameron 		return -EFAULT;
5826edd16368SStephen M. Cameron 
582742a91641SDon Brace 	err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p);
5828edd16368SStephen M. Cameron 	if (err)
5829edd16368SStephen M. Cameron 		return err;
5830edd16368SStephen M. Cameron 	err |= copy_in_user(&arg32->error_info, &p->error_info,
5831edd16368SStephen M. Cameron 			 sizeof(arg32->error_info));
5832edd16368SStephen M. Cameron 	if (err)
5833edd16368SStephen M. Cameron 		return -EFAULT;
5834edd16368SStephen M. Cameron 	return err;
5835edd16368SStephen M. Cameron }
583671fe75a7SStephen M. Cameron 
583742a91641SDon Brace static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
583871fe75a7SStephen M. Cameron {
583971fe75a7SStephen M. Cameron 	switch (cmd) {
584071fe75a7SStephen M. Cameron 	case CCISS_GETPCIINFO:
584171fe75a7SStephen M. Cameron 	case CCISS_GETINTINFO:
584271fe75a7SStephen M. Cameron 	case CCISS_SETINTINFO:
584371fe75a7SStephen M. Cameron 	case CCISS_GETNODENAME:
584471fe75a7SStephen M. Cameron 	case CCISS_SETNODENAME:
584571fe75a7SStephen M. Cameron 	case CCISS_GETHEARTBEAT:
584671fe75a7SStephen M. Cameron 	case CCISS_GETBUSTYPES:
584771fe75a7SStephen M. Cameron 	case CCISS_GETFIRMVER:
584871fe75a7SStephen M. Cameron 	case CCISS_GETDRIVVER:
584971fe75a7SStephen M. Cameron 	case CCISS_REVALIDVOLS:
585071fe75a7SStephen M. Cameron 	case CCISS_DEREGDISK:
585171fe75a7SStephen M. Cameron 	case CCISS_REGNEWDISK:
585271fe75a7SStephen M. Cameron 	case CCISS_REGNEWD:
585371fe75a7SStephen M. Cameron 	case CCISS_RESCANDISK:
585471fe75a7SStephen M. Cameron 	case CCISS_GETLUNINFO:
585571fe75a7SStephen M. Cameron 		return hpsa_ioctl(dev, cmd, arg);
585671fe75a7SStephen M. Cameron 
585771fe75a7SStephen M. Cameron 	case CCISS_PASSTHRU32:
585871fe75a7SStephen M. Cameron 		return hpsa_ioctl32_passthru(dev, cmd, arg);
585971fe75a7SStephen M. Cameron 	case CCISS_BIG_PASSTHRU32:
586071fe75a7SStephen M. Cameron 		return hpsa_ioctl32_big_passthru(dev, cmd, arg);
586171fe75a7SStephen M. Cameron 
586271fe75a7SStephen M. Cameron 	default:
586371fe75a7SStephen M. Cameron 		return -ENOIOCTLCMD;
586471fe75a7SStephen M. Cameron 	}
586571fe75a7SStephen M. Cameron }
5866edd16368SStephen M. Cameron #endif
5867edd16368SStephen M. Cameron 
5868edd16368SStephen M. Cameron static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp)
5869edd16368SStephen M. Cameron {
5870edd16368SStephen M. Cameron 	struct hpsa_pci_info pciinfo;
5871edd16368SStephen M. Cameron 
5872edd16368SStephen M. Cameron 	if (!argp)
5873edd16368SStephen M. Cameron 		return -EINVAL;
5874edd16368SStephen M. Cameron 	pciinfo.domain = pci_domain_nr(h->pdev->bus);
5875edd16368SStephen M. Cameron 	pciinfo.bus = h->pdev->bus->number;
5876edd16368SStephen M. Cameron 	pciinfo.dev_fn = h->pdev->devfn;
5877edd16368SStephen M. Cameron 	pciinfo.board_id = h->board_id;
5878edd16368SStephen M. Cameron 	if (copy_to_user(argp, &pciinfo, sizeof(pciinfo)))
5879edd16368SStephen M. Cameron 		return -EFAULT;
5880edd16368SStephen M. Cameron 	return 0;
5881edd16368SStephen M. Cameron }
5882edd16368SStephen M. Cameron 
5883edd16368SStephen M. Cameron static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp)
5884edd16368SStephen M. Cameron {
5885edd16368SStephen M. Cameron 	DriverVer_type DriverVer;
5886edd16368SStephen M. Cameron 	unsigned char vmaj, vmin, vsubmin;
5887edd16368SStephen M. Cameron 	int rc;
5888edd16368SStephen M. Cameron 
5889edd16368SStephen M. Cameron 	rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu",
5890edd16368SStephen M. Cameron 		&vmaj, &vmin, &vsubmin);
5891edd16368SStephen M. Cameron 	if (rc != 3) {
5892edd16368SStephen M. Cameron 		dev_info(&h->pdev->dev, "driver version string '%s' "
5893edd16368SStephen M. Cameron 			"unrecognized.", HPSA_DRIVER_VERSION);
5894edd16368SStephen M. Cameron 		vmaj = 0;
5895edd16368SStephen M. Cameron 		vmin = 0;
5896edd16368SStephen M. Cameron 		vsubmin = 0;
5897edd16368SStephen M. Cameron 	}
5898edd16368SStephen M. Cameron 	DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin;
5899edd16368SStephen M. Cameron 	if (!argp)
5900edd16368SStephen M. Cameron 		return -EINVAL;
5901edd16368SStephen M. Cameron 	if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type)))
5902edd16368SStephen M. Cameron 		return -EFAULT;
5903edd16368SStephen M. Cameron 	return 0;
5904edd16368SStephen M. Cameron }
5905edd16368SStephen M. Cameron 
5906edd16368SStephen M. Cameron static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp)
5907edd16368SStephen M. Cameron {
5908edd16368SStephen M. Cameron 	IOCTL_Command_struct iocommand;
5909edd16368SStephen M. Cameron 	struct CommandList *c;
5910edd16368SStephen M. Cameron 	char *buff = NULL;
591150a0decfSStephen M. Cameron 	u64 temp64;
5912c1f63c8fSStephen M. Cameron 	int rc = 0;
5913edd16368SStephen M. Cameron 
5914edd16368SStephen M. Cameron 	if (!argp)
5915edd16368SStephen M. Cameron 		return -EINVAL;
5916edd16368SStephen M. Cameron 	if (!capable(CAP_SYS_RAWIO))
5917edd16368SStephen M. Cameron 		return -EPERM;
5918edd16368SStephen M. Cameron 	if (copy_from_user(&iocommand, argp, sizeof(iocommand)))
5919edd16368SStephen M. Cameron 		return -EFAULT;
5920edd16368SStephen M. Cameron 	if ((iocommand.buf_size < 1) &&
5921edd16368SStephen M. Cameron 	    (iocommand.Request.Type.Direction != XFER_NONE)) {
5922edd16368SStephen M. Cameron 		return -EINVAL;
5923edd16368SStephen M. Cameron 	}
5924edd16368SStephen M. Cameron 	if (iocommand.buf_size > 0) {
5925edd16368SStephen M. Cameron 		buff = kmalloc(iocommand.buf_size, GFP_KERNEL);
5926edd16368SStephen M. Cameron 		if (buff == NULL)
59272dd02d74SRobert Elliott 			return -ENOMEM;
59289233fb10SStephen M. Cameron 		if (iocommand.Request.Type.Direction & XFER_WRITE) {
5929edd16368SStephen M. Cameron 			/* Copy the data into the buffer we created */
5930b03a7771SStephen M. Cameron 			if (copy_from_user(buff, iocommand.buf,
5931b03a7771SStephen M. Cameron 				iocommand.buf_size)) {
5932c1f63c8fSStephen M. Cameron 				rc = -EFAULT;
5933c1f63c8fSStephen M. Cameron 				goto out_kfree;
5934edd16368SStephen M. Cameron 			}
5935b03a7771SStephen M. Cameron 		} else {
5936edd16368SStephen M. Cameron 			memset(buff, 0, iocommand.buf_size);
5937b03a7771SStephen M. Cameron 		}
5938b03a7771SStephen M. Cameron 	}
593945fcb86eSStephen Cameron 	c = cmd_alloc(h);
5940bf43caf3SRobert Elliott 
5941edd16368SStephen M. Cameron 	/* Fill in the command type */
5942edd16368SStephen M. Cameron 	c->cmd_type = CMD_IOCTL_PEND;
5943a58e7e53SWebb Scales 	c->scsi_cmd = SCSI_CMD_BUSY;
5944edd16368SStephen M. Cameron 	/* Fill in Command Header */
5945edd16368SStephen M. Cameron 	c->Header.ReplyQueue = 0; /* unused in simple mode */
5946edd16368SStephen M. Cameron 	if (iocommand.buf_size > 0) {	/* buffer to fill */
5947edd16368SStephen M. Cameron 		c->Header.SGList = 1;
594850a0decfSStephen M. Cameron 		c->Header.SGTotal = cpu_to_le16(1);
5949edd16368SStephen M. Cameron 	} else	{ /* no buffers to fill */
5950edd16368SStephen M. Cameron 		c->Header.SGList = 0;
595150a0decfSStephen M. Cameron 		c->Header.SGTotal = cpu_to_le16(0);
5952edd16368SStephen M. Cameron 	}
5953edd16368SStephen M. Cameron 	memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN));
5954edd16368SStephen M. Cameron 
5955edd16368SStephen M. Cameron 	/* Fill in Request block */
5956edd16368SStephen M. Cameron 	memcpy(&c->Request, &iocommand.Request,
5957edd16368SStephen M. Cameron 		sizeof(c->Request));
5958edd16368SStephen M. Cameron 
5959edd16368SStephen M. Cameron 	/* Fill in the scatter gather information */
5960edd16368SStephen M. Cameron 	if (iocommand.buf_size > 0) {
596150a0decfSStephen M. Cameron 		temp64 = pci_map_single(h->pdev, buff,
5962edd16368SStephen M. Cameron 			iocommand.buf_size, PCI_DMA_BIDIRECTIONAL);
596350a0decfSStephen M. Cameron 		if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) {
596450a0decfSStephen M. Cameron 			c->SG[0].Addr = cpu_to_le64(0);
596550a0decfSStephen M. Cameron 			c->SG[0].Len = cpu_to_le32(0);
5966bcc48ffaSStephen M. Cameron 			rc = -ENOMEM;
5967bcc48ffaSStephen M. Cameron 			goto out;
5968bcc48ffaSStephen M. Cameron 		}
596950a0decfSStephen M. Cameron 		c->SG[0].Addr = cpu_to_le64(temp64);
597050a0decfSStephen M. Cameron 		c->SG[0].Len = cpu_to_le32(iocommand.buf_size);
597150a0decfSStephen M. Cameron 		c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */
5972edd16368SStephen M. Cameron 	}
597325163bd5SWebb Scales 	rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
5974c2dd32e0SStephen M. Cameron 	if (iocommand.buf_size > 0)
5975edd16368SStephen M. Cameron 		hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL);
5976edd16368SStephen M. Cameron 	check_ioctl_unit_attention(h, c);
597725163bd5SWebb Scales 	if (rc) {
597825163bd5SWebb Scales 		rc = -EIO;
597925163bd5SWebb Scales 		goto out;
598025163bd5SWebb Scales 	}
5981edd16368SStephen M. Cameron 
5982edd16368SStephen M. Cameron 	/* Copy the error information out */
5983edd16368SStephen M. Cameron 	memcpy(&iocommand.error_info, c->err_info,
5984edd16368SStephen M. Cameron 		sizeof(iocommand.error_info));
5985edd16368SStephen M. Cameron 	if (copy_to_user(argp, &iocommand, sizeof(iocommand))) {
5986c1f63c8fSStephen M. Cameron 		rc = -EFAULT;
5987c1f63c8fSStephen M. Cameron 		goto out;
5988edd16368SStephen M. Cameron 	}
59899233fb10SStephen M. Cameron 	if ((iocommand.Request.Type.Direction & XFER_READ) &&
5990b03a7771SStephen M. Cameron 		iocommand.buf_size > 0) {
5991edd16368SStephen M. Cameron 		/* Copy the data out of the buffer we created */
5992edd16368SStephen M. Cameron 		if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) {
5993c1f63c8fSStephen M. Cameron 			rc = -EFAULT;
5994c1f63c8fSStephen M. Cameron 			goto out;
5995edd16368SStephen M. Cameron 		}
5996edd16368SStephen M. Cameron 	}
5997c1f63c8fSStephen M. Cameron out:
599845fcb86eSStephen Cameron 	cmd_free(h, c);
5999c1f63c8fSStephen M. Cameron out_kfree:
6000c1f63c8fSStephen M. Cameron 	kfree(buff);
6001c1f63c8fSStephen M. Cameron 	return rc;
6002edd16368SStephen M. Cameron }
6003edd16368SStephen M. Cameron 
6004edd16368SStephen M. Cameron static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp)
6005edd16368SStephen M. Cameron {
6006edd16368SStephen M. Cameron 	BIG_IOCTL_Command_struct *ioc;
6007edd16368SStephen M. Cameron 	struct CommandList *c;
6008edd16368SStephen M. Cameron 	unsigned char **buff = NULL;
6009edd16368SStephen M. Cameron 	int *buff_size = NULL;
601050a0decfSStephen M. Cameron 	u64 temp64;
6011edd16368SStephen M. Cameron 	BYTE sg_used = 0;
6012edd16368SStephen M. Cameron 	int status = 0;
601301a02ffcSStephen M. Cameron 	u32 left;
601401a02ffcSStephen M. Cameron 	u32 sz;
6015edd16368SStephen M. Cameron 	BYTE __user *data_ptr;
6016edd16368SStephen M. Cameron 
6017edd16368SStephen M. Cameron 	if (!argp)
6018edd16368SStephen M. Cameron 		return -EINVAL;
6019edd16368SStephen M. Cameron 	if (!capable(CAP_SYS_RAWIO))
6020edd16368SStephen M. Cameron 		return -EPERM;
6021edd16368SStephen M. Cameron 	ioc = (BIG_IOCTL_Command_struct *)
6022edd16368SStephen M. Cameron 	    kmalloc(sizeof(*ioc), GFP_KERNEL);
6023edd16368SStephen M. Cameron 	if (!ioc) {
6024edd16368SStephen M. Cameron 		status = -ENOMEM;
6025edd16368SStephen M. Cameron 		goto cleanup1;
6026edd16368SStephen M. Cameron 	}
6027edd16368SStephen M. Cameron 	if (copy_from_user(ioc, argp, sizeof(*ioc))) {
6028edd16368SStephen M. Cameron 		status = -EFAULT;
6029edd16368SStephen M. Cameron 		goto cleanup1;
6030edd16368SStephen M. Cameron 	}
6031edd16368SStephen M. Cameron 	if ((ioc->buf_size < 1) &&
6032edd16368SStephen M. Cameron 	    (ioc->Request.Type.Direction != XFER_NONE)) {
6033edd16368SStephen M. Cameron 		status = -EINVAL;
6034edd16368SStephen M. Cameron 		goto cleanup1;
6035edd16368SStephen M. Cameron 	}
6036edd16368SStephen M. Cameron 	/* Check kmalloc limits  using all SGs */
6037edd16368SStephen M. Cameron 	if (ioc->malloc_size > MAX_KMALLOC_SIZE) {
6038edd16368SStephen M. Cameron 		status = -EINVAL;
6039edd16368SStephen M. Cameron 		goto cleanup1;
6040edd16368SStephen M. Cameron 	}
6041d66ae08bSStephen M. Cameron 	if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) {
6042edd16368SStephen M. Cameron 		status = -EINVAL;
6043edd16368SStephen M. Cameron 		goto cleanup1;
6044edd16368SStephen M. Cameron 	}
6045d66ae08bSStephen M. Cameron 	buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL);
6046edd16368SStephen M. Cameron 	if (!buff) {
6047edd16368SStephen M. Cameron 		status = -ENOMEM;
6048edd16368SStephen M. Cameron 		goto cleanup1;
6049edd16368SStephen M. Cameron 	}
6050d66ae08bSStephen M. Cameron 	buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL);
6051edd16368SStephen M. Cameron 	if (!buff_size) {
6052edd16368SStephen M. Cameron 		status = -ENOMEM;
6053edd16368SStephen M. Cameron 		goto cleanup1;
6054edd16368SStephen M. Cameron 	}
6055edd16368SStephen M. Cameron 	left = ioc->buf_size;
6056edd16368SStephen M. Cameron 	data_ptr = ioc->buf;
6057edd16368SStephen M. Cameron 	while (left) {
6058edd16368SStephen M. Cameron 		sz = (left > ioc->malloc_size) ? ioc->malloc_size : left;
6059edd16368SStephen M. Cameron 		buff_size[sg_used] = sz;
6060edd16368SStephen M. Cameron 		buff[sg_used] = kmalloc(sz, GFP_KERNEL);
6061edd16368SStephen M. Cameron 		if (buff[sg_used] == NULL) {
6062edd16368SStephen M. Cameron 			status = -ENOMEM;
6063edd16368SStephen M. Cameron 			goto cleanup1;
6064edd16368SStephen M. Cameron 		}
60659233fb10SStephen M. Cameron 		if (ioc->Request.Type.Direction & XFER_WRITE) {
6066edd16368SStephen M. Cameron 			if (copy_from_user(buff[sg_used], data_ptr, sz)) {
60670758f4f7SStephen M. Cameron 				status = -EFAULT;
6068edd16368SStephen M. Cameron 				goto cleanup1;
6069edd16368SStephen M. Cameron 			}
6070edd16368SStephen M. Cameron 		} else
6071edd16368SStephen M. Cameron 			memset(buff[sg_used], 0, sz);
6072edd16368SStephen M. Cameron 		left -= sz;
6073edd16368SStephen M. Cameron 		data_ptr += sz;
6074edd16368SStephen M. Cameron 		sg_used++;
6075edd16368SStephen M. Cameron 	}
607645fcb86eSStephen Cameron 	c = cmd_alloc(h);
6077bf43caf3SRobert Elliott 
6078edd16368SStephen M. Cameron 	c->cmd_type = CMD_IOCTL_PEND;
6079a58e7e53SWebb Scales 	c->scsi_cmd = SCSI_CMD_BUSY;
6080edd16368SStephen M. Cameron 	c->Header.ReplyQueue = 0;
608150a0decfSStephen M. Cameron 	c->Header.SGList = (u8) sg_used;
608250a0decfSStephen M. Cameron 	c->Header.SGTotal = cpu_to_le16(sg_used);
6083edd16368SStephen M. Cameron 	memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN));
6084edd16368SStephen M. Cameron 	memcpy(&c->Request, &ioc->Request, sizeof(c->Request));
6085edd16368SStephen M. Cameron 	if (ioc->buf_size > 0) {
6086edd16368SStephen M. Cameron 		int i;
6087edd16368SStephen M. Cameron 		for (i = 0; i < sg_used; i++) {
608850a0decfSStephen M. Cameron 			temp64 = pci_map_single(h->pdev, buff[i],
6089edd16368SStephen M. Cameron 				    buff_size[i], PCI_DMA_BIDIRECTIONAL);
609050a0decfSStephen M. Cameron 			if (dma_mapping_error(&h->pdev->dev,
609150a0decfSStephen M. Cameron 							(dma_addr_t) temp64)) {
609250a0decfSStephen M. Cameron 				c->SG[i].Addr = cpu_to_le64(0);
609350a0decfSStephen M. Cameron 				c->SG[i].Len = cpu_to_le32(0);
6094bcc48ffaSStephen M. Cameron 				hpsa_pci_unmap(h->pdev, c, i,
6095bcc48ffaSStephen M. Cameron 					PCI_DMA_BIDIRECTIONAL);
6096bcc48ffaSStephen M. Cameron 				status = -ENOMEM;
6097e2d4a1f6SStephen M. Cameron 				goto cleanup0;
6098bcc48ffaSStephen M. Cameron 			}
609950a0decfSStephen M. Cameron 			c->SG[i].Addr = cpu_to_le64(temp64);
610050a0decfSStephen M. Cameron 			c->SG[i].Len = cpu_to_le32(buff_size[i]);
610150a0decfSStephen M. Cameron 			c->SG[i].Ext = cpu_to_le32(0);
6102edd16368SStephen M. Cameron 		}
610350a0decfSStephen M. Cameron 		c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST);
6104edd16368SStephen M. Cameron 	}
610525163bd5SWebb Scales 	status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT);
6106b03a7771SStephen M. Cameron 	if (sg_used)
6107edd16368SStephen M. Cameron 		hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL);
6108edd16368SStephen M. Cameron 	check_ioctl_unit_attention(h, c);
610925163bd5SWebb Scales 	if (status) {
611025163bd5SWebb Scales 		status = -EIO;
611125163bd5SWebb Scales 		goto cleanup0;
611225163bd5SWebb Scales 	}
611325163bd5SWebb Scales 
6114edd16368SStephen M. Cameron 	/* Copy the error information out */
6115edd16368SStephen M. Cameron 	memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info));
6116edd16368SStephen M. Cameron 	if (copy_to_user(argp, ioc, sizeof(*ioc))) {
6117edd16368SStephen M. Cameron 		status = -EFAULT;
6118e2d4a1f6SStephen M. Cameron 		goto cleanup0;
6119edd16368SStephen M. Cameron 	}
61209233fb10SStephen M. Cameron 	if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) {
61212b08b3e9SDon Brace 		int i;
61222b08b3e9SDon Brace 
6123edd16368SStephen M. Cameron 		/* Copy the data out of the buffer we created */
6124edd16368SStephen M. Cameron 		BYTE __user *ptr = ioc->buf;
6125edd16368SStephen M. Cameron 		for (i = 0; i < sg_used; i++) {
6126edd16368SStephen M. Cameron 			if (copy_to_user(ptr, buff[i], buff_size[i])) {
6127edd16368SStephen M. Cameron 				status = -EFAULT;
6128e2d4a1f6SStephen M. Cameron 				goto cleanup0;
6129edd16368SStephen M. Cameron 			}
6130edd16368SStephen M. Cameron 			ptr += buff_size[i];
6131edd16368SStephen M. Cameron 		}
6132edd16368SStephen M. Cameron 	}
6133edd16368SStephen M. Cameron 	status = 0;
6134e2d4a1f6SStephen M. Cameron cleanup0:
613545fcb86eSStephen Cameron 	cmd_free(h, c);
6136edd16368SStephen M. Cameron cleanup1:
6137edd16368SStephen M. Cameron 	if (buff) {
61382b08b3e9SDon Brace 		int i;
61392b08b3e9SDon Brace 
6140edd16368SStephen M. Cameron 		for (i = 0; i < sg_used; i++)
6141edd16368SStephen M. Cameron 			kfree(buff[i]);
6142edd16368SStephen M. Cameron 		kfree(buff);
6143edd16368SStephen M. Cameron 	}
6144edd16368SStephen M. Cameron 	kfree(buff_size);
6145edd16368SStephen M. Cameron 	kfree(ioc);
6146edd16368SStephen M. Cameron 	return status;
6147edd16368SStephen M. Cameron }
6148edd16368SStephen M. Cameron 
6149edd16368SStephen M. Cameron static void check_ioctl_unit_attention(struct ctlr_info *h,
6150edd16368SStephen M. Cameron 	struct CommandList *c)
6151edd16368SStephen M. Cameron {
6152edd16368SStephen M. Cameron 	if (c->err_info->CommandStatus == CMD_TARGET_STATUS &&
6153edd16368SStephen M. Cameron 			c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION)
6154edd16368SStephen M. Cameron 		(void) check_for_unit_attention(h, c);
6155edd16368SStephen M. Cameron }
61560390f0c0SStephen M. Cameron 
6157edd16368SStephen M. Cameron /*
6158edd16368SStephen M. Cameron  * ioctl
6159edd16368SStephen M. Cameron  */
616042a91641SDon Brace static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg)
6161edd16368SStephen M. Cameron {
6162edd16368SStephen M. Cameron 	struct ctlr_info *h;
6163edd16368SStephen M. Cameron 	void __user *argp = (void __user *)arg;
61640390f0c0SStephen M. Cameron 	int rc;
6165edd16368SStephen M. Cameron 
6166edd16368SStephen M. Cameron 	h = sdev_to_hba(dev);
6167edd16368SStephen M. Cameron 
6168edd16368SStephen M. Cameron 	switch (cmd) {
6169edd16368SStephen M. Cameron 	case CCISS_DEREGDISK:
6170edd16368SStephen M. Cameron 	case CCISS_REGNEWDISK:
6171edd16368SStephen M. Cameron 	case CCISS_REGNEWD:
6172a08a8471SStephen M. Cameron 		hpsa_scan_start(h->scsi_host);
6173edd16368SStephen M. Cameron 		return 0;
6174edd16368SStephen M. Cameron 	case CCISS_GETPCIINFO:
6175edd16368SStephen M. Cameron 		return hpsa_getpciinfo_ioctl(h, argp);
6176edd16368SStephen M. Cameron 	case CCISS_GETDRIVVER:
6177edd16368SStephen M. Cameron 		return hpsa_getdrivver_ioctl(h, argp);
6178edd16368SStephen M. Cameron 	case CCISS_PASSTHRU:
617934f0c627SDon Brace 		if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
61800390f0c0SStephen M. Cameron 			return -EAGAIN;
61810390f0c0SStephen M. Cameron 		rc = hpsa_passthru_ioctl(h, argp);
618234f0c627SDon Brace 		atomic_inc(&h->passthru_cmds_avail);
61830390f0c0SStephen M. Cameron 		return rc;
6184edd16368SStephen M. Cameron 	case CCISS_BIG_PASSTHRU:
618534f0c627SDon Brace 		if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0)
61860390f0c0SStephen M. Cameron 			return -EAGAIN;
61870390f0c0SStephen M. Cameron 		rc = hpsa_big_passthru_ioctl(h, argp);
618834f0c627SDon Brace 		atomic_inc(&h->passthru_cmds_avail);
61890390f0c0SStephen M. Cameron 		return rc;
6190edd16368SStephen M. Cameron 	default:
6191edd16368SStephen M. Cameron 		return -ENOTTY;
6192edd16368SStephen M. Cameron 	}
6193edd16368SStephen M. Cameron }
6194edd16368SStephen M. Cameron 
6195bf43caf3SRobert Elliott static void hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr,
61966f039790SGreg Kroah-Hartman 				u8 reset_type)
619764670ac8SStephen M. Cameron {
619864670ac8SStephen M. Cameron 	struct CommandList *c;
619964670ac8SStephen M. Cameron 
620064670ac8SStephen M. Cameron 	c = cmd_alloc(h);
6201bf43caf3SRobert Elliott 
6202a2dac136SStephen M. Cameron 	/* fill_cmd can't fail here, no data buffer to map */
6203a2dac136SStephen M. Cameron 	(void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0,
620464670ac8SStephen M. Cameron 		RAID_CTLR_LUNID, TYPE_MSG);
620564670ac8SStephen M. Cameron 	c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */
620664670ac8SStephen M. Cameron 	c->waiting = NULL;
620764670ac8SStephen M. Cameron 	enqueue_cmd_and_start_io(h, c);
620864670ac8SStephen M. Cameron 	/* Don't wait for completion, the reset won't complete.  Don't free
620964670ac8SStephen M. Cameron 	 * the command either.  This is the last command we will send before
621064670ac8SStephen M. Cameron 	 * re-initializing everything, so it doesn't matter and won't leak.
621164670ac8SStephen M. Cameron 	 */
6212bf43caf3SRobert Elliott 	return;
621364670ac8SStephen M. Cameron }
621464670ac8SStephen M. Cameron 
6215a2dac136SStephen M. Cameron static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h,
6216b7bb24ebSStephen M. Cameron 	void *buff, size_t size, u16 page_code, unsigned char *scsi3addr,
6217edd16368SStephen M. Cameron 	int cmd_type)
6218edd16368SStephen M. Cameron {
6219edd16368SStephen M. Cameron 	int pci_dir = XFER_NONE;
62209b5c48c2SStephen Cameron 	u64 tag; /* for commands to be aborted */
6221edd16368SStephen M. Cameron 
6222edd16368SStephen M. Cameron 	c->cmd_type = CMD_IOCTL_PEND;
6223a58e7e53SWebb Scales 	c->scsi_cmd = SCSI_CMD_BUSY;
6224edd16368SStephen M. Cameron 	c->Header.ReplyQueue = 0;
6225edd16368SStephen M. Cameron 	if (buff != NULL && size > 0) {
6226edd16368SStephen M. Cameron 		c->Header.SGList = 1;
622750a0decfSStephen M. Cameron 		c->Header.SGTotal = cpu_to_le16(1);
6228edd16368SStephen M. Cameron 	} else {
6229edd16368SStephen M. Cameron 		c->Header.SGList = 0;
623050a0decfSStephen M. Cameron 		c->Header.SGTotal = cpu_to_le16(0);
6231edd16368SStephen M. Cameron 	}
6232edd16368SStephen M. Cameron 	memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8);
6233edd16368SStephen M. Cameron 
6234edd16368SStephen M. Cameron 	if (cmd_type == TYPE_CMD) {
6235edd16368SStephen M. Cameron 		switch (cmd) {
6236edd16368SStephen M. Cameron 		case HPSA_INQUIRY:
6237edd16368SStephen M. Cameron 			/* are we trying to read a vital product page */
6238b7bb24ebSStephen M. Cameron 			if (page_code & VPD_PAGE) {
6239edd16368SStephen M. Cameron 				c->Request.CDB[1] = 0x01;
6240b7bb24ebSStephen M. Cameron 				c->Request.CDB[2] = (page_code & 0xff);
6241edd16368SStephen M. Cameron 			}
6242edd16368SStephen M. Cameron 			c->Request.CDBLen = 6;
6243a505b86fSStephen M. Cameron 			c->Request.type_attr_dir =
6244a505b86fSStephen M. Cameron 				TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6245edd16368SStephen M. Cameron 			c->Request.Timeout = 0;
6246edd16368SStephen M. Cameron 			c->Request.CDB[0] = HPSA_INQUIRY;
6247edd16368SStephen M. Cameron 			c->Request.CDB[4] = size & 0xFF;
6248edd16368SStephen M. Cameron 			break;
6249edd16368SStephen M. Cameron 		case HPSA_REPORT_LOG:
6250edd16368SStephen M. Cameron 		case HPSA_REPORT_PHYS:
6251edd16368SStephen M. Cameron 			/* Talking to controller so It's a physical command
6252edd16368SStephen M. Cameron 			   mode = 00 target = 0.  Nothing to write.
6253edd16368SStephen M. Cameron 			 */
6254edd16368SStephen M. Cameron 			c->Request.CDBLen = 12;
6255a505b86fSStephen M. Cameron 			c->Request.type_attr_dir =
6256a505b86fSStephen M. Cameron 				TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6257edd16368SStephen M. Cameron 			c->Request.Timeout = 0;
6258edd16368SStephen M. Cameron 			c->Request.CDB[0] = cmd;
6259edd16368SStephen M. Cameron 			c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6260edd16368SStephen M. Cameron 			c->Request.CDB[7] = (size >> 16) & 0xFF;
6261edd16368SStephen M. Cameron 			c->Request.CDB[8] = (size >> 8) & 0xFF;
6262edd16368SStephen M. Cameron 			c->Request.CDB[9] = size & 0xFF;
6263edd16368SStephen M. Cameron 			break;
6264edd16368SStephen M. Cameron 		case HPSA_CACHE_FLUSH:
6265edd16368SStephen M. Cameron 			c->Request.CDBLen = 12;
6266a505b86fSStephen M. Cameron 			c->Request.type_attr_dir =
6267a505b86fSStephen M. Cameron 					TYPE_ATTR_DIR(cmd_type,
6268a505b86fSStephen M. Cameron 						ATTR_SIMPLE, XFER_WRITE);
6269edd16368SStephen M. Cameron 			c->Request.Timeout = 0;
6270edd16368SStephen M. Cameron 			c->Request.CDB[0] = BMIC_WRITE;
6271edd16368SStephen M. Cameron 			c->Request.CDB[6] = BMIC_CACHE_FLUSH;
6272bb158eabSStephen M. Cameron 			c->Request.CDB[7] = (size >> 8) & 0xFF;
6273bb158eabSStephen M. Cameron 			c->Request.CDB[8] = size & 0xFF;
6274edd16368SStephen M. Cameron 			break;
6275edd16368SStephen M. Cameron 		case TEST_UNIT_READY:
6276edd16368SStephen M. Cameron 			c->Request.CDBLen = 6;
6277a505b86fSStephen M. Cameron 			c->Request.type_attr_dir =
6278a505b86fSStephen M. Cameron 				TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
6279edd16368SStephen M. Cameron 			c->Request.Timeout = 0;
6280edd16368SStephen M. Cameron 			break;
6281283b4a9bSStephen M. Cameron 		case HPSA_GET_RAID_MAP:
6282283b4a9bSStephen M. Cameron 			c->Request.CDBLen = 12;
6283a505b86fSStephen M. Cameron 			c->Request.type_attr_dir =
6284a505b86fSStephen M. Cameron 				TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6285283b4a9bSStephen M. Cameron 			c->Request.Timeout = 0;
6286283b4a9bSStephen M. Cameron 			c->Request.CDB[0] = HPSA_CISS_READ;
6287283b4a9bSStephen M. Cameron 			c->Request.CDB[1] = cmd;
6288283b4a9bSStephen M. Cameron 			c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */
6289283b4a9bSStephen M. Cameron 			c->Request.CDB[7] = (size >> 16) & 0xFF;
6290283b4a9bSStephen M. Cameron 			c->Request.CDB[8] = (size >> 8) & 0xFF;
6291283b4a9bSStephen M. Cameron 			c->Request.CDB[9] = size & 0xFF;
6292283b4a9bSStephen M. Cameron 			break;
6293316b221aSStephen M. Cameron 		case BMIC_SENSE_CONTROLLER_PARAMETERS:
6294316b221aSStephen M. Cameron 			c->Request.CDBLen = 10;
6295a505b86fSStephen M. Cameron 			c->Request.type_attr_dir =
6296a505b86fSStephen M. Cameron 				TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
6297316b221aSStephen M. Cameron 			c->Request.Timeout = 0;
6298316b221aSStephen M. Cameron 			c->Request.CDB[0] = BMIC_READ;
6299316b221aSStephen M. Cameron 			c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS;
6300316b221aSStephen M. Cameron 			c->Request.CDB[7] = (size >> 16) & 0xFF;
6301316b221aSStephen M. Cameron 			c->Request.CDB[8] = (size >> 8) & 0xFF;
6302316b221aSStephen M. Cameron 			break;
630303383736SDon Brace 		case BMIC_IDENTIFY_PHYSICAL_DEVICE:
630403383736SDon Brace 			c->Request.CDBLen = 10;
630503383736SDon Brace 			c->Request.type_attr_dir =
630603383736SDon Brace 				TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ);
630703383736SDon Brace 			c->Request.Timeout = 0;
630803383736SDon Brace 			c->Request.CDB[0] = BMIC_READ;
630903383736SDon Brace 			c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE;
631003383736SDon Brace 			c->Request.CDB[7] = (size >> 16) & 0xFF;
631103383736SDon Brace 			c->Request.CDB[8] = (size >> 8) & 0XFF;
631203383736SDon Brace 			break;
6313edd16368SStephen M. Cameron 		default:
6314edd16368SStephen M. Cameron 			dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd);
6315edd16368SStephen M. Cameron 			BUG();
6316a2dac136SStephen M. Cameron 			return -1;
6317edd16368SStephen M. Cameron 		}
6318edd16368SStephen M. Cameron 	} else if (cmd_type == TYPE_MSG) {
6319edd16368SStephen M. Cameron 		switch (cmd) {
6320edd16368SStephen M. Cameron 
6321edd16368SStephen M. Cameron 		case  HPSA_DEVICE_RESET_MSG:
6322edd16368SStephen M. Cameron 			c->Request.CDBLen = 16;
6323a505b86fSStephen M. Cameron 			c->Request.type_attr_dir =
6324a505b86fSStephen M. Cameron 				TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE);
6325edd16368SStephen M. Cameron 			c->Request.Timeout = 0; /* Don't time out */
632664670ac8SStephen M. Cameron 			memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB));
632764670ac8SStephen M. Cameron 			c->Request.CDB[0] =  cmd;
632821e89afdSStephen M. Cameron 			c->Request.CDB[1] = HPSA_RESET_TYPE_LUN;
6329edd16368SStephen M. Cameron 			/* If bytes 4-7 are zero, it means reset the */
6330edd16368SStephen M. Cameron 			/* LunID device */
6331edd16368SStephen M. Cameron 			c->Request.CDB[4] = 0x00;
6332edd16368SStephen M. Cameron 			c->Request.CDB[5] = 0x00;
6333edd16368SStephen M. Cameron 			c->Request.CDB[6] = 0x00;
6334edd16368SStephen M. Cameron 			c->Request.CDB[7] = 0x00;
6335edd16368SStephen M. Cameron 			break;
633675167d2cSStephen M. Cameron 		case  HPSA_ABORT_MSG:
63379b5c48c2SStephen Cameron 			memcpy(&tag, buff, sizeof(tag));
63382b08b3e9SDon Brace 			dev_dbg(&h->pdev->dev,
63399b5c48c2SStephen Cameron 				"Abort Tag:0x%016llx using rqst Tag:0x%016llx",
63409b5c48c2SStephen Cameron 				tag, c->Header.tag);
634175167d2cSStephen M. Cameron 			c->Request.CDBLen = 16;
6342a505b86fSStephen M. Cameron 			c->Request.type_attr_dir =
6343a505b86fSStephen M. Cameron 					TYPE_ATTR_DIR(cmd_type,
6344a505b86fSStephen M. Cameron 						ATTR_SIMPLE, XFER_WRITE);
634575167d2cSStephen M. Cameron 			c->Request.Timeout = 0; /* Don't time out */
634675167d2cSStephen M. Cameron 			c->Request.CDB[0] = HPSA_TASK_MANAGEMENT;
634775167d2cSStephen M. Cameron 			c->Request.CDB[1] = HPSA_TMF_ABORT_TASK;
634875167d2cSStephen M. Cameron 			c->Request.CDB[2] = 0x00; /* reserved */
634975167d2cSStephen M. Cameron 			c->Request.CDB[3] = 0x00; /* reserved */
635075167d2cSStephen M. Cameron 			/* Tag to abort goes in CDB[4]-CDB[11] */
63519b5c48c2SStephen Cameron 			memcpy(&c->Request.CDB[4], &tag, sizeof(tag));
635275167d2cSStephen M. Cameron 			c->Request.CDB[12] = 0x00; /* reserved */
635375167d2cSStephen M. Cameron 			c->Request.CDB[13] = 0x00; /* reserved */
635475167d2cSStephen M. Cameron 			c->Request.CDB[14] = 0x00; /* reserved */
635575167d2cSStephen M. Cameron 			c->Request.CDB[15] = 0x00; /* reserved */
635675167d2cSStephen M. Cameron 		break;
6357edd16368SStephen M. Cameron 		default:
6358edd16368SStephen M. Cameron 			dev_warn(&h->pdev->dev, "unknown message type %d\n",
6359edd16368SStephen M. Cameron 				cmd);
6360edd16368SStephen M. Cameron 			BUG();
6361edd16368SStephen M. Cameron 		}
6362edd16368SStephen M. Cameron 	} else {
6363edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type);
6364edd16368SStephen M. Cameron 		BUG();
6365edd16368SStephen M. Cameron 	}
6366edd16368SStephen M. Cameron 
6367a505b86fSStephen M. Cameron 	switch (GET_DIR(c->Request.type_attr_dir)) {
6368edd16368SStephen M. Cameron 	case XFER_READ:
6369edd16368SStephen M. Cameron 		pci_dir = PCI_DMA_FROMDEVICE;
6370edd16368SStephen M. Cameron 		break;
6371edd16368SStephen M. Cameron 	case XFER_WRITE:
6372edd16368SStephen M. Cameron 		pci_dir = PCI_DMA_TODEVICE;
6373edd16368SStephen M. Cameron 		break;
6374edd16368SStephen M. Cameron 	case XFER_NONE:
6375edd16368SStephen M. Cameron 		pci_dir = PCI_DMA_NONE;
6376edd16368SStephen M. Cameron 		break;
6377edd16368SStephen M. Cameron 	default:
6378edd16368SStephen M. Cameron 		pci_dir = PCI_DMA_BIDIRECTIONAL;
6379edd16368SStephen M. Cameron 	}
6380a2dac136SStephen M. Cameron 	if (hpsa_map_one(h->pdev, c, buff, size, pci_dir))
6381a2dac136SStephen M. Cameron 		return -1;
6382a2dac136SStephen M. Cameron 	return 0;
6383edd16368SStephen M. Cameron }
6384edd16368SStephen M. Cameron 
6385edd16368SStephen M. Cameron /*
6386edd16368SStephen M. Cameron  * Map (physical) PCI mem into (virtual) kernel space
6387edd16368SStephen M. Cameron  */
6388edd16368SStephen M. Cameron static void __iomem *remap_pci_mem(ulong base, ulong size)
6389edd16368SStephen M. Cameron {
6390edd16368SStephen M. Cameron 	ulong page_base = ((ulong) base) & PAGE_MASK;
6391edd16368SStephen M. Cameron 	ulong page_offs = ((ulong) base) - page_base;
6392088ba34cSStephen M. Cameron 	void __iomem *page_remapped = ioremap_nocache(page_base,
6393088ba34cSStephen M. Cameron 		page_offs + size);
6394edd16368SStephen M. Cameron 
6395edd16368SStephen M. Cameron 	return page_remapped ? (page_remapped + page_offs) : NULL;
6396edd16368SStephen M. Cameron }
6397edd16368SStephen M. Cameron 
6398254f796bSMatt Gates static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q)
6399edd16368SStephen M. Cameron {
6400254f796bSMatt Gates 	return h->access.command_completed(h, q);
6401edd16368SStephen M. Cameron }
6402edd16368SStephen M. Cameron 
6403900c5440SStephen M. Cameron static inline bool interrupt_pending(struct ctlr_info *h)
6404edd16368SStephen M. Cameron {
6405edd16368SStephen M. Cameron 	return h->access.intr_pending(h);
6406edd16368SStephen M. Cameron }
6407edd16368SStephen M. Cameron 
6408edd16368SStephen M. Cameron static inline long interrupt_not_for_us(struct ctlr_info *h)
6409edd16368SStephen M. Cameron {
641010f66018SStephen M. Cameron 	return (h->access.intr_pending(h) == 0) ||
641110f66018SStephen M. Cameron 		(h->interrupts_enabled == 0);
6412edd16368SStephen M. Cameron }
6413edd16368SStephen M. Cameron 
641401a02ffcSStephen M. Cameron static inline int bad_tag(struct ctlr_info *h, u32 tag_index,
641501a02ffcSStephen M. Cameron 	u32 raw_tag)
6416edd16368SStephen M. Cameron {
6417edd16368SStephen M. Cameron 	if (unlikely(tag_index >= h->nr_cmds)) {
6418edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag);
6419edd16368SStephen M. Cameron 		return 1;
6420edd16368SStephen M. Cameron 	}
6421edd16368SStephen M. Cameron 	return 0;
6422edd16368SStephen M. Cameron }
6423edd16368SStephen M. Cameron 
64245a3d16f5SStephen M. Cameron static inline void finish_cmd(struct CommandList *c)
6425edd16368SStephen M. Cameron {
6426e85c5974SStephen M. Cameron 	dial_up_lockup_detection_on_fw_flash_complete(c->h, c);
6427c349775eSScott Teel 	if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI
6428c349775eSScott Teel 			|| c->cmd_type == CMD_IOACCEL2))
64291fb011fbSStephen M. Cameron 		complete_scsi_command(c);
64308be986ccSStephen Cameron 	else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF)
6431edd16368SStephen M. Cameron 		complete(c->waiting);
6432a104c99fSStephen M. Cameron }
6433a104c99fSStephen M. Cameron 
6434a9a3a273SStephen M. Cameron 
6435a9a3a273SStephen M. Cameron static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag)
6436a104c99fSStephen M. Cameron {
6437a9a3a273SStephen M. Cameron #define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1)
6438a9a3a273SStephen M. Cameron #define HPSA_SIMPLE_ERROR_BITS 0x03
6439960a30e7SStephen M. Cameron 	if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant)))
6440a9a3a273SStephen M. Cameron 		return tag & ~HPSA_SIMPLE_ERROR_BITS;
6441a9a3a273SStephen M. Cameron 	return tag & ~HPSA_PERF_ERROR_BITS;
6442a104c99fSStephen M. Cameron }
6443a104c99fSStephen M. Cameron 
6444303932fdSDon Brace /* process completion of an indexed ("direct lookup") command */
64451d94f94dSStephen M. Cameron static inline void process_indexed_cmd(struct ctlr_info *h,
6446303932fdSDon Brace 	u32 raw_tag)
6447303932fdSDon Brace {
6448303932fdSDon Brace 	u32 tag_index;
6449303932fdSDon Brace 	struct CommandList *c;
6450303932fdSDon Brace 
6451f2405db8SDon Brace 	tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT;
64521d94f94dSStephen M. Cameron 	if (!bad_tag(h, tag_index, raw_tag)) {
6453303932fdSDon Brace 		c = h->cmd_pool + tag_index;
64545a3d16f5SStephen M. Cameron 		finish_cmd(c);
64551d94f94dSStephen M. Cameron 	}
6456303932fdSDon Brace }
6457303932fdSDon Brace 
645864670ac8SStephen M. Cameron /* Some controllers, like p400, will give us one interrupt
645964670ac8SStephen M. Cameron  * after a soft reset, even if we turned interrupts off.
646064670ac8SStephen M. Cameron  * Only need to check for this in the hpsa_xxx_discard_completions
646164670ac8SStephen M. Cameron  * functions.
646264670ac8SStephen M. Cameron  */
646364670ac8SStephen M. Cameron static int ignore_bogus_interrupt(struct ctlr_info *h)
646464670ac8SStephen M. Cameron {
646564670ac8SStephen M. Cameron 	if (likely(!reset_devices))
646664670ac8SStephen M. Cameron 		return 0;
646764670ac8SStephen M. Cameron 
646864670ac8SStephen M. Cameron 	if (likely(h->interrupts_enabled))
646964670ac8SStephen M. Cameron 		return 0;
647064670ac8SStephen M. Cameron 
647164670ac8SStephen M. Cameron 	dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled "
647264670ac8SStephen M. Cameron 		"(known firmware bug.)  Ignoring.\n");
647364670ac8SStephen M. Cameron 
647464670ac8SStephen M. Cameron 	return 1;
647564670ac8SStephen M. Cameron }
647664670ac8SStephen M. Cameron 
6477254f796bSMatt Gates /*
6478254f796bSMatt Gates  * Convert &h->q[x] (passed to interrupt handlers) back to h.
6479254f796bSMatt Gates  * Relies on (h-q[x] == x) being true for x such that
6480254f796bSMatt Gates  * 0 <= x < MAX_REPLY_QUEUES.
6481254f796bSMatt Gates  */
6482254f796bSMatt Gates static struct ctlr_info *queue_to_hba(u8 *queue)
648364670ac8SStephen M. Cameron {
6484254f796bSMatt Gates 	return container_of((queue - *queue), struct ctlr_info, q[0]);
6485254f796bSMatt Gates }
6486254f796bSMatt Gates 
6487254f796bSMatt Gates static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue)
6488254f796bSMatt Gates {
6489254f796bSMatt Gates 	struct ctlr_info *h = queue_to_hba(queue);
6490254f796bSMatt Gates 	u8 q = *(u8 *) queue;
649164670ac8SStephen M. Cameron 	u32 raw_tag;
649264670ac8SStephen M. Cameron 
649364670ac8SStephen M. Cameron 	if (ignore_bogus_interrupt(h))
649464670ac8SStephen M. Cameron 		return IRQ_NONE;
649564670ac8SStephen M. Cameron 
649664670ac8SStephen M. Cameron 	if (interrupt_not_for_us(h))
649764670ac8SStephen M. Cameron 		return IRQ_NONE;
6498a0c12413SStephen M. Cameron 	h->last_intr_timestamp = get_jiffies_64();
649964670ac8SStephen M. Cameron 	while (interrupt_pending(h)) {
6500254f796bSMatt Gates 		raw_tag = get_next_completion(h, q);
650164670ac8SStephen M. Cameron 		while (raw_tag != FIFO_EMPTY)
6502254f796bSMatt Gates 			raw_tag = next_command(h, q);
650364670ac8SStephen M. Cameron 	}
650464670ac8SStephen M. Cameron 	return IRQ_HANDLED;
650564670ac8SStephen M. Cameron }
650664670ac8SStephen M. Cameron 
6507254f796bSMatt Gates static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue)
650864670ac8SStephen M. Cameron {
6509254f796bSMatt Gates 	struct ctlr_info *h = queue_to_hba(queue);
651064670ac8SStephen M. Cameron 	u32 raw_tag;
6511254f796bSMatt Gates 	u8 q = *(u8 *) queue;
651264670ac8SStephen M. Cameron 
651364670ac8SStephen M. Cameron 	if (ignore_bogus_interrupt(h))
651464670ac8SStephen M. Cameron 		return IRQ_NONE;
651564670ac8SStephen M. Cameron 
6516a0c12413SStephen M. Cameron 	h->last_intr_timestamp = get_jiffies_64();
6517254f796bSMatt Gates 	raw_tag = get_next_completion(h, q);
651864670ac8SStephen M. Cameron 	while (raw_tag != FIFO_EMPTY)
6519254f796bSMatt Gates 		raw_tag = next_command(h, q);
652064670ac8SStephen M. Cameron 	return IRQ_HANDLED;
652164670ac8SStephen M. Cameron }
652264670ac8SStephen M. Cameron 
6523254f796bSMatt Gates static irqreturn_t do_hpsa_intr_intx(int irq, void *queue)
6524edd16368SStephen M. Cameron {
6525254f796bSMatt Gates 	struct ctlr_info *h = queue_to_hba((u8 *) queue);
6526303932fdSDon Brace 	u32 raw_tag;
6527254f796bSMatt Gates 	u8 q = *(u8 *) queue;
6528edd16368SStephen M. Cameron 
6529edd16368SStephen M. Cameron 	if (interrupt_not_for_us(h))
6530edd16368SStephen M. Cameron 		return IRQ_NONE;
6531a0c12413SStephen M. Cameron 	h->last_intr_timestamp = get_jiffies_64();
653210f66018SStephen M. Cameron 	while (interrupt_pending(h)) {
6533254f796bSMatt Gates 		raw_tag = get_next_completion(h, q);
653410f66018SStephen M. Cameron 		while (raw_tag != FIFO_EMPTY) {
65351d94f94dSStephen M. Cameron 			process_indexed_cmd(h, raw_tag);
6536254f796bSMatt Gates 			raw_tag = next_command(h, q);
653710f66018SStephen M. Cameron 		}
653810f66018SStephen M. Cameron 	}
653910f66018SStephen M. Cameron 	return IRQ_HANDLED;
654010f66018SStephen M. Cameron }
654110f66018SStephen M. Cameron 
6542254f796bSMatt Gates static irqreturn_t do_hpsa_intr_msi(int irq, void *queue)
654310f66018SStephen M. Cameron {
6544254f796bSMatt Gates 	struct ctlr_info *h = queue_to_hba(queue);
654510f66018SStephen M. Cameron 	u32 raw_tag;
6546254f796bSMatt Gates 	u8 q = *(u8 *) queue;
654710f66018SStephen M. Cameron 
6548a0c12413SStephen M. Cameron 	h->last_intr_timestamp = get_jiffies_64();
6549254f796bSMatt Gates 	raw_tag = get_next_completion(h, q);
6550303932fdSDon Brace 	while (raw_tag != FIFO_EMPTY) {
65511d94f94dSStephen M. Cameron 		process_indexed_cmd(h, raw_tag);
6552254f796bSMatt Gates 		raw_tag = next_command(h, q);
6553edd16368SStephen M. Cameron 	}
6554edd16368SStephen M. Cameron 	return IRQ_HANDLED;
6555edd16368SStephen M. Cameron }
6556edd16368SStephen M. Cameron 
6557a9a3a273SStephen M. Cameron /* Send a message CDB to the firmware. Careful, this only works
6558a9a3a273SStephen M. Cameron  * in simple mode, not performant mode due to the tag lookup.
6559a9a3a273SStephen M. Cameron  * We only ever use this immediately after a controller reset.
6560a9a3a273SStephen M. Cameron  */
65616f039790SGreg Kroah-Hartman static int hpsa_message(struct pci_dev *pdev, unsigned char opcode,
6562edd16368SStephen M. Cameron 			unsigned char type)
6563edd16368SStephen M. Cameron {
6564edd16368SStephen M. Cameron 	struct Command {
6565edd16368SStephen M. Cameron 		struct CommandListHeader CommandHeader;
6566edd16368SStephen M. Cameron 		struct RequestBlock Request;
6567edd16368SStephen M. Cameron 		struct ErrDescriptor ErrorDescriptor;
6568edd16368SStephen M. Cameron 	};
6569edd16368SStephen M. Cameron 	struct Command *cmd;
6570edd16368SStephen M. Cameron 	static const size_t cmd_sz = sizeof(*cmd) +
6571edd16368SStephen M. Cameron 					sizeof(cmd->ErrorDescriptor);
6572edd16368SStephen M. Cameron 	dma_addr_t paddr64;
65732b08b3e9SDon Brace 	__le32 paddr32;
65742b08b3e9SDon Brace 	u32 tag;
6575edd16368SStephen M. Cameron 	void __iomem *vaddr;
6576edd16368SStephen M. Cameron 	int i, err;
6577edd16368SStephen M. Cameron 
6578edd16368SStephen M. Cameron 	vaddr = pci_ioremap_bar(pdev, 0);
6579edd16368SStephen M. Cameron 	if (vaddr == NULL)
6580edd16368SStephen M. Cameron 		return -ENOMEM;
6581edd16368SStephen M. Cameron 
6582edd16368SStephen M. Cameron 	/* The Inbound Post Queue only accepts 32-bit physical addresses for the
6583edd16368SStephen M. Cameron 	 * CCISS commands, so they must be allocated from the lower 4GiB of
6584edd16368SStephen M. Cameron 	 * memory.
6585edd16368SStephen M. Cameron 	 */
6586edd16368SStephen M. Cameron 	err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
6587edd16368SStephen M. Cameron 	if (err) {
6588edd16368SStephen M. Cameron 		iounmap(vaddr);
65891eaec8f3SRobert Elliott 		return err;
6590edd16368SStephen M. Cameron 	}
6591edd16368SStephen M. Cameron 
6592edd16368SStephen M. Cameron 	cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64);
6593edd16368SStephen M. Cameron 	if (cmd == NULL) {
6594edd16368SStephen M. Cameron 		iounmap(vaddr);
6595edd16368SStephen M. Cameron 		return -ENOMEM;
6596edd16368SStephen M. Cameron 	}
6597edd16368SStephen M. Cameron 
6598edd16368SStephen M. Cameron 	/* This must fit, because of the 32-bit consistent DMA mask.  Also,
6599edd16368SStephen M. Cameron 	 * although there's no guarantee, we assume that the address is at
6600edd16368SStephen M. Cameron 	 * least 4-byte aligned (most likely, it's page-aligned).
6601edd16368SStephen M. Cameron 	 */
66022b08b3e9SDon Brace 	paddr32 = cpu_to_le32(paddr64);
6603edd16368SStephen M. Cameron 
6604edd16368SStephen M. Cameron 	cmd->CommandHeader.ReplyQueue = 0;
6605edd16368SStephen M. Cameron 	cmd->CommandHeader.SGList = 0;
660650a0decfSStephen M. Cameron 	cmd->CommandHeader.SGTotal = cpu_to_le16(0);
66072b08b3e9SDon Brace 	cmd->CommandHeader.tag = cpu_to_le64(paddr64);
6608edd16368SStephen M. Cameron 	memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8);
6609edd16368SStephen M. Cameron 
6610edd16368SStephen M. Cameron 	cmd->Request.CDBLen = 16;
6611a505b86fSStephen M. Cameron 	cmd->Request.type_attr_dir =
6612a505b86fSStephen M. Cameron 			TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE);
6613edd16368SStephen M. Cameron 	cmd->Request.Timeout = 0; /* Don't time out */
6614edd16368SStephen M. Cameron 	cmd->Request.CDB[0] = opcode;
6615edd16368SStephen M. Cameron 	cmd->Request.CDB[1] = type;
6616edd16368SStephen M. Cameron 	memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */
661750a0decfSStephen M. Cameron 	cmd->ErrorDescriptor.Addr =
66182b08b3e9SDon Brace 			cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd)));
661950a0decfSStephen M. Cameron 	cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo));
6620edd16368SStephen M. Cameron 
66212b08b3e9SDon Brace 	writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET);
6622edd16368SStephen M. Cameron 
6623edd16368SStephen M. Cameron 	for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) {
6624edd16368SStephen M. Cameron 		tag = readl(vaddr + SA5_REPLY_PORT_OFFSET);
66252b08b3e9SDon Brace 		if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64)
6626edd16368SStephen M. Cameron 			break;
6627edd16368SStephen M. Cameron 		msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS);
6628edd16368SStephen M. Cameron 	}
6629edd16368SStephen M. Cameron 
6630edd16368SStephen M. Cameron 	iounmap(vaddr);
6631edd16368SStephen M. Cameron 
6632edd16368SStephen M. Cameron 	/* we leak the DMA buffer here ... no choice since the controller could
6633edd16368SStephen M. Cameron 	 *  still complete the command.
6634edd16368SStephen M. Cameron 	 */
6635edd16368SStephen M. Cameron 	if (i == HPSA_MSG_SEND_RETRY_LIMIT) {
6636edd16368SStephen M. Cameron 		dev_err(&pdev->dev, "controller message %02x:%02x timed out\n",
6637edd16368SStephen M. Cameron 			opcode, type);
6638edd16368SStephen M. Cameron 		return -ETIMEDOUT;
6639edd16368SStephen M. Cameron 	}
6640edd16368SStephen M. Cameron 
6641edd16368SStephen M. Cameron 	pci_free_consistent(pdev, cmd_sz, cmd, paddr64);
6642edd16368SStephen M. Cameron 
6643edd16368SStephen M. Cameron 	if (tag & HPSA_ERROR_BIT) {
6644edd16368SStephen M. Cameron 		dev_err(&pdev->dev, "controller message %02x:%02x failed\n",
6645edd16368SStephen M. Cameron 			opcode, type);
6646edd16368SStephen M. Cameron 		return -EIO;
6647edd16368SStephen M. Cameron 	}
6648edd16368SStephen M. Cameron 
6649edd16368SStephen M. Cameron 	dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n",
6650edd16368SStephen M. Cameron 		opcode, type);
6651edd16368SStephen M. Cameron 	return 0;
6652edd16368SStephen M. Cameron }
6653edd16368SStephen M. Cameron 
6654edd16368SStephen M. Cameron #define hpsa_noop(p) hpsa_message(p, 3, 0)
6655edd16368SStephen M. Cameron 
66561df8552aSStephen M. Cameron static int hpsa_controller_hard_reset(struct pci_dev *pdev,
665742a91641SDon Brace 	void __iomem *vaddr, u32 use_doorbell)
6658edd16368SStephen M. Cameron {
6659edd16368SStephen M. Cameron 
66601df8552aSStephen M. Cameron 	if (use_doorbell) {
66611df8552aSStephen M. Cameron 		/* For everything after the P600, the PCI power state method
66621df8552aSStephen M. Cameron 		 * of resetting the controller doesn't work, so we have this
66631df8552aSStephen M. Cameron 		 * other way using the doorbell register.
6664edd16368SStephen M. Cameron 		 */
66651df8552aSStephen M. Cameron 		dev_info(&pdev->dev, "using doorbell to reset controller\n");
6666cf0b08d0SStephen M. Cameron 		writel(use_doorbell, vaddr + SA5_DOORBELL);
666785009239SStephen M. Cameron 
666800701a96SJustin Lindley 		/* PMC hardware guys tell us we need a 10 second delay after
666985009239SStephen M. Cameron 		 * doorbell reset and before any attempt to talk to the board
667085009239SStephen M. Cameron 		 * at all to ensure that this actually works and doesn't fall
667185009239SStephen M. Cameron 		 * over in some weird corner cases.
667285009239SStephen M. Cameron 		 */
667300701a96SJustin Lindley 		msleep(10000);
66741df8552aSStephen M. Cameron 	} else { /* Try to do it the PCI power state way */
6675edd16368SStephen M. Cameron 
6676edd16368SStephen M. Cameron 		/* Quoting from the Open CISS Specification: "The Power
6677edd16368SStephen M. Cameron 		 * Management Control/Status Register (CSR) controls the power
6678edd16368SStephen M. Cameron 		 * state of the device.  The normal operating state is D0,
6679edd16368SStephen M. Cameron 		 * CSR=00h.  The software off state is D3, CSR=03h.  To reset
66801df8552aSStephen M. Cameron 		 * the controller, place the interface device in D3 then to D0,
66811df8552aSStephen M. Cameron 		 * this causes a secondary PCI reset which will reset the
66821df8552aSStephen M. Cameron 		 * controller." */
6683edd16368SStephen M. Cameron 
66842662cab8SDon Brace 		int rc = 0;
66852662cab8SDon Brace 
66861df8552aSStephen M. Cameron 		dev_info(&pdev->dev, "using PCI PM to reset controller\n");
66872662cab8SDon Brace 
6688edd16368SStephen M. Cameron 		/* enter the D3hot power management state */
66892662cab8SDon Brace 		rc = pci_set_power_state(pdev, PCI_D3hot);
66902662cab8SDon Brace 		if (rc)
66912662cab8SDon Brace 			return rc;
6692edd16368SStephen M. Cameron 
6693edd16368SStephen M. Cameron 		msleep(500);
6694edd16368SStephen M. Cameron 
6695edd16368SStephen M. Cameron 		/* enter the D0 power management state */
66962662cab8SDon Brace 		rc = pci_set_power_state(pdev, PCI_D0);
66972662cab8SDon Brace 		if (rc)
66982662cab8SDon Brace 			return rc;
6699c4853efeSMike Miller 
6700c4853efeSMike Miller 		/*
6701c4853efeSMike Miller 		 * The P600 requires a small delay when changing states.
6702c4853efeSMike Miller 		 * Otherwise we may think the board did not reset and we bail.
6703c4853efeSMike Miller 		 * This for kdump only and is particular to the P600.
6704c4853efeSMike Miller 		 */
6705c4853efeSMike Miller 		msleep(500);
67061df8552aSStephen M. Cameron 	}
67071df8552aSStephen M. Cameron 	return 0;
67081df8552aSStephen M. Cameron }
67091df8552aSStephen M. Cameron 
67106f039790SGreg Kroah-Hartman static void init_driver_version(char *driver_version, int len)
6711580ada3cSStephen M. Cameron {
6712580ada3cSStephen M. Cameron 	memset(driver_version, 0, len);
6713f79cfec6SStephen M. Cameron 	strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1);
6714580ada3cSStephen M. Cameron }
6715580ada3cSStephen M. Cameron 
67166f039790SGreg Kroah-Hartman static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable)
6717580ada3cSStephen M. Cameron {
6718580ada3cSStephen M. Cameron 	char *driver_version;
6719580ada3cSStephen M. Cameron 	int i, size = sizeof(cfgtable->driver_version);
6720580ada3cSStephen M. Cameron 
6721580ada3cSStephen M. Cameron 	driver_version = kmalloc(size, GFP_KERNEL);
6722580ada3cSStephen M. Cameron 	if (!driver_version)
6723580ada3cSStephen M. Cameron 		return -ENOMEM;
6724580ada3cSStephen M. Cameron 
6725580ada3cSStephen M. Cameron 	init_driver_version(driver_version, size);
6726580ada3cSStephen M. Cameron 	for (i = 0; i < size; i++)
6727580ada3cSStephen M. Cameron 		writeb(driver_version[i], &cfgtable->driver_version[i]);
6728580ada3cSStephen M. Cameron 	kfree(driver_version);
6729580ada3cSStephen M. Cameron 	return 0;
6730580ada3cSStephen M. Cameron }
6731580ada3cSStephen M. Cameron 
67326f039790SGreg Kroah-Hartman static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable,
67336f039790SGreg Kroah-Hartman 					  unsigned char *driver_ver)
6734580ada3cSStephen M. Cameron {
6735580ada3cSStephen M. Cameron 	int i;
6736580ada3cSStephen M. Cameron 
6737580ada3cSStephen M. Cameron 	for (i = 0; i < sizeof(cfgtable->driver_version); i++)
6738580ada3cSStephen M. Cameron 		driver_ver[i] = readb(&cfgtable->driver_version[i]);
6739580ada3cSStephen M. Cameron }
6740580ada3cSStephen M. Cameron 
67416f039790SGreg Kroah-Hartman static int controller_reset_failed(struct CfgTable __iomem *cfgtable)
6742580ada3cSStephen M. Cameron {
6743580ada3cSStephen M. Cameron 
6744580ada3cSStephen M. Cameron 	char *driver_ver, *old_driver_ver;
6745580ada3cSStephen M. Cameron 	int rc, size = sizeof(cfgtable->driver_version);
6746580ada3cSStephen M. Cameron 
6747580ada3cSStephen M. Cameron 	old_driver_ver = kmalloc(2 * size, GFP_KERNEL);
6748580ada3cSStephen M. Cameron 	if (!old_driver_ver)
6749580ada3cSStephen M. Cameron 		return -ENOMEM;
6750580ada3cSStephen M. Cameron 	driver_ver = old_driver_ver + size;
6751580ada3cSStephen M. Cameron 
6752580ada3cSStephen M. Cameron 	/* After a reset, the 32 bytes of "driver version" in the cfgtable
6753580ada3cSStephen M. Cameron 	 * should have been changed, otherwise we know the reset failed.
6754580ada3cSStephen M. Cameron 	 */
6755580ada3cSStephen M. Cameron 	init_driver_version(old_driver_ver, size);
6756580ada3cSStephen M. Cameron 	read_driver_ver_from_cfgtable(cfgtable, driver_ver);
6757580ada3cSStephen M. Cameron 	rc = !memcmp(driver_ver, old_driver_ver, size);
6758580ada3cSStephen M. Cameron 	kfree(old_driver_ver);
6759580ada3cSStephen M. Cameron 	return rc;
6760580ada3cSStephen M. Cameron }
67611df8552aSStephen M. Cameron /* This does a hard reset of the controller using PCI power management
67621df8552aSStephen M. Cameron  * states or the using the doorbell register.
67631df8552aSStephen M. Cameron  */
67646b6c1cd7STomas Henzl static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id)
67651df8552aSStephen M. Cameron {
67661df8552aSStephen M. Cameron 	u64 cfg_offset;
67671df8552aSStephen M. Cameron 	u32 cfg_base_addr;
67681df8552aSStephen M. Cameron 	u64 cfg_base_addr_index;
67691df8552aSStephen M. Cameron 	void __iomem *vaddr;
67701df8552aSStephen M. Cameron 	unsigned long paddr;
6771580ada3cSStephen M. Cameron 	u32 misc_fw_support;
6772270d05deSStephen M. Cameron 	int rc;
67731df8552aSStephen M. Cameron 	struct CfgTable __iomem *cfgtable;
6774cf0b08d0SStephen M. Cameron 	u32 use_doorbell;
6775270d05deSStephen M. Cameron 	u16 command_register;
67761df8552aSStephen M. Cameron 
67771df8552aSStephen M. Cameron 	/* For controllers as old as the P600, this is very nearly
67781df8552aSStephen M. Cameron 	 * the same thing as
67791df8552aSStephen M. Cameron 	 *
67801df8552aSStephen M. Cameron 	 * pci_save_state(pci_dev);
67811df8552aSStephen M. Cameron 	 * pci_set_power_state(pci_dev, PCI_D3hot);
67821df8552aSStephen M. Cameron 	 * pci_set_power_state(pci_dev, PCI_D0);
67831df8552aSStephen M. Cameron 	 * pci_restore_state(pci_dev);
67841df8552aSStephen M. Cameron 	 *
67851df8552aSStephen M. Cameron 	 * For controllers newer than the P600, the pci power state
67861df8552aSStephen M. Cameron 	 * method of resetting doesn't work so we have another way
67871df8552aSStephen M. Cameron 	 * using the doorbell register.
67881df8552aSStephen M. Cameron 	 */
678918867659SStephen M. Cameron 
679060f923b9SRobert Elliott 	if (!ctlr_is_resettable(board_id)) {
679160f923b9SRobert Elliott 		dev_warn(&pdev->dev, "Controller not resettable\n");
679225c1e56aSStephen M. Cameron 		return -ENODEV;
679325c1e56aSStephen M. Cameron 	}
679446380786SStephen M. Cameron 
679546380786SStephen M. Cameron 	/* if controller is soft- but not hard resettable... */
679646380786SStephen M. Cameron 	if (!ctlr_is_hard_resettable(board_id))
679746380786SStephen M. Cameron 		return -ENOTSUPP; /* try soft reset later. */
679818867659SStephen M. Cameron 
6799270d05deSStephen M. Cameron 	/* Save the PCI command register */
6800270d05deSStephen M. Cameron 	pci_read_config_word(pdev, 4, &command_register);
6801270d05deSStephen M. Cameron 	pci_save_state(pdev);
68021df8552aSStephen M. Cameron 
68031df8552aSStephen M. Cameron 	/* find the first memory BAR, so we can find the cfg table */
68041df8552aSStephen M. Cameron 	rc = hpsa_pci_find_memory_BAR(pdev, &paddr);
68051df8552aSStephen M. Cameron 	if (rc)
68061df8552aSStephen M. Cameron 		return rc;
68071df8552aSStephen M. Cameron 	vaddr = remap_pci_mem(paddr, 0x250);
68081df8552aSStephen M. Cameron 	if (!vaddr)
68091df8552aSStephen M. Cameron 		return -ENOMEM;
68101df8552aSStephen M. Cameron 
68111df8552aSStephen M. Cameron 	/* find cfgtable in order to check if reset via doorbell is supported */
68121df8552aSStephen M. Cameron 	rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr,
68131df8552aSStephen M. Cameron 					&cfg_base_addr_index, &cfg_offset);
68141df8552aSStephen M. Cameron 	if (rc)
68151df8552aSStephen M. Cameron 		goto unmap_vaddr;
68161df8552aSStephen M. Cameron 	cfgtable = remap_pci_mem(pci_resource_start(pdev,
68171df8552aSStephen M. Cameron 		       cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable));
68181df8552aSStephen M. Cameron 	if (!cfgtable) {
68191df8552aSStephen M. Cameron 		rc = -ENOMEM;
68201df8552aSStephen M. Cameron 		goto unmap_vaddr;
68211df8552aSStephen M. Cameron 	}
6822580ada3cSStephen M. Cameron 	rc = write_driver_ver_to_cfgtable(cfgtable);
6823580ada3cSStephen M. Cameron 	if (rc)
682403741d95STomas Henzl 		goto unmap_cfgtable;
68251df8552aSStephen M. Cameron 
6826cf0b08d0SStephen M. Cameron 	/* If reset via doorbell register is supported, use that.
6827cf0b08d0SStephen M. Cameron 	 * There are two such methods.  Favor the newest method.
6828cf0b08d0SStephen M. Cameron 	 */
68291df8552aSStephen M. Cameron 	misc_fw_support = readl(&cfgtable->misc_fw_support);
6830cf0b08d0SStephen M. Cameron 	use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2;
6831cf0b08d0SStephen M. Cameron 	if (use_doorbell) {
6832cf0b08d0SStephen M. Cameron 		use_doorbell = DOORBELL_CTLR_RESET2;
6833cf0b08d0SStephen M. Cameron 	} else {
68341df8552aSStephen M. Cameron 		use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET;
6835cf0b08d0SStephen M. Cameron 		if (use_doorbell) {
6836050f7147SStephen Cameron 			dev_warn(&pdev->dev,
6837050f7147SStephen Cameron 				"Soft reset not supported. Firmware update is required.\n");
683864670ac8SStephen M. Cameron 			rc = -ENOTSUPP; /* try soft reset */
6839cf0b08d0SStephen M. Cameron 			goto unmap_cfgtable;
6840cf0b08d0SStephen M. Cameron 		}
6841cf0b08d0SStephen M. Cameron 	}
68421df8552aSStephen M. Cameron 
68431df8552aSStephen M. Cameron 	rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell);
68441df8552aSStephen M. Cameron 	if (rc)
68451df8552aSStephen M. Cameron 		goto unmap_cfgtable;
6846edd16368SStephen M. Cameron 
6847270d05deSStephen M. Cameron 	pci_restore_state(pdev);
6848270d05deSStephen M. Cameron 	pci_write_config_word(pdev, 4, command_register);
6849edd16368SStephen M. Cameron 
68501df8552aSStephen M. Cameron 	/* Some devices (notably the HP Smart Array 5i Controller)
68511df8552aSStephen M. Cameron 	   need a little pause here */
68521df8552aSStephen M. Cameron 	msleep(HPSA_POST_RESET_PAUSE_MSECS);
68531df8552aSStephen M. Cameron 
6854fe5389c8SStephen M. Cameron 	rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY);
6855fe5389c8SStephen M. Cameron 	if (rc) {
6856fe5389c8SStephen M. Cameron 		dev_warn(&pdev->dev,
6857050f7147SStephen Cameron 			"Failed waiting for board to become ready after hard reset\n");
6858fe5389c8SStephen M. Cameron 		goto unmap_cfgtable;
6859fe5389c8SStephen M. Cameron 	}
6860fe5389c8SStephen M. Cameron 
6861580ada3cSStephen M. Cameron 	rc = controller_reset_failed(vaddr);
6862580ada3cSStephen M. Cameron 	if (rc < 0)
6863580ada3cSStephen M. Cameron 		goto unmap_cfgtable;
6864580ada3cSStephen M. Cameron 	if (rc) {
686564670ac8SStephen M. Cameron 		dev_warn(&pdev->dev, "Unable to successfully reset "
686664670ac8SStephen M. Cameron 			"controller. Will try soft reset.\n");
686764670ac8SStephen M. Cameron 		rc = -ENOTSUPP;
6868580ada3cSStephen M. Cameron 	} else {
686964670ac8SStephen M. Cameron 		dev_info(&pdev->dev, "board ready after hard reset.\n");
68701df8552aSStephen M. Cameron 	}
68711df8552aSStephen M. Cameron 
68721df8552aSStephen M. Cameron unmap_cfgtable:
68731df8552aSStephen M. Cameron 	iounmap(cfgtable);
68741df8552aSStephen M. Cameron 
68751df8552aSStephen M. Cameron unmap_vaddr:
68761df8552aSStephen M. Cameron 	iounmap(vaddr);
68771df8552aSStephen M. Cameron 	return rc;
6878edd16368SStephen M. Cameron }
6879edd16368SStephen M. Cameron 
6880edd16368SStephen M. Cameron /*
6881edd16368SStephen M. Cameron  *  We cannot read the structure directly, for portability we must use
6882edd16368SStephen M. Cameron  *   the io functions.
6883edd16368SStephen M. Cameron  *   This is for debug only.
6884edd16368SStephen M. Cameron  */
688542a91641SDon Brace static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb)
6886edd16368SStephen M. Cameron {
688758f8665cSStephen M. Cameron #ifdef HPSA_DEBUG
6888edd16368SStephen M. Cameron 	int i;
6889edd16368SStephen M. Cameron 	char temp_name[17];
6890edd16368SStephen M. Cameron 
6891edd16368SStephen M. Cameron 	dev_info(dev, "Controller Configuration information\n");
6892edd16368SStephen M. Cameron 	dev_info(dev, "------------------------------------\n");
6893edd16368SStephen M. Cameron 	for (i = 0; i < 4; i++)
6894edd16368SStephen M. Cameron 		temp_name[i] = readb(&(tb->Signature[i]));
6895edd16368SStephen M. Cameron 	temp_name[4] = '\0';
6896edd16368SStephen M. Cameron 	dev_info(dev, "   Signature = %s\n", temp_name);
6897edd16368SStephen M. Cameron 	dev_info(dev, "   Spec Number = %d\n", readl(&(tb->SpecValence)));
6898edd16368SStephen M. Cameron 	dev_info(dev, "   Transport methods supported = 0x%x\n",
6899edd16368SStephen M. Cameron 	       readl(&(tb->TransportSupport)));
6900edd16368SStephen M. Cameron 	dev_info(dev, "   Transport methods active = 0x%x\n",
6901edd16368SStephen M. Cameron 	       readl(&(tb->TransportActive)));
6902edd16368SStephen M. Cameron 	dev_info(dev, "   Requested transport Method = 0x%x\n",
6903edd16368SStephen M. Cameron 	       readl(&(tb->HostWrite.TransportRequest)));
6904edd16368SStephen M. Cameron 	dev_info(dev, "   Coalesce Interrupt Delay = 0x%x\n",
6905edd16368SStephen M. Cameron 	       readl(&(tb->HostWrite.CoalIntDelay)));
6906edd16368SStephen M. Cameron 	dev_info(dev, "   Coalesce Interrupt Count = 0x%x\n",
6907edd16368SStephen M. Cameron 	       readl(&(tb->HostWrite.CoalIntCount)));
690869d6e33dSRobert Elliott 	dev_info(dev, "   Max outstanding commands = %d\n",
6909edd16368SStephen M. Cameron 	       readl(&(tb->CmdsOutMax)));
6910edd16368SStephen M. Cameron 	dev_info(dev, "   Bus Types = 0x%x\n", readl(&(tb->BusTypes)));
6911edd16368SStephen M. Cameron 	for (i = 0; i < 16; i++)
6912edd16368SStephen M. Cameron 		temp_name[i] = readb(&(tb->ServerName[i]));
6913edd16368SStephen M. Cameron 	temp_name[16] = '\0';
6914edd16368SStephen M. Cameron 	dev_info(dev, "   Server Name = %s\n", temp_name);
6915edd16368SStephen M. Cameron 	dev_info(dev, "   Heartbeat Counter = 0x%x\n\n\n",
6916edd16368SStephen M. Cameron 		readl(&(tb->HeartBeat)));
6917edd16368SStephen M. Cameron #endif				/* HPSA_DEBUG */
691858f8665cSStephen M. Cameron }
6919edd16368SStephen M. Cameron 
6920edd16368SStephen M. Cameron static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr)
6921edd16368SStephen M. Cameron {
6922edd16368SStephen M. Cameron 	int i, offset, mem_type, bar_type;
6923edd16368SStephen M. Cameron 
6924edd16368SStephen M. Cameron 	if (pci_bar_addr == PCI_BASE_ADDRESS_0)	/* looking for BAR zero? */
6925edd16368SStephen M. Cameron 		return 0;
6926edd16368SStephen M. Cameron 	offset = 0;
6927edd16368SStephen M. Cameron 	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) {
6928edd16368SStephen M. Cameron 		bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE;
6929edd16368SStephen M. Cameron 		if (bar_type == PCI_BASE_ADDRESS_SPACE_IO)
6930edd16368SStephen M. Cameron 			offset += 4;
6931edd16368SStephen M. Cameron 		else {
6932edd16368SStephen M. Cameron 			mem_type = pci_resource_flags(pdev, i) &
6933edd16368SStephen M. Cameron 			    PCI_BASE_ADDRESS_MEM_TYPE_MASK;
6934edd16368SStephen M. Cameron 			switch (mem_type) {
6935edd16368SStephen M. Cameron 			case PCI_BASE_ADDRESS_MEM_TYPE_32:
6936edd16368SStephen M. Cameron 			case PCI_BASE_ADDRESS_MEM_TYPE_1M:
6937edd16368SStephen M. Cameron 				offset += 4;	/* 32 bit */
6938edd16368SStephen M. Cameron 				break;
6939edd16368SStephen M. Cameron 			case PCI_BASE_ADDRESS_MEM_TYPE_64:
6940edd16368SStephen M. Cameron 				offset += 8;
6941edd16368SStephen M. Cameron 				break;
6942edd16368SStephen M. Cameron 			default:	/* reserved in PCI 2.2 */
6943edd16368SStephen M. Cameron 				dev_warn(&pdev->dev,
6944edd16368SStephen M. Cameron 				       "base address is invalid\n");
6945edd16368SStephen M. Cameron 				return -1;
6946edd16368SStephen M. Cameron 				break;
6947edd16368SStephen M. Cameron 			}
6948edd16368SStephen M. Cameron 		}
6949edd16368SStephen M. Cameron 		if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0)
6950edd16368SStephen M. Cameron 			return i + 1;
6951edd16368SStephen M. Cameron 	}
6952edd16368SStephen M. Cameron 	return -1;
6953edd16368SStephen M. Cameron }
6954edd16368SStephen M. Cameron 
6955cc64c817SRobert Elliott static void hpsa_disable_interrupt_mode(struct ctlr_info *h)
6956cc64c817SRobert Elliott {
6957cc64c817SRobert Elliott 	if (h->msix_vector) {
6958cc64c817SRobert Elliott 		if (h->pdev->msix_enabled)
6959cc64c817SRobert Elliott 			pci_disable_msix(h->pdev);
6960105a3dbcSRobert Elliott 		h->msix_vector = 0;
6961cc64c817SRobert Elliott 	} else if (h->msi_vector) {
6962cc64c817SRobert Elliott 		if (h->pdev->msi_enabled)
6963cc64c817SRobert Elliott 			pci_disable_msi(h->pdev);
6964105a3dbcSRobert Elliott 		h->msi_vector = 0;
6965cc64c817SRobert Elliott 	}
6966cc64c817SRobert Elliott }
6967cc64c817SRobert Elliott 
6968edd16368SStephen M. Cameron /* If MSI/MSI-X is supported by the kernel we will try to enable it on
6969050f7147SStephen Cameron  * controllers that are capable. If not, we use legacy INTx mode.
6970edd16368SStephen M. Cameron  */
69716f039790SGreg Kroah-Hartman static void hpsa_interrupt_mode(struct ctlr_info *h)
6972edd16368SStephen M. Cameron {
6973edd16368SStephen M. Cameron #ifdef CONFIG_PCI_MSI
6974254f796bSMatt Gates 	int err, i;
6975254f796bSMatt Gates 	struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES];
6976254f796bSMatt Gates 
6977254f796bSMatt Gates 	for (i = 0; i < MAX_REPLY_QUEUES; i++) {
6978254f796bSMatt Gates 		hpsa_msix_entries[i].vector = 0;
6979254f796bSMatt Gates 		hpsa_msix_entries[i].entry = i;
6980254f796bSMatt Gates 	}
6981edd16368SStephen M. Cameron 
6982edd16368SStephen M. Cameron 	/* Some boards advertise MSI but don't really support it */
69836b3f4c52SStephen M. Cameron 	if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) ||
69846b3f4c52SStephen M. Cameron 	    (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11))
6985edd16368SStephen M. Cameron 		goto default_int_mode;
698655c06c71SStephen M. Cameron 	if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) {
6987050f7147SStephen Cameron 		dev_info(&h->pdev->dev, "MSI-X capable controller\n");
6988eee0f03aSHannes Reinecke 		h->msix_vector = MAX_REPLY_QUEUES;
6989f89439bcSStephen M. Cameron 		if (h->msix_vector > num_online_cpus())
6990f89439bcSStephen M. Cameron 			h->msix_vector = num_online_cpus();
699118fce3c4SAlexander Gordeev 		err = pci_enable_msix_range(h->pdev, hpsa_msix_entries,
699218fce3c4SAlexander Gordeev 					    1, h->msix_vector);
699318fce3c4SAlexander Gordeev 		if (err < 0) {
699418fce3c4SAlexander Gordeev 			dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err);
699518fce3c4SAlexander Gordeev 			h->msix_vector = 0;
699618fce3c4SAlexander Gordeev 			goto single_msi_mode;
699718fce3c4SAlexander Gordeev 		} else if (err < h->msix_vector) {
699855c06c71SStephen M. Cameron 			dev_warn(&h->pdev->dev, "only %d MSI-X vectors "
6999edd16368SStephen M. Cameron 			       "available\n", err);
7000eee0f03aSHannes Reinecke 		}
700118fce3c4SAlexander Gordeev 		h->msix_vector = err;
7002eee0f03aSHannes Reinecke 		for (i = 0; i < h->msix_vector; i++)
7003eee0f03aSHannes Reinecke 			h->intr[i] = hpsa_msix_entries[i].vector;
7004eee0f03aSHannes Reinecke 		return;
7005edd16368SStephen M. Cameron 	}
700618fce3c4SAlexander Gordeev single_msi_mode:
700755c06c71SStephen M. Cameron 	if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) {
7008050f7147SStephen Cameron 		dev_info(&h->pdev->dev, "MSI capable controller\n");
700955c06c71SStephen M. Cameron 		if (!pci_enable_msi(h->pdev))
7010edd16368SStephen M. Cameron 			h->msi_vector = 1;
7011edd16368SStephen M. Cameron 		else
701255c06c71SStephen M. Cameron 			dev_warn(&h->pdev->dev, "MSI init failed\n");
7013edd16368SStephen M. Cameron 	}
7014edd16368SStephen M. Cameron default_int_mode:
7015edd16368SStephen M. Cameron #endif				/* CONFIG_PCI_MSI */
7016edd16368SStephen M. Cameron 	/* if we get here we're going to use the default interrupt mode */
7017a9a3a273SStephen M. Cameron 	h->intr[h->intr_mode] = h->pdev->irq;
7018edd16368SStephen M. Cameron }
7019edd16368SStephen M. Cameron 
70206f039790SGreg Kroah-Hartman static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id)
7021e5c880d1SStephen M. Cameron {
7022e5c880d1SStephen M. Cameron 	int i;
7023e5c880d1SStephen M. Cameron 	u32 subsystem_vendor_id, subsystem_device_id;
7024e5c880d1SStephen M. Cameron 
7025e5c880d1SStephen M. Cameron 	subsystem_vendor_id = pdev->subsystem_vendor;
7026e5c880d1SStephen M. Cameron 	subsystem_device_id = pdev->subsystem_device;
7027e5c880d1SStephen M. Cameron 	*board_id = ((subsystem_device_id << 16) & 0xffff0000) |
7028e5c880d1SStephen M. Cameron 		    subsystem_vendor_id;
7029e5c880d1SStephen M. Cameron 
7030e5c880d1SStephen M. Cameron 	for (i = 0; i < ARRAY_SIZE(products); i++)
7031e5c880d1SStephen M. Cameron 		if (*board_id == products[i].board_id)
7032e5c880d1SStephen M. Cameron 			return i;
7033e5c880d1SStephen M. Cameron 
70346798cc0aSStephen M. Cameron 	if ((subsystem_vendor_id != PCI_VENDOR_ID_HP &&
70356798cc0aSStephen M. Cameron 		subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) ||
70366798cc0aSStephen M. Cameron 		!hpsa_allow_any) {
7037e5c880d1SStephen M. Cameron 		dev_warn(&pdev->dev, "unrecognized board ID: "
7038e5c880d1SStephen M. Cameron 			"0x%08x, ignoring.\n", *board_id);
7039e5c880d1SStephen M. Cameron 			return -ENODEV;
7040e5c880d1SStephen M. Cameron 	}
7041e5c880d1SStephen M. Cameron 	return ARRAY_SIZE(products) - 1; /* generic unknown smart array */
7042e5c880d1SStephen M. Cameron }
7043e5c880d1SStephen M. Cameron 
70446f039790SGreg Kroah-Hartman static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev,
70453a7774ceSStephen M. Cameron 				    unsigned long *memory_bar)
70463a7774ceSStephen M. Cameron {
70473a7774ceSStephen M. Cameron 	int i;
70483a7774ceSStephen M. Cameron 
70493a7774ceSStephen M. Cameron 	for (i = 0; i < DEVICE_COUNT_RESOURCE; i++)
705012d2cd47SStephen M. Cameron 		if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) {
70513a7774ceSStephen M. Cameron 			/* addressing mode bits already removed */
705212d2cd47SStephen M. Cameron 			*memory_bar = pci_resource_start(pdev, i);
705312d2cd47SStephen M. Cameron 			dev_dbg(&pdev->dev, "memory BAR = %lx\n",
70543a7774ceSStephen M. Cameron 				*memory_bar);
70553a7774ceSStephen M. Cameron 			return 0;
70563a7774ceSStephen M. Cameron 		}
705712d2cd47SStephen M. Cameron 	dev_warn(&pdev->dev, "no memory BAR found\n");
70583a7774ceSStephen M. Cameron 	return -ENODEV;
70593a7774ceSStephen M. Cameron }
70603a7774ceSStephen M. Cameron 
70616f039790SGreg Kroah-Hartman static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr,
70626f039790SGreg Kroah-Hartman 				     int wait_for_ready)
70632c4c8c8bSStephen M. Cameron {
7064fe5389c8SStephen M. Cameron 	int i, iterations;
70652c4c8c8bSStephen M. Cameron 	u32 scratchpad;
7066fe5389c8SStephen M. Cameron 	if (wait_for_ready)
7067fe5389c8SStephen M. Cameron 		iterations = HPSA_BOARD_READY_ITERATIONS;
7068fe5389c8SStephen M. Cameron 	else
7069fe5389c8SStephen M. Cameron 		iterations = HPSA_BOARD_NOT_READY_ITERATIONS;
70702c4c8c8bSStephen M. Cameron 
7071fe5389c8SStephen M. Cameron 	for (i = 0; i < iterations; i++) {
7072fe5389c8SStephen M. Cameron 		scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET);
7073fe5389c8SStephen M. Cameron 		if (wait_for_ready) {
70742c4c8c8bSStephen M. Cameron 			if (scratchpad == HPSA_FIRMWARE_READY)
70752c4c8c8bSStephen M. Cameron 				return 0;
7076fe5389c8SStephen M. Cameron 		} else {
7077fe5389c8SStephen M. Cameron 			if (scratchpad != HPSA_FIRMWARE_READY)
7078fe5389c8SStephen M. Cameron 				return 0;
7079fe5389c8SStephen M. Cameron 		}
70802c4c8c8bSStephen M. Cameron 		msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS);
70812c4c8c8bSStephen M. Cameron 	}
7082fe5389c8SStephen M. Cameron 	dev_warn(&pdev->dev, "board not ready, timed out.\n");
70832c4c8c8bSStephen M. Cameron 	return -ENODEV;
70842c4c8c8bSStephen M. Cameron }
70852c4c8c8bSStephen M. Cameron 
70866f039790SGreg Kroah-Hartman static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr,
70876f039790SGreg Kroah-Hartman 			       u32 *cfg_base_addr, u64 *cfg_base_addr_index,
7088a51fd47fSStephen M. Cameron 			       u64 *cfg_offset)
7089a51fd47fSStephen M. Cameron {
7090a51fd47fSStephen M. Cameron 	*cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET);
7091a51fd47fSStephen M. Cameron 	*cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET);
7092a51fd47fSStephen M. Cameron 	*cfg_base_addr &= (u32) 0x0000ffff;
7093a51fd47fSStephen M. Cameron 	*cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr);
7094a51fd47fSStephen M. Cameron 	if (*cfg_base_addr_index == -1) {
7095a51fd47fSStephen M. Cameron 		dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n");
7096a51fd47fSStephen M. Cameron 		return -ENODEV;
7097a51fd47fSStephen M. Cameron 	}
7098a51fd47fSStephen M. Cameron 	return 0;
7099a51fd47fSStephen M. Cameron }
7100a51fd47fSStephen M. Cameron 
7101195f2c65SRobert Elliott static void hpsa_free_cfgtables(struct ctlr_info *h)
7102195f2c65SRobert Elliott {
7103105a3dbcSRobert Elliott 	if (h->transtable) {
7104195f2c65SRobert Elliott 		iounmap(h->transtable);
7105105a3dbcSRobert Elliott 		h->transtable = NULL;
7106105a3dbcSRobert Elliott 	}
7107105a3dbcSRobert Elliott 	if (h->cfgtable) {
7108195f2c65SRobert Elliott 		iounmap(h->cfgtable);
7109105a3dbcSRobert Elliott 		h->cfgtable = NULL;
7110105a3dbcSRobert Elliott 	}
7111195f2c65SRobert Elliott }
7112195f2c65SRobert Elliott 
7113195f2c65SRobert Elliott /* Find and map CISS config table and transfer table
7114195f2c65SRobert Elliott + * several items must be unmapped (freed) later
7115195f2c65SRobert Elliott + * */
71166f039790SGreg Kroah-Hartman static int hpsa_find_cfgtables(struct ctlr_info *h)
7117edd16368SStephen M. Cameron {
711801a02ffcSStephen M. Cameron 	u64 cfg_offset;
711901a02ffcSStephen M. Cameron 	u32 cfg_base_addr;
712001a02ffcSStephen M. Cameron 	u64 cfg_base_addr_index;
7121303932fdSDon Brace 	u32 trans_offset;
7122a51fd47fSStephen M. Cameron 	int rc;
712377c4495cSStephen M. Cameron 
7124a51fd47fSStephen M. Cameron 	rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
7125a51fd47fSStephen M. Cameron 		&cfg_base_addr_index, &cfg_offset);
7126a51fd47fSStephen M. Cameron 	if (rc)
7127a51fd47fSStephen M. Cameron 		return rc;
712877c4495cSStephen M. Cameron 	h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev,
7129a51fd47fSStephen M. Cameron 		       cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable));
7130cd3c81c4SRobert Elliott 	if (!h->cfgtable) {
7131cd3c81c4SRobert Elliott 		dev_err(&h->pdev->dev, "Failed mapping cfgtable\n");
713277c4495cSStephen M. Cameron 		return -ENOMEM;
7133cd3c81c4SRobert Elliott 	}
7134580ada3cSStephen M. Cameron 	rc = write_driver_ver_to_cfgtable(h->cfgtable);
7135580ada3cSStephen M. Cameron 	if (rc)
7136580ada3cSStephen M. Cameron 		return rc;
713777c4495cSStephen M. Cameron 	/* Find performant mode table. */
7138a51fd47fSStephen M. Cameron 	trans_offset = readl(&h->cfgtable->TransMethodOffset);
713977c4495cSStephen M. Cameron 	h->transtable = remap_pci_mem(pci_resource_start(h->pdev,
714077c4495cSStephen M. Cameron 				cfg_base_addr_index)+cfg_offset+trans_offset,
714177c4495cSStephen M. Cameron 				sizeof(*h->transtable));
7142195f2c65SRobert Elliott 	if (!h->transtable) {
7143195f2c65SRobert Elliott 		dev_err(&h->pdev->dev, "Failed mapping transfer table\n");
7144195f2c65SRobert Elliott 		hpsa_free_cfgtables(h);
714577c4495cSStephen M. Cameron 		return -ENOMEM;
7146195f2c65SRobert Elliott 	}
714777c4495cSStephen M. Cameron 	return 0;
714877c4495cSStephen M. Cameron }
714977c4495cSStephen M. Cameron 
71506f039790SGreg Kroah-Hartman static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h)
7151cba3d38bSStephen M. Cameron {
715241ce4c35SStephen Cameron #define MIN_MAX_COMMANDS 16
715341ce4c35SStephen Cameron 	BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS);
715441ce4c35SStephen Cameron 
715541ce4c35SStephen Cameron 	h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands);
715672ceeaecSStephen M. Cameron 
715772ceeaecSStephen M. Cameron 	/* Limit commands in memory limited kdump scenario. */
715872ceeaecSStephen M. Cameron 	if (reset_devices && h->max_commands > 32)
715972ceeaecSStephen M. Cameron 		h->max_commands = 32;
716072ceeaecSStephen M. Cameron 
716141ce4c35SStephen Cameron 	if (h->max_commands < MIN_MAX_COMMANDS) {
716241ce4c35SStephen Cameron 		dev_warn(&h->pdev->dev,
716341ce4c35SStephen Cameron 			"Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n",
716441ce4c35SStephen Cameron 			h->max_commands,
716541ce4c35SStephen Cameron 			MIN_MAX_COMMANDS);
716641ce4c35SStephen Cameron 		h->max_commands = MIN_MAX_COMMANDS;
7167cba3d38bSStephen M. Cameron 	}
7168cba3d38bSStephen M. Cameron }
7169cba3d38bSStephen M. Cameron 
7170c7ee65b3SWebb Scales /* If the controller reports that the total max sg entries is greater than 512,
7171c7ee65b3SWebb Scales  * then we know that chained SG blocks work.  (Original smart arrays did not
7172c7ee65b3SWebb Scales  * support chained SG blocks and would return zero for max sg entries.)
7173c7ee65b3SWebb Scales  */
7174c7ee65b3SWebb Scales static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h)
7175c7ee65b3SWebb Scales {
7176c7ee65b3SWebb Scales 	return h->maxsgentries > 512;
7177c7ee65b3SWebb Scales }
7178c7ee65b3SWebb Scales 
7179b93d7536SStephen M. Cameron /* Interrogate the hardware for some limits:
7180b93d7536SStephen M. Cameron  * max commands, max SG elements without chaining, and with chaining,
7181b93d7536SStephen M. Cameron  * SG chain block size, etc.
7182b93d7536SStephen M. Cameron  */
71836f039790SGreg Kroah-Hartman static void hpsa_find_board_params(struct ctlr_info *h)
7184b93d7536SStephen M. Cameron {
7185cba3d38bSStephen M. Cameron 	hpsa_get_max_perf_mode_cmds(h);
718645fcb86eSStephen Cameron 	h->nr_cmds = h->max_commands;
7187b93d7536SStephen M. Cameron 	h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements));
7188283b4a9bSStephen M. Cameron 	h->fw_support = readl(&(h->cfgtable->misc_fw_support));
7189c7ee65b3SWebb Scales 	if (hpsa_supports_chained_sg_blocks(h)) {
7190c7ee65b3SWebb Scales 		/* Limit in-command s/g elements to 32 save dma'able memory. */
7191b93d7536SStephen M. Cameron 		h->max_cmd_sg_entries = 32;
71921a63ea6fSWebb Scales 		h->chainsize = h->maxsgentries - h->max_cmd_sg_entries;
7193b93d7536SStephen M. Cameron 		h->maxsgentries--; /* save one for chain pointer */
7194b93d7536SStephen M. Cameron 	} else {
7195c7ee65b3SWebb Scales 		/*
7196c7ee65b3SWebb Scales 		 * Original smart arrays supported at most 31 s/g entries
7197c7ee65b3SWebb Scales 		 * embedded inline in the command (trying to use more
7198c7ee65b3SWebb Scales 		 * would lock up the controller)
7199c7ee65b3SWebb Scales 		 */
7200c7ee65b3SWebb Scales 		h->max_cmd_sg_entries = 31;
72011a63ea6fSWebb Scales 		h->maxsgentries = 31; /* default to traditional values */
7202c7ee65b3SWebb Scales 		h->chainsize = 0;
7203b93d7536SStephen M. Cameron 	}
720475167d2cSStephen M. Cameron 
720575167d2cSStephen M. Cameron 	/* Find out what task management functions are supported and cache */
720675167d2cSStephen M. Cameron 	h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags));
72070e7a7fceSScott Teel 	if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags))
72080e7a7fceSScott Teel 		dev_warn(&h->pdev->dev, "Physical aborts not supported\n");
72090e7a7fceSScott Teel 	if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags))
72100e7a7fceSScott Teel 		dev_warn(&h->pdev->dev, "Logical aborts not supported\n");
72118be986ccSStephen Cameron 	if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags))
72128be986ccSStephen Cameron 		dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n");
7213b93d7536SStephen M. Cameron }
7214b93d7536SStephen M. Cameron 
721576c46e49SStephen M. Cameron static inline bool hpsa_CISS_signature_present(struct ctlr_info *h)
721676c46e49SStephen M. Cameron {
72170fc9fd40SAkinobu Mita 	if (!check_signature(h->cfgtable->Signature, "CISS", 4)) {
7218050f7147SStephen Cameron 		dev_err(&h->pdev->dev, "not a valid CISS config table\n");
721976c46e49SStephen M. Cameron 		return false;
722076c46e49SStephen M. Cameron 	}
722176c46e49SStephen M. Cameron 	return true;
722276c46e49SStephen M. Cameron }
722376c46e49SStephen M. Cameron 
722497a5e98cSStephen M. Cameron static inline void hpsa_set_driver_support_bits(struct ctlr_info *h)
7225f7c39101SStephen M. Cameron {
722697a5e98cSStephen M. Cameron 	u32 driver_support;
7227f7c39101SStephen M. Cameron 
722897a5e98cSStephen M. Cameron 	driver_support = readl(&(h->cfgtable->driver_support));
72290b9e7b74SArnd Bergmann 	/* Need to enable prefetch in the SCSI core for 6400 in x86 */
72300b9e7b74SArnd Bergmann #ifdef CONFIG_X86
723197a5e98cSStephen M. Cameron 	driver_support |= ENABLE_SCSI_PREFETCH;
7232f7c39101SStephen M. Cameron #endif
723328e13446SStephen M. Cameron 	driver_support |= ENABLE_UNIT_ATTN;
723428e13446SStephen M. Cameron 	writel(driver_support, &(h->cfgtable->driver_support));
7235f7c39101SStephen M. Cameron }
7236f7c39101SStephen M. Cameron 
72373d0eab67SStephen M. Cameron /* Disable DMA prefetch for the P600.  Otherwise an ASIC bug may result
72383d0eab67SStephen M. Cameron  * in a prefetch beyond physical memory.
72393d0eab67SStephen M. Cameron  */
72403d0eab67SStephen M. Cameron static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h)
72413d0eab67SStephen M. Cameron {
72423d0eab67SStephen M. Cameron 	u32 dma_prefetch;
72433d0eab67SStephen M. Cameron 
72443d0eab67SStephen M. Cameron 	if (h->board_id != 0x3225103C)
72453d0eab67SStephen M. Cameron 		return;
72463d0eab67SStephen M. Cameron 	dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG);
72473d0eab67SStephen M. Cameron 	dma_prefetch |= 0x8000;
72483d0eab67SStephen M. Cameron 	writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG);
72493d0eab67SStephen M. Cameron }
72503d0eab67SStephen M. Cameron 
7251c706a795SRobert Elliott static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h)
725276438d08SStephen M. Cameron {
725376438d08SStephen M. Cameron 	int i;
725476438d08SStephen M. Cameron 	u32 doorbell_value;
725576438d08SStephen M. Cameron 	unsigned long flags;
725676438d08SStephen M. Cameron 	/* wait until the clear_event_notify bit 6 is cleared by controller. */
7257007e7aa9SRobert Elliott 	for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) {
725876438d08SStephen M. Cameron 		spin_lock_irqsave(&h->lock, flags);
725976438d08SStephen M. Cameron 		doorbell_value = readl(h->vaddr + SA5_DOORBELL);
726076438d08SStephen M. Cameron 		spin_unlock_irqrestore(&h->lock, flags);
726176438d08SStephen M. Cameron 		if (!(doorbell_value & DOORBELL_CLEAR_EVENTS))
7262c706a795SRobert Elliott 			goto done;
726376438d08SStephen M. Cameron 		/* delay and try again */
7264007e7aa9SRobert Elliott 		msleep(CLEAR_EVENT_WAIT_INTERVAL);
726576438d08SStephen M. Cameron 	}
7266c706a795SRobert Elliott 	return -ENODEV;
7267c706a795SRobert Elliott done:
7268c706a795SRobert Elliott 	return 0;
726976438d08SStephen M. Cameron }
727076438d08SStephen M. Cameron 
7271c706a795SRobert Elliott static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h)
7272eb6b2ae9SStephen M. Cameron {
7273eb6b2ae9SStephen M. Cameron 	int i;
72746eaf46fdSStephen M. Cameron 	u32 doorbell_value;
72756eaf46fdSStephen M. Cameron 	unsigned long flags;
7276eb6b2ae9SStephen M. Cameron 
7277eb6b2ae9SStephen M. Cameron 	/* under certain very rare conditions, this can take awhile.
7278eb6b2ae9SStephen M. Cameron 	 * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right
7279eb6b2ae9SStephen M. Cameron 	 * as we enter this code.)
7280eb6b2ae9SStephen M. Cameron 	 */
7281007e7aa9SRobert Elliott 	for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) {
728225163bd5SWebb Scales 		if (h->remove_in_progress)
728325163bd5SWebb Scales 			goto done;
72846eaf46fdSStephen M. Cameron 		spin_lock_irqsave(&h->lock, flags);
72856eaf46fdSStephen M. Cameron 		doorbell_value = readl(h->vaddr + SA5_DOORBELL);
72866eaf46fdSStephen M. Cameron 		spin_unlock_irqrestore(&h->lock, flags);
7287382be668SDan Carpenter 		if (!(doorbell_value & CFGTBL_ChangeReq))
7288c706a795SRobert Elliott 			goto done;
7289eb6b2ae9SStephen M. Cameron 		/* delay and try again */
7290007e7aa9SRobert Elliott 		msleep(MODE_CHANGE_WAIT_INTERVAL);
7291eb6b2ae9SStephen M. Cameron 	}
7292c706a795SRobert Elliott 	return -ENODEV;
7293c706a795SRobert Elliott done:
7294c706a795SRobert Elliott 	return 0;
72953f4336f3SStephen M. Cameron }
72963f4336f3SStephen M. Cameron 
7297c706a795SRobert Elliott /* return -ENODEV or other reason on error, 0 on success */
72986f039790SGreg Kroah-Hartman static int hpsa_enter_simple_mode(struct ctlr_info *h)
72993f4336f3SStephen M. Cameron {
73003f4336f3SStephen M. Cameron 	u32 trans_support;
73013f4336f3SStephen M. Cameron 
73023f4336f3SStephen M. Cameron 	trans_support = readl(&(h->cfgtable->TransportSupport));
73033f4336f3SStephen M. Cameron 	if (!(trans_support & SIMPLE_MODE))
73043f4336f3SStephen M. Cameron 		return -ENOTSUPP;
73053f4336f3SStephen M. Cameron 
73063f4336f3SStephen M. Cameron 	h->max_commands = readl(&(h->cfgtable->CmdsOutMax));
7307283b4a9bSStephen M. Cameron 
73083f4336f3SStephen M. Cameron 	/* Update the field, and then ring the doorbell */
73093f4336f3SStephen M. Cameron 	writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest));
7310b9af4937SStephen M. Cameron 	writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
73113f4336f3SStephen M. Cameron 	writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
7312c706a795SRobert Elliott 	if (hpsa_wait_for_mode_change_ack(h))
7313c706a795SRobert Elliott 		goto error;
7314eb6b2ae9SStephen M. Cameron 	print_cfg_table(&h->pdev->dev, h->cfgtable);
7315283b4a9bSStephen M. Cameron 	if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple))
7316283b4a9bSStephen M. Cameron 		goto error;
7317960a30e7SStephen M. Cameron 	h->transMethod = CFGTBL_Trans_Simple;
7318eb6b2ae9SStephen M. Cameron 	return 0;
7319283b4a9bSStephen M. Cameron error:
7320050f7147SStephen Cameron 	dev_err(&h->pdev->dev, "failed to enter simple mode\n");
7321283b4a9bSStephen M. Cameron 	return -ENODEV;
7322eb6b2ae9SStephen M. Cameron }
7323eb6b2ae9SStephen M. Cameron 
7324195f2c65SRobert Elliott /* free items allocated or mapped by hpsa_pci_init */
7325195f2c65SRobert Elliott static void hpsa_free_pci_init(struct ctlr_info *h)
7326195f2c65SRobert Elliott {
7327195f2c65SRobert Elliott 	hpsa_free_cfgtables(h);			/* pci_init 4 */
7328195f2c65SRobert Elliott 	iounmap(h->vaddr);			/* pci_init 3 */
7329105a3dbcSRobert Elliott 	h->vaddr = NULL;
7330195f2c65SRobert Elliott 	hpsa_disable_interrupt_mode(h);		/* pci_init 2 */
7331943a7021SRobert Elliott 	/*
7332943a7021SRobert Elliott 	 * call pci_disable_device before pci_release_regions per
7333943a7021SRobert Elliott 	 * Documentation/PCI/pci.txt
7334943a7021SRobert Elliott 	 */
7335195f2c65SRobert Elliott 	pci_disable_device(h->pdev);		/* pci_init 1 */
7336943a7021SRobert Elliott 	pci_release_regions(h->pdev);		/* pci_init 2 */
7337195f2c65SRobert Elliott }
7338195f2c65SRobert Elliott 
7339195f2c65SRobert Elliott /* several items must be freed later */
73406f039790SGreg Kroah-Hartman static int hpsa_pci_init(struct ctlr_info *h)
734177c4495cSStephen M. Cameron {
7342eb6b2ae9SStephen M. Cameron 	int prod_index, err;
7343edd16368SStephen M. Cameron 
7344e5c880d1SStephen M. Cameron 	prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id);
7345e5c880d1SStephen M. Cameron 	if (prod_index < 0)
734660f923b9SRobert Elliott 		return prod_index;
7347e5c880d1SStephen M. Cameron 	h->product_name = products[prod_index].product_name;
7348e5c880d1SStephen M. Cameron 	h->access = *(products[prod_index].access);
7349e5c880d1SStephen M. Cameron 
73509b5c48c2SStephen Cameron 	h->needs_abort_tags_swizzled =
73519b5c48c2SStephen Cameron 		ctlr_needs_abort_tags_swizzled(h->board_id);
73529b5c48c2SStephen Cameron 
7353e5a44df8SMatthew Garrett 	pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S |
7354e5a44df8SMatthew Garrett 			       PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM);
7355e5a44df8SMatthew Garrett 
735655c06c71SStephen M. Cameron 	err = pci_enable_device(h->pdev);
7357edd16368SStephen M. Cameron 	if (err) {
7358195f2c65SRobert Elliott 		dev_err(&h->pdev->dev, "failed to enable PCI device\n");
7359943a7021SRobert Elliott 		pci_disable_device(h->pdev);
7360edd16368SStephen M. Cameron 		return err;
7361edd16368SStephen M. Cameron 	}
7362edd16368SStephen M. Cameron 
7363f79cfec6SStephen M. Cameron 	err = pci_request_regions(h->pdev, HPSA);
7364edd16368SStephen M. Cameron 	if (err) {
736555c06c71SStephen M. Cameron 		dev_err(&h->pdev->dev,
7366195f2c65SRobert Elliott 			"failed to obtain PCI resources\n");
7367943a7021SRobert Elliott 		pci_disable_device(h->pdev);
7368943a7021SRobert Elliott 		return err;
7369edd16368SStephen M. Cameron 	}
73704fa604e1SRobert Elliott 
73714fa604e1SRobert Elliott 	pci_set_master(h->pdev);
73724fa604e1SRobert Elliott 
73736b3f4c52SStephen M. Cameron 	hpsa_interrupt_mode(h);
737412d2cd47SStephen M. Cameron 	err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr);
73753a7774ceSStephen M. Cameron 	if (err)
7376195f2c65SRobert Elliott 		goto clean2;	/* intmode+region, pci */
7377edd16368SStephen M. Cameron 	h->vaddr = remap_pci_mem(h->paddr, 0x250);
7378204892e9SStephen M. Cameron 	if (!h->vaddr) {
7379195f2c65SRobert Elliott 		dev_err(&h->pdev->dev, "failed to remap PCI mem\n");
7380204892e9SStephen M. Cameron 		err = -ENOMEM;
7381195f2c65SRobert Elliott 		goto clean2;	/* intmode+region, pci */
7382204892e9SStephen M. Cameron 	}
7383fe5389c8SStephen M. Cameron 	err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
73842c4c8c8bSStephen M. Cameron 	if (err)
7385195f2c65SRobert Elliott 		goto clean3;	/* vaddr, intmode+region, pci */
738677c4495cSStephen M. Cameron 	err = hpsa_find_cfgtables(h);
738777c4495cSStephen M. Cameron 	if (err)
7388195f2c65SRobert Elliott 		goto clean3;	/* vaddr, intmode+region, pci */
7389b93d7536SStephen M. Cameron 	hpsa_find_board_params(h);
7390edd16368SStephen M. Cameron 
739176c46e49SStephen M. Cameron 	if (!hpsa_CISS_signature_present(h)) {
7392edd16368SStephen M. Cameron 		err = -ENODEV;
7393195f2c65SRobert Elliott 		goto clean4;	/* cfgtables, vaddr, intmode+region, pci */
7394edd16368SStephen M. Cameron 	}
739597a5e98cSStephen M. Cameron 	hpsa_set_driver_support_bits(h);
73963d0eab67SStephen M. Cameron 	hpsa_p600_dma_prefetch_quirk(h);
7397eb6b2ae9SStephen M. Cameron 	err = hpsa_enter_simple_mode(h);
7398eb6b2ae9SStephen M. Cameron 	if (err)
7399195f2c65SRobert Elliott 		goto clean4;	/* cfgtables, vaddr, intmode+region, pci */
7400edd16368SStephen M. Cameron 	return 0;
7401edd16368SStephen M. Cameron 
7402195f2c65SRobert Elliott clean4:	/* cfgtables, vaddr, intmode+region, pci */
7403195f2c65SRobert Elliott 	hpsa_free_cfgtables(h);
7404195f2c65SRobert Elliott clean3:	/* vaddr, intmode+region, pci */
7405204892e9SStephen M. Cameron 	iounmap(h->vaddr);
7406105a3dbcSRobert Elliott 	h->vaddr = NULL;
7407195f2c65SRobert Elliott clean2:	/* intmode+region, pci */
7408195f2c65SRobert Elliott 	hpsa_disable_interrupt_mode(h);
7409943a7021SRobert Elliott 	/*
7410943a7021SRobert Elliott 	 * call pci_disable_device before pci_release_regions per
7411943a7021SRobert Elliott 	 * Documentation/PCI/pci.txt
7412943a7021SRobert Elliott 	 */
7413195f2c65SRobert Elliott 	pci_disable_device(h->pdev);
7414943a7021SRobert Elliott 	pci_release_regions(h->pdev);
7415edd16368SStephen M. Cameron 	return err;
7416edd16368SStephen M. Cameron }
7417edd16368SStephen M. Cameron 
74186f039790SGreg Kroah-Hartman static void hpsa_hba_inquiry(struct ctlr_info *h)
7419339b2b14SStephen M. Cameron {
7420339b2b14SStephen M. Cameron 	int rc;
7421339b2b14SStephen M. Cameron 
7422339b2b14SStephen M. Cameron #define HBA_INQUIRY_BYTE_COUNT 64
7423339b2b14SStephen M. Cameron 	h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL);
7424339b2b14SStephen M. Cameron 	if (!h->hba_inquiry_data)
7425339b2b14SStephen M. Cameron 		return;
7426339b2b14SStephen M. Cameron 	rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0,
7427339b2b14SStephen M. Cameron 		h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT);
7428339b2b14SStephen M. Cameron 	if (rc != 0) {
7429339b2b14SStephen M. Cameron 		kfree(h->hba_inquiry_data);
7430339b2b14SStephen M. Cameron 		h->hba_inquiry_data = NULL;
7431339b2b14SStephen M. Cameron 	}
7432339b2b14SStephen M. Cameron }
7433339b2b14SStephen M. Cameron 
74346b6c1cd7STomas Henzl static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id)
7435edd16368SStephen M. Cameron {
74361df8552aSStephen M. Cameron 	int rc, i;
74373b747298STomas Henzl 	void __iomem *vaddr;
7438edd16368SStephen M. Cameron 
74394c2a8c40SStephen M. Cameron 	if (!reset_devices)
74404c2a8c40SStephen M. Cameron 		return 0;
74414c2a8c40SStephen M. Cameron 
7442132aa220STomas Henzl 	/* kdump kernel is loading, we don't know in which state is
7443132aa220STomas Henzl 	 * the pci interface. The dev->enable_cnt is equal zero
7444132aa220STomas Henzl 	 * so we call enable+disable, wait a while and switch it on.
7445132aa220STomas Henzl 	 */
7446132aa220STomas Henzl 	rc = pci_enable_device(pdev);
7447132aa220STomas Henzl 	if (rc) {
7448132aa220STomas Henzl 		dev_warn(&pdev->dev, "Failed to enable PCI device\n");
7449132aa220STomas Henzl 		return -ENODEV;
7450132aa220STomas Henzl 	}
7451132aa220STomas Henzl 	pci_disable_device(pdev);
7452132aa220STomas Henzl 	msleep(260);			/* a randomly chosen number */
7453132aa220STomas Henzl 	rc = pci_enable_device(pdev);
7454132aa220STomas Henzl 	if (rc) {
7455132aa220STomas Henzl 		dev_warn(&pdev->dev, "failed to enable device.\n");
7456132aa220STomas Henzl 		return -ENODEV;
7457132aa220STomas Henzl 	}
74584fa604e1SRobert Elliott 
7459859c75abSTomas Henzl 	pci_set_master(pdev);
74604fa604e1SRobert Elliott 
74613b747298STomas Henzl 	vaddr = pci_ioremap_bar(pdev, 0);
74623b747298STomas Henzl 	if (vaddr == NULL) {
74633b747298STomas Henzl 		rc = -ENOMEM;
74643b747298STomas Henzl 		goto out_disable;
74653b747298STomas Henzl 	}
74663b747298STomas Henzl 	writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET);
74673b747298STomas Henzl 	iounmap(vaddr);
74683b747298STomas Henzl 
74691df8552aSStephen M. Cameron 	/* Reset the controller with a PCI power-cycle or via doorbell */
74706b6c1cd7STomas Henzl 	rc = hpsa_kdump_hard_reset_controller(pdev, board_id);
7471edd16368SStephen M. Cameron 
74721df8552aSStephen M. Cameron 	/* -ENOTSUPP here means we cannot reset the controller
74731df8552aSStephen M. Cameron 	 * but it's already (and still) up and running in
747418867659SStephen M. Cameron 	 * "performant mode".  Or, it might be 640x, which can't reset
747518867659SStephen M. Cameron 	 * due to concerns about shared bbwc between 6402/6404 pair.
74761df8552aSStephen M. Cameron 	 */
7477adf1b3a3SRobert Elliott 	if (rc)
7478132aa220STomas Henzl 		goto out_disable;
7479edd16368SStephen M. Cameron 
7480edd16368SStephen M. Cameron 	/* Now try to get the controller to respond to a no-op */
74811ba66c9cSRobert Elliott 	dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n");
7482edd16368SStephen M. Cameron 	for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) {
7483edd16368SStephen M. Cameron 		if (hpsa_noop(pdev) == 0)
7484edd16368SStephen M. Cameron 			break;
7485edd16368SStephen M. Cameron 		else
7486edd16368SStephen M. Cameron 			dev_warn(&pdev->dev, "no-op failed%s\n",
7487edd16368SStephen M. Cameron 					(i < 11 ? "; re-trying" : ""));
7488edd16368SStephen M. Cameron 	}
7489132aa220STomas Henzl 
7490132aa220STomas Henzl out_disable:
7491132aa220STomas Henzl 
7492132aa220STomas Henzl 	pci_disable_device(pdev);
7493132aa220STomas Henzl 	return rc;
7494edd16368SStephen M. Cameron }
7495edd16368SStephen M. Cameron 
74961fb7c98aSRobert Elliott static void hpsa_free_cmd_pool(struct ctlr_info *h)
74971fb7c98aSRobert Elliott {
74981fb7c98aSRobert Elliott 	kfree(h->cmd_pool_bits);
7499105a3dbcSRobert Elliott 	h->cmd_pool_bits = NULL;
7500105a3dbcSRobert Elliott 	if (h->cmd_pool) {
75011fb7c98aSRobert Elliott 		pci_free_consistent(h->pdev,
75021fb7c98aSRobert Elliott 				h->nr_cmds * sizeof(struct CommandList),
75031fb7c98aSRobert Elliott 				h->cmd_pool,
75041fb7c98aSRobert Elliott 				h->cmd_pool_dhandle);
7505105a3dbcSRobert Elliott 		h->cmd_pool = NULL;
7506105a3dbcSRobert Elliott 		h->cmd_pool_dhandle = 0;
7507105a3dbcSRobert Elliott 	}
7508105a3dbcSRobert Elliott 	if (h->errinfo_pool) {
75091fb7c98aSRobert Elliott 		pci_free_consistent(h->pdev,
75101fb7c98aSRobert Elliott 				h->nr_cmds * sizeof(struct ErrorInfo),
75111fb7c98aSRobert Elliott 				h->errinfo_pool,
75121fb7c98aSRobert Elliott 				h->errinfo_pool_dhandle);
7513105a3dbcSRobert Elliott 		h->errinfo_pool = NULL;
7514105a3dbcSRobert Elliott 		h->errinfo_pool_dhandle = 0;
7515105a3dbcSRobert Elliott 	}
75161fb7c98aSRobert Elliott }
75171fb7c98aSRobert Elliott 
7518d37ffbe4SRobert Elliott static int hpsa_alloc_cmd_pool(struct ctlr_info *h)
75192e9d1b36SStephen M. Cameron {
75202e9d1b36SStephen M. Cameron 	h->cmd_pool_bits = kzalloc(
75212e9d1b36SStephen M. Cameron 		DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) *
75222e9d1b36SStephen M. Cameron 		sizeof(unsigned long), GFP_KERNEL);
75232e9d1b36SStephen M. Cameron 	h->cmd_pool = pci_alloc_consistent(h->pdev,
75242e9d1b36SStephen M. Cameron 		    h->nr_cmds * sizeof(*h->cmd_pool),
75252e9d1b36SStephen M. Cameron 		    &(h->cmd_pool_dhandle));
75262e9d1b36SStephen M. Cameron 	h->errinfo_pool = pci_alloc_consistent(h->pdev,
75272e9d1b36SStephen M. Cameron 		    h->nr_cmds * sizeof(*h->errinfo_pool),
75282e9d1b36SStephen M. Cameron 		    &(h->errinfo_pool_dhandle));
75292e9d1b36SStephen M. Cameron 	if ((h->cmd_pool_bits == NULL)
75302e9d1b36SStephen M. Cameron 	    || (h->cmd_pool == NULL)
75312e9d1b36SStephen M. Cameron 	    || (h->errinfo_pool == NULL)) {
75322e9d1b36SStephen M. Cameron 		dev_err(&h->pdev->dev, "out of memory in %s", __func__);
75332c143342SRobert Elliott 		goto clean_up;
75342e9d1b36SStephen M. Cameron 	}
7535360c73bdSStephen Cameron 	hpsa_preinitialize_commands(h);
75362e9d1b36SStephen M. Cameron 	return 0;
75372c143342SRobert Elliott clean_up:
75382c143342SRobert Elliott 	hpsa_free_cmd_pool(h);
75392c143342SRobert Elliott 	return -ENOMEM;
75402e9d1b36SStephen M. Cameron }
75412e9d1b36SStephen M. Cameron 
754241b3cf08SStephen M. Cameron static void hpsa_irq_affinity_hints(struct ctlr_info *h)
754341b3cf08SStephen M. Cameron {
7544ec429952SFabian Frederick 	int i, cpu;
754541b3cf08SStephen M. Cameron 
754641b3cf08SStephen M. Cameron 	cpu = cpumask_first(cpu_online_mask);
754741b3cf08SStephen M. Cameron 	for (i = 0; i < h->msix_vector; i++) {
7548ec429952SFabian Frederick 		irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu));
754941b3cf08SStephen M. Cameron 		cpu = cpumask_next(cpu, cpu_online_mask);
755041b3cf08SStephen M. Cameron 	}
755141b3cf08SStephen M. Cameron }
755241b3cf08SStephen M. Cameron 
7553ec501a18SRobert Elliott /* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */
7554ec501a18SRobert Elliott static void hpsa_free_irqs(struct ctlr_info *h)
7555ec501a18SRobert Elliott {
7556ec501a18SRobert Elliott 	int i;
7557ec501a18SRobert Elliott 
7558ec501a18SRobert Elliott 	if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) {
7559ec501a18SRobert Elliott 		/* Single reply queue, only one irq to free */
7560ec501a18SRobert Elliott 		i = h->intr_mode;
7561ec501a18SRobert Elliott 		irq_set_affinity_hint(h->intr[i], NULL);
7562ec501a18SRobert Elliott 		free_irq(h->intr[i], &h->q[i]);
7563105a3dbcSRobert Elliott 		h->q[i] = 0;
7564ec501a18SRobert Elliott 		return;
7565ec501a18SRobert Elliott 	}
7566ec501a18SRobert Elliott 
7567ec501a18SRobert Elliott 	for (i = 0; i < h->msix_vector; i++) {
7568ec501a18SRobert Elliott 		irq_set_affinity_hint(h->intr[i], NULL);
7569ec501a18SRobert Elliott 		free_irq(h->intr[i], &h->q[i]);
7570105a3dbcSRobert Elliott 		h->q[i] = 0;
7571ec501a18SRobert Elliott 	}
7572a4e17fc1SRobert Elliott 	for (; i < MAX_REPLY_QUEUES; i++)
7573a4e17fc1SRobert Elliott 		h->q[i] = 0;
7574ec501a18SRobert Elliott }
7575ec501a18SRobert Elliott 
75769ee61794SRobert Elliott /* returns 0 on success; cleans up and returns -Enn on error */
75779ee61794SRobert Elliott static int hpsa_request_irqs(struct ctlr_info *h,
75780ae01a32SStephen M. Cameron 	irqreturn_t (*msixhandler)(int, void *),
75790ae01a32SStephen M. Cameron 	irqreturn_t (*intxhandler)(int, void *))
75800ae01a32SStephen M. Cameron {
7581254f796bSMatt Gates 	int rc, i;
75820ae01a32SStephen M. Cameron 
7583254f796bSMatt Gates 	/*
7584254f796bSMatt Gates 	 * initialize h->q[x] = x so that interrupt handlers know which
7585254f796bSMatt Gates 	 * queue to process.
7586254f796bSMatt Gates 	 */
7587254f796bSMatt Gates 	for (i = 0; i < MAX_REPLY_QUEUES; i++)
7588254f796bSMatt Gates 		h->q[i] = (u8) i;
7589254f796bSMatt Gates 
7590eee0f03aSHannes Reinecke 	if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) {
7591254f796bSMatt Gates 		/* If performant mode and MSI-X, use multiple reply queues */
7592a4e17fc1SRobert Elliott 		for (i = 0; i < h->msix_vector; i++) {
75938b47004aSRobert Elliott 			sprintf(h->intrname[i], "%s-msix%d", h->devname, i);
7594254f796bSMatt Gates 			rc = request_irq(h->intr[i], msixhandler,
75958b47004aSRobert Elliott 					0, h->intrname[i],
7596254f796bSMatt Gates 					&h->q[i]);
7597a4e17fc1SRobert Elliott 			if (rc) {
7598a4e17fc1SRobert Elliott 				int j;
7599a4e17fc1SRobert Elliott 
7600a4e17fc1SRobert Elliott 				dev_err(&h->pdev->dev,
7601a4e17fc1SRobert Elliott 					"failed to get irq %d for %s\n",
7602a4e17fc1SRobert Elliott 				       h->intr[i], h->devname);
7603a4e17fc1SRobert Elliott 				for (j = 0; j < i; j++) {
7604a4e17fc1SRobert Elliott 					free_irq(h->intr[j], &h->q[j]);
7605a4e17fc1SRobert Elliott 					h->q[j] = 0;
7606a4e17fc1SRobert Elliott 				}
7607a4e17fc1SRobert Elliott 				for (; j < MAX_REPLY_QUEUES; j++)
7608a4e17fc1SRobert Elliott 					h->q[j] = 0;
7609a4e17fc1SRobert Elliott 				return rc;
7610a4e17fc1SRobert Elliott 			}
7611a4e17fc1SRobert Elliott 		}
761241b3cf08SStephen M. Cameron 		hpsa_irq_affinity_hints(h);
7613254f796bSMatt Gates 	} else {
7614254f796bSMatt Gates 		/* Use single reply pool */
7615eee0f03aSHannes Reinecke 		if (h->msix_vector > 0 || h->msi_vector) {
76168b47004aSRobert Elliott 			if (h->msix_vector)
76178b47004aSRobert Elliott 				sprintf(h->intrname[h->intr_mode],
76188b47004aSRobert Elliott 					"%s-msix", h->devname);
76198b47004aSRobert Elliott 			else
76208b47004aSRobert Elliott 				sprintf(h->intrname[h->intr_mode],
76218b47004aSRobert Elliott 					"%s-msi", h->devname);
7622254f796bSMatt Gates 			rc = request_irq(h->intr[h->intr_mode],
76238b47004aSRobert Elliott 				msixhandler, 0,
76248b47004aSRobert Elliott 				h->intrname[h->intr_mode],
7625254f796bSMatt Gates 				&h->q[h->intr_mode]);
7626254f796bSMatt Gates 		} else {
76278b47004aSRobert Elliott 			sprintf(h->intrname[h->intr_mode],
76288b47004aSRobert Elliott 				"%s-intx", h->devname);
7629254f796bSMatt Gates 			rc = request_irq(h->intr[h->intr_mode],
76308b47004aSRobert Elliott 				intxhandler, IRQF_SHARED,
76318b47004aSRobert Elliott 				h->intrname[h->intr_mode],
7632254f796bSMatt Gates 				&h->q[h->intr_mode]);
7633254f796bSMatt Gates 		}
7634105a3dbcSRobert Elliott 		irq_set_affinity_hint(h->intr[h->intr_mode], NULL);
7635254f796bSMatt Gates 	}
76360ae01a32SStephen M. Cameron 	if (rc) {
7637195f2c65SRobert Elliott 		dev_err(&h->pdev->dev, "failed to get irq %d for %s\n",
76380ae01a32SStephen M. Cameron 		       h->intr[h->intr_mode], h->devname);
7639195f2c65SRobert Elliott 		hpsa_free_irqs(h);
76400ae01a32SStephen M. Cameron 		return -ENODEV;
76410ae01a32SStephen M. Cameron 	}
76420ae01a32SStephen M. Cameron 	return 0;
76430ae01a32SStephen M. Cameron }
76440ae01a32SStephen M. Cameron 
76456f039790SGreg Kroah-Hartman static int hpsa_kdump_soft_reset(struct ctlr_info *h)
764664670ac8SStephen M. Cameron {
764739c53f55SRobert Elliott 	int rc;
7648bf43caf3SRobert Elliott 	hpsa_send_host_reset(h, RAID_CTLR_LUNID, HPSA_RESET_TYPE_CONTROLLER);
764964670ac8SStephen M. Cameron 
765064670ac8SStephen M. Cameron 	dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n");
765139c53f55SRobert Elliott 	rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY);
765239c53f55SRobert Elliott 	if (rc) {
765364670ac8SStephen M. Cameron 		dev_warn(&h->pdev->dev, "Soft reset had no effect.\n");
765439c53f55SRobert Elliott 		return rc;
765564670ac8SStephen M. Cameron 	}
765664670ac8SStephen M. Cameron 
765764670ac8SStephen M. Cameron 	dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n");
765839c53f55SRobert Elliott 	rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY);
765939c53f55SRobert Elliott 	if (rc) {
766064670ac8SStephen M. Cameron 		dev_warn(&h->pdev->dev, "Board failed to become ready "
766164670ac8SStephen M. Cameron 			"after soft reset.\n");
766239c53f55SRobert Elliott 		return rc;
766364670ac8SStephen M. Cameron 	}
766464670ac8SStephen M. Cameron 
766564670ac8SStephen M. Cameron 	return 0;
766664670ac8SStephen M. Cameron }
766764670ac8SStephen M. Cameron 
7668072b0518SStephen M. Cameron static void hpsa_free_reply_queues(struct ctlr_info *h)
7669072b0518SStephen M. Cameron {
7670072b0518SStephen M. Cameron 	int i;
7671072b0518SStephen M. Cameron 
7672072b0518SStephen M. Cameron 	for (i = 0; i < h->nreply_queues; i++) {
7673072b0518SStephen M. Cameron 		if (!h->reply_queue[i].head)
7674072b0518SStephen M. Cameron 			continue;
76751fb7c98aSRobert Elliott 		pci_free_consistent(h->pdev,
76761fb7c98aSRobert Elliott 					h->reply_queue_size,
76771fb7c98aSRobert Elliott 					h->reply_queue[i].head,
76781fb7c98aSRobert Elliott 					h->reply_queue[i].busaddr);
7679072b0518SStephen M. Cameron 		h->reply_queue[i].head = NULL;
7680072b0518SStephen M. Cameron 		h->reply_queue[i].busaddr = 0;
7681072b0518SStephen M. Cameron 	}
7682105a3dbcSRobert Elliott 	h->reply_queue_size = 0;
7683072b0518SStephen M. Cameron }
7684072b0518SStephen M. Cameron 
76850097f0f4SStephen M. Cameron static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h)
76860097f0f4SStephen M. Cameron {
7687105a3dbcSRobert Elliott 	hpsa_free_performant_mode(h);		/* init_one 7 */
7688105a3dbcSRobert Elliott 	hpsa_free_sg_chain_blocks(h);		/* init_one 6 */
7689105a3dbcSRobert Elliott 	hpsa_free_cmd_pool(h);			/* init_one 5 */
7690105a3dbcSRobert Elliott 	hpsa_free_irqs(h);			/* init_one 4 */
76912946e82bSRobert Elliott 	scsi_host_put(h->scsi_host);		/* init_one 3 */
76922946e82bSRobert Elliott 	h->scsi_host = NULL;			/* init_one 3 */
76932946e82bSRobert Elliott 	hpsa_free_pci_init(h);			/* init_one 2_5 */
76949ecd953aSRobert Elliott 	free_percpu(h->lockup_detected);	/* init_one 2 */
76959ecd953aSRobert Elliott 	h->lockup_detected = NULL;		/* init_one 2 */
76969ecd953aSRobert Elliott 	if (h->resubmit_wq) {
76979ecd953aSRobert Elliott 		destroy_workqueue(h->resubmit_wq);	/* init_one 1 */
76989ecd953aSRobert Elliott 		h->resubmit_wq = NULL;
76999ecd953aSRobert Elliott 	}
77009ecd953aSRobert Elliott 	if (h->rescan_ctlr_wq) {
77019ecd953aSRobert Elliott 		destroy_workqueue(h->rescan_ctlr_wq);
77029ecd953aSRobert Elliott 		h->rescan_ctlr_wq = NULL;
77039ecd953aSRobert Elliott 	}
7704105a3dbcSRobert Elliott 	kfree(h);				/* init_one 1 */
770564670ac8SStephen M. Cameron }
770664670ac8SStephen M. Cameron 
7707a0c12413SStephen M. Cameron /* Called when controller lockup detected. */
7708f2405db8SDon Brace static void fail_all_outstanding_cmds(struct ctlr_info *h)
7709a0c12413SStephen M. Cameron {
7710281a7fd0SWebb Scales 	int i, refcount;
7711281a7fd0SWebb Scales 	struct CommandList *c;
771225163bd5SWebb Scales 	int failcount = 0;
7713a0c12413SStephen M. Cameron 
7714080ef1ccSDon Brace 	flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */
7715f2405db8SDon Brace 	for (i = 0; i < h->nr_cmds; i++) {
7716f2405db8SDon Brace 		c = h->cmd_pool + i;
7717281a7fd0SWebb Scales 		refcount = atomic_inc_return(&c->refcount);
7718281a7fd0SWebb Scales 		if (refcount > 1) {
771925163bd5SWebb Scales 			c->err_info->CommandStatus = CMD_CTLR_LOCKUP;
77205a3d16f5SStephen M. Cameron 			finish_cmd(c);
7721433b5f4dSStephen Cameron 			atomic_dec(&h->commands_outstanding);
772225163bd5SWebb Scales 			failcount++;
7723a0c12413SStephen M. Cameron 		}
7724281a7fd0SWebb Scales 		cmd_free(h, c);
7725281a7fd0SWebb Scales 	}
772625163bd5SWebb Scales 	dev_warn(&h->pdev->dev,
772725163bd5SWebb Scales 		"failed %d commands in fail_all\n", failcount);
7728a0c12413SStephen M. Cameron }
7729a0c12413SStephen M. Cameron 
7730094963daSStephen M. Cameron static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value)
7731094963daSStephen M. Cameron {
7732c8ed0010SRusty Russell 	int cpu;
7733094963daSStephen M. Cameron 
7734c8ed0010SRusty Russell 	for_each_online_cpu(cpu) {
7735094963daSStephen M. Cameron 		u32 *lockup_detected;
7736094963daSStephen M. Cameron 		lockup_detected = per_cpu_ptr(h->lockup_detected, cpu);
7737094963daSStephen M. Cameron 		*lockup_detected = value;
7738094963daSStephen M. Cameron 	}
7739094963daSStephen M. Cameron 	wmb(); /* be sure the per-cpu variables are out to memory */
7740094963daSStephen M. Cameron }
7741094963daSStephen M. Cameron 
7742a0c12413SStephen M. Cameron static void controller_lockup_detected(struct ctlr_info *h)
7743a0c12413SStephen M. Cameron {
7744a0c12413SStephen M. Cameron 	unsigned long flags;
7745094963daSStephen M. Cameron 	u32 lockup_detected;
7746a0c12413SStephen M. Cameron 
7747a0c12413SStephen M. Cameron 	h->access.set_intr_mask(h, HPSA_INTR_OFF);
7748a0c12413SStephen M. Cameron 	spin_lock_irqsave(&h->lock, flags);
7749094963daSStephen M. Cameron 	lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET);
7750094963daSStephen M. Cameron 	if (!lockup_detected) {
7751094963daSStephen M. Cameron 		/* no heartbeat, but controller gave us a zero. */
7752094963daSStephen M. Cameron 		dev_warn(&h->pdev->dev,
775325163bd5SWebb Scales 			"lockup detected after %d but scratchpad register is zero\n",
775425163bd5SWebb Scales 			h->heartbeat_sample_interval / HZ);
7755094963daSStephen M. Cameron 		lockup_detected = 0xffffffff;
7756094963daSStephen M. Cameron 	}
7757094963daSStephen M. Cameron 	set_lockup_detected_for_all_cpus(h, lockup_detected);
7758a0c12413SStephen M. Cameron 	spin_unlock_irqrestore(&h->lock, flags);
775925163bd5SWebb Scales 	dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n",
776025163bd5SWebb Scales 			lockup_detected, h->heartbeat_sample_interval / HZ);
7761a0c12413SStephen M. Cameron 	pci_disable_device(h->pdev);
7762f2405db8SDon Brace 	fail_all_outstanding_cmds(h);
7763a0c12413SStephen M. Cameron }
7764a0c12413SStephen M. Cameron 
776525163bd5SWebb Scales static int detect_controller_lockup(struct ctlr_info *h)
7766a0c12413SStephen M. Cameron {
7767a0c12413SStephen M. Cameron 	u64 now;
7768a0c12413SStephen M. Cameron 	u32 heartbeat;
7769a0c12413SStephen M. Cameron 	unsigned long flags;
7770a0c12413SStephen M. Cameron 
7771a0c12413SStephen M. Cameron 	now = get_jiffies_64();
7772a0c12413SStephen M. Cameron 	/* If we've received an interrupt recently, we're ok. */
7773a0c12413SStephen M. Cameron 	if (time_after64(h->last_intr_timestamp +
7774e85c5974SStephen M. Cameron 				(h->heartbeat_sample_interval), now))
777525163bd5SWebb Scales 		return false;
7776a0c12413SStephen M. Cameron 
7777a0c12413SStephen M. Cameron 	/*
7778a0c12413SStephen M. Cameron 	 * If we've already checked the heartbeat recently, we're ok.
7779a0c12413SStephen M. Cameron 	 * This could happen if someone sends us a signal. We
7780a0c12413SStephen M. Cameron 	 * otherwise don't care about signals in this thread.
7781a0c12413SStephen M. Cameron 	 */
7782a0c12413SStephen M. Cameron 	if (time_after64(h->last_heartbeat_timestamp +
7783e85c5974SStephen M. Cameron 				(h->heartbeat_sample_interval), now))
778425163bd5SWebb Scales 		return false;
7785a0c12413SStephen M. Cameron 
7786a0c12413SStephen M. Cameron 	/* If heartbeat has not changed since we last looked, we're not ok. */
7787a0c12413SStephen M. Cameron 	spin_lock_irqsave(&h->lock, flags);
7788a0c12413SStephen M. Cameron 	heartbeat = readl(&h->cfgtable->HeartBeat);
7789a0c12413SStephen M. Cameron 	spin_unlock_irqrestore(&h->lock, flags);
7790a0c12413SStephen M. Cameron 	if (h->last_heartbeat == heartbeat) {
7791a0c12413SStephen M. Cameron 		controller_lockup_detected(h);
779225163bd5SWebb Scales 		return true;
7793a0c12413SStephen M. Cameron 	}
7794a0c12413SStephen M. Cameron 
7795a0c12413SStephen M. Cameron 	/* We're ok. */
7796a0c12413SStephen M. Cameron 	h->last_heartbeat = heartbeat;
7797a0c12413SStephen M. Cameron 	h->last_heartbeat_timestamp = now;
779825163bd5SWebb Scales 	return false;
7799a0c12413SStephen M. Cameron }
7800a0c12413SStephen M. Cameron 
78019846590eSStephen M. Cameron static void hpsa_ack_ctlr_events(struct ctlr_info *h)
780276438d08SStephen M. Cameron {
780376438d08SStephen M. Cameron 	int i;
780476438d08SStephen M. Cameron 	char *event_type;
780576438d08SStephen M. Cameron 
7806e4aa3e6aSStephen Cameron 	if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
7807e4aa3e6aSStephen Cameron 		return;
7808e4aa3e6aSStephen Cameron 
780976438d08SStephen M. Cameron 	/* Ask the controller to clear the events we're handling. */
78101f7cee8cSStephen M. Cameron 	if ((h->transMethod & (CFGTBL_Trans_io_accel1
78111f7cee8cSStephen M. Cameron 			| CFGTBL_Trans_io_accel2)) &&
781276438d08SStephen M. Cameron 		(h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE ||
781376438d08SStephen M. Cameron 		 h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) {
781476438d08SStephen M. Cameron 
781576438d08SStephen M. Cameron 		if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE)
781676438d08SStephen M. Cameron 			event_type = "state change";
781776438d08SStephen M. Cameron 		if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)
781876438d08SStephen M. Cameron 			event_type = "configuration change";
781976438d08SStephen M. Cameron 		/* Stop sending new RAID offload reqs via the IO accelerator */
782076438d08SStephen M. Cameron 		scsi_block_requests(h->scsi_host);
782176438d08SStephen M. Cameron 		for (i = 0; i < h->ndevices; i++)
782276438d08SStephen M. Cameron 			h->dev[i]->offload_enabled = 0;
782323100dd9SStephen M. Cameron 		hpsa_drain_accel_commands(h);
782476438d08SStephen M. Cameron 		/* Set 'accelerator path config change' bit */
782576438d08SStephen M. Cameron 		dev_warn(&h->pdev->dev,
782676438d08SStephen M. Cameron 			"Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n",
782776438d08SStephen M. Cameron 			h->events, event_type);
782876438d08SStephen M. Cameron 		writel(h->events, &(h->cfgtable->clear_event_notify));
782976438d08SStephen M. Cameron 		/* Set the "clear event notify field update" bit 6 */
783076438d08SStephen M. Cameron 		writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
783176438d08SStephen M. Cameron 		/* Wait until ctlr clears 'clear event notify field', bit 6 */
783276438d08SStephen M. Cameron 		hpsa_wait_for_clear_event_notify_ack(h);
783376438d08SStephen M. Cameron 		scsi_unblock_requests(h->scsi_host);
783476438d08SStephen M. Cameron 	} else {
783576438d08SStephen M. Cameron 		/* Acknowledge controller notification events. */
783676438d08SStephen M. Cameron 		writel(h->events, &(h->cfgtable->clear_event_notify));
783776438d08SStephen M. Cameron 		writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL);
783876438d08SStephen M. Cameron 		hpsa_wait_for_clear_event_notify_ack(h);
783976438d08SStephen M. Cameron #if 0
784076438d08SStephen M. Cameron 		writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
784176438d08SStephen M. Cameron 		hpsa_wait_for_mode_change_ack(h);
784276438d08SStephen M. Cameron #endif
784376438d08SStephen M. Cameron 	}
78449846590eSStephen M. Cameron 	return;
784576438d08SStephen M. Cameron }
784676438d08SStephen M. Cameron 
784776438d08SStephen M. Cameron /* Check a register on the controller to see if there are configuration
784876438d08SStephen M. Cameron  * changes (added/changed/removed logical drives, etc.) which mean that
7849e863d68eSScott Teel  * we should rescan the controller for devices.
7850e863d68eSScott Teel  * Also check flag for driver-initiated rescan.
785176438d08SStephen M. Cameron  */
78529846590eSStephen M. Cameron static int hpsa_ctlr_needs_rescan(struct ctlr_info *h)
785376438d08SStephen M. Cameron {
785476438d08SStephen M. Cameron 	if (!(h->fw_support & MISC_FW_EVENT_NOTIFY))
78559846590eSStephen M. Cameron 		return 0;
785676438d08SStephen M. Cameron 
785776438d08SStephen M. Cameron 	h->events = readl(&(h->cfgtable->event_notify));
78589846590eSStephen M. Cameron 	return h->events & RESCAN_REQUIRED_EVENT_BITS;
78599846590eSStephen M. Cameron }
786076438d08SStephen M. Cameron 
786176438d08SStephen M. Cameron /*
78629846590eSStephen M. Cameron  * Check if any of the offline devices have become ready
786376438d08SStephen M. Cameron  */
78649846590eSStephen M. Cameron static int hpsa_offline_devices_ready(struct ctlr_info *h)
78659846590eSStephen M. Cameron {
78669846590eSStephen M. Cameron 	unsigned long flags;
78679846590eSStephen M. Cameron 	struct offline_device_entry *d;
78689846590eSStephen M. Cameron 	struct list_head *this, *tmp;
78699846590eSStephen M. Cameron 
78709846590eSStephen M. Cameron 	spin_lock_irqsave(&h->offline_device_lock, flags);
78719846590eSStephen M. Cameron 	list_for_each_safe(this, tmp, &h->offline_device_list) {
78729846590eSStephen M. Cameron 		d = list_entry(this, struct offline_device_entry,
78739846590eSStephen M. Cameron 				offline_list);
78749846590eSStephen M. Cameron 		spin_unlock_irqrestore(&h->offline_device_lock, flags);
7875d1fea47cSStephen M. Cameron 		if (!hpsa_volume_offline(h, d->scsi3addr)) {
7876d1fea47cSStephen M. Cameron 			spin_lock_irqsave(&h->offline_device_lock, flags);
7877d1fea47cSStephen M. Cameron 			list_del(&d->offline_list);
7878d1fea47cSStephen M. Cameron 			spin_unlock_irqrestore(&h->offline_device_lock, flags);
78799846590eSStephen M. Cameron 			return 1;
7880d1fea47cSStephen M. Cameron 		}
78819846590eSStephen M. Cameron 		spin_lock_irqsave(&h->offline_device_lock, flags);
788276438d08SStephen M. Cameron 	}
78839846590eSStephen M. Cameron 	spin_unlock_irqrestore(&h->offline_device_lock, flags);
78849846590eSStephen M. Cameron 	return 0;
78859846590eSStephen M. Cameron }
78869846590eSStephen M. Cameron 
78876636e7f4SDon Brace static void hpsa_rescan_ctlr_worker(struct work_struct *work)
7888a0c12413SStephen M. Cameron {
7889a0c12413SStephen M. Cameron 	unsigned long flags;
78908a98db73SStephen M. Cameron 	struct ctlr_info *h = container_of(to_delayed_work(work),
78916636e7f4SDon Brace 					struct ctlr_info, rescan_ctlr_work);
78926636e7f4SDon Brace 
78936636e7f4SDon Brace 
78946636e7f4SDon Brace 	if (h->remove_in_progress)
78958a98db73SStephen M. Cameron 		return;
78969846590eSStephen M. Cameron 
78979846590eSStephen M. Cameron 	if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) {
78989846590eSStephen M. Cameron 		scsi_host_get(h->scsi_host);
78999846590eSStephen M. Cameron 		hpsa_ack_ctlr_events(h);
79009846590eSStephen M. Cameron 		hpsa_scan_start(h->scsi_host);
79019846590eSStephen M. Cameron 		scsi_host_put(h->scsi_host);
79029846590eSStephen M. Cameron 	}
79036636e7f4SDon Brace 	spin_lock_irqsave(&h->lock, flags);
79046636e7f4SDon Brace 	if (!h->remove_in_progress)
79056636e7f4SDon Brace 		queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
79066636e7f4SDon Brace 				h->heartbeat_sample_interval);
79076636e7f4SDon Brace 	spin_unlock_irqrestore(&h->lock, flags);
79086636e7f4SDon Brace }
79096636e7f4SDon Brace 
79106636e7f4SDon Brace static void hpsa_monitor_ctlr_worker(struct work_struct *work)
79116636e7f4SDon Brace {
79126636e7f4SDon Brace 	unsigned long flags;
79136636e7f4SDon Brace 	struct ctlr_info *h = container_of(to_delayed_work(work),
79146636e7f4SDon Brace 					struct ctlr_info, monitor_ctlr_work);
79156636e7f4SDon Brace 
79166636e7f4SDon Brace 	detect_controller_lockup(h);
79176636e7f4SDon Brace 	if (lockup_detected(h))
79186636e7f4SDon Brace 		return;
79199846590eSStephen M. Cameron 
79208a98db73SStephen M. Cameron 	spin_lock_irqsave(&h->lock, flags);
79216636e7f4SDon Brace 	if (!h->remove_in_progress)
79228a98db73SStephen M. Cameron 		schedule_delayed_work(&h->monitor_ctlr_work,
79238a98db73SStephen M. Cameron 				h->heartbeat_sample_interval);
79248a98db73SStephen M. Cameron 	spin_unlock_irqrestore(&h->lock, flags);
7925a0c12413SStephen M. Cameron }
7926a0c12413SStephen M. Cameron 
79276636e7f4SDon Brace static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h,
79286636e7f4SDon Brace 						char *name)
79296636e7f4SDon Brace {
79306636e7f4SDon Brace 	struct workqueue_struct *wq = NULL;
79316636e7f4SDon Brace 
7932397ea9cbSDon Brace 	wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr);
79336636e7f4SDon Brace 	if (!wq)
79346636e7f4SDon Brace 		dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name);
79356636e7f4SDon Brace 
79366636e7f4SDon Brace 	return wq;
79376636e7f4SDon Brace }
79386636e7f4SDon Brace 
79396f039790SGreg Kroah-Hartman static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
79404c2a8c40SStephen M. Cameron {
79414c2a8c40SStephen M. Cameron 	int dac, rc;
79424c2a8c40SStephen M. Cameron 	struct ctlr_info *h;
794364670ac8SStephen M. Cameron 	int try_soft_reset = 0;
794464670ac8SStephen M. Cameron 	unsigned long flags;
79456b6c1cd7STomas Henzl 	u32 board_id;
79464c2a8c40SStephen M. Cameron 
79474c2a8c40SStephen M. Cameron 	if (number_of_controllers == 0)
79484c2a8c40SStephen M. Cameron 		printk(KERN_INFO DRIVER_NAME "\n");
79494c2a8c40SStephen M. Cameron 
79506b6c1cd7STomas Henzl 	rc = hpsa_lookup_board_id(pdev, &board_id);
79516b6c1cd7STomas Henzl 	if (rc < 0) {
79526b6c1cd7STomas Henzl 		dev_warn(&pdev->dev, "Board ID not found\n");
79536b6c1cd7STomas Henzl 		return rc;
79546b6c1cd7STomas Henzl 	}
79556b6c1cd7STomas Henzl 
79566b6c1cd7STomas Henzl 	rc = hpsa_init_reset_devices(pdev, board_id);
795764670ac8SStephen M. Cameron 	if (rc) {
795864670ac8SStephen M. Cameron 		if (rc != -ENOTSUPP)
79594c2a8c40SStephen M. Cameron 			return rc;
796064670ac8SStephen M. Cameron 		/* If the reset fails in a particular way (it has no way to do
796164670ac8SStephen M. Cameron 		 * a proper hard reset, so returns -ENOTSUPP) we can try to do
796264670ac8SStephen M. Cameron 		 * a soft reset once we get the controller configured up to the
796364670ac8SStephen M. Cameron 		 * point that it can accept a command.
796464670ac8SStephen M. Cameron 		 */
796564670ac8SStephen M. Cameron 		try_soft_reset = 1;
796664670ac8SStephen M. Cameron 		rc = 0;
796764670ac8SStephen M. Cameron 	}
796864670ac8SStephen M. Cameron 
796964670ac8SStephen M. Cameron reinit_after_soft_reset:
79704c2a8c40SStephen M. Cameron 
7971303932fdSDon Brace 	/* Command structures must be aligned on a 32-byte boundary because
7972303932fdSDon Brace 	 * the 5 lower bits of the address are used by the hardware. and by
7973303932fdSDon Brace 	 * the driver.  See comments in hpsa.h for more info.
7974303932fdSDon Brace 	 */
7975303932fdSDon Brace 	BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT);
7976edd16368SStephen M. Cameron 	h = kzalloc(sizeof(*h), GFP_KERNEL);
7977105a3dbcSRobert Elliott 	if (!h) {
7978105a3dbcSRobert Elliott 		dev_err(&pdev->dev, "Failed to allocate controller head\n");
7979ecd9aad4SStephen M. Cameron 		return -ENOMEM;
7980105a3dbcSRobert Elliott 	}
7981edd16368SStephen M. Cameron 
798255c06c71SStephen M. Cameron 	h->pdev = pdev;
7983105a3dbcSRobert Elliott 
7984a9a3a273SStephen M. Cameron 	h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT;
79859846590eSStephen M. Cameron 	INIT_LIST_HEAD(&h->offline_device_list);
79866eaf46fdSStephen M. Cameron 	spin_lock_init(&h->lock);
79879846590eSStephen M. Cameron 	spin_lock_init(&h->offline_device_lock);
79886eaf46fdSStephen M. Cameron 	spin_lock_init(&h->scan_lock);
798934f0c627SDon Brace 	atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS);
79909b5c48c2SStephen Cameron 	atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS);
7991094963daSStephen M. Cameron 
7992094963daSStephen M. Cameron 	/* Allocate and clear per-cpu variable lockup_detected */
7993094963daSStephen M. Cameron 	h->lockup_detected = alloc_percpu(u32);
79942a5ac326SStephen M. Cameron 	if (!h->lockup_detected) {
7995105a3dbcSRobert Elliott 		dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n");
79962a5ac326SStephen M. Cameron 		rc = -ENOMEM;
79972efa5929SRobert Elliott 		goto clean1;	/* aer/h */
79982a5ac326SStephen M. Cameron 	}
7999094963daSStephen M. Cameron 	set_lockup_detected_for_all_cpus(h, 0);
8000094963daSStephen M. Cameron 
800155c06c71SStephen M. Cameron 	rc = hpsa_pci_init(h);
8002105a3dbcSRobert Elliott 	if (rc)
80032946e82bSRobert Elliott 		goto clean2;	/* lu, aer/h */
8004edd16368SStephen M. Cameron 
80052946e82bSRobert Elliott 	/* relies on h-> settings made by hpsa_pci_init, including
80062946e82bSRobert Elliott 	 * interrupt_mode h->intr */
80072946e82bSRobert Elliott 	rc = hpsa_scsi_host_alloc(h);
80082946e82bSRobert Elliott 	if (rc)
80092946e82bSRobert Elliott 		goto clean2_5;	/* pci, lu, aer/h */
80102946e82bSRobert Elliott 
80112946e82bSRobert Elliott 	sprintf(h->devname, HPSA "%d", h->scsi_host->host_no);
8012edd16368SStephen M. Cameron 	h->ctlr = number_of_controllers;
8013edd16368SStephen M. Cameron 	number_of_controllers++;
8014edd16368SStephen M. Cameron 
8015edd16368SStephen M. Cameron 	/* configure PCI DMA stuff */
8016ecd9aad4SStephen M. Cameron 	rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
8017ecd9aad4SStephen M. Cameron 	if (rc == 0) {
8018edd16368SStephen M. Cameron 		dac = 1;
8019ecd9aad4SStephen M. Cameron 	} else {
8020ecd9aad4SStephen M. Cameron 		rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
8021ecd9aad4SStephen M. Cameron 		if (rc == 0) {
8022edd16368SStephen M. Cameron 			dac = 0;
8023ecd9aad4SStephen M. Cameron 		} else {
8024edd16368SStephen M. Cameron 			dev_err(&pdev->dev, "no suitable DMA available\n");
80252946e82bSRobert Elliott 			goto clean3;	/* shost, pci, lu, aer/h */
8026edd16368SStephen M. Cameron 		}
8027ecd9aad4SStephen M. Cameron 	}
8028edd16368SStephen M. Cameron 
8029edd16368SStephen M. Cameron 	/* make sure the board interrupts are off */
8030edd16368SStephen M. Cameron 	h->access.set_intr_mask(h, HPSA_INTR_OFF);
803110f66018SStephen M. Cameron 
8032105a3dbcSRobert Elliott 	rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx);
8033105a3dbcSRobert Elliott 	if (rc)
80342946e82bSRobert Elliott 		goto clean3;	/* shost, pci, lu, aer/h */
8035d37ffbe4SRobert Elliott 	rc = hpsa_alloc_cmd_pool(h);
80368947fd10SRobert Elliott 	if (rc)
80372946e82bSRobert Elliott 		goto clean4;	/* irq, shost, pci, lu, aer/h */
8038105a3dbcSRobert Elliott 	rc = hpsa_alloc_sg_chain_blocks(h);
8039105a3dbcSRobert Elliott 	if (rc)
80402946e82bSRobert Elliott 		goto clean5;	/* cmd, irq, shost, pci, lu, aer/h */
8041a08a8471SStephen M. Cameron 	init_waitqueue_head(&h->scan_wait_queue);
80429b5c48c2SStephen Cameron 	init_waitqueue_head(&h->abort_cmd_wait_queue);
8043d604f533SWebb Scales 	init_waitqueue_head(&h->event_sync_wait_queue);
8044d604f533SWebb Scales 	mutex_init(&h->reset_mutex);
8045a08a8471SStephen M. Cameron 	h->scan_finished = 1; /* no scan currently in progress */
8046edd16368SStephen M. Cameron 
8047edd16368SStephen M. Cameron 	pci_set_drvdata(pdev, h);
80489a41338eSStephen M. Cameron 	h->ndevices = 0;
80492946e82bSRobert Elliott 
80509a41338eSStephen M. Cameron 	spin_lock_init(&h->devlock);
8051105a3dbcSRobert Elliott 	rc = hpsa_put_ctlr_into_performant_mode(h);
8052105a3dbcSRobert Elliott 	if (rc)
80532946e82bSRobert Elliott 		goto clean6; /* sg, cmd, irq, shost, pci, lu, aer/h */
80542946e82bSRobert Elliott 
80552946e82bSRobert Elliott 	/* hook into SCSI subsystem */
80562946e82bSRobert Elliott 	rc = hpsa_scsi_add_host(h);
80572946e82bSRobert Elliott 	if (rc)
80582946e82bSRobert Elliott 		goto clean7; /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
80592efa5929SRobert Elliott 
80602efa5929SRobert Elliott 	/* create the resubmit workqueue */
80612efa5929SRobert Elliott 	h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan");
80622efa5929SRobert Elliott 	if (!h->rescan_ctlr_wq) {
80632efa5929SRobert Elliott 		rc = -ENOMEM;
80642efa5929SRobert Elliott 		goto clean7;
80652efa5929SRobert Elliott 	}
80662efa5929SRobert Elliott 
80672efa5929SRobert Elliott 	h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit");
80682efa5929SRobert Elliott 	if (!h->resubmit_wq) {
80692efa5929SRobert Elliott 		rc = -ENOMEM;
80702efa5929SRobert Elliott 		goto clean7;	/* aer/h */
80712efa5929SRobert Elliott 	}
807264670ac8SStephen M. Cameron 
8073105a3dbcSRobert Elliott 	/*
8074105a3dbcSRobert Elliott 	 * At this point, the controller is ready to take commands.
807564670ac8SStephen M. Cameron 	 * Now, if reset_devices and the hard reset didn't work, try
807664670ac8SStephen M. Cameron 	 * the soft reset and see if that works.
807764670ac8SStephen M. Cameron 	 */
807864670ac8SStephen M. Cameron 	if (try_soft_reset) {
807964670ac8SStephen M. Cameron 
808064670ac8SStephen M. Cameron 		/* This is kind of gross.  We may or may not get a completion
808164670ac8SStephen M. Cameron 		 * from the soft reset command, and if we do, then the value
808264670ac8SStephen M. Cameron 		 * from the fifo may or may not be valid.  So, we wait 10 secs
808364670ac8SStephen M. Cameron 		 * after the reset throwing away any completions we get during
808464670ac8SStephen M. Cameron 		 * that time.  Unregister the interrupt handler and register
808564670ac8SStephen M. Cameron 		 * fake ones to scoop up any residual completions.
808664670ac8SStephen M. Cameron 		 */
808764670ac8SStephen M. Cameron 		spin_lock_irqsave(&h->lock, flags);
808864670ac8SStephen M. Cameron 		h->access.set_intr_mask(h, HPSA_INTR_OFF);
808964670ac8SStephen M. Cameron 		spin_unlock_irqrestore(&h->lock, flags);
8090ec501a18SRobert Elliott 		hpsa_free_irqs(h);
80919ee61794SRobert Elliott 		rc = hpsa_request_irqs(h, hpsa_msix_discard_completions,
809264670ac8SStephen M. Cameron 					hpsa_intx_discard_completions);
809364670ac8SStephen M. Cameron 		if (rc) {
80949ee61794SRobert Elliott 			dev_warn(&h->pdev->dev,
80959ee61794SRobert Elliott 				"Failed to request_irq after soft reset.\n");
8096d498757cSRobert Elliott 			/*
8097b2ef480cSRobert Elliott 			 * cannot goto clean7 or free_irqs will be called
8098b2ef480cSRobert Elliott 			 * again. Instead, do its work
8099b2ef480cSRobert Elliott 			 */
8100b2ef480cSRobert Elliott 			hpsa_free_performant_mode(h);	/* clean7 */
8101b2ef480cSRobert Elliott 			hpsa_free_sg_chain_blocks(h);	/* clean6 */
8102b2ef480cSRobert Elliott 			hpsa_free_cmd_pool(h);		/* clean5 */
8103b2ef480cSRobert Elliott 			/*
8104b2ef480cSRobert Elliott 			 * skip hpsa_free_irqs(h) clean4 since that
8105b2ef480cSRobert Elliott 			 * was just called before request_irqs failed
8106d498757cSRobert Elliott 			 */
8107d498757cSRobert Elliott 			goto clean3;
810864670ac8SStephen M. Cameron 		}
810964670ac8SStephen M. Cameron 
811064670ac8SStephen M. Cameron 		rc = hpsa_kdump_soft_reset(h);
811164670ac8SStephen M. Cameron 		if (rc)
811264670ac8SStephen M. Cameron 			/* Neither hard nor soft reset worked, we're hosed. */
81137ef7323fSDon Brace 			goto clean7;
811464670ac8SStephen M. Cameron 
811564670ac8SStephen M. Cameron 		dev_info(&h->pdev->dev, "Board READY.\n");
811664670ac8SStephen M. Cameron 		dev_info(&h->pdev->dev,
811764670ac8SStephen M. Cameron 			"Waiting for stale completions to drain.\n");
811864670ac8SStephen M. Cameron 		h->access.set_intr_mask(h, HPSA_INTR_ON);
811964670ac8SStephen M. Cameron 		msleep(10000);
812064670ac8SStephen M. Cameron 		h->access.set_intr_mask(h, HPSA_INTR_OFF);
812164670ac8SStephen M. Cameron 
812264670ac8SStephen M. Cameron 		rc = controller_reset_failed(h->cfgtable);
812364670ac8SStephen M. Cameron 		if (rc)
812464670ac8SStephen M. Cameron 			dev_info(&h->pdev->dev,
812564670ac8SStephen M. Cameron 				"Soft reset appears to have failed.\n");
812664670ac8SStephen M. Cameron 
812764670ac8SStephen M. Cameron 		/* since the controller's reset, we have to go back and re-init
812864670ac8SStephen M. Cameron 		 * everything.  Easiest to just forget what we've done and do it
812964670ac8SStephen M. Cameron 		 * all over again.
813064670ac8SStephen M. Cameron 		 */
813164670ac8SStephen M. Cameron 		hpsa_undo_allocations_after_kdump_soft_reset(h);
813264670ac8SStephen M. Cameron 		try_soft_reset = 0;
813364670ac8SStephen M. Cameron 		if (rc)
8134b2ef480cSRobert Elliott 			/* don't goto clean, we already unallocated */
813564670ac8SStephen M. Cameron 			return -ENODEV;
813664670ac8SStephen M. Cameron 
813764670ac8SStephen M. Cameron 		goto reinit_after_soft_reset;
813864670ac8SStephen M. Cameron 	}
8139edd16368SStephen M. Cameron 
8140da0697bdSScott Teel 	/* Enable Accelerated IO path at driver layer */
8141da0697bdSScott Teel 	h->acciopath_status = 1;
8142da0697bdSScott Teel 
8143e863d68eSScott Teel 
8144edd16368SStephen M. Cameron 	/* Turn the interrupts on so we can service requests */
8145edd16368SStephen M. Cameron 	h->access.set_intr_mask(h, HPSA_INTR_ON);
8146edd16368SStephen M. Cameron 
8147339b2b14SStephen M. Cameron 	hpsa_hba_inquiry(h);
81488a98db73SStephen M. Cameron 
81498a98db73SStephen M. Cameron 	/* Monitor the controller for firmware lockups */
81508a98db73SStephen M. Cameron 	h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL;
81518a98db73SStephen M. Cameron 	INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker);
81528a98db73SStephen M. Cameron 	schedule_delayed_work(&h->monitor_ctlr_work,
81538a98db73SStephen M. Cameron 				h->heartbeat_sample_interval);
81546636e7f4SDon Brace 	INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker);
81556636e7f4SDon Brace 	queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work,
81566636e7f4SDon Brace 				h->heartbeat_sample_interval);
815788bf6d62SStephen M. Cameron 	return 0;
8158edd16368SStephen M. Cameron 
81592946e82bSRobert Elliott clean7: /* perf, sg, cmd, irq, shost, pci, lu, aer/h */
8160105a3dbcSRobert Elliott 	hpsa_free_performant_mode(h);
8161105a3dbcSRobert Elliott 	h->access.set_intr_mask(h, HPSA_INTR_OFF);
8162105a3dbcSRobert Elliott clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */
816333a2ffceSStephen M. Cameron 	hpsa_free_sg_chain_blocks(h);
81642946e82bSRobert Elliott clean5: /* cmd, irq, shost, pci, lu, aer/h */
81652e9d1b36SStephen M. Cameron 	hpsa_free_cmd_pool(h);
81662946e82bSRobert Elliott clean4: /* irq, shost, pci, lu, aer/h */
8167ec501a18SRobert Elliott 	hpsa_free_irqs(h);
81682946e82bSRobert Elliott clean3: /* shost, pci, lu, aer/h */
81692946e82bSRobert Elliott 	scsi_host_put(h->scsi_host);
81702946e82bSRobert Elliott 	h->scsi_host = NULL;
81712946e82bSRobert Elliott clean2_5: /* pci, lu, aer/h */
8172195f2c65SRobert Elliott 	hpsa_free_pci_init(h);
81732946e82bSRobert Elliott clean2: /* lu, aer/h */
8174105a3dbcSRobert Elliott 	if (h->lockup_detected) {
8175094963daSStephen M. Cameron 		free_percpu(h->lockup_detected);
8176105a3dbcSRobert Elliott 		h->lockup_detected = NULL;
8177105a3dbcSRobert Elliott 	}
8178105a3dbcSRobert Elliott clean1:	/* wq/aer/h */
8179105a3dbcSRobert Elliott 	if (h->resubmit_wq) {
8180105a3dbcSRobert Elliott 		destroy_workqueue(h->resubmit_wq);
8181105a3dbcSRobert Elliott 		h->resubmit_wq = NULL;
8182105a3dbcSRobert Elliott 	}
8183105a3dbcSRobert Elliott 	if (h->rescan_ctlr_wq) {
8184105a3dbcSRobert Elliott 		destroy_workqueue(h->rescan_ctlr_wq);
8185105a3dbcSRobert Elliott 		h->rescan_ctlr_wq = NULL;
8186105a3dbcSRobert Elliott 	}
8187edd16368SStephen M. Cameron 	kfree(h);
8188ecd9aad4SStephen M. Cameron 	return rc;
8189edd16368SStephen M. Cameron }
8190edd16368SStephen M. Cameron 
8191edd16368SStephen M. Cameron static void hpsa_flush_cache(struct ctlr_info *h)
8192edd16368SStephen M. Cameron {
8193edd16368SStephen M. Cameron 	char *flush_buf;
8194edd16368SStephen M. Cameron 	struct CommandList *c;
819525163bd5SWebb Scales 	int rc;
8196702890e3SStephen M. Cameron 
8197094963daSStephen M. Cameron 	if (unlikely(lockup_detected(h)))
8198702890e3SStephen M. Cameron 		return;
8199edd16368SStephen M. Cameron 	flush_buf = kzalloc(4, GFP_KERNEL);
8200edd16368SStephen M. Cameron 	if (!flush_buf)
8201edd16368SStephen M. Cameron 		return;
8202edd16368SStephen M. Cameron 
820345fcb86eSStephen Cameron 	c = cmd_alloc(h);
8204bf43caf3SRobert Elliott 
8205a2dac136SStephen M. Cameron 	if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0,
8206a2dac136SStephen M. Cameron 		RAID_CTLR_LUNID, TYPE_CMD)) {
8207a2dac136SStephen M. Cameron 		goto out;
8208a2dac136SStephen M. Cameron 	}
820925163bd5SWebb Scales 	rc = hpsa_scsi_do_simple_cmd_with_retry(h, c,
821025163bd5SWebb Scales 					PCI_DMA_TODEVICE, NO_TIMEOUT);
821125163bd5SWebb Scales 	if (rc)
821225163bd5SWebb Scales 		goto out;
8213edd16368SStephen M. Cameron 	if (c->err_info->CommandStatus != 0)
8214a2dac136SStephen M. Cameron out:
8215edd16368SStephen M. Cameron 		dev_warn(&h->pdev->dev,
8216edd16368SStephen M. Cameron 			"error flushing cache on controller\n");
821745fcb86eSStephen Cameron 	cmd_free(h, c);
8218edd16368SStephen M. Cameron 	kfree(flush_buf);
8219edd16368SStephen M. Cameron }
8220edd16368SStephen M. Cameron 
8221edd16368SStephen M. Cameron static void hpsa_shutdown(struct pci_dev *pdev)
8222edd16368SStephen M. Cameron {
8223edd16368SStephen M. Cameron 	struct ctlr_info *h;
8224edd16368SStephen M. Cameron 
8225edd16368SStephen M. Cameron 	h = pci_get_drvdata(pdev);
8226edd16368SStephen M. Cameron 	/* Turn board interrupts off  and send the flush cache command
8227edd16368SStephen M. Cameron 	 * sendcmd will turn off interrupt, and send the flush...
8228edd16368SStephen M. Cameron 	 * To write all data in the battery backed cache to disks
8229edd16368SStephen M. Cameron 	 */
8230edd16368SStephen M. Cameron 	hpsa_flush_cache(h);
8231edd16368SStephen M. Cameron 	h->access.set_intr_mask(h, HPSA_INTR_OFF);
8232105a3dbcSRobert Elliott 	hpsa_free_irqs(h);			/* init_one 4 */
8233cc64c817SRobert Elliott 	hpsa_disable_interrupt_mode(h);		/* pci_init 2 */
8234edd16368SStephen M. Cameron }
8235edd16368SStephen M. Cameron 
82366f039790SGreg Kroah-Hartman static void hpsa_free_device_info(struct ctlr_info *h)
823755e14e76SStephen M. Cameron {
823855e14e76SStephen M. Cameron 	int i;
823955e14e76SStephen M. Cameron 
8240105a3dbcSRobert Elliott 	for (i = 0; i < h->ndevices; i++) {
824155e14e76SStephen M. Cameron 		kfree(h->dev[i]);
8242105a3dbcSRobert Elliott 		h->dev[i] = NULL;
8243105a3dbcSRobert Elliott 	}
824455e14e76SStephen M. Cameron }
824555e14e76SStephen M. Cameron 
82466f039790SGreg Kroah-Hartman static void hpsa_remove_one(struct pci_dev *pdev)
8247edd16368SStephen M. Cameron {
8248edd16368SStephen M. Cameron 	struct ctlr_info *h;
82498a98db73SStephen M. Cameron 	unsigned long flags;
8250edd16368SStephen M. Cameron 
8251edd16368SStephen M. Cameron 	if (pci_get_drvdata(pdev) == NULL) {
8252edd16368SStephen M. Cameron 		dev_err(&pdev->dev, "unable to remove device\n");
8253edd16368SStephen M. Cameron 		return;
8254edd16368SStephen M. Cameron 	}
8255edd16368SStephen M. Cameron 	h = pci_get_drvdata(pdev);
82568a98db73SStephen M. Cameron 
82578a98db73SStephen M. Cameron 	/* Get rid of any controller monitoring work items */
82588a98db73SStephen M. Cameron 	spin_lock_irqsave(&h->lock, flags);
82598a98db73SStephen M. Cameron 	h->remove_in_progress = 1;
82608a98db73SStephen M. Cameron 	spin_unlock_irqrestore(&h->lock, flags);
82616636e7f4SDon Brace 	cancel_delayed_work_sync(&h->monitor_ctlr_work);
82626636e7f4SDon Brace 	cancel_delayed_work_sync(&h->rescan_ctlr_work);
82636636e7f4SDon Brace 	destroy_workqueue(h->rescan_ctlr_wq);
82646636e7f4SDon Brace 	destroy_workqueue(h->resubmit_wq);
8265cc64c817SRobert Elliott 
8266105a3dbcSRobert Elliott 	/* includes hpsa_free_irqs - init_one 4 */
8267195f2c65SRobert Elliott 	/* includes hpsa_disable_interrupt_mode - pci_init 2 */
8268edd16368SStephen M. Cameron 	hpsa_shutdown(pdev);
8269cc64c817SRobert Elliott 
8270105a3dbcSRobert Elliott 	hpsa_free_device_info(h);		/* scan */
8271105a3dbcSRobert Elliott 
82722946e82bSRobert Elliott 	kfree(h->hba_inquiry_data);			/* init_one 10 */
82732946e82bSRobert Elliott 	h->hba_inquiry_data = NULL;			/* init_one 10 */
82742946e82bSRobert Elliott 	if (h->scsi_host)
82752946e82bSRobert Elliott 		scsi_remove_host(h->scsi_host);		/* init_one 8 */
82762946e82bSRobert Elliott 	hpsa_free_ioaccel2_sg_chain_blocks(h);
8277105a3dbcSRobert Elliott 	hpsa_free_performant_mode(h);			/* init_one 7 */
8278105a3dbcSRobert Elliott 	hpsa_free_sg_chain_blocks(h);			/* init_one 6 */
82791fb7c98aSRobert Elliott 	hpsa_free_cmd_pool(h);				/* init_one 5 */
8280105a3dbcSRobert Elliott 
8281105a3dbcSRobert Elliott 	/* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */
8282195f2c65SRobert Elliott 
82832946e82bSRobert Elliott 	scsi_host_put(h->scsi_host);			/* init_one 3 */
82842946e82bSRobert Elliott 	h->scsi_host = NULL;				/* init_one 3 */
82852946e82bSRobert Elliott 
8286195f2c65SRobert Elliott 	/* includes hpsa_disable_interrupt_mode - pci_init 2 */
82872946e82bSRobert Elliott 	hpsa_free_pci_init(h);				/* init_one 2.5 */
8288195f2c65SRobert Elliott 
8289105a3dbcSRobert Elliott 	free_percpu(h->lockup_detected);		/* init_one 2 */
8290105a3dbcSRobert Elliott 	h->lockup_detected = NULL;			/* init_one 2 */
8291105a3dbcSRobert Elliott 	/* (void) pci_disable_pcie_error_reporting(pdev); */	/* init_one 1 */
8292105a3dbcSRobert Elliott 	kfree(h);					/* init_one 1 */
8293edd16368SStephen M. Cameron }
8294edd16368SStephen M. Cameron 
8295edd16368SStephen M. Cameron static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev,
8296edd16368SStephen M. Cameron 	__attribute__((unused)) pm_message_t state)
8297edd16368SStephen M. Cameron {
8298edd16368SStephen M. Cameron 	return -ENOSYS;
8299edd16368SStephen M. Cameron }
8300edd16368SStephen M. Cameron 
8301edd16368SStephen M. Cameron static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev)
8302edd16368SStephen M. Cameron {
8303edd16368SStephen M. Cameron 	return -ENOSYS;
8304edd16368SStephen M. Cameron }
8305edd16368SStephen M. Cameron 
8306edd16368SStephen M. Cameron static struct pci_driver hpsa_pci_driver = {
8307f79cfec6SStephen M. Cameron 	.name = HPSA,
8308edd16368SStephen M. Cameron 	.probe = hpsa_init_one,
83096f039790SGreg Kroah-Hartman 	.remove = hpsa_remove_one,
8310edd16368SStephen M. Cameron 	.id_table = hpsa_pci_device_id,	/* id_table */
8311edd16368SStephen M. Cameron 	.shutdown = hpsa_shutdown,
8312edd16368SStephen M. Cameron 	.suspend = hpsa_suspend,
8313edd16368SStephen M. Cameron 	.resume = hpsa_resume,
8314edd16368SStephen M. Cameron };
8315edd16368SStephen M. Cameron 
8316303932fdSDon Brace /* Fill in bucket_map[], given nsgs (the max number of
8317303932fdSDon Brace  * scatter gather elements supported) and bucket[],
8318303932fdSDon Brace  * which is an array of 8 integers.  The bucket[] array
8319303932fdSDon Brace  * contains 8 different DMA transfer sizes (in 16
8320303932fdSDon Brace  * byte increments) which the controller uses to fetch
8321303932fdSDon Brace  * commands.  This function fills in bucket_map[], which
8322303932fdSDon Brace  * maps a given number of scatter gather elements to one of
8323303932fdSDon Brace  * the 8 DMA transfer sizes.  The point of it is to allow the
8324303932fdSDon Brace  * controller to only do as much DMA as needed to fetch the
8325303932fdSDon Brace  * command, with the DMA transfer size encoded in the lower
8326303932fdSDon Brace  * bits of the command address.
8327303932fdSDon Brace  */
8328303932fdSDon Brace static void  calc_bucket_map(int bucket[], int num_buckets,
83292b08b3e9SDon Brace 	int nsgs, int min_blocks, u32 *bucket_map)
8330303932fdSDon Brace {
8331303932fdSDon Brace 	int i, j, b, size;
8332303932fdSDon Brace 
8333303932fdSDon Brace 	/* Note, bucket_map must have nsgs+1 entries. */
8334303932fdSDon Brace 	for (i = 0; i <= nsgs; i++) {
8335303932fdSDon Brace 		/* Compute size of a command with i SG entries */
8336e1f7de0cSMatt Gates 		size = i + min_blocks;
8337303932fdSDon Brace 		b = num_buckets; /* Assume the biggest bucket */
8338303932fdSDon Brace 		/* Find the bucket that is just big enough */
8339e1f7de0cSMatt Gates 		for (j = 0; j < num_buckets; j++) {
8340303932fdSDon Brace 			if (bucket[j] >= size) {
8341303932fdSDon Brace 				b = j;
8342303932fdSDon Brace 				break;
8343303932fdSDon Brace 			}
8344303932fdSDon Brace 		}
8345303932fdSDon Brace 		/* for a command with i SG entries, use bucket b. */
8346303932fdSDon Brace 		bucket_map[i] = b;
8347303932fdSDon Brace 	}
8348303932fdSDon Brace }
8349303932fdSDon Brace 
8350105a3dbcSRobert Elliott /*
8351105a3dbcSRobert Elliott  * return -ENODEV on err, 0 on success (or no action)
8352105a3dbcSRobert Elliott  * allocates numerous items that must be freed later
8353105a3dbcSRobert Elliott  */
8354c706a795SRobert Elliott static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support)
8355303932fdSDon Brace {
83566c311b57SStephen M. Cameron 	int i;
83576c311b57SStephen M. Cameron 	unsigned long register_value;
8358e1f7de0cSMatt Gates 	unsigned long transMethod = CFGTBL_Trans_Performant |
8359e1f7de0cSMatt Gates 			(trans_support & CFGTBL_Trans_use_short_tags) |
8360e1f7de0cSMatt Gates 				CFGTBL_Trans_enable_directed_msix |
8361b9af4937SStephen M. Cameron 			(trans_support & (CFGTBL_Trans_io_accel1 |
8362b9af4937SStephen M. Cameron 				CFGTBL_Trans_io_accel2));
8363e1f7de0cSMatt Gates 	struct access_method access = SA5_performant_access;
8364def342bdSStephen M. Cameron 
8365def342bdSStephen M. Cameron 	/* This is a bit complicated.  There are 8 registers on
8366def342bdSStephen M. Cameron 	 * the controller which we write to to tell it 8 different
8367def342bdSStephen M. Cameron 	 * sizes of commands which there may be.  It's a way of
8368def342bdSStephen M. Cameron 	 * reducing the DMA done to fetch each command.  Encoded into
8369def342bdSStephen M. Cameron 	 * each command's tag are 3 bits which communicate to the controller
8370def342bdSStephen M. Cameron 	 * which of the eight sizes that command fits within.  The size of
8371def342bdSStephen M. Cameron 	 * each command depends on how many scatter gather entries there are.
8372def342bdSStephen M. Cameron 	 * Each SG entry requires 16 bytes.  The eight registers are programmed
8373def342bdSStephen M. Cameron 	 * with the number of 16-byte blocks a command of that size requires.
8374def342bdSStephen M. Cameron 	 * The smallest command possible requires 5 such 16 byte blocks.
8375d66ae08bSStephen M. Cameron 	 * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte
8376def342bdSStephen M. Cameron 	 * blocks.  Note, this only extends to the SG entries contained
8377def342bdSStephen M. Cameron 	 * within the command block, and does not extend to chained blocks
8378def342bdSStephen M. Cameron 	 * of SG elements.   bft[] contains the eight values we write to
8379def342bdSStephen M. Cameron 	 * the registers.  They are not evenly distributed, but have more
8380def342bdSStephen M. Cameron 	 * sizes for small commands, and fewer sizes for larger commands.
8381def342bdSStephen M. Cameron 	 */
8382d66ae08bSStephen M. Cameron 	int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4};
8383b9af4937SStephen M. Cameron #define MIN_IOACCEL2_BFT_ENTRY 5
8384b9af4937SStephen M. Cameron #define HPSA_IOACCEL2_HEADER_SZ 4
8385b9af4937SStephen M. Cameron 	int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12,
8386b9af4937SStephen M. Cameron 			13, 14, 15, 16, 17, 18, 19,
8387b9af4937SStephen M. Cameron 			HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES};
8388b9af4937SStephen M. Cameron 	BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16);
8389b9af4937SStephen M. Cameron 	BUILD_BUG_ON(ARRAY_SIZE(bft) != 8);
8390b9af4937SStephen M. Cameron 	BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) >
8391b9af4937SStephen M. Cameron 				 16 * MIN_IOACCEL2_BFT_ENTRY);
8392b9af4937SStephen M. Cameron 	BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16);
8393d66ae08bSStephen M. Cameron 	BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4);
8394303932fdSDon Brace 	/*  5 = 1 s/g entry or 4k
8395303932fdSDon Brace 	 *  6 = 2 s/g entry or 8k
8396303932fdSDon Brace 	 *  8 = 4 s/g entry or 16k
8397303932fdSDon Brace 	 * 10 = 6 s/g entry or 24k
8398303932fdSDon Brace 	 */
8399303932fdSDon Brace 
8400b3a52e79SStephen M. Cameron 	/* If the controller supports either ioaccel method then
8401b3a52e79SStephen M. Cameron 	 * we can also use the RAID stack submit path that does not
8402b3a52e79SStephen M. Cameron 	 * perform the superfluous readl() after each command submission.
8403b3a52e79SStephen M. Cameron 	 */
8404b3a52e79SStephen M. Cameron 	if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2))
8405b3a52e79SStephen M. Cameron 		access = SA5_performant_access_no_read;
8406b3a52e79SStephen M. Cameron 
8407303932fdSDon Brace 	/* Controller spec: zero out this buffer. */
8408072b0518SStephen M. Cameron 	for (i = 0; i < h->nreply_queues; i++)
8409072b0518SStephen M. Cameron 		memset(h->reply_queue[i].head, 0, h->reply_queue_size);
8410303932fdSDon Brace 
8411d66ae08bSStephen M. Cameron 	bft[7] = SG_ENTRIES_IN_CMD + 4;
8412d66ae08bSStephen M. Cameron 	calc_bucket_map(bft, ARRAY_SIZE(bft),
8413e1f7de0cSMatt Gates 				SG_ENTRIES_IN_CMD, 4, h->blockFetchTable);
8414303932fdSDon Brace 	for (i = 0; i < 8; i++)
8415303932fdSDon Brace 		writel(bft[i], &h->transtable->BlockFetch[i]);
8416303932fdSDon Brace 
8417303932fdSDon Brace 	/* size of controller ring buffer */
8418303932fdSDon Brace 	writel(h->max_commands, &h->transtable->RepQSize);
8419254f796bSMatt Gates 	writel(h->nreply_queues, &h->transtable->RepQCount);
8420303932fdSDon Brace 	writel(0, &h->transtable->RepQCtrAddrLow32);
8421303932fdSDon Brace 	writel(0, &h->transtable->RepQCtrAddrHigh32);
8422254f796bSMatt Gates 
8423254f796bSMatt Gates 	for (i = 0; i < h->nreply_queues; i++) {
8424254f796bSMatt Gates 		writel(0, &h->transtable->RepQAddr[i].upper);
8425072b0518SStephen M. Cameron 		writel(h->reply_queue[i].busaddr,
8426254f796bSMatt Gates 			&h->transtable->RepQAddr[i].lower);
8427254f796bSMatt Gates 	}
8428254f796bSMatt Gates 
8429b9af4937SStephen M. Cameron 	writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi);
8430e1f7de0cSMatt Gates 	writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest));
8431e1f7de0cSMatt Gates 	/*
8432e1f7de0cSMatt Gates 	 * enable outbound interrupt coalescing in accelerator mode;
8433e1f7de0cSMatt Gates 	 */
8434e1f7de0cSMatt Gates 	if (trans_support & CFGTBL_Trans_io_accel1) {
8435e1f7de0cSMatt Gates 		access = SA5_ioaccel_mode1_access;
8436e1f7de0cSMatt Gates 		writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8437e1f7de0cSMatt Gates 		writel(4, &h->cfgtable->HostWrite.CoalIntCount);
8438c349775eSScott Teel 	} else {
8439c349775eSScott Teel 		if (trans_support & CFGTBL_Trans_io_accel2) {
8440c349775eSScott Teel 			access = SA5_ioaccel_mode2_access;
8441c349775eSScott Teel 			writel(10, &h->cfgtable->HostWrite.CoalIntDelay);
8442c349775eSScott Teel 			writel(4, &h->cfgtable->HostWrite.CoalIntCount);
8443c349775eSScott Teel 		}
8444e1f7de0cSMatt Gates 	}
8445303932fdSDon Brace 	writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
8446c706a795SRobert Elliott 	if (hpsa_wait_for_mode_change_ack(h)) {
8447c706a795SRobert Elliott 		dev_err(&h->pdev->dev,
8448c706a795SRobert Elliott 			"performant mode problem - doorbell timeout\n");
8449c706a795SRobert Elliott 		return -ENODEV;
8450c706a795SRobert Elliott 	}
8451303932fdSDon Brace 	register_value = readl(&(h->cfgtable->TransportActive));
8452303932fdSDon Brace 	if (!(register_value & CFGTBL_Trans_Performant)) {
8453050f7147SStephen Cameron 		dev_err(&h->pdev->dev,
8454050f7147SStephen Cameron 			"performant mode problem - transport not active\n");
8455c706a795SRobert Elliott 		return -ENODEV;
8456303932fdSDon Brace 	}
8457960a30e7SStephen M. Cameron 	/* Change the access methods to the performant access methods */
8458e1f7de0cSMatt Gates 	h->access = access;
8459e1f7de0cSMatt Gates 	h->transMethod = transMethod;
8460e1f7de0cSMatt Gates 
8461b9af4937SStephen M. Cameron 	if (!((trans_support & CFGTBL_Trans_io_accel1) ||
8462b9af4937SStephen M. Cameron 		(trans_support & CFGTBL_Trans_io_accel2)))
8463c706a795SRobert Elliott 		return 0;
8464e1f7de0cSMatt Gates 
8465b9af4937SStephen M. Cameron 	if (trans_support & CFGTBL_Trans_io_accel1) {
8466e1f7de0cSMatt Gates 		/* Set up I/O accelerator mode */
8467e1f7de0cSMatt Gates 		for (i = 0; i < h->nreply_queues; i++) {
8468e1f7de0cSMatt Gates 			writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX);
8469e1f7de0cSMatt Gates 			h->reply_queue[i].current_entry =
8470e1f7de0cSMatt Gates 				readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX);
8471e1f7de0cSMatt Gates 		}
8472283b4a9bSStephen M. Cameron 		bft[7] = h->ioaccel_maxsg + 8;
8473283b4a9bSStephen M. Cameron 		calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8,
8474e1f7de0cSMatt Gates 				h->ioaccel1_blockFetchTable);
8475e1f7de0cSMatt Gates 
8476e1f7de0cSMatt Gates 		/* initialize all reply queue entries to unused */
8477072b0518SStephen M. Cameron 		for (i = 0; i < h->nreply_queues; i++)
8478072b0518SStephen M. Cameron 			memset(h->reply_queue[i].head,
8479072b0518SStephen M. Cameron 				(u8) IOACCEL_MODE1_REPLY_UNUSED,
8480072b0518SStephen M. Cameron 				h->reply_queue_size);
8481e1f7de0cSMatt Gates 
8482e1f7de0cSMatt Gates 		/* set all the constant fields in the accelerator command
8483e1f7de0cSMatt Gates 		 * frames once at init time to save CPU cycles later.
8484e1f7de0cSMatt Gates 		 */
8485e1f7de0cSMatt Gates 		for (i = 0; i < h->nr_cmds; i++) {
8486e1f7de0cSMatt Gates 			struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i];
8487e1f7de0cSMatt Gates 
8488e1f7de0cSMatt Gates 			cp->function = IOACCEL1_FUNCTION_SCSIIO;
8489e1f7de0cSMatt Gates 			cp->err_info = (u32) (h->errinfo_pool_dhandle +
8490e1f7de0cSMatt Gates 					(i * sizeof(struct ErrorInfo)));
8491e1f7de0cSMatt Gates 			cp->err_info_len = sizeof(struct ErrorInfo);
8492e1f7de0cSMatt Gates 			cp->sgl_offset = IOACCEL1_SGLOFFSET;
84932b08b3e9SDon Brace 			cp->host_context_flags =
84942b08b3e9SDon Brace 				cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT);
8495e1f7de0cSMatt Gates 			cp->timeout_sec = 0;
8496e1f7de0cSMatt Gates 			cp->ReplyQueue = 0;
849750a0decfSStephen M. Cameron 			cp->tag =
8498f2405db8SDon Brace 				cpu_to_le64((i << DIRECT_LOOKUP_SHIFT));
849950a0decfSStephen M. Cameron 			cp->host_addr =
850050a0decfSStephen M. Cameron 				cpu_to_le64(h->ioaccel_cmd_pool_dhandle +
8501e1f7de0cSMatt Gates 					(i * sizeof(struct io_accel1_cmd)));
8502e1f7de0cSMatt Gates 		}
8503b9af4937SStephen M. Cameron 	} else if (trans_support & CFGTBL_Trans_io_accel2) {
8504b9af4937SStephen M. Cameron 		u64 cfg_offset, cfg_base_addr_index;
8505b9af4937SStephen M. Cameron 		u32 bft2_offset, cfg_base_addr;
8506b9af4937SStephen M. Cameron 		int rc;
8507b9af4937SStephen M. Cameron 
8508b9af4937SStephen M. Cameron 		rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr,
8509b9af4937SStephen M. Cameron 			&cfg_base_addr_index, &cfg_offset);
8510b9af4937SStephen M. Cameron 		BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64);
8511b9af4937SStephen M. Cameron 		bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ;
8512b9af4937SStephen M. Cameron 		calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg,
8513b9af4937SStephen M. Cameron 				4, h->ioaccel2_blockFetchTable);
8514b9af4937SStephen M. Cameron 		bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset);
8515b9af4937SStephen M. Cameron 		BUILD_BUG_ON(offsetof(struct CfgTable,
8516b9af4937SStephen M. Cameron 				io_accel_request_size_offset) != 0xb8);
8517b9af4937SStephen M. Cameron 		h->ioaccel2_bft2_regs =
8518b9af4937SStephen M. Cameron 			remap_pci_mem(pci_resource_start(h->pdev,
8519b9af4937SStephen M. Cameron 					cfg_base_addr_index) +
8520b9af4937SStephen M. Cameron 					cfg_offset + bft2_offset,
8521b9af4937SStephen M. Cameron 					ARRAY_SIZE(bft2) *
8522b9af4937SStephen M. Cameron 					sizeof(*h->ioaccel2_bft2_regs));
8523b9af4937SStephen M. Cameron 		for (i = 0; i < ARRAY_SIZE(bft2); i++)
8524b9af4937SStephen M. Cameron 			writel(bft2[i], &h->ioaccel2_bft2_regs[i]);
8525b9af4937SStephen M. Cameron 	}
8526b9af4937SStephen M. Cameron 	writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL);
8527c706a795SRobert Elliott 	if (hpsa_wait_for_mode_change_ack(h)) {
8528c706a795SRobert Elliott 		dev_err(&h->pdev->dev,
8529c706a795SRobert Elliott 			"performant mode problem - enabling ioaccel mode\n");
8530c706a795SRobert Elliott 		return -ENODEV;
8531c706a795SRobert Elliott 	}
8532c706a795SRobert Elliott 	return 0;
8533e1f7de0cSMatt Gates }
8534e1f7de0cSMatt Gates 
85351fb7c98aSRobert Elliott /* Free ioaccel1 mode command blocks and block fetch table */
85361fb7c98aSRobert Elliott static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h)
85371fb7c98aSRobert Elliott {
8538105a3dbcSRobert Elliott 	if (h->ioaccel_cmd_pool) {
85391fb7c98aSRobert Elliott 		pci_free_consistent(h->pdev,
85401fb7c98aSRobert Elliott 			h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
85411fb7c98aSRobert Elliott 			h->ioaccel_cmd_pool,
85421fb7c98aSRobert Elliott 			h->ioaccel_cmd_pool_dhandle);
8543105a3dbcSRobert Elliott 		h->ioaccel_cmd_pool = NULL;
8544105a3dbcSRobert Elliott 		h->ioaccel_cmd_pool_dhandle = 0;
8545105a3dbcSRobert Elliott 	}
85461fb7c98aSRobert Elliott 	kfree(h->ioaccel1_blockFetchTable);
8547105a3dbcSRobert Elliott 	h->ioaccel1_blockFetchTable = NULL;
85481fb7c98aSRobert Elliott }
85491fb7c98aSRobert Elliott 
8550d37ffbe4SRobert Elliott /* Allocate ioaccel1 mode command blocks and block fetch table */
8551d37ffbe4SRobert Elliott static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h)
8552e1f7de0cSMatt Gates {
8553283b4a9bSStephen M. Cameron 	h->ioaccel_maxsg =
8554283b4a9bSStephen M. Cameron 		readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8555283b4a9bSStephen M. Cameron 	if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES)
8556283b4a9bSStephen M. Cameron 		h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES;
8557283b4a9bSStephen M. Cameron 
8558e1f7de0cSMatt Gates 	/* Command structures must be aligned on a 128-byte boundary
8559e1f7de0cSMatt Gates 	 * because the 7 lower bits of the address are used by the
8560e1f7de0cSMatt Gates 	 * hardware.
8561e1f7de0cSMatt Gates 	 */
8562e1f7de0cSMatt Gates 	BUILD_BUG_ON(sizeof(struct io_accel1_cmd) %
8563e1f7de0cSMatt Gates 			IOACCEL1_COMMANDLIST_ALIGNMENT);
8564e1f7de0cSMatt Gates 	h->ioaccel_cmd_pool =
8565e1f7de0cSMatt Gates 		pci_alloc_consistent(h->pdev,
8566e1f7de0cSMatt Gates 			h->nr_cmds * sizeof(*h->ioaccel_cmd_pool),
8567e1f7de0cSMatt Gates 			&(h->ioaccel_cmd_pool_dhandle));
8568e1f7de0cSMatt Gates 
8569e1f7de0cSMatt Gates 	h->ioaccel1_blockFetchTable =
8570283b4a9bSStephen M. Cameron 		kmalloc(((h->ioaccel_maxsg + 1) *
8571e1f7de0cSMatt Gates 				sizeof(u32)), GFP_KERNEL);
8572e1f7de0cSMatt Gates 
8573e1f7de0cSMatt Gates 	if ((h->ioaccel_cmd_pool == NULL) ||
8574e1f7de0cSMatt Gates 		(h->ioaccel1_blockFetchTable == NULL))
8575e1f7de0cSMatt Gates 		goto clean_up;
8576e1f7de0cSMatt Gates 
8577e1f7de0cSMatt Gates 	memset(h->ioaccel_cmd_pool, 0,
8578e1f7de0cSMatt Gates 		h->nr_cmds * sizeof(*h->ioaccel_cmd_pool));
8579e1f7de0cSMatt Gates 	return 0;
8580e1f7de0cSMatt Gates 
8581e1f7de0cSMatt Gates clean_up:
85821fb7c98aSRobert Elliott 	hpsa_free_ioaccel1_cmd_and_bft(h);
85832dd02d74SRobert Elliott 	return -ENOMEM;
85846c311b57SStephen M. Cameron }
85856c311b57SStephen M. Cameron 
85861fb7c98aSRobert Elliott /* Free ioaccel2 mode command blocks and block fetch table */
85871fb7c98aSRobert Elliott static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h)
85881fb7c98aSRobert Elliott {
8589d9a729f3SWebb Scales 	hpsa_free_ioaccel2_sg_chain_blocks(h);
8590d9a729f3SWebb Scales 
8591105a3dbcSRobert Elliott 	if (h->ioaccel2_cmd_pool) {
85921fb7c98aSRobert Elliott 		pci_free_consistent(h->pdev,
85931fb7c98aSRobert Elliott 			h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
85941fb7c98aSRobert Elliott 			h->ioaccel2_cmd_pool,
85951fb7c98aSRobert Elliott 			h->ioaccel2_cmd_pool_dhandle);
8596105a3dbcSRobert Elliott 		h->ioaccel2_cmd_pool = NULL;
8597105a3dbcSRobert Elliott 		h->ioaccel2_cmd_pool_dhandle = 0;
8598105a3dbcSRobert Elliott 	}
85991fb7c98aSRobert Elliott 	kfree(h->ioaccel2_blockFetchTable);
8600105a3dbcSRobert Elliott 	h->ioaccel2_blockFetchTable = NULL;
86011fb7c98aSRobert Elliott }
86021fb7c98aSRobert Elliott 
8603d37ffbe4SRobert Elliott /* Allocate ioaccel2 mode command blocks and block fetch table */
8604d37ffbe4SRobert Elliott static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h)
8605aca9012aSStephen M. Cameron {
8606d9a729f3SWebb Scales 	int rc;
8607d9a729f3SWebb Scales 
8608aca9012aSStephen M. Cameron 	/* Allocate ioaccel2 mode command blocks and block fetch table */
8609aca9012aSStephen M. Cameron 
8610aca9012aSStephen M. Cameron 	h->ioaccel_maxsg =
8611aca9012aSStephen M. Cameron 		readl(&(h->cfgtable->io_accel_max_embedded_sg_count));
8612aca9012aSStephen M. Cameron 	if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES)
8613aca9012aSStephen M. Cameron 		h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES;
8614aca9012aSStephen M. Cameron 
8615aca9012aSStephen M. Cameron 	BUILD_BUG_ON(sizeof(struct io_accel2_cmd) %
8616aca9012aSStephen M. Cameron 			IOACCEL2_COMMANDLIST_ALIGNMENT);
8617aca9012aSStephen M. Cameron 	h->ioaccel2_cmd_pool =
8618aca9012aSStephen M. Cameron 		pci_alloc_consistent(h->pdev,
8619aca9012aSStephen M. Cameron 			h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool),
8620aca9012aSStephen M. Cameron 			&(h->ioaccel2_cmd_pool_dhandle));
8621aca9012aSStephen M. Cameron 
8622aca9012aSStephen M. Cameron 	h->ioaccel2_blockFetchTable =
8623aca9012aSStephen M. Cameron 		kmalloc(((h->ioaccel_maxsg + 1) *
8624aca9012aSStephen M. Cameron 				sizeof(u32)), GFP_KERNEL);
8625aca9012aSStephen M. Cameron 
8626aca9012aSStephen M. Cameron 	if ((h->ioaccel2_cmd_pool == NULL) ||
8627d9a729f3SWebb Scales 		(h->ioaccel2_blockFetchTable == NULL)) {
8628d9a729f3SWebb Scales 		rc = -ENOMEM;
8629d9a729f3SWebb Scales 		goto clean_up;
8630d9a729f3SWebb Scales 	}
8631d9a729f3SWebb Scales 
8632d9a729f3SWebb Scales 	rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h);
8633d9a729f3SWebb Scales 	if (rc)
8634aca9012aSStephen M. Cameron 		goto clean_up;
8635aca9012aSStephen M. Cameron 
8636aca9012aSStephen M. Cameron 	memset(h->ioaccel2_cmd_pool, 0,
8637aca9012aSStephen M. Cameron 		h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool));
8638aca9012aSStephen M. Cameron 	return 0;
8639aca9012aSStephen M. Cameron 
8640aca9012aSStephen M. Cameron clean_up:
86411fb7c98aSRobert Elliott 	hpsa_free_ioaccel2_cmd_and_bft(h);
8642d9a729f3SWebb Scales 	return rc;
8643aca9012aSStephen M. Cameron }
8644aca9012aSStephen M. Cameron 
8645105a3dbcSRobert Elliott /* Free items allocated by hpsa_put_ctlr_into_performant_mode */
8646105a3dbcSRobert Elliott static void hpsa_free_performant_mode(struct ctlr_info *h)
8647105a3dbcSRobert Elliott {
8648105a3dbcSRobert Elliott 	kfree(h->blockFetchTable);
8649105a3dbcSRobert Elliott 	h->blockFetchTable = NULL;
8650105a3dbcSRobert Elliott 	hpsa_free_reply_queues(h);
8651105a3dbcSRobert Elliott 	hpsa_free_ioaccel1_cmd_and_bft(h);
8652105a3dbcSRobert Elliott 	hpsa_free_ioaccel2_cmd_and_bft(h);
8653105a3dbcSRobert Elliott }
8654105a3dbcSRobert Elliott 
8655105a3dbcSRobert Elliott /* return -ENODEV on error, 0 on success (or no action)
8656105a3dbcSRobert Elliott  * allocates numerous items that must be freed later
8657105a3dbcSRobert Elliott  */
8658105a3dbcSRobert Elliott static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h)
86596c311b57SStephen M. Cameron {
86606c311b57SStephen M. Cameron 	u32 trans_support;
8661e1f7de0cSMatt Gates 	unsigned long transMethod = CFGTBL_Trans_Performant |
8662e1f7de0cSMatt Gates 					CFGTBL_Trans_use_short_tags;
8663105a3dbcSRobert Elliott 	int i, rc;
86646c311b57SStephen M. Cameron 
866502ec19c8SStephen M. Cameron 	if (hpsa_simple_mode)
8666105a3dbcSRobert Elliott 		return 0;
866702ec19c8SStephen M. Cameron 
866867c99a72Sscameron@beardog.cce.hp.com 	trans_support = readl(&(h->cfgtable->TransportSupport));
866967c99a72Sscameron@beardog.cce.hp.com 	if (!(trans_support & PERFORMANT_MODE))
8670105a3dbcSRobert Elliott 		return 0;
867167c99a72Sscameron@beardog.cce.hp.com 
8672e1f7de0cSMatt Gates 	/* Check for I/O accelerator mode support */
8673e1f7de0cSMatt Gates 	if (trans_support & CFGTBL_Trans_io_accel1) {
8674e1f7de0cSMatt Gates 		transMethod |= CFGTBL_Trans_io_accel1 |
8675e1f7de0cSMatt Gates 				CFGTBL_Trans_enable_directed_msix;
8676105a3dbcSRobert Elliott 		rc = hpsa_alloc_ioaccel1_cmd_and_bft(h);
8677105a3dbcSRobert Elliott 		if (rc)
8678105a3dbcSRobert Elliott 			return rc;
8679105a3dbcSRobert Elliott 	} else if (trans_support & CFGTBL_Trans_io_accel2) {
8680aca9012aSStephen M. Cameron 		transMethod |= CFGTBL_Trans_io_accel2 |
8681aca9012aSStephen M. Cameron 				CFGTBL_Trans_enable_directed_msix;
8682105a3dbcSRobert Elliott 		rc = hpsa_alloc_ioaccel2_cmd_and_bft(h);
8683105a3dbcSRobert Elliott 		if (rc)
8684105a3dbcSRobert Elliott 			return rc;
8685e1f7de0cSMatt Gates 	}
8686e1f7de0cSMatt Gates 
8687eee0f03aSHannes Reinecke 	h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1;
8688cba3d38bSStephen M. Cameron 	hpsa_get_max_perf_mode_cmds(h);
86896c311b57SStephen M. Cameron 	/* Performant mode ring buffer and supporting data structures */
8690072b0518SStephen M. Cameron 	h->reply_queue_size = h->max_commands * sizeof(u64);
86916c311b57SStephen M. Cameron 
8692254f796bSMatt Gates 	for (i = 0; i < h->nreply_queues; i++) {
8693072b0518SStephen M. Cameron 		h->reply_queue[i].head = pci_alloc_consistent(h->pdev,
8694072b0518SStephen M. Cameron 						h->reply_queue_size,
8695072b0518SStephen M. Cameron 						&(h->reply_queue[i].busaddr));
8696105a3dbcSRobert Elliott 		if (!h->reply_queue[i].head) {
8697105a3dbcSRobert Elliott 			rc = -ENOMEM;
8698105a3dbcSRobert Elliott 			goto clean1;	/* rq, ioaccel */
8699105a3dbcSRobert Elliott 		}
8700254f796bSMatt Gates 		h->reply_queue[i].size = h->max_commands;
8701254f796bSMatt Gates 		h->reply_queue[i].wraparound = 1;  /* spec: init to 1 */
8702254f796bSMatt Gates 		h->reply_queue[i].current_entry = 0;
8703254f796bSMatt Gates 	}
8704254f796bSMatt Gates 
87056c311b57SStephen M. Cameron 	/* Need a block fetch table for performant mode */
8706d66ae08bSStephen M. Cameron 	h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) *
87076c311b57SStephen M. Cameron 				sizeof(u32)), GFP_KERNEL);
8708105a3dbcSRobert Elliott 	if (!h->blockFetchTable) {
8709105a3dbcSRobert Elliott 		rc = -ENOMEM;
8710105a3dbcSRobert Elliott 		goto clean1;	/* rq, ioaccel */
8711105a3dbcSRobert Elliott 	}
87126c311b57SStephen M. Cameron 
8713105a3dbcSRobert Elliott 	rc = hpsa_enter_performant_mode(h, trans_support);
8714105a3dbcSRobert Elliott 	if (rc)
8715105a3dbcSRobert Elliott 		goto clean2;	/* bft, rq, ioaccel */
8716105a3dbcSRobert Elliott 	return 0;
8717303932fdSDon Brace 
8718105a3dbcSRobert Elliott clean2:	/* bft, rq, ioaccel */
8719303932fdSDon Brace 	kfree(h->blockFetchTable);
8720105a3dbcSRobert Elliott 	h->blockFetchTable = NULL;
8721105a3dbcSRobert Elliott clean1:	/* rq, ioaccel */
8722105a3dbcSRobert Elliott 	hpsa_free_reply_queues(h);
8723105a3dbcSRobert Elliott 	hpsa_free_ioaccel1_cmd_and_bft(h);
8724105a3dbcSRobert Elliott 	hpsa_free_ioaccel2_cmd_and_bft(h);
8725105a3dbcSRobert Elliott 	return rc;
8726303932fdSDon Brace }
8727303932fdSDon Brace 
872823100dd9SStephen M. Cameron static int is_accelerated_cmd(struct CommandList *c)
872976438d08SStephen M. Cameron {
873023100dd9SStephen M. Cameron 	return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2;
873123100dd9SStephen M. Cameron }
873223100dd9SStephen M. Cameron 
873323100dd9SStephen M. Cameron static void hpsa_drain_accel_commands(struct ctlr_info *h)
873423100dd9SStephen M. Cameron {
873523100dd9SStephen M. Cameron 	struct CommandList *c = NULL;
8736f2405db8SDon Brace 	int i, accel_cmds_out;
8737281a7fd0SWebb Scales 	int refcount;
873876438d08SStephen M. Cameron 
8739f2405db8SDon Brace 	do { /* wait for all outstanding ioaccel commands to drain out */
874023100dd9SStephen M. Cameron 		accel_cmds_out = 0;
8741f2405db8SDon Brace 		for (i = 0; i < h->nr_cmds; i++) {
8742f2405db8SDon Brace 			c = h->cmd_pool + i;
8743281a7fd0SWebb Scales 			refcount = atomic_inc_return(&c->refcount);
8744281a7fd0SWebb Scales 			if (refcount > 1) /* Command is allocated */
874523100dd9SStephen M. Cameron 				accel_cmds_out += is_accelerated_cmd(c);
8746281a7fd0SWebb Scales 			cmd_free(h, c);
8747f2405db8SDon Brace 		}
874823100dd9SStephen M. Cameron 		if (accel_cmds_out <= 0)
874976438d08SStephen M. Cameron 			break;
875076438d08SStephen M. Cameron 		msleep(100);
875176438d08SStephen M. Cameron 	} while (1);
875276438d08SStephen M. Cameron }
875376438d08SStephen M. Cameron 
8754edd16368SStephen M. Cameron /*
8755edd16368SStephen M. Cameron  *  This is it.  Register the PCI driver information for the cards we control
8756edd16368SStephen M. Cameron  *  the OS will call our registered routines when it finds one of our cards.
8757edd16368SStephen M. Cameron  */
8758edd16368SStephen M. Cameron static int __init hpsa_init(void)
8759edd16368SStephen M. Cameron {
876031468401SMike Miller 	return pci_register_driver(&hpsa_pci_driver);
8761edd16368SStephen M. Cameron }
8762edd16368SStephen M. Cameron 
8763edd16368SStephen M. Cameron static void __exit hpsa_cleanup(void)
8764edd16368SStephen M. Cameron {
8765edd16368SStephen M. Cameron 	pci_unregister_driver(&hpsa_pci_driver);
8766edd16368SStephen M. Cameron }
8767edd16368SStephen M. Cameron 
8768e1f7de0cSMatt Gates static void __attribute__((unused)) verify_offsets(void)
8769e1f7de0cSMatt Gates {
8770e1f7de0cSMatt Gates #define VERIFY_OFFSET(member, offset) \
8771dd0e19f3SScott Teel 	BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset)
8772dd0e19f3SScott Teel 
8773dd0e19f3SScott Teel 	VERIFY_OFFSET(structure_size, 0);
8774dd0e19f3SScott Teel 	VERIFY_OFFSET(volume_blk_size, 4);
8775dd0e19f3SScott Teel 	VERIFY_OFFSET(volume_blk_cnt, 8);
8776dd0e19f3SScott Teel 	VERIFY_OFFSET(phys_blk_shift, 16);
8777dd0e19f3SScott Teel 	VERIFY_OFFSET(parity_rotation_shift, 17);
8778dd0e19f3SScott Teel 	VERIFY_OFFSET(strip_size, 18);
8779dd0e19f3SScott Teel 	VERIFY_OFFSET(disk_starting_blk, 20);
8780dd0e19f3SScott Teel 	VERIFY_OFFSET(disk_blk_cnt, 28);
8781dd0e19f3SScott Teel 	VERIFY_OFFSET(data_disks_per_row, 36);
8782dd0e19f3SScott Teel 	VERIFY_OFFSET(metadata_disks_per_row, 38);
8783dd0e19f3SScott Teel 	VERIFY_OFFSET(row_cnt, 40);
8784dd0e19f3SScott Teel 	VERIFY_OFFSET(layout_map_count, 42);
8785dd0e19f3SScott Teel 	VERIFY_OFFSET(flags, 44);
8786dd0e19f3SScott Teel 	VERIFY_OFFSET(dekindex, 46);
8787dd0e19f3SScott Teel 	/* VERIFY_OFFSET(reserved, 48 */
8788dd0e19f3SScott Teel 	VERIFY_OFFSET(data, 64);
8789dd0e19f3SScott Teel 
8790dd0e19f3SScott Teel #undef VERIFY_OFFSET
8791dd0e19f3SScott Teel 
8792dd0e19f3SScott Teel #define VERIFY_OFFSET(member, offset) \
8793b66cc250SMike Miller 	BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset)
8794b66cc250SMike Miller 
8795b66cc250SMike Miller 	VERIFY_OFFSET(IU_type, 0);
8796b66cc250SMike Miller 	VERIFY_OFFSET(direction, 1);
8797b66cc250SMike Miller 	VERIFY_OFFSET(reply_queue, 2);
8798b66cc250SMike Miller 	/* VERIFY_OFFSET(reserved1, 3);  */
8799b66cc250SMike Miller 	VERIFY_OFFSET(scsi_nexus, 4);
8800b66cc250SMike Miller 	VERIFY_OFFSET(Tag, 8);
8801b66cc250SMike Miller 	VERIFY_OFFSET(cdb, 16);
8802b66cc250SMike Miller 	VERIFY_OFFSET(cciss_lun, 32);
8803b66cc250SMike Miller 	VERIFY_OFFSET(data_len, 40);
8804b66cc250SMike Miller 	VERIFY_OFFSET(cmd_priority_task_attr, 44);
8805b66cc250SMike Miller 	VERIFY_OFFSET(sg_count, 45);
8806b66cc250SMike Miller 	/* VERIFY_OFFSET(reserved3 */
8807b66cc250SMike Miller 	VERIFY_OFFSET(err_ptr, 48);
8808b66cc250SMike Miller 	VERIFY_OFFSET(err_len, 56);
8809b66cc250SMike Miller 	/* VERIFY_OFFSET(reserved4  */
8810b66cc250SMike Miller 	VERIFY_OFFSET(sg, 64);
8811b66cc250SMike Miller 
8812b66cc250SMike Miller #undef VERIFY_OFFSET
8813b66cc250SMike Miller 
8814b66cc250SMike Miller #define VERIFY_OFFSET(member, offset) \
8815e1f7de0cSMatt Gates 	BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset)
8816e1f7de0cSMatt Gates 
8817e1f7de0cSMatt Gates 	VERIFY_OFFSET(dev_handle, 0x00);
8818e1f7de0cSMatt Gates 	VERIFY_OFFSET(reserved1, 0x02);
8819e1f7de0cSMatt Gates 	VERIFY_OFFSET(function, 0x03);
8820e1f7de0cSMatt Gates 	VERIFY_OFFSET(reserved2, 0x04);
8821e1f7de0cSMatt Gates 	VERIFY_OFFSET(err_info, 0x0C);
8822e1f7de0cSMatt Gates 	VERIFY_OFFSET(reserved3, 0x10);
8823e1f7de0cSMatt Gates 	VERIFY_OFFSET(err_info_len, 0x12);
8824e1f7de0cSMatt Gates 	VERIFY_OFFSET(reserved4, 0x13);
8825e1f7de0cSMatt Gates 	VERIFY_OFFSET(sgl_offset, 0x14);
8826e1f7de0cSMatt Gates 	VERIFY_OFFSET(reserved5, 0x15);
8827e1f7de0cSMatt Gates 	VERIFY_OFFSET(transfer_len, 0x1C);
8828e1f7de0cSMatt Gates 	VERIFY_OFFSET(reserved6, 0x20);
8829e1f7de0cSMatt Gates 	VERIFY_OFFSET(io_flags, 0x24);
8830e1f7de0cSMatt Gates 	VERIFY_OFFSET(reserved7, 0x26);
8831e1f7de0cSMatt Gates 	VERIFY_OFFSET(LUN, 0x34);
8832e1f7de0cSMatt Gates 	VERIFY_OFFSET(control, 0x3C);
8833e1f7de0cSMatt Gates 	VERIFY_OFFSET(CDB, 0x40);
8834e1f7de0cSMatt Gates 	VERIFY_OFFSET(reserved8, 0x50);
8835e1f7de0cSMatt Gates 	VERIFY_OFFSET(host_context_flags, 0x60);
8836e1f7de0cSMatt Gates 	VERIFY_OFFSET(timeout_sec, 0x62);
8837e1f7de0cSMatt Gates 	VERIFY_OFFSET(ReplyQueue, 0x64);
8838e1f7de0cSMatt Gates 	VERIFY_OFFSET(reserved9, 0x65);
883950a0decfSStephen M. Cameron 	VERIFY_OFFSET(tag, 0x68);
8840e1f7de0cSMatt Gates 	VERIFY_OFFSET(host_addr, 0x70);
8841e1f7de0cSMatt Gates 	VERIFY_OFFSET(CISS_LUN, 0x78);
8842e1f7de0cSMatt Gates 	VERIFY_OFFSET(SG, 0x78 + 8);
8843e1f7de0cSMatt Gates #undef VERIFY_OFFSET
8844e1f7de0cSMatt Gates }
8845e1f7de0cSMatt Gates 
8846edd16368SStephen M. Cameron module_init(hpsa_init);
8847edd16368SStephen M. Cameron module_exit(hpsa_cleanup);
8848