Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Disk Array driver for HP Smart Array SAS controllers |
Scott Teel | 51c3513 | 2014-02-18 13:57:26 -0600 | [diff] [blame] | 3 | * Copyright 2000, 2014 Hewlett-Packard Development Company, L.P. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; version 2 of the License. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or |
| 12 | * NON INFRINGEMENT. See the GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 17 | * |
| 18 | * Questions/Comments/Bugfixes to iss_storagedev@hp.com |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/types.h> |
| 25 | #include <linux/pci.h> |
Matthew Garrett | e5a44df | 2011-11-11 11:14:23 -0500 | [diff] [blame] | 26 | #include <linux/pci-aspm.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 27 | #include <linux/kernel.h> |
| 28 | #include <linux/slab.h> |
| 29 | #include <linux/delay.h> |
| 30 | #include <linux/fs.h> |
| 31 | #include <linux/timer.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 32 | #include <linux/init.h> |
| 33 | #include <linux/spinlock.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 34 | #include <linux/compat.h> |
| 35 | #include <linux/blktrace_api.h> |
| 36 | #include <linux/uaccess.h> |
| 37 | #include <linux/io.h> |
| 38 | #include <linux/dma-mapping.h> |
| 39 | #include <linux/completion.h> |
| 40 | #include <linux/moduleparam.h> |
| 41 | #include <scsi/scsi.h> |
| 42 | #include <scsi/scsi_cmnd.h> |
| 43 | #include <scsi/scsi_device.h> |
| 44 | #include <scsi/scsi_host.h> |
Stephen M. Cameron | 667e23d | 2010-02-25 14:02:51 -0600 | [diff] [blame] | 45 | #include <scsi/scsi_tcq.h> |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 46 | #include <scsi/scsi_eh.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 47 | #include <linux/cciss_ioctl.h> |
| 48 | #include <linux/string.h> |
| 49 | #include <linux/bitmap.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 50 | #include <linux/atomic.h> |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 51 | #include <linux/jiffies.h> |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 52 | #include <linux/percpu-defs.h> |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 53 | #include <linux/percpu.h> |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 54 | #include <asm/unaligned.h> |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 55 | #include <asm/div64.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 56 | #include "hpsa_cmd.h" |
| 57 | #include "hpsa.h" |
| 58 | |
| 59 | /* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */ |
Stephen M. Cameron | 9a99330 | 2014-03-13 17:13:06 -0500 | [diff] [blame] | 60 | #define HPSA_DRIVER_VERSION "3.4.4-1" |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 61 | #define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")" |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 62 | #define HPSA "hpsa" |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 63 | |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 64 | /* How long to wait for CISS doorbell communication */ |
| 65 | #define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */ |
| 66 | #define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */ |
| 67 | #define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */ |
| 68 | #define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 69 | #define MAX_IOCTL_CONFIG_WAIT 1000 |
| 70 | |
| 71 | /*define how many times we will try a command because of bus resets */ |
| 72 | #define MAX_CMD_RETRIES 3 |
| 73 | |
| 74 | /* Embedded module documentation macros - see modules.h */ |
| 75 | MODULE_AUTHOR("Hewlett-Packard Company"); |
| 76 | MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \ |
| 77 | HPSA_DRIVER_VERSION); |
| 78 | MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers"); |
| 79 | MODULE_VERSION(HPSA_DRIVER_VERSION); |
| 80 | MODULE_LICENSE("GPL"); |
| 81 | |
| 82 | static int hpsa_allow_any; |
| 83 | module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR); |
| 84 | MODULE_PARM_DESC(hpsa_allow_any, |
| 85 | "Allow hpsa driver to access unknown HP Smart Array hardware"); |
Stephen M. Cameron | 02ec19c | 2011-01-06 14:48:29 -0600 | [diff] [blame] | 86 | static int hpsa_simple_mode; |
| 87 | module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR); |
| 88 | MODULE_PARM_DESC(hpsa_simple_mode, |
| 89 | "Use 'simple mode' rather than 'performant mode'"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 90 | |
| 91 | /* define the PCI info for the cards we can control */ |
| 92 | static const struct pci_device_id hpsa_pci_device_id[] = { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 93 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241}, |
| 94 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243}, |
| 95 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245}, |
| 96 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247}, |
| 97 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249}, |
Mike Miller | 163dbcd | 2013-09-04 15:11:10 -0500 | [diff] [blame] | 98 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A}, |
| 99 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B}, |
Mike Miller | f8b01eb | 2010-02-04 08:42:45 -0600 | [diff] [blame] | 100 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233}, |
scameron@beardog.cce.hp.com | 9143a96 | 2011-03-07 10:44:16 -0600 | [diff] [blame] | 101 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350}, |
| 102 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351}, |
| 103 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352}, |
| 104 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353}, |
| 105 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354}, |
| 106 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355}, |
| 107 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356}, |
Mike Miller | fe0c961 | 2012-09-20 16:05:18 -0500 | [diff] [blame] | 108 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921}, |
| 109 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922}, |
| 110 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923}, |
| 111 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924}, |
Mike Miller | fe0c961 | 2012-09-20 16:05:18 -0500 | [diff] [blame] | 112 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926}, |
| 113 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928}, |
Mike Miller | 97b9f53 | 2013-09-04 15:05:55 -0500 | [diff] [blame] | 114 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929}, |
| 115 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD}, |
| 116 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE}, |
| 117 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF}, |
| 118 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0}, |
| 119 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1}, |
| 120 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2}, |
| 121 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3}, |
| 122 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4}, |
| 123 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5}, |
Joe Handzik | 3b7a45e | 2014-05-08 14:27:24 -0500 | [diff] [blame] | 124 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6}, |
Mike Miller | 97b9f53 | 2013-09-04 15:05:55 -0500 | [diff] [blame] | 125 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7}, |
| 126 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8}, |
| 127 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9}, |
Joe Handzik | 3b7a45e | 2014-05-08 14:27:24 -0500 | [diff] [blame] | 128 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA}, |
| 129 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB}, |
| 130 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC}, |
| 131 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD}, |
| 132 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE}, |
Stephen M. Cameron | 8e616a5 | 2014-02-18 13:58:02 -0600 | [diff] [blame] | 133 | {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076}, |
| 134 | {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087}, |
| 135 | {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D}, |
| 136 | {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088}, |
| 137 | {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f}, |
Mike Miller | 7c03b87 | 2010-12-01 11:16:07 -0600 | [diff] [blame] | 138 | {PCI_VENDOR_ID_HP, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
Stephen M. Cameron | 6798cc0 | 2010-06-16 13:51:20 -0500 | [diff] [blame] | 139 | PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0}, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 140 | {0,} |
| 141 | }; |
| 142 | |
| 143 | MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id); |
| 144 | |
| 145 | /* board_id = Subsystem Device ID & Vendor ID |
| 146 | * product = Marketing Name for the board |
| 147 | * access = Address of the struct of function pointers |
| 148 | */ |
| 149 | static struct board_type products[] = { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 150 | {0x3241103C, "Smart Array P212", &SA5_access}, |
| 151 | {0x3243103C, "Smart Array P410", &SA5_access}, |
| 152 | {0x3245103C, "Smart Array P410i", &SA5_access}, |
| 153 | {0x3247103C, "Smart Array P411", &SA5_access}, |
| 154 | {0x3249103C, "Smart Array P812", &SA5_access}, |
Mike Miller | 163dbcd | 2013-09-04 15:11:10 -0500 | [diff] [blame] | 155 | {0x324A103C, "Smart Array P712m", &SA5_access}, |
| 156 | {0x324B103C, "Smart Array P711m", &SA5_access}, |
Stephen M. Cameron | 7d2cce5 | 2014-11-14 17:26:38 -0600 | [diff] [blame] | 157 | {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */ |
Mike Miller | fe0c961 | 2012-09-20 16:05:18 -0500 | [diff] [blame] | 158 | {0x3350103C, "Smart Array P222", &SA5_access}, |
| 159 | {0x3351103C, "Smart Array P420", &SA5_access}, |
| 160 | {0x3352103C, "Smart Array P421", &SA5_access}, |
| 161 | {0x3353103C, "Smart Array P822", &SA5_access}, |
| 162 | {0x3354103C, "Smart Array P420i", &SA5_access}, |
| 163 | {0x3355103C, "Smart Array P220i", &SA5_access}, |
| 164 | {0x3356103C, "Smart Array P721m", &SA5_access}, |
Mike Miller | 1fd6c8e | 2013-09-04 15:08:29 -0500 | [diff] [blame] | 165 | {0x1921103C, "Smart Array P830i", &SA5_access}, |
| 166 | {0x1922103C, "Smart Array P430", &SA5_access}, |
| 167 | {0x1923103C, "Smart Array P431", &SA5_access}, |
| 168 | {0x1924103C, "Smart Array P830", &SA5_access}, |
| 169 | {0x1926103C, "Smart Array P731m", &SA5_access}, |
| 170 | {0x1928103C, "Smart Array P230i", &SA5_access}, |
| 171 | {0x1929103C, "Smart Array P530", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 172 | {0x21BD103C, "Smart Array P244br", &SA5_access}, |
| 173 | {0x21BE103C, "Smart Array P741m", &SA5_access}, |
| 174 | {0x21BF103C, "Smart HBA H240ar", &SA5_access}, |
| 175 | {0x21C0103C, "Smart Array P440ar", &SA5_access}, |
Don Brace | c8ae0ab | 2015-01-23 16:45:12 -0600 | [diff] [blame] | 176 | {0x21C1103C, "Smart Array P840ar", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 177 | {0x21C2103C, "Smart Array P440", &SA5_access}, |
| 178 | {0x21C3103C, "Smart Array P441", &SA5_access}, |
Mike Miller | 97b9f53 | 2013-09-04 15:05:55 -0500 | [diff] [blame] | 179 | {0x21C4103C, "Smart Array", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 180 | {0x21C5103C, "Smart Array P841", &SA5_access}, |
| 181 | {0x21C6103C, "Smart HBA H244br", &SA5_access}, |
| 182 | {0x21C7103C, "Smart HBA H240", &SA5_access}, |
| 183 | {0x21C8103C, "Smart HBA H241", &SA5_access}, |
Mike Miller | 97b9f53 | 2013-09-04 15:05:55 -0500 | [diff] [blame] | 184 | {0x21C9103C, "Smart Array", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 185 | {0x21CA103C, "Smart Array P246br", &SA5_access}, |
| 186 | {0x21CB103C, "Smart Array P840", &SA5_access}, |
Joe Handzik | 3b7a45e | 2014-05-08 14:27:24 -0500 | [diff] [blame] | 187 | {0x21CC103C, "Smart Array", &SA5_access}, |
| 188 | {0x21CD103C, "Smart Array", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 189 | {0x21CE103C, "Smart HBA", &SA5_access}, |
Stephen M. Cameron | 8e616a5 | 2014-02-18 13:58:02 -0600 | [diff] [blame] | 190 | {0x00761590, "HP Storage P1224 Array Controller", &SA5_access}, |
| 191 | {0x00871590, "HP Storage P1224e Array Controller", &SA5_access}, |
| 192 | {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access}, |
| 193 | {0x00881590, "HP Storage P1228e Array Controller", &SA5_access}, |
| 194 | {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access}, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 195 | {0xFFFF103C, "Unknown Smart Array", &SA5_access}, |
| 196 | }; |
| 197 | |
| 198 | static int number_of_controllers; |
| 199 | |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 200 | static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id); |
| 201 | static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id); |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 202 | static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 203 | |
| 204 | #ifdef CONFIG_COMPAT |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 205 | static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, |
| 206 | void __user *arg); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 207 | #endif |
| 208 | |
| 209 | static void cmd_free(struct ctlr_info *h, struct CommandList *c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 210 | static struct CommandList *cmd_alloc(struct ctlr_info *h); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 211 | static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h, |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 212 | void *buff, size_t size, u16 page_code, unsigned char *scsi3addr, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 213 | int cmd_type); |
Robert Elliott | 2c14334 | 2015-01-23 16:42:48 -0600 | [diff] [blame] | 214 | static void hpsa_free_cmd_pool(struct ctlr_info *h); |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 215 | #define VPD_PAGE (1 << 8) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 216 | |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 217 | static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd); |
Stephen M. Cameron | a08a8471 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 218 | static void hpsa_scan_start(struct Scsi_Host *); |
| 219 | static int hpsa_scan_finished(struct Scsi_Host *sh, |
| 220 | unsigned long elapsed_time); |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 221 | static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 222 | |
| 223 | static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 224 | static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 225 | static int hpsa_slave_alloc(struct scsi_device *sdev); |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 226 | static int hpsa_slave_configure(struct scsi_device *sdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 227 | static void hpsa_slave_destroy(struct scsi_device *sdev); |
| 228 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 229 | static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 230 | static int check_for_unit_attention(struct ctlr_info *h, |
| 231 | struct CommandList *c); |
| 232 | static void check_ioctl_unit_attention(struct ctlr_info *h, |
| 233 | struct CommandList *c); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 234 | /* performant mode helper functions */ |
| 235 | static void calc_bucket_map(int *bucket, int num_buckets, |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 236 | int nsgs, int min_blocks, u32 *bucket_map); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 237 | static void hpsa_free_performant_mode(struct ctlr_info *h); |
| 238 | static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 239 | static inline u32 next_command(struct ctlr_info *h, u8 q); |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 240 | static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr, |
| 241 | u32 *cfg_base_addr, u64 *cfg_base_addr_index, |
| 242 | u64 *cfg_offset); |
| 243 | static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev, |
| 244 | unsigned long *memory_bar); |
| 245 | static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id); |
| 246 | static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr, |
| 247 | int wait_for_ready); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 248 | static inline void finish_cmd(struct CommandList *c); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 249 | static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h); |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 250 | #define BOARD_NOT_READY 0 |
| 251 | #define BOARD_READY 1 |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 252 | static void hpsa_drain_accel_commands(struct ctlr_info *h); |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 253 | static void hpsa_flush_cache(struct ctlr_info *h); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 254 | static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h, |
| 255 | struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 256 | u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk); |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 257 | static void hpsa_command_resubmit_worker(struct work_struct *work); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 258 | static u32 lockup_detected(struct ctlr_info *h); |
| 259 | static int detect_controller_lockup(struct ctlr_info *h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 260 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 261 | static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev) |
| 262 | { |
| 263 | unsigned long *priv = shost_priv(sdev->host); |
| 264 | return (struct ctlr_info *) *priv; |
| 265 | } |
| 266 | |
Stephen M. Cameron | a23513e | 2010-02-04 08:43:11 -0600 | [diff] [blame] | 267 | static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh) |
| 268 | { |
| 269 | unsigned long *priv = shost_priv(sh); |
| 270 | return (struct ctlr_info *) *priv; |
| 271 | } |
| 272 | |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 273 | /* extract sense key, asc, and ascq from sense data. -1 means invalid. */ |
| 274 | static void decode_sense_data(const u8 *sense_data, int sense_data_len, |
| 275 | u8 *sense_key, u8 *asc, u8 *ascq) |
| 276 | { |
| 277 | struct scsi_sense_hdr sshdr; |
| 278 | bool rc; |
| 279 | |
| 280 | *sense_key = -1; |
| 281 | *asc = -1; |
| 282 | *ascq = -1; |
| 283 | |
| 284 | if (sense_data_len < 1) |
| 285 | return; |
| 286 | |
| 287 | rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr); |
| 288 | if (rc) { |
| 289 | *sense_key = sshdr.sense_key; |
| 290 | *asc = sshdr.asc; |
| 291 | *ascq = sshdr.ascq; |
| 292 | } |
| 293 | } |
| 294 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 295 | static int check_for_unit_attention(struct ctlr_info *h, |
| 296 | struct CommandList *c) |
| 297 | { |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 298 | u8 sense_key, asc, ascq; |
| 299 | int sense_len; |
| 300 | |
| 301 | if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo)) |
| 302 | sense_len = sizeof(c->err_info->SenseInfo); |
| 303 | else |
| 304 | sense_len = c->err_info->SenseLen; |
| 305 | |
| 306 | decode_sense_data(c->err_info->SenseInfo, sense_len, |
| 307 | &sense_key, &asc, &ascq); |
| 308 | if (sense_key != UNIT_ATTENTION || asc == -1) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 309 | return 0; |
| 310 | |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 311 | switch (asc) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 312 | case STATE_CHANGED: |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 313 | dev_warn(&h->pdev->dev, |
| 314 | HPSA "%d: a state change detected, command retried\n", |
| 315 | h->ctlr); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 316 | break; |
| 317 | case LUN_FAILED: |
Stephen M. Cameron | 7f73695 | 2014-11-14 17:26:48 -0600 | [diff] [blame] | 318 | dev_warn(&h->pdev->dev, |
| 319 | HPSA "%d: LUN failure detected\n", h->ctlr); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 320 | break; |
| 321 | case REPORT_LUNS_CHANGED: |
Stephen M. Cameron | 7f73695 | 2014-11-14 17:26:48 -0600 | [diff] [blame] | 322 | dev_warn(&h->pdev->dev, |
| 323 | HPSA "%d: report LUN data changed\n", h->ctlr); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 324 | /* |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 325 | * Note: this REPORT_LUNS_CHANGED condition only occurs on the external |
| 326 | * target (array) devices. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 327 | */ |
| 328 | break; |
| 329 | case POWER_OR_RESET: |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 330 | dev_warn(&h->pdev->dev, HPSA "%d: a power on " |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 331 | "or device reset detected\n", h->ctlr); |
| 332 | break; |
| 333 | case UNIT_ATTENTION_CLEARED: |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 334 | dev_warn(&h->pdev->dev, HPSA "%d: unit attention " |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 335 | "cleared by another initiator\n", h->ctlr); |
| 336 | break; |
| 337 | default: |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 338 | dev_warn(&h->pdev->dev, HPSA "%d: unknown " |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 339 | "unit attention detected\n", h->ctlr); |
| 340 | break; |
| 341 | } |
| 342 | return 1; |
| 343 | } |
| 344 | |
Matt Bondurant | 852af20 | 2012-05-01 11:42:35 -0500 | [diff] [blame] | 345 | static int check_for_busy(struct ctlr_info *h, struct CommandList *c) |
| 346 | { |
| 347 | if (c->err_info->CommandStatus != CMD_TARGET_STATUS || |
| 348 | (c->err_info->ScsiStatus != SAM_STAT_BUSY && |
| 349 | c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL)) |
| 350 | return 0; |
| 351 | dev_warn(&h->pdev->dev, HPSA "device busy"); |
| 352 | return 1; |
| 353 | } |
| 354 | |
Stephen Cameron | e985c58 | 2015-04-23 09:32:22 -0500 | [diff] [blame] | 355 | static u32 lockup_detected(struct ctlr_info *h); |
| 356 | static ssize_t host_show_lockup_detected(struct device *dev, |
| 357 | struct device_attribute *attr, char *buf) |
| 358 | { |
| 359 | int ld; |
| 360 | struct ctlr_info *h; |
| 361 | struct Scsi_Host *shost = class_to_shost(dev); |
| 362 | |
| 363 | h = shost_to_hba(shost); |
| 364 | ld = lockup_detected(h); |
| 365 | |
| 366 | return sprintf(buf, "ld=%d\n", ld); |
| 367 | } |
| 368 | |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 369 | static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev, |
| 370 | struct device_attribute *attr, |
| 371 | const char *buf, size_t count) |
| 372 | { |
| 373 | int status, len; |
| 374 | struct ctlr_info *h; |
| 375 | struct Scsi_Host *shost = class_to_shost(dev); |
| 376 | char tmpbuf[10]; |
| 377 | |
| 378 | if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO)) |
| 379 | return -EACCES; |
| 380 | len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count; |
| 381 | strncpy(tmpbuf, buf, len); |
| 382 | tmpbuf[len] = '\0'; |
| 383 | if (sscanf(tmpbuf, "%d", &status) != 1) |
| 384 | return -EINVAL; |
| 385 | h = shost_to_hba(shost); |
| 386 | h->acciopath_status = !!status; |
| 387 | dev_warn(&h->pdev->dev, |
| 388 | "hpsa: HP SSD Smart Path %s via sysfs update.\n", |
| 389 | h->acciopath_status ? "enabled" : "disabled"); |
| 390 | return count; |
| 391 | } |
| 392 | |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 393 | static ssize_t host_store_raid_offload_debug(struct device *dev, |
| 394 | struct device_attribute *attr, |
| 395 | const char *buf, size_t count) |
| 396 | { |
| 397 | int debug_level, len; |
| 398 | struct ctlr_info *h; |
| 399 | struct Scsi_Host *shost = class_to_shost(dev); |
| 400 | char tmpbuf[10]; |
| 401 | |
| 402 | if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO)) |
| 403 | return -EACCES; |
| 404 | len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count; |
| 405 | strncpy(tmpbuf, buf, len); |
| 406 | tmpbuf[len] = '\0'; |
| 407 | if (sscanf(tmpbuf, "%d", &debug_level) != 1) |
| 408 | return -EINVAL; |
| 409 | if (debug_level < 0) |
| 410 | debug_level = 0; |
| 411 | h = shost_to_hba(shost); |
| 412 | h->raid_offload_debug = debug_level; |
| 413 | dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n", |
| 414 | h->raid_offload_debug); |
| 415 | return count; |
| 416 | } |
| 417 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 418 | static ssize_t host_store_rescan(struct device *dev, |
| 419 | struct device_attribute *attr, |
| 420 | const char *buf, size_t count) |
| 421 | { |
| 422 | struct ctlr_info *h; |
| 423 | struct Scsi_Host *shost = class_to_shost(dev); |
Stephen M. Cameron | a23513e | 2010-02-04 08:43:11 -0600 | [diff] [blame] | 424 | h = shost_to_hba(shost); |
Mike Miller | 3146840 | 2010-02-25 14:03:12 -0600 | [diff] [blame] | 425 | hpsa_scan_start(h->scsi_host); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 426 | return count; |
| 427 | } |
| 428 | |
Stephen M. Cameron | d28ce02 | 2010-05-27 15:14:34 -0500 | [diff] [blame] | 429 | static ssize_t host_show_firmware_revision(struct device *dev, |
| 430 | struct device_attribute *attr, char *buf) |
| 431 | { |
| 432 | struct ctlr_info *h; |
| 433 | struct Scsi_Host *shost = class_to_shost(dev); |
| 434 | unsigned char *fwrev; |
| 435 | |
| 436 | h = shost_to_hba(shost); |
| 437 | if (!h->hba_inquiry_data) |
| 438 | return 0; |
| 439 | fwrev = &h->hba_inquiry_data[32]; |
| 440 | return snprintf(buf, 20, "%c%c%c%c\n", |
| 441 | fwrev[0], fwrev[1], fwrev[2], fwrev[3]); |
| 442 | } |
| 443 | |
Stephen M. Cameron | 94a1364 | 2011-01-06 14:48:39 -0600 | [diff] [blame] | 444 | static ssize_t host_show_commands_outstanding(struct device *dev, |
| 445 | struct device_attribute *attr, char *buf) |
| 446 | { |
| 447 | struct Scsi_Host *shost = class_to_shost(dev); |
| 448 | struct ctlr_info *h = shost_to_hba(shost); |
| 449 | |
Stephen M. Cameron | 0cbf768 | 2014-11-14 17:27:09 -0600 | [diff] [blame] | 450 | return snprintf(buf, 20, "%d\n", |
| 451 | atomic_read(&h->commands_outstanding)); |
Stephen M. Cameron | 94a1364 | 2011-01-06 14:48:39 -0600 | [diff] [blame] | 452 | } |
| 453 | |
Stephen M. Cameron | 745a7a2 | 2011-02-15 15:32:58 -0600 | [diff] [blame] | 454 | static ssize_t host_show_transport_mode(struct device *dev, |
| 455 | struct device_attribute *attr, char *buf) |
| 456 | { |
| 457 | struct ctlr_info *h; |
| 458 | struct Scsi_Host *shost = class_to_shost(dev); |
| 459 | |
| 460 | h = shost_to_hba(shost); |
| 461 | return snprintf(buf, 20, "%s\n", |
Stephen M. Cameron | 960a30e | 2011-02-15 15:33:03 -0600 | [diff] [blame] | 462 | h->transMethod & CFGTBL_Trans_Performant ? |
Stephen M. Cameron | 745a7a2 | 2011-02-15 15:32:58 -0600 | [diff] [blame] | 463 | "performant" : "simple"); |
| 464 | } |
| 465 | |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 466 | static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev, |
| 467 | struct device_attribute *attr, char *buf) |
| 468 | { |
| 469 | struct ctlr_info *h; |
| 470 | struct Scsi_Host *shost = class_to_shost(dev); |
| 471 | |
| 472 | h = shost_to_hba(shost); |
| 473 | return snprintf(buf, 30, "HP SSD Smart Path %s\n", |
| 474 | (h->acciopath_status == 1) ? "enabled" : "disabled"); |
| 475 | } |
| 476 | |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 477 | /* List of controllers which cannot be hard reset on kexec with reset_devices */ |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 478 | static u32 unresettable_controller[] = { |
| 479 | 0x324a103C, /* Smart Array P712m */ |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 480 | 0x324b103C, /* Smart Array P711m */ |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 481 | 0x3223103C, /* Smart Array P800 */ |
| 482 | 0x3234103C, /* Smart Array P400 */ |
| 483 | 0x3235103C, /* Smart Array P400i */ |
| 484 | 0x3211103C, /* Smart Array E200i */ |
| 485 | 0x3212103C, /* Smart Array E200 */ |
| 486 | 0x3213103C, /* Smart Array E200i */ |
| 487 | 0x3214103C, /* Smart Array E200i */ |
| 488 | 0x3215103C, /* Smart Array E200i */ |
| 489 | 0x3237103C, /* Smart Array E500 */ |
| 490 | 0x323D103C, /* Smart Array P700m */ |
Tomas Henzl | 7af0abb | 2011-11-28 15:39:55 +0100 | [diff] [blame] | 491 | 0x40800E11, /* Smart Array 5i */ |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 492 | 0x409C0E11, /* Smart Array 6400 */ |
| 493 | 0x409D0E11, /* Smart Array 6400 EM */ |
Tomas Henzl | 5a4f934 | 2012-02-14 18:07:59 +0100 | [diff] [blame] | 494 | 0x40700E11, /* Smart Array 5300 */ |
| 495 | 0x40820E11, /* Smart Array 532 */ |
| 496 | 0x40830E11, /* Smart Array 5312 */ |
| 497 | 0x409A0E11, /* Smart Array 641 */ |
| 498 | 0x409B0E11, /* Smart Array 642 */ |
| 499 | 0x40910E11, /* Smart Array 6i */ |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 500 | }; |
| 501 | |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 502 | /* List of controllers which cannot even be soft reset */ |
| 503 | static u32 soft_unresettable_controller[] = { |
Tomas Henzl | 7af0abb | 2011-11-28 15:39:55 +0100 | [diff] [blame] | 504 | 0x40800E11, /* Smart Array 5i */ |
Tomas Henzl | 5a4f934 | 2012-02-14 18:07:59 +0100 | [diff] [blame] | 505 | 0x40700E11, /* Smart Array 5300 */ |
| 506 | 0x40820E11, /* Smart Array 532 */ |
| 507 | 0x40830E11, /* Smart Array 5312 */ |
| 508 | 0x409A0E11, /* Smart Array 641 */ |
| 509 | 0x409B0E11, /* Smart Array 642 */ |
| 510 | 0x40910E11, /* Smart Array 6i */ |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 511 | /* Exclude 640x boards. These are two pci devices in one slot |
| 512 | * which share a battery backed cache module. One controls the |
| 513 | * cache, the other accesses the cache through the one that controls |
| 514 | * it. If we reset the one controlling the cache, the other will |
| 515 | * likely not be happy. Just forbid resetting this conjoined mess. |
| 516 | * The 640x isn't really supported by hpsa anyway. |
| 517 | */ |
| 518 | 0x409C0E11, /* Smart Array 6400 */ |
| 519 | 0x409D0E11, /* Smart Array 6400 EM */ |
| 520 | }; |
| 521 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 522 | static u32 needs_abort_tags_swizzled[] = { |
| 523 | 0x323D103C, /* Smart Array P700m */ |
| 524 | 0x324a103C, /* Smart Array P712m */ |
| 525 | 0x324b103C, /* SmartArray P711m */ |
| 526 | }; |
| 527 | |
| 528 | static int board_id_in_array(u32 a[], int nelems, u32 board_id) |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 529 | { |
| 530 | int i; |
| 531 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 532 | for (i = 0; i < nelems; i++) |
| 533 | if (a[i] == board_id) |
| 534 | return 1; |
| 535 | return 0; |
| 536 | } |
| 537 | |
| 538 | static int ctlr_is_hard_resettable(u32 board_id) |
| 539 | { |
| 540 | return !board_id_in_array(unresettable_controller, |
| 541 | ARRAY_SIZE(unresettable_controller), board_id); |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 542 | } |
| 543 | |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 544 | static int ctlr_is_soft_resettable(u32 board_id) |
| 545 | { |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 546 | return !board_id_in_array(soft_unresettable_controller, |
| 547 | ARRAY_SIZE(soft_unresettable_controller), board_id); |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 548 | } |
| 549 | |
| 550 | static int ctlr_is_resettable(u32 board_id) |
| 551 | { |
| 552 | return ctlr_is_hard_resettable(board_id) || |
| 553 | ctlr_is_soft_resettable(board_id); |
| 554 | } |
| 555 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 556 | static int ctlr_needs_abort_tags_swizzled(u32 board_id) |
| 557 | { |
| 558 | return board_id_in_array(needs_abort_tags_swizzled, |
| 559 | ARRAY_SIZE(needs_abort_tags_swizzled), board_id); |
| 560 | } |
| 561 | |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 562 | static ssize_t host_show_resettable(struct device *dev, |
| 563 | struct device_attribute *attr, char *buf) |
| 564 | { |
| 565 | struct ctlr_info *h; |
| 566 | struct Scsi_Host *shost = class_to_shost(dev); |
| 567 | |
| 568 | h = shost_to_hba(shost); |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 569 | return snprintf(buf, 20, "%d\n", ctlr_is_resettable(h->board_id)); |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 570 | } |
| 571 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 572 | static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[]) |
| 573 | { |
| 574 | return (scsi3addr[3] & 0xC0) == 0x40; |
| 575 | } |
| 576 | |
Robert Elliott | f2ef0ce | 2015-01-23 16:41:35 -0600 | [diff] [blame] | 577 | static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6", |
| 578 | "1(+0)ADM", "UNKNOWN" |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 579 | }; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 580 | #define HPSA_RAID_0 0 |
| 581 | #define HPSA_RAID_4 1 |
| 582 | #define HPSA_RAID_1 2 /* also used for RAID 10 */ |
| 583 | #define HPSA_RAID_5 3 /* also used for RAID 50 */ |
| 584 | #define HPSA_RAID_51 4 |
| 585 | #define HPSA_RAID_6 5 /* also used for RAID 60 */ |
| 586 | #define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 587 | #define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1) |
| 588 | |
| 589 | static ssize_t raid_level_show(struct device *dev, |
| 590 | struct device_attribute *attr, char *buf) |
| 591 | { |
| 592 | ssize_t l = 0; |
Stephen M. Cameron | 82a72c0 | 2010-02-04 08:41:38 -0600 | [diff] [blame] | 593 | unsigned char rlevel; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 594 | struct ctlr_info *h; |
| 595 | struct scsi_device *sdev; |
| 596 | struct hpsa_scsi_dev_t *hdev; |
| 597 | unsigned long flags; |
| 598 | |
| 599 | sdev = to_scsi_device(dev); |
| 600 | h = sdev_to_hba(sdev); |
| 601 | spin_lock_irqsave(&h->lock, flags); |
| 602 | hdev = sdev->hostdata; |
| 603 | if (!hdev) { |
| 604 | spin_unlock_irqrestore(&h->lock, flags); |
| 605 | return -ENODEV; |
| 606 | } |
| 607 | |
| 608 | /* Is this even a logical drive? */ |
| 609 | if (!is_logical_dev_addr_mode(hdev->scsi3addr)) { |
| 610 | spin_unlock_irqrestore(&h->lock, flags); |
| 611 | l = snprintf(buf, PAGE_SIZE, "N/A\n"); |
| 612 | return l; |
| 613 | } |
| 614 | |
| 615 | rlevel = hdev->raid_level; |
| 616 | spin_unlock_irqrestore(&h->lock, flags); |
Stephen M. Cameron | 82a72c0 | 2010-02-04 08:41:38 -0600 | [diff] [blame] | 617 | if (rlevel > RAID_UNKNOWN) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 618 | rlevel = RAID_UNKNOWN; |
| 619 | l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]); |
| 620 | return l; |
| 621 | } |
| 622 | |
| 623 | static ssize_t lunid_show(struct device *dev, |
| 624 | struct device_attribute *attr, char *buf) |
| 625 | { |
| 626 | struct ctlr_info *h; |
| 627 | struct scsi_device *sdev; |
| 628 | struct hpsa_scsi_dev_t *hdev; |
| 629 | unsigned long flags; |
| 630 | unsigned char lunid[8]; |
| 631 | |
| 632 | sdev = to_scsi_device(dev); |
| 633 | h = sdev_to_hba(sdev); |
| 634 | spin_lock_irqsave(&h->lock, flags); |
| 635 | hdev = sdev->hostdata; |
| 636 | if (!hdev) { |
| 637 | spin_unlock_irqrestore(&h->lock, flags); |
| 638 | return -ENODEV; |
| 639 | } |
| 640 | memcpy(lunid, hdev->scsi3addr, sizeof(lunid)); |
| 641 | spin_unlock_irqrestore(&h->lock, flags); |
| 642 | return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 643 | lunid[0], lunid[1], lunid[2], lunid[3], |
| 644 | lunid[4], lunid[5], lunid[6], lunid[7]); |
| 645 | } |
| 646 | |
| 647 | static ssize_t unique_id_show(struct device *dev, |
| 648 | struct device_attribute *attr, char *buf) |
| 649 | { |
| 650 | struct ctlr_info *h; |
| 651 | struct scsi_device *sdev; |
| 652 | struct hpsa_scsi_dev_t *hdev; |
| 653 | unsigned long flags; |
| 654 | unsigned char sn[16]; |
| 655 | |
| 656 | sdev = to_scsi_device(dev); |
| 657 | h = sdev_to_hba(sdev); |
| 658 | spin_lock_irqsave(&h->lock, flags); |
| 659 | hdev = sdev->hostdata; |
| 660 | if (!hdev) { |
| 661 | spin_unlock_irqrestore(&h->lock, flags); |
| 662 | return -ENODEV; |
| 663 | } |
| 664 | memcpy(sn, hdev->device_id, sizeof(sn)); |
| 665 | spin_unlock_irqrestore(&h->lock, flags); |
| 666 | return snprintf(buf, 16 * 2 + 2, |
| 667 | "%02X%02X%02X%02X%02X%02X%02X%02X" |
| 668 | "%02X%02X%02X%02X%02X%02X%02X%02X\n", |
| 669 | sn[0], sn[1], sn[2], sn[3], |
| 670 | sn[4], sn[5], sn[6], sn[7], |
| 671 | sn[8], sn[9], sn[10], sn[11], |
| 672 | sn[12], sn[13], sn[14], sn[15]); |
| 673 | } |
| 674 | |
Scott Teel | c198868 | 2014-02-18 13:55:54 -0600 | [diff] [blame] | 675 | static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev, |
| 676 | struct device_attribute *attr, char *buf) |
| 677 | { |
| 678 | struct ctlr_info *h; |
| 679 | struct scsi_device *sdev; |
| 680 | struct hpsa_scsi_dev_t *hdev; |
| 681 | unsigned long flags; |
| 682 | int offload_enabled; |
| 683 | |
| 684 | sdev = to_scsi_device(dev); |
| 685 | h = sdev_to_hba(sdev); |
| 686 | spin_lock_irqsave(&h->lock, flags); |
| 687 | hdev = sdev->hostdata; |
| 688 | if (!hdev) { |
| 689 | spin_unlock_irqrestore(&h->lock, flags); |
| 690 | return -ENODEV; |
| 691 | } |
| 692 | offload_enabled = hdev->offload_enabled; |
| 693 | spin_unlock_irqrestore(&h->lock, flags); |
| 694 | return snprintf(buf, 20, "%d\n", offload_enabled); |
| 695 | } |
| 696 | |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 697 | static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL); |
| 698 | static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL); |
| 699 | static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL); |
| 700 | static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan); |
Scott Teel | c198868 | 2014-02-18 13:55:54 -0600 | [diff] [blame] | 701 | static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO, |
| 702 | host_show_hp_ssd_smart_path_enabled, NULL); |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 703 | static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH, |
| 704 | host_show_hp_ssd_smart_path_status, |
| 705 | host_store_hp_ssd_smart_path_status); |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 706 | static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL, |
| 707 | host_store_raid_offload_debug); |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 708 | static DEVICE_ATTR(firmware_revision, S_IRUGO, |
| 709 | host_show_firmware_revision, NULL); |
| 710 | static DEVICE_ATTR(commands_outstanding, S_IRUGO, |
| 711 | host_show_commands_outstanding, NULL); |
| 712 | static DEVICE_ATTR(transport_mode, S_IRUGO, |
| 713 | host_show_transport_mode, NULL); |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 714 | static DEVICE_ATTR(resettable, S_IRUGO, |
| 715 | host_show_resettable, NULL); |
Stephen Cameron | e985c58 | 2015-04-23 09:32:22 -0500 | [diff] [blame] | 716 | static DEVICE_ATTR(lockup_detected, S_IRUGO, |
| 717 | host_show_lockup_detected, NULL); |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 718 | |
| 719 | static struct device_attribute *hpsa_sdev_attrs[] = { |
| 720 | &dev_attr_raid_level, |
| 721 | &dev_attr_lunid, |
| 722 | &dev_attr_unique_id, |
Scott Teel | c198868 | 2014-02-18 13:55:54 -0600 | [diff] [blame] | 723 | &dev_attr_hp_ssd_smart_path_enabled, |
Stephen Cameron | e985c58 | 2015-04-23 09:32:22 -0500 | [diff] [blame] | 724 | &dev_attr_lockup_detected, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 725 | NULL, |
| 726 | }; |
| 727 | |
| 728 | static struct device_attribute *hpsa_shost_attrs[] = { |
| 729 | &dev_attr_rescan, |
| 730 | &dev_attr_firmware_revision, |
| 731 | &dev_attr_commands_outstanding, |
| 732 | &dev_attr_transport_mode, |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 733 | &dev_attr_resettable, |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 734 | &dev_attr_hp_ssd_smart_path_status, |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 735 | &dev_attr_raid_offload_debug, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 736 | NULL, |
| 737 | }; |
| 738 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 739 | #define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \ |
| 740 | HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS) |
| 741 | |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 742 | static struct scsi_host_template hpsa_driver_template = { |
| 743 | .module = THIS_MODULE, |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 744 | .name = HPSA, |
| 745 | .proc_name = HPSA, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 746 | .queuecommand = hpsa_scsi_queue_command, |
| 747 | .scan_start = hpsa_scan_start, |
| 748 | .scan_finished = hpsa_scan_finished, |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 749 | .change_queue_depth = hpsa_change_queue_depth, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 750 | .this_id = -1, |
| 751 | .use_clustering = ENABLE_CLUSTERING, |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 752 | .eh_abort_handler = hpsa_eh_abort_handler, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 753 | .eh_device_reset_handler = hpsa_eh_device_reset_handler, |
| 754 | .ioctl = hpsa_ioctl, |
| 755 | .slave_alloc = hpsa_slave_alloc, |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 756 | .slave_configure = hpsa_slave_configure, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 757 | .slave_destroy = hpsa_slave_destroy, |
| 758 | #ifdef CONFIG_COMPAT |
| 759 | .compat_ioctl = hpsa_compat_ioctl, |
| 760 | #endif |
| 761 | .sdev_attrs = hpsa_sdev_attrs, |
| 762 | .shost_attrs = hpsa_shost_attrs, |
Stephen M. Cameron | c0d6a4d | 2011-10-26 16:20:53 -0500 | [diff] [blame] | 763 | .max_sectors = 8192, |
Martin K. Petersen | 54b2b50 | 2013-10-23 06:25:40 -0400 | [diff] [blame] | 764 | .no_write_same = 1, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 765 | }; |
| 766 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 767 | static inline u32 next_command(struct ctlr_info *h, u8 q) |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 768 | { |
| 769 | u32 a; |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 770 | struct reply_queue_buffer *rq = &h->reply_queue[q]; |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 771 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 772 | if (h->transMethod & CFGTBL_Trans_io_accel1) |
| 773 | return h->access.command_completed(h, q); |
| 774 | |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 775 | if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant))) |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 776 | return h->access.command_completed(h, q); |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 777 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 778 | if ((rq->head[rq->current_entry] & 1) == rq->wraparound) { |
| 779 | a = rq->head[rq->current_entry]; |
| 780 | rq->current_entry++; |
Stephen M. Cameron | 0cbf768 | 2014-11-14 17:27:09 -0600 | [diff] [blame] | 781 | atomic_dec(&h->commands_outstanding); |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 782 | } else { |
| 783 | a = FIFO_EMPTY; |
| 784 | } |
| 785 | /* Check for wraparound */ |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 786 | if (rq->current_entry == h->max_commands) { |
| 787 | rq->current_entry = 0; |
| 788 | rq->wraparound ^= 1; |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 789 | } |
| 790 | return a; |
| 791 | } |
| 792 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 793 | /* |
| 794 | * There are some special bits in the bus address of the |
| 795 | * command that we have to set for the controller to know |
| 796 | * how to process the command: |
| 797 | * |
| 798 | * Normal performant mode: |
| 799 | * bit 0: 1 means performant mode, 0 means simple mode. |
| 800 | * bits 1-3 = block fetch table entry |
| 801 | * bits 4-6 = command type (== 0) |
| 802 | * |
| 803 | * ioaccel1 mode: |
| 804 | * bit 0 = "performant mode" bit. |
| 805 | * bits 1-3 = block fetch table entry |
| 806 | * bits 4-6 = command type (== 110) |
| 807 | * (command type is needed because ioaccel1 mode |
| 808 | * commands are submitted through the same register as normal |
| 809 | * mode commands, so this is how the controller knows whether |
| 810 | * the command is normal mode or ioaccel1 mode.) |
| 811 | * |
| 812 | * ioaccel2 mode: |
| 813 | * bit 0 = "performant mode" bit. |
| 814 | * bits 1-4 = block fetch table entry (note extra bit) |
| 815 | * bits 4-6 = not needed, because ioaccel2 mode has |
| 816 | * a separate special register for submitting commands. |
| 817 | */ |
| 818 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 819 | /* |
| 820 | * set_performant_mode: Modify the tag for cciss performant |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 821 | * set bit 0 for pull model, bits 3-1 for block fetch |
| 822 | * register number |
| 823 | */ |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 824 | #define DEFAULT_REPLY_QUEUE (-1) |
| 825 | static void set_performant_mode(struct ctlr_info *h, struct CommandList *c, |
| 826 | int reply_queue) |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 827 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 828 | if (likely(h->transMethod & CFGTBL_Trans_Performant)) { |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 829 | c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 830 | if (unlikely(!h->msix_vector)) |
| 831 | return; |
| 832 | if (likely(reply_queue == DEFAULT_REPLY_QUEUE)) |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 833 | c->Header.ReplyQueue = |
John Kacur | 804a5cb | 2013-07-26 16:06:18 +0200 | [diff] [blame] | 834 | raw_smp_processor_id() % h->nreply_queues; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 835 | else |
| 836 | c->Header.ReplyQueue = reply_queue % h->nreply_queues; |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 837 | } |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 838 | } |
| 839 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 840 | static void set_ioaccel1_performant_mode(struct ctlr_info *h, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 841 | struct CommandList *c, |
| 842 | int reply_queue) |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 843 | { |
| 844 | struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex]; |
| 845 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 846 | /* |
| 847 | * Tell the controller to post the reply to the queue for this |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 848 | * processor. This seems to give the best I/O throughput. |
| 849 | */ |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 850 | if (likely(reply_queue == DEFAULT_REPLY_QUEUE)) |
| 851 | cp->ReplyQueue = smp_processor_id() % h->nreply_queues; |
| 852 | else |
| 853 | cp->ReplyQueue = reply_queue % h->nreply_queues; |
| 854 | /* |
| 855 | * Set the bits in the address sent down to include: |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 856 | * - performant mode bit (bit 0) |
| 857 | * - pull count (bits 1-3) |
| 858 | * - command type (bits 4-6) |
| 859 | */ |
| 860 | c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) | |
| 861 | IOACCEL1_BUSADDR_CMDTYPE; |
| 862 | } |
| 863 | |
| 864 | static void set_ioaccel2_performant_mode(struct ctlr_info *h, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 865 | struct CommandList *c, |
| 866 | int reply_queue) |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 867 | { |
| 868 | struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 869 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 870 | /* |
| 871 | * Tell the controller to post the reply to the queue for this |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 872 | * processor. This seems to give the best I/O throughput. |
| 873 | */ |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 874 | if (likely(reply_queue == DEFAULT_REPLY_QUEUE)) |
| 875 | cp->reply_queue = smp_processor_id() % h->nreply_queues; |
| 876 | else |
| 877 | cp->reply_queue = reply_queue % h->nreply_queues; |
| 878 | /* |
| 879 | * Set the bits in the address sent down to include: |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 880 | * - performant mode bit not used in ioaccel mode 2 |
| 881 | * - pull count (bits 0-3) |
| 882 | * - command type isn't needed for ioaccel2 |
| 883 | */ |
| 884 | c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]); |
| 885 | } |
| 886 | |
Stephen M. Cameron | e85c597 | 2012-05-01 11:43:42 -0500 | [diff] [blame] | 887 | static int is_firmware_flash_cmd(u8 *cdb) |
| 888 | { |
| 889 | return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE; |
| 890 | } |
| 891 | |
| 892 | /* |
| 893 | * During firmware flash, the heartbeat register may not update as frequently |
| 894 | * as it should. So we dial down lockup detection during firmware flash. and |
| 895 | * dial it back up when firmware flash completes. |
| 896 | */ |
| 897 | #define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ) |
| 898 | #define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ) |
| 899 | static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h, |
| 900 | struct CommandList *c) |
| 901 | { |
| 902 | if (!is_firmware_flash_cmd(c->Request.CDB)) |
| 903 | return; |
| 904 | atomic_inc(&h->firmware_flash_in_progress); |
| 905 | h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH; |
| 906 | } |
| 907 | |
| 908 | static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h, |
| 909 | struct CommandList *c) |
| 910 | { |
| 911 | if (is_firmware_flash_cmd(c->Request.CDB) && |
| 912 | atomic_dec_and_test(&h->firmware_flash_in_progress)) |
| 913 | h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL; |
| 914 | } |
| 915 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 916 | static void __enqueue_cmd_and_start_io(struct ctlr_info *h, |
| 917 | struct CommandList *c, int reply_queue) |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 918 | { |
Stephen Cameron | c05e886 | 2015-01-23 16:44:40 -0600 | [diff] [blame] | 919 | dial_down_lockup_detection_during_fw_flash(h, c); |
| 920 | atomic_inc(&h->commands_outstanding); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 921 | switch (c->cmd_type) { |
| 922 | case CMD_IOACCEL1: |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 923 | set_ioaccel1_performant_mode(h, c, reply_queue); |
Stephen Cameron | c05e886 | 2015-01-23 16:44:40 -0600 | [diff] [blame] | 924 | writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 925 | break; |
| 926 | case CMD_IOACCEL2: |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 927 | set_ioaccel2_performant_mode(h, c, reply_queue); |
Stephen Cameron | c05e886 | 2015-01-23 16:44:40 -0600 | [diff] [blame] | 928 | writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 929 | break; |
| 930 | default: |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 931 | set_performant_mode(h, c, reply_queue); |
Stephen Cameron | c05e886 | 2015-01-23 16:44:40 -0600 | [diff] [blame] | 932 | h->access.submit_command(h, c); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 933 | } |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 934 | } |
| 935 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 936 | static void enqueue_cmd_and_start_io(struct ctlr_info *h, |
| 937 | struct CommandList *c) |
| 938 | { |
| 939 | __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE); |
| 940 | } |
| 941 | |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 942 | static inline int is_hba_lunid(unsigned char scsi3addr[]) |
| 943 | { |
| 944 | return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0; |
| 945 | } |
| 946 | |
| 947 | static inline int is_scsi_rev_5(struct ctlr_info *h) |
| 948 | { |
| 949 | if (!h->hba_inquiry_data) |
| 950 | return 0; |
| 951 | if ((h->hba_inquiry_data[2] & 0x07) == 5) |
| 952 | return 1; |
| 953 | return 0; |
| 954 | } |
| 955 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 956 | static int hpsa_find_target_lun(struct ctlr_info *h, |
| 957 | unsigned char scsi3addr[], int bus, int *target, int *lun) |
| 958 | { |
| 959 | /* finds an unused bus, target, lun for a new physical device |
| 960 | * assumes h->devlock is held |
| 961 | */ |
| 962 | int i, found = 0; |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 963 | DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 964 | |
Akinobu Mita | 263d940 | 2012-01-21 00:15:27 +0900 | [diff] [blame] | 965 | bitmap_zero(lun_taken, HPSA_MAX_DEVICES); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 966 | |
| 967 | for (i = 0; i < h->ndevices; i++) { |
| 968 | if (h->dev[i]->bus == bus && h->dev[i]->target != -1) |
Akinobu Mita | 263d940 | 2012-01-21 00:15:27 +0900 | [diff] [blame] | 969 | __set_bit(h->dev[i]->target, lun_taken); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 970 | } |
| 971 | |
Akinobu Mita | 263d940 | 2012-01-21 00:15:27 +0900 | [diff] [blame] | 972 | i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES); |
| 973 | if (i < HPSA_MAX_DEVICES) { |
| 974 | /* *bus = 1; */ |
| 975 | *target = i; |
| 976 | *lun = 0; |
| 977 | found = 1; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 978 | } |
| 979 | return !found; |
| 980 | } |
| 981 | |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 982 | static inline void hpsa_show_dev_msg(const char *level, struct ctlr_info *h, |
| 983 | struct hpsa_scsi_dev_t *dev, char *description) |
| 984 | { |
| 985 | dev_printk(level, &h->pdev->dev, |
| 986 | "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n", |
| 987 | h->scsi_host->host_no, dev->bus, dev->target, dev->lun, |
| 988 | description, |
| 989 | scsi_device_type(dev->devtype), |
| 990 | dev->vendor, |
| 991 | dev->model, |
| 992 | dev->raid_level > RAID_UNKNOWN ? |
| 993 | "RAID-?" : raid_label[dev->raid_level], |
| 994 | dev->offload_config ? '+' : '-', |
| 995 | dev->offload_enabled ? '+' : '-', |
| 996 | dev->expose_state); |
| 997 | } |
| 998 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 999 | /* Add an entry into h->dev[] array. */ |
| 1000 | static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno, |
| 1001 | struct hpsa_scsi_dev_t *device, |
| 1002 | struct hpsa_scsi_dev_t *added[], int *nadded) |
| 1003 | { |
| 1004 | /* assumes h->devlock is held */ |
| 1005 | int n = h->ndevices; |
| 1006 | int i; |
| 1007 | unsigned char addr1[8], addr2[8]; |
| 1008 | struct hpsa_scsi_dev_t *sd; |
| 1009 | |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 1010 | if (n >= HPSA_MAX_DEVICES) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1011 | dev_err(&h->pdev->dev, "too many devices, some will be " |
| 1012 | "inaccessible.\n"); |
| 1013 | return -1; |
| 1014 | } |
| 1015 | |
| 1016 | /* physical devices do not have lun or target assigned until now. */ |
| 1017 | if (device->lun != -1) |
| 1018 | /* Logical device, lun is already assigned. */ |
| 1019 | goto lun_assigned; |
| 1020 | |
| 1021 | /* If this device a non-zero lun of a multi-lun device |
| 1022 | * byte 4 of the 8-byte LUN addr will contain the logical |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 1023 | * unit no, zero otherwise. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1024 | */ |
| 1025 | if (device->scsi3addr[4] == 0) { |
| 1026 | /* This is not a non-zero lun of a multi-lun device */ |
| 1027 | if (hpsa_find_target_lun(h, device->scsi3addr, |
| 1028 | device->bus, &device->target, &device->lun) != 0) |
| 1029 | return -1; |
| 1030 | goto lun_assigned; |
| 1031 | } |
| 1032 | |
| 1033 | /* This is a non-zero lun of a multi-lun device. |
| 1034 | * Search through our list and find the device which |
| 1035 | * has the same 8 byte LUN address, excepting byte 4. |
| 1036 | * Assign the same bus and target for this new LUN. |
| 1037 | * Use the logical unit number from the firmware. |
| 1038 | */ |
| 1039 | memcpy(addr1, device->scsi3addr, 8); |
| 1040 | addr1[4] = 0; |
| 1041 | for (i = 0; i < n; i++) { |
| 1042 | sd = h->dev[i]; |
| 1043 | memcpy(addr2, sd->scsi3addr, 8); |
| 1044 | addr2[4] = 0; |
| 1045 | /* differ only in byte 4? */ |
| 1046 | if (memcmp(addr1, addr2, 8) == 0) { |
| 1047 | device->bus = sd->bus; |
| 1048 | device->target = sd->target; |
| 1049 | device->lun = device->scsi3addr[4]; |
| 1050 | break; |
| 1051 | } |
| 1052 | } |
| 1053 | if (device->lun == -1) { |
| 1054 | dev_warn(&h->pdev->dev, "physical device with no LUN=0," |
| 1055 | " suspect firmware bug or unsupported hardware " |
| 1056 | "configuration.\n"); |
| 1057 | return -1; |
| 1058 | } |
| 1059 | |
| 1060 | lun_assigned: |
| 1061 | |
| 1062 | h->dev[n] = device; |
| 1063 | h->ndevices++; |
| 1064 | added[*nadded] = device; |
| 1065 | (*nadded)++; |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1066 | hpsa_show_dev_msg(KERN_INFO, h, device, |
| 1067 | device->expose_state & HPSA_SCSI_ADD ? "added" : "masked"); |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1068 | device->offload_to_be_enabled = device->offload_enabled; |
| 1069 | device->offload_enabled = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1070 | return 0; |
| 1071 | } |
| 1072 | |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1073 | /* Update an entry in h->dev[] array. */ |
| 1074 | static void hpsa_scsi_update_entry(struct ctlr_info *h, int hostno, |
| 1075 | int entry, struct hpsa_scsi_dev_t *new_entry) |
| 1076 | { |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1077 | int offload_enabled; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1078 | /* assumes h->devlock is held */ |
| 1079 | BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES); |
| 1080 | |
| 1081 | /* Raid level changed. */ |
| 1082 | h->dev[entry]->raid_level = new_entry->raid_level; |
Stephen M. Cameron | 250fb12 | 2014-02-18 13:55:38 -0600 | [diff] [blame] | 1083 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1084 | /* Raid offload parameters changed. Careful about the ordering. */ |
| 1085 | if (new_entry->offload_config && new_entry->offload_enabled) { |
| 1086 | /* |
| 1087 | * if drive is newly offload_enabled, we want to copy the |
| 1088 | * raid map data first. If previously offload_enabled and |
| 1089 | * offload_config were set, raid map data had better be |
| 1090 | * the same as it was before. if raid map data is changed |
| 1091 | * then it had better be the case that |
| 1092 | * h->dev[entry]->offload_enabled is currently 0. |
| 1093 | */ |
| 1094 | h->dev[entry]->raid_map = new_entry->raid_map; |
| 1095 | h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1096 | } |
Joe Handzik | a3144e0 | 2015-04-23 09:32:59 -0500 | [diff] [blame] | 1097 | if (new_entry->hba_ioaccel_enabled) { |
| 1098 | h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle; |
| 1099 | wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */ |
| 1100 | } |
| 1101 | h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled; |
Stephen M. Cameron | 250fb12 | 2014-02-18 13:55:38 -0600 | [diff] [blame] | 1102 | h->dev[entry]->offload_config = new_entry->offload_config; |
Stephen M. Cameron | 9fb0de2 | 2014-02-18 13:56:50 -0600 | [diff] [blame] | 1103 | h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1104 | h->dev[entry]->queue_depth = new_entry->queue_depth; |
Stephen M. Cameron | 250fb12 | 2014-02-18 13:55:38 -0600 | [diff] [blame] | 1105 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1106 | /* |
| 1107 | * We can turn off ioaccel offload now, but need to delay turning |
| 1108 | * it on until we can update h->dev[entry]->phys_disk[], but we |
| 1109 | * can't do that until all the devices are updated. |
| 1110 | */ |
| 1111 | h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled; |
| 1112 | if (!new_entry->offload_enabled) |
| 1113 | h->dev[entry]->offload_enabled = 0; |
| 1114 | |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1115 | offload_enabled = h->dev[entry]->offload_enabled; |
| 1116 | h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled; |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1117 | hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated"); |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1118 | h->dev[entry]->offload_enabled = offload_enabled; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1119 | } |
| 1120 | |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1121 | /* Replace an entry from h->dev[] array. */ |
| 1122 | static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno, |
| 1123 | int entry, struct hpsa_scsi_dev_t *new_entry, |
| 1124 | struct hpsa_scsi_dev_t *added[], int *nadded, |
| 1125 | struct hpsa_scsi_dev_t *removed[], int *nremoved) |
| 1126 | { |
| 1127 | /* assumes h->devlock is held */ |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 1128 | BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES); |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1129 | removed[*nremoved] = h->dev[entry]; |
| 1130 | (*nremoved)++; |
Stephen M. Cameron | 01350d0 | 2011-08-09 08:18:01 -0500 | [diff] [blame] | 1131 | |
| 1132 | /* |
| 1133 | * New physical devices won't have target/lun assigned yet |
| 1134 | * so we need to preserve the values in the slot we are replacing. |
| 1135 | */ |
| 1136 | if (new_entry->target == -1) { |
| 1137 | new_entry->target = h->dev[entry]->target; |
| 1138 | new_entry->lun = h->dev[entry]->lun; |
| 1139 | } |
| 1140 | |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1141 | h->dev[entry] = new_entry; |
| 1142 | added[*nadded] = new_entry; |
| 1143 | (*nadded)++; |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1144 | hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced"); |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1145 | new_entry->offload_to_be_enabled = new_entry->offload_enabled; |
| 1146 | new_entry->offload_enabled = 0; |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1147 | } |
| 1148 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1149 | /* Remove an entry from h->dev[] array. */ |
| 1150 | static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry, |
| 1151 | struct hpsa_scsi_dev_t *removed[], int *nremoved) |
| 1152 | { |
| 1153 | /* assumes h->devlock is held */ |
| 1154 | int i; |
| 1155 | struct hpsa_scsi_dev_t *sd; |
| 1156 | |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 1157 | BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1158 | |
| 1159 | sd = h->dev[entry]; |
| 1160 | removed[*nremoved] = h->dev[entry]; |
| 1161 | (*nremoved)++; |
| 1162 | |
| 1163 | for (i = entry; i < h->ndevices-1; i++) |
| 1164 | h->dev[i] = h->dev[i+1]; |
| 1165 | h->ndevices--; |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1166 | hpsa_show_dev_msg(KERN_INFO, h, sd, "removed"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1167 | } |
| 1168 | |
| 1169 | #define SCSI3ADDR_EQ(a, b) ( \ |
| 1170 | (a)[7] == (b)[7] && \ |
| 1171 | (a)[6] == (b)[6] && \ |
| 1172 | (a)[5] == (b)[5] && \ |
| 1173 | (a)[4] == (b)[4] && \ |
| 1174 | (a)[3] == (b)[3] && \ |
| 1175 | (a)[2] == (b)[2] && \ |
| 1176 | (a)[1] == (b)[1] && \ |
| 1177 | (a)[0] == (b)[0]) |
| 1178 | |
| 1179 | static void fixup_botched_add(struct ctlr_info *h, |
| 1180 | struct hpsa_scsi_dev_t *added) |
| 1181 | { |
| 1182 | /* called when scsi_add_device fails in order to re-adjust |
| 1183 | * h->dev[] to match the mid layer's view. |
| 1184 | */ |
| 1185 | unsigned long flags; |
| 1186 | int i, j; |
| 1187 | |
| 1188 | spin_lock_irqsave(&h->lock, flags); |
| 1189 | for (i = 0; i < h->ndevices; i++) { |
| 1190 | if (h->dev[i] == added) { |
| 1191 | for (j = i; j < h->ndevices-1; j++) |
| 1192 | h->dev[j] = h->dev[j+1]; |
| 1193 | h->ndevices--; |
| 1194 | break; |
| 1195 | } |
| 1196 | } |
| 1197 | spin_unlock_irqrestore(&h->lock, flags); |
| 1198 | kfree(added); |
| 1199 | } |
| 1200 | |
| 1201 | static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1, |
| 1202 | struct hpsa_scsi_dev_t *dev2) |
| 1203 | { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1204 | /* we compare everything except lun and target as these |
| 1205 | * are not yet assigned. Compare parts likely |
| 1206 | * to differ first |
| 1207 | */ |
| 1208 | if (memcmp(dev1->scsi3addr, dev2->scsi3addr, |
| 1209 | sizeof(dev1->scsi3addr)) != 0) |
| 1210 | return 0; |
| 1211 | if (memcmp(dev1->device_id, dev2->device_id, |
| 1212 | sizeof(dev1->device_id)) != 0) |
| 1213 | return 0; |
| 1214 | if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0) |
| 1215 | return 0; |
| 1216 | if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0) |
| 1217 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1218 | if (dev1->devtype != dev2->devtype) |
| 1219 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1220 | if (dev1->bus != dev2->bus) |
| 1221 | return 0; |
| 1222 | return 1; |
| 1223 | } |
| 1224 | |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1225 | static inline int device_updated(struct hpsa_scsi_dev_t *dev1, |
| 1226 | struct hpsa_scsi_dev_t *dev2) |
| 1227 | { |
| 1228 | /* Device attributes that can change, but don't mean |
| 1229 | * that the device is a different device, nor that the OS |
| 1230 | * needs to be told anything about the change. |
| 1231 | */ |
| 1232 | if (dev1->raid_level != dev2->raid_level) |
| 1233 | return 1; |
Stephen M. Cameron | 250fb12 | 2014-02-18 13:55:38 -0600 | [diff] [blame] | 1234 | if (dev1->offload_config != dev2->offload_config) |
| 1235 | return 1; |
| 1236 | if (dev1->offload_enabled != dev2->offload_enabled) |
| 1237 | return 1; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1238 | if (dev1->queue_depth != dev2->queue_depth) |
| 1239 | return 1; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1240 | return 0; |
| 1241 | } |
| 1242 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1243 | /* Find needle in haystack. If exact match found, return DEVICE_SAME, |
| 1244 | * and return needle location in *index. If scsi3addr matches, but not |
| 1245 | * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1246 | * location in *index. |
| 1247 | * In the case of a minor device attribute change, such as RAID level, just |
| 1248 | * return DEVICE_UPDATED, along with the updated device's location in index. |
| 1249 | * If needle not found, return DEVICE_NOT_FOUND. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1250 | */ |
| 1251 | static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle, |
| 1252 | struct hpsa_scsi_dev_t *haystack[], int haystack_size, |
| 1253 | int *index) |
| 1254 | { |
| 1255 | int i; |
| 1256 | #define DEVICE_NOT_FOUND 0 |
| 1257 | #define DEVICE_CHANGED 1 |
| 1258 | #define DEVICE_SAME 2 |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1259 | #define DEVICE_UPDATED 3 |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1260 | for (i = 0; i < haystack_size; i++) { |
Stephen M. Cameron | 2323104 | 2010-02-04 08:43:36 -0600 | [diff] [blame] | 1261 | if (haystack[i] == NULL) /* previously removed. */ |
| 1262 | continue; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1263 | if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) { |
| 1264 | *index = i; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1265 | if (device_is_the_same(needle, haystack[i])) { |
| 1266 | if (device_updated(needle, haystack[i])) |
| 1267 | return DEVICE_UPDATED; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1268 | return DEVICE_SAME; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1269 | } else { |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1270 | /* Keep offline devices offline */ |
| 1271 | if (needle->volume_offline) |
| 1272 | return DEVICE_NOT_FOUND; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1273 | return DEVICE_CHANGED; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1274 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1275 | } |
| 1276 | } |
| 1277 | *index = -1; |
| 1278 | return DEVICE_NOT_FOUND; |
| 1279 | } |
| 1280 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1281 | static void hpsa_monitor_offline_device(struct ctlr_info *h, |
| 1282 | unsigned char scsi3addr[]) |
| 1283 | { |
| 1284 | struct offline_device_entry *device; |
| 1285 | unsigned long flags; |
| 1286 | |
| 1287 | /* Check to see if device is already on the list */ |
| 1288 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 1289 | list_for_each_entry(device, &h->offline_device_list, offline_list) { |
| 1290 | if (memcmp(device->scsi3addr, scsi3addr, |
| 1291 | sizeof(device->scsi3addr)) == 0) { |
| 1292 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
| 1293 | return; |
| 1294 | } |
| 1295 | } |
| 1296 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
| 1297 | |
| 1298 | /* Device is not on the list, add it. */ |
| 1299 | device = kmalloc(sizeof(*device), GFP_KERNEL); |
| 1300 | if (!device) { |
| 1301 | dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__); |
| 1302 | return; |
| 1303 | } |
| 1304 | memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr)); |
| 1305 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 1306 | list_add_tail(&device->offline_list, &h->offline_device_list); |
| 1307 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
| 1308 | } |
| 1309 | |
| 1310 | /* Print a message explaining various offline volume states */ |
| 1311 | static void hpsa_show_volume_status(struct ctlr_info *h, |
| 1312 | struct hpsa_scsi_dev_t *sd) |
| 1313 | { |
| 1314 | if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED) |
| 1315 | dev_info(&h->pdev->dev, |
| 1316 | "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n", |
| 1317 | h->scsi_host->host_no, |
| 1318 | sd->bus, sd->target, sd->lun); |
| 1319 | switch (sd->volume_offline) { |
| 1320 | case HPSA_LV_OK: |
| 1321 | break; |
| 1322 | case HPSA_LV_UNDERGOING_ERASE: |
| 1323 | dev_info(&h->pdev->dev, |
| 1324 | "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n", |
| 1325 | h->scsi_host->host_no, |
| 1326 | sd->bus, sd->target, sd->lun); |
| 1327 | break; |
| 1328 | case HPSA_LV_UNDERGOING_RPI: |
| 1329 | dev_info(&h->pdev->dev, |
| 1330 | "C%d:B%d:T%d:L%d Volume is undergoing rapid parity initialization process.\n", |
| 1331 | h->scsi_host->host_no, |
| 1332 | sd->bus, sd->target, sd->lun); |
| 1333 | break; |
| 1334 | case HPSA_LV_PENDING_RPI: |
| 1335 | dev_info(&h->pdev->dev, |
| 1336 | "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n", |
| 1337 | h->scsi_host->host_no, |
| 1338 | sd->bus, sd->target, sd->lun); |
| 1339 | break; |
| 1340 | case HPSA_LV_ENCRYPTED_NO_KEY: |
| 1341 | dev_info(&h->pdev->dev, |
| 1342 | "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n", |
| 1343 | h->scsi_host->host_no, |
| 1344 | sd->bus, sd->target, sd->lun); |
| 1345 | break; |
| 1346 | case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER: |
| 1347 | dev_info(&h->pdev->dev, |
| 1348 | "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n", |
| 1349 | h->scsi_host->host_no, |
| 1350 | sd->bus, sd->target, sd->lun); |
| 1351 | break; |
| 1352 | case HPSA_LV_UNDERGOING_ENCRYPTION: |
| 1353 | dev_info(&h->pdev->dev, |
| 1354 | "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n", |
| 1355 | h->scsi_host->host_no, |
| 1356 | sd->bus, sd->target, sd->lun); |
| 1357 | break; |
| 1358 | case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING: |
| 1359 | dev_info(&h->pdev->dev, |
| 1360 | "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n", |
| 1361 | h->scsi_host->host_no, |
| 1362 | sd->bus, sd->target, sd->lun); |
| 1363 | break; |
| 1364 | case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER: |
| 1365 | dev_info(&h->pdev->dev, |
| 1366 | "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n", |
| 1367 | h->scsi_host->host_no, |
| 1368 | sd->bus, sd->target, sd->lun); |
| 1369 | break; |
| 1370 | case HPSA_LV_PENDING_ENCRYPTION: |
| 1371 | dev_info(&h->pdev->dev, |
| 1372 | "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n", |
| 1373 | h->scsi_host->host_no, |
| 1374 | sd->bus, sd->target, sd->lun); |
| 1375 | break; |
| 1376 | case HPSA_LV_PENDING_ENCRYPTION_REKEYING: |
| 1377 | dev_info(&h->pdev->dev, |
| 1378 | "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n", |
| 1379 | h->scsi_host->host_no, |
| 1380 | sd->bus, sd->target, sd->lun); |
| 1381 | break; |
| 1382 | } |
| 1383 | } |
| 1384 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1385 | /* |
| 1386 | * Figure the list of physical drive pointers for a logical drive with |
| 1387 | * raid offload configured. |
| 1388 | */ |
| 1389 | static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h, |
| 1390 | struct hpsa_scsi_dev_t *dev[], int ndevices, |
| 1391 | struct hpsa_scsi_dev_t *logical_drive) |
| 1392 | { |
| 1393 | struct raid_map_data *map = &logical_drive->raid_map; |
| 1394 | struct raid_map_disk_data *dd = &map->data[0]; |
| 1395 | int i, j; |
| 1396 | int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) + |
| 1397 | le16_to_cpu(map->metadata_disks_per_row); |
| 1398 | int nraid_map_entries = le16_to_cpu(map->row_cnt) * |
| 1399 | le16_to_cpu(map->layout_map_count) * |
| 1400 | total_disks_per_row; |
| 1401 | int nphys_disk = le16_to_cpu(map->layout_map_count) * |
| 1402 | total_disks_per_row; |
| 1403 | int qdepth; |
| 1404 | |
| 1405 | if (nraid_map_entries > RAID_MAP_MAX_ENTRIES) |
| 1406 | nraid_map_entries = RAID_MAP_MAX_ENTRIES; |
| 1407 | |
| 1408 | qdepth = 0; |
| 1409 | for (i = 0; i < nraid_map_entries; i++) { |
| 1410 | logical_drive->phys_disk[i] = NULL; |
| 1411 | if (!logical_drive->offload_config) |
| 1412 | continue; |
| 1413 | for (j = 0; j < ndevices; j++) { |
| 1414 | if (dev[j]->devtype != TYPE_DISK) |
| 1415 | continue; |
| 1416 | if (is_logical_dev_addr_mode(dev[j]->scsi3addr)) |
| 1417 | continue; |
| 1418 | if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle) |
| 1419 | continue; |
| 1420 | |
| 1421 | logical_drive->phys_disk[i] = dev[j]; |
| 1422 | if (i < nphys_disk) |
| 1423 | qdepth = min(h->nr_cmds, qdepth + |
| 1424 | logical_drive->phys_disk[i]->queue_depth); |
| 1425 | break; |
| 1426 | } |
| 1427 | |
| 1428 | /* |
| 1429 | * This can happen if a physical drive is removed and |
| 1430 | * the logical drive is degraded. In that case, the RAID |
| 1431 | * map data will refer to a physical disk which isn't actually |
| 1432 | * present. And in that case offload_enabled should already |
| 1433 | * be 0, but we'll turn it off here just in case |
| 1434 | */ |
| 1435 | if (!logical_drive->phys_disk[i]) { |
| 1436 | logical_drive->offload_enabled = 0; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1437 | logical_drive->offload_to_be_enabled = 0; |
| 1438 | logical_drive->queue_depth = 8; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1439 | } |
| 1440 | } |
| 1441 | if (nraid_map_entries) |
| 1442 | /* |
| 1443 | * This is correct for reads, too high for full stripe writes, |
| 1444 | * way too high for partial stripe writes |
| 1445 | */ |
| 1446 | logical_drive->queue_depth = qdepth; |
| 1447 | else |
| 1448 | logical_drive->queue_depth = h->nr_cmds; |
| 1449 | } |
| 1450 | |
| 1451 | static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h, |
| 1452 | struct hpsa_scsi_dev_t *dev[], int ndevices) |
| 1453 | { |
| 1454 | int i; |
| 1455 | |
| 1456 | for (i = 0; i < ndevices; i++) { |
| 1457 | if (dev[i]->devtype != TYPE_DISK) |
| 1458 | continue; |
| 1459 | if (!is_logical_dev_addr_mode(dev[i]->scsi3addr)) |
| 1460 | continue; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1461 | |
| 1462 | /* |
| 1463 | * If offload is currently enabled, the RAID map and |
| 1464 | * phys_disk[] assignment *better* not be changing |
| 1465 | * and since it isn't changing, we do not need to |
| 1466 | * update it. |
| 1467 | */ |
| 1468 | if (dev[i]->offload_enabled) |
| 1469 | continue; |
| 1470 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1471 | hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]); |
| 1472 | } |
| 1473 | } |
| 1474 | |
Stephen M. Cameron | 4967bd3 | 2010-02-04 08:41:49 -0600 | [diff] [blame] | 1475 | static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1476 | struct hpsa_scsi_dev_t *sd[], int nsds) |
| 1477 | { |
| 1478 | /* sd contains scsi3 addresses and devtypes, and inquiry |
| 1479 | * data. This function takes what's in sd to be the current |
| 1480 | * reality and updates h->dev[] to reflect that reality. |
| 1481 | */ |
| 1482 | int i, entry, device_change, changes = 0; |
| 1483 | struct hpsa_scsi_dev_t *csd; |
| 1484 | unsigned long flags; |
| 1485 | struct hpsa_scsi_dev_t **added, **removed; |
| 1486 | int nadded, nremoved; |
| 1487 | struct Scsi_Host *sh = NULL; |
| 1488 | |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 1489 | added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL); |
| 1490 | removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1491 | |
| 1492 | if (!added || !removed) { |
| 1493 | dev_warn(&h->pdev->dev, "out of memory in " |
| 1494 | "adjust_hpsa_scsi_table\n"); |
| 1495 | goto free_and_out; |
| 1496 | } |
| 1497 | |
| 1498 | spin_lock_irqsave(&h->devlock, flags); |
| 1499 | |
| 1500 | /* find any devices in h->dev[] that are not in |
| 1501 | * sd[] and remove them from h->dev[], and for any |
| 1502 | * devices which have changed, remove the old device |
| 1503 | * info and add the new device info. |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1504 | * If minor device attributes change, just update |
| 1505 | * the existing device structure. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1506 | */ |
| 1507 | i = 0; |
| 1508 | nremoved = 0; |
| 1509 | nadded = 0; |
| 1510 | while (i < h->ndevices) { |
| 1511 | csd = h->dev[i]; |
| 1512 | device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry); |
| 1513 | if (device_change == DEVICE_NOT_FOUND) { |
| 1514 | changes++; |
| 1515 | hpsa_scsi_remove_entry(h, hostno, i, |
| 1516 | removed, &nremoved); |
| 1517 | continue; /* remove ^^^, hence i not incremented */ |
| 1518 | } else if (device_change == DEVICE_CHANGED) { |
| 1519 | changes++; |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1520 | hpsa_scsi_replace_entry(h, hostno, i, sd[entry], |
| 1521 | added, &nadded, removed, &nremoved); |
Stephen M. Cameron | c7f172d | 2010-02-04 08:43:31 -0600 | [diff] [blame] | 1522 | /* Set it to NULL to prevent it from being freed |
| 1523 | * at the bottom of hpsa_update_scsi_devices() |
| 1524 | */ |
| 1525 | sd[entry] = NULL; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1526 | } else if (device_change == DEVICE_UPDATED) { |
| 1527 | hpsa_scsi_update_entry(h, hostno, i, sd[entry]); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1528 | } |
| 1529 | i++; |
| 1530 | } |
| 1531 | |
| 1532 | /* Now, make sure every device listed in sd[] is also |
| 1533 | * listed in h->dev[], adding them if they aren't found |
| 1534 | */ |
| 1535 | |
| 1536 | for (i = 0; i < nsds; i++) { |
| 1537 | if (!sd[i]) /* if already added above. */ |
| 1538 | continue; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1539 | |
| 1540 | /* Don't add devices which are NOT READY, FORMAT IN PROGRESS |
| 1541 | * as the SCSI mid-layer does not handle such devices well. |
| 1542 | * It relentlessly loops sending TUR at 3Hz, then READ(10) |
| 1543 | * at 160Hz, and prevents the system from coming up. |
| 1544 | */ |
| 1545 | if (sd[i]->volume_offline) { |
| 1546 | hpsa_show_volume_status(h, sd[i]); |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1547 | hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline"); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1548 | continue; |
| 1549 | } |
| 1550 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1551 | device_change = hpsa_scsi_find_entry(sd[i], h->dev, |
| 1552 | h->ndevices, &entry); |
| 1553 | if (device_change == DEVICE_NOT_FOUND) { |
| 1554 | changes++; |
| 1555 | if (hpsa_scsi_add_entry(h, hostno, sd[i], |
| 1556 | added, &nadded) != 0) |
| 1557 | break; |
| 1558 | sd[i] = NULL; /* prevent from being freed later. */ |
| 1559 | } else if (device_change == DEVICE_CHANGED) { |
| 1560 | /* should never happen... */ |
| 1561 | changes++; |
| 1562 | dev_warn(&h->pdev->dev, |
| 1563 | "device unexpectedly changed.\n"); |
| 1564 | /* but if it does happen, we just ignore that device */ |
| 1565 | } |
| 1566 | } |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1567 | hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices); |
| 1568 | |
| 1569 | /* Now that h->dev[]->phys_disk[] is coherent, we can enable |
| 1570 | * any logical drives that need it enabled. |
| 1571 | */ |
| 1572 | for (i = 0; i < h->ndevices; i++) |
| 1573 | h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled; |
| 1574 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1575 | spin_unlock_irqrestore(&h->devlock, flags); |
| 1576 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1577 | /* Monitor devices which are in one of several NOT READY states to be |
| 1578 | * brought online later. This must be done without holding h->devlock, |
| 1579 | * so don't touch h->dev[] |
| 1580 | */ |
| 1581 | for (i = 0; i < nsds; i++) { |
| 1582 | if (!sd[i]) /* if already added above. */ |
| 1583 | continue; |
| 1584 | if (sd[i]->volume_offline) |
| 1585 | hpsa_monitor_offline_device(h, sd[i]->scsi3addr); |
| 1586 | } |
| 1587 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1588 | /* Don't notify scsi mid layer of any changes the first time through |
| 1589 | * (or if there are no changes) scsi_scan_host will do it later the |
| 1590 | * first time through. |
| 1591 | */ |
| 1592 | if (hostno == -1 || !changes) |
| 1593 | goto free_and_out; |
| 1594 | |
| 1595 | sh = h->scsi_host; |
| 1596 | /* Notify scsi mid layer of any removed devices */ |
| 1597 | for (i = 0; i < nremoved; i++) { |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1598 | if (removed[i]->expose_state & HPSA_SCSI_ADD) { |
| 1599 | struct scsi_device *sdev = |
| 1600 | scsi_device_lookup(sh, removed[i]->bus, |
| 1601 | removed[i]->target, removed[i]->lun); |
| 1602 | if (sdev != NULL) { |
| 1603 | scsi_remove_device(sdev); |
| 1604 | scsi_device_put(sdev); |
| 1605 | } else { |
| 1606 | /* |
| 1607 | * We don't expect to get here. |
| 1608 | * future cmds to this device will get selection |
| 1609 | * timeout as if the device was gone. |
| 1610 | */ |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1611 | hpsa_show_dev_msg(KERN_WARNING, h, removed[i], |
| 1612 | "didn't find device for removal."); |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1613 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1614 | } |
| 1615 | kfree(removed[i]); |
| 1616 | removed[i] = NULL; |
| 1617 | } |
| 1618 | |
| 1619 | /* Notify scsi mid layer of any added devices */ |
| 1620 | for (i = 0; i < nadded; i++) { |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1621 | if (!(added[i]->expose_state & HPSA_SCSI_ADD)) |
| 1622 | continue; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1623 | if (scsi_add_device(sh, added[i]->bus, |
| 1624 | added[i]->target, added[i]->lun) == 0) |
| 1625 | continue; |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1626 | hpsa_show_dev_msg(KERN_WARNING, h, added[i], |
| 1627 | "addition failed, device not added."); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1628 | /* now we have to remove it from h->dev, |
| 1629 | * since it didn't get added to scsi mid layer |
| 1630 | */ |
| 1631 | fixup_botched_add(h, added[i]); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 1632 | added[i] = NULL; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1633 | } |
| 1634 | |
| 1635 | free_and_out: |
| 1636 | kfree(added); |
| 1637 | kfree(removed); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1638 | } |
| 1639 | |
| 1640 | /* |
Joe Perches | 9e03aa2 | 2013-09-03 13:45:58 -0700 | [diff] [blame] | 1641 | * Lookup bus/target/lun and return corresponding struct hpsa_scsi_dev_t * |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1642 | * Assume's h->devlock is held. |
| 1643 | */ |
| 1644 | static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h, |
| 1645 | int bus, int target, int lun) |
| 1646 | { |
| 1647 | int i; |
| 1648 | struct hpsa_scsi_dev_t *sd; |
| 1649 | |
| 1650 | for (i = 0; i < h->ndevices; i++) { |
| 1651 | sd = h->dev[i]; |
| 1652 | if (sd->bus == bus && sd->target == target && sd->lun == lun) |
| 1653 | return sd; |
| 1654 | } |
| 1655 | return NULL; |
| 1656 | } |
| 1657 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1658 | static int hpsa_slave_alloc(struct scsi_device *sdev) |
| 1659 | { |
| 1660 | struct hpsa_scsi_dev_t *sd; |
| 1661 | unsigned long flags; |
| 1662 | struct ctlr_info *h; |
| 1663 | |
| 1664 | h = sdev_to_hba(sdev); |
| 1665 | spin_lock_irqsave(&h->devlock, flags); |
| 1666 | sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev), |
| 1667 | sdev_id(sdev), sdev->lun); |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1668 | if (likely(sd)) { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1669 | atomic_set(&sd->ioaccel_cmds_out, 0); |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1670 | sdev->hostdata = (sd->expose_state & HPSA_SCSI_ADD) ? sd : NULL; |
| 1671 | } else |
| 1672 | sdev->hostdata = NULL; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1673 | spin_unlock_irqrestore(&h->devlock, flags); |
| 1674 | return 0; |
| 1675 | } |
| 1676 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1677 | /* configure scsi device based on internal per-device structure */ |
| 1678 | static int hpsa_slave_configure(struct scsi_device *sdev) |
| 1679 | { |
| 1680 | struct hpsa_scsi_dev_t *sd; |
| 1681 | int queue_depth; |
| 1682 | |
| 1683 | sd = sdev->hostdata; |
| 1684 | sdev->no_uld_attach = !sd || !(sd->expose_state & HPSA_ULD_ATTACH); |
| 1685 | |
| 1686 | if (sd) |
| 1687 | queue_depth = sd->queue_depth != 0 ? |
| 1688 | sd->queue_depth : sdev->host->can_queue; |
| 1689 | else |
| 1690 | queue_depth = sdev->host->can_queue; |
| 1691 | |
| 1692 | scsi_change_queue_depth(sdev, queue_depth); |
| 1693 | |
| 1694 | return 0; |
| 1695 | } |
| 1696 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1697 | static void hpsa_slave_destroy(struct scsi_device *sdev) |
| 1698 | { |
Stephen M. Cameron | bcc4425 | 2010-02-04 08:41:54 -0600 | [diff] [blame] | 1699 | /* nothing to do. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1700 | } |
| 1701 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 1702 | static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h) |
| 1703 | { |
| 1704 | int i; |
| 1705 | |
| 1706 | if (!h->ioaccel2_cmd_sg_list) |
| 1707 | return; |
| 1708 | for (i = 0; i < h->nr_cmds; i++) { |
| 1709 | kfree(h->ioaccel2_cmd_sg_list[i]); |
| 1710 | h->ioaccel2_cmd_sg_list[i] = NULL; |
| 1711 | } |
| 1712 | kfree(h->ioaccel2_cmd_sg_list); |
| 1713 | h->ioaccel2_cmd_sg_list = NULL; |
| 1714 | } |
| 1715 | |
| 1716 | static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h) |
| 1717 | { |
| 1718 | int i; |
| 1719 | |
| 1720 | if (h->chainsize <= 0) |
| 1721 | return 0; |
| 1722 | |
| 1723 | h->ioaccel2_cmd_sg_list = |
| 1724 | kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds, |
| 1725 | GFP_KERNEL); |
| 1726 | if (!h->ioaccel2_cmd_sg_list) |
| 1727 | return -ENOMEM; |
| 1728 | for (i = 0; i < h->nr_cmds; i++) { |
| 1729 | h->ioaccel2_cmd_sg_list[i] = |
| 1730 | kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) * |
| 1731 | h->maxsgentries, GFP_KERNEL); |
| 1732 | if (!h->ioaccel2_cmd_sg_list[i]) |
| 1733 | goto clean; |
| 1734 | } |
| 1735 | return 0; |
| 1736 | |
| 1737 | clean: |
| 1738 | hpsa_free_ioaccel2_sg_chain_blocks(h); |
| 1739 | return -ENOMEM; |
| 1740 | } |
| 1741 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1742 | static void hpsa_free_sg_chain_blocks(struct ctlr_info *h) |
| 1743 | { |
| 1744 | int i; |
| 1745 | |
| 1746 | if (!h->cmd_sg_list) |
| 1747 | return; |
| 1748 | for (i = 0; i < h->nr_cmds; i++) { |
| 1749 | kfree(h->cmd_sg_list[i]); |
| 1750 | h->cmd_sg_list[i] = NULL; |
| 1751 | } |
| 1752 | kfree(h->cmd_sg_list); |
| 1753 | h->cmd_sg_list = NULL; |
| 1754 | } |
| 1755 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 1756 | static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h) |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1757 | { |
| 1758 | int i; |
| 1759 | |
| 1760 | if (h->chainsize <= 0) |
| 1761 | return 0; |
| 1762 | |
| 1763 | h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds, |
| 1764 | GFP_KERNEL); |
Robert Elliott | 3d4e6af | 2015-01-23 16:42:42 -0600 | [diff] [blame] | 1765 | if (!h->cmd_sg_list) { |
| 1766 | dev_err(&h->pdev->dev, "Failed to allocate SG list\n"); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1767 | return -ENOMEM; |
Robert Elliott | 3d4e6af | 2015-01-23 16:42:42 -0600 | [diff] [blame] | 1768 | } |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1769 | for (i = 0; i < h->nr_cmds; i++) { |
| 1770 | h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) * |
| 1771 | h->chainsize, GFP_KERNEL); |
Robert Elliott | 3d4e6af | 2015-01-23 16:42:42 -0600 | [diff] [blame] | 1772 | if (!h->cmd_sg_list[i]) { |
| 1773 | dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n"); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1774 | goto clean; |
Robert Elliott | 3d4e6af | 2015-01-23 16:42:42 -0600 | [diff] [blame] | 1775 | } |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1776 | } |
| 1777 | return 0; |
| 1778 | |
| 1779 | clean: |
| 1780 | hpsa_free_sg_chain_blocks(h); |
| 1781 | return -ENOMEM; |
| 1782 | } |
| 1783 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 1784 | static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h, |
| 1785 | struct io_accel2_cmd *cp, struct CommandList *c) |
| 1786 | { |
| 1787 | struct ioaccel2_sg_element *chain_block; |
| 1788 | u64 temp64; |
| 1789 | u32 chain_size; |
| 1790 | |
| 1791 | chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex]; |
| 1792 | chain_size = le32_to_cpu(cp->data_len); |
| 1793 | temp64 = pci_map_single(h->pdev, chain_block, chain_size, |
| 1794 | PCI_DMA_TODEVICE); |
| 1795 | if (dma_mapping_error(&h->pdev->dev, temp64)) { |
| 1796 | /* prevent subsequent unmapping */ |
| 1797 | cp->sg->address = 0; |
| 1798 | return -1; |
| 1799 | } |
| 1800 | cp->sg->address = cpu_to_le64(temp64); |
| 1801 | return 0; |
| 1802 | } |
| 1803 | |
| 1804 | static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h, |
| 1805 | struct io_accel2_cmd *cp) |
| 1806 | { |
| 1807 | struct ioaccel2_sg_element *chain_sg; |
| 1808 | u64 temp64; |
| 1809 | u32 chain_size; |
| 1810 | |
| 1811 | chain_sg = cp->sg; |
| 1812 | temp64 = le64_to_cpu(chain_sg->address); |
| 1813 | chain_size = le32_to_cpu(cp->data_len); |
| 1814 | pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE); |
| 1815 | } |
| 1816 | |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 1817 | static int hpsa_map_sg_chain_block(struct ctlr_info *h, |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1818 | struct CommandList *c) |
| 1819 | { |
| 1820 | struct SGDescriptor *chain_sg, *chain_block; |
| 1821 | u64 temp64; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 1822 | u32 chain_len; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1823 | |
| 1824 | chain_sg = &c->SG[h->max_cmd_sg_entries - 1]; |
| 1825 | chain_block = h->cmd_sg_list[c->cmdindex]; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 1826 | chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN); |
| 1827 | chain_len = sizeof(*chain_sg) * |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 1828 | (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 1829 | chain_sg->Len = cpu_to_le32(chain_len); |
| 1830 | temp64 = pci_map_single(h->pdev, chain_block, chain_len, |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1831 | PCI_DMA_TODEVICE); |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 1832 | if (dma_mapping_error(&h->pdev->dev, temp64)) { |
| 1833 | /* prevent subsequent unmapping */ |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 1834 | chain_sg->Addr = cpu_to_le64(0); |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 1835 | return -1; |
| 1836 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 1837 | chain_sg->Addr = cpu_to_le64(temp64); |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 1838 | return 0; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1839 | } |
| 1840 | |
| 1841 | static void hpsa_unmap_sg_chain_block(struct ctlr_info *h, |
| 1842 | struct CommandList *c) |
| 1843 | { |
| 1844 | struct SGDescriptor *chain_sg; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1845 | |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 1846 | if (le16_to_cpu(c->Header.SGTotal) <= h->max_cmd_sg_entries) |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1847 | return; |
| 1848 | |
| 1849 | chain_sg = &c->SG[h->max_cmd_sg_entries - 1]; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 1850 | pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr), |
| 1851 | le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1852 | } |
| 1853 | |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1854 | |
| 1855 | /* Decode the various types of errors on ioaccel2 path. |
| 1856 | * Return 1 for any error that should generate a RAID path retry. |
| 1857 | * Return 0 for errors that don't require a RAID path retry. |
| 1858 | */ |
| 1859 | static int handle_ioaccel_mode2_error(struct ctlr_info *h, |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1860 | struct CommandList *c, |
| 1861 | struct scsi_cmnd *cmd, |
| 1862 | struct io_accel2_cmd *c2) |
| 1863 | { |
| 1864 | int data_len; |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1865 | int retry = 0; |
Joe Handzik | c40820d | 2015-04-23 09:33:32 -0500 | [diff] [blame] | 1866 | u32 ioaccel2_resid = 0; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1867 | |
| 1868 | switch (c2->error_data.serv_response) { |
| 1869 | case IOACCEL2_SERV_RESPONSE_COMPLETE: |
| 1870 | switch (c2->error_data.status) { |
| 1871 | case IOACCEL2_STATUS_SR_TASK_COMP_GOOD: |
| 1872 | break; |
| 1873 | case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND: |
| 1874 | dev_warn(&h->pdev->dev, |
| 1875 | "%s: task complete with check condition.\n", |
| 1876 | "HP SSD Smart Path"); |
Stephen M. Cameron | ee6b188 | 2014-05-29 10:53:54 -0500 | [diff] [blame] | 1877 | cmd->result |= SAM_STAT_CHECK_CONDITION; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1878 | if (c2->error_data.data_present != |
Stephen M. Cameron | ee6b188 | 2014-05-29 10:53:54 -0500 | [diff] [blame] | 1879 | IOACCEL2_SENSE_DATA_PRESENT) { |
| 1880 | memset(cmd->sense_buffer, 0, |
| 1881 | SCSI_SENSE_BUFFERSIZE); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1882 | break; |
Stephen M. Cameron | ee6b188 | 2014-05-29 10:53:54 -0500 | [diff] [blame] | 1883 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1884 | /* copy the sense data */ |
| 1885 | data_len = c2->error_data.sense_data_len; |
| 1886 | if (data_len > SCSI_SENSE_BUFFERSIZE) |
| 1887 | data_len = SCSI_SENSE_BUFFERSIZE; |
| 1888 | if (data_len > sizeof(c2->error_data.sense_data_buff)) |
| 1889 | data_len = |
| 1890 | sizeof(c2->error_data.sense_data_buff); |
| 1891 | memcpy(cmd->sense_buffer, |
| 1892 | c2->error_data.sense_data_buff, data_len); |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1893 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1894 | break; |
| 1895 | case IOACCEL2_STATUS_SR_TASK_COMP_BUSY: |
| 1896 | dev_warn(&h->pdev->dev, |
| 1897 | "%s: task complete with BUSY status.\n", |
| 1898 | "HP SSD Smart Path"); |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1899 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1900 | break; |
| 1901 | case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON: |
| 1902 | dev_warn(&h->pdev->dev, |
| 1903 | "%s: task complete with reservation conflict.\n", |
| 1904 | "HP SSD Smart Path"); |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1905 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1906 | break; |
| 1907 | case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL: |
Stephen Cameron | 4a8da22 | 2015-04-23 09:32:43 -0500 | [diff] [blame] | 1908 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1909 | break; |
| 1910 | case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED: |
| 1911 | dev_warn(&h->pdev->dev, |
| 1912 | "%s: task complete with aborted status.\n", |
| 1913 | "HP SSD Smart Path"); |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1914 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1915 | break; |
| 1916 | default: |
| 1917 | dev_warn(&h->pdev->dev, |
| 1918 | "%s: task complete with unrecognized status: 0x%02x\n", |
| 1919 | "HP SSD Smart Path", c2->error_data.status); |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1920 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1921 | break; |
| 1922 | } |
| 1923 | break; |
| 1924 | case IOACCEL2_SERV_RESPONSE_FAILURE: |
Joe Handzik | c40820d | 2015-04-23 09:33:32 -0500 | [diff] [blame] | 1925 | switch (c2->error_data.status) { |
| 1926 | case IOACCEL2_STATUS_SR_IO_ERROR: |
| 1927 | case IOACCEL2_STATUS_SR_IO_ABORTED: |
| 1928 | case IOACCEL2_STATUS_SR_OVERRUN: |
| 1929 | retry = 1; |
| 1930 | break; |
| 1931 | case IOACCEL2_STATUS_SR_UNDERRUN: |
| 1932 | cmd->result = (DID_OK << 16); /* host byte */ |
| 1933 | cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */ |
| 1934 | ioaccel2_resid = get_unaligned_le32( |
| 1935 | &c2->error_data.resid_cnt[0]); |
| 1936 | scsi_set_resid(cmd, ioaccel2_resid); |
| 1937 | break; |
| 1938 | case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE: |
| 1939 | case IOACCEL2_STATUS_SR_INVALID_DEVICE: |
| 1940 | case IOACCEL2_STATUS_SR_IOACCEL_DISABLED: |
| 1941 | /* We will get an event from ctlr to trigger rescan */ |
| 1942 | retry = 1; |
| 1943 | break; |
| 1944 | default: |
| 1945 | retry = 1; |
| 1946 | dev_warn(&h->pdev->dev, |
| 1947 | "unexpected delivery or target failure, status = 0x%02x\n", |
| 1948 | c2->error_data.status); |
| 1949 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1950 | break; |
| 1951 | case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE: |
| 1952 | break; |
| 1953 | case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS: |
| 1954 | break; |
| 1955 | case IOACCEL2_SERV_RESPONSE_TMF_REJECTED: |
| 1956 | dev_warn(&h->pdev->dev, "task management function rejected.\n"); |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1957 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1958 | break; |
| 1959 | case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN: |
| 1960 | dev_warn(&h->pdev->dev, "task management function invalid LUN\n"); |
| 1961 | break; |
| 1962 | default: |
| 1963 | dev_warn(&h->pdev->dev, |
| 1964 | "%s: Unrecognized server response: 0x%02x\n", |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1965 | "HP SSD Smart Path", |
| 1966 | c2->error_data.serv_response); |
| 1967 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1968 | break; |
| 1969 | } |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 1970 | |
| 1971 | return retry; /* retry on raid path? */ |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1972 | } |
| 1973 | |
| 1974 | static void process_ioaccel2_completion(struct ctlr_info *h, |
| 1975 | struct CommandList *c, struct scsi_cmnd *cmd, |
| 1976 | struct hpsa_scsi_dev_t *dev) |
| 1977 | { |
| 1978 | struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 1979 | |
| 1980 | /* check for good status */ |
| 1981 | if (likely(c2->error_data.serv_response == 0 && |
| 1982 | c2->error_data.status == 0)) { |
| 1983 | cmd_free(h, c); |
| 1984 | cmd->scsi_done(cmd); |
| 1985 | return; |
| 1986 | } |
| 1987 | |
| 1988 | /* Any RAID offload error results in retry which will use |
| 1989 | * the normal I/O path so the controller can handle whatever's |
| 1990 | * wrong. |
| 1991 | */ |
| 1992 | if (is_logical_dev_addr_mode(dev->scsi3addr) && |
| 1993 | c2->error_data.serv_response == |
| 1994 | IOACCEL2_SERV_RESPONSE_FAILURE) { |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 1995 | if (c2->error_data.status == |
| 1996 | IOACCEL2_STATUS_SR_IOACCEL_DISABLED) |
| 1997 | dev->offload_enabled = 0; |
| 1998 | goto retry_cmd; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1999 | } |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 2000 | |
| 2001 | if (handle_ioaccel_mode2_error(h, c, cmd, c2)) |
| 2002 | goto retry_cmd; |
| 2003 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2004 | cmd_free(h, c); |
| 2005 | cmd->scsi_done(cmd); |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 2006 | return; |
| 2007 | |
| 2008 | retry_cmd: |
| 2009 | INIT_WORK(&c->work, hpsa_command_resubmit_worker); |
| 2010 | queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2011 | } |
| 2012 | |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2013 | /* Returns 0 on success, < 0 otherwise. */ |
| 2014 | static int hpsa_evaluate_tmf_status(struct ctlr_info *h, |
| 2015 | struct CommandList *cp) |
| 2016 | { |
| 2017 | u8 tmf_status = cp->err_info->ScsiStatus; |
| 2018 | |
| 2019 | switch (tmf_status) { |
| 2020 | case CISS_TMF_COMPLETE: |
| 2021 | /* |
| 2022 | * CISS_TMF_COMPLETE never happens, instead, |
| 2023 | * ei->CommandStatus == 0 for this case. |
| 2024 | */ |
| 2025 | case CISS_TMF_SUCCESS: |
| 2026 | return 0; |
| 2027 | case CISS_TMF_INVALID_FRAME: |
| 2028 | case CISS_TMF_NOT_SUPPORTED: |
| 2029 | case CISS_TMF_FAILED: |
| 2030 | case CISS_TMF_WRONG_LUN: |
| 2031 | case CISS_TMF_OVERLAPPED_TAG: |
| 2032 | break; |
| 2033 | default: |
| 2034 | dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n", |
| 2035 | tmf_status); |
| 2036 | break; |
| 2037 | } |
| 2038 | return -tmf_status; |
| 2039 | } |
| 2040 | |
Stephen M. Cameron | 1fb011f | 2011-05-03 14:59:00 -0500 | [diff] [blame] | 2041 | static void complete_scsi_command(struct CommandList *cp) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2042 | { |
| 2043 | struct scsi_cmnd *cmd; |
| 2044 | struct ctlr_info *h; |
| 2045 | struct ErrorInfo *ei; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2046 | struct hpsa_scsi_dev_t *dev; |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 2047 | struct io_accel2_cmd *c2; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2048 | |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2049 | u8 sense_key; |
| 2050 | u8 asc; /* additional sense code */ |
| 2051 | u8 ascq; /* additional sense code qualifier */ |
Stephen M. Cameron | db111e1 | 2011-06-03 09:57:34 -0500 | [diff] [blame] | 2052 | unsigned long sense_data_size; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2053 | |
| 2054 | ei = cp->err_info; |
Stephen Cameron | 7fa3030 | 2015-01-23 16:44:30 -0600 | [diff] [blame] | 2055 | cmd = cp->scsi_cmd; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2056 | h = cp->h; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2057 | dev = cmd->device->hostdata; |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 2058 | c2 = &h->ioaccel2_cmd_pool[cp->cmdindex]; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2059 | |
| 2060 | scsi_dma_unmap(cmd); /* undo the DMA mappings */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 2061 | if ((cp->cmd_type == CMD_SCSI) && |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 2062 | (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries)) |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 2063 | hpsa_unmap_sg_chain_block(h, cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2064 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 2065 | if ((cp->cmd_type == CMD_IOACCEL2) && |
| 2066 | (c2->sg[0].chain_indicator == IOACCEL2_CHAIN)) |
| 2067 | hpsa_unmap_ioaccel2_sg_chain_block(h, c2); |
| 2068 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2069 | cmd->result = (DID_OK << 16); /* host byte */ |
| 2070 | cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */ |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2071 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2072 | if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1) |
| 2073 | atomic_dec(&cp->phys_disk->ioaccel_cmds_out); |
| 2074 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2075 | /* |
| 2076 | * We check for lockup status here as it may be set for |
| 2077 | * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by |
| 2078 | * fail_all_oustanding_cmds() |
| 2079 | */ |
| 2080 | if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) { |
| 2081 | /* DID_NO_CONNECT will prevent a retry */ |
| 2082 | cmd->result = DID_NO_CONNECT << 16; |
| 2083 | cmd_free(h, cp); |
| 2084 | cmd->scsi_done(cmd); |
| 2085 | return; |
| 2086 | } |
| 2087 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2088 | if (cp->cmd_type == CMD_IOACCEL2) |
| 2089 | return process_ioaccel2_completion(h, cp, cmd, dev); |
| 2090 | |
Robert Elliott | 6aa4c36 | 2014-07-03 10:18:19 -0500 | [diff] [blame] | 2091 | scsi_set_resid(cmd, ei->ResidualCnt); |
| 2092 | if (ei->CommandStatus == 0) { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2093 | if (cp->cmd_type == CMD_IOACCEL1) |
| 2094 | atomic_dec(&cp->phys_disk->ioaccel_cmds_out); |
Robert Elliott | 6aa4c36 | 2014-07-03 10:18:19 -0500 | [diff] [blame] | 2095 | cmd_free(h, cp); |
| 2096 | cmd->scsi_done(cmd); |
| 2097 | return; |
| 2098 | } |
| 2099 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 2100 | /* For I/O accelerator commands, copy over some fields to the normal |
| 2101 | * CISS header used below for error handling. |
| 2102 | */ |
| 2103 | if (cp->cmd_type == CMD_IOACCEL1) { |
| 2104 | struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex]; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 2105 | cp->Header.SGList = scsi_sg_count(cmd); |
| 2106 | cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList); |
| 2107 | cp->Request.CDBLen = le16_to_cpu(c->io_flags) & |
| 2108 | IOACCEL1_IOFLAGS_CDBLEN_MASK; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2109 | cp->Header.tag = c->tag; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 2110 | memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8); |
| 2111 | memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2112 | |
| 2113 | /* Any RAID offload error results in retry which will use |
| 2114 | * the normal I/O path so the controller can handle whatever's |
| 2115 | * wrong. |
| 2116 | */ |
| 2117 | if (is_logical_dev_addr_mode(dev->scsi3addr)) { |
| 2118 | if (ei->CommandStatus == CMD_IOACCEL_DISABLED) |
| 2119 | dev->offload_enabled = 0; |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 2120 | INIT_WORK(&cp->work, hpsa_command_resubmit_worker); |
| 2121 | queue_work_on(raw_smp_processor_id(), |
| 2122 | h->resubmit_wq, &cp->work); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2123 | return; |
| 2124 | } |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 2125 | } |
| 2126 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2127 | /* an error has occurred */ |
| 2128 | switch (ei->CommandStatus) { |
| 2129 | |
| 2130 | case CMD_TARGET_STATUS: |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2131 | cmd->result |= ei->ScsiStatus; |
| 2132 | /* copy the sense data */ |
| 2133 | if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo)) |
| 2134 | sense_data_size = SCSI_SENSE_BUFFERSIZE; |
| 2135 | else |
| 2136 | sense_data_size = sizeof(ei->SenseInfo); |
| 2137 | if (ei->SenseLen < sense_data_size) |
| 2138 | sense_data_size = ei->SenseLen; |
| 2139 | memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size); |
| 2140 | if (ei->ScsiStatus) |
| 2141 | decode_sense_data(ei->SenseInfo, sense_data_size, |
| 2142 | &sense_key, &asc, &ascq); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2143 | if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) { |
Matt Gates | 1d3b360 | 2010-02-04 08:43:00 -0600 | [diff] [blame] | 2144 | if (sense_key == ABORTED_COMMAND) { |
Stephen M. Cameron | 2e311fb | 2013-09-23 13:33:41 -0500 | [diff] [blame] | 2145 | cmd->result |= DID_SOFT_ERROR << 16; |
Matt Gates | 1d3b360 | 2010-02-04 08:43:00 -0600 | [diff] [blame] | 2146 | break; |
| 2147 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2148 | break; |
| 2149 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2150 | /* Problem was not a check condition |
| 2151 | * Pass it up to the upper layers... |
| 2152 | */ |
| 2153 | if (ei->ScsiStatus) { |
| 2154 | dev_warn(&h->pdev->dev, "cp %p has status 0x%x " |
| 2155 | "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, " |
| 2156 | "Returning result: 0x%x\n", |
| 2157 | cp, ei->ScsiStatus, |
| 2158 | sense_key, asc, ascq, |
| 2159 | cmd->result); |
| 2160 | } else { /* scsi status is zero??? How??? */ |
| 2161 | dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. " |
| 2162 | "Returning no connection.\n", cp), |
| 2163 | |
| 2164 | /* Ordinarily, this case should never happen, |
| 2165 | * but there is a bug in some released firmware |
| 2166 | * revisions that allows it to happen if, for |
| 2167 | * example, a 4100 backplane loses power and |
| 2168 | * the tape drive is in it. We assume that |
| 2169 | * it's a fatal error of some kind because we |
| 2170 | * can't show that it wasn't. We will make it |
| 2171 | * look like selection timeout since that is |
| 2172 | * the most common reason for this to occur, |
| 2173 | * and it's severe enough. |
| 2174 | */ |
| 2175 | |
| 2176 | cmd->result = DID_NO_CONNECT << 16; |
| 2177 | } |
| 2178 | break; |
| 2179 | |
| 2180 | case CMD_DATA_UNDERRUN: /* let mid layer handle it. */ |
| 2181 | break; |
| 2182 | case CMD_DATA_OVERRUN: |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2183 | dev_warn(&h->pdev->dev, |
| 2184 | "CDB %16phN data overrun\n", cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2185 | break; |
| 2186 | case CMD_INVALID: { |
| 2187 | /* print_bytes(cp, sizeof(*cp), 1, 0); |
| 2188 | print_cmd(cp); */ |
| 2189 | /* We get CMD_INVALID if you address a non-existent device |
| 2190 | * instead of a selection timeout (no response). You will |
| 2191 | * see this if you yank out a drive, then try to access it. |
| 2192 | * This is kind of a shame because it means that any other |
| 2193 | * CMD_INVALID (e.g. driver bug) will get interpreted as a |
| 2194 | * missing target. */ |
| 2195 | cmd->result = DID_NO_CONNECT << 16; |
| 2196 | } |
| 2197 | break; |
| 2198 | case CMD_PROTOCOL_ERR: |
Stephen M. Cameron | 256d0ea | 2012-09-14 16:34:25 -0500 | [diff] [blame] | 2199 | cmd->result = DID_ERROR << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2200 | dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n", |
| 2201 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2202 | break; |
| 2203 | case CMD_HARDWARE_ERR: |
| 2204 | cmd->result = DID_ERROR << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2205 | dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n", |
| 2206 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2207 | break; |
| 2208 | case CMD_CONNECTION_LOST: |
| 2209 | cmd->result = DID_ERROR << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2210 | dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n", |
| 2211 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2212 | break; |
| 2213 | case CMD_ABORTED: |
| 2214 | cmd->result = DID_ABORT << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2215 | dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n", |
| 2216 | cp->Request.CDB, ei->ScsiStatus); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2217 | break; |
| 2218 | case CMD_ABORT_FAILED: |
| 2219 | cmd->result = DID_ERROR << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2220 | dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n", |
| 2221 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2222 | break; |
| 2223 | case CMD_UNSOLICITED_ABORT: |
Stephen M. Cameron | f6e7605 | 2011-07-26 11:08:52 -0500 | [diff] [blame] | 2224 | cmd->result = DID_SOFT_ERROR << 16; /* retry the command */ |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2225 | dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n", |
| 2226 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2227 | break; |
| 2228 | case CMD_TIMEOUT: |
| 2229 | cmd->result = DID_TIME_OUT << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2230 | dev_warn(&h->pdev->dev, "CDB %16phN timed out\n", |
| 2231 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2232 | break; |
Stephen M. Cameron | 1d5e2ed | 2011-01-07 10:55:48 -0600 | [diff] [blame] | 2233 | case CMD_UNABORTABLE: |
| 2234 | cmd->result = DID_ERROR << 16; |
| 2235 | dev_warn(&h->pdev->dev, "Command unabortable\n"); |
| 2236 | break; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2237 | case CMD_TMF_STATUS: |
| 2238 | if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */ |
| 2239 | cmd->result = DID_ERROR << 16; |
| 2240 | break; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2241 | case CMD_IOACCEL_DISABLED: |
| 2242 | /* This only handles the direct pass-through case since RAID |
| 2243 | * offload is handled above. Just attempt a retry. |
| 2244 | */ |
| 2245 | cmd->result = DID_SOFT_ERROR << 16; |
| 2246 | dev_warn(&h->pdev->dev, |
| 2247 | "cp %p had HP SSD Smart Path error\n", cp); |
| 2248 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2249 | default: |
| 2250 | cmd->result = DID_ERROR << 16; |
| 2251 | dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n", |
| 2252 | cp, ei->CommandStatus); |
| 2253 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2254 | cmd_free(h, cp); |
Tomas Henzl | 2cc5bfa | 2013-08-01 15:14:00 +0200 | [diff] [blame] | 2255 | cmd->scsi_done(cmd); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2256 | } |
| 2257 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2258 | static void hpsa_pci_unmap(struct pci_dev *pdev, |
| 2259 | struct CommandList *c, int sg_used, int data_direction) |
| 2260 | { |
| 2261 | int i; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2262 | |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2263 | for (i = 0; i < sg_used; i++) |
| 2264 | pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr), |
| 2265 | le32_to_cpu(c->SG[i].Len), |
| 2266 | data_direction); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2267 | } |
| 2268 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2269 | static int hpsa_map_one(struct pci_dev *pdev, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2270 | struct CommandList *cp, |
| 2271 | unsigned char *buf, |
| 2272 | size_t buflen, |
| 2273 | int data_direction) |
| 2274 | { |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 2275 | u64 addr64; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2276 | |
| 2277 | if (buflen == 0 || data_direction == PCI_DMA_NONE) { |
| 2278 | cp->Header.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2279 | cp->Header.SGTotal = cpu_to_le16(0); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2280 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2281 | } |
| 2282 | |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2283 | addr64 = pci_map_single(pdev, buf, buflen, data_direction); |
Shuah Khan | eceaae1 | 2013-02-20 11:24:34 -0600 | [diff] [blame] | 2284 | if (dma_mapping_error(&pdev->dev, addr64)) { |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2285 | /* Prevent subsequent unmap of something never mapped */ |
Shuah Khan | eceaae1 | 2013-02-20 11:24:34 -0600 | [diff] [blame] | 2286 | cp->Header.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2287 | cp->Header.SGTotal = cpu_to_le16(0); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2288 | return -1; |
Shuah Khan | eceaae1 | 2013-02-20 11:24:34 -0600 | [diff] [blame] | 2289 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2290 | cp->SG[0].Addr = cpu_to_le64(addr64); |
| 2291 | cp->SG[0].Len = cpu_to_le32(buflen); |
| 2292 | cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */ |
| 2293 | cp->Header.SGList = 1; /* no. SGs contig in this cmd */ |
| 2294 | cp->Header.SGTotal = cpu_to_le16(1); /* total sgs in cmd list */ |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2295 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2296 | } |
| 2297 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2298 | #define NO_TIMEOUT ((unsigned long) -1) |
| 2299 | #define DEFAULT_TIMEOUT 30000 /* milliseconds */ |
| 2300 | static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h, |
| 2301 | struct CommandList *c, int reply_queue, unsigned long timeout_msecs) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2302 | { |
| 2303 | DECLARE_COMPLETION_ONSTACK(wait); |
| 2304 | |
| 2305 | c->waiting = &wait; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2306 | __enqueue_cmd_and_start_io(h, c, reply_queue); |
| 2307 | if (timeout_msecs == NO_TIMEOUT) { |
| 2308 | /* TODO: get rid of this no-timeout thing */ |
| 2309 | wait_for_completion_io(&wait); |
| 2310 | return IO_OK; |
| 2311 | } |
| 2312 | if (!wait_for_completion_io_timeout(&wait, |
| 2313 | msecs_to_jiffies(timeout_msecs))) { |
| 2314 | dev_warn(&h->pdev->dev, "Command timed out.\n"); |
| 2315 | return -ETIMEDOUT; |
| 2316 | } |
| 2317 | return IO_OK; |
| 2318 | } |
| 2319 | |
| 2320 | static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c, |
| 2321 | int reply_queue, unsigned long timeout_msecs) |
| 2322 | { |
| 2323 | if (unlikely(lockup_detected(h))) { |
| 2324 | c->err_info->CommandStatus = CMD_CTLR_LOCKUP; |
| 2325 | return IO_OK; |
| 2326 | } |
| 2327 | return hpsa_scsi_do_simple_cmd_core(h, c, reply_queue, timeout_msecs); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2328 | } |
| 2329 | |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 2330 | static u32 lockup_detected(struct ctlr_info *h) |
| 2331 | { |
| 2332 | int cpu; |
| 2333 | u32 rc, *lockup_detected; |
| 2334 | |
| 2335 | cpu = get_cpu(); |
| 2336 | lockup_detected = per_cpu_ptr(h->lockup_detected, cpu); |
| 2337 | rc = *lockup_detected; |
| 2338 | put_cpu(); |
| 2339 | return rc; |
| 2340 | } |
| 2341 | |
Stephen M. Cameron | 9c2fc16 | 2012-05-01 11:42:40 -0500 | [diff] [blame] | 2342 | #define MAX_DRIVER_CMD_RETRIES 25 |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2343 | static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h, |
| 2344 | struct CommandList *c, int data_direction, unsigned long timeout_msecs) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2345 | { |
Stephen M. Cameron | 9c2fc16 | 2012-05-01 11:42:40 -0500 | [diff] [blame] | 2346 | int backoff_time = 10, retry_count = 0; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2347 | int rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2348 | |
| 2349 | do { |
Joe Perches | 7630abd | 2011-05-08 23:32:40 -0700 | [diff] [blame] | 2350 | memset(c->err_info, 0, sizeof(*c->err_info)); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2351 | rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, |
| 2352 | timeout_msecs); |
| 2353 | if (rc) |
| 2354 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2355 | retry_count++; |
Stephen M. Cameron | 9c2fc16 | 2012-05-01 11:42:40 -0500 | [diff] [blame] | 2356 | if (retry_count > 3) { |
| 2357 | msleep(backoff_time); |
| 2358 | if (backoff_time < 1000) |
| 2359 | backoff_time *= 2; |
| 2360 | } |
Matt Bondurant | 852af20 | 2012-05-01 11:42:35 -0500 | [diff] [blame] | 2361 | } while ((check_for_unit_attention(h, c) || |
Stephen M. Cameron | 9c2fc16 | 2012-05-01 11:42:40 -0500 | [diff] [blame] | 2362 | check_for_busy(h, c)) && |
| 2363 | retry_count <= MAX_DRIVER_CMD_RETRIES); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2364 | hpsa_pci_unmap(h->pdev, c, 1, data_direction); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2365 | if (retry_count > MAX_DRIVER_CMD_RETRIES) |
| 2366 | rc = -EIO; |
| 2367 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2368 | } |
| 2369 | |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2370 | static void hpsa_print_cmd(struct ctlr_info *h, char *txt, |
| 2371 | struct CommandList *c) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2372 | { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2373 | const u8 *cdb = c->Request.CDB; |
| 2374 | const u8 *lun = c->Header.LUN.LunAddrBytes; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2375 | |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2376 | dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x" |
| 2377 | " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 2378 | txt, lun[0], lun[1], lun[2], lun[3], |
| 2379 | lun[4], lun[5], lun[6], lun[7], |
| 2380 | cdb[0], cdb[1], cdb[2], cdb[3], |
| 2381 | cdb[4], cdb[5], cdb[6], cdb[7], |
| 2382 | cdb[8], cdb[9], cdb[10], cdb[11], |
| 2383 | cdb[12], cdb[13], cdb[14], cdb[15]); |
| 2384 | } |
| 2385 | |
| 2386 | static void hpsa_scsi_interpret_error(struct ctlr_info *h, |
| 2387 | struct CommandList *cp) |
| 2388 | { |
| 2389 | const struct ErrorInfo *ei = cp->err_info; |
| 2390 | struct device *d = &cp->h->pdev->dev; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2391 | u8 sense_key, asc, ascq; |
| 2392 | int sense_len; |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2393 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2394 | switch (ei->CommandStatus) { |
| 2395 | case CMD_TARGET_STATUS: |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2396 | if (ei->SenseLen > sizeof(ei->SenseInfo)) |
| 2397 | sense_len = sizeof(ei->SenseInfo); |
| 2398 | else |
| 2399 | sense_len = ei->SenseLen; |
| 2400 | decode_sense_data(ei->SenseInfo, sense_len, |
| 2401 | &sense_key, &asc, &ascq); |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2402 | hpsa_print_cmd(h, "SCSI status", cp); |
| 2403 | if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2404 | dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n", |
| 2405 | sense_key, asc, ascq); |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2406 | else |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2407 | dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2408 | if (ei->ScsiStatus == 0) |
| 2409 | dev_warn(d, "SCSI status is abnormally zero. " |
| 2410 | "(probably indicates selection timeout " |
| 2411 | "reported incorrectly due to a known " |
| 2412 | "firmware bug, circa July, 2001.)\n"); |
| 2413 | break; |
| 2414 | case CMD_DATA_UNDERRUN: /* let mid layer handle it. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2415 | break; |
| 2416 | case CMD_DATA_OVERRUN: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2417 | hpsa_print_cmd(h, "overrun condition", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2418 | break; |
| 2419 | case CMD_INVALID: { |
| 2420 | /* controller unfortunately reports SCSI passthru's |
| 2421 | * to non-existent targets as invalid commands. |
| 2422 | */ |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2423 | hpsa_print_cmd(h, "invalid command", cp); |
| 2424 | dev_warn(d, "probably means device no longer present\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2425 | } |
| 2426 | break; |
| 2427 | case CMD_PROTOCOL_ERR: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2428 | hpsa_print_cmd(h, "protocol error", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2429 | break; |
| 2430 | case CMD_HARDWARE_ERR: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2431 | hpsa_print_cmd(h, "hardware error", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2432 | break; |
| 2433 | case CMD_CONNECTION_LOST: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2434 | hpsa_print_cmd(h, "connection lost", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2435 | break; |
| 2436 | case CMD_ABORTED: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2437 | hpsa_print_cmd(h, "aborted", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2438 | break; |
| 2439 | case CMD_ABORT_FAILED: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2440 | hpsa_print_cmd(h, "abort failed", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2441 | break; |
| 2442 | case CMD_UNSOLICITED_ABORT: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2443 | hpsa_print_cmd(h, "unsolicited abort", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2444 | break; |
| 2445 | case CMD_TIMEOUT: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2446 | hpsa_print_cmd(h, "timed out", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2447 | break; |
Stephen M. Cameron | 1d5e2ed | 2011-01-07 10:55:48 -0600 | [diff] [blame] | 2448 | case CMD_UNABORTABLE: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2449 | hpsa_print_cmd(h, "unabortable", cp); |
Stephen M. Cameron | 1d5e2ed | 2011-01-07 10:55:48 -0600 | [diff] [blame] | 2450 | break; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2451 | case CMD_CTLR_LOCKUP: |
| 2452 | hpsa_print_cmd(h, "controller lockup detected", cp); |
| 2453 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2454 | default: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2455 | hpsa_print_cmd(h, "unknown status", cp); |
| 2456 | dev_warn(d, "Unknown command status %x\n", |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2457 | ei->CommandStatus); |
| 2458 | } |
| 2459 | } |
| 2460 | |
| 2461 | static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr, |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 2462 | u16 page, unsigned char *buf, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2463 | unsigned char bufsize) |
| 2464 | { |
| 2465 | int rc = IO_OK; |
| 2466 | struct CommandList *c; |
| 2467 | struct ErrorInfo *ei; |
| 2468 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2469 | c = cmd_alloc(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2470 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2471 | if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize, |
| 2472 | page, scsi3addr, TYPE_CMD)) { |
| 2473 | rc = -1; |
| 2474 | goto out; |
| 2475 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2476 | rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, |
| 2477 | PCI_DMA_FROMDEVICE, NO_TIMEOUT); |
| 2478 | if (rc) |
| 2479 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2480 | ei = c->err_info; |
| 2481 | if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2482 | hpsa_scsi_interpret_error(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2483 | rc = -1; |
| 2484 | } |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2485 | out: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2486 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2487 | return rc; |
| 2488 | } |
| 2489 | |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 2490 | static int hpsa_bmic_ctrl_mode_sense(struct ctlr_info *h, |
| 2491 | unsigned char *scsi3addr, unsigned char page, |
| 2492 | struct bmic_controller_parameters *buf, size_t bufsize) |
| 2493 | { |
| 2494 | int rc = IO_OK; |
| 2495 | struct CommandList *c; |
| 2496 | struct ErrorInfo *ei; |
| 2497 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2498 | c = cmd_alloc(h); |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 2499 | if (fill_cmd(c, BMIC_SENSE_CONTROLLER_PARAMETERS, h, buf, bufsize, |
| 2500 | page, scsi3addr, TYPE_CMD)) { |
| 2501 | rc = -1; |
| 2502 | goto out; |
| 2503 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2504 | rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, |
| 2505 | PCI_DMA_FROMDEVICE, NO_TIMEOUT); |
| 2506 | if (rc) |
| 2507 | goto out; |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 2508 | ei = c->err_info; |
| 2509 | if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) { |
| 2510 | hpsa_scsi_interpret_error(h, c); |
| 2511 | rc = -1; |
| 2512 | } |
| 2513 | out: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2514 | cmd_free(h, c); |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 2515 | return rc; |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 2516 | } |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 2517 | |
Scott Teel | bf711ac | 2014-02-18 13:56:39 -0600 | [diff] [blame] | 2518 | static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2519 | u8 reset_type, int reply_queue) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2520 | { |
| 2521 | int rc = IO_OK; |
| 2522 | struct CommandList *c; |
| 2523 | struct ErrorInfo *ei; |
| 2524 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2525 | c = cmd_alloc(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2526 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2527 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2528 | /* fill_cmd can't fail here, no data buffer to map. */ |
Scott Teel | bf711ac | 2014-02-18 13:56:39 -0600 | [diff] [blame] | 2529 | (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0, |
| 2530 | scsi3addr, TYPE_MSG); |
| 2531 | c->Request.CDB[1] = reset_type; /* fill_cmd defaults to LUN reset */ |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2532 | rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT); |
| 2533 | if (rc) { |
| 2534 | dev_warn(&h->pdev->dev, "Failed to send reset command\n"); |
| 2535 | goto out; |
| 2536 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2537 | /* no unmap needed here because no data xfer. */ |
| 2538 | |
| 2539 | ei = c->err_info; |
| 2540 | if (ei->CommandStatus != 0) { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2541 | hpsa_scsi_interpret_error(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2542 | rc = -1; |
| 2543 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2544 | out: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2545 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2546 | return rc; |
| 2547 | } |
| 2548 | |
| 2549 | static void hpsa_get_raid_level(struct ctlr_info *h, |
| 2550 | unsigned char *scsi3addr, unsigned char *raid_level) |
| 2551 | { |
| 2552 | int rc; |
| 2553 | unsigned char *buf; |
| 2554 | |
| 2555 | *raid_level = RAID_UNKNOWN; |
| 2556 | buf = kzalloc(64, GFP_KERNEL); |
| 2557 | if (!buf) |
| 2558 | return; |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 2559 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0xC1, buf, 64); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2560 | if (rc == 0) |
| 2561 | *raid_level = buf[8]; |
| 2562 | if (*raid_level > RAID_UNKNOWN) |
| 2563 | *raid_level = RAID_UNKNOWN; |
| 2564 | kfree(buf); |
| 2565 | return; |
| 2566 | } |
| 2567 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2568 | #define HPSA_MAP_DEBUG |
| 2569 | #ifdef HPSA_MAP_DEBUG |
| 2570 | static void hpsa_debug_map_buff(struct ctlr_info *h, int rc, |
| 2571 | struct raid_map_data *map_buff) |
| 2572 | { |
| 2573 | struct raid_map_disk_data *dd = &map_buff->data[0]; |
| 2574 | int map, row, col; |
| 2575 | u16 map_cnt, row_cnt, disks_per_row; |
| 2576 | |
| 2577 | if (rc != 0) |
| 2578 | return; |
| 2579 | |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 2580 | /* Show details only if debugging has been activated. */ |
| 2581 | if (h->raid_offload_debug < 2) |
| 2582 | return; |
| 2583 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2584 | dev_info(&h->pdev->dev, "structure_size = %u\n", |
| 2585 | le32_to_cpu(map_buff->structure_size)); |
| 2586 | dev_info(&h->pdev->dev, "volume_blk_size = %u\n", |
| 2587 | le32_to_cpu(map_buff->volume_blk_size)); |
| 2588 | dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n", |
| 2589 | le64_to_cpu(map_buff->volume_blk_cnt)); |
| 2590 | dev_info(&h->pdev->dev, "physicalBlockShift = %u\n", |
| 2591 | map_buff->phys_blk_shift); |
| 2592 | dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n", |
| 2593 | map_buff->parity_rotation_shift); |
| 2594 | dev_info(&h->pdev->dev, "strip_size = %u\n", |
| 2595 | le16_to_cpu(map_buff->strip_size)); |
| 2596 | dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n", |
| 2597 | le64_to_cpu(map_buff->disk_starting_blk)); |
| 2598 | dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n", |
| 2599 | le64_to_cpu(map_buff->disk_blk_cnt)); |
| 2600 | dev_info(&h->pdev->dev, "data_disks_per_row = %u\n", |
| 2601 | le16_to_cpu(map_buff->data_disks_per_row)); |
| 2602 | dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n", |
| 2603 | le16_to_cpu(map_buff->metadata_disks_per_row)); |
| 2604 | dev_info(&h->pdev->dev, "row_cnt = %u\n", |
| 2605 | le16_to_cpu(map_buff->row_cnt)); |
| 2606 | dev_info(&h->pdev->dev, "layout_map_count = %u\n", |
| 2607 | le16_to_cpu(map_buff->layout_map_count)); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 2608 | dev_info(&h->pdev->dev, "flags = 0x%x\n", |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 2609 | le16_to_cpu(map_buff->flags)); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 2610 | dev_info(&h->pdev->dev, "encrypytion = %s\n", |
| 2611 | le16_to_cpu(map_buff->flags) & |
| 2612 | RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF"); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 2613 | dev_info(&h->pdev->dev, "dekindex = %u\n", |
| 2614 | le16_to_cpu(map_buff->dekindex)); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2615 | map_cnt = le16_to_cpu(map_buff->layout_map_count); |
| 2616 | for (map = 0; map < map_cnt; map++) { |
| 2617 | dev_info(&h->pdev->dev, "Map%u:\n", map); |
| 2618 | row_cnt = le16_to_cpu(map_buff->row_cnt); |
| 2619 | for (row = 0; row < row_cnt; row++) { |
| 2620 | dev_info(&h->pdev->dev, " Row%u:\n", row); |
| 2621 | disks_per_row = |
| 2622 | le16_to_cpu(map_buff->data_disks_per_row); |
| 2623 | for (col = 0; col < disks_per_row; col++, dd++) |
| 2624 | dev_info(&h->pdev->dev, |
| 2625 | " D%02u: h=0x%04x xor=%u,%u\n", |
| 2626 | col, dd->ioaccel_handle, |
| 2627 | dd->xor_mult[0], dd->xor_mult[1]); |
| 2628 | disks_per_row = |
| 2629 | le16_to_cpu(map_buff->metadata_disks_per_row); |
| 2630 | for (col = 0; col < disks_per_row; col++, dd++) |
| 2631 | dev_info(&h->pdev->dev, |
| 2632 | " M%02u: h=0x%04x xor=%u,%u\n", |
| 2633 | col, dd->ioaccel_handle, |
| 2634 | dd->xor_mult[0], dd->xor_mult[1]); |
| 2635 | } |
| 2636 | } |
| 2637 | } |
| 2638 | #else |
| 2639 | static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h, |
| 2640 | __attribute__((unused)) int rc, |
| 2641 | __attribute__((unused)) struct raid_map_data *map_buff) |
| 2642 | { |
| 2643 | } |
| 2644 | #endif |
| 2645 | |
| 2646 | static int hpsa_get_raid_map(struct ctlr_info *h, |
| 2647 | unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device) |
| 2648 | { |
| 2649 | int rc = 0; |
| 2650 | struct CommandList *c; |
| 2651 | struct ErrorInfo *ei; |
| 2652 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2653 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 2654 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2655 | if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map, |
| 2656 | sizeof(this_device->raid_map), 0, |
| 2657 | scsi3addr, TYPE_CMD)) { |
Robert Elliott | 2dd02d7 | 2015-04-23 09:33:43 -0500 | [diff] [blame] | 2658 | dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n"); |
| 2659 | cmd_free(h, c); |
| 2660 | return -1; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2661 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2662 | rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, |
| 2663 | PCI_DMA_FROMDEVICE, NO_TIMEOUT); |
| 2664 | if (rc) |
| 2665 | goto out; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2666 | ei = c->err_info; |
| 2667 | if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2668 | hpsa_scsi_interpret_error(h, c); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2669 | rc = -1; |
| 2670 | goto out; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2671 | } |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2672 | cmd_free(h, c); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2673 | |
| 2674 | /* @todo in the future, dynamically allocate RAID map memory */ |
| 2675 | if (le32_to_cpu(this_device->raid_map.structure_size) > |
| 2676 | sizeof(this_device->raid_map)) { |
| 2677 | dev_warn(&h->pdev->dev, "RAID map size is too large!\n"); |
| 2678 | rc = -1; |
| 2679 | } |
| 2680 | hpsa_debug_map_buff(h, rc, &this_device->raid_map); |
| 2681 | return rc; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2682 | out: |
| 2683 | cmd_free(h, c); |
| 2684 | return rc; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2685 | } |
| 2686 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2687 | static int hpsa_bmic_id_physical_device(struct ctlr_info *h, |
| 2688 | unsigned char scsi3addr[], u16 bmic_device_index, |
| 2689 | struct bmic_identify_physical_device *buf, size_t bufsize) |
| 2690 | { |
| 2691 | int rc = IO_OK; |
| 2692 | struct CommandList *c; |
| 2693 | struct ErrorInfo *ei; |
| 2694 | |
| 2695 | c = cmd_alloc(h); |
| 2696 | rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize, |
| 2697 | 0, RAID_CTLR_LUNID, TYPE_CMD); |
| 2698 | if (rc) |
| 2699 | goto out; |
| 2700 | |
| 2701 | c->Request.CDB[2] = bmic_device_index & 0xff; |
| 2702 | c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff; |
| 2703 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2704 | hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE, |
| 2705 | NO_TIMEOUT); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2706 | ei = c->err_info; |
| 2707 | if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) { |
| 2708 | hpsa_scsi_interpret_error(h, c); |
| 2709 | rc = -1; |
| 2710 | } |
| 2711 | out: |
| 2712 | cmd_free(h, c); |
| 2713 | return rc; |
| 2714 | } |
| 2715 | |
Stephen M. Cameron | 1b70150a | 2014-02-18 13:57:16 -0600 | [diff] [blame] | 2716 | static int hpsa_vpd_page_supported(struct ctlr_info *h, |
| 2717 | unsigned char scsi3addr[], u8 page) |
| 2718 | { |
| 2719 | int rc; |
| 2720 | int i; |
| 2721 | int pages; |
| 2722 | unsigned char *buf, bufsize; |
| 2723 | |
| 2724 | buf = kzalloc(256, GFP_KERNEL); |
| 2725 | if (!buf) |
| 2726 | return 0; |
| 2727 | |
| 2728 | /* Get the size of the page list first */ |
| 2729 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, |
| 2730 | VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES, |
| 2731 | buf, HPSA_VPD_HEADER_SZ); |
| 2732 | if (rc != 0) |
| 2733 | goto exit_unsupported; |
| 2734 | pages = buf[3]; |
| 2735 | if ((pages + HPSA_VPD_HEADER_SZ) <= 255) |
| 2736 | bufsize = pages + HPSA_VPD_HEADER_SZ; |
| 2737 | else |
| 2738 | bufsize = 255; |
| 2739 | |
| 2740 | /* Get the whole VPD page list */ |
| 2741 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, |
| 2742 | VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES, |
| 2743 | buf, bufsize); |
| 2744 | if (rc != 0) |
| 2745 | goto exit_unsupported; |
| 2746 | |
| 2747 | pages = buf[3]; |
| 2748 | for (i = 1; i <= pages; i++) |
| 2749 | if (buf[3 + i] == page) |
| 2750 | goto exit_supported; |
| 2751 | exit_unsupported: |
| 2752 | kfree(buf); |
| 2753 | return 0; |
| 2754 | exit_supported: |
| 2755 | kfree(buf); |
| 2756 | return 1; |
| 2757 | } |
| 2758 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2759 | static void hpsa_get_ioaccel_status(struct ctlr_info *h, |
| 2760 | unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device) |
| 2761 | { |
| 2762 | int rc; |
| 2763 | unsigned char *buf; |
| 2764 | u8 ioaccel_status; |
| 2765 | |
| 2766 | this_device->offload_config = 0; |
| 2767 | this_device->offload_enabled = 0; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 2768 | this_device->offload_to_be_enabled = 0; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2769 | |
| 2770 | buf = kzalloc(64, GFP_KERNEL); |
| 2771 | if (!buf) |
| 2772 | return; |
Stephen M. Cameron | 1b70150a | 2014-02-18 13:57:16 -0600 | [diff] [blame] | 2773 | if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS)) |
| 2774 | goto out; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2775 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 2776 | VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2777 | if (rc != 0) |
| 2778 | goto out; |
| 2779 | |
| 2780 | #define IOACCEL_STATUS_BYTE 4 |
| 2781 | #define OFFLOAD_CONFIGURED_BIT 0x01 |
| 2782 | #define OFFLOAD_ENABLED_BIT 0x02 |
| 2783 | ioaccel_status = buf[IOACCEL_STATUS_BYTE]; |
| 2784 | this_device->offload_config = |
| 2785 | !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT); |
| 2786 | if (this_device->offload_config) { |
| 2787 | this_device->offload_enabled = |
| 2788 | !!(ioaccel_status & OFFLOAD_ENABLED_BIT); |
| 2789 | if (hpsa_get_raid_map(h, scsi3addr, this_device)) |
| 2790 | this_device->offload_enabled = 0; |
| 2791 | } |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 2792 | this_device->offload_to_be_enabled = this_device->offload_enabled; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2793 | out: |
| 2794 | kfree(buf); |
| 2795 | return; |
| 2796 | } |
| 2797 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2798 | /* Get the device id from inquiry page 0x83 */ |
| 2799 | static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr, |
| 2800 | unsigned char *device_id, int buflen) |
| 2801 | { |
| 2802 | int rc; |
| 2803 | unsigned char *buf; |
| 2804 | |
| 2805 | if (buflen > 16) |
| 2806 | buflen = 16; |
| 2807 | buf = kzalloc(64, GFP_KERNEL); |
| 2808 | if (!buf) |
Stephen M. Cameron | a84d794 | 2014-05-29 10:54:20 -0500 | [diff] [blame] | 2809 | return -ENOMEM; |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 2810 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | 0x83, buf, 64); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2811 | if (rc == 0) |
| 2812 | memcpy(device_id, &buf[8], buflen); |
| 2813 | kfree(buf); |
| 2814 | return rc != 0; |
| 2815 | } |
| 2816 | |
| 2817 | static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2818 | void *buf, int bufsize, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2819 | int extended_response) |
| 2820 | { |
| 2821 | int rc = IO_OK; |
| 2822 | struct CommandList *c; |
| 2823 | unsigned char scsi3addr[8]; |
| 2824 | struct ErrorInfo *ei; |
| 2825 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2826 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 2827 | |
Stephen M. Cameron | e89c0ae | 2010-02-04 08:42:04 -0600 | [diff] [blame] | 2828 | /* address the controller */ |
| 2829 | memset(scsi3addr, 0, sizeof(scsi3addr)); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2830 | if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h, |
| 2831 | buf, bufsize, 0, scsi3addr, TYPE_CMD)) { |
| 2832 | rc = -1; |
| 2833 | goto out; |
| 2834 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2835 | if (extended_response) |
| 2836 | c->Request.CDB[1] = extended_response; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2837 | rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, |
| 2838 | PCI_DMA_FROMDEVICE, NO_TIMEOUT); |
| 2839 | if (rc) |
| 2840 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2841 | ei = c->err_info; |
| 2842 | if (ei->CommandStatus != 0 && |
| 2843 | ei->CommandStatus != CMD_DATA_UNDERRUN) { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2844 | hpsa_scsi_interpret_error(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2845 | rc = -1; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2846 | } else { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2847 | struct ReportLUNdata *rld = buf; |
| 2848 | |
| 2849 | if (rld->extended_response_flag != extended_response) { |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2850 | dev_err(&h->pdev->dev, |
| 2851 | "report luns requested format %u, got %u\n", |
| 2852 | extended_response, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2853 | rld->extended_response_flag); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2854 | rc = -1; |
| 2855 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2856 | } |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2857 | out: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2858 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2859 | return rc; |
| 2860 | } |
| 2861 | |
| 2862 | static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2863 | struct ReportExtendedLUNdata *buf, int bufsize) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2864 | { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2865 | return hpsa_scsi_do_report_luns(h, 0, buf, bufsize, |
| 2866 | HPSA_REPORT_PHYS_EXTENDED); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2867 | } |
| 2868 | |
| 2869 | static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h, |
| 2870 | struct ReportLUNdata *buf, int bufsize) |
| 2871 | { |
| 2872 | return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0); |
| 2873 | } |
| 2874 | |
| 2875 | static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device, |
| 2876 | int bus, int target, int lun) |
| 2877 | { |
| 2878 | device->bus = bus; |
| 2879 | device->target = target; |
| 2880 | device->lun = lun; |
| 2881 | } |
| 2882 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2883 | /* Use VPD inquiry to get details of volume status */ |
| 2884 | static int hpsa_get_volume_status(struct ctlr_info *h, |
| 2885 | unsigned char scsi3addr[]) |
| 2886 | { |
| 2887 | int rc; |
| 2888 | int status; |
| 2889 | int size; |
| 2890 | unsigned char *buf; |
| 2891 | |
| 2892 | buf = kzalloc(64, GFP_KERNEL); |
| 2893 | if (!buf) |
| 2894 | return HPSA_VPD_LV_STATUS_UNSUPPORTED; |
| 2895 | |
| 2896 | /* Does controller have VPD for logical volume status? */ |
Stephen M. Cameron | 24a4b07 | 2014-05-29 10:54:10 -0500 | [diff] [blame] | 2897 | if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS)) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2898 | goto exit_failed; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2899 | |
| 2900 | /* Get the size of the VPD return buffer */ |
| 2901 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS, |
| 2902 | buf, HPSA_VPD_HEADER_SZ); |
Stephen M. Cameron | 24a4b07 | 2014-05-29 10:54:10 -0500 | [diff] [blame] | 2903 | if (rc != 0) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2904 | goto exit_failed; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2905 | size = buf[3]; |
| 2906 | |
| 2907 | /* Now get the whole VPD buffer */ |
| 2908 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS, |
| 2909 | buf, size + HPSA_VPD_HEADER_SZ); |
Stephen M. Cameron | 24a4b07 | 2014-05-29 10:54:10 -0500 | [diff] [blame] | 2910 | if (rc != 0) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2911 | goto exit_failed; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2912 | status = buf[4]; /* status byte */ |
| 2913 | |
| 2914 | kfree(buf); |
| 2915 | return status; |
| 2916 | exit_failed: |
| 2917 | kfree(buf); |
| 2918 | return HPSA_VPD_LV_STATUS_UNSUPPORTED; |
| 2919 | } |
| 2920 | |
| 2921 | /* Determine offline status of a volume. |
| 2922 | * Return either: |
| 2923 | * 0 (not offline) |
Stephen M. Cameron | 67955ba | 2014-05-29 10:54:25 -0500 | [diff] [blame] | 2924 | * 0xff (offline for unknown reasons) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2925 | * # (integer code indicating one of several NOT READY states |
| 2926 | * describing why a volume is to be kept offline) |
| 2927 | */ |
Stephen M. Cameron | 67955ba | 2014-05-29 10:54:25 -0500 | [diff] [blame] | 2928 | static int hpsa_volume_offline(struct ctlr_info *h, |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2929 | unsigned char scsi3addr[]) |
| 2930 | { |
| 2931 | struct CommandList *c; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2932 | unsigned char *sense; |
| 2933 | u8 sense_key, asc, ascq; |
| 2934 | int sense_len; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2935 | int rc, ldstat = 0; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2936 | u16 cmd_status; |
| 2937 | u8 scsi_status; |
| 2938 | #define ASC_LUN_NOT_READY 0x04 |
| 2939 | #define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04 |
| 2940 | #define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02 |
| 2941 | |
| 2942 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 2943 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2944 | (void) fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, scsi3addr, TYPE_CMD); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2945 | rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT); |
| 2946 | if (rc) { |
| 2947 | cmd_free(h, c); |
| 2948 | return 0; |
| 2949 | } |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2950 | sense = c->err_info->SenseInfo; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2951 | if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo)) |
| 2952 | sense_len = sizeof(c->err_info->SenseInfo); |
| 2953 | else |
| 2954 | sense_len = c->err_info->SenseLen; |
| 2955 | decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 2956 | cmd_status = c->err_info->CommandStatus; |
| 2957 | scsi_status = c->err_info->ScsiStatus; |
| 2958 | cmd_free(h, c); |
| 2959 | /* Is the volume 'not ready'? */ |
| 2960 | if (cmd_status != CMD_TARGET_STATUS || |
| 2961 | scsi_status != SAM_STAT_CHECK_CONDITION || |
| 2962 | sense_key != NOT_READY || |
| 2963 | asc != ASC_LUN_NOT_READY) { |
| 2964 | return 0; |
| 2965 | } |
| 2966 | |
| 2967 | /* Determine the reason for not ready state */ |
| 2968 | ldstat = hpsa_get_volume_status(h, scsi3addr); |
| 2969 | |
| 2970 | /* Keep volume offline in certain cases: */ |
| 2971 | switch (ldstat) { |
| 2972 | case HPSA_LV_UNDERGOING_ERASE: |
| 2973 | case HPSA_LV_UNDERGOING_RPI: |
| 2974 | case HPSA_LV_PENDING_RPI: |
| 2975 | case HPSA_LV_ENCRYPTED_NO_KEY: |
| 2976 | case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER: |
| 2977 | case HPSA_LV_UNDERGOING_ENCRYPTION: |
| 2978 | case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING: |
| 2979 | case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER: |
| 2980 | return ldstat; |
| 2981 | case HPSA_VPD_LV_STATUS_UNSUPPORTED: |
| 2982 | /* If VPD status page isn't available, |
| 2983 | * use ASC/ASCQ to determine state |
| 2984 | */ |
| 2985 | if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) || |
| 2986 | (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ)) |
| 2987 | return ldstat; |
| 2988 | break; |
| 2989 | default: |
| 2990 | break; |
| 2991 | } |
| 2992 | return 0; |
| 2993 | } |
| 2994 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 2995 | /* |
| 2996 | * Find out if a logical device supports aborts by simply trying one. |
| 2997 | * Smart Array may claim not to support aborts on logical drives, but |
| 2998 | * if a MSA2000 * is connected, the drives on that will be presented |
| 2999 | * by the Smart Array as logical drives, and aborts may be sent to |
| 3000 | * those devices successfully. So the simplest way to find out is |
| 3001 | * to simply try an abort and see how the device responds. |
| 3002 | */ |
| 3003 | static int hpsa_device_supports_aborts(struct ctlr_info *h, |
| 3004 | unsigned char *scsi3addr) |
| 3005 | { |
| 3006 | struct CommandList *c; |
| 3007 | struct ErrorInfo *ei; |
| 3008 | int rc = 0; |
| 3009 | |
| 3010 | u64 tag = (u64) -1; /* bogus tag */ |
| 3011 | |
| 3012 | /* Assume that physical devices support aborts */ |
| 3013 | if (!is_logical_dev_addr_mode(scsi3addr)) |
| 3014 | return 1; |
| 3015 | |
| 3016 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 3017 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3018 | (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG); |
| 3019 | (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT); |
| 3020 | /* no unmap needed here because no data xfer. */ |
| 3021 | ei = c->err_info; |
| 3022 | switch (ei->CommandStatus) { |
| 3023 | case CMD_INVALID: |
| 3024 | rc = 0; |
| 3025 | break; |
| 3026 | case CMD_UNABORTABLE: |
| 3027 | case CMD_ABORT_FAILED: |
| 3028 | rc = 1; |
| 3029 | break; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 3030 | case CMD_TMF_STATUS: |
| 3031 | rc = hpsa_evaluate_tmf_status(h, c); |
| 3032 | break; |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3033 | default: |
| 3034 | rc = 0; |
| 3035 | break; |
| 3036 | } |
| 3037 | cmd_free(h, c); |
| 3038 | return rc; |
| 3039 | } |
| 3040 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3041 | static int hpsa_update_device_info(struct ctlr_info *h, |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3042 | unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device, |
| 3043 | unsigned char *is_OBDR_device) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3044 | { |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3045 | |
| 3046 | #define OBDR_SIG_OFFSET 43 |
| 3047 | #define OBDR_TAPE_SIG "$DR-10" |
| 3048 | #define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1) |
| 3049 | #define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN) |
| 3050 | |
Stephen M. Cameron | ea6d3bc | 2010-02-04 08:42:09 -0600 | [diff] [blame] | 3051 | unsigned char *inq_buff; |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3052 | unsigned char *obdr_sig; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3053 | |
Stephen M. Cameron | ea6d3bc | 2010-02-04 08:42:09 -0600 | [diff] [blame] | 3054 | inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3055 | if (!inq_buff) |
| 3056 | goto bail_out; |
| 3057 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3058 | /* Do an inquiry to the device to see what it is. */ |
| 3059 | if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff, |
| 3060 | (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) { |
| 3061 | /* Inquiry failed (msg printed already) */ |
| 3062 | dev_err(&h->pdev->dev, |
| 3063 | "hpsa_update_device_info: inquiry failed\n"); |
| 3064 | goto bail_out; |
| 3065 | } |
| 3066 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3067 | this_device->devtype = (inq_buff[0] & 0x1f); |
| 3068 | memcpy(this_device->scsi3addr, scsi3addr, 8); |
| 3069 | memcpy(this_device->vendor, &inq_buff[8], |
| 3070 | sizeof(this_device->vendor)); |
| 3071 | memcpy(this_device->model, &inq_buff[16], |
| 3072 | sizeof(this_device->model)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3073 | memset(this_device->device_id, 0, |
| 3074 | sizeof(this_device->device_id)); |
| 3075 | hpsa_get_device_id(h, scsi3addr, this_device->device_id, |
| 3076 | sizeof(this_device->device_id)); |
| 3077 | |
| 3078 | if (this_device->devtype == TYPE_DISK && |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3079 | is_logical_dev_addr_mode(scsi3addr)) { |
Stephen M. Cameron | 67955ba | 2014-05-29 10:54:25 -0500 | [diff] [blame] | 3080 | int volume_offline; |
| 3081 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3082 | hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3083 | if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC) |
| 3084 | hpsa_get_ioaccel_status(h, scsi3addr, this_device); |
Stephen M. Cameron | 67955ba | 2014-05-29 10:54:25 -0500 | [diff] [blame] | 3085 | volume_offline = hpsa_volume_offline(h, scsi3addr); |
| 3086 | if (volume_offline < 0 || volume_offline > 0xff) |
| 3087 | volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED; |
| 3088 | this_device->volume_offline = volume_offline & 0xff; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3089 | } else { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3090 | this_device->raid_level = RAID_UNKNOWN; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3091 | this_device->offload_config = 0; |
| 3092 | this_device->offload_enabled = 0; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3093 | this_device->offload_to_be_enabled = 0; |
Joe Handzik | a3144e0 | 2015-04-23 09:32:59 -0500 | [diff] [blame] | 3094 | this_device->hba_ioaccel_enabled = 0; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3095 | this_device->volume_offline = 0; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3096 | this_device->queue_depth = h->nr_cmds; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3097 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3098 | |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3099 | if (is_OBDR_device) { |
| 3100 | /* See if this is a One-Button-Disaster-Recovery device |
| 3101 | * by looking for "$DR-10" at offset 43 in inquiry data. |
| 3102 | */ |
| 3103 | obdr_sig = &inq_buff[OBDR_SIG_OFFSET]; |
| 3104 | *is_OBDR_device = (this_device->devtype == TYPE_ROM && |
| 3105 | strncmp(obdr_sig, OBDR_TAPE_SIG, |
| 3106 | OBDR_SIG_LEN) == 0); |
| 3107 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3108 | kfree(inq_buff); |
| 3109 | return 0; |
| 3110 | |
| 3111 | bail_out: |
| 3112 | kfree(inq_buff); |
| 3113 | return 1; |
| 3114 | } |
| 3115 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3116 | static void hpsa_update_device_supports_aborts(struct ctlr_info *h, |
| 3117 | struct hpsa_scsi_dev_t *dev, u8 *scsi3addr) |
| 3118 | { |
| 3119 | unsigned long flags; |
| 3120 | int rc, entry; |
| 3121 | /* |
| 3122 | * See if this device supports aborts. If we already know |
| 3123 | * the device, we already know if it supports aborts, otherwise |
| 3124 | * we have to find out if it supports aborts by trying one. |
| 3125 | */ |
| 3126 | spin_lock_irqsave(&h->devlock, flags); |
| 3127 | rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry); |
| 3128 | if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) && |
| 3129 | entry >= 0 && entry < h->ndevices) { |
| 3130 | dev->supports_aborts = h->dev[entry]->supports_aborts; |
| 3131 | spin_unlock_irqrestore(&h->devlock, flags); |
| 3132 | } else { |
| 3133 | spin_unlock_irqrestore(&h->devlock, flags); |
| 3134 | dev->supports_aborts = |
| 3135 | hpsa_device_supports_aborts(h, scsi3addr); |
| 3136 | if (dev->supports_aborts < 0) |
| 3137 | dev->supports_aborts = 0; |
| 3138 | } |
| 3139 | } |
| 3140 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3141 | static unsigned char *ext_target_model[] = { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3142 | "MSA2012", |
| 3143 | "MSA2024", |
| 3144 | "MSA2312", |
| 3145 | "MSA2324", |
Stephen M. Cameron | fda3851 | 2011-05-03 15:00:07 -0500 | [diff] [blame] | 3146 | "P2000 G3 SAS", |
Stephen M. Cameron | e06c8e5 | 2013-09-23 13:33:56 -0500 | [diff] [blame] | 3147 | "MSA 2040 SAS", |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3148 | NULL, |
| 3149 | }; |
| 3150 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3151 | static int is_ext_target(struct ctlr_info *h, struct hpsa_scsi_dev_t *device) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3152 | { |
| 3153 | int i; |
| 3154 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3155 | for (i = 0; ext_target_model[i]; i++) |
| 3156 | if (strncmp(device->model, ext_target_model[i], |
| 3157 | strlen(ext_target_model[i])) == 0) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3158 | return 1; |
| 3159 | return 0; |
| 3160 | } |
| 3161 | |
| 3162 | /* Helper function to assign bus, target, lun mapping of devices. |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3163 | * Puts non-external target logical volumes on bus 0, external target logical |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3164 | * volumes on bus 1, physical devices on bus 2. and the hba on bus 3. |
| 3165 | * Logical drive target and lun are assigned at this time, but |
| 3166 | * physical device lun and target assignment are deferred (assigned |
| 3167 | * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.) |
| 3168 | */ |
| 3169 | static void figure_bus_target_lun(struct ctlr_info *h, |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3170 | u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3171 | { |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3172 | u32 lunid = le32_to_cpu(*((__le32 *) lunaddrbytes)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3173 | |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3174 | if (!is_logical_dev_addr_mode(lunaddrbytes)) { |
| 3175 | /* physical device, target and lun filled in later */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3176 | if (is_hba_lunid(lunaddrbytes)) |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3177 | hpsa_set_bus_target_lun(device, 3, 0, lunid & 0x3fff); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3178 | else |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3179 | /* defer target, lun assignment for physical devices */ |
| 3180 | hpsa_set_bus_target_lun(device, 2, -1, -1); |
| 3181 | return; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3182 | } |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3183 | /* It's a logical device */ |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3184 | if (is_ext_target(h, device)) { |
| 3185 | /* external target way, put logicals on bus 1 |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3186 | * and match target/lun numbers box |
| 3187 | * reports, other smart array, bus 0, target 0, match lunid |
| 3188 | */ |
| 3189 | hpsa_set_bus_target_lun(device, |
| 3190 | 1, (lunid >> 16) & 0x3fff, lunid & 0x00ff); |
| 3191 | return; |
| 3192 | } |
| 3193 | hpsa_set_bus_target_lun(device, 0, 0, lunid & 0x3fff); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3194 | } |
| 3195 | |
| 3196 | /* |
| 3197 | * If there is no lun 0 on a target, linux won't find any devices. |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3198 | * For the external targets (arrays), we have to manually detect the enclosure |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3199 | * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report |
| 3200 | * it for some reason. *tmpdevice is the target we're adding, |
| 3201 | * this_device is a pointer into the current element of currentsd[] |
| 3202 | * that we're building up in update_scsi_devices(), below. |
| 3203 | * lunzerobits is a bitmap that tracks which targets already have a |
| 3204 | * lun 0 assigned. |
| 3205 | * Returns 1 if an enclosure was added, 0 if not. |
| 3206 | */ |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3207 | static int add_ext_target_dev(struct ctlr_info *h, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3208 | struct hpsa_scsi_dev_t *tmpdevice, |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 3209 | struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes, |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3210 | unsigned long lunzerobits[], int *n_ext_target_devs) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3211 | { |
| 3212 | unsigned char scsi3addr[8]; |
| 3213 | |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3214 | if (test_bit(tmpdevice->target, lunzerobits)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3215 | return 0; /* There is already a lun 0 on this target. */ |
| 3216 | |
| 3217 | if (!is_logical_dev_addr_mode(lunaddrbytes)) |
| 3218 | return 0; /* It's the logical targets that may lack lun 0. */ |
| 3219 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3220 | if (!is_ext_target(h, tmpdevice)) |
| 3221 | return 0; /* Only external target devices have this problem. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3222 | |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3223 | if (tmpdevice->lun == 0) /* if lun is 0, then we have a lun 0. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3224 | return 0; |
| 3225 | |
Stephen M. Cameron | c4f8a29 | 2011-01-07 10:55:43 -0600 | [diff] [blame] | 3226 | memset(scsi3addr, 0, 8); |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3227 | scsi3addr[3] = tmpdevice->target; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3228 | if (is_hba_lunid(scsi3addr)) |
| 3229 | return 0; /* Don't add the RAID controller here. */ |
| 3230 | |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3231 | if (is_scsi_rev_5(h)) |
| 3232 | return 0; /* p1210m doesn't need to do this. */ |
| 3233 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3234 | if (*n_ext_target_devs >= MAX_EXT_TARGETS) { |
Scott Teel | aca4a52 | 2012-01-19 14:01:19 -0600 | [diff] [blame] | 3235 | dev_warn(&h->pdev->dev, "Maximum number of external " |
| 3236 | "target devices exceeded. Check your hardware " |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3237 | "configuration."); |
| 3238 | return 0; |
| 3239 | } |
| 3240 | |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3241 | if (hpsa_update_device_info(h, scsi3addr, this_device, NULL)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3242 | return 0; |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3243 | (*n_ext_target_devs)++; |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3244 | hpsa_set_bus_target_lun(this_device, |
| 3245 | tmpdevice->bus, tmpdevice->target, 0); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3246 | hpsa_update_device_supports_aborts(h, this_device, scsi3addr); |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3247 | set_bit(tmpdevice->target, lunzerobits); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3248 | return 1; |
| 3249 | } |
| 3250 | |
| 3251 | /* |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3252 | * Get address of physical disk used for an ioaccel2 mode command: |
| 3253 | * 1. Extract ioaccel2 handle from the command. |
| 3254 | * 2. Find a matching ioaccel2 handle from list of physical disks. |
| 3255 | * 3. Return: |
| 3256 | * 1 and set scsi3addr to address of matching physical |
| 3257 | * 0 if no matching physical disk was found. |
| 3258 | */ |
| 3259 | static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h, |
| 3260 | struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr) |
| 3261 | { |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3262 | struct io_accel2_cmd *c2 = |
| 3263 | &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex]; |
| 3264 | unsigned long flags; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3265 | int i; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3266 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3267 | spin_lock_irqsave(&h->devlock, flags); |
| 3268 | for (i = 0; i < h->ndevices; i++) |
| 3269 | if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) { |
| 3270 | memcpy(scsi3addr, h->dev[i]->scsi3addr, |
| 3271 | sizeof(h->dev[i]->scsi3addr)); |
| 3272 | spin_unlock_irqrestore(&h->devlock, flags); |
| 3273 | return 1; |
| 3274 | } |
| 3275 | spin_unlock_irqrestore(&h->devlock, flags); |
| 3276 | return 0; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3277 | } |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3278 | |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3279 | /* |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3280 | * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev, |
| 3281 | * logdev. The number of luns in physdev and logdev are returned in |
| 3282 | * *nphysicals and *nlogicals, respectively. |
| 3283 | * Returns 0 on success, -1 otherwise. |
| 3284 | */ |
| 3285 | static int hpsa_gather_lun_info(struct ctlr_info *h, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3286 | struct ReportExtendedLUNdata *physdev, u32 *nphysicals, |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 3287 | struct ReportLUNdata *logdev, u32 *nlogicals) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3288 | { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3289 | if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3290 | dev_err(&h->pdev->dev, "report physical LUNs failed.\n"); |
| 3291 | return -1; |
| 3292 | } |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3293 | *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3294 | if (*nphysicals > HPSA_MAX_PHYS_LUN) { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3295 | dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n", |
| 3296 | HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3297 | *nphysicals = HPSA_MAX_PHYS_LUN; |
| 3298 | } |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3299 | if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3300 | dev_err(&h->pdev->dev, "report logical LUNs failed.\n"); |
| 3301 | return -1; |
| 3302 | } |
Stephen M. Cameron | 6df1e95 | 2010-02-04 08:42:19 -0600 | [diff] [blame] | 3303 | *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3304 | /* Reject Logicals in excess of our max capability. */ |
| 3305 | if (*nlogicals > HPSA_MAX_LUN) { |
| 3306 | dev_warn(&h->pdev->dev, |
| 3307 | "maximum logical LUNs (%d) exceeded. " |
| 3308 | "%d LUNs ignored.\n", HPSA_MAX_LUN, |
| 3309 | *nlogicals - HPSA_MAX_LUN); |
| 3310 | *nlogicals = HPSA_MAX_LUN; |
| 3311 | } |
| 3312 | if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) { |
| 3313 | dev_warn(&h->pdev->dev, |
| 3314 | "maximum logical + physical LUNs (%d) exceeded. " |
| 3315 | "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN, |
| 3316 | *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN); |
| 3317 | *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals; |
| 3318 | } |
| 3319 | return 0; |
| 3320 | } |
| 3321 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 3322 | static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position, |
| 3323 | int i, int nphysicals, int nlogicals, |
Matt Gates | a93aa1f | 2014-02-18 13:55:07 -0600 | [diff] [blame] | 3324 | struct ReportExtendedLUNdata *physdev_list, |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3325 | struct ReportLUNdata *logdev_list) |
| 3326 | { |
| 3327 | /* Helper function, figure out where the LUN ID info is coming from |
| 3328 | * given index i, lists of physical and logical devices, where in |
| 3329 | * the list the raid controller is supposed to appear (first or last) |
| 3330 | */ |
| 3331 | |
| 3332 | int logicals_start = nphysicals + (raid_ctlr_position == 0); |
| 3333 | int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0); |
| 3334 | |
| 3335 | if (i == raid_ctlr_position) |
| 3336 | return RAID_CTLR_LUNID; |
| 3337 | |
| 3338 | if (i < logicals_start) |
Stephen M. Cameron | d5b5d96 | 2014-05-29 10:53:34 -0500 | [diff] [blame] | 3339 | return &physdev_list->LUN[i - |
| 3340 | (raid_ctlr_position == 0)].lunid[0]; |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3341 | |
| 3342 | if (i < last_device) |
| 3343 | return &logdev_list->LUN[i - nphysicals - |
| 3344 | (raid_ctlr_position == 0)][0]; |
| 3345 | BUG(); |
| 3346 | return NULL; |
| 3347 | } |
| 3348 | |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3349 | static int hpsa_hba_mode_enabled(struct ctlr_info *h) |
| 3350 | { |
| 3351 | int rc; |
Joe Handzik | 6e8e808 | 2014-05-15 15:44:42 -0500 | [diff] [blame] | 3352 | int hba_mode_enabled; |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3353 | struct bmic_controller_parameters *ctlr_params; |
| 3354 | ctlr_params = kzalloc(sizeof(struct bmic_controller_parameters), |
| 3355 | GFP_KERNEL); |
| 3356 | |
| 3357 | if (!ctlr_params) |
Joe Handzik | 96444fb | 2014-05-15 15:44:47 -0500 | [diff] [blame] | 3358 | return -ENOMEM; |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3359 | rc = hpsa_bmic_ctrl_mode_sense(h, RAID_CTLR_LUNID, 0, ctlr_params, |
| 3360 | sizeof(struct bmic_controller_parameters)); |
Joe Handzik | 96444fb | 2014-05-15 15:44:47 -0500 | [diff] [blame] | 3361 | if (rc) { |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3362 | kfree(ctlr_params); |
Joe Handzik | 96444fb | 2014-05-15 15:44:47 -0500 | [diff] [blame] | 3363 | return rc; |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3364 | } |
Joe Handzik | 6e8e808 | 2014-05-15 15:44:42 -0500 | [diff] [blame] | 3365 | |
| 3366 | hba_mode_enabled = |
| 3367 | ((ctlr_params->nvram_flags & HBA_MODE_ENABLED_FLAG) != 0); |
| 3368 | kfree(ctlr_params); |
| 3369 | return hba_mode_enabled; |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3370 | } |
| 3371 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3372 | /* get physical drive ioaccel handle and queue depth */ |
| 3373 | static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h, |
| 3374 | struct hpsa_scsi_dev_t *dev, |
| 3375 | u8 *lunaddrbytes, |
| 3376 | struct bmic_identify_physical_device *id_phys) |
| 3377 | { |
| 3378 | int rc; |
| 3379 | struct ext_report_lun_entry *rle = |
| 3380 | (struct ext_report_lun_entry *) lunaddrbytes; |
| 3381 | |
| 3382 | dev->ioaccel_handle = rle->ioaccel_handle; |
Joe Handzik | a3144e0 | 2015-04-23 09:32:59 -0500 | [diff] [blame] | 3383 | if (PHYS_IOACCEL(lunaddrbytes) && dev->ioaccel_handle) |
| 3384 | dev->hba_ioaccel_enabled = 1; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3385 | memset(id_phys, 0, sizeof(*id_phys)); |
| 3386 | rc = hpsa_bmic_id_physical_device(h, lunaddrbytes, |
| 3387 | GET_BMIC_DRIVE_NUMBER(lunaddrbytes), id_phys, |
| 3388 | sizeof(*id_phys)); |
| 3389 | if (!rc) |
| 3390 | /* Reserve space for FW operations */ |
| 3391 | #define DRIVE_CMDS_RESERVED_FOR_FW 2 |
| 3392 | #define DRIVE_QUEUE_DEPTH 7 |
| 3393 | dev->queue_depth = |
| 3394 | le16_to_cpu(id_phys->current_queue_depth_limit) - |
| 3395 | DRIVE_CMDS_RESERVED_FOR_FW; |
| 3396 | else |
| 3397 | dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */ |
| 3398 | atomic_set(&dev->ioaccel_cmds_out, 0); |
| 3399 | } |
| 3400 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3401 | static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno) |
| 3402 | { |
| 3403 | /* the idea here is we could get notified |
| 3404 | * that some devices have changed, so we do a report |
| 3405 | * physical luns and report logical luns cmd, and adjust |
| 3406 | * our list of devices accordingly. |
| 3407 | * |
| 3408 | * The scsi3addr's of devices won't change so long as the |
| 3409 | * adapter is not reset. That means we can rescan and |
| 3410 | * tell which devices we already know about, vs. new |
| 3411 | * devices, vs. disappearing devices. |
| 3412 | */ |
Matt Gates | a93aa1f | 2014-02-18 13:55:07 -0600 | [diff] [blame] | 3413 | struct ReportExtendedLUNdata *physdev_list = NULL; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3414 | struct ReportLUNdata *logdev_list = NULL; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3415 | struct bmic_identify_physical_device *id_phys = NULL; |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 3416 | u32 nphysicals = 0; |
| 3417 | u32 nlogicals = 0; |
| 3418 | u32 ndev_allocated = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3419 | struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice; |
| 3420 | int ncurrent = 0; |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3421 | int i, n_ext_target_devs, ndevs_to_allocate; |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3422 | int raid_ctlr_position; |
Joe Handzik | 2bbf5c7 | 2014-05-21 11:16:01 -0500 | [diff] [blame] | 3423 | int rescan_hba_mode; |
Scott Teel | aca4a52 | 2012-01-19 14:01:19 -0600 | [diff] [blame] | 3424 | DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3425 | |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 3426 | currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL); |
Stephen M. Cameron | 9208471 | 2014-11-14 17:26:54 -0600 | [diff] [blame] | 3427 | physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL); |
| 3428 | logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3429 | tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3430 | id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3431 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3432 | if (!currentsd || !physdev_list || !logdev_list || |
| 3433 | !tmpdevice || !id_phys) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3434 | dev_err(&h->pdev->dev, "out of memory\n"); |
| 3435 | goto out; |
| 3436 | } |
| 3437 | memset(lunzerobits, 0, sizeof(lunzerobits)); |
| 3438 | |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3439 | rescan_hba_mode = hpsa_hba_mode_enabled(h); |
Joe Handzik | 96444fb | 2014-05-15 15:44:47 -0500 | [diff] [blame] | 3440 | if (rescan_hba_mode < 0) |
| 3441 | goto out; |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3442 | |
| 3443 | if (!h->hba_mode_enabled && rescan_hba_mode) |
| 3444 | dev_warn(&h->pdev->dev, "HBA mode enabled\n"); |
| 3445 | else if (h->hba_mode_enabled && !rescan_hba_mode) |
| 3446 | dev_warn(&h->pdev->dev, "HBA mode disabled\n"); |
| 3447 | |
| 3448 | h->hba_mode_enabled = rescan_hba_mode; |
| 3449 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3450 | if (hpsa_gather_lun_info(h, physdev_list, &nphysicals, |
| 3451 | logdev_list, &nlogicals)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3452 | goto out; |
| 3453 | |
Scott Teel | aca4a52 | 2012-01-19 14:01:19 -0600 | [diff] [blame] | 3454 | /* We might see up to the maximum number of logical and physical disks |
| 3455 | * plus external target devices, and a device for the local RAID |
| 3456 | * controller. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3457 | */ |
Scott Teel | aca4a52 | 2012-01-19 14:01:19 -0600 | [diff] [blame] | 3458 | ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3459 | |
| 3460 | /* Allocate the per device structures */ |
| 3461 | for (i = 0; i < ndevs_to_allocate; i++) { |
Scott Teel | b7ec021 | 2011-10-26 16:21:12 -0500 | [diff] [blame] | 3462 | if (i >= HPSA_MAX_DEVICES) { |
| 3463 | dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded." |
| 3464 | " %d devices ignored.\n", HPSA_MAX_DEVICES, |
| 3465 | ndevs_to_allocate - HPSA_MAX_DEVICES); |
| 3466 | break; |
| 3467 | } |
| 3468 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3469 | currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL); |
| 3470 | if (!currentsd[i]) { |
| 3471 | dev_warn(&h->pdev->dev, "out of memory at %s:%d\n", |
| 3472 | __FILE__, __LINE__); |
| 3473 | goto out; |
| 3474 | } |
| 3475 | ndev_allocated++; |
| 3476 | } |
| 3477 | |
Stephen M. Cameron | 8645291 | 2014-05-29 10:53:49 -0500 | [diff] [blame] | 3478 | if (is_scsi_rev_5(h)) |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3479 | raid_ctlr_position = 0; |
| 3480 | else |
| 3481 | raid_ctlr_position = nphysicals + nlogicals; |
| 3482 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3483 | /* adjust our table of devices */ |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3484 | n_ext_target_devs = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3485 | for (i = 0; i < nphysicals + nlogicals + 1; i++) { |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3486 | u8 *lunaddrbytes, is_OBDR = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3487 | |
| 3488 | /* Figure out where the LUN ID info is coming from */ |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3489 | lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position, |
| 3490 | i, nphysicals, nlogicals, physdev_list, logdev_list); |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3491 | |
| 3492 | /* skip masked non-disk devices */ |
| 3493 | if (MASKED_DEVICE(lunaddrbytes)) |
| 3494 | if (i < nphysicals + (raid_ctlr_position == 0) && |
| 3495 | NON_DISK_PHYS_DEV(lunaddrbytes)) |
| 3496 | continue; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3497 | |
| 3498 | /* Get device type, vendor, model, device id */ |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3499 | if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice, |
| 3500 | &is_OBDR)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3501 | continue; /* skip it if we can't talk to it. */ |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3502 | figure_bus_target_lun(h, lunaddrbytes, tmpdevice); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3503 | hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3504 | this_device = currentsd[ncurrent]; |
| 3505 | |
| 3506 | /* |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3507 | * For external target devices, we have to insert a LUN 0 which |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3508 | * doesn't show up in CCISS_REPORT_PHYSICAL data, but there |
| 3509 | * is nonetheless an enclosure device there. We have to |
| 3510 | * present that otherwise linux won't find anything if |
| 3511 | * there is no lun 0. |
| 3512 | */ |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3513 | if (add_ext_target_dev(h, tmpdevice, this_device, |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3514 | lunaddrbytes, lunzerobits, |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3515 | &n_ext_target_devs)) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3516 | ncurrent++; |
| 3517 | this_device = currentsd[ncurrent]; |
| 3518 | } |
| 3519 | |
| 3520 | *this_device = *tmpdevice; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3521 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3522 | /* do not expose masked devices */ |
| 3523 | if (MASKED_DEVICE(lunaddrbytes) && |
| 3524 | i < nphysicals + (raid_ctlr_position == 0)) { |
| 3525 | if (h->hba_mode_enabled) |
| 3526 | dev_warn(&h->pdev->dev, |
| 3527 | "Masked physical device detected\n"); |
| 3528 | this_device->expose_state = HPSA_DO_NOT_EXPOSE; |
| 3529 | } else { |
| 3530 | this_device->expose_state = |
| 3531 | HPSA_SG_ATTACH | HPSA_ULD_ATTACH; |
| 3532 | } |
| 3533 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3534 | switch (this_device->devtype) { |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3535 | case TYPE_ROM: |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3536 | /* We don't *really* support actual CD-ROM devices, |
| 3537 | * just "One Button Disaster Recovery" tape drive |
| 3538 | * which temporarily pretends to be a CD-ROM drive. |
| 3539 | * So we check that the device is really an OBDR tape |
| 3540 | * device by checking for "$DR-10" in bytes 43-48 of |
| 3541 | * the inquiry data. |
| 3542 | */ |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3543 | if (is_OBDR) |
| 3544 | ncurrent++; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3545 | break; |
| 3546 | case TYPE_DISK: |
Joe Handzik | ecf418d1 | 2015-04-23 09:33:04 -0500 | [diff] [blame] | 3547 | if (i >= nphysicals) { |
| 3548 | ncurrent++; |
| 3549 | break; |
| 3550 | } |
| 3551 | |
| 3552 | if (h->hba_mode_enabled) |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3553 | /* never use raid mapper in HBA mode */ |
| 3554 | this_device->offload_enabled = 0; |
Joe Handzik | ecf418d1 | 2015-04-23 09:33:04 -0500 | [diff] [blame] | 3555 | else if (!(h->transMethod & CFGTBL_Trans_io_accel1 || |
| 3556 | h->transMethod & CFGTBL_Trans_io_accel2)) |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3557 | break; |
Joe Handzik | ecf418d1 | 2015-04-23 09:33:04 -0500 | [diff] [blame] | 3558 | |
| 3559 | hpsa_get_ioaccel_drive_info(h, this_device, |
| 3560 | lunaddrbytes, id_phys); |
| 3561 | atomic_set(&this_device->ioaccel_cmds_out, 0); |
| 3562 | ncurrent++; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3563 | break; |
| 3564 | case TYPE_TAPE: |
| 3565 | case TYPE_MEDIUM_CHANGER: |
| 3566 | ncurrent++; |
| 3567 | break; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3568 | case TYPE_ENCLOSURE: |
| 3569 | if (h->hba_mode_enabled) |
| 3570 | ncurrent++; |
| 3571 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3572 | case TYPE_RAID: |
| 3573 | /* Only present the Smartarray HBA as a RAID controller. |
| 3574 | * If it's a RAID controller other than the HBA itself |
| 3575 | * (an external RAID controller, MSA500 or similar) |
| 3576 | * don't present it. |
| 3577 | */ |
| 3578 | if (!is_hba_lunid(lunaddrbytes)) |
| 3579 | break; |
| 3580 | ncurrent++; |
| 3581 | break; |
| 3582 | default: |
| 3583 | break; |
| 3584 | } |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 3585 | if (ncurrent >= HPSA_MAX_DEVICES) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3586 | break; |
| 3587 | } |
| 3588 | adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent); |
| 3589 | out: |
| 3590 | kfree(tmpdevice); |
| 3591 | for (i = 0; i < ndev_allocated; i++) |
| 3592 | kfree(currentsd[i]); |
| 3593 | kfree(currentsd); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3594 | kfree(physdev_list); |
| 3595 | kfree(logdev_list); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3596 | kfree(id_phys); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3597 | } |
| 3598 | |
Webb Scales | ec5cbf0 | 2015-01-23 16:44:45 -0600 | [diff] [blame] | 3599 | static void hpsa_set_sg_descriptor(struct SGDescriptor *desc, |
| 3600 | struct scatterlist *sg) |
| 3601 | { |
| 3602 | u64 addr64 = (u64) sg_dma_address(sg); |
| 3603 | unsigned int len = sg_dma_len(sg); |
| 3604 | |
| 3605 | desc->Addr = cpu_to_le64(addr64); |
| 3606 | desc->Len = cpu_to_le32(len); |
| 3607 | desc->Ext = 0; |
| 3608 | } |
| 3609 | |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 3610 | /* |
| 3611 | * hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3612 | * dma mapping and fills in the scatter gather entries of the |
| 3613 | * hpsa command, cp. |
| 3614 | */ |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3615 | static int hpsa_scatter_gather(struct ctlr_info *h, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3616 | struct CommandList *cp, |
| 3617 | struct scsi_cmnd *cmd) |
| 3618 | { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3619 | struct scatterlist *sg; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3620 | int use_sg, i, sg_index, chained; |
| 3621 | struct SGDescriptor *curr_sg; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3622 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3623 | BUG_ON(scsi_sg_count(cmd) > h->maxsgentries); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3624 | |
| 3625 | use_sg = scsi_dma_map(cmd); |
| 3626 | if (use_sg < 0) |
| 3627 | return use_sg; |
| 3628 | |
| 3629 | if (!use_sg) |
| 3630 | goto sglist_finished; |
| 3631 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3632 | curr_sg = cp->SG; |
| 3633 | chained = 0; |
| 3634 | sg_index = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3635 | scsi_for_each_sg(cmd, sg, use_sg, i) { |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3636 | if (i == h->max_cmd_sg_entries - 1 && |
| 3637 | use_sg > h->max_cmd_sg_entries) { |
| 3638 | chained = 1; |
| 3639 | curr_sg = h->cmd_sg_list[cp->cmdindex]; |
| 3640 | sg_index = 0; |
| 3641 | } |
Webb Scales | ec5cbf0 | 2015-01-23 16:44:45 -0600 | [diff] [blame] | 3642 | hpsa_set_sg_descriptor(curr_sg, sg); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3643 | curr_sg++; |
| 3644 | } |
Webb Scales | ec5cbf0 | 2015-01-23 16:44:45 -0600 | [diff] [blame] | 3645 | |
| 3646 | /* Back the pointer up to the last entry and mark it as "last". */ |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 3647 | (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3648 | |
| 3649 | if (use_sg + chained > h->maxSG) |
| 3650 | h->maxSG = use_sg + chained; |
| 3651 | |
| 3652 | if (chained) { |
| 3653 | cp->Header.SGList = h->max_cmd_sg_entries; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 3654 | cp->Header.SGTotal = cpu_to_le16(use_sg + 1); |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 3655 | if (hpsa_map_sg_chain_block(h, cp)) { |
| 3656 | scsi_dma_unmap(cmd); |
| 3657 | return -1; |
| 3658 | } |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3659 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3660 | } |
| 3661 | |
| 3662 | sglist_finished: |
| 3663 | |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 3664 | cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */ |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 3665 | cp->Header.SGTotal = cpu_to_le16(use_sg); /* total sgs in cmd list */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3666 | return 0; |
| 3667 | } |
| 3668 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3669 | #define IO_ACCEL_INELIGIBLE (1) |
| 3670 | static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len) |
| 3671 | { |
| 3672 | int is_write = 0; |
| 3673 | u32 block; |
| 3674 | u32 block_cnt; |
| 3675 | |
| 3676 | /* Perform some CDB fixups if needed using 10 byte reads/writes only */ |
| 3677 | switch (cdb[0]) { |
| 3678 | case WRITE_6: |
| 3679 | case WRITE_12: |
| 3680 | is_write = 1; |
| 3681 | case READ_6: |
| 3682 | case READ_12: |
| 3683 | if (*cdb_len == 6) { |
| 3684 | block = (((u32) cdb[2]) << 8) | cdb[3]; |
| 3685 | block_cnt = cdb[4]; |
| 3686 | } else { |
| 3687 | BUG_ON(*cdb_len != 12); |
| 3688 | block = (((u32) cdb[2]) << 24) | |
| 3689 | (((u32) cdb[3]) << 16) | |
| 3690 | (((u32) cdb[4]) << 8) | |
| 3691 | cdb[5]; |
| 3692 | block_cnt = |
| 3693 | (((u32) cdb[6]) << 24) | |
| 3694 | (((u32) cdb[7]) << 16) | |
| 3695 | (((u32) cdb[8]) << 8) | |
| 3696 | cdb[9]; |
| 3697 | } |
| 3698 | if (block_cnt > 0xffff) |
| 3699 | return IO_ACCEL_INELIGIBLE; |
| 3700 | |
| 3701 | cdb[0] = is_write ? WRITE_10 : READ_10; |
| 3702 | cdb[1] = 0; |
| 3703 | cdb[2] = (u8) (block >> 24); |
| 3704 | cdb[3] = (u8) (block >> 16); |
| 3705 | cdb[4] = (u8) (block >> 8); |
| 3706 | cdb[5] = (u8) (block); |
| 3707 | cdb[6] = 0; |
| 3708 | cdb[7] = (u8) (block_cnt >> 8); |
| 3709 | cdb[8] = (u8) (block_cnt); |
| 3710 | cdb[9] = 0; |
| 3711 | *cdb_len = 10; |
| 3712 | break; |
| 3713 | } |
| 3714 | return 0; |
| 3715 | } |
| 3716 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3717 | static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h, |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3718 | struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3719 | u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk) |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3720 | { |
| 3721 | struct scsi_cmnd *cmd = c->scsi_cmd; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3722 | struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex]; |
| 3723 | unsigned int len; |
| 3724 | unsigned int total_len = 0; |
| 3725 | struct scatterlist *sg; |
| 3726 | u64 addr64; |
| 3727 | int use_sg, i; |
| 3728 | struct SGDescriptor *curr_sg; |
| 3729 | u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE; |
| 3730 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3731 | /* TODO: implement chaining support */ |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3732 | if (scsi_sg_count(cmd) > h->ioaccel_maxsg) { |
| 3733 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3734 | return IO_ACCEL_INELIGIBLE; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3735 | } |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3736 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3737 | BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX); |
| 3738 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3739 | if (fixup_ioaccel_cdb(cdb, &cdb_len)) { |
| 3740 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3741 | return IO_ACCEL_INELIGIBLE; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3742 | } |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3743 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3744 | c->cmd_type = CMD_IOACCEL1; |
| 3745 | |
| 3746 | /* Adjust the DMA address to point to the accelerated command buffer */ |
| 3747 | c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle + |
| 3748 | (c->cmdindex * sizeof(*cp)); |
| 3749 | BUG_ON(c->busaddr & 0x0000007F); |
| 3750 | |
| 3751 | use_sg = scsi_dma_map(cmd); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3752 | if (use_sg < 0) { |
| 3753 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3754 | return use_sg; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3755 | } |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3756 | |
| 3757 | if (use_sg) { |
| 3758 | curr_sg = cp->SG; |
| 3759 | scsi_for_each_sg(cmd, sg, use_sg, i) { |
| 3760 | addr64 = (u64) sg_dma_address(sg); |
| 3761 | len = sg_dma_len(sg); |
| 3762 | total_len += len; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 3763 | curr_sg->Addr = cpu_to_le64(addr64); |
| 3764 | curr_sg->Len = cpu_to_le32(len); |
| 3765 | curr_sg->Ext = cpu_to_le32(0); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3766 | curr_sg++; |
| 3767 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 3768 | (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3769 | |
| 3770 | switch (cmd->sc_data_direction) { |
| 3771 | case DMA_TO_DEVICE: |
| 3772 | control |= IOACCEL1_CONTROL_DATA_OUT; |
| 3773 | break; |
| 3774 | case DMA_FROM_DEVICE: |
| 3775 | control |= IOACCEL1_CONTROL_DATA_IN; |
| 3776 | break; |
| 3777 | case DMA_NONE: |
| 3778 | control |= IOACCEL1_CONTROL_NODATAXFER; |
| 3779 | break; |
| 3780 | default: |
| 3781 | dev_err(&h->pdev->dev, "unknown data direction: %d\n", |
| 3782 | cmd->sc_data_direction); |
| 3783 | BUG(); |
| 3784 | break; |
| 3785 | } |
| 3786 | } else { |
| 3787 | control |= IOACCEL1_CONTROL_NODATAXFER; |
| 3788 | } |
| 3789 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3790 | c->Header.SGList = use_sg; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3791 | /* Fill out the command structure to submit */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 3792 | cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF); |
| 3793 | cp->transfer_len = cpu_to_le32(total_len); |
| 3794 | cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ | |
| 3795 | (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK)); |
| 3796 | cp->control = cpu_to_le32(control); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3797 | memcpy(cp->CDB, cdb, cdb_len); |
| 3798 | memcpy(cp->CISS_LUN, scsi3addr, 8); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3799 | /* Tag was already set at init time. */ |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3800 | enqueue_cmd_and_start_io(h, c); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 3801 | return 0; |
| 3802 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3803 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3804 | /* |
| 3805 | * Queue a command directly to a device behind the controller using the |
| 3806 | * I/O accelerator path. |
| 3807 | */ |
| 3808 | static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h, |
| 3809 | struct CommandList *c) |
| 3810 | { |
| 3811 | struct scsi_cmnd *cmd = c->scsi_cmd; |
| 3812 | struct hpsa_scsi_dev_t *dev = cmd->device->hostdata; |
| 3813 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3814 | c->phys_disk = dev; |
| 3815 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3816 | return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3817 | cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3818 | } |
| 3819 | |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3820 | /* |
| 3821 | * Set encryption parameters for the ioaccel2 request |
| 3822 | */ |
| 3823 | static void set_encrypt_ioaccel2(struct ctlr_info *h, |
| 3824 | struct CommandList *c, struct io_accel2_cmd *cp) |
| 3825 | { |
| 3826 | struct scsi_cmnd *cmd = c->scsi_cmd; |
| 3827 | struct hpsa_scsi_dev_t *dev = cmd->device->hostdata; |
| 3828 | struct raid_map_data *map = &dev->raid_map; |
| 3829 | u64 first_block; |
| 3830 | |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3831 | /* Are we doing encryption on this device */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 3832 | if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON)) |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3833 | return; |
| 3834 | /* Set the data encryption key index. */ |
| 3835 | cp->dekindex = map->dekindex; |
| 3836 | |
| 3837 | /* Set the encryption enable flag, encoded into direction field. */ |
| 3838 | cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK; |
| 3839 | |
| 3840 | /* Set encryption tweak values based on logical block address |
| 3841 | * If block size is 512, tweak value is LBA. |
| 3842 | * For other block sizes, tweak is (LBA * block size)/ 512) |
| 3843 | */ |
| 3844 | switch (cmd->cmnd[0]) { |
| 3845 | /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */ |
| 3846 | case WRITE_6: |
| 3847 | case READ_6: |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 3848 | first_block = get_unaligned_be16(&cmd->cmnd[2]); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3849 | break; |
| 3850 | case WRITE_10: |
| 3851 | case READ_10: |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3852 | /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */ |
| 3853 | case WRITE_12: |
| 3854 | case READ_12: |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 3855 | first_block = get_unaligned_be32(&cmd->cmnd[2]); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3856 | break; |
| 3857 | case WRITE_16: |
| 3858 | case READ_16: |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 3859 | first_block = get_unaligned_be64(&cmd->cmnd[2]); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3860 | break; |
| 3861 | default: |
| 3862 | dev_err(&h->pdev->dev, |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 3863 | "ERROR: %s: size (0x%x) not supported for encryption\n", |
| 3864 | __func__, cmd->cmnd[0]); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3865 | BUG(); |
| 3866 | break; |
| 3867 | } |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 3868 | |
| 3869 | if (le32_to_cpu(map->volume_blk_size) != 512) |
| 3870 | first_block = first_block * |
| 3871 | le32_to_cpu(map->volume_blk_size)/512; |
| 3872 | |
| 3873 | cp->tweak_lower = cpu_to_le32(first_block); |
| 3874 | cp->tweak_upper = cpu_to_le32(first_block >> 32); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3875 | } |
| 3876 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3877 | static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h, |
| 3878 | struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3879 | u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk) |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3880 | { |
| 3881 | struct scsi_cmnd *cmd = c->scsi_cmd; |
| 3882 | struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 3883 | struct ioaccel2_sg_element *curr_sg; |
| 3884 | int use_sg, i; |
| 3885 | struct scatterlist *sg; |
| 3886 | u64 addr64; |
| 3887 | u32 len; |
| 3888 | u32 total_len = 0; |
| 3889 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 3890 | BUG_ON(scsi_sg_count(cmd) > h->maxsgentries); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3891 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3892 | if (fixup_ioaccel_cdb(cdb, &cdb_len)) { |
| 3893 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3894 | return IO_ACCEL_INELIGIBLE; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3895 | } |
| 3896 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3897 | c->cmd_type = CMD_IOACCEL2; |
| 3898 | /* Adjust the DMA address to point to the accelerated command buffer */ |
| 3899 | c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle + |
| 3900 | (c->cmdindex * sizeof(*cp)); |
| 3901 | BUG_ON(c->busaddr & 0x0000007F); |
| 3902 | |
| 3903 | memset(cp, 0, sizeof(*cp)); |
| 3904 | cp->IU_type = IOACCEL2_IU_TYPE; |
| 3905 | |
| 3906 | use_sg = scsi_dma_map(cmd); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3907 | if (use_sg < 0) { |
| 3908 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3909 | return use_sg; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3910 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3911 | |
| 3912 | if (use_sg) { |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3913 | curr_sg = cp->sg; |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 3914 | if (use_sg > h->ioaccel_maxsg) { |
| 3915 | addr64 = le64_to_cpu( |
| 3916 | h->ioaccel2_cmd_sg_list[c->cmdindex]->address); |
| 3917 | curr_sg->address = cpu_to_le64(addr64); |
| 3918 | curr_sg->length = 0; |
| 3919 | curr_sg->reserved[0] = 0; |
| 3920 | curr_sg->reserved[1] = 0; |
| 3921 | curr_sg->reserved[2] = 0; |
| 3922 | curr_sg->chain_indicator = 0x80; |
| 3923 | |
| 3924 | curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex]; |
| 3925 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3926 | scsi_for_each_sg(cmd, sg, use_sg, i) { |
| 3927 | addr64 = (u64) sg_dma_address(sg); |
| 3928 | len = sg_dma_len(sg); |
| 3929 | total_len += len; |
| 3930 | curr_sg->address = cpu_to_le64(addr64); |
| 3931 | curr_sg->length = cpu_to_le32(len); |
| 3932 | curr_sg->reserved[0] = 0; |
| 3933 | curr_sg->reserved[1] = 0; |
| 3934 | curr_sg->reserved[2] = 0; |
| 3935 | curr_sg->chain_indicator = 0; |
| 3936 | curr_sg++; |
| 3937 | } |
| 3938 | |
| 3939 | switch (cmd->sc_data_direction) { |
| 3940 | case DMA_TO_DEVICE: |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3941 | cp->direction &= ~IOACCEL2_DIRECTION_MASK; |
| 3942 | cp->direction |= IOACCEL2_DIR_DATA_OUT; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3943 | break; |
| 3944 | case DMA_FROM_DEVICE: |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3945 | cp->direction &= ~IOACCEL2_DIRECTION_MASK; |
| 3946 | cp->direction |= IOACCEL2_DIR_DATA_IN; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3947 | break; |
| 3948 | case DMA_NONE: |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3949 | cp->direction &= ~IOACCEL2_DIRECTION_MASK; |
| 3950 | cp->direction |= IOACCEL2_DIR_NO_DATA; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3951 | break; |
| 3952 | default: |
| 3953 | dev_err(&h->pdev->dev, "unknown data direction: %d\n", |
| 3954 | cmd->sc_data_direction); |
| 3955 | BUG(); |
| 3956 | break; |
| 3957 | } |
| 3958 | } else { |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3959 | cp->direction &= ~IOACCEL2_DIRECTION_MASK; |
| 3960 | cp->direction |= IOACCEL2_DIR_NO_DATA; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3961 | } |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 3962 | |
| 3963 | /* Set encryption parameters, if necessary */ |
| 3964 | set_encrypt_ioaccel2(h, c, cp); |
| 3965 | |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 3966 | cp->scsi_nexus = cpu_to_le32(ioaccel_handle); |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 3967 | cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3968 | memcpy(cp->cdb, cdb, sizeof(cp->cdb)); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3969 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3970 | cp->data_len = cpu_to_le32(total_len); |
| 3971 | cp->err_ptr = cpu_to_le64(c->busaddr + |
| 3972 | offsetof(struct io_accel2_cmd, error_data)); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 3973 | cp->err_len = cpu_to_le32(sizeof(cp->error_data)); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3974 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 3975 | /* fill in sg elements */ |
| 3976 | if (use_sg > h->ioaccel_maxsg) { |
| 3977 | cp->sg_count = 1; |
| 3978 | if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) { |
| 3979 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
| 3980 | scsi_dma_unmap(cmd); |
| 3981 | return -1; |
| 3982 | } |
| 3983 | } else |
| 3984 | cp->sg_count = (u8) use_sg; |
| 3985 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3986 | enqueue_cmd_and_start_io(h, c); |
| 3987 | return 0; |
| 3988 | } |
| 3989 | |
| 3990 | /* |
| 3991 | * Queue a command to the correct I/O accelerator path. |
| 3992 | */ |
| 3993 | static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h, |
| 3994 | struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3995 | u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk) |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 3996 | { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3997 | /* Try to honor the device's queue depth */ |
| 3998 | if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) > |
| 3999 | phys_disk->queue_depth) { |
| 4000 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
| 4001 | return IO_ACCEL_INELIGIBLE; |
| 4002 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4003 | if (h->transMethod & CFGTBL_Trans_io_accel1) |
| 4004 | return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4005 | cdb, cdb_len, scsi3addr, |
| 4006 | phys_disk); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4007 | else |
| 4008 | return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4009 | cdb, cdb_len, scsi3addr, |
| 4010 | phys_disk); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4011 | } |
| 4012 | |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4013 | static void raid_map_helper(struct raid_map_data *map, |
| 4014 | int offload_to_mirror, u32 *map_index, u32 *current_group) |
| 4015 | { |
| 4016 | if (offload_to_mirror == 0) { |
| 4017 | /* use physical disk in the first mirrored group. */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4018 | *map_index %= le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4019 | return; |
| 4020 | } |
| 4021 | do { |
| 4022 | /* determine mirror group that *map_index indicates */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4023 | *current_group = *map_index / |
| 4024 | le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4025 | if (offload_to_mirror == *current_group) |
| 4026 | continue; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4027 | if (*current_group < le16_to_cpu(map->layout_map_count) - 1) { |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4028 | /* select map index from next group */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4029 | *map_index += le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4030 | (*current_group)++; |
| 4031 | } else { |
| 4032 | /* select map index from first group */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4033 | *map_index %= le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4034 | *current_group = 0; |
| 4035 | } |
| 4036 | } while (offload_to_mirror != *current_group); |
| 4037 | } |
| 4038 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4039 | /* |
| 4040 | * Attempt to perform offload RAID mapping for a logical volume I/O. |
| 4041 | */ |
| 4042 | static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h, |
| 4043 | struct CommandList *c) |
| 4044 | { |
| 4045 | struct scsi_cmnd *cmd = c->scsi_cmd; |
| 4046 | struct hpsa_scsi_dev_t *dev = cmd->device->hostdata; |
| 4047 | struct raid_map_data *map = &dev->raid_map; |
| 4048 | struct raid_map_disk_data *dd = &map->data[0]; |
| 4049 | int is_write = 0; |
| 4050 | u32 map_index; |
| 4051 | u64 first_block, last_block; |
| 4052 | u32 block_cnt; |
| 4053 | u32 blocks_per_row; |
| 4054 | u64 first_row, last_row; |
| 4055 | u32 first_row_offset, last_row_offset; |
| 4056 | u32 first_column, last_column; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4057 | u64 r0_first_row, r0_last_row; |
| 4058 | u32 r5or6_blocks_per_row; |
| 4059 | u64 r5or6_first_row, r5or6_last_row; |
| 4060 | u32 r5or6_first_row_offset, r5or6_last_row_offset; |
| 4061 | u32 r5or6_first_column, r5or6_last_column; |
| 4062 | u32 total_disks_per_row; |
| 4063 | u32 stripesize; |
| 4064 | u32 first_group, last_group, current_group; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4065 | u32 map_row; |
| 4066 | u32 disk_handle; |
| 4067 | u64 disk_block; |
| 4068 | u32 disk_block_cnt; |
| 4069 | u8 cdb[16]; |
| 4070 | u8 cdb_len; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4071 | u16 strip_size; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4072 | #if BITS_PER_LONG == 32 |
| 4073 | u64 tmpdiv; |
| 4074 | #endif |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4075 | int offload_to_mirror; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4076 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4077 | /* check for valid opcode, get LBA and block count */ |
| 4078 | switch (cmd->cmnd[0]) { |
| 4079 | case WRITE_6: |
| 4080 | is_write = 1; |
| 4081 | case READ_6: |
| 4082 | first_block = |
| 4083 | (((u64) cmd->cmnd[2]) << 8) | |
| 4084 | cmd->cmnd[3]; |
| 4085 | block_cnt = cmd->cmnd[4]; |
Stephen M. Cameron | 3fa89a0 | 2014-07-03 10:18:14 -0500 | [diff] [blame] | 4086 | if (block_cnt == 0) |
| 4087 | block_cnt = 256; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4088 | break; |
| 4089 | case WRITE_10: |
| 4090 | is_write = 1; |
| 4091 | case READ_10: |
| 4092 | first_block = |
| 4093 | (((u64) cmd->cmnd[2]) << 24) | |
| 4094 | (((u64) cmd->cmnd[3]) << 16) | |
| 4095 | (((u64) cmd->cmnd[4]) << 8) | |
| 4096 | cmd->cmnd[5]; |
| 4097 | block_cnt = |
| 4098 | (((u32) cmd->cmnd[7]) << 8) | |
| 4099 | cmd->cmnd[8]; |
| 4100 | break; |
| 4101 | case WRITE_12: |
| 4102 | is_write = 1; |
| 4103 | case READ_12: |
| 4104 | first_block = |
| 4105 | (((u64) cmd->cmnd[2]) << 24) | |
| 4106 | (((u64) cmd->cmnd[3]) << 16) | |
| 4107 | (((u64) cmd->cmnd[4]) << 8) | |
| 4108 | cmd->cmnd[5]; |
| 4109 | block_cnt = |
| 4110 | (((u32) cmd->cmnd[6]) << 24) | |
| 4111 | (((u32) cmd->cmnd[7]) << 16) | |
| 4112 | (((u32) cmd->cmnd[8]) << 8) | |
| 4113 | cmd->cmnd[9]; |
| 4114 | break; |
| 4115 | case WRITE_16: |
| 4116 | is_write = 1; |
| 4117 | case READ_16: |
| 4118 | first_block = |
| 4119 | (((u64) cmd->cmnd[2]) << 56) | |
| 4120 | (((u64) cmd->cmnd[3]) << 48) | |
| 4121 | (((u64) cmd->cmnd[4]) << 40) | |
| 4122 | (((u64) cmd->cmnd[5]) << 32) | |
| 4123 | (((u64) cmd->cmnd[6]) << 24) | |
| 4124 | (((u64) cmd->cmnd[7]) << 16) | |
| 4125 | (((u64) cmd->cmnd[8]) << 8) | |
| 4126 | cmd->cmnd[9]; |
| 4127 | block_cnt = |
| 4128 | (((u32) cmd->cmnd[10]) << 24) | |
| 4129 | (((u32) cmd->cmnd[11]) << 16) | |
| 4130 | (((u32) cmd->cmnd[12]) << 8) | |
| 4131 | cmd->cmnd[13]; |
| 4132 | break; |
| 4133 | default: |
| 4134 | return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */ |
| 4135 | } |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4136 | last_block = first_block + block_cnt - 1; |
| 4137 | |
| 4138 | /* check for write to non-RAID-0 */ |
| 4139 | if (is_write && dev->raid_level != 0) |
| 4140 | return IO_ACCEL_INELIGIBLE; |
| 4141 | |
| 4142 | /* check for invalid block or wraparound */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4143 | if (last_block >= le64_to_cpu(map->volume_blk_cnt) || |
| 4144 | last_block < first_block) |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4145 | return IO_ACCEL_INELIGIBLE; |
| 4146 | |
| 4147 | /* calculate stripe information for the request */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4148 | blocks_per_row = le16_to_cpu(map->data_disks_per_row) * |
| 4149 | le16_to_cpu(map->strip_size); |
| 4150 | strip_size = le16_to_cpu(map->strip_size); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4151 | #if BITS_PER_LONG == 32 |
| 4152 | tmpdiv = first_block; |
| 4153 | (void) do_div(tmpdiv, blocks_per_row); |
| 4154 | first_row = tmpdiv; |
| 4155 | tmpdiv = last_block; |
| 4156 | (void) do_div(tmpdiv, blocks_per_row); |
| 4157 | last_row = tmpdiv; |
| 4158 | first_row_offset = (u32) (first_block - (first_row * blocks_per_row)); |
| 4159 | last_row_offset = (u32) (last_block - (last_row * blocks_per_row)); |
| 4160 | tmpdiv = first_row_offset; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4161 | (void) do_div(tmpdiv, strip_size); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4162 | first_column = tmpdiv; |
| 4163 | tmpdiv = last_row_offset; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4164 | (void) do_div(tmpdiv, strip_size); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4165 | last_column = tmpdiv; |
| 4166 | #else |
| 4167 | first_row = first_block / blocks_per_row; |
| 4168 | last_row = last_block / blocks_per_row; |
| 4169 | first_row_offset = (u32) (first_block - (first_row * blocks_per_row)); |
| 4170 | last_row_offset = (u32) (last_block - (last_row * blocks_per_row)); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4171 | first_column = first_row_offset / strip_size; |
| 4172 | last_column = last_row_offset / strip_size; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4173 | #endif |
| 4174 | |
| 4175 | /* if this isn't a single row/column then give to the controller */ |
| 4176 | if ((first_row != last_row) || (first_column != last_column)) |
| 4177 | return IO_ACCEL_INELIGIBLE; |
| 4178 | |
| 4179 | /* proceeding with driver mapping */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4180 | total_disks_per_row = le16_to_cpu(map->data_disks_per_row) + |
| 4181 | le16_to_cpu(map->metadata_disks_per_row); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4182 | map_row = ((u32)(first_row >> map->parity_rotation_shift)) % |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4183 | le16_to_cpu(map->row_cnt); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4184 | map_index = (map_row * total_disks_per_row) + first_column; |
| 4185 | |
| 4186 | switch (dev->raid_level) { |
| 4187 | case HPSA_RAID_0: |
| 4188 | break; /* nothing special to do */ |
| 4189 | case HPSA_RAID_1: |
| 4190 | /* Handles load balance across RAID 1 members. |
| 4191 | * (2-drive R1 and R10 with even # of drives.) |
| 4192 | * Appropriate for SSDs, not optimal for HDDs |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4193 | */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4194 | BUG_ON(le16_to_cpu(map->layout_map_count) != 2); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4195 | if (dev->offload_to_mirror) |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4196 | map_index += le16_to_cpu(map->data_disks_per_row); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4197 | dev->offload_to_mirror = !dev->offload_to_mirror; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4198 | break; |
| 4199 | case HPSA_RAID_ADM: |
| 4200 | /* Handles N-way mirrors (R1-ADM) |
| 4201 | * and R10 with # of drives divisible by 3.) |
| 4202 | */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4203 | BUG_ON(le16_to_cpu(map->layout_map_count) != 3); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4204 | |
| 4205 | offload_to_mirror = dev->offload_to_mirror; |
| 4206 | raid_map_helper(map, offload_to_mirror, |
| 4207 | &map_index, ¤t_group); |
| 4208 | /* set mirror group to use next time */ |
| 4209 | offload_to_mirror = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4210 | (offload_to_mirror >= |
| 4211 | le16_to_cpu(map->layout_map_count) - 1) |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4212 | ? 0 : offload_to_mirror + 1; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4213 | dev->offload_to_mirror = offload_to_mirror; |
| 4214 | /* Avoid direct use of dev->offload_to_mirror within this |
| 4215 | * function since multiple threads might simultaneously |
| 4216 | * increment it beyond the range of dev->layout_map_count -1. |
| 4217 | */ |
| 4218 | break; |
| 4219 | case HPSA_RAID_5: |
| 4220 | case HPSA_RAID_6: |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4221 | if (le16_to_cpu(map->layout_map_count) <= 1) |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4222 | break; |
| 4223 | |
| 4224 | /* Verify first and last block are in same RAID group */ |
| 4225 | r5or6_blocks_per_row = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4226 | le16_to_cpu(map->strip_size) * |
| 4227 | le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4228 | BUG_ON(r5or6_blocks_per_row == 0); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4229 | stripesize = r5or6_blocks_per_row * |
| 4230 | le16_to_cpu(map->layout_map_count); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4231 | #if BITS_PER_LONG == 32 |
| 4232 | tmpdiv = first_block; |
| 4233 | first_group = do_div(tmpdiv, stripesize); |
| 4234 | tmpdiv = first_group; |
| 4235 | (void) do_div(tmpdiv, r5or6_blocks_per_row); |
| 4236 | first_group = tmpdiv; |
| 4237 | tmpdiv = last_block; |
| 4238 | last_group = do_div(tmpdiv, stripesize); |
| 4239 | tmpdiv = last_group; |
| 4240 | (void) do_div(tmpdiv, r5or6_blocks_per_row); |
| 4241 | last_group = tmpdiv; |
| 4242 | #else |
| 4243 | first_group = (first_block % stripesize) / r5or6_blocks_per_row; |
| 4244 | last_group = (last_block % stripesize) / r5or6_blocks_per_row; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4245 | #endif |
Stephen M. Cameron | 000ff7c | 2014-03-13 17:12:50 -0500 | [diff] [blame] | 4246 | if (first_group != last_group) |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4247 | return IO_ACCEL_INELIGIBLE; |
| 4248 | |
| 4249 | /* Verify request is in a single row of RAID 5/6 */ |
| 4250 | #if BITS_PER_LONG == 32 |
| 4251 | tmpdiv = first_block; |
| 4252 | (void) do_div(tmpdiv, stripesize); |
| 4253 | first_row = r5or6_first_row = r0_first_row = tmpdiv; |
| 4254 | tmpdiv = last_block; |
| 4255 | (void) do_div(tmpdiv, stripesize); |
| 4256 | r5or6_last_row = r0_last_row = tmpdiv; |
| 4257 | #else |
| 4258 | first_row = r5or6_first_row = r0_first_row = |
| 4259 | first_block / stripesize; |
| 4260 | r5or6_last_row = r0_last_row = last_block / stripesize; |
| 4261 | #endif |
| 4262 | if (r5or6_first_row != r5or6_last_row) |
| 4263 | return IO_ACCEL_INELIGIBLE; |
| 4264 | |
| 4265 | |
| 4266 | /* Verify request is in a single column */ |
| 4267 | #if BITS_PER_LONG == 32 |
| 4268 | tmpdiv = first_block; |
| 4269 | first_row_offset = do_div(tmpdiv, stripesize); |
| 4270 | tmpdiv = first_row_offset; |
| 4271 | first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row); |
| 4272 | r5or6_first_row_offset = first_row_offset; |
| 4273 | tmpdiv = last_block; |
| 4274 | r5or6_last_row_offset = do_div(tmpdiv, stripesize); |
| 4275 | tmpdiv = r5or6_last_row_offset; |
| 4276 | r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row); |
| 4277 | tmpdiv = r5or6_first_row_offset; |
| 4278 | (void) do_div(tmpdiv, map->strip_size); |
| 4279 | first_column = r5or6_first_column = tmpdiv; |
| 4280 | tmpdiv = r5or6_last_row_offset; |
| 4281 | (void) do_div(tmpdiv, map->strip_size); |
| 4282 | r5or6_last_column = tmpdiv; |
| 4283 | #else |
| 4284 | first_row_offset = r5or6_first_row_offset = |
| 4285 | (u32)((first_block % stripesize) % |
| 4286 | r5or6_blocks_per_row); |
| 4287 | |
| 4288 | r5or6_last_row_offset = |
| 4289 | (u32)((last_block % stripesize) % |
| 4290 | r5or6_blocks_per_row); |
| 4291 | |
| 4292 | first_column = r5or6_first_column = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4293 | r5or6_first_row_offset / le16_to_cpu(map->strip_size); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4294 | r5or6_last_column = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4295 | r5or6_last_row_offset / le16_to_cpu(map->strip_size); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4296 | #endif |
| 4297 | if (r5or6_first_column != r5or6_last_column) |
| 4298 | return IO_ACCEL_INELIGIBLE; |
| 4299 | |
| 4300 | /* Request is eligible */ |
| 4301 | map_row = ((u32)(first_row >> map->parity_rotation_shift)) % |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4302 | le16_to_cpu(map->row_cnt); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4303 | |
| 4304 | map_index = (first_group * |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4305 | (le16_to_cpu(map->row_cnt) * total_disks_per_row)) + |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4306 | (map_row * total_disks_per_row) + first_column; |
| 4307 | break; |
| 4308 | default: |
| 4309 | return IO_ACCEL_INELIGIBLE; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4310 | } |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4311 | |
Stephen Cameron | 07543e0 | 2015-01-23 16:44:14 -0600 | [diff] [blame] | 4312 | if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES)) |
| 4313 | return IO_ACCEL_INELIGIBLE; |
| 4314 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4315 | c->phys_disk = dev->phys_disk[map_index]; |
| 4316 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4317 | disk_handle = dd[map_index].ioaccel_handle; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4318 | disk_block = le64_to_cpu(map->disk_starting_blk) + |
| 4319 | first_row * le16_to_cpu(map->strip_size) + |
| 4320 | (first_row_offset - first_column * |
| 4321 | le16_to_cpu(map->strip_size)); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4322 | disk_block_cnt = block_cnt; |
| 4323 | |
| 4324 | /* handle differing logical/physical block sizes */ |
| 4325 | if (map->phys_blk_shift) { |
| 4326 | disk_block <<= map->phys_blk_shift; |
| 4327 | disk_block_cnt <<= map->phys_blk_shift; |
| 4328 | } |
| 4329 | BUG_ON(disk_block_cnt > 0xffff); |
| 4330 | |
| 4331 | /* build the new CDB for the physical disk I/O */ |
| 4332 | if (disk_block > 0xffffffff) { |
| 4333 | cdb[0] = is_write ? WRITE_16 : READ_16; |
| 4334 | cdb[1] = 0; |
| 4335 | cdb[2] = (u8) (disk_block >> 56); |
| 4336 | cdb[3] = (u8) (disk_block >> 48); |
| 4337 | cdb[4] = (u8) (disk_block >> 40); |
| 4338 | cdb[5] = (u8) (disk_block >> 32); |
| 4339 | cdb[6] = (u8) (disk_block >> 24); |
| 4340 | cdb[7] = (u8) (disk_block >> 16); |
| 4341 | cdb[8] = (u8) (disk_block >> 8); |
| 4342 | cdb[9] = (u8) (disk_block); |
| 4343 | cdb[10] = (u8) (disk_block_cnt >> 24); |
| 4344 | cdb[11] = (u8) (disk_block_cnt >> 16); |
| 4345 | cdb[12] = (u8) (disk_block_cnt >> 8); |
| 4346 | cdb[13] = (u8) (disk_block_cnt); |
| 4347 | cdb[14] = 0; |
| 4348 | cdb[15] = 0; |
| 4349 | cdb_len = 16; |
| 4350 | } else { |
| 4351 | cdb[0] = is_write ? WRITE_10 : READ_10; |
| 4352 | cdb[1] = 0; |
| 4353 | cdb[2] = (u8) (disk_block >> 24); |
| 4354 | cdb[3] = (u8) (disk_block >> 16); |
| 4355 | cdb[4] = (u8) (disk_block >> 8); |
| 4356 | cdb[5] = (u8) (disk_block); |
| 4357 | cdb[6] = 0; |
| 4358 | cdb[7] = (u8) (disk_block_cnt >> 8); |
| 4359 | cdb[8] = (u8) (disk_block_cnt); |
| 4360 | cdb[9] = 0; |
| 4361 | cdb_len = 10; |
| 4362 | } |
| 4363 | return hpsa_scsi_ioaccel_queue_command(h, c, disk_handle, cdb, cdb_len, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4364 | dev->scsi3addr, |
| 4365 | dev->phys_disk[map_index]); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4366 | } |
| 4367 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4368 | /* |
| 4369 | * Submit commands down the "normal" RAID stack path |
| 4370 | * All callers to hpsa_ciss_submit must check lockup_detected |
| 4371 | * beforehand, before (opt.) and after calling cmd_alloc |
| 4372 | */ |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4373 | static int hpsa_ciss_submit(struct ctlr_info *h, |
| 4374 | struct CommandList *c, struct scsi_cmnd *cmd, |
| 4375 | unsigned char scsi3addr[]) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4376 | { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4377 | cmd->host_scribble = (unsigned char *) c; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4378 | c->cmd_type = CMD_SCSI; |
| 4379 | c->scsi_cmd = cmd; |
| 4380 | c->Header.ReplyQueue = 0; /* unused in simple mode */ |
| 4381 | memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8); |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 4382 | c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4383 | |
| 4384 | /* Fill in the request block... */ |
| 4385 | |
| 4386 | c->Request.Timeout = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4387 | BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB)); |
| 4388 | c->Request.CDBLen = cmd->cmd_len; |
| 4389 | memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4390 | switch (cmd->sc_data_direction) { |
| 4391 | case DMA_TO_DEVICE: |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 4392 | c->Request.type_attr_dir = |
| 4393 | TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4394 | break; |
| 4395 | case DMA_FROM_DEVICE: |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 4396 | c->Request.type_attr_dir = |
| 4397 | TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4398 | break; |
| 4399 | case DMA_NONE: |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 4400 | c->Request.type_attr_dir = |
| 4401 | TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4402 | break; |
| 4403 | case DMA_BIDIRECTIONAL: |
| 4404 | /* This can happen if a buggy application does a scsi passthru |
| 4405 | * and sets both inlen and outlen to non-zero. ( see |
| 4406 | * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() ) |
| 4407 | */ |
| 4408 | |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 4409 | c->Request.type_attr_dir = |
| 4410 | TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4411 | /* This is technically wrong, and hpsa controllers should |
| 4412 | * reject it with CMD_INVALID, which is the most correct |
| 4413 | * response, but non-fibre backends appear to let it |
| 4414 | * slide by, and give the same results as if this field |
| 4415 | * were set correctly. Either way is acceptable for |
| 4416 | * our purposes here. |
| 4417 | */ |
| 4418 | |
| 4419 | break; |
| 4420 | |
| 4421 | default: |
| 4422 | dev_err(&h->pdev->dev, "unknown data direction: %d\n", |
| 4423 | cmd->sc_data_direction); |
| 4424 | BUG(); |
| 4425 | break; |
| 4426 | } |
| 4427 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 4428 | if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4429 | cmd_free(h, c); |
| 4430 | return SCSI_MLQUEUE_HOST_BUSY; |
| 4431 | } |
| 4432 | enqueue_cmd_and_start_io(h, c); |
| 4433 | /* the cmd'll come back via intr handler in complete_scsi_command() */ |
| 4434 | return 0; |
| 4435 | } |
| 4436 | |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 4437 | static void hpsa_cmd_init(struct ctlr_info *h, int index, |
| 4438 | struct CommandList *c) |
| 4439 | { |
| 4440 | dma_addr_t cmd_dma_handle, err_dma_handle; |
| 4441 | |
| 4442 | /* Zero out all of commandlist except the last field, refcount */ |
| 4443 | memset(c, 0, offsetof(struct CommandList, refcount)); |
| 4444 | c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT)); |
| 4445 | cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c); |
| 4446 | c->err_info = h->errinfo_pool + index; |
| 4447 | memset(c->err_info, 0, sizeof(*c->err_info)); |
| 4448 | err_dma_handle = h->errinfo_pool_dhandle |
| 4449 | + index * sizeof(*c->err_info); |
| 4450 | c->cmdindex = index; |
| 4451 | c->busaddr = (u32) cmd_dma_handle; |
| 4452 | c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle); |
| 4453 | c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info)); |
| 4454 | c->h = h; |
| 4455 | } |
| 4456 | |
| 4457 | static void hpsa_preinitialize_commands(struct ctlr_info *h) |
| 4458 | { |
| 4459 | int i; |
| 4460 | |
| 4461 | for (i = 0; i < h->nr_cmds; i++) { |
| 4462 | struct CommandList *c = h->cmd_pool + i; |
| 4463 | |
| 4464 | hpsa_cmd_init(h, i, c); |
| 4465 | atomic_set(&c->refcount, 0); |
| 4466 | } |
| 4467 | } |
| 4468 | |
| 4469 | static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index, |
| 4470 | struct CommandList *c) |
| 4471 | { |
| 4472 | dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c); |
| 4473 | |
| 4474 | memset(c->Request.CDB, 0, sizeof(c->Request.CDB)); |
| 4475 | memset(c->err_info, 0, sizeof(*c->err_info)); |
| 4476 | c->busaddr = (u32) cmd_dma_handle; |
| 4477 | } |
| 4478 | |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4479 | static int hpsa_ioaccel_submit(struct ctlr_info *h, |
| 4480 | struct CommandList *c, struct scsi_cmnd *cmd, |
| 4481 | unsigned char *scsi3addr) |
| 4482 | { |
| 4483 | struct hpsa_scsi_dev_t *dev = cmd->device->hostdata; |
| 4484 | int rc = IO_ACCEL_INELIGIBLE; |
| 4485 | |
| 4486 | cmd->host_scribble = (unsigned char *) c; |
| 4487 | |
| 4488 | if (dev->offload_enabled) { |
| 4489 | hpsa_cmd_init(h, c->cmdindex, c); |
| 4490 | c->cmd_type = CMD_SCSI; |
| 4491 | c->scsi_cmd = cmd; |
| 4492 | rc = hpsa_scsi_ioaccel_raid_map(h, c); |
| 4493 | if (rc < 0) /* scsi_dma_map failed. */ |
| 4494 | rc = SCSI_MLQUEUE_HOST_BUSY; |
Joe Handzik | a3144e0 | 2015-04-23 09:32:59 -0500 | [diff] [blame] | 4495 | } else if (dev->hba_ioaccel_enabled) { |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4496 | hpsa_cmd_init(h, c->cmdindex, c); |
| 4497 | c->cmd_type = CMD_SCSI; |
| 4498 | c->scsi_cmd = cmd; |
| 4499 | rc = hpsa_scsi_ioaccel_direct_map(h, c); |
| 4500 | if (rc < 0) /* scsi_dma_map failed. */ |
| 4501 | rc = SCSI_MLQUEUE_HOST_BUSY; |
| 4502 | } |
| 4503 | return rc; |
| 4504 | } |
| 4505 | |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 4506 | static void hpsa_command_resubmit_worker(struct work_struct *work) |
| 4507 | { |
| 4508 | struct scsi_cmnd *cmd; |
| 4509 | struct hpsa_scsi_dev_t *dev; |
| 4510 | struct CommandList *c = |
| 4511 | container_of(work, struct CommandList, work); |
| 4512 | |
| 4513 | cmd = c->scsi_cmd; |
| 4514 | dev = cmd->device->hostdata; |
| 4515 | if (!dev) { |
| 4516 | cmd->result = DID_NO_CONNECT << 16; |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4517 | cmd_free(c->h, c); |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 4518 | cmd->scsi_done(cmd); |
| 4519 | return; |
| 4520 | } |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4521 | if (c->cmd_type == CMD_IOACCEL2) { |
| 4522 | struct ctlr_info *h = c->h; |
| 4523 | struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 4524 | int rc; |
| 4525 | |
| 4526 | if (c2->error_data.serv_response == |
| 4527 | IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) { |
| 4528 | rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr); |
| 4529 | if (rc == 0) |
| 4530 | return; |
| 4531 | if (rc == SCSI_MLQUEUE_HOST_BUSY) { |
| 4532 | /* |
| 4533 | * If we get here, it means dma mapping failed. |
| 4534 | * Try again via scsi mid layer, which will |
| 4535 | * then get SCSI_MLQUEUE_HOST_BUSY. |
| 4536 | */ |
| 4537 | cmd->result = DID_IMM_RETRY << 16; |
| 4538 | cmd->scsi_done(cmd); |
| 4539 | cmd_free(h, c); /* FIX-ME: on merge, change |
| 4540 | * to cmd_tagged_free() and |
| 4541 | * ultimately to |
| 4542 | * hpsa_cmd_free_and_done(). */ |
| 4543 | return; |
| 4544 | } |
| 4545 | /* else, fall thru and resubmit down CISS path */ |
| 4546 | } |
| 4547 | } |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 4548 | hpsa_cmd_partial_init(c->h, c->cmdindex, c); |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 4549 | if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) { |
| 4550 | /* |
| 4551 | * If we get here, it means dma mapping failed. Try |
| 4552 | * again via scsi mid layer, which will then get |
| 4553 | * SCSI_MLQUEUE_HOST_BUSY. |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4554 | * |
| 4555 | * hpsa_ciss_submit will have already freed c |
| 4556 | * if it encountered a dma mapping failure. |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 4557 | */ |
| 4558 | cmd->result = DID_IMM_RETRY << 16; |
| 4559 | cmd->scsi_done(cmd); |
| 4560 | } |
| 4561 | } |
| 4562 | |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4563 | /* Running in struct Scsi_Host->host_lock less mode */ |
| 4564 | static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd) |
| 4565 | { |
| 4566 | struct ctlr_info *h; |
| 4567 | struct hpsa_scsi_dev_t *dev; |
| 4568 | unsigned char scsi3addr[8]; |
| 4569 | struct CommandList *c; |
| 4570 | int rc = 0; |
| 4571 | |
| 4572 | /* Get the ptr to our adapter structure out of cmd->host. */ |
| 4573 | h = sdev_to_hba(cmd->device); |
| 4574 | dev = cmd->device->hostdata; |
| 4575 | if (!dev) { |
| 4576 | cmd->result = DID_NO_CONNECT << 16; |
| 4577 | cmd->scsi_done(cmd); |
| 4578 | return 0; |
| 4579 | } |
| 4580 | memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr)); |
| 4581 | |
| 4582 | if (unlikely(lockup_detected(h))) { |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4583 | cmd->result = DID_NO_CONNECT << 16; |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4584 | cmd->scsi_done(cmd); |
| 4585 | return 0; |
| 4586 | } |
| 4587 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 4588 | |
Stephen Cameron | 407863c | 2015-01-23 16:44:19 -0600 | [diff] [blame] | 4589 | if (unlikely(lockup_detected(h))) { |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4590 | cmd->result = DID_NO_CONNECT << 16; |
Stephen Cameron | 407863c | 2015-01-23 16:44:19 -0600 | [diff] [blame] | 4591 | cmd_free(h, c); |
| 4592 | cmd->scsi_done(cmd); |
| 4593 | return 0; |
| 4594 | } |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4595 | |
Stephen Cameron | 407863c | 2015-01-23 16:44:19 -0600 | [diff] [blame] | 4596 | /* |
| 4597 | * Call alternate submit routine for I/O accelerated commands. |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4598 | * Retries always go down the normal I/O path. |
| 4599 | */ |
| 4600 | if (likely(cmd->retries == 0 && |
| 4601 | cmd->request->cmd_type == REQ_TYPE_FS && |
| 4602 | h->acciopath_status)) { |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4603 | rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr); |
| 4604 | if (rc == 0) |
| 4605 | return 0; |
| 4606 | if (rc == SCSI_MLQUEUE_HOST_BUSY) { |
| 4607 | cmd_free(h, c); /* FIX-ME: on merge, change to |
| 4608 | * cmd_tagged_free(), and ultimately |
| 4609 | * to hpsa_cmd_resolve_and_free(). */ |
| 4610 | return SCSI_MLQUEUE_HOST_BUSY; |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4611 | } |
| 4612 | } |
| 4613 | return hpsa_ciss_submit(h, c, cmd, scsi3addr); |
| 4614 | } |
| 4615 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 4616 | static void hpsa_scan_complete(struct ctlr_info *h) |
Stephen M. Cameron | 5f38936 | 2014-02-18 13:55:48 -0600 | [diff] [blame] | 4617 | { |
| 4618 | unsigned long flags; |
| 4619 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 4620 | spin_lock_irqsave(&h->scan_lock, flags); |
| 4621 | h->scan_finished = 1; |
| 4622 | wake_up_all(&h->scan_wait_queue); |
| 4623 | spin_unlock_irqrestore(&h->scan_lock, flags); |
Stephen M. Cameron | 5f38936 | 2014-02-18 13:55:48 -0600 | [diff] [blame] | 4624 | } |
| 4625 | |
Stephen M. Cameron | a08a8471 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 4626 | static void hpsa_scan_start(struct Scsi_Host *sh) |
| 4627 | { |
| 4628 | struct ctlr_info *h = shost_to_hba(sh); |
| 4629 | unsigned long flags; |
| 4630 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 4631 | /* |
| 4632 | * Don't let rescans be initiated on a controller known to be locked |
| 4633 | * up. If the controller locks up *during* a rescan, that thread is |
| 4634 | * probably hosed, but at least we can prevent new rescan threads from |
| 4635 | * piling up on a locked up controller. |
| 4636 | */ |
| 4637 | if (unlikely(lockup_detected(h))) |
| 4638 | return hpsa_scan_complete(h); |
Stephen M. Cameron | 5f38936 | 2014-02-18 13:55:48 -0600 | [diff] [blame] | 4639 | |
Stephen M. Cameron | a08a8471 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 4640 | /* wait until any scan already in progress is finished. */ |
| 4641 | while (1) { |
| 4642 | spin_lock_irqsave(&h->scan_lock, flags); |
| 4643 | if (h->scan_finished) |
| 4644 | break; |
| 4645 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 4646 | wait_event(h->scan_wait_queue, h->scan_finished); |
| 4647 | /* Note: We don't need to worry about a race between this |
| 4648 | * thread and driver unload because the midlayer will |
| 4649 | * have incremented the reference count, so unload won't |
| 4650 | * happen if we're in here. |
| 4651 | */ |
| 4652 | } |
| 4653 | h->scan_finished = 0; /* mark scan as in progress */ |
| 4654 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 4655 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 4656 | if (unlikely(lockup_detected(h))) |
| 4657 | return hpsa_scan_complete(h); |
Stephen M. Cameron | 5f38936 | 2014-02-18 13:55:48 -0600 | [diff] [blame] | 4658 | |
Stephen M. Cameron | a08a8471 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 4659 | hpsa_update_scsi_devices(h, h->scsi_host->host_no); |
| 4660 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 4661 | hpsa_scan_complete(h); |
Stephen M. Cameron | a08a8471 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 4662 | } |
| 4663 | |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 4664 | static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth) |
| 4665 | { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4666 | struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata; |
| 4667 | |
| 4668 | if (!logical_drive) |
| 4669 | return -ENODEV; |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 4670 | |
| 4671 | if (qdepth < 1) |
| 4672 | qdepth = 1; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4673 | else if (qdepth > logical_drive->queue_depth) |
| 4674 | qdepth = logical_drive->queue_depth; |
| 4675 | |
| 4676 | return scsi_change_queue_depth(sdev, qdepth); |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 4677 | } |
| 4678 | |
Stephen M. Cameron | a08a8471 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 4679 | static int hpsa_scan_finished(struct Scsi_Host *sh, |
| 4680 | unsigned long elapsed_time) |
| 4681 | { |
| 4682 | struct ctlr_info *h = shost_to_hba(sh); |
| 4683 | unsigned long flags; |
| 4684 | int finished; |
| 4685 | |
| 4686 | spin_lock_irqsave(&h->scan_lock, flags); |
| 4687 | finished = h->scan_finished; |
| 4688 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 4689 | return finished; |
| 4690 | } |
| 4691 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4692 | static void hpsa_unregister_scsi(struct ctlr_info *h) |
| 4693 | { |
| 4694 | /* we are being forcibly unloaded, and may not refuse. */ |
| 4695 | scsi_remove_host(h->scsi_host); |
| 4696 | scsi_host_put(h->scsi_host); |
| 4697 | h->scsi_host = NULL; |
| 4698 | } |
| 4699 | |
| 4700 | static int hpsa_register_scsi(struct ctlr_info *h) |
| 4701 | { |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 4702 | struct Scsi_Host *sh; |
| 4703 | int error; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4704 | |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 4705 | sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h)); |
| 4706 | if (sh == NULL) |
| 4707 | goto fail; |
| 4708 | |
| 4709 | sh->io_port = 0; |
| 4710 | sh->n_io_port = 0; |
| 4711 | sh->this_id = -1; |
| 4712 | sh->max_channel = 3; |
| 4713 | sh->max_cmd_len = MAX_COMMAND_SIZE; |
| 4714 | sh->max_lun = HPSA_MAX_LUN; |
| 4715 | sh->max_id = HPSA_MAX_LUN; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 4716 | sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4717 | sh->cmd_per_lun = sh->can_queue; |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 4718 | sh->sg_tablesize = h->maxsgentries; |
| 4719 | h->scsi_host = sh; |
| 4720 | sh->hostdata[0] = (unsigned long) h; |
| 4721 | sh->irq = h->intr[h->intr_mode]; |
| 4722 | sh->unique_id = sh->irq; |
| 4723 | error = scsi_add_host(sh, &h->pdev->dev); |
| 4724 | if (error) |
| 4725 | goto fail_host_put; |
| 4726 | scsi_scan_host(sh); |
| 4727 | return 0; |
| 4728 | |
| 4729 | fail_host_put: |
| 4730 | dev_err(&h->pdev->dev, "%s: scsi_add_host" |
| 4731 | " failed for controller %d\n", __func__, h->ctlr); |
| 4732 | scsi_host_put(sh); |
| 4733 | return error; |
| 4734 | fail: |
| 4735 | dev_err(&h->pdev->dev, "%s: scsi_host_alloc" |
| 4736 | " failed for controller %d\n", __func__, h->ctlr); |
| 4737 | return -ENOMEM; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4738 | } |
| 4739 | |
| 4740 | static int wait_for_device_to_become_ready(struct ctlr_info *h, |
| 4741 | unsigned char lunaddr[]) |
| 4742 | { |
Tomas Henzl | 8919358 | 2014-02-21 16:25:05 -0600 | [diff] [blame] | 4743 | int rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4744 | int count = 0; |
| 4745 | int waittime = 1; /* seconds */ |
| 4746 | struct CommandList *c; |
| 4747 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 4748 | c = cmd_alloc(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4749 | |
| 4750 | /* Send test unit ready until device ready, or give up. */ |
| 4751 | while (count < HPSA_TUR_RETRY_LIMIT) { |
| 4752 | |
| 4753 | /* Wait for a bit. do this first, because if we send |
| 4754 | * the TUR right away, the reset will just abort it. |
| 4755 | */ |
| 4756 | msleep(1000 * waittime); |
| 4757 | count++; |
Tomas Henzl | 8919358 | 2014-02-21 16:25:05 -0600 | [diff] [blame] | 4758 | rc = 0; /* Device ready. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4759 | |
| 4760 | /* Increase wait time with each try, up to a point. */ |
| 4761 | if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS) |
| 4762 | waittime = waittime * 2; |
| 4763 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 4764 | /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */ |
| 4765 | (void) fill_cmd(c, TEST_UNIT_READY, h, |
| 4766 | NULL, 0, 0, lunaddr, TYPE_CMD); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4767 | rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, |
| 4768 | NO_TIMEOUT); |
| 4769 | if (rc) |
| 4770 | goto do_it_again; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4771 | /* no unmap needed here because no data xfer. */ |
| 4772 | |
| 4773 | if (c->err_info->CommandStatus == CMD_SUCCESS) |
| 4774 | break; |
| 4775 | |
| 4776 | if (c->err_info->CommandStatus == CMD_TARGET_STATUS && |
| 4777 | c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION && |
| 4778 | (c->err_info->SenseInfo[2] == NO_SENSE || |
| 4779 | c->err_info->SenseInfo[2] == UNIT_ATTENTION)) |
| 4780 | break; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4781 | do_it_again: |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4782 | dev_warn(&h->pdev->dev, "waiting %d secs " |
| 4783 | "for device to become ready.\n", waittime); |
| 4784 | rc = 1; /* device not ready. */ |
| 4785 | } |
| 4786 | |
| 4787 | if (rc) |
| 4788 | dev_warn(&h->pdev->dev, "giving up on device.\n"); |
| 4789 | else |
| 4790 | dev_warn(&h->pdev->dev, "device is ready.\n"); |
| 4791 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 4792 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4793 | return rc; |
| 4794 | } |
| 4795 | |
| 4796 | /* Need at least one of these error handlers to keep ../scsi/hosts.c from |
| 4797 | * complaining. Doing a host- or bus-reset can't do anything good here. |
| 4798 | */ |
| 4799 | static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd) |
| 4800 | { |
| 4801 | int rc; |
| 4802 | struct ctlr_info *h; |
| 4803 | struct hpsa_scsi_dev_t *dev; |
| 4804 | |
| 4805 | /* find the controller to which the command to be aborted was sent */ |
| 4806 | h = sdev_to_hba(scsicmd->device); |
| 4807 | if (h == NULL) /* paranoia */ |
| 4808 | return FAILED; |
Don Brace | e345893 | 2015-01-23 16:44:24 -0600 | [diff] [blame] | 4809 | |
| 4810 | if (lockup_detected(h)) |
| 4811 | return FAILED; |
| 4812 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4813 | dev = scsicmd->device->hostdata; |
| 4814 | if (!dev) { |
| 4815 | dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: " |
| 4816 | "device lookup failed.\n"); |
| 4817 | return FAILED; |
| 4818 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4819 | |
| 4820 | /* if controller locked up, we can guarantee command won't complete */ |
| 4821 | if (lockup_detected(h)) { |
| 4822 | dev_warn(&h->pdev->dev, |
| 4823 | "scsi %d:%d:%d:%d RESET FAILED, lockup detected\n", |
| 4824 | h->scsi_host->host_no, dev->bus, dev->target, |
| 4825 | dev->lun); |
| 4826 | return FAILED; |
| 4827 | } |
| 4828 | |
| 4829 | /* this reset request might be the result of a lockup; check */ |
| 4830 | if (detect_controller_lockup(h)) { |
| 4831 | dev_warn(&h->pdev->dev, |
| 4832 | "scsi %d:%d:%d:%d RESET FAILED, new lockup detected\n", |
| 4833 | h->scsi_host->host_no, dev->bus, dev->target, |
| 4834 | dev->lun); |
| 4835 | return FAILED; |
| 4836 | } |
| 4837 | |
| 4838 | hpsa_show_dev_msg(KERN_WARNING, h, dev, "resetting"); |
| 4839 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4840 | /* send a reset to the SCSI LUN which the command was sent to */ |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4841 | rc = hpsa_send_reset(h, dev->scsi3addr, HPSA_RESET_TYPE_LUN, |
| 4842 | DEFAULT_REPLY_QUEUE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4843 | if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0) |
| 4844 | return SUCCESS; |
| 4845 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4846 | dev_warn(&h->pdev->dev, |
| 4847 | "scsi %d:%d:%d:%d reset failed\n", |
| 4848 | h->scsi_host->host_no, dev->bus, dev->target, dev->lun); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4849 | return FAILED; |
| 4850 | } |
| 4851 | |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 4852 | static void swizzle_abort_tag(u8 *tag) |
| 4853 | { |
| 4854 | u8 original_tag[8]; |
| 4855 | |
| 4856 | memcpy(original_tag, tag, 8); |
| 4857 | tag[0] = original_tag[3]; |
| 4858 | tag[1] = original_tag[2]; |
| 4859 | tag[2] = original_tag[1]; |
| 4860 | tag[3] = original_tag[0]; |
| 4861 | tag[4] = original_tag[7]; |
| 4862 | tag[5] = original_tag[6]; |
| 4863 | tag[6] = original_tag[5]; |
| 4864 | tag[7] = original_tag[4]; |
| 4865 | } |
| 4866 | |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 4867 | static void hpsa_get_tag(struct ctlr_info *h, |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4868 | struct CommandList *c, __le32 *taglower, __le32 *tagupper) |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 4869 | { |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4870 | u64 tag; |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 4871 | if (c->cmd_type == CMD_IOACCEL1) { |
| 4872 | struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *) |
| 4873 | &h->ioaccel_cmd_pool[c->cmdindex]; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4874 | tag = le64_to_cpu(cm1->tag); |
| 4875 | *tagupper = cpu_to_le32(tag >> 32); |
| 4876 | *taglower = cpu_to_le32(tag); |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 4877 | return; |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 4878 | } |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 4879 | if (c->cmd_type == CMD_IOACCEL2) { |
| 4880 | struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *) |
| 4881 | &h->ioaccel2_cmd_pool[c->cmdindex]; |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4882 | /* upper tag not used in ioaccel2 mode */ |
| 4883 | memset(tagupper, 0, sizeof(*tagupper)); |
| 4884 | *taglower = cm2->Tag; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 4885 | return; |
| 4886 | } |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4887 | tag = le64_to_cpu(c->Header.tag); |
| 4888 | *tagupper = cpu_to_le32(tag >> 32); |
| 4889 | *taglower = cpu_to_le32(tag); |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 4890 | } |
| 4891 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 4892 | static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr, |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 4893 | struct CommandList *abort, int reply_queue) |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 4894 | { |
| 4895 | int rc = IO_OK; |
| 4896 | struct CommandList *c; |
| 4897 | struct ErrorInfo *ei; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4898 | __le32 tagupper, taglower; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 4899 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 4900 | c = cmd_alloc(h); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 4901 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 4902 | /* fill_cmd can't fail here, no buffer to map */ |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 4903 | (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag, |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 4904 | 0, 0, scsi3addr, TYPE_MSG); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 4905 | if (h->needs_abort_tags_swizzled) |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 4906 | swizzle_abort_tag(&c->Request.CDB[4]); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4907 | (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT); |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 4908 | hpsa_get_tag(h, abort, &taglower, &tagupper); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4909 | dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: do_simple_cmd(abort) completed.\n", |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 4910 | __func__, tagupper, taglower); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 4911 | /* no unmap needed here because no data xfer. */ |
| 4912 | |
| 4913 | ei = c->err_info; |
| 4914 | switch (ei->CommandStatus) { |
| 4915 | case CMD_SUCCESS: |
| 4916 | break; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 4917 | case CMD_TMF_STATUS: |
| 4918 | rc = hpsa_evaluate_tmf_status(h, c); |
| 4919 | break; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 4920 | case CMD_UNABORTABLE: /* Very common, don't make noise. */ |
| 4921 | rc = -1; |
| 4922 | break; |
| 4923 | default: |
| 4924 | dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: interpreting error.\n", |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 4925 | __func__, tagupper, taglower); |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 4926 | hpsa_scsi_interpret_error(h, c); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 4927 | rc = -1; |
| 4928 | break; |
| 4929 | } |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 4930 | cmd_free(h, c); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4931 | dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", |
| 4932 | __func__, tagupper, taglower); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 4933 | return rc; |
| 4934 | } |
| 4935 | |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 4936 | /* ioaccel2 path firmware cannot handle abort task requests. |
| 4937 | * Change abort requests to physical target reset, and send to the |
| 4938 | * address of the physical disk used for the ioaccel 2 command. |
| 4939 | * Return 0 on success (IO_OK) |
| 4940 | * -1 on failure |
| 4941 | */ |
| 4942 | |
| 4943 | static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4944 | unsigned char *scsi3addr, struct CommandList *abort, int reply_queue) |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 4945 | { |
| 4946 | int rc = IO_OK; |
| 4947 | struct scsi_cmnd *scmd; /* scsi command within request being aborted */ |
| 4948 | struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */ |
| 4949 | unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */ |
| 4950 | unsigned char *psa = &phys_scsi3addr[0]; |
| 4951 | |
| 4952 | /* Get a pointer to the hpsa logical device. */ |
Stephen Cameron | 7fa3030 | 2015-01-23 16:44:30 -0600 | [diff] [blame] | 4953 | scmd = abort->scsi_cmd; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 4954 | dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata); |
| 4955 | if (dev == NULL) { |
| 4956 | dev_warn(&h->pdev->dev, |
| 4957 | "Cannot abort: no device pointer for command.\n"); |
| 4958 | return -1; /* not abortable */ |
| 4959 | } |
| 4960 | |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 4961 | if (h->raid_offload_debug > 0) |
| 4962 | dev_info(&h->pdev->dev, |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 4963 | "scsi %d:%d:%d:%d %s scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 4964 | h->scsi_host->host_no, dev->bus, dev->target, dev->lun, |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 4965 | "Reset as abort", |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 4966 | scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3], |
| 4967 | scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]); |
| 4968 | |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 4969 | if (!dev->offload_enabled) { |
| 4970 | dev_warn(&h->pdev->dev, |
| 4971 | "Can't abort: device is not operating in HP SSD Smart Path mode.\n"); |
| 4972 | return -1; /* not abortable */ |
| 4973 | } |
| 4974 | |
| 4975 | /* Incoming scsi3addr is logical addr. We need physical disk addr. */ |
| 4976 | if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) { |
| 4977 | dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n"); |
| 4978 | return -1; /* not abortable */ |
| 4979 | } |
| 4980 | |
| 4981 | /* send the reset */ |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 4982 | if (h->raid_offload_debug > 0) |
| 4983 | dev_info(&h->pdev->dev, |
| 4984 | "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 4985 | psa[0], psa[1], psa[2], psa[3], |
| 4986 | psa[4], psa[5], psa[6], psa[7]); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4987 | rc = hpsa_send_reset(h, psa, HPSA_RESET_TYPE_TARGET, reply_queue); |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 4988 | if (rc != 0) { |
| 4989 | dev_warn(&h->pdev->dev, |
| 4990 | "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 4991 | psa[0], psa[1], psa[2], psa[3], |
| 4992 | psa[4], psa[5], psa[6], psa[7]); |
| 4993 | return rc; /* failed to reset */ |
| 4994 | } |
| 4995 | |
| 4996 | /* wait for device to recover */ |
| 4997 | if (wait_for_device_to_become_ready(h, psa) != 0) { |
| 4998 | dev_warn(&h->pdev->dev, |
| 4999 | "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 5000 | psa[0], psa[1], psa[2], psa[3], |
| 5001 | psa[4], psa[5], psa[6], psa[7]); |
| 5002 | return -1; /* failed to recover */ |
| 5003 | } |
| 5004 | |
| 5005 | /* device recovered */ |
| 5006 | dev_info(&h->pdev->dev, |
| 5007 | "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 5008 | psa[0], psa[1], psa[2], psa[3], |
| 5009 | psa[4], psa[5], psa[6], psa[7]); |
| 5010 | |
| 5011 | return rc; /* success */ |
| 5012 | } |
| 5013 | |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 5014 | static int hpsa_send_abort_both_ways(struct ctlr_info *h, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5015 | unsigned char *scsi3addr, struct CommandList *abort, int reply_queue) |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 5016 | { |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5017 | /* ioccelerator mode 2 commands should be aborted via the |
| 5018 | * accelerated path, since RAID path is unaware of these commands, |
| 5019 | * but underlying firmware can't handle abort TMF. |
| 5020 | * Change abort to physical device reset. |
| 5021 | */ |
| 5022 | if (abort->cmd_type == CMD_IOACCEL2) |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5023 | return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr, |
| 5024 | abort, reply_queue); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5025 | return hpsa_send_abort(h, scsi3addr, abort, reply_queue); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5026 | } |
| 5027 | |
| 5028 | /* Find out which reply queue a command was meant to return on */ |
| 5029 | static int hpsa_extract_reply_queue(struct ctlr_info *h, |
| 5030 | struct CommandList *c) |
| 5031 | { |
| 5032 | if (c->cmd_type == CMD_IOACCEL2) |
| 5033 | return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue; |
| 5034 | return c->Header.ReplyQueue; |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 5035 | } |
| 5036 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5037 | /* |
| 5038 | * Limit concurrency of abort commands to prevent |
| 5039 | * over-subscription of commands |
| 5040 | */ |
| 5041 | static inline int wait_for_available_abort_cmd(struct ctlr_info *h) |
| 5042 | { |
| 5043 | #define ABORT_CMD_WAIT_MSECS 5000 |
| 5044 | return !wait_event_timeout(h->abort_cmd_wait_queue, |
| 5045 | atomic_dec_if_positive(&h->abort_cmds_available) >= 0, |
| 5046 | msecs_to_jiffies(ABORT_CMD_WAIT_MSECS)); |
| 5047 | } |
| 5048 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5049 | /* Send an abort for the specified command. |
| 5050 | * If the device and controller support it, |
| 5051 | * send a task abort request. |
| 5052 | */ |
| 5053 | static int hpsa_eh_abort_handler(struct scsi_cmnd *sc) |
| 5054 | { |
| 5055 | |
| 5056 | int i, rc; |
| 5057 | struct ctlr_info *h; |
| 5058 | struct hpsa_scsi_dev_t *dev; |
| 5059 | struct CommandList *abort; /* pointer to command to be aborted */ |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5060 | struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */ |
| 5061 | char msg[256]; /* For debug messaging. */ |
| 5062 | int ml = 0; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5063 | __le32 tagupper, taglower; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5064 | int refcount, reply_queue; |
| 5065 | |
| 5066 | if (sc == NULL) |
| 5067 | return FAILED; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5068 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5069 | if (sc->device == NULL) |
| 5070 | return FAILED; |
| 5071 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5072 | /* Find the controller of the command to be aborted */ |
| 5073 | h = sdev_to_hba(sc->device); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5074 | if (h == NULL) |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5075 | return FAILED; |
| 5076 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5077 | /* Find the device of the command to be aborted */ |
| 5078 | dev = sc->device->hostdata; |
| 5079 | if (!dev) { |
| 5080 | dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n", |
| 5081 | msg); |
Don Brace | e345893 | 2015-01-23 16:44:24 -0600 | [diff] [blame] | 5082 | return FAILED; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5083 | } |
| 5084 | |
| 5085 | /* If controller locked up, we can guarantee command won't complete */ |
| 5086 | if (lockup_detected(h)) { |
| 5087 | hpsa_show_dev_msg(KERN_WARNING, h, dev, |
| 5088 | "ABORT FAILED, lockup detected"); |
| 5089 | return FAILED; |
| 5090 | } |
| 5091 | |
| 5092 | /* This is a good time to check if controller lockup has occurred */ |
| 5093 | if (detect_controller_lockup(h)) { |
| 5094 | hpsa_show_dev_msg(KERN_WARNING, h, dev, |
| 5095 | "ABORT FAILED, new lockup detected"); |
| 5096 | return FAILED; |
| 5097 | } |
Don Brace | e345893 | 2015-01-23 16:44:24 -0600 | [diff] [blame] | 5098 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5099 | /* Check that controller supports some kind of task abort */ |
| 5100 | if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) && |
| 5101 | !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags)) |
| 5102 | return FAILED; |
| 5103 | |
| 5104 | memset(msg, 0, sizeof(msg)); |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 5105 | ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s", |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5106 | h->scsi_host->host_no, sc->device->channel, |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 5107 | sc->device->id, sc->device->lun, |
| 5108 | "Aborting command"); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5109 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5110 | /* Get SCSI command to be aborted */ |
| 5111 | abort = (struct CommandList *) sc->host_scribble; |
| 5112 | if (abort == NULL) { |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5113 | /* This can happen if the command already completed. */ |
| 5114 | return SUCCESS; |
| 5115 | } |
| 5116 | refcount = atomic_inc_return(&abort->refcount); |
| 5117 | if (refcount == 1) { /* Command is done already. */ |
| 5118 | cmd_free(h, abort); |
| 5119 | return SUCCESS; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5120 | } |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5121 | |
| 5122 | /* Don't bother trying the abort if we know it won't work. */ |
| 5123 | if (abort->cmd_type != CMD_IOACCEL2 && |
| 5124 | abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) { |
| 5125 | cmd_free(h, abort); |
| 5126 | return FAILED; |
| 5127 | } |
| 5128 | |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5129 | hpsa_get_tag(h, abort, &taglower, &tagupper); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5130 | reply_queue = hpsa_extract_reply_queue(h, abort); |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5131 | ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower); |
Stephen Cameron | 7fa3030 | 2015-01-23 16:44:30 -0600 | [diff] [blame] | 5132 | as = abort->scsi_cmd; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5133 | if (as != NULL) |
| 5134 | ml += sprintf(msg+ml, "Command:0x%x SN:0x%lx ", |
| 5135 | as->cmnd[0], as->serial_number); |
| 5136 | dev_dbg(&h->pdev->dev, "%s\n", msg); |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 5137 | hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command"); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5138 | /* |
| 5139 | * Command is in flight, or possibly already completed |
| 5140 | * by the firmware (but not to the scsi mid layer) but we can't |
| 5141 | * distinguish which. Send the abort down. |
| 5142 | */ |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5143 | if (wait_for_available_abort_cmd(h)) { |
| 5144 | dev_warn(&h->pdev->dev, |
| 5145 | "Timed out waiting for an abort command to become available.\n"); |
| 5146 | cmd_free(h, abort); |
| 5147 | return FAILED; |
| 5148 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5149 | rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5150 | atomic_inc(&h->abort_cmds_available); |
| 5151 | wake_up_all(&h->abort_cmd_wait_queue); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5152 | if (rc != 0) { |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 5153 | hpsa_show_dev_msg(KERN_WARNING, h, dev, |
| 5154 | "FAILED to abort command"); |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5155 | cmd_free(h, abort); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5156 | return FAILED; |
| 5157 | } |
| 5158 | dev_info(&h->pdev->dev, "%s REQUEST SUCCEEDED.\n", msg); |
| 5159 | |
| 5160 | /* If the abort(s) above completed and actually aborted the |
| 5161 | * command, then the command to be aborted should already be |
| 5162 | * completed. If not, wait around a bit more to see if they |
| 5163 | * manage to complete normally. |
| 5164 | */ |
| 5165 | #define ABORT_COMPLETE_WAIT_SECS 30 |
| 5166 | for (i = 0; i < ABORT_COMPLETE_WAIT_SECS * 10; i++) { |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5167 | refcount = atomic_read(&abort->refcount); |
| 5168 | if (refcount < 2) { |
| 5169 | cmd_free(h, abort); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5170 | return SUCCESS; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5171 | } else { |
| 5172 | msleep(100); |
| 5173 | } |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5174 | } |
| 5175 | dev_warn(&h->pdev->dev, "%s FAILED. Aborted command has not completed after %d seconds.\n", |
| 5176 | msg, ABORT_COMPLETE_WAIT_SECS); |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5177 | cmd_free(h, abort); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5178 | return FAILED; |
| 5179 | } |
| 5180 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5181 | /* |
| 5182 | * For operations that cannot sleep, a command block is allocated at init, |
| 5183 | * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track |
| 5184 | * which ones are free or in use. Lock must be held when calling this. |
| 5185 | * cmd_free() is the complement. |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 5186 | * This function never gives up and returns NULL. If it hangs, |
| 5187 | * another thread must call cmd_free() to free some tags. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5188 | */ |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5189 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5190 | static struct CommandList *cmd_alloc(struct ctlr_info *h) |
| 5191 | { |
| 5192 | struct CommandList *c; |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 5193 | int refcount, i; |
Robert Elliott | 3381102 | 2015-01-23 16:43:41 -0600 | [diff] [blame] | 5194 | unsigned long offset; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5195 | |
Robert Elliott | 3381102 | 2015-01-23 16:43:41 -0600 | [diff] [blame] | 5196 | /* |
| 5197 | * There is some *extremely* small but non-zero chance that that |
Stephen M. Cameron | 4c41312 | 2014-11-14 17:27:29 -0600 | [diff] [blame] | 5198 | * multiple threads could get in here, and one thread could |
| 5199 | * be scanning through the list of bits looking for a free |
| 5200 | * one, but the free ones are always behind him, and other |
| 5201 | * threads sneak in behind him and eat them before he can |
| 5202 | * get to them, so that while there is always a free one, a |
| 5203 | * very unlucky thread might be starved anyway, never able to |
| 5204 | * beat the other threads. In reality, this happens so |
| 5205 | * infrequently as to be indistinguishable from never. |
| 5206 | */ |
| 5207 | |
Robert Elliott | 3381102 | 2015-01-23 16:43:41 -0600 | [diff] [blame] | 5208 | offset = h->last_allocation; /* benignly racy */ |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5209 | for (;;) { |
| 5210 | i = find_next_zero_bit(h->cmd_pool_bits, h->nr_cmds, offset); |
| 5211 | if (unlikely(i == h->nr_cmds)) { |
| 5212 | offset = 0; |
| 5213 | continue; |
| 5214 | } |
| 5215 | c = h->cmd_pool + i; |
| 5216 | refcount = atomic_inc_return(&c->refcount); |
| 5217 | if (unlikely(refcount > 1)) { |
| 5218 | cmd_free(h, c); /* already in use */ |
| 5219 | offset = (i + 1) % h->nr_cmds; |
| 5220 | continue; |
| 5221 | } |
| 5222 | set_bit(i & (BITS_PER_LONG - 1), |
| 5223 | h->cmd_pool_bits + (i / BITS_PER_LONG)); |
| 5224 | break; /* it's ours now. */ |
| 5225 | } |
Robert Elliott | 3381102 | 2015-01-23 16:43:41 -0600 | [diff] [blame] | 5226 | h->last_allocation = i; /* benignly racy */ |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 5227 | hpsa_cmd_partial_init(h, i, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5228 | return c; |
| 5229 | } |
| 5230 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5231 | static void cmd_free(struct ctlr_info *h, struct CommandList *c) |
| 5232 | { |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5233 | if (atomic_dec_and_test(&c->refcount)) { |
| 5234 | int i; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5235 | |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5236 | i = c - h->cmd_pool; |
| 5237 | clear_bit(i & (BITS_PER_LONG - 1), |
| 5238 | h->cmd_pool_bits + (i / BITS_PER_LONG)); |
| 5239 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5240 | } |
| 5241 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5242 | #ifdef CONFIG_COMPAT |
| 5243 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5244 | static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd, |
| 5245 | void __user *arg) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5246 | { |
| 5247 | IOCTL32_Command_struct __user *arg32 = |
| 5248 | (IOCTL32_Command_struct __user *) arg; |
| 5249 | IOCTL_Command_struct arg64; |
| 5250 | IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64)); |
| 5251 | int err; |
| 5252 | u32 cp; |
| 5253 | |
Vasiliy Kulikov | 938abd8 | 2011-01-07 10:55:53 -0600 | [diff] [blame] | 5254 | memset(&arg64, 0, sizeof(arg64)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5255 | err = 0; |
| 5256 | err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info, |
| 5257 | sizeof(arg64.LUN_info)); |
| 5258 | err |= copy_from_user(&arg64.Request, &arg32->Request, |
| 5259 | sizeof(arg64.Request)); |
| 5260 | err |= copy_from_user(&arg64.error_info, &arg32->error_info, |
| 5261 | sizeof(arg64.error_info)); |
| 5262 | err |= get_user(arg64.buf_size, &arg32->buf_size); |
| 5263 | err |= get_user(cp, &arg32->buf); |
| 5264 | arg64.buf = compat_ptr(cp); |
| 5265 | err |= copy_to_user(p, &arg64, sizeof(arg64)); |
| 5266 | |
| 5267 | if (err) |
| 5268 | return -EFAULT; |
| 5269 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5270 | err = hpsa_ioctl(dev, CCISS_PASSTHRU, p); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5271 | if (err) |
| 5272 | return err; |
| 5273 | err |= copy_in_user(&arg32->error_info, &p->error_info, |
| 5274 | sizeof(arg32->error_info)); |
| 5275 | if (err) |
| 5276 | return -EFAULT; |
| 5277 | return err; |
| 5278 | } |
| 5279 | |
| 5280 | static int hpsa_ioctl32_big_passthru(struct scsi_device *dev, |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5281 | int cmd, void __user *arg) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5282 | { |
| 5283 | BIG_IOCTL32_Command_struct __user *arg32 = |
| 5284 | (BIG_IOCTL32_Command_struct __user *) arg; |
| 5285 | BIG_IOCTL_Command_struct arg64; |
| 5286 | BIG_IOCTL_Command_struct __user *p = |
| 5287 | compat_alloc_user_space(sizeof(arg64)); |
| 5288 | int err; |
| 5289 | u32 cp; |
| 5290 | |
Vasiliy Kulikov | 938abd8 | 2011-01-07 10:55:53 -0600 | [diff] [blame] | 5291 | memset(&arg64, 0, sizeof(arg64)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5292 | err = 0; |
| 5293 | err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info, |
| 5294 | sizeof(arg64.LUN_info)); |
| 5295 | err |= copy_from_user(&arg64.Request, &arg32->Request, |
| 5296 | sizeof(arg64.Request)); |
| 5297 | err |= copy_from_user(&arg64.error_info, &arg32->error_info, |
| 5298 | sizeof(arg64.error_info)); |
| 5299 | err |= get_user(arg64.buf_size, &arg32->buf_size); |
| 5300 | err |= get_user(arg64.malloc_size, &arg32->malloc_size); |
| 5301 | err |= get_user(cp, &arg32->buf); |
| 5302 | arg64.buf = compat_ptr(cp); |
| 5303 | err |= copy_to_user(p, &arg64, sizeof(arg64)); |
| 5304 | |
| 5305 | if (err) |
| 5306 | return -EFAULT; |
| 5307 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5308 | err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5309 | if (err) |
| 5310 | return err; |
| 5311 | err |= copy_in_user(&arg32->error_info, &p->error_info, |
| 5312 | sizeof(arg32->error_info)); |
| 5313 | if (err) |
| 5314 | return -EFAULT; |
| 5315 | return err; |
| 5316 | } |
Stephen M. Cameron | 71fe75a | 2010-02-04 08:43:51 -0600 | [diff] [blame] | 5317 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5318 | static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void __user *arg) |
Stephen M. Cameron | 71fe75a | 2010-02-04 08:43:51 -0600 | [diff] [blame] | 5319 | { |
| 5320 | switch (cmd) { |
| 5321 | case CCISS_GETPCIINFO: |
| 5322 | case CCISS_GETINTINFO: |
| 5323 | case CCISS_SETINTINFO: |
| 5324 | case CCISS_GETNODENAME: |
| 5325 | case CCISS_SETNODENAME: |
| 5326 | case CCISS_GETHEARTBEAT: |
| 5327 | case CCISS_GETBUSTYPES: |
| 5328 | case CCISS_GETFIRMVER: |
| 5329 | case CCISS_GETDRIVVER: |
| 5330 | case CCISS_REVALIDVOLS: |
| 5331 | case CCISS_DEREGDISK: |
| 5332 | case CCISS_REGNEWDISK: |
| 5333 | case CCISS_REGNEWD: |
| 5334 | case CCISS_RESCANDISK: |
| 5335 | case CCISS_GETLUNINFO: |
| 5336 | return hpsa_ioctl(dev, cmd, arg); |
| 5337 | |
| 5338 | case CCISS_PASSTHRU32: |
| 5339 | return hpsa_ioctl32_passthru(dev, cmd, arg); |
| 5340 | case CCISS_BIG_PASSTHRU32: |
| 5341 | return hpsa_ioctl32_big_passthru(dev, cmd, arg); |
| 5342 | |
| 5343 | default: |
| 5344 | return -ENOIOCTLCMD; |
| 5345 | } |
| 5346 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5347 | #endif |
| 5348 | |
| 5349 | static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp) |
| 5350 | { |
| 5351 | struct hpsa_pci_info pciinfo; |
| 5352 | |
| 5353 | if (!argp) |
| 5354 | return -EINVAL; |
| 5355 | pciinfo.domain = pci_domain_nr(h->pdev->bus); |
| 5356 | pciinfo.bus = h->pdev->bus->number; |
| 5357 | pciinfo.dev_fn = h->pdev->devfn; |
| 5358 | pciinfo.board_id = h->board_id; |
| 5359 | if (copy_to_user(argp, &pciinfo, sizeof(pciinfo))) |
| 5360 | return -EFAULT; |
| 5361 | return 0; |
| 5362 | } |
| 5363 | |
| 5364 | static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp) |
| 5365 | { |
| 5366 | DriverVer_type DriverVer; |
| 5367 | unsigned char vmaj, vmin, vsubmin; |
| 5368 | int rc; |
| 5369 | |
| 5370 | rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu", |
| 5371 | &vmaj, &vmin, &vsubmin); |
| 5372 | if (rc != 3) { |
| 5373 | dev_info(&h->pdev->dev, "driver version string '%s' " |
| 5374 | "unrecognized.", HPSA_DRIVER_VERSION); |
| 5375 | vmaj = 0; |
| 5376 | vmin = 0; |
| 5377 | vsubmin = 0; |
| 5378 | } |
| 5379 | DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin; |
| 5380 | if (!argp) |
| 5381 | return -EINVAL; |
| 5382 | if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type))) |
| 5383 | return -EFAULT; |
| 5384 | return 0; |
| 5385 | } |
| 5386 | |
| 5387 | static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp) |
| 5388 | { |
| 5389 | IOCTL_Command_struct iocommand; |
| 5390 | struct CommandList *c; |
| 5391 | char *buff = NULL; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5392 | u64 temp64; |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 5393 | int rc = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5394 | |
| 5395 | if (!argp) |
| 5396 | return -EINVAL; |
| 5397 | if (!capable(CAP_SYS_RAWIO)) |
| 5398 | return -EPERM; |
| 5399 | if (copy_from_user(&iocommand, argp, sizeof(iocommand))) |
| 5400 | return -EFAULT; |
| 5401 | if ((iocommand.buf_size < 1) && |
| 5402 | (iocommand.Request.Type.Direction != XFER_NONE)) { |
| 5403 | return -EINVAL; |
| 5404 | } |
| 5405 | if (iocommand.buf_size > 0) { |
| 5406 | buff = kmalloc(iocommand.buf_size, GFP_KERNEL); |
| 5407 | if (buff == NULL) |
Robert Elliott | 2dd02d7 | 2015-04-23 09:33:43 -0500 | [diff] [blame] | 5408 | return -ENOMEM; |
Stephen M. Cameron | 9233fb1 | 2014-05-29 10:52:41 -0500 | [diff] [blame] | 5409 | if (iocommand.Request.Type.Direction & XFER_WRITE) { |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 5410 | /* Copy the data into the buffer we created */ |
| 5411 | if (copy_from_user(buff, iocommand.buf, |
| 5412 | iocommand.buf_size)) { |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 5413 | rc = -EFAULT; |
| 5414 | goto out_kfree; |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 5415 | } |
| 5416 | } else { |
| 5417 | memset(buff, 0, iocommand.buf_size); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5418 | } |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 5419 | } |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 5420 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 5421 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5422 | /* Fill in the command type */ |
| 5423 | c->cmd_type = CMD_IOCTL_PEND; |
| 5424 | /* Fill in Command Header */ |
| 5425 | c->Header.ReplyQueue = 0; /* unused in simple mode */ |
| 5426 | if (iocommand.buf_size > 0) { /* buffer to fill */ |
| 5427 | c->Header.SGList = 1; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5428 | c->Header.SGTotal = cpu_to_le16(1); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5429 | } else { /* no buffers to fill */ |
| 5430 | c->Header.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5431 | c->Header.SGTotal = cpu_to_le16(0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5432 | } |
| 5433 | memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5434 | |
| 5435 | /* Fill in Request block */ |
| 5436 | memcpy(&c->Request, &iocommand.Request, |
| 5437 | sizeof(c->Request)); |
| 5438 | |
| 5439 | /* Fill in the scatter gather information */ |
| 5440 | if (iocommand.buf_size > 0) { |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5441 | temp64 = pci_map_single(h->pdev, buff, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5442 | iocommand.buf_size, PCI_DMA_BIDIRECTIONAL); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5443 | if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) { |
| 5444 | c->SG[0].Addr = cpu_to_le64(0); |
| 5445 | c->SG[0].Len = cpu_to_le32(0); |
Stephen M. Cameron | bcc48ff | 2013-02-20 11:24:57 -0600 | [diff] [blame] | 5446 | rc = -ENOMEM; |
| 5447 | goto out; |
| 5448 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5449 | c->SG[0].Addr = cpu_to_le64(temp64); |
| 5450 | c->SG[0].Len = cpu_to_le32(iocommand.buf_size); |
| 5451 | c->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* not chaining */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5452 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5453 | rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT); |
Stephen M. Cameron | c2dd32e | 2011-06-03 09:57:29 -0500 | [diff] [blame] | 5454 | if (iocommand.buf_size > 0) |
| 5455 | hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5456 | check_ioctl_unit_attention(h, c); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5457 | if (rc) { |
| 5458 | rc = -EIO; |
| 5459 | goto out; |
| 5460 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5461 | |
| 5462 | /* Copy the error information out */ |
| 5463 | memcpy(&iocommand.error_info, c->err_info, |
| 5464 | sizeof(iocommand.error_info)); |
| 5465 | if (copy_to_user(argp, &iocommand, sizeof(iocommand))) { |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 5466 | rc = -EFAULT; |
| 5467 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5468 | } |
Stephen M. Cameron | 9233fb1 | 2014-05-29 10:52:41 -0500 | [diff] [blame] | 5469 | if ((iocommand.Request.Type.Direction & XFER_READ) && |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 5470 | iocommand.buf_size > 0) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5471 | /* Copy the data out of the buffer we created */ |
| 5472 | if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) { |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 5473 | rc = -EFAULT; |
| 5474 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5475 | } |
| 5476 | } |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 5477 | out: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 5478 | cmd_free(h, c); |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 5479 | out_kfree: |
| 5480 | kfree(buff); |
| 5481 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5482 | } |
| 5483 | |
| 5484 | static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp) |
| 5485 | { |
| 5486 | BIG_IOCTL_Command_struct *ioc; |
| 5487 | struct CommandList *c; |
| 5488 | unsigned char **buff = NULL; |
| 5489 | int *buff_size = NULL; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5490 | u64 temp64; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5491 | BYTE sg_used = 0; |
| 5492 | int status = 0; |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 5493 | u32 left; |
| 5494 | u32 sz; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5495 | BYTE __user *data_ptr; |
| 5496 | |
| 5497 | if (!argp) |
| 5498 | return -EINVAL; |
| 5499 | if (!capable(CAP_SYS_RAWIO)) |
| 5500 | return -EPERM; |
| 5501 | ioc = (BIG_IOCTL_Command_struct *) |
| 5502 | kmalloc(sizeof(*ioc), GFP_KERNEL); |
| 5503 | if (!ioc) { |
| 5504 | status = -ENOMEM; |
| 5505 | goto cleanup1; |
| 5506 | } |
| 5507 | if (copy_from_user(ioc, argp, sizeof(*ioc))) { |
| 5508 | status = -EFAULT; |
| 5509 | goto cleanup1; |
| 5510 | } |
| 5511 | if ((ioc->buf_size < 1) && |
| 5512 | (ioc->Request.Type.Direction != XFER_NONE)) { |
| 5513 | status = -EINVAL; |
| 5514 | goto cleanup1; |
| 5515 | } |
| 5516 | /* Check kmalloc limits using all SGs */ |
| 5517 | if (ioc->malloc_size > MAX_KMALLOC_SIZE) { |
| 5518 | status = -EINVAL; |
| 5519 | goto cleanup1; |
| 5520 | } |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 5521 | if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5522 | status = -EINVAL; |
| 5523 | goto cleanup1; |
| 5524 | } |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 5525 | buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5526 | if (!buff) { |
| 5527 | status = -ENOMEM; |
| 5528 | goto cleanup1; |
| 5529 | } |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 5530 | buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5531 | if (!buff_size) { |
| 5532 | status = -ENOMEM; |
| 5533 | goto cleanup1; |
| 5534 | } |
| 5535 | left = ioc->buf_size; |
| 5536 | data_ptr = ioc->buf; |
| 5537 | while (left) { |
| 5538 | sz = (left > ioc->malloc_size) ? ioc->malloc_size : left; |
| 5539 | buff_size[sg_used] = sz; |
| 5540 | buff[sg_used] = kmalloc(sz, GFP_KERNEL); |
| 5541 | if (buff[sg_used] == NULL) { |
| 5542 | status = -ENOMEM; |
| 5543 | goto cleanup1; |
| 5544 | } |
Stephen M. Cameron | 9233fb1 | 2014-05-29 10:52:41 -0500 | [diff] [blame] | 5545 | if (ioc->Request.Type.Direction & XFER_WRITE) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5546 | if (copy_from_user(buff[sg_used], data_ptr, sz)) { |
Stephen M. Cameron | 0758f4f | 2014-07-03 10:18:03 -0500 | [diff] [blame] | 5547 | status = -EFAULT; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5548 | goto cleanup1; |
| 5549 | } |
| 5550 | } else |
| 5551 | memset(buff[sg_used], 0, sz); |
| 5552 | left -= sz; |
| 5553 | data_ptr += sz; |
| 5554 | sg_used++; |
| 5555 | } |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 5556 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 5557 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5558 | c->cmd_type = CMD_IOCTL_PEND; |
| 5559 | c->Header.ReplyQueue = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5560 | c->Header.SGList = (u8) sg_used; |
| 5561 | c->Header.SGTotal = cpu_to_le16(sg_used); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5562 | memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5563 | memcpy(&c->Request, &ioc->Request, sizeof(c->Request)); |
| 5564 | if (ioc->buf_size > 0) { |
| 5565 | int i; |
| 5566 | for (i = 0; i < sg_used; i++) { |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5567 | temp64 = pci_map_single(h->pdev, buff[i], |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5568 | buff_size[i], PCI_DMA_BIDIRECTIONAL); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5569 | if (dma_mapping_error(&h->pdev->dev, |
| 5570 | (dma_addr_t) temp64)) { |
| 5571 | c->SG[i].Addr = cpu_to_le64(0); |
| 5572 | c->SG[i].Len = cpu_to_le32(0); |
Stephen M. Cameron | bcc48ff | 2013-02-20 11:24:57 -0600 | [diff] [blame] | 5573 | hpsa_pci_unmap(h->pdev, c, i, |
| 5574 | PCI_DMA_BIDIRECTIONAL); |
| 5575 | status = -ENOMEM; |
Stephen M. Cameron | e2d4a1f | 2013-09-23 13:33:51 -0500 | [diff] [blame] | 5576 | goto cleanup0; |
Stephen M. Cameron | bcc48ff | 2013-02-20 11:24:57 -0600 | [diff] [blame] | 5577 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5578 | c->SG[i].Addr = cpu_to_le64(temp64); |
| 5579 | c->SG[i].Len = cpu_to_le32(buff_size[i]); |
| 5580 | c->SG[i].Ext = cpu_to_le32(0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5581 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5582 | c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5583 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5584 | status = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT); |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 5585 | if (sg_used) |
| 5586 | hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5587 | check_ioctl_unit_attention(h, c); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5588 | if (status) { |
| 5589 | status = -EIO; |
| 5590 | goto cleanup0; |
| 5591 | } |
| 5592 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5593 | /* Copy the error information out */ |
| 5594 | memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info)); |
| 5595 | if (copy_to_user(argp, ioc, sizeof(*ioc))) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5596 | status = -EFAULT; |
Stephen M. Cameron | e2d4a1f | 2013-09-23 13:33:51 -0500 | [diff] [blame] | 5597 | goto cleanup0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5598 | } |
Stephen M. Cameron | 9233fb1 | 2014-05-29 10:52:41 -0500 | [diff] [blame] | 5599 | if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) { |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5600 | int i; |
| 5601 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5602 | /* Copy the data out of the buffer we created */ |
| 5603 | BYTE __user *ptr = ioc->buf; |
| 5604 | for (i = 0; i < sg_used; i++) { |
| 5605 | if (copy_to_user(ptr, buff[i], buff_size[i])) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5606 | status = -EFAULT; |
Stephen M. Cameron | e2d4a1f | 2013-09-23 13:33:51 -0500 | [diff] [blame] | 5607 | goto cleanup0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5608 | } |
| 5609 | ptr += buff_size[i]; |
| 5610 | } |
| 5611 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5612 | status = 0; |
Stephen M. Cameron | e2d4a1f | 2013-09-23 13:33:51 -0500 | [diff] [blame] | 5613 | cleanup0: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 5614 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5615 | cleanup1: |
| 5616 | if (buff) { |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5617 | int i; |
| 5618 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5619 | for (i = 0; i < sg_used; i++) |
| 5620 | kfree(buff[i]); |
| 5621 | kfree(buff); |
| 5622 | } |
| 5623 | kfree(buff_size); |
| 5624 | kfree(ioc); |
| 5625 | return status; |
| 5626 | } |
| 5627 | |
| 5628 | static void check_ioctl_unit_attention(struct ctlr_info *h, |
| 5629 | struct CommandList *c) |
| 5630 | { |
| 5631 | if (c->err_info->CommandStatus == CMD_TARGET_STATUS && |
| 5632 | c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION) |
| 5633 | (void) check_for_unit_attention(h, c); |
| 5634 | } |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 5635 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5636 | /* |
| 5637 | * ioctl |
| 5638 | */ |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5639 | static int hpsa_ioctl(struct scsi_device *dev, int cmd, void __user *arg) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5640 | { |
| 5641 | struct ctlr_info *h; |
| 5642 | void __user *argp = (void __user *)arg; |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 5643 | int rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5644 | |
| 5645 | h = sdev_to_hba(dev); |
| 5646 | |
| 5647 | switch (cmd) { |
| 5648 | case CCISS_DEREGDISK: |
| 5649 | case CCISS_REGNEWDISK: |
| 5650 | case CCISS_REGNEWD: |
Stephen M. Cameron | a08a8471 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 5651 | hpsa_scan_start(h->scsi_host); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5652 | return 0; |
| 5653 | case CCISS_GETPCIINFO: |
| 5654 | return hpsa_getpciinfo_ioctl(h, argp); |
| 5655 | case CCISS_GETDRIVVER: |
| 5656 | return hpsa_getdrivver_ioctl(h, argp); |
| 5657 | case CCISS_PASSTHRU: |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 5658 | if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0) |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 5659 | return -EAGAIN; |
| 5660 | rc = hpsa_passthru_ioctl(h, argp); |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 5661 | atomic_inc(&h->passthru_cmds_avail); |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 5662 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5663 | case CCISS_BIG_PASSTHRU: |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 5664 | if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0) |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 5665 | return -EAGAIN; |
| 5666 | rc = hpsa_big_passthru_ioctl(h, argp); |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 5667 | atomic_inc(&h->passthru_cmds_avail); |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 5668 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5669 | default: |
| 5670 | return -ENOTTY; |
| 5671 | } |
| 5672 | } |
| 5673 | |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 5674 | static void hpsa_send_host_reset(struct ctlr_info *h, unsigned char *scsi3addr, |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 5675 | u8 reset_type) |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5676 | { |
| 5677 | struct CommandList *c; |
| 5678 | |
| 5679 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 5680 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 5681 | /* fill_cmd can't fail here, no data buffer to map */ |
| 5682 | (void) fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0, |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5683 | RAID_CTLR_LUNID, TYPE_MSG); |
| 5684 | c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */ |
| 5685 | c->waiting = NULL; |
| 5686 | enqueue_cmd_and_start_io(h, c); |
| 5687 | /* Don't wait for completion, the reset won't complete. Don't free |
| 5688 | * the command either. This is the last command we will send before |
| 5689 | * re-initializing everything, so it doesn't matter and won't leak. |
| 5690 | */ |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 5691 | return; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5692 | } |
| 5693 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 5694 | static int fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h, |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 5695 | void *buff, size_t size, u16 page_code, unsigned char *scsi3addr, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5696 | int cmd_type) |
| 5697 | { |
| 5698 | int pci_dir = XFER_NONE; |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5699 | u64 tag; /* for commands to be aborted */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5700 | |
| 5701 | c->cmd_type = CMD_IOCTL_PEND; |
| 5702 | c->Header.ReplyQueue = 0; |
| 5703 | if (buff != NULL && size > 0) { |
| 5704 | c->Header.SGList = 1; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5705 | c->Header.SGTotal = cpu_to_le16(1); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5706 | } else { |
| 5707 | c->Header.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 5708 | c->Header.SGTotal = cpu_to_le16(0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5709 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5710 | memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8); |
| 5711 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5712 | if (cmd_type == TYPE_CMD) { |
| 5713 | switch (cmd) { |
| 5714 | case HPSA_INQUIRY: |
| 5715 | /* are we trying to read a vital product page */ |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 5716 | if (page_code & VPD_PAGE) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5717 | c->Request.CDB[1] = 0x01; |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 5718 | c->Request.CDB[2] = (page_code & 0xff); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5719 | } |
| 5720 | c->Request.CDBLen = 6; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 5721 | c->Request.type_attr_dir = |
| 5722 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5723 | c->Request.Timeout = 0; |
| 5724 | c->Request.CDB[0] = HPSA_INQUIRY; |
| 5725 | c->Request.CDB[4] = size & 0xFF; |
| 5726 | break; |
| 5727 | case HPSA_REPORT_LOG: |
| 5728 | case HPSA_REPORT_PHYS: |
| 5729 | /* Talking to controller so It's a physical command |
| 5730 | mode = 00 target = 0. Nothing to write. |
| 5731 | */ |
| 5732 | c->Request.CDBLen = 12; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 5733 | c->Request.type_attr_dir = |
| 5734 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5735 | c->Request.Timeout = 0; |
| 5736 | c->Request.CDB[0] = cmd; |
| 5737 | c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */ |
| 5738 | c->Request.CDB[7] = (size >> 16) & 0xFF; |
| 5739 | c->Request.CDB[8] = (size >> 8) & 0xFF; |
| 5740 | c->Request.CDB[9] = size & 0xFF; |
| 5741 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5742 | case HPSA_CACHE_FLUSH: |
| 5743 | c->Request.CDBLen = 12; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 5744 | c->Request.type_attr_dir = |
| 5745 | TYPE_ATTR_DIR(cmd_type, |
| 5746 | ATTR_SIMPLE, XFER_WRITE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5747 | c->Request.Timeout = 0; |
| 5748 | c->Request.CDB[0] = BMIC_WRITE; |
| 5749 | c->Request.CDB[6] = BMIC_CACHE_FLUSH; |
Stephen M. Cameron | bb158ea | 2011-10-26 16:21:17 -0500 | [diff] [blame] | 5750 | c->Request.CDB[7] = (size >> 8) & 0xFF; |
| 5751 | c->Request.CDB[8] = size & 0xFF; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5752 | break; |
| 5753 | case TEST_UNIT_READY: |
| 5754 | c->Request.CDBLen = 6; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 5755 | c->Request.type_attr_dir = |
| 5756 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5757 | c->Request.Timeout = 0; |
| 5758 | break; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 5759 | case HPSA_GET_RAID_MAP: |
| 5760 | c->Request.CDBLen = 12; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 5761 | c->Request.type_attr_dir = |
| 5762 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 5763 | c->Request.Timeout = 0; |
| 5764 | c->Request.CDB[0] = HPSA_CISS_READ; |
| 5765 | c->Request.CDB[1] = cmd; |
| 5766 | c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */ |
| 5767 | c->Request.CDB[7] = (size >> 16) & 0xFF; |
| 5768 | c->Request.CDB[8] = (size >> 8) & 0xFF; |
| 5769 | c->Request.CDB[9] = size & 0xFF; |
| 5770 | break; |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 5771 | case BMIC_SENSE_CONTROLLER_PARAMETERS: |
| 5772 | c->Request.CDBLen = 10; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 5773 | c->Request.type_attr_dir = |
| 5774 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 5775 | c->Request.Timeout = 0; |
| 5776 | c->Request.CDB[0] = BMIC_READ; |
| 5777 | c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS; |
| 5778 | c->Request.CDB[7] = (size >> 16) & 0xFF; |
| 5779 | c->Request.CDB[8] = (size >> 8) & 0xFF; |
| 5780 | break; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 5781 | case BMIC_IDENTIFY_PHYSICAL_DEVICE: |
| 5782 | c->Request.CDBLen = 10; |
| 5783 | c->Request.type_attr_dir = |
| 5784 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
| 5785 | c->Request.Timeout = 0; |
| 5786 | c->Request.CDB[0] = BMIC_READ; |
| 5787 | c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE; |
| 5788 | c->Request.CDB[7] = (size >> 16) & 0xFF; |
| 5789 | c->Request.CDB[8] = (size >> 8) & 0XFF; |
| 5790 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5791 | default: |
| 5792 | dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd); |
| 5793 | BUG(); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 5794 | return -1; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5795 | } |
| 5796 | } else if (cmd_type == TYPE_MSG) { |
| 5797 | switch (cmd) { |
| 5798 | |
| 5799 | case HPSA_DEVICE_RESET_MSG: |
| 5800 | c->Request.CDBLen = 16; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 5801 | c->Request.type_attr_dir = |
| 5802 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5803 | c->Request.Timeout = 0; /* Don't time out */ |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5804 | memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB)); |
| 5805 | c->Request.CDB[0] = cmd; |
Stephen M. Cameron | 21e89af | 2012-07-26 11:34:10 -0500 | [diff] [blame] | 5806 | c->Request.CDB[1] = HPSA_RESET_TYPE_LUN; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5807 | /* If bytes 4-7 are zero, it means reset the */ |
| 5808 | /* LunID device */ |
| 5809 | c->Request.CDB[4] = 0x00; |
| 5810 | c->Request.CDB[5] = 0x00; |
| 5811 | c->Request.CDB[6] = 0x00; |
| 5812 | c->Request.CDB[7] = 0x00; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5813 | break; |
| 5814 | case HPSA_ABORT_MSG: |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5815 | memcpy(&tag, buff, sizeof(tag)); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5816 | dev_dbg(&h->pdev->dev, |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5817 | "Abort Tag:0x%016llx using rqst Tag:0x%016llx", |
| 5818 | tag, c->Header.tag); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5819 | c->Request.CDBLen = 16; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 5820 | c->Request.type_attr_dir = |
| 5821 | TYPE_ATTR_DIR(cmd_type, |
| 5822 | ATTR_SIMPLE, XFER_WRITE); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5823 | c->Request.Timeout = 0; /* Don't time out */ |
| 5824 | c->Request.CDB[0] = HPSA_TASK_MANAGEMENT; |
| 5825 | c->Request.CDB[1] = HPSA_TMF_ABORT_TASK; |
| 5826 | c->Request.CDB[2] = 0x00; /* reserved */ |
| 5827 | c->Request.CDB[3] = 0x00; /* reserved */ |
| 5828 | /* Tag to abort goes in CDB[4]-CDB[11] */ |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5829 | memcpy(&c->Request.CDB[4], &tag, sizeof(tag)); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5830 | c->Request.CDB[12] = 0x00; /* reserved */ |
| 5831 | c->Request.CDB[13] = 0x00; /* reserved */ |
| 5832 | c->Request.CDB[14] = 0x00; /* reserved */ |
| 5833 | c->Request.CDB[15] = 0x00; /* reserved */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5834 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5835 | default: |
| 5836 | dev_warn(&h->pdev->dev, "unknown message type %d\n", |
| 5837 | cmd); |
| 5838 | BUG(); |
| 5839 | } |
| 5840 | } else { |
| 5841 | dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type); |
| 5842 | BUG(); |
| 5843 | } |
| 5844 | |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 5845 | switch (GET_DIR(c->Request.type_attr_dir)) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5846 | case XFER_READ: |
| 5847 | pci_dir = PCI_DMA_FROMDEVICE; |
| 5848 | break; |
| 5849 | case XFER_WRITE: |
| 5850 | pci_dir = PCI_DMA_TODEVICE; |
| 5851 | break; |
| 5852 | case XFER_NONE: |
| 5853 | pci_dir = PCI_DMA_NONE; |
| 5854 | break; |
| 5855 | default: |
| 5856 | pci_dir = PCI_DMA_BIDIRECTIONAL; |
| 5857 | } |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 5858 | if (hpsa_map_one(h->pdev, c, buff, size, pci_dir)) |
| 5859 | return -1; |
| 5860 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5861 | } |
| 5862 | |
| 5863 | /* |
| 5864 | * Map (physical) PCI mem into (virtual) kernel space |
| 5865 | */ |
| 5866 | static void __iomem *remap_pci_mem(ulong base, ulong size) |
| 5867 | { |
| 5868 | ulong page_base = ((ulong) base) & PAGE_MASK; |
| 5869 | ulong page_offs = ((ulong) base) - page_base; |
Stephen M. Cameron | 088ba34c | 2012-07-26 11:34:23 -0500 | [diff] [blame] | 5870 | void __iomem *page_remapped = ioremap_nocache(page_base, |
| 5871 | page_offs + size); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5872 | |
| 5873 | return page_remapped ? (page_remapped + page_offs) : NULL; |
| 5874 | } |
| 5875 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5876 | static inline unsigned long get_next_completion(struct ctlr_info *h, u8 q) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5877 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5878 | return h->access.command_completed(h, q); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5879 | } |
| 5880 | |
Stephen M. Cameron | 900c544 | 2010-02-04 08:42:35 -0600 | [diff] [blame] | 5881 | static inline bool interrupt_pending(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5882 | { |
| 5883 | return h->access.intr_pending(h); |
| 5884 | } |
| 5885 | |
| 5886 | static inline long interrupt_not_for_us(struct ctlr_info *h) |
| 5887 | { |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 5888 | return (h->access.intr_pending(h) == 0) || |
| 5889 | (h->interrupts_enabled == 0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5890 | } |
| 5891 | |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 5892 | static inline int bad_tag(struct ctlr_info *h, u32 tag_index, |
| 5893 | u32 raw_tag) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5894 | { |
| 5895 | if (unlikely(tag_index >= h->nr_cmds)) { |
| 5896 | dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag); |
| 5897 | return 1; |
| 5898 | } |
| 5899 | return 0; |
| 5900 | } |
| 5901 | |
Stephen M. Cameron | 5a3d16f | 2012-05-01 11:42:46 -0500 | [diff] [blame] | 5902 | static inline void finish_cmd(struct CommandList *c) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5903 | { |
Stephen M. Cameron | e85c597 | 2012-05-01 11:43:42 -0500 | [diff] [blame] | 5904 | dial_up_lockup_detection_on_fw_flash_complete(c->h, c); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 5905 | if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI |
| 5906 | || c->cmd_type == CMD_IOACCEL2)) |
Stephen M. Cameron | 1fb011f | 2011-05-03 14:59:00 -0500 | [diff] [blame] | 5907 | complete_scsi_command(c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5908 | else if (c->cmd_type == CMD_IOCTL_PEND) |
| 5909 | complete(c->waiting); |
Stephen M. Cameron | a104c99 | 2010-02-04 08:42:24 -0600 | [diff] [blame] | 5910 | } |
| 5911 | |
Stephen M. Cameron | a9a3a27 | 2011-02-15 15:32:53 -0600 | [diff] [blame] | 5912 | |
| 5913 | static inline u32 hpsa_tag_discard_error_bits(struct ctlr_info *h, u32 tag) |
Stephen M. Cameron | a104c99 | 2010-02-04 08:42:24 -0600 | [diff] [blame] | 5914 | { |
Stephen M. Cameron | a9a3a27 | 2011-02-15 15:32:53 -0600 | [diff] [blame] | 5915 | #define HPSA_PERF_ERROR_BITS ((1 << DIRECT_LOOKUP_SHIFT) - 1) |
| 5916 | #define HPSA_SIMPLE_ERROR_BITS 0x03 |
Stephen M. Cameron | 960a30e | 2011-02-15 15:33:03 -0600 | [diff] [blame] | 5917 | if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant))) |
Stephen M. Cameron | a9a3a27 | 2011-02-15 15:32:53 -0600 | [diff] [blame] | 5918 | return tag & ~HPSA_SIMPLE_ERROR_BITS; |
| 5919 | return tag & ~HPSA_PERF_ERROR_BITS; |
Stephen M. Cameron | a104c99 | 2010-02-04 08:42:24 -0600 | [diff] [blame] | 5920 | } |
| 5921 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 5922 | /* process completion of an indexed ("direct lookup") command */ |
Stephen M. Cameron | 1d94f94 | 2012-05-01 11:43:01 -0500 | [diff] [blame] | 5923 | static inline void process_indexed_cmd(struct ctlr_info *h, |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 5924 | u32 raw_tag) |
| 5925 | { |
| 5926 | u32 tag_index; |
| 5927 | struct CommandList *c; |
| 5928 | |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 5929 | tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT; |
Stephen M. Cameron | 1d94f94 | 2012-05-01 11:43:01 -0500 | [diff] [blame] | 5930 | if (!bad_tag(h, tag_index, raw_tag)) { |
| 5931 | c = h->cmd_pool + tag_index; |
| 5932 | finish_cmd(c); |
| 5933 | } |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 5934 | } |
| 5935 | |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5936 | /* Some controllers, like p400, will give us one interrupt |
| 5937 | * after a soft reset, even if we turned interrupts off. |
| 5938 | * Only need to check for this in the hpsa_xxx_discard_completions |
| 5939 | * functions. |
| 5940 | */ |
| 5941 | static int ignore_bogus_interrupt(struct ctlr_info *h) |
| 5942 | { |
| 5943 | if (likely(!reset_devices)) |
| 5944 | return 0; |
| 5945 | |
| 5946 | if (likely(h->interrupts_enabled)) |
| 5947 | return 0; |
| 5948 | |
| 5949 | dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled " |
| 5950 | "(known firmware bug.) Ignoring.\n"); |
| 5951 | |
| 5952 | return 1; |
| 5953 | } |
| 5954 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5955 | /* |
| 5956 | * Convert &h->q[x] (passed to interrupt handlers) back to h. |
| 5957 | * Relies on (h-q[x] == x) being true for x such that |
| 5958 | * 0 <= x < MAX_REPLY_QUEUES. |
| 5959 | */ |
| 5960 | static struct ctlr_info *queue_to_hba(u8 *queue) |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5961 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5962 | return container_of((queue - *queue), struct ctlr_info, q[0]); |
| 5963 | } |
| 5964 | |
| 5965 | static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue) |
| 5966 | { |
| 5967 | struct ctlr_info *h = queue_to_hba(queue); |
| 5968 | u8 q = *(u8 *) queue; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5969 | u32 raw_tag; |
| 5970 | |
| 5971 | if (ignore_bogus_interrupt(h)) |
| 5972 | return IRQ_NONE; |
| 5973 | |
| 5974 | if (interrupt_not_for_us(h)) |
| 5975 | return IRQ_NONE; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 5976 | h->last_intr_timestamp = get_jiffies_64(); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5977 | while (interrupt_pending(h)) { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5978 | raw_tag = get_next_completion(h, q); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5979 | while (raw_tag != FIFO_EMPTY) |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5980 | raw_tag = next_command(h, q); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5981 | } |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5982 | return IRQ_HANDLED; |
| 5983 | } |
| 5984 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5985 | static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue) |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5986 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5987 | struct ctlr_info *h = queue_to_hba(queue); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5988 | u32 raw_tag; |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5989 | u8 q = *(u8 *) queue; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5990 | |
| 5991 | if (ignore_bogus_interrupt(h)) |
| 5992 | return IRQ_NONE; |
| 5993 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 5994 | h->last_intr_timestamp = get_jiffies_64(); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5995 | raw_tag = get_next_completion(h, q); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5996 | while (raw_tag != FIFO_EMPTY) |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 5997 | raw_tag = next_command(h, q); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 5998 | return IRQ_HANDLED; |
| 5999 | } |
| 6000 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6001 | static irqreturn_t do_hpsa_intr_intx(int irq, void *queue) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6002 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6003 | struct ctlr_info *h = queue_to_hba((u8 *) queue); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 6004 | u32 raw_tag; |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6005 | u8 q = *(u8 *) queue; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6006 | |
| 6007 | if (interrupt_not_for_us(h)) |
| 6008 | return IRQ_NONE; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 6009 | h->last_intr_timestamp = get_jiffies_64(); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6010 | while (interrupt_pending(h)) { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6011 | raw_tag = get_next_completion(h, q); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6012 | while (raw_tag != FIFO_EMPTY) { |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 6013 | process_indexed_cmd(h, raw_tag); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6014 | raw_tag = next_command(h, q); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6015 | } |
| 6016 | } |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6017 | return IRQ_HANDLED; |
| 6018 | } |
| 6019 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6020 | static irqreturn_t do_hpsa_intr_msi(int irq, void *queue) |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6021 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6022 | struct ctlr_info *h = queue_to_hba(queue); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6023 | u32 raw_tag; |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6024 | u8 q = *(u8 *) queue; |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6025 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 6026 | h->last_intr_timestamp = get_jiffies_64(); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6027 | raw_tag = get_next_completion(h, q); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 6028 | while (raw_tag != FIFO_EMPTY) { |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 6029 | process_indexed_cmd(h, raw_tag); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6030 | raw_tag = next_command(h, q); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6031 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6032 | return IRQ_HANDLED; |
| 6033 | } |
| 6034 | |
Stephen M. Cameron | a9a3a27 | 2011-02-15 15:32:53 -0600 | [diff] [blame] | 6035 | /* Send a message CDB to the firmware. Careful, this only works |
| 6036 | * in simple mode, not performant mode due to the tag lookup. |
| 6037 | * We only ever use this immediately after a controller reset. |
| 6038 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6039 | static int hpsa_message(struct pci_dev *pdev, unsigned char opcode, |
| 6040 | unsigned char type) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6041 | { |
| 6042 | struct Command { |
| 6043 | struct CommandListHeader CommandHeader; |
| 6044 | struct RequestBlock Request; |
| 6045 | struct ErrDescriptor ErrorDescriptor; |
| 6046 | }; |
| 6047 | struct Command *cmd; |
| 6048 | static const size_t cmd_sz = sizeof(*cmd) + |
| 6049 | sizeof(cmd->ErrorDescriptor); |
| 6050 | dma_addr_t paddr64; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6051 | __le32 paddr32; |
| 6052 | u32 tag; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6053 | void __iomem *vaddr; |
| 6054 | int i, err; |
| 6055 | |
| 6056 | vaddr = pci_ioremap_bar(pdev, 0); |
| 6057 | if (vaddr == NULL) |
| 6058 | return -ENOMEM; |
| 6059 | |
| 6060 | /* The Inbound Post Queue only accepts 32-bit physical addresses for the |
| 6061 | * CCISS commands, so they must be allocated from the lower 4GiB of |
| 6062 | * memory. |
| 6063 | */ |
| 6064 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 6065 | if (err) { |
| 6066 | iounmap(vaddr); |
Robert Elliott | 1eaec8f | 2015-01-23 16:42:37 -0600 | [diff] [blame] | 6067 | return err; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6068 | } |
| 6069 | |
| 6070 | cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64); |
| 6071 | if (cmd == NULL) { |
| 6072 | iounmap(vaddr); |
| 6073 | return -ENOMEM; |
| 6074 | } |
| 6075 | |
| 6076 | /* This must fit, because of the 32-bit consistent DMA mask. Also, |
| 6077 | * although there's no guarantee, we assume that the address is at |
| 6078 | * least 4-byte aligned (most likely, it's page-aligned). |
| 6079 | */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6080 | paddr32 = cpu_to_le32(paddr64); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6081 | |
| 6082 | cmd->CommandHeader.ReplyQueue = 0; |
| 6083 | cmd->CommandHeader.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6084 | cmd->CommandHeader.SGTotal = cpu_to_le16(0); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6085 | cmd->CommandHeader.tag = cpu_to_le64(paddr64); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6086 | memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8); |
| 6087 | |
| 6088 | cmd->Request.CDBLen = 16; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6089 | cmd->Request.type_attr_dir = |
| 6090 | TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6091 | cmd->Request.Timeout = 0; /* Don't time out */ |
| 6092 | cmd->Request.CDB[0] = opcode; |
| 6093 | cmd->Request.CDB[1] = type; |
| 6094 | memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */ |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6095 | cmd->ErrorDescriptor.Addr = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6096 | cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd))); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6097 | cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6098 | |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6099 | writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6100 | |
| 6101 | for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) { |
| 6102 | tag = readl(vaddr + SA5_REPLY_PORT_OFFSET); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6103 | if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6104 | break; |
| 6105 | msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS); |
| 6106 | } |
| 6107 | |
| 6108 | iounmap(vaddr); |
| 6109 | |
| 6110 | /* we leak the DMA buffer here ... no choice since the controller could |
| 6111 | * still complete the command. |
| 6112 | */ |
| 6113 | if (i == HPSA_MSG_SEND_RETRY_LIMIT) { |
| 6114 | dev_err(&pdev->dev, "controller message %02x:%02x timed out\n", |
| 6115 | opcode, type); |
| 6116 | return -ETIMEDOUT; |
| 6117 | } |
| 6118 | |
| 6119 | pci_free_consistent(pdev, cmd_sz, cmd, paddr64); |
| 6120 | |
| 6121 | if (tag & HPSA_ERROR_BIT) { |
| 6122 | dev_err(&pdev->dev, "controller message %02x:%02x failed\n", |
| 6123 | opcode, type); |
| 6124 | return -EIO; |
| 6125 | } |
| 6126 | |
| 6127 | dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n", |
| 6128 | opcode, type); |
| 6129 | return 0; |
| 6130 | } |
| 6131 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6132 | #define hpsa_noop(p) hpsa_message(p, 3, 0) |
| 6133 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6134 | static int hpsa_controller_hard_reset(struct pci_dev *pdev, |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 6135 | void __iomem *vaddr, u32 use_doorbell) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6136 | { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6137 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6138 | if (use_doorbell) { |
| 6139 | /* For everything after the P600, the PCI power state method |
| 6140 | * of resetting the controller doesn't work, so we have this |
| 6141 | * other way using the doorbell register. |
| 6142 | */ |
| 6143 | dev_info(&pdev->dev, "using doorbell to reset controller\n"); |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6144 | writel(use_doorbell, vaddr + SA5_DOORBELL); |
Stephen M. Cameron | 8500923 | 2013-09-23 13:33:36 -0500 | [diff] [blame] | 6145 | |
Justin Lindley | 00701a9 | 2014-05-29 10:52:47 -0500 | [diff] [blame] | 6146 | /* PMC hardware guys tell us we need a 10 second delay after |
Stephen M. Cameron | 8500923 | 2013-09-23 13:33:36 -0500 | [diff] [blame] | 6147 | * doorbell reset and before any attempt to talk to the board |
| 6148 | * at all to ensure that this actually works and doesn't fall |
| 6149 | * over in some weird corner cases. |
| 6150 | */ |
Justin Lindley | 00701a9 | 2014-05-29 10:52:47 -0500 | [diff] [blame] | 6151 | msleep(10000); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6152 | } else { /* Try to do it the PCI power state way */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6153 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6154 | /* Quoting from the Open CISS Specification: "The Power |
| 6155 | * Management Control/Status Register (CSR) controls the power |
| 6156 | * state of the device. The normal operating state is D0, |
| 6157 | * CSR=00h. The software off state is D3, CSR=03h. To reset |
| 6158 | * the controller, place the interface device in D3 then to D0, |
| 6159 | * this causes a secondary PCI reset which will reset the |
| 6160 | * controller." */ |
| 6161 | |
Don Brace | 2662cab | 2015-01-23 16:41:25 -0600 | [diff] [blame] | 6162 | int rc = 0; |
| 6163 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6164 | dev_info(&pdev->dev, "using PCI PM to reset controller\n"); |
Don Brace | 2662cab | 2015-01-23 16:41:25 -0600 | [diff] [blame] | 6165 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6166 | /* enter the D3hot power management state */ |
Don Brace | 2662cab | 2015-01-23 16:41:25 -0600 | [diff] [blame] | 6167 | rc = pci_set_power_state(pdev, PCI_D3hot); |
| 6168 | if (rc) |
| 6169 | return rc; |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6170 | |
| 6171 | msleep(500); |
| 6172 | |
| 6173 | /* enter the D0 power management state */ |
Don Brace | 2662cab | 2015-01-23 16:41:25 -0600 | [diff] [blame] | 6174 | rc = pci_set_power_state(pdev, PCI_D0); |
| 6175 | if (rc) |
| 6176 | return rc; |
Mike Miller | c4853ef | 2011-10-21 08:19:43 +0200 | [diff] [blame] | 6177 | |
| 6178 | /* |
| 6179 | * The P600 requires a small delay when changing states. |
| 6180 | * Otherwise we may think the board did not reset and we bail. |
| 6181 | * This for kdump only and is particular to the P600. |
| 6182 | */ |
| 6183 | msleep(500); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6184 | } |
| 6185 | return 0; |
| 6186 | } |
| 6187 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6188 | static void init_driver_version(char *driver_version, int len) |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6189 | { |
| 6190 | memset(driver_version, 0, len); |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 6191 | strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1); |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6192 | } |
| 6193 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6194 | static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable) |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6195 | { |
| 6196 | char *driver_version; |
| 6197 | int i, size = sizeof(cfgtable->driver_version); |
| 6198 | |
| 6199 | driver_version = kmalloc(size, GFP_KERNEL); |
| 6200 | if (!driver_version) |
| 6201 | return -ENOMEM; |
| 6202 | |
| 6203 | init_driver_version(driver_version, size); |
| 6204 | for (i = 0; i < size; i++) |
| 6205 | writeb(driver_version[i], &cfgtable->driver_version[i]); |
| 6206 | kfree(driver_version); |
| 6207 | return 0; |
| 6208 | } |
| 6209 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6210 | static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable, |
| 6211 | unsigned char *driver_ver) |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6212 | { |
| 6213 | int i; |
| 6214 | |
| 6215 | for (i = 0; i < sizeof(cfgtable->driver_version); i++) |
| 6216 | driver_ver[i] = readb(&cfgtable->driver_version[i]); |
| 6217 | } |
| 6218 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6219 | static int controller_reset_failed(struct CfgTable __iomem *cfgtable) |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6220 | { |
| 6221 | |
| 6222 | char *driver_ver, *old_driver_ver; |
| 6223 | int rc, size = sizeof(cfgtable->driver_version); |
| 6224 | |
| 6225 | old_driver_ver = kmalloc(2 * size, GFP_KERNEL); |
| 6226 | if (!old_driver_ver) |
| 6227 | return -ENOMEM; |
| 6228 | driver_ver = old_driver_ver + size; |
| 6229 | |
| 6230 | /* After a reset, the 32 bytes of "driver version" in the cfgtable |
| 6231 | * should have been changed, otherwise we know the reset failed. |
| 6232 | */ |
| 6233 | init_driver_version(old_driver_ver, size); |
| 6234 | read_driver_ver_from_cfgtable(cfgtable, driver_ver); |
| 6235 | rc = !memcmp(driver_ver, old_driver_ver, size); |
| 6236 | kfree(old_driver_ver); |
| 6237 | return rc; |
| 6238 | } |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6239 | /* This does a hard reset of the controller using PCI power management |
| 6240 | * states or the using the doorbell register. |
| 6241 | */ |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 6242 | static int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev, u32 board_id) |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6243 | { |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6244 | u64 cfg_offset; |
| 6245 | u32 cfg_base_addr; |
| 6246 | u64 cfg_base_addr_index; |
| 6247 | void __iomem *vaddr; |
| 6248 | unsigned long paddr; |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6249 | u32 misc_fw_support; |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6250 | int rc; |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6251 | struct CfgTable __iomem *cfgtable; |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6252 | u32 use_doorbell; |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6253 | u16 command_register; |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6254 | |
| 6255 | /* For controllers as old as the P600, this is very nearly |
| 6256 | * the same thing as |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6257 | * |
| 6258 | * pci_save_state(pci_dev); |
| 6259 | * pci_set_power_state(pci_dev, PCI_D3hot); |
| 6260 | * pci_set_power_state(pci_dev, PCI_D0); |
| 6261 | * pci_restore_state(pci_dev); |
| 6262 | * |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6263 | * For controllers newer than the P600, the pci power state |
| 6264 | * method of resetting doesn't work so we have another way |
| 6265 | * using the doorbell register. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6266 | */ |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 6267 | |
Robert Elliott | 60f923b | 2015-01-23 16:42:06 -0600 | [diff] [blame] | 6268 | if (!ctlr_is_resettable(board_id)) { |
| 6269 | dev_warn(&pdev->dev, "Controller not resettable\n"); |
Stephen M. Cameron | 25c1e56a | 2011-01-06 14:48:18 -0600 | [diff] [blame] | 6270 | return -ENODEV; |
| 6271 | } |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 6272 | |
| 6273 | /* if controller is soft- but not hard resettable... */ |
| 6274 | if (!ctlr_is_hard_resettable(board_id)) |
| 6275 | return -ENOTSUPP; /* try soft reset later. */ |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 6276 | |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6277 | /* Save the PCI command register */ |
| 6278 | pci_read_config_word(pdev, 4, &command_register); |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6279 | pci_save_state(pdev); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6280 | |
| 6281 | /* find the first memory BAR, so we can find the cfg table */ |
| 6282 | rc = hpsa_pci_find_memory_BAR(pdev, &paddr); |
| 6283 | if (rc) |
| 6284 | return rc; |
| 6285 | vaddr = remap_pci_mem(paddr, 0x250); |
| 6286 | if (!vaddr) |
| 6287 | return -ENOMEM; |
| 6288 | |
| 6289 | /* find cfgtable in order to check if reset via doorbell is supported */ |
| 6290 | rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr, |
| 6291 | &cfg_base_addr_index, &cfg_offset); |
| 6292 | if (rc) |
| 6293 | goto unmap_vaddr; |
| 6294 | cfgtable = remap_pci_mem(pci_resource_start(pdev, |
| 6295 | cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable)); |
| 6296 | if (!cfgtable) { |
| 6297 | rc = -ENOMEM; |
| 6298 | goto unmap_vaddr; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6299 | } |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6300 | rc = write_driver_ver_to_cfgtable(cfgtable); |
| 6301 | if (rc) |
Tomas Henzl | 03741d9 | 2015-01-23 16:41:14 -0600 | [diff] [blame] | 6302 | goto unmap_cfgtable; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6303 | |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6304 | /* If reset via doorbell register is supported, use that. |
| 6305 | * There are two such methods. Favor the newest method. |
| 6306 | */ |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6307 | misc_fw_support = readl(&cfgtable->misc_fw_support); |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6308 | use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2; |
| 6309 | if (use_doorbell) { |
| 6310 | use_doorbell = DOORBELL_CTLR_RESET2; |
| 6311 | } else { |
| 6312 | use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET; |
| 6313 | if (use_doorbell) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 6314 | dev_warn(&pdev->dev, |
| 6315 | "Soft reset not supported. Firmware update is required.\n"); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6316 | rc = -ENOTSUPP; /* try soft reset */ |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6317 | goto unmap_cfgtable; |
| 6318 | } |
| 6319 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6320 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6321 | rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell); |
| 6322 | if (rc) |
| 6323 | goto unmap_cfgtable; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6324 | |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6325 | pci_restore_state(pdev); |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6326 | pci_write_config_word(pdev, 4, command_register); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6327 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6328 | /* Some devices (notably the HP Smart Array 5i Controller) |
| 6329 | need a little pause here */ |
| 6330 | msleep(HPSA_POST_RESET_PAUSE_MSECS); |
| 6331 | |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6332 | rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY); |
| 6333 | if (rc) { |
| 6334 | dev_warn(&pdev->dev, |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 6335 | "Failed waiting for board to become ready after hard reset\n"); |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6336 | goto unmap_cfgtable; |
| 6337 | } |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6338 | |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6339 | rc = controller_reset_failed(vaddr); |
| 6340 | if (rc < 0) |
| 6341 | goto unmap_cfgtable; |
| 6342 | if (rc) { |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6343 | dev_warn(&pdev->dev, "Unable to successfully reset " |
| 6344 | "controller. Will try soft reset.\n"); |
| 6345 | rc = -ENOTSUPP; |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6346 | } else { |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6347 | dev_info(&pdev->dev, "board ready after hard reset.\n"); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6348 | } |
| 6349 | |
| 6350 | unmap_cfgtable: |
| 6351 | iounmap(cfgtable); |
| 6352 | |
| 6353 | unmap_vaddr: |
| 6354 | iounmap(vaddr); |
| 6355 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6356 | } |
| 6357 | |
| 6358 | /* |
| 6359 | * We cannot read the structure directly, for portability we must use |
| 6360 | * the io functions. |
| 6361 | * This is for debug only. |
| 6362 | */ |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 6363 | static void print_cfg_table(struct device *dev, struct CfgTable __iomem *tb) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6364 | { |
Stephen M. Cameron | 58f8665 | 2010-05-27 15:13:58 -0500 | [diff] [blame] | 6365 | #ifdef HPSA_DEBUG |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6366 | int i; |
| 6367 | char temp_name[17]; |
| 6368 | |
| 6369 | dev_info(dev, "Controller Configuration information\n"); |
| 6370 | dev_info(dev, "------------------------------------\n"); |
| 6371 | for (i = 0; i < 4; i++) |
| 6372 | temp_name[i] = readb(&(tb->Signature[i])); |
| 6373 | temp_name[4] = '\0'; |
| 6374 | dev_info(dev, " Signature = %s\n", temp_name); |
| 6375 | dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence))); |
| 6376 | dev_info(dev, " Transport methods supported = 0x%x\n", |
| 6377 | readl(&(tb->TransportSupport))); |
| 6378 | dev_info(dev, " Transport methods active = 0x%x\n", |
| 6379 | readl(&(tb->TransportActive))); |
| 6380 | dev_info(dev, " Requested transport Method = 0x%x\n", |
| 6381 | readl(&(tb->HostWrite.TransportRequest))); |
| 6382 | dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n", |
| 6383 | readl(&(tb->HostWrite.CoalIntDelay))); |
| 6384 | dev_info(dev, " Coalesce Interrupt Count = 0x%x\n", |
| 6385 | readl(&(tb->HostWrite.CoalIntCount))); |
Robert Elliott | 69d6e33 | 2015-01-23 16:41:56 -0600 | [diff] [blame] | 6386 | dev_info(dev, " Max outstanding commands = %d\n", |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6387 | readl(&(tb->CmdsOutMax))); |
| 6388 | dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes))); |
| 6389 | for (i = 0; i < 16; i++) |
| 6390 | temp_name[i] = readb(&(tb->ServerName[i])); |
| 6391 | temp_name[16] = '\0'; |
| 6392 | dev_info(dev, " Server Name = %s\n", temp_name); |
| 6393 | dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n", |
| 6394 | readl(&(tb->HeartBeat))); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6395 | #endif /* HPSA_DEBUG */ |
Stephen M. Cameron | 58f8665 | 2010-05-27 15:13:58 -0500 | [diff] [blame] | 6396 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6397 | |
| 6398 | static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr) |
| 6399 | { |
| 6400 | int i, offset, mem_type, bar_type; |
| 6401 | |
| 6402 | if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */ |
| 6403 | return 0; |
| 6404 | offset = 0; |
| 6405 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { |
| 6406 | bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE; |
| 6407 | if (bar_type == PCI_BASE_ADDRESS_SPACE_IO) |
| 6408 | offset += 4; |
| 6409 | else { |
| 6410 | mem_type = pci_resource_flags(pdev, i) & |
| 6411 | PCI_BASE_ADDRESS_MEM_TYPE_MASK; |
| 6412 | switch (mem_type) { |
| 6413 | case PCI_BASE_ADDRESS_MEM_TYPE_32: |
| 6414 | case PCI_BASE_ADDRESS_MEM_TYPE_1M: |
| 6415 | offset += 4; /* 32 bit */ |
| 6416 | break; |
| 6417 | case PCI_BASE_ADDRESS_MEM_TYPE_64: |
| 6418 | offset += 8; |
| 6419 | break; |
| 6420 | default: /* reserved in PCI 2.2 */ |
| 6421 | dev_warn(&pdev->dev, |
| 6422 | "base address is invalid\n"); |
| 6423 | return -1; |
| 6424 | break; |
| 6425 | } |
| 6426 | } |
| 6427 | if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0) |
| 6428 | return i + 1; |
| 6429 | } |
| 6430 | return -1; |
| 6431 | } |
| 6432 | |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 6433 | static void hpsa_disable_interrupt_mode(struct ctlr_info *h) |
| 6434 | { |
| 6435 | if (h->msix_vector) { |
| 6436 | if (h->pdev->msix_enabled) |
| 6437 | pci_disable_msix(h->pdev); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6438 | h->msix_vector = 0; |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 6439 | } else if (h->msi_vector) { |
| 6440 | if (h->pdev->msi_enabled) |
| 6441 | pci_disable_msi(h->pdev); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6442 | h->msi_vector = 0; |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 6443 | } |
| 6444 | } |
| 6445 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6446 | /* If MSI/MSI-X is supported by the kernel we will try to enable it on |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 6447 | * controllers that are capable. If not, we use legacy INTx mode. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6448 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6449 | static void hpsa_interrupt_mode(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6450 | { |
| 6451 | #ifdef CONFIG_PCI_MSI |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6452 | int err, i; |
| 6453 | struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES]; |
| 6454 | |
| 6455 | for (i = 0; i < MAX_REPLY_QUEUES; i++) { |
| 6456 | hpsa_msix_entries[i].vector = 0; |
| 6457 | hpsa_msix_entries[i].entry = i; |
| 6458 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6459 | |
| 6460 | /* Some boards advertise MSI but don't really support it */ |
Stephen M. Cameron | 6b3f4c5 | 2010-05-27 15:13:02 -0500 | [diff] [blame] | 6461 | if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) || |
| 6462 | (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6463 | goto default_int_mode; |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 6464 | if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 6465 | dev_info(&h->pdev->dev, "MSI-X capable controller\n"); |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 6466 | h->msix_vector = MAX_REPLY_QUEUES; |
Stephen M. Cameron | f89439b | 2014-05-29 10:53:02 -0500 | [diff] [blame] | 6467 | if (h->msix_vector > num_online_cpus()) |
| 6468 | h->msix_vector = num_online_cpus(); |
Alexander Gordeev | 18fce3c | 2014-08-18 08:01:42 +0200 | [diff] [blame] | 6469 | err = pci_enable_msix_range(h->pdev, hpsa_msix_entries, |
| 6470 | 1, h->msix_vector); |
| 6471 | if (err < 0) { |
| 6472 | dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err); |
| 6473 | h->msix_vector = 0; |
| 6474 | goto single_msi_mode; |
| 6475 | } else if (err < h->msix_vector) { |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 6476 | dev_warn(&h->pdev->dev, "only %d MSI-X vectors " |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6477 | "available\n", err); |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 6478 | } |
Alexander Gordeev | 18fce3c | 2014-08-18 08:01:42 +0200 | [diff] [blame] | 6479 | h->msix_vector = err; |
| 6480 | for (i = 0; i < h->msix_vector; i++) |
| 6481 | h->intr[i] = hpsa_msix_entries[i].vector; |
| 6482 | return; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6483 | } |
Alexander Gordeev | 18fce3c | 2014-08-18 08:01:42 +0200 | [diff] [blame] | 6484 | single_msi_mode: |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 6485 | if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 6486 | dev_info(&h->pdev->dev, "MSI capable controller\n"); |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 6487 | if (!pci_enable_msi(h->pdev)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6488 | h->msi_vector = 1; |
| 6489 | else |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 6490 | dev_warn(&h->pdev->dev, "MSI init failed\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6491 | } |
| 6492 | default_int_mode: |
| 6493 | #endif /* CONFIG_PCI_MSI */ |
| 6494 | /* if we get here we're going to use the default interrupt mode */ |
Stephen M. Cameron | a9a3a27 | 2011-02-15 15:32:53 -0600 | [diff] [blame] | 6495 | h->intr[h->intr_mode] = h->pdev->irq; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6496 | } |
| 6497 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6498 | static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id) |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 6499 | { |
| 6500 | int i; |
| 6501 | u32 subsystem_vendor_id, subsystem_device_id; |
| 6502 | |
| 6503 | subsystem_vendor_id = pdev->subsystem_vendor; |
| 6504 | subsystem_device_id = pdev->subsystem_device; |
| 6505 | *board_id = ((subsystem_device_id << 16) & 0xffff0000) | |
| 6506 | subsystem_vendor_id; |
| 6507 | |
| 6508 | for (i = 0; i < ARRAY_SIZE(products); i++) |
| 6509 | if (*board_id == products[i].board_id) |
| 6510 | return i; |
| 6511 | |
Stephen M. Cameron | 6798cc0 | 2010-06-16 13:51:20 -0500 | [diff] [blame] | 6512 | if ((subsystem_vendor_id != PCI_VENDOR_ID_HP && |
| 6513 | subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) || |
| 6514 | !hpsa_allow_any) { |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 6515 | dev_warn(&pdev->dev, "unrecognized board ID: " |
| 6516 | "0x%08x, ignoring.\n", *board_id); |
| 6517 | return -ENODEV; |
| 6518 | } |
| 6519 | return ARRAY_SIZE(products) - 1; /* generic unknown smart array */ |
| 6520 | } |
| 6521 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6522 | static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev, |
| 6523 | unsigned long *memory_bar) |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 6524 | { |
| 6525 | int i; |
| 6526 | |
| 6527 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 6528 | if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) { |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 6529 | /* addressing mode bits already removed */ |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 6530 | *memory_bar = pci_resource_start(pdev, i); |
| 6531 | dev_dbg(&pdev->dev, "memory BAR = %lx\n", |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 6532 | *memory_bar); |
| 6533 | return 0; |
| 6534 | } |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 6535 | dev_warn(&pdev->dev, "no memory BAR found\n"); |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 6536 | return -ENODEV; |
| 6537 | } |
| 6538 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6539 | static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr, |
| 6540 | int wait_for_ready) |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 6541 | { |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6542 | int i, iterations; |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 6543 | u32 scratchpad; |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6544 | if (wait_for_ready) |
| 6545 | iterations = HPSA_BOARD_READY_ITERATIONS; |
| 6546 | else |
| 6547 | iterations = HPSA_BOARD_NOT_READY_ITERATIONS; |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 6548 | |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6549 | for (i = 0; i < iterations; i++) { |
| 6550 | scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET); |
| 6551 | if (wait_for_ready) { |
| 6552 | if (scratchpad == HPSA_FIRMWARE_READY) |
| 6553 | return 0; |
| 6554 | } else { |
| 6555 | if (scratchpad != HPSA_FIRMWARE_READY) |
| 6556 | return 0; |
| 6557 | } |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 6558 | msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS); |
| 6559 | } |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6560 | dev_warn(&pdev->dev, "board not ready, timed out.\n"); |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 6561 | return -ENODEV; |
| 6562 | } |
| 6563 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6564 | static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr, |
| 6565 | u32 *cfg_base_addr, u64 *cfg_base_addr_index, |
| 6566 | u64 *cfg_offset) |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 6567 | { |
| 6568 | *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET); |
| 6569 | *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET); |
| 6570 | *cfg_base_addr &= (u32) 0x0000ffff; |
| 6571 | *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr); |
| 6572 | if (*cfg_base_addr_index == -1) { |
| 6573 | dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n"); |
| 6574 | return -ENODEV; |
| 6575 | } |
| 6576 | return 0; |
| 6577 | } |
| 6578 | |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6579 | static void hpsa_free_cfgtables(struct ctlr_info *h) |
| 6580 | { |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6581 | if (h->transtable) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6582 | iounmap(h->transtable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6583 | h->transtable = NULL; |
| 6584 | } |
| 6585 | if (h->cfgtable) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6586 | iounmap(h->cfgtable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6587 | h->cfgtable = NULL; |
| 6588 | } |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6589 | } |
| 6590 | |
| 6591 | /* Find and map CISS config table and transfer table |
| 6592 | + * several items must be unmapped (freed) later |
| 6593 | + * */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6594 | static int hpsa_find_cfgtables(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6595 | { |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 6596 | u64 cfg_offset; |
| 6597 | u32 cfg_base_addr; |
| 6598 | u64 cfg_base_addr_index; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 6599 | u32 trans_offset; |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 6600 | int rc; |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 6601 | |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 6602 | rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr, |
| 6603 | &cfg_base_addr_index, &cfg_offset); |
| 6604 | if (rc) |
| 6605 | return rc; |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 6606 | h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev, |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 6607 | cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable)); |
Robert Elliott | cd3c81c | 2015-01-23 16:42:27 -0600 | [diff] [blame] | 6608 | if (!h->cfgtable) { |
| 6609 | dev_err(&h->pdev->dev, "Failed mapping cfgtable\n"); |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 6610 | return -ENOMEM; |
Robert Elliott | cd3c81c | 2015-01-23 16:42:27 -0600 | [diff] [blame] | 6611 | } |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6612 | rc = write_driver_ver_to_cfgtable(h->cfgtable); |
| 6613 | if (rc) |
| 6614 | return rc; |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 6615 | /* Find performant mode table. */ |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 6616 | trans_offset = readl(&h->cfgtable->TransMethodOffset); |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 6617 | h->transtable = remap_pci_mem(pci_resource_start(h->pdev, |
| 6618 | cfg_base_addr_index)+cfg_offset+trans_offset, |
| 6619 | sizeof(*h->transtable)); |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6620 | if (!h->transtable) { |
| 6621 | dev_err(&h->pdev->dev, "Failed mapping transfer table\n"); |
| 6622 | hpsa_free_cfgtables(h); |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 6623 | return -ENOMEM; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6624 | } |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 6625 | return 0; |
| 6626 | } |
| 6627 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6628 | static void hpsa_get_max_perf_mode_cmds(struct ctlr_info *h) |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 6629 | { |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 6630 | #define MIN_MAX_COMMANDS 16 |
| 6631 | BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS); |
| 6632 | |
| 6633 | h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands); |
Stephen M. Cameron | 72ceeae | 2011-01-06 14:48:13 -0600 | [diff] [blame] | 6634 | |
| 6635 | /* Limit commands in memory limited kdump scenario. */ |
| 6636 | if (reset_devices && h->max_commands > 32) |
| 6637 | h->max_commands = 32; |
| 6638 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 6639 | if (h->max_commands < MIN_MAX_COMMANDS) { |
| 6640 | dev_warn(&h->pdev->dev, |
| 6641 | "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n", |
| 6642 | h->max_commands, |
| 6643 | MIN_MAX_COMMANDS); |
| 6644 | h->max_commands = MIN_MAX_COMMANDS; |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 6645 | } |
| 6646 | } |
| 6647 | |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 6648 | /* If the controller reports that the total max sg entries is greater than 512, |
| 6649 | * then we know that chained SG blocks work. (Original smart arrays did not |
| 6650 | * support chained SG blocks and would return zero for max sg entries.) |
| 6651 | */ |
| 6652 | static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h) |
| 6653 | { |
| 6654 | return h->maxsgentries > 512; |
| 6655 | } |
| 6656 | |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 6657 | /* Interrogate the hardware for some limits: |
| 6658 | * max commands, max SG elements without chaining, and with chaining, |
| 6659 | * SG chain block size, etc. |
| 6660 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6661 | static void hpsa_find_board_params(struct ctlr_info *h) |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 6662 | { |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 6663 | hpsa_get_max_perf_mode_cmds(h); |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 6664 | h->nr_cmds = h->max_commands; |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 6665 | h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements)); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 6666 | h->fw_support = readl(&(h->cfgtable->misc_fw_support)); |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 6667 | if (hpsa_supports_chained_sg_blocks(h)) { |
| 6668 | /* Limit in-command s/g elements to 32 save dma'able memory. */ |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 6669 | h->max_cmd_sg_entries = 32; |
Webb Scales | 1a63ea6 | 2014-11-14 17:26:43 -0600 | [diff] [blame] | 6670 | h->chainsize = h->maxsgentries - h->max_cmd_sg_entries; |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 6671 | h->maxsgentries--; /* save one for chain pointer */ |
| 6672 | } else { |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 6673 | /* |
| 6674 | * Original smart arrays supported at most 31 s/g entries |
| 6675 | * embedded inline in the command (trying to use more |
| 6676 | * would lock up the controller) |
| 6677 | */ |
| 6678 | h->max_cmd_sg_entries = 31; |
Webb Scales | 1a63ea6 | 2014-11-14 17:26:43 -0600 | [diff] [blame] | 6679 | h->maxsgentries = 31; /* default to traditional values */ |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 6680 | h->chainsize = 0; |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 6681 | } |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 6682 | |
| 6683 | /* Find out what task management functions are supported and cache */ |
| 6684 | h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags)); |
Scott Teel | 0e7a7fc | 2014-02-18 13:55:59 -0600 | [diff] [blame] | 6685 | if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags)) |
| 6686 | dev_warn(&h->pdev->dev, "Physical aborts not supported\n"); |
| 6687 | if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags)) |
| 6688 | dev_warn(&h->pdev->dev, "Logical aborts not supported\n"); |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 6689 | } |
| 6690 | |
Stephen M. Cameron | 76c46e4 | 2010-05-27 15:13:32 -0500 | [diff] [blame] | 6691 | static inline bool hpsa_CISS_signature_present(struct ctlr_info *h) |
| 6692 | { |
Akinobu Mita | 0fc9fd4 | 2012-04-04 22:14:59 +0900 | [diff] [blame] | 6693 | if (!check_signature(h->cfgtable->Signature, "CISS", 4)) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 6694 | dev_err(&h->pdev->dev, "not a valid CISS config table\n"); |
Stephen M. Cameron | 76c46e4 | 2010-05-27 15:13:32 -0500 | [diff] [blame] | 6695 | return false; |
| 6696 | } |
| 6697 | return true; |
| 6698 | } |
| 6699 | |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 6700 | static inline void hpsa_set_driver_support_bits(struct ctlr_info *h) |
Stephen M. Cameron | f7c3910 | 2010-05-27 15:13:38 -0500 | [diff] [blame] | 6701 | { |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 6702 | u32 driver_support; |
Stephen M. Cameron | f7c3910 | 2010-05-27 15:13:38 -0500 | [diff] [blame] | 6703 | |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 6704 | driver_support = readl(&(h->cfgtable->driver_support)); |
Arnd Bergmann | 0b9e7b7 | 2014-06-26 15:44:52 +0200 | [diff] [blame] | 6705 | /* Need to enable prefetch in the SCSI core for 6400 in x86 */ |
| 6706 | #ifdef CONFIG_X86 |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 6707 | driver_support |= ENABLE_SCSI_PREFETCH; |
Stephen M. Cameron | f7c3910 | 2010-05-27 15:13:38 -0500 | [diff] [blame] | 6708 | #endif |
Stephen M. Cameron | 28e1344 | 2013-12-04 17:10:21 -0600 | [diff] [blame] | 6709 | driver_support |= ENABLE_UNIT_ATTN; |
| 6710 | writel(driver_support, &(h->cfgtable->driver_support)); |
Stephen M. Cameron | f7c3910 | 2010-05-27 15:13:38 -0500 | [diff] [blame] | 6711 | } |
| 6712 | |
Stephen M. Cameron | 3d0eab6 | 2010-05-27 15:13:43 -0500 | [diff] [blame] | 6713 | /* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result |
| 6714 | * in a prefetch beyond physical memory. |
| 6715 | */ |
| 6716 | static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h) |
| 6717 | { |
| 6718 | u32 dma_prefetch; |
| 6719 | |
| 6720 | if (h->board_id != 0x3225103C) |
| 6721 | return; |
| 6722 | dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG); |
| 6723 | dma_prefetch |= 0x8000; |
| 6724 | writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG); |
| 6725 | } |
| 6726 | |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 6727 | static int hpsa_wait_for_clear_event_notify_ack(struct ctlr_info *h) |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 6728 | { |
| 6729 | int i; |
| 6730 | u32 doorbell_value; |
| 6731 | unsigned long flags; |
| 6732 | /* wait until the clear_event_notify bit 6 is cleared by controller. */ |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 6733 | for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) { |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 6734 | spin_lock_irqsave(&h->lock, flags); |
| 6735 | doorbell_value = readl(h->vaddr + SA5_DOORBELL); |
| 6736 | spin_unlock_irqrestore(&h->lock, flags); |
| 6737 | if (!(doorbell_value & DOORBELL_CLEAR_EVENTS)) |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 6738 | goto done; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 6739 | /* delay and try again */ |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 6740 | msleep(CLEAR_EVENT_WAIT_INTERVAL); |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 6741 | } |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 6742 | return -ENODEV; |
| 6743 | done: |
| 6744 | return 0; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 6745 | } |
| 6746 | |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 6747 | static int hpsa_wait_for_mode_change_ack(struct ctlr_info *h) |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 6748 | { |
| 6749 | int i; |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 6750 | u32 doorbell_value; |
| 6751 | unsigned long flags; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 6752 | |
| 6753 | /* under certain very rare conditions, this can take awhile. |
| 6754 | * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right |
| 6755 | * as we enter this code.) |
| 6756 | */ |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 6757 | for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) { |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 6758 | if (h->remove_in_progress) |
| 6759 | goto done; |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 6760 | spin_lock_irqsave(&h->lock, flags); |
| 6761 | doorbell_value = readl(h->vaddr + SA5_DOORBELL); |
| 6762 | spin_unlock_irqrestore(&h->lock, flags); |
Dan Carpenter | 382be66 | 2011-02-15 15:33:13 -0600 | [diff] [blame] | 6763 | if (!(doorbell_value & CFGTBL_ChangeReq)) |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 6764 | goto done; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 6765 | /* delay and try again */ |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 6766 | msleep(MODE_CHANGE_WAIT_INTERVAL); |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 6767 | } |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 6768 | return -ENODEV; |
| 6769 | done: |
| 6770 | return 0; |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 6771 | } |
| 6772 | |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 6773 | /* return -ENODEV or other reason on error, 0 on success */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6774 | static int hpsa_enter_simple_mode(struct ctlr_info *h) |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 6775 | { |
| 6776 | u32 trans_support; |
| 6777 | |
| 6778 | trans_support = readl(&(h->cfgtable->TransportSupport)); |
| 6779 | if (!(trans_support & SIMPLE_MODE)) |
| 6780 | return -ENOTSUPP; |
| 6781 | |
| 6782 | h->max_commands = readl(&(h->cfgtable->CmdsOutMax)); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 6783 | |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 6784 | /* Update the field, and then ring the doorbell */ |
| 6785 | writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest)); |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 6786 | writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi); |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 6787 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 6788 | if (hpsa_wait_for_mode_change_ack(h)) |
| 6789 | goto error; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 6790 | print_cfg_table(&h->pdev->dev, h->cfgtable); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 6791 | if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple)) |
| 6792 | goto error; |
Stephen M. Cameron | 960a30e | 2011-02-15 15:33:03 -0600 | [diff] [blame] | 6793 | h->transMethod = CFGTBL_Trans_Simple; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 6794 | return 0; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 6795 | error: |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 6796 | dev_err(&h->pdev->dev, "failed to enter simple mode\n"); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 6797 | return -ENODEV; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 6798 | } |
| 6799 | |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6800 | /* free items allocated or mapped by hpsa_pci_init */ |
| 6801 | static void hpsa_free_pci_init(struct ctlr_info *h) |
| 6802 | { |
| 6803 | hpsa_free_cfgtables(h); /* pci_init 4 */ |
| 6804 | iounmap(h->vaddr); /* pci_init 3 */ |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6805 | h->vaddr = NULL; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6806 | hpsa_disable_interrupt_mode(h); /* pci_init 2 */ |
| 6807 | pci_release_regions(h->pdev); /* pci_init 2 */ |
| 6808 | pci_disable_device(h->pdev); /* pci_init 1 */ |
| 6809 | } |
| 6810 | |
| 6811 | /* several items must be freed later */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6812 | static int hpsa_pci_init(struct ctlr_info *h) |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 6813 | { |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 6814 | int prod_index, err; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6815 | |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 6816 | prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id); |
| 6817 | if (prod_index < 0) |
Robert Elliott | 60f923b | 2015-01-23 16:42:06 -0600 | [diff] [blame] | 6818 | return prod_index; |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 6819 | h->product_name = products[prod_index].product_name; |
| 6820 | h->access = *(products[prod_index].access); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6821 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 6822 | h->needs_abort_tags_swizzled = |
| 6823 | ctlr_needs_abort_tags_swizzled(h->board_id); |
| 6824 | |
Matthew Garrett | e5a44df | 2011-11-11 11:14:23 -0500 | [diff] [blame] | 6825 | pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S | |
| 6826 | PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM); |
| 6827 | |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 6828 | err = pci_enable_device(h->pdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6829 | if (err) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6830 | dev_err(&h->pdev->dev, "failed to enable PCI device\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6831 | return err; |
| 6832 | } |
| 6833 | |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 6834 | err = pci_request_regions(h->pdev, HPSA); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6835 | if (err) { |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 6836 | dev_err(&h->pdev->dev, |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6837 | "failed to obtain PCI resources\n"); |
| 6838 | goto clean1; /* pci */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6839 | } |
Robert Elliott | 4fa604e | 2014-11-14 17:27:24 -0600 | [diff] [blame] | 6840 | |
| 6841 | pci_set_master(h->pdev); |
| 6842 | |
Stephen M. Cameron | 6b3f4c5 | 2010-05-27 15:13:02 -0500 | [diff] [blame] | 6843 | hpsa_interrupt_mode(h); |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 6844 | err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr); |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 6845 | if (err) |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6846 | goto clean2; /* intmode+region, pci */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6847 | h->vaddr = remap_pci_mem(h->paddr, 0x250); |
Stephen M. Cameron | 204892e | 2010-05-27 15:13:22 -0500 | [diff] [blame] | 6848 | if (!h->vaddr) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6849 | dev_err(&h->pdev->dev, "failed to remap PCI mem\n"); |
Stephen M. Cameron | 204892e | 2010-05-27 15:13:22 -0500 | [diff] [blame] | 6850 | err = -ENOMEM; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6851 | goto clean2; /* intmode+region, pci */ |
Stephen M. Cameron | 204892e | 2010-05-27 15:13:22 -0500 | [diff] [blame] | 6852 | } |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6853 | err = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY); |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 6854 | if (err) |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6855 | goto clean3; /* vaddr, intmode+region, pci */ |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 6856 | err = hpsa_find_cfgtables(h); |
| 6857 | if (err) |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6858 | goto clean3; /* vaddr, intmode+region, pci */ |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 6859 | hpsa_find_board_params(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6860 | |
Stephen M. Cameron | 76c46e4 | 2010-05-27 15:13:32 -0500 | [diff] [blame] | 6861 | if (!hpsa_CISS_signature_present(h)) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6862 | err = -ENODEV; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6863 | goto clean4; /* cfgtables, vaddr, intmode+region, pci */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6864 | } |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 6865 | hpsa_set_driver_support_bits(h); |
Stephen M. Cameron | 3d0eab6 | 2010-05-27 15:13:43 -0500 | [diff] [blame] | 6866 | hpsa_p600_dma_prefetch_quirk(h); |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 6867 | err = hpsa_enter_simple_mode(h); |
| 6868 | if (err) |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6869 | goto clean4; /* cfgtables, vaddr, intmode+region, pci */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6870 | return 0; |
| 6871 | |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6872 | clean4: /* cfgtables, vaddr, intmode+region, pci */ |
| 6873 | hpsa_free_cfgtables(h); |
| 6874 | clean3: /* vaddr, intmode+region, pci */ |
| 6875 | iounmap(h->vaddr); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6876 | h->vaddr = NULL; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6877 | clean2: /* intmode+region, pci */ |
| 6878 | hpsa_disable_interrupt_mode(h); |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 6879 | pci_release_regions(h->pdev); |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 6880 | clean1: /* pci */ |
| 6881 | pci_disable_device(h->pdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6882 | return err; |
| 6883 | } |
| 6884 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6885 | static void hpsa_hba_inquiry(struct ctlr_info *h) |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 6886 | { |
| 6887 | int rc; |
| 6888 | |
| 6889 | #define HBA_INQUIRY_BYTE_COUNT 64 |
| 6890 | h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL); |
| 6891 | if (!h->hba_inquiry_data) |
| 6892 | return; |
| 6893 | rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0, |
| 6894 | h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT); |
| 6895 | if (rc != 0) { |
| 6896 | kfree(h->hba_inquiry_data); |
| 6897 | h->hba_inquiry_data = NULL; |
| 6898 | } |
| 6899 | } |
| 6900 | |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 6901 | static int hpsa_init_reset_devices(struct pci_dev *pdev, u32 board_id) |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 6902 | { |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6903 | int rc, i; |
Tomas Henzl | 3b74729 | 2015-01-23 16:41:20 -0600 | [diff] [blame] | 6904 | void __iomem *vaddr; |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 6905 | |
| 6906 | if (!reset_devices) |
| 6907 | return 0; |
| 6908 | |
Tomas Henzl | 132aa22 | 2014-08-14 16:12:39 +0200 | [diff] [blame] | 6909 | /* kdump kernel is loading, we don't know in which state is |
| 6910 | * the pci interface. The dev->enable_cnt is equal zero |
| 6911 | * so we call enable+disable, wait a while and switch it on. |
| 6912 | */ |
| 6913 | rc = pci_enable_device(pdev); |
| 6914 | if (rc) { |
| 6915 | dev_warn(&pdev->dev, "Failed to enable PCI device\n"); |
| 6916 | return -ENODEV; |
| 6917 | } |
| 6918 | pci_disable_device(pdev); |
| 6919 | msleep(260); /* a randomly chosen number */ |
| 6920 | rc = pci_enable_device(pdev); |
| 6921 | if (rc) { |
| 6922 | dev_warn(&pdev->dev, "failed to enable device.\n"); |
| 6923 | return -ENODEV; |
| 6924 | } |
Robert Elliott | 4fa604e | 2014-11-14 17:27:24 -0600 | [diff] [blame] | 6925 | |
Tomas Henzl | 859c75a | 2014-09-12 14:44:15 +0200 | [diff] [blame] | 6926 | pci_set_master(pdev); |
Robert Elliott | 4fa604e | 2014-11-14 17:27:24 -0600 | [diff] [blame] | 6927 | |
Tomas Henzl | 3b74729 | 2015-01-23 16:41:20 -0600 | [diff] [blame] | 6928 | vaddr = pci_ioremap_bar(pdev, 0); |
| 6929 | if (vaddr == NULL) { |
| 6930 | rc = -ENOMEM; |
| 6931 | goto out_disable; |
| 6932 | } |
| 6933 | writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET); |
| 6934 | iounmap(vaddr); |
| 6935 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6936 | /* Reset the controller with a PCI power-cycle or via doorbell */ |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 6937 | rc = hpsa_kdump_hard_reset_controller(pdev, board_id); |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 6938 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6939 | /* -ENOTSUPP here means we cannot reset the controller |
| 6940 | * but it's already (and still) up and running in |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 6941 | * "performant mode". Or, it might be 640x, which can't reset |
| 6942 | * due to concerns about shared bbwc between 6402/6404 pair. |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6943 | */ |
Robert Elliott | adf1b3a | 2015-01-23 16:42:01 -0600 | [diff] [blame] | 6944 | if (rc) |
Tomas Henzl | 132aa22 | 2014-08-14 16:12:39 +0200 | [diff] [blame] | 6945 | goto out_disable; |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 6946 | |
| 6947 | /* Now try to get the controller to respond to a no-op */ |
Robert Elliott | 1ba66c9 | 2015-01-23 16:42:11 -0600 | [diff] [blame] | 6948 | dev_info(&pdev->dev, "Waiting for controller to respond to no-op\n"); |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 6949 | for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) { |
| 6950 | if (hpsa_noop(pdev) == 0) |
| 6951 | break; |
| 6952 | else |
| 6953 | dev_warn(&pdev->dev, "no-op failed%s\n", |
| 6954 | (i < 11 ? "; re-trying" : "")); |
| 6955 | } |
Tomas Henzl | 132aa22 | 2014-08-14 16:12:39 +0200 | [diff] [blame] | 6956 | |
| 6957 | out_disable: |
| 6958 | |
| 6959 | pci_disable_device(pdev); |
| 6960 | return rc; |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 6961 | } |
| 6962 | |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 6963 | static void hpsa_free_cmd_pool(struct ctlr_info *h) |
| 6964 | { |
| 6965 | kfree(h->cmd_pool_bits); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6966 | h->cmd_pool_bits = NULL; |
| 6967 | if (h->cmd_pool) { |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 6968 | pci_free_consistent(h->pdev, |
| 6969 | h->nr_cmds * sizeof(struct CommandList), |
| 6970 | h->cmd_pool, |
| 6971 | h->cmd_pool_dhandle); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6972 | h->cmd_pool = NULL; |
| 6973 | h->cmd_pool_dhandle = 0; |
| 6974 | } |
| 6975 | if (h->errinfo_pool) { |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 6976 | pci_free_consistent(h->pdev, |
| 6977 | h->nr_cmds * sizeof(struct ErrorInfo), |
| 6978 | h->errinfo_pool, |
| 6979 | h->errinfo_pool_dhandle); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 6980 | h->errinfo_pool = NULL; |
| 6981 | h->errinfo_pool_dhandle = 0; |
| 6982 | } |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 6983 | } |
| 6984 | |
Robert Elliott | d37ffbe | 2015-04-23 09:32:27 -0500 | [diff] [blame] | 6985 | static int hpsa_alloc_cmd_pool(struct ctlr_info *h) |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 6986 | { |
| 6987 | h->cmd_pool_bits = kzalloc( |
| 6988 | DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) * |
| 6989 | sizeof(unsigned long), GFP_KERNEL); |
| 6990 | h->cmd_pool = pci_alloc_consistent(h->pdev, |
| 6991 | h->nr_cmds * sizeof(*h->cmd_pool), |
| 6992 | &(h->cmd_pool_dhandle)); |
| 6993 | h->errinfo_pool = pci_alloc_consistent(h->pdev, |
| 6994 | h->nr_cmds * sizeof(*h->errinfo_pool), |
| 6995 | &(h->errinfo_pool_dhandle)); |
| 6996 | if ((h->cmd_pool_bits == NULL) |
| 6997 | || (h->cmd_pool == NULL) |
| 6998 | || (h->errinfo_pool == NULL)) { |
| 6999 | dev_err(&h->pdev->dev, "out of memory in %s", __func__); |
Robert Elliott | 2c14334 | 2015-01-23 16:42:48 -0600 | [diff] [blame] | 7000 | goto clean_up; |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 7001 | } |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 7002 | hpsa_preinitialize_commands(h); |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 7003 | return 0; |
Robert Elliott | 2c14334 | 2015-01-23 16:42:48 -0600 | [diff] [blame] | 7004 | clean_up: |
| 7005 | hpsa_free_cmd_pool(h); |
| 7006 | return -ENOMEM; |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 7007 | } |
| 7008 | |
Stephen M. Cameron | 41b3cf0 | 2014-05-29 10:53:13 -0500 | [diff] [blame] | 7009 | static void hpsa_irq_affinity_hints(struct ctlr_info *h) |
| 7010 | { |
Fabian Frederick | ec42995 | 2015-01-23 16:41:46 -0600 | [diff] [blame] | 7011 | int i, cpu; |
Stephen M. Cameron | 41b3cf0 | 2014-05-29 10:53:13 -0500 | [diff] [blame] | 7012 | |
| 7013 | cpu = cpumask_first(cpu_online_mask); |
| 7014 | for (i = 0; i < h->msix_vector; i++) { |
Fabian Frederick | ec42995 | 2015-01-23 16:41:46 -0600 | [diff] [blame] | 7015 | irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu)); |
Stephen M. Cameron | 41b3cf0 | 2014-05-29 10:53:13 -0500 | [diff] [blame] | 7016 | cpu = cpumask_next(cpu, cpu_online_mask); |
| 7017 | } |
| 7018 | } |
| 7019 | |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7020 | /* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */ |
| 7021 | static void hpsa_free_irqs(struct ctlr_info *h) |
| 7022 | { |
| 7023 | int i; |
| 7024 | |
| 7025 | if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) { |
| 7026 | /* Single reply queue, only one irq to free */ |
| 7027 | i = h->intr_mode; |
| 7028 | irq_set_affinity_hint(h->intr[i], NULL); |
| 7029 | free_irq(h->intr[i], &h->q[i]); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7030 | h->q[i] = 0; |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7031 | return; |
| 7032 | } |
| 7033 | |
| 7034 | for (i = 0; i < h->msix_vector; i++) { |
| 7035 | irq_set_affinity_hint(h->intr[i], NULL); |
| 7036 | free_irq(h->intr[i], &h->q[i]); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7037 | h->q[i] = 0; |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7038 | } |
Robert Elliott | a4e17fc | 2015-01-23 16:41:51 -0600 | [diff] [blame] | 7039 | for (; i < MAX_REPLY_QUEUES; i++) |
| 7040 | h->q[i] = 0; |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7041 | } |
| 7042 | |
Robert Elliott | 9ee6179 | 2015-01-23 16:42:32 -0600 | [diff] [blame] | 7043 | /* returns 0 on success; cleans up and returns -Enn on error */ |
| 7044 | static int hpsa_request_irqs(struct ctlr_info *h, |
Stephen M. Cameron | 0ae01a3 | 2011-05-03 14:59:25 -0500 | [diff] [blame] | 7045 | irqreturn_t (*msixhandler)(int, void *), |
| 7046 | irqreturn_t (*intxhandler)(int, void *)) |
| 7047 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7048 | int rc, i; |
Stephen M. Cameron | 0ae01a3 | 2011-05-03 14:59:25 -0500 | [diff] [blame] | 7049 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7050 | /* |
| 7051 | * initialize h->q[x] = x so that interrupt handlers know which |
| 7052 | * queue to process. |
| 7053 | */ |
| 7054 | for (i = 0; i < MAX_REPLY_QUEUES; i++) |
| 7055 | h->q[i] = (u8) i; |
| 7056 | |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 7057 | if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7058 | /* If performant mode and MSI-X, use multiple reply queues */ |
Robert Elliott | a4e17fc | 2015-01-23 16:41:51 -0600 | [diff] [blame] | 7059 | for (i = 0; i < h->msix_vector; i++) { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7060 | rc = request_irq(h->intr[i], msixhandler, |
| 7061 | 0, h->devname, |
| 7062 | &h->q[i]); |
Robert Elliott | a4e17fc | 2015-01-23 16:41:51 -0600 | [diff] [blame] | 7063 | if (rc) { |
| 7064 | int j; |
| 7065 | |
| 7066 | dev_err(&h->pdev->dev, |
| 7067 | "failed to get irq %d for %s\n", |
| 7068 | h->intr[i], h->devname); |
| 7069 | for (j = 0; j < i; j++) { |
| 7070 | free_irq(h->intr[j], &h->q[j]); |
| 7071 | h->q[j] = 0; |
| 7072 | } |
| 7073 | for (; j < MAX_REPLY_QUEUES; j++) |
| 7074 | h->q[j] = 0; |
| 7075 | return rc; |
| 7076 | } |
| 7077 | } |
Stephen M. Cameron | 41b3cf0 | 2014-05-29 10:53:13 -0500 | [diff] [blame] | 7078 | hpsa_irq_affinity_hints(h); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7079 | } else { |
| 7080 | /* Use single reply pool */ |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 7081 | if (h->msix_vector > 0 || h->msi_vector) { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7082 | rc = request_irq(h->intr[h->intr_mode], |
| 7083 | msixhandler, 0, h->devname, |
| 7084 | &h->q[h->intr_mode]); |
| 7085 | } else { |
| 7086 | rc = request_irq(h->intr[h->intr_mode], |
| 7087 | intxhandler, IRQF_SHARED, h->devname, |
| 7088 | &h->q[h->intr_mode]); |
| 7089 | } |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7090 | irq_set_affinity_hint(h->intr[h->intr_mode], NULL); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7091 | } |
Stephen M. Cameron | 0ae01a3 | 2011-05-03 14:59:25 -0500 | [diff] [blame] | 7092 | if (rc) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7093 | dev_err(&h->pdev->dev, "failed to get irq %d for %s\n", |
Stephen M. Cameron | 0ae01a3 | 2011-05-03 14:59:25 -0500 | [diff] [blame] | 7094 | h->intr[h->intr_mode], h->devname); |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7095 | hpsa_free_irqs(h); |
Stephen M. Cameron | 0ae01a3 | 2011-05-03 14:59:25 -0500 | [diff] [blame] | 7096 | return -ENODEV; |
| 7097 | } |
| 7098 | return 0; |
| 7099 | } |
| 7100 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7101 | static int hpsa_kdump_soft_reset(struct ctlr_info *h) |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7102 | { |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 7103 | hpsa_send_host_reset(h, RAID_CTLR_LUNID, HPSA_RESET_TYPE_CONTROLLER); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7104 | |
| 7105 | dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n"); |
| 7106 | if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY)) { |
| 7107 | dev_warn(&h->pdev->dev, "Soft reset had no effect.\n"); |
| 7108 | return -1; |
| 7109 | } |
| 7110 | |
| 7111 | dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n"); |
| 7112 | if (hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY)) { |
| 7113 | dev_warn(&h->pdev->dev, "Board failed to become ready " |
| 7114 | "after soft reset.\n"); |
| 7115 | return -1; |
| 7116 | } |
| 7117 | |
| 7118 | return 0; |
| 7119 | } |
| 7120 | |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 7121 | static void hpsa_free_reply_queues(struct ctlr_info *h) |
| 7122 | { |
| 7123 | int i; |
| 7124 | |
| 7125 | for (i = 0; i < h->nreply_queues; i++) { |
| 7126 | if (!h->reply_queue[i].head) |
| 7127 | continue; |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7128 | pci_free_consistent(h->pdev, |
| 7129 | h->reply_queue_size, |
| 7130 | h->reply_queue[i].head, |
| 7131 | h->reply_queue[i].busaddr); |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 7132 | h->reply_queue[i].head = NULL; |
| 7133 | h->reply_queue[i].busaddr = 0; |
| 7134 | } |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7135 | h->reply_queue_size = 0; |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 7136 | } |
| 7137 | |
Stephen M. Cameron | 0097f0f | 2012-05-01 11:43:21 -0500 | [diff] [blame] | 7138 | static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h) |
| 7139 | { |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7140 | hpsa_free_performant_mode(h); /* init_one 7 */ |
| 7141 | hpsa_free_sg_chain_blocks(h); /* init_one 6 */ |
| 7142 | hpsa_free_cmd_pool(h); /* init_one 5 */ |
| 7143 | hpsa_free_irqs(h); /* init_one 4 */ |
| 7144 | hpsa_free_pci_init(h); /* init_one 3 */ |
| 7145 | kfree(h); /* init_one 1 */ |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7146 | } |
| 7147 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7148 | /* Called when controller lockup detected. */ |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 7149 | static void fail_all_outstanding_cmds(struct ctlr_info *h) |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7150 | { |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 7151 | int i, refcount; |
| 7152 | struct CommandList *c; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7153 | int failcount = 0; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7154 | |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 7155 | flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */ |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 7156 | for (i = 0; i < h->nr_cmds; i++) { |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 7157 | c = h->cmd_pool + i; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 7158 | refcount = atomic_inc_return(&c->refcount); |
| 7159 | if (refcount > 1) { |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7160 | c->err_info->CommandStatus = CMD_CTLR_LOCKUP; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 7161 | finish_cmd(c); |
Stephen Cameron | 433b5f4 | 2015-04-23 09:32:11 -0500 | [diff] [blame] | 7162 | atomic_dec(&h->commands_outstanding); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7163 | failcount++; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 7164 | } |
| 7165 | cmd_free(h, c); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7166 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7167 | dev_warn(&h->pdev->dev, |
| 7168 | "failed %d commands in fail_all\n", failcount); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7169 | } |
| 7170 | |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7171 | static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value) |
| 7172 | { |
Rusty Russell | c8ed001 | 2015-03-05 10:49:19 +1030 | [diff] [blame] | 7173 | int cpu; |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7174 | |
Rusty Russell | c8ed001 | 2015-03-05 10:49:19 +1030 | [diff] [blame] | 7175 | for_each_online_cpu(cpu) { |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7176 | u32 *lockup_detected; |
| 7177 | lockup_detected = per_cpu_ptr(h->lockup_detected, cpu); |
| 7178 | *lockup_detected = value; |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7179 | } |
| 7180 | wmb(); /* be sure the per-cpu variables are out to memory */ |
| 7181 | } |
| 7182 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7183 | static void controller_lockup_detected(struct ctlr_info *h) |
| 7184 | { |
| 7185 | unsigned long flags; |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7186 | u32 lockup_detected; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7187 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7188 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
| 7189 | spin_lock_irqsave(&h->lock, flags); |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7190 | lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET); |
| 7191 | if (!lockup_detected) { |
| 7192 | /* no heartbeat, but controller gave us a zero. */ |
| 7193 | dev_warn(&h->pdev->dev, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7194 | "lockup detected after %d but scratchpad register is zero\n", |
| 7195 | h->heartbeat_sample_interval / HZ); |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7196 | lockup_detected = 0xffffffff; |
| 7197 | } |
| 7198 | set_lockup_detected_for_all_cpus(h, lockup_detected); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7199 | spin_unlock_irqrestore(&h->lock, flags); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7200 | dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n", |
| 7201 | lockup_detected, h->heartbeat_sample_interval / HZ); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7202 | pci_disable_device(h->pdev); |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 7203 | fail_all_outstanding_cmds(h); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7204 | } |
| 7205 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7206 | static int detect_controller_lockup(struct ctlr_info *h) |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7207 | { |
| 7208 | u64 now; |
| 7209 | u32 heartbeat; |
| 7210 | unsigned long flags; |
| 7211 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7212 | now = get_jiffies_64(); |
| 7213 | /* If we've received an interrupt recently, we're ok. */ |
| 7214 | if (time_after64(h->last_intr_timestamp + |
Stephen M. Cameron | e85c597 | 2012-05-01 11:43:42 -0500 | [diff] [blame] | 7215 | (h->heartbeat_sample_interval), now)) |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7216 | return false; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7217 | |
| 7218 | /* |
| 7219 | * If we've already checked the heartbeat recently, we're ok. |
| 7220 | * This could happen if someone sends us a signal. We |
| 7221 | * otherwise don't care about signals in this thread. |
| 7222 | */ |
| 7223 | if (time_after64(h->last_heartbeat_timestamp + |
Stephen M. Cameron | e85c597 | 2012-05-01 11:43:42 -0500 | [diff] [blame] | 7224 | (h->heartbeat_sample_interval), now)) |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7225 | return false; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7226 | |
| 7227 | /* If heartbeat has not changed since we last looked, we're not ok. */ |
| 7228 | spin_lock_irqsave(&h->lock, flags); |
| 7229 | heartbeat = readl(&h->cfgtable->HeartBeat); |
| 7230 | spin_unlock_irqrestore(&h->lock, flags); |
| 7231 | if (h->last_heartbeat == heartbeat) { |
| 7232 | controller_lockup_detected(h); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7233 | return true; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7234 | } |
| 7235 | |
| 7236 | /* We're ok. */ |
| 7237 | h->last_heartbeat = heartbeat; |
| 7238 | h->last_heartbeat_timestamp = now; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7239 | return false; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7240 | } |
| 7241 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7242 | static void hpsa_ack_ctlr_events(struct ctlr_info *h) |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7243 | { |
| 7244 | int i; |
| 7245 | char *event_type; |
| 7246 | |
Stephen Cameron | e4aa3e6 | 2015-01-23 16:44:07 -0600 | [diff] [blame] | 7247 | if (!(h->fw_support & MISC_FW_EVENT_NOTIFY)) |
| 7248 | return; |
| 7249 | |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7250 | /* Ask the controller to clear the events we're handling. */ |
Stephen M. Cameron | 1f7cee8 | 2014-02-18 13:56:09 -0600 | [diff] [blame] | 7251 | if ((h->transMethod & (CFGTBL_Trans_io_accel1 |
| 7252 | | CFGTBL_Trans_io_accel2)) && |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7253 | (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE || |
| 7254 | h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) { |
| 7255 | |
| 7256 | if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE) |
| 7257 | event_type = "state change"; |
| 7258 | if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE) |
| 7259 | event_type = "configuration change"; |
| 7260 | /* Stop sending new RAID offload reqs via the IO accelerator */ |
| 7261 | scsi_block_requests(h->scsi_host); |
| 7262 | for (i = 0; i < h->ndevices; i++) |
| 7263 | h->dev[i]->offload_enabled = 0; |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 7264 | hpsa_drain_accel_commands(h); |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7265 | /* Set 'accelerator path config change' bit */ |
| 7266 | dev_warn(&h->pdev->dev, |
| 7267 | "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n", |
| 7268 | h->events, event_type); |
| 7269 | writel(h->events, &(h->cfgtable->clear_event_notify)); |
| 7270 | /* Set the "clear event notify field update" bit 6 */ |
| 7271 | writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL); |
| 7272 | /* Wait until ctlr clears 'clear event notify field', bit 6 */ |
| 7273 | hpsa_wait_for_clear_event_notify_ack(h); |
| 7274 | scsi_unblock_requests(h->scsi_host); |
| 7275 | } else { |
| 7276 | /* Acknowledge controller notification events. */ |
| 7277 | writel(h->events, &(h->cfgtable->clear_event_notify)); |
| 7278 | writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL); |
| 7279 | hpsa_wait_for_clear_event_notify_ack(h); |
| 7280 | #if 0 |
| 7281 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
| 7282 | hpsa_wait_for_mode_change_ack(h); |
| 7283 | #endif |
| 7284 | } |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7285 | return; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7286 | } |
| 7287 | |
| 7288 | /* Check a register on the controller to see if there are configuration |
| 7289 | * changes (added/changed/removed logical drives, etc.) which mean that |
Scott Teel | e863d68 | 2014-02-18 13:57:05 -0600 | [diff] [blame] | 7290 | * we should rescan the controller for devices. |
| 7291 | * Also check flag for driver-initiated rescan. |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7292 | */ |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7293 | static int hpsa_ctlr_needs_rescan(struct ctlr_info *h) |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7294 | { |
| 7295 | if (!(h->fw_support & MISC_FW_EVENT_NOTIFY)) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7296 | return 0; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7297 | |
| 7298 | h->events = readl(&(h->cfgtable->event_notify)); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7299 | return h->events & RESCAN_REQUIRED_EVENT_BITS; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7300 | } |
| 7301 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7302 | /* |
| 7303 | * Check if any of the offline devices have become ready |
| 7304 | */ |
| 7305 | static int hpsa_offline_devices_ready(struct ctlr_info *h) |
| 7306 | { |
| 7307 | unsigned long flags; |
| 7308 | struct offline_device_entry *d; |
| 7309 | struct list_head *this, *tmp; |
| 7310 | |
| 7311 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 7312 | list_for_each_safe(this, tmp, &h->offline_device_list) { |
| 7313 | d = list_entry(this, struct offline_device_entry, |
| 7314 | offline_list); |
| 7315 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
Stephen M. Cameron | d1fea47 | 2014-07-03 10:17:58 -0500 | [diff] [blame] | 7316 | if (!hpsa_volume_offline(h, d->scsi3addr)) { |
| 7317 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 7318 | list_del(&d->offline_list); |
| 7319 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7320 | return 1; |
Stephen M. Cameron | d1fea47 | 2014-07-03 10:17:58 -0500 | [diff] [blame] | 7321 | } |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7322 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 7323 | } |
| 7324 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
| 7325 | return 0; |
| 7326 | } |
| 7327 | |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7328 | static void hpsa_rescan_ctlr_worker(struct work_struct *work) |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7329 | { |
| 7330 | unsigned long flags; |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 7331 | struct ctlr_info *h = container_of(to_delayed_work(work), |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7332 | struct ctlr_info, rescan_ctlr_work); |
| 7333 | |
| 7334 | |
| 7335 | if (h->remove_in_progress) |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 7336 | return; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7337 | |
| 7338 | if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) { |
| 7339 | scsi_host_get(h->scsi_host); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7340 | hpsa_ack_ctlr_events(h); |
| 7341 | hpsa_scan_start(h->scsi_host); |
| 7342 | scsi_host_put(h->scsi_host); |
| 7343 | } |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 7344 | spin_lock_irqsave(&h->lock, flags); |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7345 | if (!h->remove_in_progress) |
| 7346 | queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work, |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 7347 | h->heartbeat_sample_interval); |
| 7348 | spin_unlock_irqrestore(&h->lock, flags); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7349 | } |
| 7350 | |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7351 | static void hpsa_monitor_ctlr_worker(struct work_struct *work) |
| 7352 | { |
| 7353 | unsigned long flags; |
| 7354 | struct ctlr_info *h = container_of(to_delayed_work(work), |
| 7355 | struct ctlr_info, monitor_ctlr_work); |
| 7356 | |
| 7357 | detect_controller_lockup(h); |
| 7358 | if (lockup_detected(h)) |
| 7359 | return; |
| 7360 | |
| 7361 | spin_lock_irqsave(&h->lock, flags); |
| 7362 | if (!h->remove_in_progress) |
| 7363 | schedule_delayed_work(&h->monitor_ctlr_work, |
| 7364 | h->heartbeat_sample_interval); |
| 7365 | spin_unlock_irqrestore(&h->lock, flags); |
| 7366 | } |
| 7367 | |
| 7368 | static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h, |
| 7369 | char *name) |
| 7370 | { |
| 7371 | struct workqueue_struct *wq = NULL; |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7372 | |
Don Brace | 397ea9c | 2015-02-06 17:44:15 -0600 | [diff] [blame] | 7373 | wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr); |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7374 | if (!wq) |
| 7375 | dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name); |
| 7376 | |
| 7377 | return wq; |
| 7378 | } |
| 7379 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7380 | static int hpsa_init_one(struct pci_dev *pdev, const struct pci_device_id *ent) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7381 | { |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 7382 | int dac, rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7383 | struct ctlr_info *h; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7384 | int try_soft_reset = 0; |
| 7385 | unsigned long flags; |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 7386 | u32 board_id; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7387 | |
| 7388 | if (number_of_controllers == 0) |
| 7389 | printk(KERN_INFO DRIVER_NAME "\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7390 | |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 7391 | rc = hpsa_lookup_board_id(pdev, &board_id); |
| 7392 | if (rc < 0) { |
| 7393 | dev_warn(&pdev->dev, "Board ID not found\n"); |
| 7394 | return rc; |
| 7395 | } |
| 7396 | |
| 7397 | rc = hpsa_init_reset_devices(pdev, board_id); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7398 | if (rc) { |
| 7399 | if (rc != -ENOTSUPP) |
| 7400 | return rc; |
| 7401 | /* If the reset fails in a particular way (it has no way to do |
| 7402 | * a proper hard reset, so returns -ENOTSUPP) we can try to do |
| 7403 | * a soft reset once we get the controller configured up to the |
| 7404 | * point that it can accept a command. |
| 7405 | */ |
| 7406 | try_soft_reset = 1; |
| 7407 | rc = 0; |
| 7408 | } |
| 7409 | |
| 7410 | reinit_after_soft_reset: |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7411 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7412 | /* Command structures must be aligned on a 32-byte boundary because |
| 7413 | * the 5 lower bits of the address are used by the hardware. and by |
| 7414 | * the driver. See comments in hpsa.h for more info. |
| 7415 | */ |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7416 | BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7417 | h = kzalloc(sizeof(*h), GFP_KERNEL); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7418 | if (!h) { |
| 7419 | dev_err(&pdev->dev, "Failed to allocate controller head\n"); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 7420 | return -ENOMEM; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7421 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7422 | |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 7423 | h->pdev = pdev; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7424 | |
Stephen M. Cameron | a9a3a27 | 2011-02-15 15:32:53 -0600 | [diff] [blame] | 7425 | h->intr_mode = hpsa_simple_mode ? SIMPLE_MODE_INT : PERF_MODE_INT; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7426 | INIT_LIST_HEAD(&h->offline_device_list); |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 7427 | spin_lock_init(&h->lock); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7428 | spin_lock_init(&h->offline_device_lock); |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 7429 | spin_lock_init(&h->scan_lock); |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 7430 | atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 7431 | atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS); |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7432 | |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7433 | h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan"); |
| 7434 | if (!h->rescan_ctlr_wq) { |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 7435 | rc = -ENOMEM; |
| 7436 | goto clean1; |
| 7437 | } |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7438 | |
| 7439 | h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit"); |
| 7440 | if (!h->resubmit_wq) { |
| 7441 | rc = -ENOMEM; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7442 | goto clean1; /* aer/h */ |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7443 | } |
| 7444 | |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7445 | /* Allocate and clear per-cpu variable lockup_detected */ |
| 7446 | h->lockup_detected = alloc_percpu(u32); |
Stephen M. Cameron | 2a5ac32 | 2014-07-03 10:18:08 -0500 | [diff] [blame] | 7447 | if (!h->lockup_detected) { |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7448 | dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n"); |
Stephen M. Cameron | 2a5ac32 | 2014-07-03 10:18:08 -0500 | [diff] [blame] | 7449 | rc = -ENOMEM; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7450 | goto clean1; /* wq/aer/h */ |
Stephen M. Cameron | 2a5ac32 | 2014-07-03 10:18:08 -0500 | [diff] [blame] | 7451 | } |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7452 | set_lockup_detected_for_all_cpus(h, 0); |
| 7453 | |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 7454 | rc = hpsa_pci_init(h); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7455 | if (rc) |
| 7456 | goto clean2; /* lockup, wq/aer/h */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7457 | |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 7458 | sprintf(h->devname, HPSA "%d", number_of_controllers); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7459 | h->ctlr = number_of_controllers; |
| 7460 | number_of_controllers++; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7461 | |
| 7462 | /* configure PCI DMA stuff */ |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 7463 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
| 7464 | if (rc == 0) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7465 | dac = 1; |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 7466 | } else { |
| 7467 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 7468 | if (rc == 0) { |
| 7469 | dac = 0; |
| 7470 | } else { |
| 7471 | dev_err(&pdev->dev, "no suitable DMA available\n"); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7472 | goto clean3; /* pci, lockup, wq/aer/h */ |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 7473 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7474 | } |
| 7475 | |
| 7476 | /* make sure the board interrupts are off */ |
| 7477 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 7478 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7479 | rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx); |
| 7480 | if (rc) |
| 7481 | goto clean3; /* pci, lockup, wq/aer/h */ |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7482 | dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n", |
| 7483 | h->devname, pdev->device, |
Stephen M. Cameron | a9a3a27 | 2011-02-15 15:32:53 -0600 | [diff] [blame] | 7484 | h->intr[h->intr_mode], dac ? "" : " not"); |
Robert Elliott | d37ffbe | 2015-04-23 09:32:27 -0500 | [diff] [blame] | 7485 | rc = hpsa_alloc_cmd_pool(h); |
Robert Elliott | 8947fd1 | 2015-01-23 16:42:54 -0600 | [diff] [blame] | 7486 | if (rc) |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7487 | goto clean4; /* irq, pci, lockup, wq/aer/h */ |
| 7488 | rc = hpsa_alloc_sg_chain_blocks(h); |
| 7489 | if (rc) |
| 7490 | goto clean5; /* cmd, irq, pci, lockup, wq/aer/h */ |
Stephen M. Cameron | a08a8471 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 7491 | init_waitqueue_head(&h->scan_wait_queue); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 7492 | init_waitqueue_head(&h->abort_cmd_wait_queue); |
Stephen M. Cameron | a08a8471 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 7493 | h->scan_finished = 1; /* no scan currently in progress */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7494 | |
| 7495 | pci_set_drvdata(pdev, h); |
Stephen M. Cameron | 9a41338 | 2011-05-03 14:59:41 -0500 | [diff] [blame] | 7496 | h->ndevices = 0; |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 7497 | h->hba_mode_enabled = 0; |
Stephen M. Cameron | 9a41338 | 2011-05-03 14:59:41 -0500 | [diff] [blame] | 7498 | h->scsi_host = NULL; |
| 7499 | spin_lock_init(&h->devlock); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7500 | rc = hpsa_put_ctlr_into_performant_mode(h); |
| 7501 | if (rc) |
| 7502 | goto clean6; /* sg, cmd, irq, pci, lockup, wq/aer/h */ |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7503 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7504 | /* |
| 7505 | * At this point, the controller is ready to take commands. |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7506 | * Now, if reset_devices and the hard reset didn't work, try |
| 7507 | * the soft reset and see if that works. |
| 7508 | */ |
| 7509 | if (try_soft_reset) { |
| 7510 | |
| 7511 | /* This is kind of gross. We may or may not get a completion |
| 7512 | * from the soft reset command, and if we do, then the value |
| 7513 | * from the fifo may or may not be valid. So, we wait 10 secs |
| 7514 | * after the reset throwing away any completions we get during |
| 7515 | * that time. Unregister the interrupt handler and register |
| 7516 | * fake ones to scoop up any residual completions. |
| 7517 | */ |
| 7518 | spin_lock_irqsave(&h->lock, flags); |
| 7519 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
| 7520 | spin_unlock_irqrestore(&h->lock, flags); |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7521 | hpsa_free_irqs(h); |
Robert Elliott | 9ee6179 | 2015-01-23 16:42:32 -0600 | [diff] [blame] | 7522 | rc = hpsa_request_irqs(h, hpsa_msix_discard_completions, |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7523 | hpsa_intx_discard_completions); |
| 7524 | if (rc) { |
Robert Elliott | 9ee6179 | 2015-01-23 16:42:32 -0600 | [diff] [blame] | 7525 | dev_warn(&h->pdev->dev, |
| 7526 | "Failed to request_irq after soft reset.\n"); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7527 | goto clean4; |
| 7528 | } |
| 7529 | |
| 7530 | rc = hpsa_kdump_soft_reset(h); |
| 7531 | if (rc) |
| 7532 | /* Neither hard nor soft reset worked, we're hosed. */ |
| 7533 | goto clean4; |
| 7534 | |
| 7535 | dev_info(&h->pdev->dev, "Board READY.\n"); |
| 7536 | dev_info(&h->pdev->dev, |
| 7537 | "Waiting for stale completions to drain.\n"); |
| 7538 | h->access.set_intr_mask(h, HPSA_INTR_ON); |
| 7539 | msleep(10000); |
| 7540 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
| 7541 | |
| 7542 | rc = controller_reset_failed(h->cfgtable); |
| 7543 | if (rc) |
| 7544 | dev_info(&h->pdev->dev, |
| 7545 | "Soft reset appears to have failed.\n"); |
| 7546 | |
| 7547 | /* since the controller's reset, we have to go back and re-init |
| 7548 | * everything. Easiest to just forget what we've done and do it |
| 7549 | * all over again. |
| 7550 | */ |
| 7551 | hpsa_undo_allocations_after_kdump_soft_reset(h); |
| 7552 | try_soft_reset = 0; |
| 7553 | if (rc) |
| 7554 | /* don't go to clean4, we already unallocated */ |
| 7555 | return -ENODEV; |
| 7556 | |
| 7557 | goto reinit_after_soft_reset; |
| 7558 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7559 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7560 | /* Enable Accelerated IO path at driver layer */ |
| 7561 | h->acciopath_status = 1; |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 7562 | |
Scott Teel | e863d68 | 2014-02-18 13:57:05 -0600 | [diff] [blame] | 7563 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7564 | /* Turn the interrupts on so we can service requests */ |
| 7565 | h->access.set_intr_mask(h, HPSA_INTR_ON); |
| 7566 | |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 7567 | hpsa_hba_inquiry(h); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7568 | rc = hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */ |
Stephen Cameron | 4a4384c | 2015-04-23 09:32:37 -0500 | [diff] [blame] | 7569 | if (rc) |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7570 | goto clean7; |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 7571 | |
| 7572 | /* Monitor the controller for firmware lockups */ |
| 7573 | h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL; |
| 7574 | INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker); |
| 7575 | schedule_delayed_work(&h->monitor_ctlr_work, |
| 7576 | h->heartbeat_sample_interval); |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7577 | INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker); |
| 7578 | queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work, |
| 7579 | h->heartbeat_sample_interval); |
Stephen M. Cameron | 88bf6d6 | 2013-11-01 11:02:25 -0500 | [diff] [blame] | 7580 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7581 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7582 | clean7: /* perf, sg, cmd, irq, pci, lockup, wq/aer/h */ |
| 7583 | kfree(h->hba_inquiry_data); |
| 7584 | hpsa_free_performant_mode(h); |
| 7585 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
| 7586 | clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */ |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 7587 | hpsa_free_sg_chain_blocks(h); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7588 | clean5: /* cmd, irq, pci, lockup, wq/aer/h */ |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 7589 | hpsa_free_cmd_pool(h); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7590 | clean4: /* irq, pci, lockup, wq/aer/h */ |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7591 | hpsa_free_irqs(h); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7592 | clean3: /* pci, lockup, wq/aer/h */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7593 | hpsa_free_pci_init(h); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7594 | clean2: /* lockup, wq/aer/h */ |
| 7595 | if (h->lockup_detected) { |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7596 | free_percpu(h->lockup_detected); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7597 | h->lockup_detected = NULL; |
| 7598 | } |
| 7599 | clean1: /* wq/aer/h */ |
| 7600 | if (h->resubmit_wq) { |
| 7601 | destroy_workqueue(h->resubmit_wq); |
| 7602 | h->resubmit_wq = NULL; |
| 7603 | } |
| 7604 | if (h->rescan_ctlr_wq) { |
| 7605 | destroy_workqueue(h->rescan_ctlr_wq); |
| 7606 | h->rescan_ctlr_wq = NULL; |
| 7607 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7608 | kfree(h); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 7609 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7610 | } |
| 7611 | |
| 7612 | static void hpsa_flush_cache(struct ctlr_info *h) |
| 7613 | { |
| 7614 | char *flush_buf; |
| 7615 | struct CommandList *c; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7616 | int rc; |
Stephen M. Cameron | 702890e | 2013-09-23 13:33:30 -0500 | [diff] [blame] | 7617 | |
| 7618 | /* Don't bother trying to flush the cache if locked up */ |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7619 | /* FIXME not necessary if do_simple_cmd does the check */ |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7620 | if (unlikely(lockup_detected(h))) |
Stephen M. Cameron | 702890e | 2013-09-23 13:33:30 -0500 | [diff] [blame] | 7621 | return; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7622 | flush_buf = kzalloc(4, GFP_KERNEL); |
| 7623 | if (!flush_buf) |
| 7624 | return; |
| 7625 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 7626 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 7627 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 7628 | if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0, |
| 7629 | RAID_CTLR_LUNID, TYPE_CMD)) { |
| 7630 | goto out; |
| 7631 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7632 | rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, |
| 7633 | PCI_DMA_TODEVICE, NO_TIMEOUT); |
| 7634 | if (rc) |
| 7635 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7636 | if (c->err_info->CommandStatus != 0) |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 7637 | out: |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7638 | dev_warn(&h->pdev->dev, |
| 7639 | "error flushing cache on controller\n"); |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 7640 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7641 | kfree(flush_buf); |
| 7642 | } |
| 7643 | |
| 7644 | static void hpsa_shutdown(struct pci_dev *pdev) |
| 7645 | { |
| 7646 | struct ctlr_info *h; |
| 7647 | |
| 7648 | h = pci_get_drvdata(pdev); |
| 7649 | /* Turn board interrupts off and send the flush cache command |
| 7650 | * sendcmd will turn off interrupt, and send the flush... |
| 7651 | * To write all data in the battery backed cache to disks |
| 7652 | */ |
| 7653 | hpsa_flush_cache(h); |
| 7654 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7655 | hpsa_free_irqs(h); /* init_one 4 */ |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 7656 | hpsa_disable_interrupt_mode(h); /* pci_init 2 */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7657 | } |
| 7658 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7659 | static void hpsa_free_device_info(struct ctlr_info *h) |
Stephen M. Cameron | 55e14e7 | 2012-01-19 14:00:42 -0600 | [diff] [blame] | 7660 | { |
| 7661 | int i; |
| 7662 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7663 | for (i = 0; i < h->ndevices; i++) { |
Stephen M. Cameron | 55e14e7 | 2012-01-19 14:00:42 -0600 | [diff] [blame] | 7664 | kfree(h->dev[i]); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7665 | h->dev[i] = NULL; |
| 7666 | } |
Stephen M. Cameron | 55e14e7 | 2012-01-19 14:00:42 -0600 | [diff] [blame] | 7667 | } |
| 7668 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7669 | static void hpsa_remove_one(struct pci_dev *pdev) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7670 | { |
| 7671 | struct ctlr_info *h; |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 7672 | unsigned long flags; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7673 | |
| 7674 | if (pci_get_drvdata(pdev) == NULL) { |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7675 | dev_err(&pdev->dev, "unable to remove device\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7676 | return; |
| 7677 | } |
| 7678 | h = pci_get_drvdata(pdev); |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 7679 | |
| 7680 | /* Get rid of any controller monitoring work items */ |
| 7681 | spin_lock_irqsave(&h->lock, flags); |
| 7682 | h->remove_in_progress = 1; |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 7683 | spin_unlock_irqrestore(&h->lock, flags); |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 7684 | cancel_delayed_work_sync(&h->monitor_ctlr_work); |
| 7685 | cancel_delayed_work_sync(&h->rescan_ctlr_work); |
| 7686 | destroy_workqueue(h->rescan_ctlr_wq); |
| 7687 | destroy_workqueue(h->resubmit_wq); |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 7688 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7689 | /* includes hpsa_free_irqs - init_one 4 */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7690 | /* includes hpsa_disable_interrupt_mode - pci_init 2 */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7691 | hpsa_shutdown(pdev); |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 7692 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7693 | hpsa_free_device_info(h); /* scan */ |
| 7694 | |
| 7695 | hpsa_unregister_scsi(h); /* init_one "8" */ |
| 7696 | kfree(h->hba_inquiry_data); /* init_one "8" */ |
| 7697 | h->hba_inquiry_data = NULL; /* init_one "8" */ |
| 7698 | hpsa_free_performant_mode(h); /* init_one 7 */ |
| 7699 | hpsa_free_sg_chain_blocks(h); /* init_one 6 */ |
| 7700 | hpsa_free_cmd_pool(h); /* init_one 5 */ |
| 7701 | |
| 7702 | /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7703 | |
| 7704 | /* includes hpsa_disable_interrupt_mode - pci_init 2 */ |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7705 | hpsa_free_pci_init(h); /* init_one 3 */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7706 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7707 | free_percpu(h->lockup_detected); /* init_one 2 */ |
| 7708 | h->lockup_detected = NULL; /* init_one 2 */ |
| 7709 | /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */ |
| 7710 | kfree(h); /* init_one 1 */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7711 | } |
| 7712 | |
| 7713 | static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev, |
| 7714 | __attribute__((unused)) pm_message_t state) |
| 7715 | { |
| 7716 | return -ENOSYS; |
| 7717 | } |
| 7718 | |
| 7719 | static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev) |
| 7720 | { |
| 7721 | return -ENOSYS; |
| 7722 | } |
| 7723 | |
| 7724 | static struct pci_driver hpsa_pci_driver = { |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 7725 | .name = HPSA, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7726 | .probe = hpsa_init_one, |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7727 | .remove = hpsa_remove_one, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7728 | .id_table = hpsa_pci_device_id, /* id_table */ |
| 7729 | .shutdown = hpsa_shutdown, |
| 7730 | .suspend = hpsa_suspend, |
| 7731 | .resume = hpsa_resume, |
| 7732 | }; |
| 7733 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7734 | /* Fill in bucket_map[], given nsgs (the max number of |
| 7735 | * scatter gather elements supported) and bucket[], |
| 7736 | * which is an array of 8 integers. The bucket[] array |
| 7737 | * contains 8 different DMA transfer sizes (in 16 |
| 7738 | * byte increments) which the controller uses to fetch |
| 7739 | * commands. This function fills in bucket_map[], which |
| 7740 | * maps a given number of scatter gather elements to one of |
| 7741 | * the 8 DMA transfer sizes. The point of it is to allow the |
| 7742 | * controller to only do as much DMA as needed to fetch the |
| 7743 | * command, with the DMA transfer size encoded in the lower |
| 7744 | * bits of the command address. |
| 7745 | */ |
| 7746 | static void calc_bucket_map(int bucket[], int num_buckets, |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 7747 | int nsgs, int min_blocks, u32 *bucket_map) |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7748 | { |
| 7749 | int i, j, b, size; |
| 7750 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7751 | /* Note, bucket_map must have nsgs+1 entries. */ |
| 7752 | for (i = 0; i <= nsgs; i++) { |
| 7753 | /* Compute size of a command with i SG entries */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7754 | size = i + min_blocks; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7755 | b = num_buckets; /* Assume the biggest bucket */ |
| 7756 | /* Find the bucket that is just big enough */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7757 | for (j = 0; j < num_buckets; j++) { |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7758 | if (bucket[j] >= size) { |
| 7759 | b = j; |
| 7760 | break; |
| 7761 | } |
| 7762 | } |
| 7763 | /* for a command with i SG entries, use bucket b. */ |
| 7764 | bucket_map[i] = b; |
| 7765 | } |
| 7766 | } |
| 7767 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7768 | /* |
| 7769 | * return -ENODEV on err, 0 on success (or no action) |
| 7770 | * allocates numerous items that must be freed later |
| 7771 | */ |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7772 | static int hpsa_enter_performant_mode(struct ctlr_info *h, u32 trans_support) |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7773 | { |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 7774 | int i; |
| 7775 | unsigned long register_value; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7776 | unsigned long transMethod = CFGTBL_Trans_Performant | |
| 7777 | (trans_support & CFGTBL_Trans_use_short_tags) | |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7778 | CFGTBL_Trans_enable_directed_msix | |
| 7779 | (trans_support & (CFGTBL_Trans_io_accel1 | |
| 7780 | CFGTBL_Trans_io_accel2)); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7781 | struct access_method access = SA5_performant_access; |
Stephen M. Cameron | def342b | 2010-05-27 15:14:39 -0500 | [diff] [blame] | 7782 | |
| 7783 | /* This is a bit complicated. There are 8 registers on |
| 7784 | * the controller which we write to to tell it 8 different |
| 7785 | * sizes of commands which there may be. It's a way of |
| 7786 | * reducing the DMA done to fetch each command. Encoded into |
| 7787 | * each command's tag are 3 bits which communicate to the controller |
| 7788 | * which of the eight sizes that command fits within. The size of |
| 7789 | * each command depends on how many scatter gather entries there are. |
| 7790 | * Each SG entry requires 16 bytes. The eight registers are programmed |
| 7791 | * with the number of 16-byte blocks a command of that size requires. |
| 7792 | * The smallest command possible requires 5 such 16 byte blocks. |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 7793 | * the largest command possible requires SG_ENTRIES_IN_CMD + 4 16-byte |
Stephen M. Cameron | def342b | 2010-05-27 15:14:39 -0500 | [diff] [blame] | 7794 | * blocks. Note, this only extends to the SG entries contained |
| 7795 | * within the command block, and does not extend to chained blocks |
| 7796 | * of SG elements. bft[] contains the eight values we write to |
| 7797 | * the registers. They are not evenly distributed, but have more |
| 7798 | * sizes for small commands, and fewer sizes for larger commands. |
| 7799 | */ |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 7800 | int bft[8] = {5, 6, 8, 10, 12, 20, 28, SG_ENTRIES_IN_CMD + 4}; |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7801 | #define MIN_IOACCEL2_BFT_ENTRY 5 |
| 7802 | #define HPSA_IOACCEL2_HEADER_SZ 4 |
| 7803 | int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12, |
| 7804 | 13, 14, 15, 16, 17, 18, 19, |
| 7805 | HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES}; |
| 7806 | BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16); |
| 7807 | BUILD_BUG_ON(ARRAY_SIZE(bft) != 8); |
| 7808 | BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) > |
| 7809 | 16 * MIN_IOACCEL2_BFT_ENTRY); |
| 7810 | BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16); |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 7811 | BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7812 | /* 5 = 1 s/g entry or 4k |
| 7813 | * 6 = 2 s/g entry or 8k |
| 7814 | * 8 = 4 s/g entry or 16k |
| 7815 | * 10 = 6 s/g entry or 24k |
| 7816 | */ |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7817 | |
Stephen M. Cameron | b3a52e7 | 2014-05-29 10:53:23 -0500 | [diff] [blame] | 7818 | /* If the controller supports either ioaccel method then |
| 7819 | * we can also use the RAID stack submit path that does not |
| 7820 | * perform the superfluous readl() after each command submission. |
| 7821 | */ |
| 7822 | if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2)) |
| 7823 | access = SA5_performant_access_no_read; |
| 7824 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7825 | /* Controller spec: zero out this buffer. */ |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 7826 | for (i = 0; i < h->nreply_queues; i++) |
| 7827 | memset(h->reply_queue[i].head, 0, h->reply_queue_size); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7828 | |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 7829 | bft[7] = SG_ENTRIES_IN_CMD + 4; |
| 7830 | calc_bucket_map(bft, ARRAY_SIZE(bft), |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7831 | SG_ENTRIES_IN_CMD, 4, h->blockFetchTable); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7832 | for (i = 0; i < 8; i++) |
| 7833 | writel(bft[i], &h->transtable->BlockFetch[i]); |
| 7834 | |
| 7835 | /* size of controller ring buffer */ |
| 7836 | writel(h->max_commands, &h->transtable->RepQSize); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7837 | writel(h->nreply_queues, &h->transtable->RepQCount); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7838 | writel(0, &h->transtable->RepQCtrAddrLow32); |
| 7839 | writel(0, &h->transtable->RepQCtrAddrHigh32); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7840 | |
| 7841 | for (i = 0; i < h->nreply_queues; i++) { |
| 7842 | writel(0, &h->transtable->RepQAddr[i].upper); |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 7843 | writel(h->reply_queue[i].busaddr, |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7844 | &h->transtable->RepQAddr[i].lower); |
| 7845 | } |
| 7846 | |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7847 | writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7848 | writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest)); |
| 7849 | /* |
| 7850 | * enable outbound interrupt coalescing in accelerator mode; |
| 7851 | */ |
| 7852 | if (trans_support & CFGTBL_Trans_io_accel1) { |
| 7853 | access = SA5_ioaccel_mode1_access; |
| 7854 | writel(10, &h->cfgtable->HostWrite.CoalIntDelay); |
| 7855 | writel(4, &h->cfgtable->HostWrite.CoalIntCount); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 7856 | } else { |
| 7857 | if (trans_support & CFGTBL_Trans_io_accel2) { |
| 7858 | access = SA5_ioaccel_mode2_access; |
| 7859 | writel(10, &h->cfgtable->HostWrite.CoalIntDelay); |
| 7860 | writel(4, &h->cfgtable->HostWrite.CoalIntCount); |
| 7861 | } |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7862 | } |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7863 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7864 | if (hpsa_wait_for_mode_change_ack(h)) { |
| 7865 | dev_err(&h->pdev->dev, |
| 7866 | "performant mode problem - doorbell timeout\n"); |
| 7867 | return -ENODEV; |
| 7868 | } |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7869 | register_value = readl(&(h->cfgtable->TransportActive)); |
| 7870 | if (!(register_value & CFGTBL_Trans_Performant)) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 7871 | dev_err(&h->pdev->dev, |
| 7872 | "performant mode problem - transport not active\n"); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7873 | return -ENODEV; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7874 | } |
Stephen M. Cameron | 960a30e | 2011-02-15 15:33:03 -0600 | [diff] [blame] | 7875 | /* Change the access methods to the performant access methods */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7876 | h->access = access; |
| 7877 | h->transMethod = transMethod; |
| 7878 | |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7879 | if (!((trans_support & CFGTBL_Trans_io_accel1) || |
| 7880 | (trans_support & CFGTBL_Trans_io_accel2))) |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7881 | return 0; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7882 | |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7883 | if (trans_support & CFGTBL_Trans_io_accel1) { |
| 7884 | /* Set up I/O accelerator mode */ |
| 7885 | for (i = 0; i < h->nreply_queues; i++) { |
| 7886 | writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX); |
| 7887 | h->reply_queue[i].current_entry = |
| 7888 | readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX); |
| 7889 | } |
| 7890 | bft[7] = h->ioaccel_maxsg + 8; |
| 7891 | calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8, |
| 7892 | h->ioaccel1_blockFetchTable); |
| 7893 | |
| 7894 | /* initialize all reply queue entries to unused */ |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 7895 | for (i = 0; i < h->nreply_queues; i++) |
| 7896 | memset(h->reply_queue[i].head, |
| 7897 | (u8) IOACCEL_MODE1_REPLY_UNUSED, |
| 7898 | h->reply_queue_size); |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7899 | |
| 7900 | /* set all the constant fields in the accelerator command |
| 7901 | * frames once at init time to save CPU cycles later. |
| 7902 | */ |
| 7903 | for (i = 0; i < h->nr_cmds; i++) { |
| 7904 | struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i]; |
| 7905 | |
| 7906 | cp->function = IOACCEL1_FUNCTION_SCSIIO; |
| 7907 | cp->err_info = (u32) (h->errinfo_pool_dhandle + |
| 7908 | (i * sizeof(struct ErrorInfo))); |
| 7909 | cp->err_info_len = sizeof(struct ErrorInfo); |
| 7910 | cp->sgl_offset = IOACCEL1_SGLOFFSET; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 7911 | cp->host_context_flags = |
| 7912 | cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT); |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7913 | cp->timeout_sec = 0; |
| 7914 | cp->ReplyQueue = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 7915 | cp->tag = |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 7916 | cpu_to_le64((i << DIRECT_LOOKUP_SHIFT)); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 7917 | cp->host_addr = |
| 7918 | cpu_to_le64(h->ioaccel_cmd_pool_dhandle + |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7919 | (i * sizeof(struct io_accel1_cmd))); |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7920 | } |
| 7921 | } else if (trans_support & CFGTBL_Trans_io_accel2) { |
| 7922 | u64 cfg_offset, cfg_base_addr_index; |
| 7923 | u32 bft2_offset, cfg_base_addr; |
| 7924 | int rc; |
| 7925 | |
| 7926 | rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr, |
| 7927 | &cfg_base_addr_index, &cfg_offset); |
| 7928 | BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64); |
| 7929 | bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ; |
| 7930 | calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg, |
| 7931 | 4, h->ioaccel2_blockFetchTable); |
| 7932 | bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset); |
| 7933 | BUILD_BUG_ON(offsetof(struct CfgTable, |
| 7934 | io_accel_request_size_offset) != 0xb8); |
| 7935 | h->ioaccel2_bft2_regs = |
| 7936 | remap_pci_mem(pci_resource_start(h->pdev, |
| 7937 | cfg_base_addr_index) + |
| 7938 | cfg_offset + bft2_offset, |
| 7939 | ARRAY_SIZE(bft2) * |
| 7940 | sizeof(*h->ioaccel2_bft2_regs)); |
| 7941 | for (i = 0; i < ARRAY_SIZE(bft2); i++) |
| 7942 | writel(bft2[i], &h->ioaccel2_bft2_regs[i]); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7943 | } |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7944 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7945 | if (hpsa_wait_for_mode_change_ack(h)) { |
| 7946 | dev_err(&h->pdev->dev, |
| 7947 | "performant mode problem - enabling ioaccel mode\n"); |
| 7948 | return -ENODEV; |
| 7949 | } |
| 7950 | return 0; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7951 | } |
| 7952 | |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7953 | /* Free ioaccel1 mode command blocks and block fetch table */ |
| 7954 | static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h) |
| 7955 | { |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7956 | if (h->ioaccel_cmd_pool) { |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7957 | pci_free_consistent(h->pdev, |
| 7958 | h->nr_cmds * sizeof(*h->ioaccel_cmd_pool), |
| 7959 | h->ioaccel_cmd_pool, |
| 7960 | h->ioaccel_cmd_pool_dhandle); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7961 | h->ioaccel_cmd_pool = NULL; |
| 7962 | h->ioaccel_cmd_pool_dhandle = 0; |
| 7963 | } |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7964 | kfree(h->ioaccel1_blockFetchTable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 7965 | h->ioaccel1_blockFetchTable = NULL; |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7966 | } |
| 7967 | |
Robert Elliott | d37ffbe | 2015-04-23 09:32:27 -0500 | [diff] [blame] | 7968 | /* Allocate ioaccel1 mode command blocks and block fetch table */ |
| 7969 | static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h) |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7970 | { |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 7971 | h->ioaccel_maxsg = |
| 7972 | readl(&(h->cfgtable->io_accel_max_embedded_sg_count)); |
| 7973 | if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES) |
| 7974 | h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES; |
| 7975 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7976 | /* Command structures must be aligned on a 128-byte boundary |
| 7977 | * because the 7 lower bits of the address are used by the |
| 7978 | * hardware. |
| 7979 | */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7980 | BUILD_BUG_ON(sizeof(struct io_accel1_cmd) % |
| 7981 | IOACCEL1_COMMANDLIST_ALIGNMENT); |
| 7982 | h->ioaccel_cmd_pool = |
| 7983 | pci_alloc_consistent(h->pdev, |
| 7984 | h->nr_cmds * sizeof(*h->ioaccel_cmd_pool), |
| 7985 | &(h->ioaccel_cmd_pool_dhandle)); |
| 7986 | |
| 7987 | h->ioaccel1_blockFetchTable = |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 7988 | kmalloc(((h->ioaccel_maxsg + 1) * |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 7989 | sizeof(u32)), GFP_KERNEL); |
| 7990 | |
| 7991 | if ((h->ioaccel_cmd_pool == NULL) || |
| 7992 | (h->ioaccel1_blockFetchTable == NULL)) |
| 7993 | goto clean_up; |
| 7994 | |
| 7995 | memset(h->ioaccel_cmd_pool, 0, |
| 7996 | h->nr_cmds * sizeof(*h->ioaccel_cmd_pool)); |
| 7997 | return 0; |
| 7998 | |
| 7999 | clean_up: |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8000 | hpsa_free_ioaccel1_cmd_and_bft(h); |
Robert Elliott | 2dd02d7 | 2015-04-23 09:33:43 -0500 | [diff] [blame] | 8001 | return -ENOMEM; |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8002 | } |
| 8003 | |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8004 | /* Free ioaccel2 mode command blocks and block fetch table */ |
| 8005 | static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h) |
| 8006 | { |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 8007 | hpsa_free_ioaccel2_sg_chain_blocks(h); |
| 8008 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8009 | if (h->ioaccel2_cmd_pool) { |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8010 | pci_free_consistent(h->pdev, |
| 8011 | h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool), |
| 8012 | h->ioaccel2_cmd_pool, |
| 8013 | h->ioaccel2_cmd_pool_dhandle); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8014 | h->ioaccel2_cmd_pool = NULL; |
| 8015 | h->ioaccel2_cmd_pool_dhandle = 0; |
| 8016 | } |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8017 | kfree(h->ioaccel2_blockFetchTable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8018 | h->ioaccel2_blockFetchTable = NULL; |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8019 | } |
| 8020 | |
Robert Elliott | d37ffbe | 2015-04-23 09:32:27 -0500 | [diff] [blame] | 8021 | /* Allocate ioaccel2 mode command blocks and block fetch table */ |
| 8022 | static int hpsa_alloc_ioaccel2_cmd_and_bft(struct ctlr_info *h) |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8023 | { |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 8024 | int rc; |
| 8025 | |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8026 | /* Allocate ioaccel2 mode command blocks and block fetch table */ |
| 8027 | |
| 8028 | h->ioaccel_maxsg = |
| 8029 | readl(&(h->cfgtable->io_accel_max_embedded_sg_count)); |
| 8030 | if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES) |
| 8031 | h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES; |
| 8032 | |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8033 | BUILD_BUG_ON(sizeof(struct io_accel2_cmd) % |
| 8034 | IOACCEL2_COMMANDLIST_ALIGNMENT); |
| 8035 | h->ioaccel2_cmd_pool = |
| 8036 | pci_alloc_consistent(h->pdev, |
| 8037 | h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool), |
| 8038 | &(h->ioaccel2_cmd_pool_dhandle)); |
| 8039 | |
| 8040 | h->ioaccel2_blockFetchTable = |
| 8041 | kmalloc(((h->ioaccel_maxsg + 1) * |
| 8042 | sizeof(u32)), GFP_KERNEL); |
| 8043 | |
| 8044 | if ((h->ioaccel2_cmd_pool == NULL) || |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 8045 | (h->ioaccel2_blockFetchTable == NULL)) { |
| 8046 | rc = -ENOMEM; |
| 8047 | goto clean_up; |
| 8048 | } |
| 8049 | |
| 8050 | rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h); |
| 8051 | if (rc) |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8052 | goto clean_up; |
| 8053 | |
| 8054 | memset(h->ioaccel2_cmd_pool, 0, |
| 8055 | h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool)); |
| 8056 | return 0; |
| 8057 | |
| 8058 | clean_up: |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8059 | hpsa_free_ioaccel2_cmd_and_bft(h); |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 8060 | return rc; |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8061 | } |
| 8062 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8063 | /* Free items allocated by hpsa_put_ctlr_into_performant_mode */ |
| 8064 | static void hpsa_free_performant_mode(struct ctlr_info *h) |
| 8065 | { |
| 8066 | kfree(h->blockFetchTable); |
| 8067 | h->blockFetchTable = NULL; |
| 8068 | hpsa_free_reply_queues(h); |
| 8069 | hpsa_free_ioaccel1_cmd_and_bft(h); |
| 8070 | hpsa_free_ioaccel2_cmd_and_bft(h); |
| 8071 | } |
| 8072 | |
| 8073 | /* return -ENODEV on error, 0 on success (or no action) |
| 8074 | * allocates numerous items that must be freed later |
| 8075 | */ |
| 8076 | static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h) |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8077 | { |
| 8078 | u32 trans_support; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8079 | unsigned long transMethod = CFGTBL_Trans_Performant | |
| 8080 | CFGTBL_Trans_use_short_tags; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8081 | int i, rc; |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8082 | |
Stephen M. Cameron | 02ec19c | 2011-01-06 14:48:29 -0600 | [diff] [blame] | 8083 | if (hpsa_simple_mode) |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8084 | return 0; |
Stephen M. Cameron | 02ec19c | 2011-01-06 14:48:29 -0600 | [diff] [blame] | 8085 | |
scameron@beardog.cce.hp.com | 67c99a7 | 2014-04-14 14:01:09 -0500 | [diff] [blame] | 8086 | trans_support = readl(&(h->cfgtable->TransportSupport)); |
| 8087 | if (!(trans_support & PERFORMANT_MODE)) |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8088 | return 0; |
scameron@beardog.cce.hp.com | 67c99a7 | 2014-04-14 14:01:09 -0500 | [diff] [blame] | 8089 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8090 | /* Check for I/O accelerator mode support */ |
| 8091 | if (trans_support & CFGTBL_Trans_io_accel1) { |
| 8092 | transMethod |= CFGTBL_Trans_io_accel1 | |
| 8093 | CFGTBL_Trans_enable_directed_msix; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8094 | rc = hpsa_alloc_ioaccel1_cmd_and_bft(h); |
| 8095 | if (rc) |
| 8096 | return rc; |
| 8097 | } else if (trans_support & CFGTBL_Trans_io_accel2) { |
| 8098 | transMethod |= CFGTBL_Trans_io_accel2 | |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8099 | CFGTBL_Trans_enable_directed_msix; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8100 | rc = hpsa_alloc_ioaccel2_cmd_and_bft(h); |
| 8101 | if (rc) |
| 8102 | return rc; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8103 | } |
| 8104 | |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 8105 | h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1; |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 8106 | hpsa_get_max_perf_mode_cmds(h); |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8107 | /* Performant mode ring buffer and supporting data structures */ |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 8108 | h->reply_queue_size = h->max_commands * sizeof(u64); |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8109 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 8110 | for (i = 0; i < h->nreply_queues; i++) { |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 8111 | h->reply_queue[i].head = pci_alloc_consistent(h->pdev, |
| 8112 | h->reply_queue_size, |
| 8113 | &(h->reply_queue[i].busaddr)); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8114 | if (!h->reply_queue[i].head) { |
| 8115 | rc = -ENOMEM; |
| 8116 | goto clean1; /* rq, ioaccel */ |
| 8117 | } |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 8118 | h->reply_queue[i].size = h->max_commands; |
| 8119 | h->reply_queue[i].wraparound = 1; /* spec: init to 1 */ |
| 8120 | h->reply_queue[i].current_entry = 0; |
| 8121 | } |
| 8122 | |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8123 | /* Need a block fetch table for performant mode */ |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 8124 | h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) * |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8125 | sizeof(u32)), GFP_KERNEL); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8126 | if (!h->blockFetchTable) { |
| 8127 | rc = -ENOMEM; |
| 8128 | goto clean1; /* rq, ioaccel */ |
| 8129 | } |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8130 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8131 | rc = hpsa_enter_performant_mode(h, trans_support); |
| 8132 | if (rc) |
| 8133 | goto clean2; /* bft, rq, ioaccel */ |
| 8134 | return 0; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8135 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8136 | clean2: /* bft, rq, ioaccel */ |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8137 | kfree(h->blockFetchTable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame^] | 8138 | h->blockFetchTable = NULL; |
| 8139 | clean1: /* rq, ioaccel */ |
| 8140 | hpsa_free_reply_queues(h); |
| 8141 | hpsa_free_ioaccel1_cmd_and_bft(h); |
| 8142 | hpsa_free_ioaccel2_cmd_and_bft(h); |
| 8143 | return rc; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8144 | } |
| 8145 | |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 8146 | static int is_accelerated_cmd(struct CommandList *c) |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 8147 | { |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 8148 | return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2; |
| 8149 | } |
| 8150 | |
| 8151 | static void hpsa_drain_accel_commands(struct ctlr_info *h) |
| 8152 | { |
| 8153 | struct CommandList *c = NULL; |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8154 | int i, accel_cmds_out; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 8155 | int refcount; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 8156 | |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8157 | do { /* wait for all outstanding ioaccel commands to drain out */ |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 8158 | accel_cmds_out = 0; |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8159 | for (i = 0; i < h->nr_cmds; i++) { |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8160 | c = h->cmd_pool + i; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 8161 | refcount = atomic_inc_return(&c->refcount); |
| 8162 | if (refcount > 1) /* Command is allocated */ |
| 8163 | accel_cmds_out += is_accelerated_cmd(c); |
| 8164 | cmd_free(h, c); |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8165 | } |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 8166 | if (accel_cmds_out <= 0) |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 8167 | break; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 8168 | msleep(100); |
| 8169 | } while (1); |
| 8170 | } |
| 8171 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8172 | /* |
| 8173 | * This is it. Register the PCI driver information for the cards we control |
| 8174 | * the OS will call our registered routines when it finds one of our cards. |
| 8175 | */ |
| 8176 | static int __init hpsa_init(void) |
| 8177 | { |
Mike Miller | 3146840 | 2010-02-25 14:03:12 -0600 | [diff] [blame] | 8178 | return pci_register_driver(&hpsa_pci_driver); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8179 | } |
| 8180 | |
| 8181 | static void __exit hpsa_cleanup(void) |
| 8182 | { |
| 8183 | pci_unregister_driver(&hpsa_pci_driver); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8184 | } |
| 8185 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8186 | static void __attribute__((unused)) verify_offsets(void) |
| 8187 | { |
| 8188 | #define VERIFY_OFFSET(member, offset) \ |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 8189 | BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset) |
| 8190 | |
| 8191 | VERIFY_OFFSET(structure_size, 0); |
| 8192 | VERIFY_OFFSET(volume_blk_size, 4); |
| 8193 | VERIFY_OFFSET(volume_blk_cnt, 8); |
| 8194 | VERIFY_OFFSET(phys_blk_shift, 16); |
| 8195 | VERIFY_OFFSET(parity_rotation_shift, 17); |
| 8196 | VERIFY_OFFSET(strip_size, 18); |
| 8197 | VERIFY_OFFSET(disk_starting_blk, 20); |
| 8198 | VERIFY_OFFSET(disk_blk_cnt, 28); |
| 8199 | VERIFY_OFFSET(data_disks_per_row, 36); |
| 8200 | VERIFY_OFFSET(metadata_disks_per_row, 38); |
| 8201 | VERIFY_OFFSET(row_cnt, 40); |
| 8202 | VERIFY_OFFSET(layout_map_count, 42); |
| 8203 | VERIFY_OFFSET(flags, 44); |
| 8204 | VERIFY_OFFSET(dekindex, 46); |
| 8205 | /* VERIFY_OFFSET(reserved, 48 */ |
| 8206 | VERIFY_OFFSET(data, 64); |
| 8207 | |
| 8208 | #undef VERIFY_OFFSET |
| 8209 | |
| 8210 | #define VERIFY_OFFSET(member, offset) \ |
Mike Miller | b66cc25 | 2014-02-18 13:56:04 -0600 | [diff] [blame] | 8211 | BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset) |
| 8212 | |
| 8213 | VERIFY_OFFSET(IU_type, 0); |
| 8214 | VERIFY_OFFSET(direction, 1); |
| 8215 | VERIFY_OFFSET(reply_queue, 2); |
| 8216 | /* VERIFY_OFFSET(reserved1, 3); */ |
| 8217 | VERIFY_OFFSET(scsi_nexus, 4); |
| 8218 | VERIFY_OFFSET(Tag, 8); |
| 8219 | VERIFY_OFFSET(cdb, 16); |
| 8220 | VERIFY_OFFSET(cciss_lun, 32); |
| 8221 | VERIFY_OFFSET(data_len, 40); |
| 8222 | VERIFY_OFFSET(cmd_priority_task_attr, 44); |
| 8223 | VERIFY_OFFSET(sg_count, 45); |
| 8224 | /* VERIFY_OFFSET(reserved3 */ |
| 8225 | VERIFY_OFFSET(err_ptr, 48); |
| 8226 | VERIFY_OFFSET(err_len, 56); |
| 8227 | /* VERIFY_OFFSET(reserved4 */ |
| 8228 | VERIFY_OFFSET(sg, 64); |
| 8229 | |
| 8230 | #undef VERIFY_OFFSET |
| 8231 | |
| 8232 | #define VERIFY_OFFSET(member, offset) \ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8233 | BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset) |
| 8234 | |
| 8235 | VERIFY_OFFSET(dev_handle, 0x00); |
| 8236 | VERIFY_OFFSET(reserved1, 0x02); |
| 8237 | VERIFY_OFFSET(function, 0x03); |
| 8238 | VERIFY_OFFSET(reserved2, 0x04); |
| 8239 | VERIFY_OFFSET(err_info, 0x0C); |
| 8240 | VERIFY_OFFSET(reserved3, 0x10); |
| 8241 | VERIFY_OFFSET(err_info_len, 0x12); |
| 8242 | VERIFY_OFFSET(reserved4, 0x13); |
| 8243 | VERIFY_OFFSET(sgl_offset, 0x14); |
| 8244 | VERIFY_OFFSET(reserved5, 0x15); |
| 8245 | VERIFY_OFFSET(transfer_len, 0x1C); |
| 8246 | VERIFY_OFFSET(reserved6, 0x20); |
| 8247 | VERIFY_OFFSET(io_flags, 0x24); |
| 8248 | VERIFY_OFFSET(reserved7, 0x26); |
| 8249 | VERIFY_OFFSET(LUN, 0x34); |
| 8250 | VERIFY_OFFSET(control, 0x3C); |
| 8251 | VERIFY_OFFSET(CDB, 0x40); |
| 8252 | VERIFY_OFFSET(reserved8, 0x50); |
| 8253 | VERIFY_OFFSET(host_context_flags, 0x60); |
| 8254 | VERIFY_OFFSET(timeout_sec, 0x62); |
| 8255 | VERIFY_OFFSET(ReplyQueue, 0x64); |
| 8256 | VERIFY_OFFSET(reserved9, 0x65); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 8257 | VERIFY_OFFSET(tag, 0x68); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8258 | VERIFY_OFFSET(host_addr, 0x70); |
| 8259 | VERIFY_OFFSET(CISS_LUN, 0x78); |
| 8260 | VERIFY_OFFSET(SG, 0x78 + 8); |
| 8261 | #undef VERIFY_OFFSET |
| 8262 | } |
| 8263 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8264 | module_init(hpsa_init); |
| 8265 | module_exit(hpsa_cleanup); |