Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Disk Array driver for HP Smart Array SAS controllers |
Don Brace | 1358f6d | 2015-07-18 11:12:38 -0500 | [diff] [blame] | 3 | * Copyright 2014-2015 PMC-Sierra, Inc. |
| 4 | * Copyright 2000,2009-2015 Hewlett-Packard Development Company, L.P. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; version 2 of the License. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or |
| 13 | * NON INFRINGEMENT. See the GNU General Public License for more details. |
| 14 | * |
Don Brace | 1358f6d | 2015-07-18 11:12:38 -0500 | [diff] [blame] | 15 | * Questions/Comments/Bugfixes to storagedev@pmcs.com |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 16 | * |
| 17 | */ |
| 18 | |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/interrupt.h> |
| 21 | #include <linux/types.h> |
| 22 | #include <linux/pci.h> |
Matthew Garrett | e5a44df | 2011-11-11 11:14:23 -0500 | [diff] [blame] | 23 | #include <linux/pci-aspm.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 24 | #include <linux/kernel.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/fs.h> |
| 28 | #include <linux/timer.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 29 | #include <linux/init.h> |
| 30 | #include <linux/spinlock.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 31 | #include <linux/compat.h> |
| 32 | #include <linux/blktrace_api.h> |
| 33 | #include <linux/uaccess.h> |
| 34 | #include <linux/io.h> |
| 35 | #include <linux/dma-mapping.h> |
| 36 | #include <linux/completion.h> |
| 37 | #include <linux/moduleparam.h> |
| 38 | #include <scsi/scsi.h> |
| 39 | #include <scsi/scsi_cmnd.h> |
| 40 | #include <scsi/scsi_device.h> |
| 41 | #include <scsi/scsi_host.h> |
Stephen M. Cameron | 667e23d | 2010-02-25 14:02:51 -0600 | [diff] [blame] | 42 | #include <scsi/scsi_tcq.h> |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 43 | #include <scsi/scsi_eh.h> |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 44 | #include <scsi/scsi_dbg.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 45 | #include <linux/cciss_ioctl.h> |
| 46 | #include <linux/string.h> |
| 47 | #include <linux/bitmap.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 48 | #include <linux/atomic.h> |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 49 | #include <linux/jiffies.h> |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 50 | #include <linux/percpu-defs.h> |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 51 | #include <linux/percpu.h> |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 52 | #include <asm/unaligned.h> |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 53 | #include <asm/div64.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 54 | #include "hpsa_cmd.h" |
| 55 | #include "hpsa.h" |
| 56 | |
| 57 | /* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */ |
Don Brace | f532a3f | 2015-04-23 09:35:33 -0500 | [diff] [blame] | 58 | #define HPSA_DRIVER_VERSION "3.4.10-0" |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 59 | #define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")" |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 60 | #define HPSA "hpsa" |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 61 | |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 62 | /* How long to wait for CISS doorbell communication */ |
| 63 | #define CLEAR_EVENT_WAIT_INTERVAL 20 /* ms for each msleep() call */ |
| 64 | #define MODE_CHANGE_WAIT_INTERVAL 10 /* ms for each msleep() call */ |
| 65 | #define MAX_CLEAR_EVENT_WAIT 30000 /* times 20 ms = 600 s */ |
| 66 | #define MAX_MODE_CHANGE_WAIT 2000 /* times 10 ms = 20 s */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 67 | #define MAX_IOCTL_CONFIG_WAIT 1000 |
| 68 | |
| 69 | /*define how many times we will try a command because of bus resets */ |
| 70 | #define MAX_CMD_RETRIES 3 |
| 71 | |
| 72 | /* Embedded module documentation macros - see modules.h */ |
| 73 | MODULE_AUTHOR("Hewlett-Packard Company"); |
| 74 | MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \ |
| 75 | HPSA_DRIVER_VERSION); |
| 76 | MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers"); |
| 77 | MODULE_VERSION(HPSA_DRIVER_VERSION); |
| 78 | MODULE_LICENSE("GPL"); |
| 79 | |
| 80 | static int hpsa_allow_any; |
| 81 | module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR); |
| 82 | MODULE_PARM_DESC(hpsa_allow_any, |
| 83 | "Allow hpsa driver to access unknown HP Smart Array hardware"); |
Stephen M. Cameron | 02ec19c | 2011-01-06 14:48:29 -0600 | [diff] [blame] | 84 | static int hpsa_simple_mode; |
| 85 | module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR); |
| 86 | MODULE_PARM_DESC(hpsa_simple_mode, |
| 87 | "Use 'simple mode' rather than 'performant mode'"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 88 | |
| 89 | /* define the PCI info for the cards we can control */ |
| 90 | static const struct pci_device_id hpsa_pci_device_id[] = { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 91 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241}, |
| 92 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243}, |
| 93 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245}, |
| 94 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247}, |
| 95 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249}, |
Mike Miller | 163dbcd | 2013-09-04 15:11:10 -0500 | [diff] [blame] | 96 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324A}, |
| 97 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324B}, |
Mike Miller | f8b01eb | 2010-02-04 08:42:45 -0600 | [diff] [blame] | 98 | {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] | 99 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3350}, |
| 100 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3351}, |
| 101 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3352}, |
| 102 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3353}, |
| 103 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3354}, |
| 104 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3355}, |
| 105 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSF, 0x103C, 0x3356}, |
Mike Miller | fe0c961 | 2012-09-20 16:05:18 -0500 | [diff] [blame] | 106 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1921}, |
| 107 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1922}, |
| 108 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1923}, |
| 109 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1924}, |
Mike Miller | fe0c961 | 2012-09-20 16:05:18 -0500 | [diff] [blame] | 110 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1926}, |
| 111 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1928}, |
Mike Miller | 97b9f53 | 2013-09-04 15:05:55 -0500 | [diff] [blame] | 112 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSH, 0x103C, 0x1929}, |
| 113 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BD}, |
| 114 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BE}, |
| 115 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21BF}, |
| 116 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C0}, |
| 117 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C1}, |
| 118 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C2}, |
| 119 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C3}, |
| 120 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C4}, |
| 121 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C5}, |
Joe Handzik | 3b7a45e | 2014-05-08 14:27:24 -0500 | [diff] [blame] | 122 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C6}, |
Mike Miller | 97b9f53 | 2013-09-04 15:05:55 -0500 | [diff] [blame] | 123 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C7}, |
| 124 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C8}, |
| 125 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21C9}, |
Joe Handzik | 3b7a45e | 2014-05-08 14:27:24 -0500 | [diff] [blame] | 126 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CA}, |
| 127 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CB}, |
| 128 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CC}, |
| 129 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CD}, |
| 130 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSI, 0x103C, 0x21CE}, |
Don Brace | fdfa4b6 | 2015-04-23 09:35:27 -0500 | [diff] [blame] | 131 | {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0580}, |
Don Brace | cbb47dc | 2015-07-18 11:12:54 -0500 | [diff] [blame] | 132 | {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0581}, |
| 133 | {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0582}, |
| 134 | {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0583}, |
| 135 | {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0584}, |
| 136 | {PCI_VENDOR_ID_ADAPTEC2, 0x0290, 0x9005, 0x0585}, |
Stephen M. Cameron | 8e616a5 | 2014-02-18 13:58:02 -0600 | [diff] [blame] | 137 | {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0076}, |
| 138 | {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0087}, |
| 139 | {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x007D}, |
| 140 | {PCI_VENDOR_ID_HP_3PAR, 0x0075, 0x1590, 0x0088}, |
| 141 | {PCI_VENDOR_ID_HP, 0x333f, 0x103c, 0x333f}, |
Mike Miller | 7c03b87 | 2010-12-01 11:16:07 -0600 | [diff] [blame] | 142 | {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] | 143 | PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0}, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 144 | {0,} |
| 145 | }; |
| 146 | |
| 147 | MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id); |
| 148 | |
| 149 | /* board_id = Subsystem Device ID & Vendor ID |
| 150 | * product = Marketing Name for the board |
| 151 | * access = Address of the struct of function pointers |
| 152 | */ |
| 153 | static struct board_type products[] = { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 154 | {0x3241103C, "Smart Array P212", &SA5_access}, |
| 155 | {0x3243103C, "Smart Array P410", &SA5_access}, |
| 156 | {0x3245103C, "Smart Array P410i", &SA5_access}, |
| 157 | {0x3247103C, "Smart Array P411", &SA5_access}, |
| 158 | {0x3249103C, "Smart Array P812", &SA5_access}, |
Mike Miller | 163dbcd | 2013-09-04 15:11:10 -0500 | [diff] [blame] | 159 | {0x324A103C, "Smart Array P712m", &SA5_access}, |
| 160 | {0x324B103C, "Smart Array P711m", &SA5_access}, |
Stephen M. Cameron | 7d2cce5 | 2014-11-14 17:26:38 -0600 | [diff] [blame] | 161 | {0x3233103C, "HP StorageWorks 1210m", &SA5_access}, /* alias of 333f */ |
Mike Miller | fe0c961 | 2012-09-20 16:05:18 -0500 | [diff] [blame] | 162 | {0x3350103C, "Smart Array P222", &SA5_access}, |
| 163 | {0x3351103C, "Smart Array P420", &SA5_access}, |
| 164 | {0x3352103C, "Smart Array P421", &SA5_access}, |
| 165 | {0x3353103C, "Smart Array P822", &SA5_access}, |
| 166 | {0x3354103C, "Smart Array P420i", &SA5_access}, |
| 167 | {0x3355103C, "Smart Array P220i", &SA5_access}, |
| 168 | {0x3356103C, "Smart Array P721m", &SA5_access}, |
Mike Miller | 1fd6c8e | 2013-09-04 15:08:29 -0500 | [diff] [blame] | 169 | {0x1921103C, "Smart Array P830i", &SA5_access}, |
| 170 | {0x1922103C, "Smart Array P430", &SA5_access}, |
| 171 | {0x1923103C, "Smart Array P431", &SA5_access}, |
| 172 | {0x1924103C, "Smart Array P830", &SA5_access}, |
| 173 | {0x1926103C, "Smart Array P731m", &SA5_access}, |
| 174 | {0x1928103C, "Smart Array P230i", &SA5_access}, |
| 175 | {0x1929103C, "Smart Array P530", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 176 | {0x21BD103C, "Smart Array P244br", &SA5_access}, |
| 177 | {0x21BE103C, "Smart Array P741m", &SA5_access}, |
| 178 | {0x21BF103C, "Smart HBA H240ar", &SA5_access}, |
| 179 | {0x21C0103C, "Smart Array P440ar", &SA5_access}, |
Don Brace | c8ae0ab | 2015-01-23 16:45:12 -0600 | [diff] [blame] | 180 | {0x21C1103C, "Smart Array P840ar", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 181 | {0x21C2103C, "Smart Array P440", &SA5_access}, |
| 182 | {0x21C3103C, "Smart Array P441", &SA5_access}, |
Mike Miller | 97b9f53 | 2013-09-04 15:05:55 -0500 | [diff] [blame] | 183 | {0x21C4103C, "Smart Array", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 184 | {0x21C5103C, "Smart Array P841", &SA5_access}, |
| 185 | {0x21C6103C, "Smart HBA H244br", &SA5_access}, |
| 186 | {0x21C7103C, "Smart HBA H240", &SA5_access}, |
| 187 | {0x21C8103C, "Smart HBA H241", &SA5_access}, |
Mike Miller | 97b9f53 | 2013-09-04 15:05:55 -0500 | [diff] [blame] | 188 | {0x21C9103C, "Smart Array", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 189 | {0x21CA103C, "Smart Array P246br", &SA5_access}, |
| 190 | {0x21CB103C, "Smart Array P840", &SA5_access}, |
Joe Handzik | 3b7a45e | 2014-05-08 14:27:24 -0500 | [diff] [blame] | 191 | {0x21CC103C, "Smart Array", &SA5_access}, |
| 192 | {0x21CD103C, "Smart Array", &SA5_access}, |
Don Brace | 27fb813 | 2015-01-23 16:45:07 -0600 | [diff] [blame] | 193 | {0x21CE103C, "Smart HBA", &SA5_access}, |
Don Brace | fdfa4b6 | 2015-04-23 09:35:27 -0500 | [diff] [blame] | 194 | {0x05809005, "SmartHBA-SA", &SA5_access}, |
Don Brace | cbb47dc | 2015-07-18 11:12:54 -0500 | [diff] [blame] | 195 | {0x05819005, "SmartHBA-SA 8i", &SA5_access}, |
| 196 | {0x05829005, "SmartHBA-SA 8i8e", &SA5_access}, |
| 197 | {0x05839005, "SmartHBA-SA 8e", &SA5_access}, |
| 198 | {0x05849005, "SmartHBA-SA 16i", &SA5_access}, |
| 199 | {0x05859005, "SmartHBA-SA 4i4e", &SA5_access}, |
Stephen M. Cameron | 8e616a5 | 2014-02-18 13:58:02 -0600 | [diff] [blame] | 200 | {0x00761590, "HP Storage P1224 Array Controller", &SA5_access}, |
| 201 | {0x00871590, "HP Storage P1224e Array Controller", &SA5_access}, |
| 202 | {0x007D1590, "HP Storage P1228 Array Controller", &SA5_access}, |
| 203 | {0x00881590, "HP Storage P1228e Array Controller", &SA5_access}, |
| 204 | {0x333f103c, "HP StorageWorks 1210m Array Controller", &SA5_access}, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 205 | {0xFFFF103C, "Unknown Smart Array", &SA5_access}, |
| 206 | }; |
| 207 | |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 208 | #define SCSI_CMD_BUSY ((struct scsi_cmnd *)&hpsa_cmd_busy) |
| 209 | static const struct scsi_cmnd hpsa_cmd_busy; |
| 210 | #define SCSI_CMD_IDLE ((struct scsi_cmnd *)&hpsa_cmd_idle) |
| 211 | static const struct scsi_cmnd hpsa_cmd_idle; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 212 | static int number_of_controllers; |
| 213 | |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 214 | static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id); |
| 215 | static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id); |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 216 | 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] | 217 | |
| 218 | #ifdef CONFIG_COMPAT |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 219 | static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, |
| 220 | void __user *arg); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 221 | #endif |
| 222 | |
| 223 | static void cmd_free(struct ctlr_info *h, struct CommandList *c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 224 | static struct CommandList *cmd_alloc(struct ctlr_info *h); |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 225 | static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c); |
| 226 | static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h, |
| 227 | struct scsi_cmnd *scmd); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 228 | 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] | 229 | void *buff, size_t size, u16 page_code, unsigned char *scsi3addr, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 230 | int cmd_type); |
Robert Elliott | 2c14334 | 2015-01-23 16:42:48 -0600 | [diff] [blame] | 231 | static void hpsa_free_cmd_pool(struct ctlr_info *h); |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 232 | #define VPD_PAGE (1 << 8) |
Don Brace | b48d980 | 2015-11-04 15:50:13 -0600 | [diff] [blame] | 233 | #define HPSA_SIMPLE_ERROR_BITS 0x03 |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 234 | |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 235 | static int hpsa_scsi_queue_command(struct Scsi_Host *h, struct scsi_cmnd *cmd); |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 236 | static void hpsa_scan_start(struct Scsi_Host *); |
| 237 | static int hpsa_scan_finished(struct Scsi_Host *sh, |
| 238 | unsigned long elapsed_time); |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 239 | 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] | 240 | |
| 241 | static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 242 | static int hpsa_eh_abort_handler(struct scsi_cmnd *scsicmd); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 243 | static int hpsa_slave_alloc(struct scsi_device *sdev); |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 244 | static int hpsa_slave_configure(struct scsi_device *sdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 245 | static void hpsa_slave_destroy(struct scsi_device *sdev); |
| 246 | |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 247 | static void hpsa_update_scsi_devices(struct ctlr_info *h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 248 | static int check_for_unit_attention(struct ctlr_info *h, |
| 249 | struct CommandList *c); |
| 250 | static void check_ioctl_unit_attention(struct ctlr_info *h, |
| 251 | struct CommandList *c); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 252 | /* performant mode helper functions */ |
| 253 | static void calc_bucket_map(int *bucket, int num_buckets, |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 254 | int nsgs, int min_blocks, u32 *bucket_map); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 255 | static void hpsa_free_performant_mode(struct ctlr_info *h); |
| 256 | static int hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 257 | static inline u32 next_command(struct ctlr_info *h, u8 q); |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 258 | static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr, |
| 259 | u32 *cfg_base_addr, u64 *cfg_base_addr_index, |
| 260 | u64 *cfg_offset); |
| 261 | static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev, |
| 262 | unsigned long *memory_bar); |
| 263 | static int hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id); |
| 264 | static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr, |
| 265 | int wait_for_ready); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 266 | static inline void finish_cmd(struct CommandList *c); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 267 | 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] | 268 | #define BOARD_NOT_READY 0 |
| 269 | #define BOARD_READY 1 |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 270 | static void hpsa_drain_accel_commands(struct ctlr_info *h); |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 271 | static void hpsa_flush_cache(struct ctlr_info *h); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 272 | static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h, |
| 273 | struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 274 | u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk); |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 275 | static void hpsa_command_resubmit_worker(struct work_struct *work); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 276 | static u32 lockup_detected(struct ctlr_info *h); |
| 277 | static int detect_controller_lockup(struct ctlr_info *h); |
Joe Handzik | 8270b86 | 2015-07-18 11:12:43 -0500 | [diff] [blame] | 278 | 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] | 279 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 280 | static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev) |
| 281 | { |
| 282 | unsigned long *priv = shost_priv(sdev->host); |
| 283 | return (struct ctlr_info *) *priv; |
| 284 | } |
| 285 | |
Stephen M. Cameron | a23513e | 2010-02-04 08:43:11 -0600 | [diff] [blame] | 286 | static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh) |
| 287 | { |
| 288 | unsigned long *priv = shost_priv(sh); |
| 289 | return (struct ctlr_info *) *priv; |
| 290 | } |
| 291 | |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 292 | static inline bool hpsa_is_cmd_idle(struct CommandList *c) |
| 293 | { |
| 294 | return c->scsi_cmd == SCSI_CMD_IDLE; |
| 295 | } |
| 296 | |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 297 | static inline bool hpsa_is_pending_event(struct CommandList *c) |
| 298 | { |
| 299 | return c->abort_pending || c->reset_pending; |
| 300 | } |
| 301 | |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 302 | /* extract sense key, asc, and ascq from sense data. -1 means invalid. */ |
| 303 | static void decode_sense_data(const u8 *sense_data, int sense_data_len, |
| 304 | u8 *sense_key, u8 *asc, u8 *ascq) |
| 305 | { |
| 306 | struct scsi_sense_hdr sshdr; |
| 307 | bool rc; |
| 308 | |
| 309 | *sense_key = -1; |
| 310 | *asc = -1; |
| 311 | *ascq = -1; |
| 312 | |
| 313 | if (sense_data_len < 1) |
| 314 | return; |
| 315 | |
| 316 | rc = scsi_normalize_sense(sense_data, sense_data_len, &sshdr); |
| 317 | if (rc) { |
| 318 | *sense_key = sshdr.sense_key; |
| 319 | *asc = sshdr.asc; |
| 320 | *ascq = sshdr.ascq; |
| 321 | } |
| 322 | } |
| 323 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 324 | static int check_for_unit_attention(struct ctlr_info *h, |
| 325 | struct CommandList *c) |
| 326 | { |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 327 | u8 sense_key, asc, ascq; |
| 328 | int sense_len; |
| 329 | |
| 330 | if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo)) |
| 331 | sense_len = sizeof(c->err_info->SenseInfo); |
| 332 | else |
| 333 | sense_len = c->err_info->SenseLen; |
| 334 | |
| 335 | decode_sense_data(c->err_info->SenseInfo, sense_len, |
| 336 | &sense_key, &asc, &ascq); |
Don Brace | 81c2755 | 2015-07-18 11:12:28 -0500 | [diff] [blame] | 337 | if (sense_key != UNIT_ATTENTION || asc == 0xff) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 338 | return 0; |
| 339 | |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 340 | switch (asc) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 341 | case STATE_CHANGED: |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 342 | dev_warn(&h->pdev->dev, |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 343 | "%s: a state change detected, command retried\n", |
| 344 | h->devname); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 345 | break; |
| 346 | case LUN_FAILED: |
Stephen M. Cameron | 7f73695 | 2014-11-14 17:26:48 -0600 | [diff] [blame] | 347 | dev_warn(&h->pdev->dev, |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 348 | "%s: LUN failure detected\n", h->devname); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 349 | break; |
| 350 | case REPORT_LUNS_CHANGED: |
Stephen M. Cameron | 7f73695 | 2014-11-14 17:26:48 -0600 | [diff] [blame] | 351 | dev_warn(&h->pdev->dev, |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 352 | "%s: report LUN data changed\n", h->devname); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 353 | /* |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 354 | * Note: this REPORT_LUNS_CHANGED condition only occurs on the external |
| 355 | * target (array) devices. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 356 | */ |
| 357 | break; |
| 358 | case POWER_OR_RESET: |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 359 | dev_warn(&h->pdev->dev, |
| 360 | "%s: a power on or device reset detected\n", |
| 361 | h->devname); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 362 | break; |
| 363 | case UNIT_ATTENTION_CLEARED: |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 364 | dev_warn(&h->pdev->dev, |
| 365 | "%s: unit attention cleared by another initiator\n", |
| 366 | h->devname); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 367 | break; |
| 368 | default: |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 369 | dev_warn(&h->pdev->dev, |
| 370 | "%s: unknown unit attention detected\n", |
| 371 | h->devname); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 372 | break; |
| 373 | } |
| 374 | return 1; |
| 375 | } |
| 376 | |
Matt Bondurant | 852af20 | 2012-05-01 11:42:35 -0500 | [diff] [blame] | 377 | static int check_for_busy(struct ctlr_info *h, struct CommandList *c) |
| 378 | { |
| 379 | if (c->err_info->CommandStatus != CMD_TARGET_STATUS || |
| 380 | (c->err_info->ScsiStatus != SAM_STAT_BUSY && |
| 381 | c->err_info->ScsiStatus != SAM_STAT_TASK_SET_FULL)) |
| 382 | return 0; |
| 383 | dev_warn(&h->pdev->dev, HPSA "device busy"); |
| 384 | return 1; |
| 385 | } |
| 386 | |
Stephen Cameron | e985c58 | 2015-04-23 09:32:22 -0500 | [diff] [blame] | 387 | static u32 lockup_detected(struct ctlr_info *h); |
| 388 | static ssize_t host_show_lockup_detected(struct device *dev, |
| 389 | struct device_attribute *attr, char *buf) |
| 390 | { |
| 391 | int ld; |
| 392 | struct ctlr_info *h; |
| 393 | struct Scsi_Host *shost = class_to_shost(dev); |
| 394 | |
| 395 | h = shost_to_hba(shost); |
| 396 | ld = lockup_detected(h); |
| 397 | |
| 398 | return sprintf(buf, "ld=%d\n", ld); |
| 399 | } |
| 400 | |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 401 | static ssize_t host_store_hp_ssd_smart_path_status(struct device *dev, |
| 402 | struct device_attribute *attr, |
| 403 | const char *buf, size_t count) |
| 404 | { |
| 405 | int status, len; |
| 406 | struct ctlr_info *h; |
| 407 | struct Scsi_Host *shost = class_to_shost(dev); |
| 408 | char tmpbuf[10]; |
| 409 | |
| 410 | if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO)) |
| 411 | return -EACCES; |
| 412 | len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count; |
| 413 | strncpy(tmpbuf, buf, len); |
| 414 | tmpbuf[len] = '\0'; |
| 415 | if (sscanf(tmpbuf, "%d", &status) != 1) |
| 416 | return -EINVAL; |
| 417 | h = shost_to_hba(shost); |
| 418 | h->acciopath_status = !!status; |
| 419 | dev_warn(&h->pdev->dev, |
| 420 | "hpsa: HP SSD Smart Path %s via sysfs update.\n", |
| 421 | h->acciopath_status ? "enabled" : "disabled"); |
| 422 | return count; |
| 423 | } |
| 424 | |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 425 | static ssize_t host_store_raid_offload_debug(struct device *dev, |
| 426 | struct device_attribute *attr, |
| 427 | const char *buf, size_t count) |
| 428 | { |
| 429 | int debug_level, len; |
| 430 | struct ctlr_info *h; |
| 431 | struct Scsi_Host *shost = class_to_shost(dev); |
| 432 | char tmpbuf[10]; |
| 433 | |
| 434 | if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO)) |
| 435 | return -EACCES; |
| 436 | len = count > sizeof(tmpbuf) - 1 ? sizeof(tmpbuf) - 1 : count; |
| 437 | strncpy(tmpbuf, buf, len); |
| 438 | tmpbuf[len] = '\0'; |
| 439 | if (sscanf(tmpbuf, "%d", &debug_level) != 1) |
| 440 | return -EINVAL; |
| 441 | if (debug_level < 0) |
| 442 | debug_level = 0; |
| 443 | h = shost_to_hba(shost); |
| 444 | h->raid_offload_debug = debug_level; |
| 445 | dev_warn(&h->pdev->dev, "hpsa: Set raid_offload_debug level = %d\n", |
| 446 | h->raid_offload_debug); |
| 447 | return count; |
| 448 | } |
| 449 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 450 | static ssize_t host_store_rescan(struct device *dev, |
| 451 | struct device_attribute *attr, |
| 452 | const char *buf, size_t count) |
| 453 | { |
| 454 | struct ctlr_info *h; |
| 455 | struct Scsi_Host *shost = class_to_shost(dev); |
Stephen M. Cameron | a23513e | 2010-02-04 08:43:11 -0600 | [diff] [blame] | 456 | h = shost_to_hba(shost); |
Mike Miller | 3146840 | 2010-02-25 14:03:12 -0600 | [diff] [blame] | 457 | hpsa_scan_start(h->scsi_host); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 458 | return count; |
| 459 | } |
| 460 | |
Stephen M. Cameron | d28ce02 | 2010-05-27 15:14:34 -0500 | [diff] [blame] | 461 | static ssize_t host_show_firmware_revision(struct device *dev, |
| 462 | struct device_attribute *attr, char *buf) |
| 463 | { |
| 464 | struct ctlr_info *h; |
| 465 | struct Scsi_Host *shost = class_to_shost(dev); |
| 466 | unsigned char *fwrev; |
| 467 | |
| 468 | h = shost_to_hba(shost); |
| 469 | if (!h->hba_inquiry_data) |
| 470 | return 0; |
| 471 | fwrev = &h->hba_inquiry_data[32]; |
| 472 | return snprintf(buf, 20, "%c%c%c%c\n", |
| 473 | fwrev[0], fwrev[1], fwrev[2], fwrev[3]); |
| 474 | } |
| 475 | |
Stephen M. Cameron | 94a1364 | 2011-01-06 14:48:39 -0600 | [diff] [blame] | 476 | static ssize_t host_show_commands_outstanding(struct device *dev, |
| 477 | struct device_attribute *attr, char *buf) |
| 478 | { |
| 479 | struct Scsi_Host *shost = class_to_shost(dev); |
| 480 | struct ctlr_info *h = shost_to_hba(shost); |
| 481 | |
Stephen M. Cameron | 0cbf768 | 2014-11-14 17:27:09 -0600 | [diff] [blame] | 482 | return snprintf(buf, 20, "%d\n", |
| 483 | atomic_read(&h->commands_outstanding)); |
Stephen M. Cameron | 94a1364 | 2011-01-06 14:48:39 -0600 | [diff] [blame] | 484 | } |
| 485 | |
Stephen M. Cameron | 745a7a2 | 2011-02-15 15:32:58 -0600 | [diff] [blame] | 486 | static ssize_t host_show_transport_mode(struct device *dev, |
| 487 | struct device_attribute *attr, char *buf) |
| 488 | { |
| 489 | struct ctlr_info *h; |
| 490 | struct Scsi_Host *shost = class_to_shost(dev); |
| 491 | |
| 492 | h = shost_to_hba(shost); |
| 493 | return snprintf(buf, 20, "%s\n", |
Stephen M. Cameron | 960a30e | 2011-02-15 15:33:03 -0600 | [diff] [blame] | 494 | h->transMethod & CFGTBL_Trans_Performant ? |
Stephen M. Cameron | 745a7a2 | 2011-02-15 15:32:58 -0600 | [diff] [blame] | 495 | "performant" : "simple"); |
| 496 | } |
| 497 | |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 498 | static ssize_t host_show_hp_ssd_smart_path_status(struct device *dev, |
| 499 | struct device_attribute *attr, char *buf) |
| 500 | { |
| 501 | struct ctlr_info *h; |
| 502 | struct Scsi_Host *shost = class_to_shost(dev); |
| 503 | |
| 504 | h = shost_to_hba(shost); |
| 505 | return snprintf(buf, 30, "HP SSD Smart Path %s\n", |
| 506 | (h->acciopath_status == 1) ? "enabled" : "disabled"); |
| 507 | } |
| 508 | |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 509 | /* 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] | 510 | static u32 unresettable_controller[] = { |
| 511 | 0x324a103C, /* Smart Array P712m */ |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 512 | 0x324b103C, /* Smart Array P711m */ |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 513 | 0x3223103C, /* Smart Array P800 */ |
| 514 | 0x3234103C, /* Smart Array P400 */ |
| 515 | 0x3235103C, /* Smart Array P400i */ |
| 516 | 0x3211103C, /* Smart Array E200i */ |
| 517 | 0x3212103C, /* Smart Array E200 */ |
| 518 | 0x3213103C, /* Smart Array E200i */ |
| 519 | 0x3214103C, /* Smart Array E200i */ |
| 520 | 0x3215103C, /* Smart Array E200i */ |
| 521 | 0x3237103C, /* Smart Array E500 */ |
| 522 | 0x323D103C, /* Smart Array P700m */ |
Tomas Henzl | 7af0abb | 2011-11-28 15:39:55 +0100 | [diff] [blame] | 523 | 0x40800E11, /* Smart Array 5i */ |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 524 | 0x409C0E11, /* Smart Array 6400 */ |
| 525 | 0x409D0E11, /* Smart Array 6400 EM */ |
Tomas Henzl | 5a4f934 | 2012-02-14 18:07:59 +0100 | [diff] [blame] | 526 | 0x40700E11, /* Smart Array 5300 */ |
| 527 | 0x40820E11, /* Smart Array 532 */ |
| 528 | 0x40830E11, /* Smart Array 5312 */ |
| 529 | 0x409A0E11, /* Smart Array 641 */ |
| 530 | 0x409B0E11, /* Smart Array 642 */ |
| 531 | 0x40910E11, /* Smart Array 6i */ |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 532 | }; |
| 533 | |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 534 | /* List of controllers which cannot even be soft reset */ |
| 535 | static u32 soft_unresettable_controller[] = { |
Tomas Henzl | 7af0abb | 2011-11-28 15:39:55 +0100 | [diff] [blame] | 536 | 0x40800E11, /* Smart Array 5i */ |
Tomas Henzl | 5a4f934 | 2012-02-14 18:07:59 +0100 | [diff] [blame] | 537 | 0x40700E11, /* Smart Array 5300 */ |
| 538 | 0x40820E11, /* Smart Array 532 */ |
| 539 | 0x40830E11, /* Smart Array 5312 */ |
| 540 | 0x409A0E11, /* Smart Array 641 */ |
| 541 | 0x409B0E11, /* Smart Array 642 */ |
| 542 | 0x40910E11, /* Smart Array 6i */ |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 543 | /* Exclude 640x boards. These are two pci devices in one slot |
| 544 | * which share a battery backed cache module. One controls the |
| 545 | * cache, the other accesses the cache through the one that controls |
| 546 | * it. If we reset the one controlling the cache, the other will |
| 547 | * likely not be happy. Just forbid resetting this conjoined mess. |
| 548 | * The 640x isn't really supported by hpsa anyway. |
| 549 | */ |
| 550 | 0x409C0E11, /* Smart Array 6400 */ |
| 551 | 0x409D0E11, /* Smart Array 6400 EM */ |
| 552 | }; |
| 553 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 554 | static u32 needs_abort_tags_swizzled[] = { |
| 555 | 0x323D103C, /* Smart Array P700m */ |
| 556 | 0x324a103C, /* Smart Array P712m */ |
| 557 | 0x324b103C, /* SmartArray P711m */ |
| 558 | }; |
| 559 | |
| 560 | 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] | 561 | { |
| 562 | int i; |
| 563 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 564 | for (i = 0; i < nelems; i++) |
| 565 | if (a[i] == board_id) |
| 566 | return 1; |
| 567 | return 0; |
| 568 | } |
| 569 | |
| 570 | static int ctlr_is_hard_resettable(u32 board_id) |
| 571 | { |
| 572 | return !board_id_in_array(unresettable_controller, |
| 573 | ARRAY_SIZE(unresettable_controller), board_id); |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 574 | } |
| 575 | |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 576 | static int ctlr_is_soft_resettable(u32 board_id) |
| 577 | { |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 578 | return !board_id_in_array(soft_unresettable_controller, |
| 579 | ARRAY_SIZE(soft_unresettable_controller), board_id); |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | static int ctlr_is_resettable(u32 board_id) |
| 583 | { |
| 584 | return ctlr_is_hard_resettable(board_id) || |
| 585 | ctlr_is_soft_resettable(board_id); |
| 586 | } |
| 587 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 588 | static int ctlr_needs_abort_tags_swizzled(u32 board_id) |
| 589 | { |
| 590 | return board_id_in_array(needs_abort_tags_swizzled, |
| 591 | ARRAY_SIZE(needs_abort_tags_swizzled), board_id); |
| 592 | } |
| 593 | |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 594 | static ssize_t host_show_resettable(struct device *dev, |
| 595 | struct device_attribute *attr, char *buf) |
| 596 | { |
| 597 | struct ctlr_info *h; |
| 598 | struct Scsi_Host *shost = class_to_shost(dev); |
| 599 | |
| 600 | h = shost_to_hba(shost); |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 601 | 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] | 602 | } |
| 603 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 604 | static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[]) |
| 605 | { |
| 606 | return (scsi3addr[3] & 0xC0) == 0x40; |
| 607 | } |
| 608 | |
Robert Elliott | f2ef0ce | 2015-01-23 16:41:35 -0600 | [diff] [blame] | 609 | static const char * const raid_label[] = { "0", "4", "1(+0)", "5", "5+1", "6", |
| 610 | "1(+0)ADM", "UNKNOWN" |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 611 | }; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 612 | #define HPSA_RAID_0 0 |
| 613 | #define HPSA_RAID_4 1 |
| 614 | #define HPSA_RAID_1 2 /* also used for RAID 10 */ |
| 615 | #define HPSA_RAID_5 3 /* also used for RAID 50 */ |
| 616 | #define HPSA_RAID_51 4 |
| 617 | #define HPSA_RAID_6 5 /* also used for RAID 60 */ |
| 618 | #define HPSA_RAID_ADM 6 /* also used for RAID 1+0 ADM */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 619 | #define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1) |
| 620 | |
Kevin Barnett | f3f0173 | 2015-11-04 15:51:33 -0600 | [diff] [blame] | 621 | static inline bool is_logical_device(struct hpsa_scsi_dev_t *device) |
| 622 | { |
| 623 | return !device->physical_device; |
| 624 | } |
| 625 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 626 | static ssize_t raid_level_show(struct device *dev, |
| 627 | struct device_attribute *attr, char *buf) |
| 628 | { |
| 629 | ssize_t l = 0; |
Stephen M. Cameron | 82a72c0 | 2010-02-04 08:41:38 -0600 | [diff] [blame] | 630 | unsigned char rlevel; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 631 | struct ctlr_info *h; |
| 632 | struct scsi_device *sdev; |
| 633 | struct hpsa_scsi_dev_t *hdev; |
| 634 | unsigned long flags; |
| 635 | |
| 636 | sdev = to_scsi_device(dev); |
| 637 | h = sdev_to_hba(sdev); |
| 638 | spin_lock_irqsave(&h->lock, flags); |
| 639 | hdev = sdev->hostdata; |
| 640 | if (!hdev) { |
| 641 | spin_unlock_irqrestore(&h->lock, flags); |
| 642 | return -ENODEV; |
| 643 | } |
| 644 | |
| 645 | /* Is this even a logical drive? */ |
Kevin Barnett | f3f0173 | 2015-11-04 15:51:33 -0600 | [diff] [blame] | 646 | if (!is_logical_device(hdev)) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 647 | spin_unlock_irqrestore(&h->lock, flags); |
| 648 | l = snprintf(buf, PAGE_SIZE, "N/A\n"); |
| 649 | return l; |
| 650 | } |
| 651 | |
| 652 | rlevel = hdev->raid_level; |
| 653 | spin_unlock_irqrestore(&h->lock, flags); |
Stephen M. Cameron | 82a72c0 | 2010-02-04 08:41:38 -0600 | [diff] [blame] | 654 | if (rlevel > RAID_UNKNOWN) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 655 | rlevel = RAID_UNKNOWN; |
| 656 | l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]); |
| 657 | return l; |
| 658 | } |
| 659 | |
| 660 | static ssize_t lunid_show(struct device *dev, |
| 661 | struct device_attribute *attr, char *buf) |
| 662 | { |
| 663 | struct ctlr_info *h; |
| 664 | struct scsi_device *sdev; |
| 665 | struct hpsa_scsi_dev_t *hdev; |
| 666 | unsigned long flags; |
| 667 | unsigned char lunid[8]; |
| 668 | |
| 669 | sdev = to_scsi_device(dev); |
| 670 | h = sdev_to_hba(sdev); |
| 671 | spin_lock_irqsave(&h->lock, flags); |
| 672 | hdev = sdev->hostdata; |
| 673 | if (!hdev) { |
| 674 | spin_unlock_irqrestore(&h->lock, flags); |
| 675 | return -ENODEV; |
| 676 | } |
| 677 | memcpy(lunid, hdev->scsi3addr, sizeof(lunid)); |
| 678 | spin_unlock_irqrestore(&h->lock, flags); |
| 679 | return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 680 | lunid[0], lunid[1], lunid[2], lunid[3], |
| 681 | lunid[4], lunid[5], lunid[6], lunid[7]); |
| 682 | } |
| 683 | |
| 684 | static ssize_t unique_id_show(struct device *dev, |
| 685 | struct device_attribute *attr, char *buf) |
| 686 | { |
| 687 | struct ctlr_info *h; |
| 688 | struct scsi_device *sdev; |
| 689 | struct hpsa_scsi_dev_t *hdev; |
| 690 | unsigned long flags; |
| 691 | unsigned char sn[16]; |
| 692 | |
| 693 | sdev = to_scsi_device(dev); |
| 694 | h = sdev_to_hba(sdev); |
| 695 | spin_lock_irqsave(&h->lock, flags); |
| 696 | hdev = sdev->hostdata; |
| 697 | if (!hdev) { |
| 698 | spin_unlock_irqrestore(&h->lock, flags); |
| 699 | return -ENODEV; |
| 700 | } |
| 701 | memcpy(sn, hdev->device_id, sizeof(sn)); |
| 702 | spin_unlock_irqrestore(&h->lock, flags); |
| 703 | return snprintf(buf, 16 * 2 + 2, |
| 704 | "%02X%02X%02X%02X%02X%02X%02X%02X" |
| 705 | "%02X%02X%02X%02X%02X%02X%02X%02X\n", |
| 706 | sn[0], sn[1], sn[2], sn[3], |
| 707 | sn[4], sn[5], sn[6], sn[7], |
| 708 | sn[8], sn[9], sn[10], sn[11], |
| 709 | sn[12], sn[13], sn[14], sn[15]); |
| 710 | } |
| 711 | |
Scott Teel | c198868 | 2014-02-18 13:55:54 -0600 | [diff] [blame] | 712 | static ssize_t host_show_hp_ssd_smart_path_enabled(struct device *dev, |
| 713 | struct device_attribute *attr, char *buf) |
| 714 | { |
| 715 | struct ctlr_info *h; |
| 716 | struct scsi_device *sdev; |
| 717 | struct hpsa_scsi_dev_t *hdev; |
| 718 | unsigned long flags; |
| 719 | int offload_enabled; |
| 720 | |
| 721 | sdev = to_scsi_device(dev); |
| 722 | h = sdev_to_hba(sdev); |
| 723 | spin_lock_irqsave(&h->lock, flags); |
| 724 | hdev = sdev->hostdata; |
| 725 | if (!hdev) { |
| 726 | spin_unlock_irqrestore(&h->lock, flags); |
| 727 | return -ENODEV; |
| 728 | } |
| 729 | offload_enabled = hdev->offload_enabled; |
| 730 | spin_unlock_irqrestore(&h->lock, flags); |
| 731 | return snprintf(buf, 20, "%d\n", offload_enabled); |
| 732 | } |
| 733 | |
Joe Handzik | 8270b86 | 2015-07-18 11:12:43 -0500 | [diff] [blame] | 734 | #define MAX_PATHS 8 |
| 735 | #define PATH_STRING_LEN 50 |
| 736 | |
| 737 | static ssize_t path_info_show(struct device *dev, |
| 738 | struct device_attribute *attr, char *buf) |
| 739 | { |
| 740 | struct ctlr_info *h; |
| 741 | struct scsi_device *sdev; |
| 742 | struct hpsa_scsi_dev_t *hdev; |
| 743 | unsigned long flags; |
| 744 | int i; |
| 745 | int output_len = 0; |
| 746 | u8 box; |
| 747 | u8 bay; |
| 748 | u8 path_map_index = 0; |
| 749 | char *active; |
| 750 | unsigned char phys_connector[2]; |
| 751 | unsigned char path[MAX_PATHS][PATH_STRING_LEN]; |
| 752 | |
| 753 | memset(path, 0, MAX_PATHS * PATH_STRING_LEN); |
| 754 | sdev = to_scsi_device(dev); |
| 755 | h = sdev_to_hba(sdev); |
| 756 | spin_lock_irqsave(&h->devlock, flags); |
| 757 | hdev = sdev->hostdata; |
| 758 | if (!hdev) { |
| 759 | spin_unlock_irqrestore(&h->devlock, flags); |
| 760 | return -ENODEV; |
| 761 | } |
| 762 | |
| 763 | bay = hdev->bay; |
| 764 | for (i = 0; i < MAX_PATHS; i++) { |
| 765 | path_map_index = 1<<i; |
| 766 | if (i == hdev->active_path_index) |
| 767 | active = "Active"; |
| 768 | else if (hdev->path_map & path_map_index) |
| 769 | active = "Inactive"; |
| 770 | else |
| 771 | continue; |
| 772 | |
| 773 | output_len = snprintf(path[i], |
| 774 | PATH_STRING_LEN, "[%d:%d:%d:%d] %20.20s ", |
| 775 | h->scsi_host->host_no, |
| 776 | hdev->bus, hdev->target, hdev->lun, |
| 777 | scsi_device_type(hdev->devtype)); |
| 778 | |
| 779 | if (is_ext_target(h, hdev) || |
Kevin Barnett | f3f0173 | 2015-11-04 15:51:33 -0600 | [diff] [blame] | 780 | hdev->devtype == TYPE_RAID || |
| 781 | is_logical_device(hdev)) { |
Joe Handzik | 8270b86 | 2015-07-18 11:12:43 -0500 | [diff] [blame] | 782 | output_len += snprintf(path[i] + output_len, |
| 783 | PATH_STRING_LEN, "%s\n", |
| 784 | active); |
| 785 | continue; |
| 786 | } |
| 787 | |
| 788 | box = hdev->box[i]; |
| 789 | memcpy(&phys_connector, &hdev->phys_connector[i], |
| 790 | sizeof(phys_connector)); |
| 791 | if (phys_connector[0] < '0') |
| 792 | phys_connector[0] = '0'; |
| 793 | if (phys_connector[1] < '0') |
| 794 | phys_connector[1] = '0'; |
| 795 | if (hdev->phys_connector[i] > 0) |
| 796 | output_len += snprintf(path[i] + output_len, |
| 797 | PATH_STRING_LEN, |
| 798 | "PORT: %.2s ", |
| 799 | phys_connector); |
Kevin Barnett | 2a16820 | 2015-11-04 15:51:21 -0600 | [diff] [blame] | 800 | if (hdev->devtype == TYPE_DISK && hdev->expose_device) { |
Joe Handzik | 8270b86 | 2015-07-18 11:12:43 -0500 | [diff] [blame] | 801 | if (box == 0 || box == 0xFF) { |
| 802 | output_len += snprintf(path[i] + output_len, |
| 803 | PATH_STRING_LEN, |
| 804 | "BAY: %hhu %s\n", |
| 805 | bay, active); |
| 806 | } else { |
| 807 | output_len += snprintf(path[i] + output_len, |
| 808 | PATH_STRING_LEN, |
| 809 | "BOX: %hhu BAY: %hhu %s\n", |
| 810 | box, bay, active); |
| 811 | } |
| 812 | } else if (box != 0 && box != 0xFF) { |
| 813 | output_len += snprintf(path[i] + output_len, |
| 814 | PATH_STRING_LEN, "BOX: %hhu %s\n", |
| 815 | box, active); |
| 816 | } else |
| 817 | output_len += snprintf(path[i] + output_len, |
| 818 | PATH_STRING_LEN, "%s\n", active); |
| 819 | } |
| 820 | |
| 821 | spin_unlock_irqrestore(&h->devlock, flags); |
| 822 | return snprintf(buf, output_len+1, "%s%s%s%s%s%s%s%s", |
| 823 | path[0], path[1], path[2], path[3], |
| 824 | path[4], path[5], path[6], path[7]); |
| 825 | } |
| 826 | |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 827 | static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL); |
| 828 | static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL); |
| 829 | static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL); |
| 830 | static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan); |
Scott Teel | c198868 | 2014-02-18 13:55:54 -0600 | [diff] [blame] | 831 | static DEVICE_ATTR(hp_ssd_smart_path_enabled, S_IRUGO, |
| 832 | host_show_hp_ssd_smart_path_enabled, NULL); |
Joe Handzik | 8270b86 | 2015-07-18 11:12:43 -0500 | [diff] [blame] | 833 | static DEVICE_ATTR(path_info, S_IRUGO, path_info_show, NULL); |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 834 | static DEVICE_ATTR(hp_ssd_smart_path_status, S_IWUSR|S_IRUGO|S_IROTH, |
| 835 | host_show_hp_ssd_smart_path_status, |
| 836 | host_store_hp_ssd_smart_path_status); |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 837 | static DEVICE_ATTR(raid_offload_debug, S_IWUSR, NULL, |
| 838 | host_store_raid_offload_debug); |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 839 | static DEVICE_ATTR(firmware_revision, S_IRUGO, |
| 840 | host_show_firmware_revision, NULL); |
| 841 | static DEVICE_ATTR(commands_outstanding, S_IRUGO, |
| 842 | host_show_commands_outstanding, NULL); |
| 843 | static DEVICE_ATTR(transport_mode, S_IRUGO, |
| 844 | host_show_transport_mode, NULL); |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 845 | static DEVICE_ATTR(resettable, S_IRUGO, |
| 846 | host_show_resettable, NULL); |
Stephen Cameron | e985c58 | 2015-04-23 09:32:22 -0500 | [diff] [blame] | 847 | static DEVICE_ATTR(lockup_detected, S_IRUGO, |
| 848 | host_show_lockup_detected, NULL); |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 849 | |
| 850 | static struct device_attribute *hpsa_sdev_attrs[] = { |
| 851 | &dev_attr_raid_level, |
| 852 | &dev_attr_lunid, |
| 853 | &dev_attr_unique_id, |
Scott Teel | c198868 | 2014-02-18 13:55:54 -0600 | [diff] [blame] | 854 | &dev_attr_hp_ssd_smart_path_enabled, |
Joe Handzik | 8270b86 | 2015-07-18 11:12:43 -0500 | [diff] [blame] | 855 | &dev_attr_path_info, |
Stephen Cameron | e985c58 | 2015-04-23 09:32:22 -0500 | [diff] [blame] | 856 | &dev_attr_lockup_detected, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 857 | NULL, |
| 858 | }; |
| 859 | |
| 860 | static struct device_attribute *hpsa_shost_attrs[] = { |
| 861 | &dev_attr_rescan, |
| 862 | &dev_attr_firmware_revision, |
| 863 | &dev_attr_commands_outstanding, |
| 864 | &dev_attr_transport_mode, |
Stephen M. Cameron | 941b1cd | 2011-03-09 17:00:06 -0600 | [diff] [blame] | 865 | &dev_attr_resettable, |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 866 | &dev_attr_hp_ssd_smart_path_status, |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 867 | &dev_attr_raid_offload_debug, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 868 | NULL, |
| 869 | }; |
| 870 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 871 | #define HPSA_NRESERVED_CMDS (HPSA_CMDS_RESERVED_FOR_ABORTS + \ |
| 872 | HPSA_CMDS_RESERVED_FOR_DRIVER + HPSA_MAX_CONCURRENT_PASSTHRUS) |
| 873 | |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 874 | static struct scsi_host_template hpsa_driver_template = { |
| 875 | .module = THIS_MODULE, |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 876 | .name = HPSA, |
| 877 | .proc_name = HPSA, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 878 | .queuecommand = hpsa_scsi_queue_command, |
| 879 | .scan_start = hpsa_scan_start, |
| 880 | .scan_finished = hpsa_scan_finished, |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 881 | .change_queue_depth = hpsa_change_queue_depth, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 882 | .this_id = -1, |
| 883 | .use_clustering = ENABLE_CLUSTERING, |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 884 | .eh_abort_handler = hpsa_eh_abort_handler, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 885 | .eh_device_reset_handler = hpsa_eh_device_reset_handler, |
| 886 | .ioctl = hpsa_ioctl, |
| 887 | .slave_alloc = hpsa_slave_alloc, |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 888 | .slave_configure = hpsa_slave_configure, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 889 | .slave_destroy = hpsa_slave_destroy, |
| 890 | #ifdef CONFIG_COMPAT |
| 891 | .compat_ioctl = hpsa_compat_ioctl, |
| 892 | #endif |
| 893 | .sdev_attrs = hpsa_sdev_attrs, |
| 894 | .shost_attrs = hpsa_shost_attrs, |
Stephen M. Cameron | c0d6a4d | 2011-10-26 16:20:53 -0500 | [diff] [blame] | 895 | .max_sectors = 8192, |
Martin K. Petersen | 54b2b50 | 2013-10-23 06:25:40 -0400 | [diff] [blame] | 896 | .no_write_same = 1, |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 897 | }; |
| 898 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 899 | static inline u32 next_command(struct ctlr_info *h, u8 q) |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 900 | { |
| 901 | u32 a; |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 902 | struct reply_queue_buffer *rq = &h->reply_queue[q]; |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 903 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 904 | if (h->transMethod & CFGTBL_Trans_io_accel1) |
| 905 | return h->access.command_completed(h, q); |
| 906 | |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 907 | if (unlikely(!(h->transMethod & CFGTBL_Trans_Performant))) |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 908 | return h->access.command_completed(h, q); |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 909 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 910 | if ((rq->head[rq->current_entry] & 1) == rq->wraparound) { |
| 911 | a = rq->head[rq->current_entry]; |
| 912 | rq->current_entry++; |
Stephen M. Cameron | 0cbf768 | 2014-11-14 17:27:09 -0600 | [diff] [blame] | 913 | atomic_dec(&h->commands_outstanding); |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 914 | } else { |
| 915 | a = FIFO_EMPTY; |
| 916 | } |
| 917 | /* Check for wraparound */ |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 918 | if (rq->current_entry == h->max_commands) { |
| 919 | rq->current_entry = 0; |
| 920 | rq->wraparound ^= 1; |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 921 | } |
| 922 | return a; |
| 923 | } |
| 924 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 925 | /* |
| 926 | * There are some special bits in the bus address of the |
| 927 | * command that we have to set for the controller to know |
| 928 | * how to process the command: |
| 929 | * |
| 930 | * Normal performant mode: |
| 931 | * bit 0: 1 means performant mode, 0 means simple mode. |
| 932 | * bits 1-3 = block fetch table entry |
| 933 | * bits 4-6 = command type (== 0) |
| 934 | * |
| 935 | * ioaccel1 mode: |
| 936 | * bit 0 = "performant mode" bit. |
| 937 | * bits 1-3 = block fetch table entry |
| 938 | * bits 4-6 = command type (== 110) |
| 939 | * (command type is needed because ioaccel1 mode |
| 940 | * commands are submitted through the same register as normal |
| 941 | * mode commands, so this is how the controller knows whether |
| 942 | * the command is normal mode or ioaccel1 mode.) |
| 943 | * |
| 944 | * ioaccel2 mode: |
| 945 | * bit 0 = "performant mode" bit. |
| 946 | * bits 1-4 = block fetch table entry (note extra bit) |
| 947 | * bits 4-6 = not needed, because ioaccel2 mode has |
| 948 | * a separate special register for submitting commands. |
| 949 | */ |
| 950 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 951 | /* |
| 952 | * set_performant_mode: Modify the tag for cciss performant |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 953 | * set bit 0 for pull model, bits 3-1 for block fetch |
| 954 | * register number |
| 955 | */ |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 956 | #define DEFAULT_REPLY_QUEUE (-1) |
| 957 | static void set_performant_mode(struct ctlr_info *h, struct CommandList *c, |
| 958 | int reply_queue) |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 959 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 960 | if (likely(h->transMethod & CFGTBL_Trans_Performant)) { |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 961 | c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 962 | if (unlikely(!h->msix_vector)) |
| 963 | return; |
| 964 | if (likely(reply_queue == DEFAULT_REPLY_QUEUE)) |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 965 | c->Header.ReplyQueue = |
John Kacur | 804a5cb | 2013-07-26 16:06:18 +0200 | [diff] [blame] | 966 | raw_smp_processor_id() % h->nreply_queues; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 967 | else |
| 968 | c->Header.ReplyQueue = reply_queue % h->nreply_queues; |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 969 | } |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 970 | } |
| 971 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 972 | static void set_ioaccel1_performant_mode(struct ctlr_info *h, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 973 | struct CommandList *c, |
| 974 | int reply_queue) |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 975 | { |
| 976 | struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex]; |
| 977 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 978 | /* |
| 979 | * Tell the controller to post the reply to the queue for this |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 980 | * processor. This seems to give the best I/O throughput. |
| 981 | */ |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 982 | if (likely(reply_queue == DEFAULT_REPLY_QUEUE)) |
| 983 | cp->ReplyQueue = smp_processor_id() % h->nreply_queues; |
| 984 | else |
| 985 | cp->ReplyQueue = reply_queue % h->nreply_queues; |
| 986 | /* |
| 987 | * Set the bits in the address sent down to include: |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 988 | * - performant mode bit (bit 0) |
| 989 | * - pull count (bits 1-3) |
| 990 | * - command type (bits 4-6) |
| 991 | */ |
| 992 | c->busaddr |= 1 | (h->ioaccel1_blockFetchTable[c->Header.SGList] << 1) | |
| 993 | IOACCEL1_BUSADDR_CMDTYPE; |
| 994 | } |
| 995 | |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 996 | static void set_ioaccel2_tmf_performant_mode(struct ctlr_info *h, |
| 997 | struct CommandList *c, |
| 998 | int reply_queue) |
| 999 | { |
| 1000 | struct hpsa_tmf_struct *cp = (struct hpsa_tmf_struct *) |
| 1001 | &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 1002 | |
| 1003 | /* Tell the controller to post the reply to the queue for this |
| 1004 | * processor. This seems to give the best I/O throughput. |
| 1005 | */ |
| 1006 | if (likely(reply_queue == DEFAULT_REPLY_QUEUE)) |
| 1007 | cp->reply_queue = smp_processor_id() % h->nreply_queues; |
| 1008 | else |
| 1009 | cp->reply_queue = reply_queue % h->nreply_queues; |
| 1010 | /* Set the bits in the address sent down to include: |
| 1011 | * - performant mode bit not used in ioaccel mode 2 |
| 1012 | * - pull count (bits 0-3) |
| 1013 | * - command type isn't needed for ioaccel2 |
| 1014 | */ |
| 1015 | c->busaddr |= h->ioaccel2_blockFetchTable[0]; |
| 1016 | } |
| 1017 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1018 | static void set_ioaccel2_performant_mode(struct ctlr_info *h, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 1019 | struct CommandList *c, |
| 1020 | int reply_queue) |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1021 | { |
| 1022 | struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 1023 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 1024 | /* |
| 1025 | * Tell the controller to post the reply to the queue for this |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1026 | * processor. This seems to give the best I/O throughput. |
| 1027 | */ |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 1028 | if (likely(reply_queue == DEFAULT_REPLY_QUEUE)) |
| 1029 | cp->reply_queue = smp_processor_id() % h->nreply_queues; |
| 1030 | else |
| 1031 | cp->reply_queue = reply_queue % h->nreply_queues; |
| 1032 | /* |
| 1033 | * Set the bits in the address sent down to include: |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1034 | * - performant mode bit not used in ioaccel mode 2 |
| 1035 | * - pull count (bits 0-3) |
| 1036 | * - command type isn't needed for ioaccel2 |
| 1037 | */ |
| 1038 | c->busaddr |= (h->ioaccel2_blockFetchTable[cp->sg_count]); |
| 1039 | } |
| 1040 | |
Stephen M. Cameron | e85c597 | 2012-05-01 11:43:42 -0500 | [diff] [blame] | 1041 | static int is_firmware_flash_cmd(u8 *cdb) |
| 1042 | { |
| 1043 | return cdb[0] == BMIC_WRITE && cdb[6] == BMIC_FLASH_FIRMWARE; |
| 1044 | } |
| 1045 | |
| 1046 | /* |
| 1047 | * During firmware flash, the heartbeat register may not update as frequently |
| 1048 | * as it should. So we dial down lockup detection during firmware flash. and |
| 1049 | * dial it back up when firmware flash completes. |
| 1050 | */ |
| 1051 | #define HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH (240 * HZ) |
| 1052 | #define HEARTBEAT_SAMPLE_INTERVAL (30 * HZ) |
| 1053 | static void dial_down_lockup_detection_during_fw_flash(struct ctlr_info *h, |
| 1054 | struct CommandList *c) |
| 1055 | { |
| 1056 | if (!is_firmware_flash_cmd(c->Request.CDB)) |
| 1057 | return; |
| 1058 | atomic_inc(&h->firmware_flash_in_progress); |
| 1059 | h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL_DURING_FLASH; |
| 1060 | } |
| 1061 | |
| 1062 | static void dial_up_lockup_detection_on_fw_flash_complete(struct ctlr_info *h, |
| 1063 | struct CommandList *c) |
| 1064 | { |
| 1065 | if (is_firmware_flash_cmd(c->Request.CDB) && |
| 1066 | atomic_dec_and_test(&h->firmware_flash_in_progress)) |
| 1067 | h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL; |
| 1068 | } |
| 1069 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 1070 | static void __enqueue_cmd_and_start_io(struct ctlr_info *h, |
| 1071 | struct CommandList *c, int reply_queue) |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 1072 | { |
Stephen Cameron | c05e886 | 2015-01-23 16:44:40 -0600 | [diff] [blame] | 1073 | dial_down_lockup_detection_during_fw_flash(h, c); |
| 1074 | atomic_inc(&h->commands_outstanding); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1075 | switch (c->cmd_type) { |
| 1076 | case CMD_IOACCEL1: |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 1077 | set_ioaccel1_performant_mode(h, c, reply_queue); |
Stephen Cameron | c05e886 | 2015-01-23 16:44:40 -0600 | [diff] [blame] | 1078 | writel(c->busaddr, h->vaddr + SA5_REQUEST_PORT_OFFSET); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1079 | break; |
| 1080 | case CMD_IOACCEL2: |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 1081 | set_ioaccel2_performant_mode(h, c, reply_queue); |
Stephen Cameron | c05e886 | 2015-01-23 16:44:40 -0600 | [diff] [blame] | 1082 | writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1083 | break; |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 1084 | case IOACCEL2_TMF: |
| 1085 | set_ioaccel2_tmf_performant_mode(h, c, reply_queue); |
| 1086 | writel(c->busaddr, h->vaddr + IOACCEL2_INBOUND_POSTQ_32); |
| 1087 | break; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1088 | default: |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 1089 | set_performant_mode(h, c, reply_queue); |
Stephen Cameron | c05e886 | 2015-01-23 16:44:40 -0600 | [diff] [blame] | 1090 | h->access.submit_command(h, c); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 1091 | } |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 1092 | } |
| 1093 | |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 1094 | static void enqueue_cmd_and_start_io(struct ctlr_info *h, struct CommandList *c) |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 1095 | { |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 1096 | if (unlikely(hpsa_is_pending_event(c))) |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 1097 | return finish_cmd(c); |
| 1098 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 1099 | __enqueue_cmd_and_start_io(h, c, DEFAULT_REPLY_QUEUE); |
| 1100 | } |
| 1101 | |
Stephen M. Cameron | 3f5eac3 | 2011-03-09 17:00:01 -0600 | [diff] [blame] | 1102 | static inline int is_hba_lunid(unsigned char scsi3addr[]) |
| 1103 | { |
| 1104 | return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0; |
| 1105 | } |
| 1106 | |
| 1107 | static inline int is_scsi_rev_5(struct ctlr_info *h) |
| 1108 | { |
| 1109 | if (!h->hba_inquiry_data) |
| 1110 | return 0; |
| 1111 | if ((h->hba_inquiry_data[2] & 0x07) == 5) |
| 1112 | return 1; |
| 1113 | return 0; |
| 1114 | } |
| 1115 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1116 | static int hpsa_find_target_lun(struct ctlr_info *h, |
| 1117 | unsigned char scsi3addr[], int bus, int *target, int *lun) |
| 1118 | { |
| 1119 | /* finds an unused bus, target, lun for a new physical device |
| 1120 | * assumes h->devlock is held |
| 1121 | */ |
| 1122 | int i, found = 0; |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 1123 | DECLARE_BITMAP(lun_taken, HPSA_MAX_DEVICES); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1124 | |
Akinobu Mita | 263d940 | 2012-01-21 00:15:27 +0900 | [diff] [blame] | 1125 | bitmap_zero(lun_taken, HPSA_MAX_DEVICES); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1126 | |
| 1127 | for (i = 0; i < h->ndevices; i++) { |
| 1128 | if (h->dev[i]->bus == bus && h->dev[i]->target != -1) |
Akinobu Mita | 263d940 | 2012-01-21 00:15:27 +0900 | [diff] [blame] | 1129 | __set_bit(h->dev[i]->target, lun_taken); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1130 | } |
| 1131 | |
Akinobu Mita | 263d940 | 2012-01-21 00:15:27 +0900 | [diff] [blame] | 1132 | i = find_first_zero_bit(lun_taken, HPSA_MAX_DEVICES); |
| 1133 | if (i < HPSA_MAX_DEVICES) { |
| 1134 | /* *bus = 1; */ |
| 1135 | *target = i; |
| 1136 | *lun = 0; |
| 1137 | found = 1; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1138 | } |
| 1139 | return !found; |
| 1140 | } |
| 1141 | |
Don Brace | 1d33d85 | 2015-11-04 15:50:31 -0600 | [diff] [blame] | 1142 | static void hpsa_show_dev_msg(const char *level, struct ctlr_info *h, |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1143 | struct hpsa_scsi_dev_t *dev, char *description) |
| 1144 | { |
Don Brace | 9975ec9 | 2015-11-04 15:50:25 -0600 | [diff] [blame] | 1145 | if (h == NULL || h->pdev == NULL || h->scsi_host == NULL) |
| 1146 | return; |
| 1147 | |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1148 | dev_printk(level, &h->pdev->dev, |
| 1149 | "scsi %d:%d:%d:%d: %s %s %.8s %.16s RAID-%s SSDSmartPathCap%c En%c Exp=%d\n", |
| 1150 | h->scsi_host->host_no, dev->bus, dev->target, dev->lun, |
| 1151 | description, |
| 1152 | scsi_device_type(dev->devtype), |
| 1153 | dev->vendor, |
| 1154 | dev->model, |
| 1155 | dev->raid_level > RAID_UNKNOWN ? |
| 1156 | "RAID-?" : raid_label[dev->raid_level], |
| 1157 | dev->offload_config ? '+' : '-', |
| 1158 | dev->offload_enabled ? '+' : '-', |
Kevin Barnett | 2a16820 | 2015-11-04 15:51:21 -0600 | [diff] [blame] | 1159 | dev->expose_device); |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1160 | } |
| 1161 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1162 | /* Add an entry into h->dev[] array. */ |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1163 | static int hpsa_scsi_add_entry(struct ctlr_info *h, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1164 | struct hpsa_scsi_dev_t *device, |
| 1165 | struct hpsa_scsi_dev_t *added[], int *nadded) |
| 1166 | { |
| 1167 | /* assumes h->devlock is held */ |
| 1168 | int n = h->ndevices; |
| 1169 | int i; |
| 1170 | unsigned char addr1[8], addr2[8]; |
| 1171 | struct hpsa_scsi_dev_t *sd; |
| 1172 | |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 1173 | if (n >= HPSA_MAX_DEVICES) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1174 | dev_err(&h->pdev->dev, "too many devices, some will be " |
| 1175 | "inaccessible.\n"); |
| 1176 | return -1; |
| 1177 | } |
| 1178 | |
| 1179 | /* physical devices do not have lun or target assigned until now. */ |
| 1180 | if (device->lun != -1) |
| 1181 | /* Logical device, lun is already assigned. */ |
| 1182 | goto lun_assigned; |
| 1183 | |
| 1184 | /* If this device a non-zero lun of a multi-lun device |
| 1185 | * byte 4 of the 8-byte LUN addr will contain the logical |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 1186 | * unit no, zero otherwise. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1187 | */ |
| 1188 | if (device->scsi3addr[4] == 0) { |
| 1189 | /* This is not a non-zero lun of a multi-lun device */ |
| 1190 | if (hpsa_find_target_lun(h, device->scsi3addr, |
| 1191 | device->bus, &device->target, &device->lun) != 0) |
| 1192 | return -1; |
| 1193 | goto lun_assigned; |
| 1194 | } |
| 1195 | |
| 1196 | /* This is a non-zero lun of a multi-lun device. |
| 1197 | * Search through our list and find the device which |
shane.seymour | 9a4178b | 2015-07-18 11:13:09 -0500 | [diff] [blame] | 1198 | * has the same 8 byte LUN address, excepting byte 4 and 5. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1199 | * Assign the same bus and target for this new LUN. |
| 1200 | * Use the logical unit number from the firmware. |
| 1201 | */ |
| 1202 | memcpy(addr1, device->scsi3addr, 8); |
| 1203 | addr1[4] = 0; |
shane.seymour | 9a4178b | 2015-07-18 11:13:09 -0500 | [diff] [blame] | 1204 | addr1[5] = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1205 | for (i = 0; i < n; i++) { |
| 1206 | sd = h->dev[i]; |
| 1207 | memcpy(addr2, sd->scsi3addr, 8); |
| 1208 | addr2[4] = 0; |
shane.seymour | 9a4178b | 2015-07-18 11:13:09 -0500 | [diff] [blame] | 1209 | addr2[5] = 0; |
| 1210 | /* differ only in byte 4 and 5? */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1211 | if (memcmp(addr1, addr2, 8) == 0) { |
| 1212 | device->bus = sd->bus; |
| 1213 | device->target = sd->target; |
| 1214 | device->lun = device->scsi3addr[4]; |
| 1215 | break; |
| 1216 | } |
| 1217 | } |
| 1218 | if (device->lun == -1) { |
| 1219 | dev_warn(&h->pdev->dev, "physical device with no LUN=0," |
| 1220 | " suspect firmware bug or unsupported hardware " |
| 1221 | "configuration.\n"); |
| 1222 | return -1; |
| 1223 | } |
| 1224 | |
| 1225 | lun_assigned: |
| 1226 | |
| 1227 | h->dev[n] = device; |
| 1228 | h->ndevices++; |
| 1229 | added[*nadded] = device; |
| 1230 | (*nadded)++; |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1231 | hpsa_show_dev_msg(KERN_INFO, h, device, |
Kevin Barnett | 2a16820 | 2015-11-04 15:51:21 -0600 | [diff] [blame] | 1232 | device->expose_device ? "added" : "masked"); |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1233 | device->offload_to_be_enabled = device->offload_enabled; |
| 1234 | device->offload_enabled = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1235 | return 0; |
| 1236 | } |
| 1237 | |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1238 | /* Update an entry in h->dev[] array. */ |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1239 | static void hpsa_scsi_update_entry(struct ctlr_info *h, |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1240 | int entry, struct hpsa_scsi_dev_t *new_entry) |
| 1241 | { |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1242 | int offload_enabled; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1243 | /* assumes h->devlock is held */ |
| 1244 | BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES); |
| 1245 | |
| 1246 | /* Raid level changed. */ |
| 1247 | h->dev[entry]->raid_level = new_entry->raid_level; |
Stephen M. Cameron | 250fb12 | 2014-02-18 13:55:38 -0600 | [diff] [blame] | 1248 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1249 | /* Raid offload parameters changed. Careful about the ordering. */ |
| 1250 | if (new_entry->offload_config && new_entry->offload_enabled) { |
| 1251 | /* |
| 1252 | * if drive is newly offload_enabled, we want to copy the |
| 1253 | * raid map data first. If previously offload_enabled and |
| 1254 | * offload_config were set, raid map data had better be |
| 1255 | * the same as it was before. if raid map data is changed |
| 1256 | * then it had better be the case that |
| 1257 | * h->dev[entry]->offload_enabled is currently 0. |
| 1258 | */ |
| 1259 | h->dev[entry]->raid_map = new_entry->raid_map; |
| 1260 | h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1261 | } |
Joe Handzik | a3144e0 | 2015-04-23 09:32:59 -0500 | [diff] [blame] | 1262 | if (new_entry->hba_ioaccel_enabled) { |
| 1263 | h->dev[entry]->ioaccel_handle = new_entry->ioaccel_handle; |
| 1264 | wmb(); /* set ioaccel_handle *before* hba_ioaccel_enabled */ |
| 1265 | } |
| 1266 | h->dev[entry]->hba_ioaccel_enabled = new_entry->hba_ioaccel_enabled; |
Stephen M. Cameron | 250fb12 | 2014-02-18 13:55:38 -0600 | [diff] [blame] | 1267 | h->dev[entry]->offload_config = new_entry->offload_config; |
Stephen M. Cameron | 9fb0de2 | 2014-02-18 13:56:50 -0600 | [diff] [blame] | 1268 | h->dev[entry]->offload_to_mirror = new_entry->offload_to_mirror; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1269 | h->dev[entry]->queue_depth = new_entry->queue_depth; |
Stephen M. Cameron | 250fb12 | 2014-02-18 13:55:38 -0600 | [diff] [blame] | 1270 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1271 | /* |
| 1272 | * We can turn off ioaccel offload now, but need to delay turning |
| 1273 | * it on until we can update h->dev[entry]->phys_disk[], but we |
| 1274 | * can't do that until all the devices are updated. |
| 1275 | */ |
| 1276 | h->dev[entry]->offload_to_be_enabled = new_entry->offload_enabled; |
| 1277 | if (!new_entry->offload_enabled) |
| 1278 | h->dev[entry]->offload_enabled = 0; |
| 1279 | |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1280 | offload_enabled = h->dev[entry]->offload_enabled; |
| 1281 | h->dev[entry]->offload_enabled = h->dev[entry]->offload_to_be_enabled; |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1282 | hpsa_show_dev_msg(KERN_INFO, h, h->dev[entry], "updated"); |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1283 | h->dev[entry]->offload_enabled = offload_enabled; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1284 | } |
| 1285 | |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1286 | /* Replace an entry from h->dev[] array. */ |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1287 | static void hpsa_scsi_replace_entry(struct ctlr_info *h, |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1288 | int entry, struct hpsa_scsi_dev_t *new_entry, |
| 1289 | struct hpsa_scsi_dev_t *added[], int *nadded, |
| 1290 | struct hpsa_scsi_dev_t *removed[], int *nremoved) |
| 1291 | { |
| 1292 | /* assumes h->devlock is held */ |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 1293 | BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES); |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1294 | removed[*nremoved] = h->dev[entry]; |
| 1295 | (*nremoved)++; |
Stephen M. Cameron | 01350d0 | 2011-08-09 08:18:01 -0500 | [diff] [blame] | 1296 | |
| 1297 | /* |
| 1298 | * New physical devices won't have target/lun assigned yet |
| 1299 | * so we need to preserve the values in the slot we are replacing. |
| 1300 | */ |
| 1301 | if (new_entry->target == -1) { |
| 1302 | new_entry->target = h->dev[entry]->target; |
| 1303 | new_entry->lun = h->dev[entry]->lun; |
| 1304 | } |
| 1305 | |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1306 | h->dev[entry] = new_entry; |
| 1307 | added[*nadded] = new_entry; |
| 1308 | (*nadded)++; |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1309 | hpsa_show_dev_msg(KERN_INFO, h, new_entry, "replaced"); |
Robert Elliott | a473d86 | 2015-04-23 09:32:54 -0500 | [diff] [blame] | 1310 | new_entry->offload_to_be_enabled = new_entry->offload_enabled; |
| 1311 | new_entry->offload_enabled = 0; |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1312 | } |
| 1313 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1314 | /* Remove an entry from h->dev[] array. */ |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1315 | static void hpsa_scsi_remove_entry(struct ctlr_info *h, int entry, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1316 | struct hpsa_scsi_dev_t *removed[], int *nremoved) |
| 1317 | { |
| 1318 | /* assumes h->devlock is held */ |
| 1319 | int i; |
| 1320 | struct hpsa_scsi_dev_t *sd; |
| 1321 | |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 1322 | BUG_ON(entry < 0 || entry >= HPSA_MAX_DEVICES); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1323 | |
| 1324 | sd = h->dev[entry]; |
| 1325 | removed[*nremoved] = h->dev[entry]; |
| 1326 | (*nremoved)++; |
| 1327 | |
| 1328 | for (i = entry; i < h->ndevices-1; i++) |
| 1329 | h->dev[i] = h->dev[i+1]; |
| 1330 | h->ndevices--; |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1331 | hpsa_show_dev_msg(KERN_INFO, h, sd, "removed"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1332 | } |
| 1333 | |
| 1334 | #define SCSI3ADDR_EQ(a, b) ( \ |
| 1335 | (a)[7] == (b)[7] && \ |
| 1336 | (a)[6] == (b)[6] && \ |
| 1337 | (a)[5] == (b)[5] && \ |
| 1338 | (a)[4] == (b)[4] && \ |
| 1339 | (a)[3] == (b)[3] && \ |
| 1340 | (a)[2] == (b)[2] && \ |
| 1341 | (a)[1] == (b)[1] && \ |
| 1342 | (a)[0] == (b)[0]) |
| 1343 | |
| 1344 | static void fixup_botched_add(struct ctlr_info *h, |
| 1345 | struct hpsa_scsi_dev_t *added) |
| 1346 | { |
| 1347 | /* called when scsi_add_device fails in order to re-adjust |
| 1348 | * h->dev[] to match the mid layer's view. |
| 1349 | */ |
| 1350 | unsigned long flags; |
| 1351 | int i, j; |
| 1352 | |
| 1353 | spin_lock_irqsave(&h->lock, flags); |
| 1354 | for (i = 0; i < h->ndevices; i++) { |
| 1355 | if (h->dev[i] == added) { |
| 1356 | for (j = i; j < h->ndevices-1; j++) |
| 1357 | h->dev[j] = h->dev[j+1]; |
| 1358 | h->ndevices--; |
| 1359 | break; |
| 1360 | } |
| 1361 | } |
| 1362 | spin_unlock_irqrestore(&h->lock, flags); |
| 1363 | kfree(added); |
| 1364 | } |
| 1365 | |
| 1366 | static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1, |
| 1367 | struct hpsa_scsi_dev_t *dev2) |
| 1368 | { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1369 | /* we compare everything except lun and target as these |
| 1370 | * are not yet assigned. Compare parts likely |
| 1371 | * to differ first |
| 1372 | */ |
| 1373 | if (memcmp(dev1->scsi3addr, dev2->scsi3addr, |
| 1374 | sizeof(dev1->scsi3addr)) != 0) |
| 1375 | return 0; |
| 1376 | if (memcmp(dev1->device_id, dev2->device_id, |
| 1377 | sizeof(dev1->device_id)) != 0) |
| 1378 | return 0; |
| 1379 | if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0) |
| 1380 | return 0; |
| 1381 | if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0) |
| 1382 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1383 | if (dev1->devtype != dev2->devtype) |
| 1384 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1385 | if (dev1->bus != dev2->bus) |
| 1386 | return 0; |
| 1387 | return 1; |
| 1388 | } |
| 1389 | |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1390 | static inline int device_updated(struct hpsa_scsi_dev_t *dev1, |
| 1391 | struct hpsa_scsi_dev_t *dev2) |
| 1392 | { |
| 1393 | /* Device attributes that can change, but don't mean |
| 1394 | * that the device is a different device, nor that the OS |
| 1395 | * needs to be told anything about the change. |
| 1396 | */ |
| 1397 | if (dev1->raid_level != dev2->raid_level) |
| 1398 | return 1; |
Stephen M. Cameron | 250fb12 | 2014-02-18 13:55:38 -0600 | [diff] [blame] | 1399 | if (dev1->offload_config != dev2->offload_config) |
| 1400 | return 1; |
| 1401 | if (dev1->offload_enabled != dev2->offload_enabled) |
| 1402 | return 1; |
Don Brace | 9384950 | 2015-07-18 11:12:49 -0500 | [diff] [blame] | 1403 | if (!is_logical_dev_addr_mode(dev1->scsi3addr)) |
| 1404 | if (dev1->queue_depth != dev2->queue_depth) |
| 1405 | return 1; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1406 | return 0; |
| 1407 | } |
| 1408 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1409 | /* Find needle in haystack. If exact match found, return DEVICE_SAME, |
| 1410 | * and return needle location in *index. If scsi3addr matches, but not |
| 1411 | * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1412 | * location in *index. |
| 1413 | * In the case of a minor device attribute change, such as RAID level, just |
| 1414 | * return DEVICE_UPDATED, along with the updated device's location in index. |
| 1415 | * If needle not found, return DEVICE_NOT_FOUND. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1416 | */ |
| 1417 | static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle, |
| 1418 | struct hpsa_scsi_dev_t *haystack[], int haystack_size, |
| 1419 | int *index) |
| 1420 | { |
| 1421 | int i; |
| 1422 | #define DEVICE_NOT_FOUND 0 |
| 1423 | #define DEVICE_CHANGED 1 |
| 1424 | #define DEVICE_SAME 2 |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1425 | #define DEVICE_UPDATED 3 |
Don Brace | 1d33d85 | 2015-11-04 15:50:31 -0600 | [diff] [blame] | 1426 | if (needle == NULL) |
| 1427 | return DEVICE_NOT_FOUND; |
| 1428 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1429 | for (i = 0; i < haystack_size; i++) { |
Stephen M. Cameron | 2323104 | 2010-02-04 08:43:36 -0600 | [diff] [blame] | 1430 | if (haystack[i] == NULL) /* previously removed. */ |
| 1431 | continue; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1432 | if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) { |
| 1433 | *index = i; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1434 | if (device_is_the_same(needle, haystack[i])) { |
| 1435 | if (device_updated(needle, haystack[i])) |
| 1436 | return DEVICE_UPDATED; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1437 | return DEVICE_SAME; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1438 | } else { |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1439 | /* Keep offline devices offline */ |
| 1440 | if (needle->volume_offline) |
| 1441 | return DEVICE_NOT_FOUND; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1442 | return DEVICE_CHANGED; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1443 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1444 | } |
| 1445 | } |
| 1446 | *index = -1; |
| 1447 | return DEVICE_NOT_FOUND; |
| 1448 | } |
| 1449 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1450 | static void hpsa_monitor_offline_device(struct ctlr_info *h, |
| 1451 | unsigned char scsi3addr[]) |
| 1452 | { |
| 1453 | struct offline_device_entry *device; |
| 1454 | unsigned long flags; |
| 1455 | |
| 1456 | /* Check to see if device is already on the list */ |
| 1457 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 1458 | list_for_each_entry(device, &h->offline_device_list, offline_list) { |
| 1459 | if (memcmp(device->scsi3addr, scsi3addr, |
| 1460 | sizeof(device->scsi3addr)) == 0) { |
| 1461 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
| 1462 | return; |
| 1463 | } |
| 1464 | } |
| 1465 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
| 1466 | |
| 1467 | /* Device is not on the list, add it. */ |
| 1468 | device = kmalloc(sizeof(*device), GFP_KERNEL); |
| 1469 | if (!device) { |
| 1470 | dev_warn(&h->pdev->dev, "out of memory in %s\n", __func__); |
| 1471 | return; |
| 1472 | } |
| 1473 | memcpy(device->scsi3addr, scsi3addr, sizeof(device->scsi3addr)); |
| 1474 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 1475 | list_add_tail(&device->offline_list, &h->offline_device_list); |
| 1476 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
| 1477 | } |
| 1478 | |
| 1479 | /* Print a message explaining various offline volume states */ |
| 1480 | static void hpsa_show_volume_status(struct ctlr_info *h, |
| 1481 | struct hpsa_scsi_dev_t *sd) |
| 1482 | { |
| 1483 | if (sd->volume_offline == HPSA_VPD_LV_STATUS_UNSUPPORTED) |
| 1484 | dev_info(&h->pdev->dev, |
| 1485 | "C%d:B%d:T%d:L%d Volume status is not available through vital product data pages.\n", |
| 1486 | h->scsi_host->host_no, |
| 1487 | sd->bus, sd->target, sd->lun); |
| 1488 | switch (sd->volume_offline) { |
| 1489 | case HPSA_LV_OK: |
| 1490 | break; |
| 1491 | case HPSA_LV_UNDERGOING_ERASE: |
| 1492 | dev_info(&h->pdev->dev, |
| 1493 | "C%d:B%d:T%d:L%d Volume is undergoing background erase process.\n", |
| 1494 | h->scsi_host->host_no, |
| 1495 | sd->bus, sd->target, sd->lun); |
| 1496 | break; |
Scott Benesh | 5ca0120 | 2015-07-18 11:13:04 -0500 | [diff] [blame] | 1497 | case HPSA_LV_NOT_AVAILABLE: |
| 1498 | dev_info(&h->pdev->dev, |
| 1499 | "C%d:B%d:T%d:L%d Volume is waiting for transforming volume.\n", |
| 1500 | h->scsi_host->host_no, |
| 1501 | sd->bus, sd->target, sd->lun); |
| 1502 | break; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1503 | case HPSA_LV_UNDERGOING_RPI: |
| 1504 | dev_info(&h->pdev->dev, |
Scott Benesh | 5ca0120 | 2015-07-18 11:13:04 -0500 | [diff] [blame] | 1505 | "C%d:B%d:T%d:L%d Volume is undergoing rapid parity init.\n", |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1506 | h->scsi_host->host_no, |
| 1507 | sd->bus, sd->target, sd->lun); |
| 1508 | break; |
| 1509 | case HPSA_LV_PENDING_RPI: |
| 1510 | dev_info(&h->pdev->dev, |
Scott Benesh | 5ca0120 | 2015-07-18 11:13:04 -0500 | [diff] [blame] | 1511 | "C%d:B%d:T%d:L%d Volume is queued for rapid parity initialization process.\n", |
| 1512 | h->scsi_host->host_no, |
| 1513 | sd->bus, sd->target, sd->lun); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1514 | break; |
| 1515 | case HPSA_LV_ENCRYPTED_NO_KEY: |
| 1516 | dev_info(&h->pdev->dev, |
| 1517 | "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because key is not present.\n", |
| 1518 | h->scsi_host->host_no, |
| 1519 | sd->bus, sd->target, sd->lun); |
| 1520 | break; |
| 1521 | case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER: |
| 1522 | dev_info(&h->pdev->dev, |
| 1523 | "C%d:B%d:T%d:L%d Volume is not encrypted and cannot be accessed because controller is in encryption-only mode.\n", |
| 1524 | h->scsi_host->host_no, |
| 1525 | sd->bus, sd->target, sd->lun); |
| 1526 | break; |
| 1527 | case HPSA_LV_UNDERGOING_ENCRYPTION: |
| 1528 | dev_info(&h->pdev->dev, |
| 1529 | "C%d:B%d:T%d:L%d Volume is undergoing encryption process.\n", |
| 1530 | h->scsi_host->host_no, |
| 1531 | sd->bus, sd->target, sd->lun); |
| 1532 | break; |
| 1533 | case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING: |
| 1534 | dev_info(&h->pdev->dev, |
| 1535 | "C%d:B%d:T%d:L%d Volume is undergoing encryption re-keying process.\n", |
| 1536 | h->scsi_host->host_no, |
| 1537 | sd->bus, sd->target, sd->lun); |
| 1538 | break; |
| 1539 | case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER: |
| 1540 | dev_info(&h->pdev->dev, |
| 1541 | "C%d:B%d:T%d:L%d Volume is encrypted and cannot be accessed because controller does not have encryption enabled.\n", |
| 1542 | h->scsi_host->host_no, |
| 1543 | sd->bus, sd->target, sd->lun); |
| 1544 | break; |
| 1545 | case HPSA_LV_PENDING_ENCRYPTION: |
| 1546 | dev_info(&h->pdev->dev, |
| 1547 | "C%d:B%d:T%d:L%d Volume is pending migration to encrypted state, but process has not started.\n", |
| 1548 | h->scsi_host->host_no, |
| 1549 | sd->bus, sd->target, sd->lun); |
| 1550 | break; |
| 1551 | case HPSA_LV_PENDING_ENCRYPTION_REKEYING: |
| 1552 | dev_info(&h->pdev->dev, |
| 1553 | "C%d:B%d:T%d:L%d Volume is encrypted and is pending encryption rekeying.\n", |
| 1554 | h->scsi_host->host_no, |
| 1555 | sd->bus, sd->target, sd->lun); |
| 1556 | break; |
| 1557 | } |
| 1558 | } |
| 1559 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1560 | /* |
| 1561 | * Figure the list of physical drive pointers for a logical drive with |
| 1562 | * raid offload configured. |
| 1563 | */ |
| 1564 | static void hpsa_figure_phys_disk_ptrs(struct ctlr_info *h, |
| 1565 | struct hpsa_scsi_dev_t *dev[], int ndevices, |
| 1566 | struct hpsa_scsi_dev_t *logical_drive) |
| 1567 | { |
| 1568 | struct raid_map_data *map = &logical_drive->raid_map; |
| 1569 | struct raid_map_disk_data *dd = &map->data[0]; |
| 1570 | int i, j; |
| 1571 | int total_disks_per_row = le16_to_cpu(map->data_disks_per_row) + |
| 1572 | le16_to_cpu(map->metadata_disks_per_row); |
| 1573 | int nraid_map_entries = le16_to_cpu(map->row_cnt) * |
| 1574 | le16_to_cpu(map->layout_map_count) * |
| 1575 | total_disks_per_row; |
| 1576 | int nphys_disk = le16_to_cpu(map->layout_map_count) * |
| 1577 | total_disks_per_row; |
| 1578 | int qdepth; |
| 1579 | |
| 1580 | if (nraid_map_entries > RAID_MAP_MAX_ENTRIES) |
| 1581 | nraid_map_entries = RAID_MAP_MAX_ENTRIES; |
| 1582 | |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 1583 | logical_drive->nphysical_disks = nraid_map_entries; |
| 1584 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1585 | qdepth = 0; |
| 1586 | for (i = 0; i < nraid_map_entries; i++) { |
| 1587 | logical_drive->phys_disk[i] = NULL; |
| 1588 | if (!logical_drive->offload_config) |
| 1589 | continue; |
| 1590 | for (j = 0; j < ndevices; j++) { |
Don Brace | 1d33d85 | 2015-11-04 15:50:31 -0600 | [diff] [blame] | 1591 | if (dev[j] == NULL) |
| 1592 | continue; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1593 | if (dev[j]->devtype != TYPE_DISK) |
| 1594 | continue; |
Kevin Barnett | f3f0173 | 2015-11-04 15:51:33 -0600 | [diff] [blame] | 1595 | if (is_logical_device(dev[j])) |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1596 | continue; |
| 1597 | if (dev[j]->ioaccel_handle != dd[i].ioaccel_handle) |
| 1598 | continue; |
| 1599 | |
| 1600 | logical_drive->phys_disk[i] = dev[j]; |
| 1601 | if (i < nphys_disk) |
| 1602 | qdepth = min(h->nr_cmds, qdepth + |
| 1603 | logical_drive->phys_disk[i]->queue_depth); |
| 1604 | break; |
| 1605 | } |
| 1606 | |
| 1607 | /* |
| 1608 | * This can happen if a physical drive is removed and |
| 1609 | * the logical drive is degraded. In that case, the RAID |
| 1610 | * map data will refer to a physical disk which isn't actually |
| 1611 | * present. And in that case offload_enabled should already |
| 1612 | * be 0, but we'll turn it off here just in case |
| 1613 | */ |
| 1614 | if (!logical_drive->phys_disk[i]) { |
| 1615 | logical_drive->offload_enabled = 0; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1616 | logical_drive->offload_to_be_enabled = 0; |
| 1617 | logical_drive->queue_depth = 8; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1618 | } |
| 1619 | } |
| 1620 | if (nraid_map_entries) |
| 1621 | /* |
| 1622 | * This is correct for reads, too high for full stripe writes, |
| 1623 | * way too high for partial stripe writes |
| 1624 | */ |
| 1625 | logical_drive->queue_depth = qdepth; |
| 1626 | else |
| 1627 | logical_drive->queue_depth = h->nr_cmds; |
| 1628 | } |
| 1629 | |
| 1630 | static void hpsa_update_log_drive_phys_drive_ptrs(struct ctlr_info *h, |
| 1631 | struct hpsa_scsi_dev_t *dev[], int ndevices) |
| 1632 | { |
| 1633 | int i; |
| 1634 | |
| 1635 | for (i = 0; i < ndevices; i++) { |
Don Brace | 1d33d85 | 2015-11-04 15:50:31 -0600 | [diff] [blame] | 1636 | if (dev[i] == NULL) |
| 1637 | continue; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1638 | if (dev[i]->devtype != TYPE_DISK) |
| 1639 | continue; |
Kevin Barnett | f3f0173 | 2015-11-04 15:51:33 -0600 | [diff] [blame] | 1640 | if (!is_logical_device(dev[i])) |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1641 | continue; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1642 | |
| 1643 | /* |
| 1644 | * If offload is currently enabled, the RAID map and |
| 1645 | * phys_disk[] assignment *better* not be changing |
| 1646 | * and since it isn't changing, we do not need to |
| 1647 | * update it. |
| 1648 | */ |
| 1649 | if (dev[i]->offload_enabled) |
| 1650 | continue; |
| 1651 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1652 | hpsa_figure_phys_disk_ptrs(h, dev, ndevices, dev[i]); |
| 1653 | } |
| 1654 | } |
| 1655 | |
Kevin Barnett | 096ccff | 2015-11-04 15:51:51 -0600 | [diff] [blame^] | 1656 | static int hpsa_add_device(struct ctlr_info *h, struct hpsa_scsi_dev_t *device) |
| 1657 | { |
| 1658 | int rc = 0; |
| 1659 | |
| 1660 | if (!h->scsi_host) |
| 1661 | return 1; |
| 1662 | |
| 1663 | rc = scsi_add_device(h->scsi_host, device->bus, |
| 1664 | device->target, device->lun); |
| 1665 | return rc; |
| 1666 | } |
| 1667 | |
| 1668 | static void hpsa_remove_device(struct ctlr_info *h, |
| 1669 | struct hpsa_scsi_dev_t *device) |
| 1670 | { |
| 1671 | struct scsi_device *sdev = NULL; |
| 1672 | |
| 1673 | if (!h->scsi_host) |
| 1674 | return; |
| 1675 | |
| 1676 | sdev = scsi_device_lookup(h->scsi_host, device->bus, |
| 1677 | device->target, device->lun); |
| 1678 | |
| 1679 | if (sdev) { |
| 1680 | scsi_remove_device(sdev); |
| 1681 | scsi_device_put(sdev); |
| 1682 | } else { |
| 1683 | /* |
| 1684 | * We don't expect to get here. Future commands |
| 1685 | * to this device will get a selection timeout as |
| 1686 | * if the device were gone. |
| 1687 | */ |
| 1688 | hpsa_show_dev_msg(KERN_WARNING, h, device, |
| 1689 | "didn't find device for removal."); |
| 1690 | } |
| 1691 | } |
| 1692 | |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1693 | static void adjust_hpsa_scsi_table(struct ctlr_info *h, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1694 | struct hpsa_scsi_dev_t *sd[], int nsds) |
| 1695 | { |
| 1696 | /* sd contains scsi3 addresses and devtypes, and inquiry |
| 1697 | * data. This function takes what's in sd to be the current |
| 1698 | * reality and updates h->dev[] to reflect that reality. |
| 1699 | */ |
| 1700 | int i, entry, device_change, changes = 0; |
| 1701 | struct hpsa_scsi_dev_t *csd; |
| 1702 | unsigned long flags; |
| 1703 | struct hpsa_scsi_dev_t **added, **removed; |
| 1704 | int nadded, nremoved; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1705 | |
Don Brace | da03ded | 2015-11-04 15:50:56 -0600 | [diff] [blame] | 1706 | /* |
| 1707 | * A reset can cause a device status to change |
| 1708 | * re-schedule the scan to see what happened. |
| 1709 | */ |
| 1710 | if (h->reset_in_progress) { |
| 1711 | h->drv_req_rescan = 1; |
| 1712 | return; |
| 1713 | } |
| 1714 | |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 1715 | added = kzalloc(sizeof(*added) * HPSA_MAX_DEVICES, GFP_KERNEL); |
| 1716 | removed = kzalloc(sizeof(*removed) * HPSA_MAX_DEVICES, GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1717 | |
| 1718 | if (!added || !removed) { |
| 1719 | dev_warn(&h->pdev->dev, "out of memory in " |
| 1720 | "adjust_hpsa_scsi_table\n"); |
| 1721 | goto free_and_out; |
| 1722 | } |
| 1723 | |
| 1724 | spin_lock_irqsave(&h->devlock, flags); |
| 1725 | |
| 1726 | /* find any devices in h->dev[] that are not in |
| 1727 | * sd[] and remove them from h->dev[], and for any |
| 1728 | * devices which have changed, remove the old device |
| 1729 | * info and add the new device info. |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1730 | * If minor device attributes change, just update |
| 1731 | * the existing device structure. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1732 | */ |
| 1733 | i = 0; |
| 1734 | nremoved = 0; |
| 1735 | nadded = 0; |
| 1736 | while (i < h->ndevices) { |
| 1737 | csd = h->dev[i]; |
| 1738 | device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry); |
| 1739 | if (device_change == DEVICE_NOT_FOUND) { |
| 1740 | changes++; |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1741 | hpsa_scsi_remove_entry(h, i, removed, &nremoved); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1742 | continue; /* remove ^^^, hence i not incremented */ |
| 1743 | } else if (device_change == DEVICE_CHANGED) { |
| 1744 | changes++; |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1745 | hpsa_scsi_replace_entry(h, i, sd[entry], |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 1746 | added, &nadded, removed, &nremoved); |
Stephen M. Cameron | c7f172d | 2010-02-04 08:43:31 -0600 | [diff] [blame] | 1747 | /* Set it to NULL to prevent it from being freed |
| 1748 | * at the bottom of hpsa_update_scsi_devices() |
| 1749 | */ |
| 1750 | sd[entry] = NULL; |
Scott Teel | bd9244f | 2012-01-19 14:01:30 -0600 | [diff] [blame] | 1751 | } else if (device_change == DEVICE_UPDATED) { |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1752 | hpsa_scsi_update_entry(h, i, sd[entry]); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1753 | } |
| 1754 | i++; |
| 1755 | } |
| 1756 | |
| 1757 | /* Now, make sure every device listed in sd[] is also |
| 1758 | * listed in h->dev[], adding them if they aren't found |
| 1759 | */ |
| 1760 | |
| 1761 | for (i = 0; i < nsds; i++) { |
| 1762 | if (!sd[i]) /* if already added above. */ |
| 1763 | continue; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1764 | |
| 1765 | /* Don't add devices which are NOT READY, FORMAT IN PROGRESS |
| 1766 | * as the SCSI mid-layer does not handle such devices well. |
| 1767 | * It relentlessly loops sending TUR at 3Hz, then READ(10) |
| 1768 | * at 160Hz, and prevents the system from coming up. |
| 1769 | */ |
| 1770 | if (sd[i]->volume_offline) { |
| 1771 | hpsa_show_volume_status(h, sd[i]); |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 1772 | hpsa_show_dev_msg(KERN_INFO, h, sd[i], "offline"); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1773 | continue; |
| 1774 | } |
| 1775 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1776 | device_change = hpsa_scsi_find_entry(sd[i], h->dev, |
| 1777 | h->ndevices, &entry); |
| 1778 | if (device_change == DEVICE_NOT_FOUND) { |
| 1779 | changes++; |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1780 | if (hpsa_scsi_add_entry(h, sd[i], added, &nadded) != 0) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1781 | break; |
| 1782 | sd[i] = NULL; /* prevent from being freed later. */ |
| 1783 | } else if (device_change == DEVICE_CHANGED) { |
| 1784 | /* should never happen... */ |
| 1785 | changes++; |
| 1786 | dev_warn(&h->pdev->dev, |
| 1787 | "device unexpectedly changed.\n"); |
| 1788 | /* but if it does happen, we just ignore that device */ |
| 1789 | } |
| 1790 | } |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1791 | hpsa_update_log_drive_phys_drive_ptrs(h, h->dev, h->ndevices); |
| 1792 | |
| 1793 | /* Now that h->dev[]->phys_disk[] is coherent, we can enable |
| 1794 | * any logical drives that need it enabled. |
| 1795 | */ |
Don Brace | 1d33d85 | 2015-11-04 15:50:31 -0600 | [diff] [blame] | 1796 | for (i = 0; i < h->ndevices; i++) { |
| 1797 | if (h->dev[i] == NULL) |
| 1798 | continue; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1799 | h->dev[i]->offload_enabled = h->dev[i]->offload_to_be_enabled; |
Don Brace | 1d33d85 | 2015-11-04 15:50:31 -0600 | [diff] [blame] | 1800 | } |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1801 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1802 | spin_unlock_irqrestore(&h->devlock, flags); |
| 1803 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 1804 | /* Monitor devices which are in one of several NOT READY states to be |
| 1805 | * brought online later. This must be done without holding h->devlock, |
| 1806 | * so don't touch h->dev[] |
| 1807 | */ |
| 1808 | for (i = 0; i < nsds; i++) { |
| 1809 | if (!sd[i]) /* if already added above. */ |
| 1810 | continue; |
| 1811 | if (sd[i]->volume_offline) |
| 1812 | hpsa_monitor_offline_device(h, sd[i]->scsi3addr); |
| 1813 | } |
| 1814 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1815 | /* Don't notify scsi mid layer of any changes the first time through |
| 1816 | * (or if there are no changes) scsi_scan_host will do it later the |
| 1817 | * first time through. |
| 1818 | */ |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 1819 | if (!changes) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1820 | goto free_and_out; |
| 1821 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1822 | /* Notify scsi mid layer of any removed devices */ |
| 1823 | for (i = 0; i < nremoved; i++) { |
Don Brace | 1d33d85 | 2015-11-04 15:50:31 -0600 | [diff] [blame] | 1824 | if (removed[i] == NULL) |
| 1825 | continue; |
Kevin Barnett | 096ccff | 2015-11-04 15:51:51 -0600 | [diff] [blame^] | 1826 | if (removed[i]->expose_device) |
| 1827 | hpsa_remove_device(h, removed[i]); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1828 | kfree(removed[i]); |
| 1829 | removed[i] = NULL; |
| 1830 | } |
| 1831 | |
| 1832 | /* Notify scsi mid layer of any added devices */ |
| 1833 | for (i = 0; i < nadded; i++) { |
Kevin Barnett | 096ccff | 2015-11-04 15:51:51 -0600 | [diff] [blame^] | 1834 | int rc = 0; |
| 1835 | |
Don Brace | 1d33d85 | 2015-11-04 15:50:31 -0600 | [diff] [blame] | 1836 | if (added[i] == NULL) |
| 1837 | continue; |
Kevin Barnett | 2a16820 | 2015-11-04 15:51:21 -0600 | [diff] [blame] | 1838 | if (!(added[i]->expose_device)) |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1839 | continue; |
Kevin Barnett | 096ccff | 2015-11-04 15:51:51 -0600 | [diff] [blame^] | 1840 | rc = hpsa_add_device(h, added[i]); |
| 1841 | if (!rc) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1842 | continue; |
Kevin Barnett | 096ccff | 2015-11-04 15:51:51 -0600 | [diff] [blame^] | 1843 | dev_warn(&h->pdev->dev, |
| 1844 | "addition failed %d, device not added.", rc); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1845 | /* now we have to remove it from h->dev, |
| 1846 | * since it didn't get added to scsi mid layer |
| 1847 | */ |
| 1848 | fixup_botched_add(h, added[i]); |
Don Brace | 853633e | 2015-11-04 15:50:37 -0600 | [diff] [blame] | 1849 | h->drv_req_rescan = 1; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1850 | } |
| 1851 | |
| 1852 | free_and_out: |
| 1853 | kfree(added); |
| 1854 | kfree(removed); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1855 | } |
| 1856 | |
| 1857 | /* |
Joe Perches | 9e03aa2 | 2013-09-03 13:45:58 -0700 | [diff] [blame] | 1858 | * 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] | 1859 | * Assume's h->devlock is held. |
| 1860 | */ |
| 1861 | static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h, |
| 1862 | int bus, int target, int lun) |
| 1863 | { |
| 1864 | int i; |
| 1865 | struct hpsa_scsi_dev_t *sd; |
| 1866 | |
| 1867 | for (i = 0; i < h->ndevices; i++) { |
| 1868 | sd = h->dev[i]; |
| 1869 | if (sd->bus == bus && sd->target == target && sd->lun == lun) |
| 1870 | return sd; |
| 1871 | } |
| 1872 | return NULL; |
| 1873 | } |
| 1874 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1875 | static int hpsa_slave_alloc(struct scsi_device *sdev) |
| 1876 | { |
| 1877 | struct hpsa_scsi_dev_t *sd; |
| 1878 | unsigned long flags; |
| 1879 | struct ctlr_info *h; |
| 1880 | |
| 1881 | h = sdev_to_hba(sdev); |
| 1882 | spin_lock_irqsave(&h->devlock, flags); |
| 1883 | sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev), |
| 1884 | sdev_id(sdev), sdev->lun); |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1885 | if (likely(sd)) { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 1886 | atomic_set(&sd->ioaccel_cmds_out, 0); |
Kevin Barnett | 2a16820 | 2015-11-04 15:51:21 -0600 | [diff] [blame] | 1887 | sdev->hostdata = sd->expose_device ? sd : NULL; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1888 | } else |
| 1889 | sdev->hostdata = NULL; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1890 | spin_unlock_irqrestore(&h->devlock, flags); |
| 1891 | return 0; |
| 1892 | } |
| 1893 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1894 | /* configure scsi device based on internal per-device structure */ |
| 1895 | static int hpsa_slave_configure(struct scsi_device *sdev) |
| 1896 | { |
| 1897 | struct hpsa_scsi_dev_t *sd; |
| 1898 | int queue_depth; |
| 1899 | |
| 1900 | sd = sdev->hostdata; |
Kevin Barnett | 2a16820 | 2015-11-04 15:51:21 -0600 | [diff] [blame] | 1901 | sdev->no_uld_attach = !sd || !sd->expose_device; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 1902 | |
| 1903 | if (sd) |
| 1904 | queue_depth = sd->queue_depth != 0 ? |
| 1905 | sd->queue_depth : sdev->host->can_queue; |
| 1906 | else |
| 1907 | queue_depth = sdev->host->can_queue; |
| 1908 | |
| 1909 | scsi_change_queue_depth(sdev, queue_depth); |
| 1910 | |
| 1911 | return 0; |
| 1912 | } |
| 1913 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1914 | static void hpsa_slave_destroy(struct scsi_device *sdev) |
| 1915 | { |
Stephen M. Cameron | bcc4425 | 2010-02-04 08:41:54 -0600 | [diff] [blame] | 1916 | /* nothing to do. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1917 | } |
| 1918 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 1919 | static void hpsa_free_ioaccel2_sg_chain_blocks(struct ctlr_info *h) |
| 1920 | { |
| 1921 | int i; |
| 1922 | |
| 1923 | if (!h->ioaccel2_cmd_sg_list) |
| 1924 | return; |
| 1925 | for (i = 0; i < h->nr_cmds; i++) { |
| 1926 | kfree(h->ioaccel2_cmd_sg_list[i]); |
| 1927 | h->ioaccel2_cmd_sg_list[i] = NULL; |
| 1928 | } |
| 1929 | kfree(h->ioaccel2_cmd_sg_list); |
| 1930 | h->ioaccel2_cmd_sg_list = NULL; |
| 1931 | } |
| 1932 | |
| 1933 | static int hpsa_allocate_ioaccel2_sg_chain_blocks(struct ctlr_info *h) |
| 1934 | { |
| 1935 | int i; |
| 1936 | |
| 1937 | if (h->chainsize <= 0) |
| 1938 | return 0; |
| 1939 | |
| 1940 | h->ioaccel2_cmd_sg_list = |
| 1941 | kzalloc(sizeof(*h->ioaccel2_cmd_sg_list) * h->nr_cmds, |
| 1942 | GFP_KERNEL); |
| 1943 | if (!h->ioaccel2_cmd_sg_list) |
| 1944 | return -ENOMEM; |
| 1945 | for (i = 0; i < h->nr_cmds; i++) { |
| 1946 | h->ioaccel2_cmd_sg_list[i] = |
| 1947 | kmalloc(sizeof(*h->ioaccel2_cmd_sg_list[i]) * |
| 1948 | h->maxsgentries, GFP_KERNEL); |
| 1949 | if (!h->ioaccel2_cmd_sg_list[i]) |
| 1950 | goto clean; |
| 1951 | } |
| 1952 | return 0; |
| 1953 | |
| 1954 | clean: |
| 1955 | hpsa_free_ioaccel2_sg_chain_blocks(h); |
| 1956 | return -ENOMEM; |
| 1957 | } |
| 1958 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1959 | static void hpsa_free_sg_chain_blocks(struct ctlr_info *h) |
| 1960 | { |
| 1961 | int i; |
| 1962 | |
| 1963 | if (!h->cmd_sg_list) |
| 1964 | return; |
| 1965 | for (i = 0; i < h->nr_cmds; i++) { |
| 1966 | kfree(h->cmd_sg_list[i]); |
| 1967 | h->cmd_sg_list[i] = NULL; |
| 1968 | } |
| 1969 | kfree(h->cmd_sg_list); |
| 1970 | h->cmd_sg_list = NULL; |
| 1971 | } |
| 1972 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 1973 | static int hpsa_alloc_sg_chain_blocks(struct ctlr_info *h) |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1974 | { |
| 1975 | int i; |
| 1976 | |
| 1977 | if (h->chainsize <= 0) |
| 1978 | return 0; |
| 1979 | |
| 1980 | h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds, |
| 1981 | GFP_KERNEL); |
Robert Elliott | 3d4e6af | 2015-01-23 16:42:42 -0600 | [diff] [blame] | 1982 | if (!h->cmd_sg_list) { |
| 1983 | dev_err(&h->pdev->dev, "Failed to allocate SG list\n"); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1984 | return -ENOMEM; |
Robert Elliott | 3d4e6af | 2015-01-23 16:42:42 -0600 | [diff] [blame] | 1985 | } |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1986 | for (i = 0; i < h->nr_cmds; i++) { |
| 1987 | h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) * |
| 1988 | h->chainsize, GFP_KERNEL); |
Robert Elliott | 3d4e6af | 2015-01-23 16:42:42 -0600 | [diff] [blame] | 1989 | if (!h->cmd_sg_list[i]) { |
| 1990 | dev_err(&h->pdev->dev, "Failed to allocate cmd SG\n"); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1991 | goto clean; |
Robert Elliott | 3d4e6af | 2015-01-23 16:42:42 -0600 | [diff] [blame] | 1992 | } |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1993 | } |
| 1994 | return 0; |
| 1995 | |
| 1996 | clean: |
| 1997 | hpsa_free_sg_chain_blocks(h); |
| 1998 | return -ENOMEM; |
| 1999 | } |
| 2000 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 2001 | static int hpsa_map_ioaccel2_sg_chain_block(struct ctlr_info *h, |
| 2002 | struct io_accel2_cmd *cp, struct CommandList *c) |
| 2003 | { |
| 2004 | struct ioaccel2_sg_element *chain_block; |
| 2005 | u64 temp64; |
| 2006 | u32 chain_size; |
| 2007 | |
| 2008 | chain_block = h->ioaccel2_cmd_sg_list[c->cmdindex]; |
Don Brace | a736e9b | 2015-11-04 15:51:14 -0600 | [diff] [blame] | 2009 | chain_size = le32_to_cpu(cp->sg[0].length); |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 2010 | temp64 = pci_map_single(h->pdev, chain_block, chain_size, |
| 2011 | PCI_DMA_TODEVICE); |
| 2012 | if (dma_mapping_error(&h->pdev->dev, temp64)) { |
| 2013 | /* prevent subsequent unmapping */ |
| 2014 | cp->sg->address = 0; |
| 2015 | return -1; |
| 2016 | } |
| 2017 | cp->sg->address = cpu_to_le64(temp64); |
| 2018 | return 0; |
| 2019 | } |
| 2020 | |
| 2021 | static void hpsa_unmap_ioaccel2_sg_chain_block(struct ctlr_info *h, |
| 2022 | struct io_accel2_cmd *cp) |
| 2023 | { |
| 2024 | struct ioaccel2_sg_element *chain_sg; |
| 2025 | u64 temp64; |
| 2026 | u32 chain_size; |
| 2027 | |
| 2028 | chain_sg = cp->sg; |
| 2029 | temp64 = le64_to_cpu(chain_sg->address); |
Don Brace | a736e9b | 2015-11-04 15:51:14 -0600 | [diff] [blame] | 2030 | chain_size = le32_to_cpu(cp->sg[0].length); |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 2031 | pci_unmap_single(h->pdev, temp64, chain_size, PCI_DMA_TODEVICE); |
| 2032 | } |
| 2033 | |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 2034 | static int hpsa_map_sg_chain_block(struct ctlr_info *h, |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 2035 | struct CommandList *c) |
| 2036 | { |
| 2037 | struct SGDescriptor *chain_sg, *chain_block; |
| 2038 | u64 temp64; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2039 | u32 chain_len; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 2040 | |
| 2041 | chain_sg = &c->SG[h->max_cmd_sg_entries - 1]; |
| 2042 | chain_block = h->cmd_sg_list[c->cmdindex]; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2043 | chain_sg->Ext = cpu_to_le32(HPSA_SG_CHAIN); |
| 2044 | chain_len = sizeof(*chain_sg) * |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 2045 | (le16_to_cpu(c->Header.SGTotal) - h->max_cmd_sg_entries); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2046 | chain_sg->Len = cpu_to_le32(chain_len); |
| 2047 | temp64 = pci_map_single(h->pdev, chain_block, chain_len, |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 2048 | PCI_DMA_TODEVICE); |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 2049 | if (dma_mapping_error(&h->pdev->dev, temp64)) { |
| 2050 | /* prevent subsequent unmapping */ |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2051 | chain_sg->Addr = cpu_to_le64(0); |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 2052 | return -1; |
| 2053 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2054 | chain_sg->Addr = cpu_to_le64(temp64); |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 2055 | return 0; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 2056 | } |
| 2057 | |
| 2058 | static void hpsa_unmap_sg_chain_block(struct ctlr_info *h, |
| 2059 | struct CommandList *c) |
| 2060 | { |
| 2061 | struct SGDescriptor *chain_sg; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 2062 | |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2063 | 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] | 2064 | return; |
| 2065 | |
| 2066 | chain_sg = &c->SG[h->max_cmd_sg_entries - 1]; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2067 | pci_unmap_single(h->pdev, le64_to_cpu(chain_sg->Addr), |
| 2068 | le32_to_cpu(chain_sg->Len), PCI_DMA_TODEVICE); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 2069 | } |
| 2070 | |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2071 | |
| 2072 | /* Decode the various types of errors on ioaccel2 path. |
| 2073 | * Return 1 for any error that should generate a RAID path retry. |
| 2074 | * Return 0 for errors that don't require a RAID path retry. |
| 2075 | */ |
| 2076 | static int handle_ioaccel_mode2_error(struct ctlr_info *h, |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2077 | struct CommandList *c, |
| 2078 | struct scsi_cmnd *cmd, |
| 2079 | struct io_accel2_cmd *c2) |
| 2080 | { |
| 2081 | int data_len; |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2082 | int retry = 0; |
Joe Handzik | c40820d | 2015-04-23 09:33:32 -0500 | [diff] [blame] | 2083 | u32 ioaccel2_resid = 0; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2084 | |
| 2085 | switch (c2->error_data.serv_response) { |
| 2086 | case IOACCEL2_SERV_RESPONSE_COMPLETE: |
| 2087 | switch (c2->error_data.status) { |
| 2088 | case IOACCEL2_STATUS_SR_TASK_COMP_GOOD: |
| 2089 | break; |
| 2090 | case IOACCEL2_STATUS_SR_TASK_COMP_CHK_COND: |
Stephen M. Cameron | ee6b188 | 2014-05-29 10:53:54 -0500 | [diff] [blame] | 2091 | cmd->result |= SAM_STAT_CHECK_CONDITION; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2092 | if (c2->error_data.data_present != |
Stephen M. Cameron | ee6b188 | 2014-05-29 10:53:54 -0500 | [diff] [blame] | 2093 | IOACCEL2_SENSE_DATA_PRESENT) { |
| 2094 | memset(cmd->sense_buffer, 0, |
| 2095 | SCSI_SENSE_BUFFERSIZE); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2096 | break; |
Stephen M. Cameron | ee6b188 | 2014-05-29 10:53:54 -0500 | [diff] [blame] | 2097 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2098 | /* copy the sense data */ |
| 2099 | data_len = c2->error_data.sense_data_len; |
| 2100 | if (data_len > SCSI_SENSE_BUFFERSIZE) |
| 2101 | data_len = SCSI_SENSE_BUFFERSIZE; |
| 2102 | if (data_len > sizeof(c2->error_data.sense_data_buff)) |
| 2103 | data_len = |
| 2104 | sizeof(c2->error_data.sense_data_buff); |
| 2105 | memcpy(cmd->sense_buffer, |
| 2106 | c2->error_data.sense_data_buff, data_len); |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2107 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2108 | break; |
| 2109 | case IOACCEL2_STATUS_SR_TASK_COMP_BUSY: |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2110 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2111 | break; |
| 2112 | case IOACCEL2_STATUS_SR_TASK_COMP_RES_CON: |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2113 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2114 | break; |
| 2115 | case IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL: |
Stephen Cameron | 4a8da22 | 2015-04-23 09:32:43 -0500 | [diff] [blame] | 2116 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2117 | break; |
| 2118 | case IOACCEL2_STATUS_SR_TASK_COMP_ABORTED: |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2119 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2120 | break; |
| 2121 | default: |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2122 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2123 | break; |
| 2124 | } |
| 2125 | break; |
| 2126 | case IOACCEL2_SERV_RESPONSE_FAILURE: |
Joe Handzik | c40820d | 2015-04-23 09:33:32 -0500 | [diff] [blame] | 2127 | switch (c2->error_data.status) { |
| 2128 | case IOACCEL2_STATUS_SR_IO_ERROR: |
| 2129 | case IOACCEL2_STATUS_SR_IO_ABORTED: |
| 2130 | case IOACCEL2_STATUS_SR_OVERRUN: |
| 2131 | retry = 1; |
| 2132 | break; |
| 2133 | case IOACCEL2_STATUS_SR_UNDERRUN: |
| 2134 | cmd->result = (DID_OK << 16); /* host byte */ |
| 2135 | cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */ |
| 2136 | ioaccel2_resid = get_unaligned_le32( |
| 2137 | &c2->error_data.resid_cnt[0]); |
| 2138 | scsi_set_resid(cmd, ioaccel2_resid); |
| 2139 | break; |
| 2140 | case IOACCEL2_STATUS_SR_NO_PATH_TO_DEVICE: |
| 2141 | case IOACCEL2_STATUS_SR_INVALID_DEVICE: |
| 2142 | case IOACCEL2_STATUS_SR_IOACCEL_DISABLED: |
| 2143 | /* We will get an event from ctlr to trigger rescan */ |
| 2144 | retry = 1; |
| 2145 | break; |
| 2146 | default: |
| 2147 | retry = 1; |
Joe Handzik | c40820d | 2015-04-23 09:33:32 -0500 | [diff] [blame] | 2148 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2149 | break; |
| 2150 | case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE: |
| 2151 | break; |
| 2152 | case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS: |
| 2153 | break; |
| 2154 | case IOACCEL2_SERV_RESPONSE_TMF_REJECTED: |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2155 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2156 | break; |
| 2157 | case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN: |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2158 | break; |
| 2159 | default: |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2160 | retry = 1; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2161 | break; |
| 2162 | } |
Scott Teel | a09c144 | 2014-02-18 13:57:21 -0600 | [diff] [blame] | 2163 | |
| 2164 | return retry; /* retry on raid path? */ |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2165 | } |
| 2166 | |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2167 | static void hpsa_cmd_resolve_events(struct ctlr_info *h, |
| 2168 | struct CommandList *c) |
| 2169 | { |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 2170 | bool do_wake = false; |
| 2171 | |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2172 | /* |
| 2173 | * Prevent the following race in the abort handler: |
| 2174 | * |
| 2175 | * 1. LLD is requested to abort a SCSI command |
| 2176 | * 2. The SCSI command completes |
| 2177 | * 3. The struct CommandList associated with step 2 is made available |
| 2178 | * 4. New I/O request to LLD to another LUN re-uses struct CommandList |
| 2179 | * 5. Abort handler follows scsi_cmnd->host_scribble and |
| 2180 | * finds struct CommandList and tries to aborts it |
| 2181 | * Now we have aborted the wrong command. |
| 2182 | * |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 2183 | * Reset c->scsi_cmd here so that the abort or reset handler will know |
| 2184 | * this command has completed. Then, check to see if the handler is |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2185 | * waiting for this command, and, if so, wake it. |
| 2186 | */ |
| 2187 | c->scsi_cmd = SCSI_CMD_IDLE; |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 2188 | mb(); /* Declare command idle before checking for pending events. */ |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2189 | if (c->abort_pending) { |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 2190 | do_wake = true; |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2191 | c->abort_pending = false; |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2192 | } |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 2193 | if (c->reset_pending) { |
| 2194 | unsigned long flags; |
| 2195 | struct hpsa_scsi_dev_t *dev; |
| 2196 | |
| 2197 | /* |
| 2198 | * There appears to be a reset pending; lock the lock and |
| 2199 | * reconfirm. If so, then decrement the count of outstanding |
| 2200 | * commands and wake the reset command if this is the last one. |
| 2201 | */ |
| 2202 | spin_lock_irqsave(&h->lock, flags); |
| 2203 | dev = c->reset_pending; /* Re-fetch under the lock. */ |
| 2204 | if (dev && atomic_dec_and_test(&dev->reset_cmds_out)) |
| 2205 | do_wake = true; |
| 2206 | c->reset_pending = NULL; |
| 2207 | spin_unlock_irqrestore(&h->lock, flags); |
| 2208 | } |
| 2209 | |
| 2210 | if (do_wake) |
| 2211 | wake_up_all(&h->event_sync_wait_queue); |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2212 | } |
| 2213 | |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 2214 | static void hpsa_cmd_resolve_and_free(struct ctlr_info *h, |
| 2215 | struct CommandList *c) |
| 2216 | { |
| 2217 | hpsa_cmd_resolve_events(h, c); |
| 2218 | cmd_tagged_free(h, c); |
| 2219 | } |
| 2220 | |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2221 | static void hpsa_cmd_free_and_done(struct ctlr_info *h, |
| 2222 | struct CommandList *c, struct scsi_cmnd *cmd) |
| 2223 | { |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 2224 | hpsa_cmd_resolve_and_free(h, c); |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2225 | cmd->scsi_done(cmd); |
| 2226 | } |
| 2227 | |
| 2228 | static void hpsa_retry_cmd(struct ctlr_info *h, struct CommandList *c) |
| 2229 | { |
| 2230 | INIT_WORK(&c->work, hpsa_command_resubmit_worker); |
| 2231 | queue_work_on(raw_smp_processor_id(), h->resubmit_wq, &c->work); |
| 2232 | } |
| 2233 | |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2234 | static void hpsa_set_scsi_cmd_aborted(struct scsi_cmnd *cmd) |
| 2235 | { |
| 2236 | cmd->result = DID_ABORT << 16; |
| 2237 | } |
| 2238 | |
| 2239 | static void hpsa_cmd_abort_and_free(struct ctlr_info *h, struct CommandList *c, |
| 2240 | struct scsi_cmnd *cmd) |
| 2241 | { |
| 2242 | hpsa_set_scsi_cmd_aborted(cmd); |
| 2243 | dev_warn(&h->pdev->dev, "CDB %16phN was aborted with status 0x%x\n", |
| 2244 | c->Request.CDB, c->err_info->ScsiStatus); |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 2245 | hpsa_cmd_resolve_and_free(h, c); |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2246 | } |
| 2247 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2248 | static void process_ioaccel2_completion(struct ctlr_info *h, |
| 2249 | struct CommandList *c, struct scsi_cmnd *cmd, |
| 2250 | struct hpsa_scsi_dev_t *dev) |
| 2251 | { |
| 2252 | struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 2253 | |
| 2254 | /* check for good status */ |
| 2255 | if (likely(c2->error_data.serv_response == 0 && |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2256 | c2->error_data.status == 0)) |
| 2257 | return hpsa_cmd_free_and_done(h, c, cmd); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2258 | |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2259 | /* |
| 2260 | * Any RAID offload error results in retry which will use |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2261 | * the normal I/O path so the controller can handle whatever's |
| 2262 | * wrong. |
| 2263 | */ |
Kevin Barnett | f3f0173 | 2015-11-04 15:51:33 -0600 | [diff] [blame] | 2264 | if (is_logical_device(dev) && |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2265 | c2->error_data.serv_response == |
| 2266 | IOACCEL2_SERV_RESPONSE_FAILURE) { |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 2267 | if (c2->error_data.status == |
| 2268 | IOACCEL2_STATUS_SR_IOACCEL_DISABLED) |
| 2269 | dev->offload_enabled = 0; |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2270 | |
| 2271 | return hpsa_retry_cmd(h, c); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2272 | } |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 2273 | |
| 2274 | if (handle_ioaccel_mode2_error(h, c, cmd, c2)) |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2275 | return hpsa_retry_cmd(h, c); |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 2276 | |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2277 | return hpsa_cmd_free_and_done(h, c, cmd); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2278 | } |
| 2279 | |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2280 | /* Returns 0 on success, < 0 otherwise. */ |
| 2281 | static int hpsa_evaluate_tmf_status(struct ctlr_info *h, |
| 2282 | struct CommandList *cp) |
| 2283 | { |
| 2284 | u8 tmf_status = cp->err_info->ScsiStatus; |
| 2285 | |
| 2286 | switch (tmf_status) { |
| 2287 | case CISS_TMF_COMPLETE: |
| 2288 | /* |
| 2289 | * CISS_TMF_COMPLETE never happens, instead, |
| 2290 | * ei->CommandStatus == 0 for this case. |
| 2291 | */ |
| 2292 | case CISS_TMF_SUCCESS: |
| 2293 | return 0; |
| 2294 | case CISS_TMF_INVALID_FRAME: |
| 2295 | case CISS_TMF_NOT_SUPPORTED: |
| 2296 | case CISS_TMF_FAILED: |
| 2297 | case CISS_TMF_WRONG_LUN: |
| 2298 | case CISS_TMF_OVERLAPPED_TAG: |
| 2299 | break; |
| 2300 | default: |
| 2301 | dev_warn(&h->pdev->dev, "Unknown TMF status: 0x%02x\n", |
| 2302 | tmf_status); |
| 2303 | break; |
| 2304 | } |
| 2305 | return -tmf_status; |
| 2306 | } |
| 2307 | |
Stephen M. Cameron | 1fb011f | 2011-05-03 14:59:00 -0500 | [diff] [blame] | 2308 | static void complete_scsi_command(struct CommandList *cp) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2309 | { |
| 2310 | struct scsi_cmnd *cmd; |
| 2311 | struct ctlr_info *h; |
| 2312 | struct ErrorInfo *ei; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2313 | struct hpsa_scsi_dev_t *dev; |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 2314 | struct io_accel2_cmd *c2; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2315 | |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2316 | u8 sense_key; |
| 2317 | u8 asc; /* additional sense code */ |
| 2318 | u8 ascq; /* additional sense code qualifier */ |
Stephen M. Cameron | db111e1 | 2011-06-03 09:57:34 -0500 | [diff] [blame] | 2319 | unsigned long sense_data_size; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2320 | |
| 2321 | ei = cp->err_info; |
Stephen Cameron | 7fa3030 | 2015-01-23 16:44:30 -0600 | [diff] [blame] | 2322 | cmd = cp->scsi_cmd; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2323 | h = cp->h; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2324 | dev = cmd->device->hostdata; |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 2325 | c2 = &h->ioaccel2_cmd_pool[cp->cmdindex]; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2326 | |
| 2327 | scsi_dma_unmap(cmd); /* undo the DMA mappings */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 2328 | if ((cp->cmd_type == CMD_SCSI) && |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 2329 | (le16_to_cpu(cp->Header.SGTotal) > h->max_cmd_sg_entries)) |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 2330 | hpsa_unmap_sg_chain_block(h, cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2331 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 2332 | if ((cp->cmd_type == CMD_IOACCEL2) && |
| 2333 | (c2->sg[0].chain_indicator == IOACCEL2_CHAIN)) |
| 2334 | hpsa_unmap_ioaccel2_sg_chain_block(h, c2); |
| 2335 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2336 | cmd->result = (DID_OK << 16); /* host byte */ |
| 2337 | cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */ |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2338 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 2339 | if (cp->cmd_type == CMD_IOACCEL2 || cp->cmd_type == CMD_IOACCEL1) |
| 2340 | atomic_dec(&cp->phys_disk->ioaccel_cmds_out); |
| 2341 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2342 | /* |
| 2343 | * We check for lockup status here as it may be set for |
| 2344 | * CMD_SCSI, CMD_IOACCEL1 and CMD_IOACCEL2 commands by |
| 2345 | * fail_all_oustanding_cmds() |
| 2346 | */ |
| 2347 | if (unlikely(ei->CommandStatus == CMD_CTLR_LOCKUP)) { |
| 2348 | /* DID_NO_CONNECT will prevent a retry */ |
| 2349 | cmd->result = DID_NO_CONNECT << 16; |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2350 | return hpsa_cmd_free_and_done(h, cp, cmd); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2351 | } |
| 2352 | |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 2353 | if ((unlikely(hpsa_is_pending_event(cp)))) { |
| 2354 | if (cp->reset_pending) |
| 2355 | return hpsa_cmd_resolve_and_free(h, cp); |
| 2356 | if (cp->abort_pending) |
| 2357 | return hpsa_cmd_abort_and_free(h, cp, cmd); |
| 2358 | } |
| 2359 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 2360 | if (cp->cmd_type == CMD_IOACCEL2) |
| 2361 | return process_ioaccel2_completion(h, cp, cmd, dev); |
| 2362 | |
Robert Elliott | 6aa4c36 | 2014-07-03 10:18:19 -0500 | [diff] [blame] | 2363 | scsi_set_resid(cmd, ei->ResidualCnt); |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2364 | if (ei->CommandStatus == 0) |
| 2365 | return hpsa_cmd_free_and_done(h, cp, cmd); |
Robert Elliott | 6aa4c36 | 2014-07-03 10:18:19 -0500 | [diff] [blame] | 2366 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 2367 | /* For I/O accelerator commands, copy over some fields to the normal |
| 2368 | * CISS header used below for error handling. |
| 2369 | */ |
| 2370 | if (cp->cmd_type == CMD_IOACCEL1) { |
| 2371 | struct io_accel1_cmd *c = &h->ioaccel_cmd_pool[cp->cmdindex]; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 2372 | cp->Header.SGList = scsi_sg_count(cmd); |
| 2373 | cp->Header.SGTotal = cpu_to_le16(cp->Header.SGList); |
| 2374 | cp->Request.CDBLen = le16_to_cpu(c->io_flags) & |
| 2375 | IOACCEL1_IOFLAGS_CDBLEN_MASK; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2376 | cp->Header.tag = c->tag; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 2377 | memcpy(cp->Header.LUN.LunAddrBytes, c->CISS_LUN, 8); |
| 2378 | memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2379 | |
| 2380 | /* Any RAID offload error results in retry which will use |
| 2381 | * the normal I/O path so the controller can handle whatever's |
| 2382 | * wrong. |
| 2383 | */ |
Kevin Barnett | f3f0173 | 2015-11-04 15:51:33 -0600 | [diff] [blame] | 2384 | if (is_logical_device(dev)) { |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2385 | if (ei->CommandStatus == CMD_IOACCEL_DISABLED) |
| 2386 | dev->offload_enabled = 0; |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 2387 | return hpsa_retry_cmd(h, cp); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2388 | } |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 2389 | } |
| 2390 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2391 | /* an error has occurred */ |
| 2392 | switch (ei->CommandStatus) { |
| 2393 | |
| 2394 | case CMD_TARGET_STATUS: |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2395 | cmd->result |= ei->ScsiStatus; |
| 2396 | /* copy the sense data */ |
| 2397 | if (SCSI_SENSE_BUFFERSIZE < sizeof(ei->SenseInfo)) |
| 2398 | sense_data_size = SCSI_SENSE_BUFFERSIZE; |
| 2399 | else |
| 2400 | sense_data_size = sizeof(ei->SenseInfo); |
| 2401 | if (ei->SenseLen < sense_data_size) |
| 2402 | sense_data_size = ei->SenseLen; |
| 2403 | memcpy(cmd->sense_buffer, ei->SenseInfo, sense_data_size); |
| 2404 | if (ei->ScsiStatus) |
| 2405 | decode_sense_data(ei->SenseInfo, sense_data_size, |
| 2406 | &sense_key, &asc, &ascq); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2407 | if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) { |
Matt Gates | 1d3b360 | 2010-02-04 08:43:00 -0600 | [diff] [blame] | 2408 | if (sense_key == ABORTED_COMMAND) { |
Stephen M. Cameron | 2e311fb | 2013-09-23 13:33:41 -0500 | [diff] [blame] | 2409 | cmd->result |= DID_SOFT_ERROR << 16; |
Matt Gates | 1d3b360 | 2010-02-04 08:43:00 -0600 | [diff] [blame] | 2410 | break; |
| 2411 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2412 | break; |
| 2413 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2414 | /* Problem was not a check condition |
| 2415 | * Pass it up to the upper layers... |
| 2416 | */ |
| 2417 | if (ei->ScsiStatus) { |
| 2418 | dev_warn(&h->pdev->dev, "cp %p has status 0x%x " |
| 2419 | "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, " |
| 2420 | "Returning result: 0x%x\n", |
| 2421 | cp, ei->ScsiStatus, |
| 2422 | sense_key, asc, ascq, |
| 2423 | cmd->result); |
| 2424 | } else { /* scsi status is zero??? How??? */ |
| 2425 | dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. " |
| 2426 | "Returning no connection.\n", cp), |
| 2427 | |
| 2428 | /* Ordinarily, this case should never happen, |
| 2429 | * but there is a bug in some released firmware |
| 2430 | * revisions that allows it to happen if, for |
| 2431 | * example, a 4100 backplane loses power and |
| 2432 | * the tape drive is in it. We assume that |
| 2433 | * it's a fatal error of some kind because we |
| 2434 | * can't show that it wasn't. We will make it |
| 2435 | * look like selection timeout since that is |
| 2436 | * the most common reason for this to occur, |
| 2437 | * and it's severe enough. |
| 2438 | */ |
| 2439 | |
| 2440 | cmd->result = DID_NO_CONNECT << 16; |
| 2441 | } |
| 2442 | break; |
| 2443 | |
| 2444 | case CMD_DATA_UNDERRUN: /* let mid layer handle it. */ |
| 2445 | break; |
| 2446 | case CMD_DATA_OVERRUN: |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2447 | dev_warn(&h->pdev->dev, |
| 2448 | "CDB %16phN data overrun\n", cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2449 | break; |
| 2450 | case CMD_INVALID: { |
| 2451 | /* print_bytes(cp, sizeof(*cp), 1, 0); |
| 2452 | print_cmd(cp); */ |
| 2453 | /* We get CMD_INVALID if you address a non-existent device |
| 2454 | * instead of a selection timeout (no response). You will |
| 2455 | * see this if you yank out a drive, then try to access it. |
| 2456 | * This is kind of a shame because it means that any other |
| 2457 | * CMD_INVALID (e.g. driver bug) will get interpreted as a |
| 2458 | * missing target. */ |
| 2459 | cmd->result = DID_NO_CONNECT << 16; |
| 2460 | } |
| 2461 | break; |
| 2462 | case CMD_PROTOCOL_ERR: |
Stephen M. Cameron | 256d0ea | 2012-09-14 16:34:25 -0500 | [diff] [blame] | 2463 | cmd->result = DID_ERROR << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2464 | dev_warn(&h->pdev->dev, "CDB %16phN : protocol error\n", |
| 2465 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2466 | break; |
| 2467 | case CMD_HARDWARE_ERR: |
| 2468 | cmd->result = DID_ERROR << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2469 | dev_warn(&h->pdev->dev, "CDB %16phN : hardware error\n", |
| 2470 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2471 | break; |
| 2472 | case CMD_CONNECTION_LOST: |
| 2473 | cmd->result = DID_ERROR << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2474 | dev_warn(&h->pdev->dev, "CDB %16phN : connection lost\n", |
| 2475 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2476 | break; |
| 2477 | case CMD_ABORTED: |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 2478 | /* Return now to avoid calling scsi_done(). */ |
| 2479 | return hpsa_cmd_abort_and_free(h, cp, cmd); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2480 | case CMD_ABORT_FAILED: |
| 2481 | cmd->result = DID_ERROR << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2482 | dev_warn(&h->pdev->dev, "CDB %16phN : abort failed\n", |
| 2483 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2484 | break; |
| 2485 | case CMD_UNSOLICITED_ABORT: |
Stephen M. Cameron | f6e7605 | 2011-07-26 11:08:52 -0500 | [diff] [blame] | 2486 | cmd->result = DID_SOFT_ERROR << 16; /* retry the command */ |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2487 | dev_warn(&h->pdev->dev, "CDB %16phN : unsolicited abort\n", |
| 2488 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2489 | break; |
| 2490 | case CMD_TIMEOUT: |
| 2491 | cmd->result = DID_TIME_OUT << 16; |
Stephen Cameron | f42e81e | 2015-01-23 16:44:35 -0600 | [diff] [blame] | 2492 | dev_warn(&h->pdev->dev, "CDB %16phN timed out\n", |
| 2493 | cp->Request.CDB); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2494 | break; |
Stephen M. Cameron | 1d5e2ed | 2011-01-07 10:55:48 -0600 | [diff] [blame] | 2495 | case CMD_UNABORTABLE: |
| 2496 | cmd->result = DID_ERROR << 16; |
| 2497 | dev_warn(&h->pdev->dev, "Command unabortable\n"); |
| 2498 | break; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2499 | case CMD_TMF_STATUS: |
| 2500 | if (hpsa_evaluate_tmf_status(h, cp)) /* TMF failed? */ |
| 2501 | cmd->result = DID_ERROR << 16; |
| 2502 | break; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2503 | case CMD_IOACCEL_DISABLED: |
| 2504 | /* This only handles the direct pass-through case since RAID |
| 2505 | * offload is handled above. Just attempt a retry. |
| 2506 | */ |
| 2507 | cmd->result = DID_SOFT_ERROR << 16; |
| 2508 | dev_warn(&h->pdev->dev, |
| 2509 | "cp %p had HP SSD Smart Path error\n", cp); |
| 2510 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2511 | default: |
| 2512 | cmd->result = DID_ERROR << 16; |
| 2513 | dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n", |
| 2514 | cp, ei->CommandStatus); |
| 2515 | } |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 2516 | |
| 2517 | return hpsa_cmd_free_and_done(h, cp, cmd); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2518 | } |
| 2519 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2520 | static void hpsa_pci_unmap(struct pci_dev *pdev, |
| 2521 | struct CommandList *c, int sg_used, int data_direction) |
| 2522 | { |
| 2523 | int i; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2524 | |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2525 | for (i = 0; i < sg_used; i++) |
| 2526 | pci_unmap_single(pdev, (dma_addr_t) le64_to_cpu(c->SG[i].Addr), |
| 2527 | le32_to_cpu(c->SG[i].Len), |
| 2528 | data_direction); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2529 | } |
| 2530 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2531 | static int hpsa_map_one(struct pci_dev *pdev, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2532 | struct CommandList *cp, |
| 2533 | unsigned char *buf, |
| 2534 | size_t buflen, |
| 2535 | int data_direction) |
| 2536 | { |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 2537 | u64 addr64; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2538 | |
| 2539 | if (buflen == 0 || data_direction == PCI_DMA_NONE) { |
| 2540 | cp->Header.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2541 | cp->Header.SGTotal = cpu_to_le16(0); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2542 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2543 | } |
| 2544 | |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2545 | addr64 = pci_map_single(pdev, buf, buflen, data_direction); |
Shuah Khan | eceaae1 | 2013-02-20 11:24:34 -0600 | [diff] [blame] | 2546 | if (dma_mapping_error(&pdev->dev, addr64)) { |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2547 | /* Prevent subsequent unmap of something never mapped */ |
Shuah Khan | eceaae1 | 2013-02-20 11:24:34 -0600 | [diff] [blame] | 2548 | cp->Header.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2549 | cp->Header.SGTotal = cpu_to_le16(0); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2550 | return -1; |
Shuah Khan | eceaae1 | 2013-02-20 11:24:34 -0600 | [diff] [blame] | 2551 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 2552 | cp->SG[0].Addr = cpu_to_le64(addr64); |
| 2553 | cp->SG[0].Len = cpu_to_le32(buflen); |
| 2554 | cp->SG[0].Ext = cpu_to_le32(HPSA_SG_LAST); /* we are not chaining */ |
| 2555 | cp->Header.SGList = 1; /* no. SGs contig in this cmd */ |
| 2556 | 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] | 2557 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2558 | } |
| 2559 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2560 | #define NO_TIMEOUT ((unsigned long) -1) |
| 2561 | #define DEFAULT_TIMEOUT 30000 /* milliseconds */ |
| 2562 | static int hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h, |
| 2563 | struct CommandList *c, int reply_queue, unsigned long timeout_msecs) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2564 | { |
| 2565 | DECLARE_COMPLETION_ONSTACK(wait); |
| 2566 | |
| 2567 | c->waiting = &wait; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2568 | __enqueue_cmd_and_start_io(h, c, reply_queue); |
| 2569 | if (timeout_msecs == NO_TIMEOUT) { |
| 2570 | /* TODO: get rid of this no-timeout thing */ |
| 2571 | wait_for_completion_io(&wait); |
| 2572 | return IO_OK; |
| 2573 | } |
| 2574 | if (!wait_for_completion_io_timeout(&wait, |
| 2575 | msecs_to_jiffies(timeout_msecs))) { |
| 2576 | dev_warn(&h->pdev->dev, "Command timed out.\n"); |
| 2577 | return -ETIMEDOUT; |
| 2578 | } |
| 2579 | return IO_OK; |
| 2580 | } |
| 2581 | |
| 2582 | static int hpsa_scsi_do_simple_cmd(struct ctlr_info *h, struct CommandList *c, |
| 2583 | int reply_queue, unsigned long timeout_msecs) |
| 2584 | { |
| 2585 | if (unlikely(lockup_detected(h))) { |
| 2586 | c->err_info->CommandStatus = CMD_CTLR_LOCKUP; |
| 2587 | return IO_OK; |
| 2588 | } |
| 2589 | 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] | 2590 | } |
| 2591 | |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 2592 | static u32 lockup_detected(struct ctlr_info *h) |
| 2593 | { |
| 2594 | int cpu; |
| 2595 | u32 rc, *lockup_detected; |
| 2596 | |
| 2597 | cpu = get_cpu(); |
| 2598 | lockup_detected = per_cpu_ptr(h->lockup_detected, cpu); |
| 2599 | rc = *lockup_detected; |
| 2600 | put_cpu(); |
| 2601 | return rc; |
| 2602 | } |
| 2603 | |
Stephen M. Cameron | 9c2fc16 | 2012-05-01 11:42:40 -0500 | [diff] [blame] | 2604 | #define MAX_DRIVER_CMD_RETRIES 25 |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2605 | static int hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h, |
| 2606 | struct CommandList *c, int data_direction, unsigned long timeout_msecs) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2607 | { |
Stephen M. Cameron | 9c2fc16 | 2012-05-01 11:42:40 -0500 | [diff] [blame] | 2608 | int backoff_time = 10, retry_count = 0; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2609 | int rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2610 | |
| 2611 | do { |
Joe Perches | 7630abd | 2011-05-08 23:32:40 -0700 | [diff] [blame] | 2612 | memset(c->err_info, 0, sizeof(*c->err_info)); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2613 | rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, |
| 2614 | timeout_msecs); |
| 2615 | if (rc) |
| 2616 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2617 | retry_count++; |
Stephen M. Cameron | 9c2fc16 | 2012-05-01 11:42:40 -0500 | [diff] [blame] | 2618 | if (retry_count > 3) { |
| 2619 | msleep(backoff_time); |
| 2620 | if (backoff_time < 1000) |
| 2621 | backoff_time *= 2; |
| 2622 | } |
Matt Bondurant | 852af20 | 2012-05-01 11:42:35 -0500 | [diff] [blame] | 2623 | } while ((check_for_unit_attention(h, c) || |
Stephen M. Cameron | 9c2fc16 | 2012-05-01 11:42:40 -0500 | [diff] [blame] | 2624 | check_for_busy(h, c)) && |
| 2625 | retry_count <= MAX_DRIVER_CMD_RETRIES); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2626 | hpsa_pci_unmap(h->pdev, c, 1, data_direction); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2627 | if (retry_count > MAX_DRIVER_CMD_RETRIES) |
| 2628 | rc = -EIO; |
| 2629 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2630 | } |
| 2631 | |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2632 | static void hpsa_print_cmd(struct ctlr_info *h, char *txt, |
| 2633 | struct CommandList *c) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2634 | { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2635 | const u8 *cdb = c->Request.CDB; |
| 2636 | const u8 *lun = c->Header.LUN.LunAddrBytes; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2637 | |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2638 | dev_warn(&h->pdev->dev, "%s: LUN:%02x%02x%02x%02x%02x%02x%02x%02x" |
| 2639 | " CDB:%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 2640 | txt, lun[0], lun[1], lun[2], lun[3], |
| 2641 | lun[4], lun[5], lun[6], lun[7], |
| 2642 | cdb[0], cdb[1], cdb[2], cdb[3], |
| 2643 | cdb[4], cdb[5], cdb[6], cdb[7], |
| 2644 | cdb[8], cdb[9], cdb[10], cdb[11], |
| 2645 | cdb[12], cdb[13], cdb[14], cdb[15]); |
| 2646 | } |
| 2647 | |
| 2648 | static void hpsa_scsi_interpret_error(struct ctlr_info *h, |
| 2649 | struct CommandList *cp) |
| 2650 | { |
| 2651 | const struct ErrorInfo *ei = cp->err_info; |
| 2652 | struct device *d = &cp->h->pdev->dev; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2653 | u8 sense_key, asc, ascq; |
| 2654 | int sense_len; |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2655 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2656 | switch (ei->CommandStatus) { |
| 2657 | case CMD_TARGET_STATUS: |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2658 | if (ei->SenseLen > sizeof(ei->SenseInfo)) |
| 2659 | sense_len = sizeof(ei->SenseInfo); |
| 2660 | else |
| 2661 | sense_len = ei->SenseLen; |
| 2662 | decode_sense_data(ei->SenseInfo, sense_len, |
| 2663 | &sense_key, &asc, &ascq); |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2664 | hpsa_print_cmd(h, "SCSI status", cp); |
| 2665 | if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2666 | dev_warn(d, "SCSI Status = 02, Sense key = 0x%02x, ASC = 0x%02x, ASCQ = 0x%02x\n", |
| 2667 | sense_key, asc, ascq); |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2668 | else |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 2669 | dev_warn(d, "SCSI Status = 0x%02x\n", ei->ScsiStatus); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2670 | if (ei->ScsiStatus == 0) |
| 2671 | dev_warn(d, "SCSI status is abnormally zero. " |
| 2672 | "(probably indicates selection timeout " |
| 2673 | "reported incorrectly due to a known " |
| 2674 | "firmware bug, circa July, 2001.)\n"); |
| 2675 | break; |
| 2676 | case CMD_DATA_UNDERRUN: /* let mid layer handle it. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2677 | break; |
| 2678 | case CMD_DATA_OVERRUN: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2679 | hpsa_print_cmd(h, "overrun condition", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2680 | break; |
| 2681 | case CMD_INVALID: { |
| 2682 | /* controller unfortunately reports SCSI passthru's |
| 2683 | * to non-existent targets as invalid commands. |
| 2684 | */ |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2685 | hpsa_print_cmd(h, "invalid command", cp); |
| 2686 | dev_warn(d, "probably means device no longer present\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2687 | } |
| 2688 | break; |
| 2689 | case CMD_PROTOCOL_ERR: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2690 | hpsa_print_cmd(h, "protocol error", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2691 | break; |
| 2692 | case CMD_HARDWARE_ERR: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2693 | hpsa_print_cmd(h, "hardware error", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2694 | break; |
| 2695 | case CMD_CONNECTION_LOST: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2696 | hpsa_print_cmd(h, "connection lost", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2697 | break; |
| 2698 | case CMD_ABORTED: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2699 | hpsa_print_cmd(h, "aborted", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2700 | break; |
| 2701 | case CMD_ABORT_FAILED: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2702 | hpsa_print_cmd(h, "abort failed", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2703 | break; |
| 2704 | case CMD_UNSOLICITED_ABORT: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2705 | hpsa_print_cmd(h, "unsolicited abort", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2706 | break; |
| 2707 | case CMD_TIMEOUT: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2708 | hpsa_print_cmd(h, "timed out", cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2709 | break; |
Stephen M. Cameron | 1d5e2ed | 2011-01-07 10:55:48 -0600 | [diff] [blame] | 2710 | case CMD_UNABORTABLE: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2711 | hpsa_print_cmd(h, "unabortable", cp); |
Stephen M. Cameron | 1d5e2ed | 2011-01-07 10:55:48 -0600 | [diff] [blame] | 2712 | break; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2713 | case CMD_CTLR_LOCKUP: |
| 2714 | hpsa_print_cmd(h, "controller lockup detected", cp); |
| 2715 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2716 | default: |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2717 | hpsa_print_cmd(h, "unknown status", cp); |
| 2718 | dev_warn(d, "Unknown command status %x\n", |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2719 | ei->CommandStatus); |
| 2720 | } |
| 2721 | } |
| 2722 | |
| 2723 | 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] | 2724 | u16 page, unsigned char *buf, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2725 | unsigned char bufsize) |
| 2726 | { |
| 2727 | int rc = IO_OK; |
| 2728 | struct CommandList *c; |
| 2729 | struct ErrorInfo *ei; |
| 2730 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2731 | c = cmd_alloc(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2732 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2733 | if (fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize, |
| 2734 | page, scsi3addr, TYPE_CMD)) { |
| 2735 | rc = -1; |
| 2736 | goto out; |
| 2737 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2738 | rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, |
| 2739 | PCI_DMA_FROMDEVICE, NO_TIMEOUT); |
| 2740 | if (rc) |
| 2741 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2742 | ei = c->err_info; |
| 2743 | if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2744 | hpsa_scsi_interpret_error(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2745 | rc = -1; |
| 2746 | } |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2747 | out: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2748 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2749 | return rc; |
| 2750 | } |
| 2751 | |
Scott Teel | bf711ac | 2014-02-18 13:56:39 -0600 | [diff] [blame] | 2752 | static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2753 | u8 reset_type, int reply_queue) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2754 | { |
| 2755 | int rc = IO_OK; |
| 2756 | struct CommandList *c; |
| 2757 | struct ErrorInfo *ei; |
| 2758 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2759 | c = cmd_alloc(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2760 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2761 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 2762 | /* fill_cmd can't fail here, no data buffer to map. */ |
Scott Teel | 0b9b7b6 | 2015-11-04 15:51:02 -0600 | [diff] [blame] | 2763 | (void) fill_cmd(c, reset_type, h, NULL, 0, 0, |
Scott Teel | bf711ac | 2014-02-18 13:56:39 -0600 | [diff] [blame] | 2764 | scsi3addr, TYPE_MSG); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2765 | rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT); |
| 2766 | if (rc) { |
| 2767 | dev_warn(&h->pdev->dev, "Failed to send reset command\n"); |
| 2768 | goto out; |
| 2769 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2770 | /* no unmap needed here because no data xfer. */ |
| 2771 | |
| 2772 | ei = c->err_info; |
| 2773 | if (ei->CommandStatus != 0) { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 2774 | hpsa_scsi_interpret_error(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2775 | rc = -1; |
| 2776 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 2777 | out: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 2778 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2779 | return rc; |
| 2780 | } |
| 2781 | |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 2782 | static bool hpsa_cmd_dev_match(struct ctlr_info *h, struct CommandList *c, |
| 2783 | struct hpsa_scsi_dev_t *dev, |
| 2784 | unsigned char *scsi3addr) |
| 2785 | { |
| 2786 | int i; |
| 2787 | bool match = false; |
| 2788 | struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 2789 | struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2; |
| 2790 | |
| 2791 | if (hpsa_is_cmd_idle(c)) |
| 2792 | return false; |
| 2793 | |
| 2794 | switch (c->cmd_type) { |
| 2795 | case CMD_SCSI: |
| 2796 | case CMD_IOCTL_PEND: |
| 2797 | match = !memcmp(scsi3addr, &c->Header.LUN.LunAddrBytes, |
| 2798 | sizeof(c->Header.LUN.LunAddrBytes)); |
| 2799 | break; |
| 2800 | |
| 2801 | case CMD_IOACCEL1: |
| 2802 | case CMD_IOACCEL2: |
| 2803 | if (c->phys_disk == dev) { |
| 2804 | /* HBA mode match */ |
| 2805 | match = true; |
| 2806 | } else { |
| 2807 | /* Possible RAID mode -- check each phys dev. */ |
| 2808 | /* FIXME: Do we need to take out a lock here? If |
| 2809 | * so, we could just call hpsa_get_pdisk_of_ioaccel2() |
| 2810 | * instead. */ |
| 2811 | for (i = 0; i < dev->nphysical_disks && !match; i++) { |
| 2812 | /* FIXME: an alternate test might be |
| 2813 | * |
| 2814 | * match = dev->phys_disk[i]->ioaccel_handle |
| 2815 | * == c2->scsi_nexus; */ |
| 2816 | match = dev->phys_disk[i] == c->phys_disk; |
| 2817 | } |
| 2818 | } |
| 2819 | break; |
| 2820 | |
| 2821 | case IOACCEL2_TMF: |
| 2822 | for (i = 0; i < dev->nphysical_disks && !match; i++) { |
| 2823 | match = dev->phys_disk[i]->ioaccel_handle == |
| 2824 | le32_to_cpu(ac->it_nexus); |
| 2825 | } |
| 2826 | break; |
| 2827 | |
| 2828 | case 0: /* The command is in the middle of being initialized. */ |
| 2829 | match = false; |
| 2830 | break; |
| 2831 | |
| 2832 | default: |
| 2833 | dev_err(&h->pdev->dev, "unexpected cmd_type: %d\n", |
| 2834 | c->cmd_type); |
| 2835 | BUG(); |
| 2836 | } |
| 2837 | |
| 2838 | return match; |
| 2839 | } |
| 2840 | |
| 2841 | static int hpsa_do_reset(struct ctlr_info *h, struct hpsa_scsi_dev_t *dev, |
| 2842 | unsigned char *scsi3addr, u8 reset_type, int reply_queue) |
| 2843 | { |
| 2844 | int i; |
| 2845 | int rc = 0; |
| 2846 | |
| 2847 | /* We can really only handle one reset at a time */ |
| 2848 | if (mutex_lock_interruptible(&h->reset_mutex) == -EINTR) { |
| 2849 | dev_warn(&h->pdev->dev, "concurrent reset wait interrupted.\n"); |
| 2850 | return -EINTR; |
| 2851 | } |
| 2852 | |
| 2853 | BUG_ON(atomic_read(&dev->reset_cmds_out) != 0); |
| 2854 | |
| 2855 | for (i = 0; i < h->nr_cmds; i++) { |
| 2856 | struct CommandList *c = h->cmd_pool + i; |
| 2857 | int refcount = atomic_inc_return(&c->refcount); |
| 2858 | |
| 2859 | if (refcount > 1 && hpsa_cmd_dev_match(h, c, dev, scsi3addr)) { |
| 2860 | unsigned long flags; |
| 2861 | |
| 2862 | /* |
| 2863 | * Mark the target command as having a reset pending, |
| 2864 | * then lock a lock so that the command cannot complete |
| 2865 | * while we're considering it. If the command is not |
| 2866 | * idle then count it; otherwise revoke the event. |
| 2867 | */ |
| 2868 | c->reset_pending = dev; |
| 2869 | spin_lock_irqsave(&h->lock, flags); /* Implied MB */ |
| 2870 | if (!hpsa_is_cmd_idle(c)) |
| 2871 | atomic_inc(&dev->reset_cmds_out); |
| 2872 | else |
| 2873 | c->reset_pending = NULL; |
| 2874 | spin_unlock_irqrestore(&h->lock, flags); |
| 2875 | } |
| 2876 | |
| 2877 | cmd_free(h, c); |
| 2878 | } |
| 2879 | |
| 2880 | rc = hpsa_send_reset(h, scsi3addr, reset_type, reply_queue); |
| 2881 | if (!rc) |
| 2882 | wait_event(h->event_sync_wait_queue, |
| 2883 | atomic_read(&dev->reset_cmds_out) == 0 || |
| 2884 | lockup_detected(h)); |
| 2885 | |
| 2886 | if (unlikely(lockup_detected(h))) { |
Don Brace | 77678d3 | 2015-07-18 11:12:22 -0500 | [diff] [blame] | 2887 | dev_warn(&h->pdev->dev, |
| 2888 | "Controller lockup detected during reset wait\n"); |
| 2889 | rc = -ENODEV; |
| 2890 | } |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 2891 | |
| 2892 | if (unlikely(rc)) |
| 2893 | atomic_set(&dev->reset_cmds_out, 0); |
| 2894 | |
| 2895 | mutex_unlock(&h->reset_mutex); |
| 2896 | return rc; |
| 2897 | } |
| 2898 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2899 | static void hpsa_get_raid_level(struct ctlr_info *h, |
| 2900 | unsigned char *scsi3addr, unsigned char *raid_level) |
| 2901 | { |
| 2902 | int rc; |
| 2903 | unsigned char *buf; |
| 2904 | |
| 2905 | *raid_level = RAID_UNKNOWN; |
| 2906 | buf = kzalloc(64, GFP_KERNEL); |
| 2907 | if (!buf) |
| 2908 | return; |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 2909 | 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] | 2910 | if (rc == 0) |
| 2911 | *raid_level = buf[8]; |
| 2912 | if (*raid_level > RAID_UNKNOWN) |
| 2913 | *raid_level = RAID_UNKNOWN; |
| 2914 | kfree(buf); |
| 2915 | return; |
| 2916 | } |
| 2917 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2918 | #define HPSA_MAP_DEBUG |
| 2919 | #ifdef HPSA_MAP_DEBUG |
| 2920 | static void hpsa_debug_map_buff(struct ctlr_info *h, int rc, |
| 2921 | struct raid_map_data *map_buff) |
| 2922 | { |
| 2923 | struct raid_map_disk_data *dd = &map_buff->data[0]; |
| 2924 | int map, row, col; |
| 2925 | u16 map_cnt, row_cnt, disks_per_row; |
| 2926 | |
| 2927 | if (rc != 0) |
| 2928 | return; |
| 2929 | |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 2930 | /* Show details only if debugging has been activated. */ |
| 2931 | if (h->raid_offload_debug < 2) |
| 2932 | return; |
| 2933 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2934 | dev_info(&h->pdev->dev, "structure_size = %u\n", |
| 2935 | le32_to_cpu(map_buff->structure_size)); |
| 2936 | dev_info(&h->pdev->dev, "volume_blk_size = %u\n", |
| 2937 | le32_to_cpu(map_buff->volume_blk_size)); |
| 2938 | dev_info(&h->pdev->dev, "volume_blk_cnt = 0x%llx\n", |
| 2939 | le64_to_cpu(map_buff->volume_blk_cnt)); |
| 2940 | dev_info(&h->pdev->dev, "physicalBlockShift = %u\n", |
| 2941 | map_buff->phys_blk_shift); |
| 2942 | dev_info(&h->pdev->dev, "parity_rotation_shift = %u\n", |
| 2943 | map_buff->parity_rotation_shift); |
| 2944 | dev_info(&h->pdev->dev, "strip_size = %u\n", |
| 2945 | le16_to_cpu(map_buff->strip_size)); |
| 2946 | dev_info(&h->pdev->dev, "disk_starting_blk = 0x%llx\n", |
| 2947 | le64_to_cpu(map_buff->disk_starting_blk)); |
| 2948 | dev_info(&h->pdev->dev, "disk_blk_cnt = 0x%llx\n", |
| 2949 | le64_to_cpu(map_buff->disk_blk_cnt)); |
| 2950 | dev_info(&h->pdev->dev, "data_disks_per_row = %u\n", |
| 2951 | le16_to_cpu(map_buff->data_disks_per_row)); |
| 2952 | dev_info(&h->pdev->dev, "metadata_disks_per_row = %u\n", |
| 2953 | le16_to_cpu(map_buff->metadata_disks_per_row)); |
| 2954 | dev_info(&h->pdev->dev, "row_cnt = %u\n", |
| 2955 | le16_to_cpu(map_buff->row_cnt)); |
| 2956 | dev_info(&h->pdev->dev, "layout_map_count = %u\n", |
| 2957 | le16_to_cpu(map_buff->layout_map_count)); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 2958 | dev_info(&h->pdev->dev, "flags = 0x%x\n", |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 2959 | le16_to_cpu(map_buff->flags)); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 2960 | dev_info(&h->pdev->dev, "encrypytion = %s\n", |
| 2961 | le16_to_cpu(map_buff->flags) & |
| 2962 | RAID_MAP_FLAG_ENCRYPT_ON ? "ON" : "OFF"); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 2963 | dev_info(&h->pdev->dev, "dekindex = %u\n", |
| 2964 | le16_to_cpu(map_buff->dekindex)); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 2965 | map_cnt = le16_to_cpu(map_buff->layout_map_count); |
| 2966 | for (map = 0; map < map_cnt; map++) { |
| 2967 | dev_info(&h->pdev->dev, "Map%u:\n", map); |
| 2968 | row_cnt = le16_to_cpu(map_buff->row_cnt); |
| 2969 | for (row = 0; row < row_cnt; row++) { |
| 2970 | dev_info(&h->pdev->dev, " Row%u:\n", row); |
| 2971 | disks_per_row = |
| 2972 | le16_to_cpu(map_buff->data_disks_per_row); |
| 2973 | for (col = 0; col < disks_per_row; col++, dd++) |
| 2974 | dev_info(&h->pdev->dev, |
| 2975 | " D%02u: h=0x%04x xor=%u,%u\n", |
| 2976 | col, dd->ioaccel_handle, |
| 2977 | dd->xor_mult[0], dd->xor_mult[1]); |
| 2978 | disks_per_row = |
| 2979 | le16_to_cpu(map_buff->metadata_disks_per_row); |
| 2980 | for (col = 0; col < disks_per_row; col++, dd++) |
| 2981 | dev_info(&h->pdev->dev, |
| 2982 | " M%02u: h=0x%04x xor=%u,%u\n", |
| 2983 | col, dd->ioaccel_handle, |
| 2984 | dd->xor_mult[0], dd->xor_mult[1]); |
| 2985 | } |
| 2986 | } |
| 2987 | } |
| 2988 | #else |
| 2989 | static void hpsa_debug_map_buff(__attribute__((unused)) struct ctlr_info *h, |
| 2990 | __attribute__((unused)) int rc, |
| 2991 | __attribute__((unused)) struct raid_map_data *map_buff) |
| 2992 | { |
| 2993 | } |
| 2994 | #endif |
| 2995 | |
| 2996 | static int hpsa_get_raid_map(struct ctlr_info *h, |
| 2997 | unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device) |
| 2998 | { |
| 2999 | int rc = 0; |
| 3000 | struct CommandList *c; |
| 3001 | struct ErrorInfo *ei; |
| 3002 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 3003 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 3004 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3005 | if (fill_cmd(c, HPSA_GET_RAID_MAP, h, &this_device->raid_map, |
| 3006 | sizeof(this_device->raid_map), 0, |
| 3007 | scsi3addr, TYPE_CMD)) { |
Robert Elliott | 2dd02d7 | 2015-04-23 09:33:43 -0500 | [diff] [blame] | 3008 | dev_warn(&h->pdev->dev, "hpsa_get_raid_map fill_cmd failed\n"); |
| 3009 | cmd_free(h, c); |
| 3010 | return -1; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3011 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 3012 | rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, |
| 3013 | PCI_DMA_FROMDEVICE, NO_TIMEOUT); |
| 3014 | if (rc) |
| 3015 | goto out; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3016 | ei = c->err_info; |
| 3017 | if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 3018 | hpsa_scsi_interpret_error(h, c); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 3019 | rc = -1; |
| 3020 | goto out; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3021 | } |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 3022 | cmd_free(h, c); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3023 | |
| 3024 | /* @todo in the future, dynamically allocate RAID map memory */ |
| 3025 | if (le32_to_cpu(this_device->raid_map.structure_size) > |
| 3026 | sizeof(this_device->raid_map)) { |
| 3027 | dev_warn(&h->pdev->dev, "RAID map size is too large!\n"); |
| 3028 | rc = -1; |
| 3029 | } |
| 3030 | hpsa_debug_map_buff(h, rc, &this_device->raid_map); |
| 3031 | return rc; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 3032 | out: |
| 3033 | cmd_free(h, c); |
| 3034 | return rc; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3035 | } |
| 3036 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3037 | static int hpsa_bmic_id_physical_device(struct ctlr_info *h, |
| 3038 | unsigned char scsi3addr[], u16 bmic_device_index, |
| 3039 | struct bmic_identify_physical_device *buf, size_t bufsize) |
| 3040 | { |
| 3041 | int rc = IO_OK; |
| 3042 | struct CommandList *c; |
| 3043 | struct ErrorInfo *ei; |
| 3044 | |
| 3045 | c = cmd_alloc(h); |
| 3046 | rc = fill_cmd(c, BMIC_IDENTIFY_PHYSICAL_DEVICE, h, buf, bufsize, |
| 3047 | 0, RAID_CTLR_LUNID, TYPE_CMD); |
| 3048 | if (rc) |
| 3049 | goto out; |
| 3050 | |
| 3051 | c->Request.CDB[2] = bmic_device_index & 0xff; |
| 3052 | c->Request.CDB[9] = (bmic_device_index >> 8) & 0xff; |
| 3053 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 3054 | hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE, |
| 3055 | NO_TIMEOUT); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3056 | ei = c->err_info; |
| 3057 | if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) { |
| 3058 | hpsa_scsi_interpret_error(h, c); |
| 3059 | rc = -1; |
| 3060 | } |
| 3061 | out: |
| 3062 | cmd_free(h, c); |
| 3063 | return rc; |
| 3064 | } |
| 3065 | |
Stephen M. Cameron | 1b70150a | 2014-02-18 13:57:16 -0600 | [diff] [blame] | 3066 | static int hpsa_vpd_page_supported(struct ctlr_info *h, |
| 3067 | unsigned char scsi3addr[], u8 page) |
| 3068 | { |
| 3069 | int rc; |
| 3070 | int i; |
| 3071 | int pages; |
| 3072 | unsigned char *buf, bufsize; |
| 3073 | |
| 3074 | buf = kzalloc(256, GFP_KERNEL); |
| 3075 | if (!buf) |
| 3076 | return 0; |
| 3077 | |
| 3078 | /* Get the size of the page list first */ |
| 3079 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, |
| 3080 | VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES, |
| 3081 | buf, HPSA_VPD_HEADER_SZ); |
| 3082 | if (rc != 0) |
| 3083 | goto exit_unsupported; |
| 3084 | pages = buf[3]; |
| 3085 | if ((pages + HPSA_VPD_HEADER_SZ) <= 255) |
| 3086 | bufsize = pages + HPSA_VPD_HEADER_SZ; |
| 3087 | else |
| 3088 | bufsize = 255; |
| 3089 | |
| 3090 | /* Get the whole VPD page list */ |
| 3091 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, |
| 3092 | VPD_PAGE | HPSA_VPD_SUPPORTED_PAGES, |
| 3093 | buf, bufsize); |
| 3094 | if (rc != 0) |
| 3095 | goto exit_unsupported; |
| 3096 | |
| 3097 | pages = buf[3]; |
| 3098 | for (i = 1; i <= pages; i++) |
| 3099 | if (buf[3 + i] == page) |
| 3100 | goto exit_supported; |
| 3101 | exit_unsupported: |
| 3102 | kfree(buf); |
| 3103 | return 0; |
| 3104 | exit_supported: |
| 3105 | kfree(buf); |
| 3106 | return 1; |
| 3107 | } |
| 3108 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3109 | static void hpsa_get_ioaccel_status(struct ctlr_info *h, |
| 3110 | unsigned char *scsi3addr, struct hpsa_scsi_dev_t *this_device) |
| 3111 | { |
| 3112 | int rc; |
| 3113 | unsigned char *buf; |
| 3114 | u8 ioaccel_status; |
| 3115 | |
| 3116 | this_device->offload_config = 0; |
| 3117 | this_device->offload_enabled = 0; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3118 | this_device->offload_to_be_enabled = 0; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3119 | |
| 3120 | buf = kzalloc(64, GFP_KERNEL); |
| 3121 | if (!buf) |
| 3122 | return; |
Stephen M. Cameron | 1b70150a | 2014-02-18 13:57:16 -0600 | [diff] [blame] | 3123 | if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_IOACCEL_STATUS)) |
| 3124 | goto out; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3125 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 3126 | VPD_PAGE | HPSA_VPD_LV_IOACCEL_STATUS, buf, 64); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3127 | if (rc != 0) |
| 3128 | goto out; |
| 3129 | |
| 3130 | #define IOACCEL_STATUS_BYTE 4 |
| 3131 | #define OFFLOAD_CONFIGURED_BIT 0x01 |
| 3132 | #define OFFLOAD_ENABLED_BIT 0x02 |
| 3133 | ioaccel_status = buf[IOACCEL_STATUS_BYTE]; |
| 3134 | this_device->offload_config = |
| 3135 | !!(ioaccel_status & OFFLOAD_CONFIGURED_BIT); |
| 3136 | if (this_device->offload_config) { |
| 3137 | this_device->offload_enabled = |
| 3138 | !!(ioaccel_status & OFFLOAD_ENABLED_BIT); |
| 3139 | if (hpsa_get_raid_map(h, scsi3addr, this_device)) |
| 3140 | this_device->offload_enabled = 0; |
| 3141 | } |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3142 | this_device->offload_to_be_enabled = this_device->offload_enabled; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3143 | out: |
| 3144 | kfree(buf); |
| 3145 | return; |
| 3146 | } |
| 3147 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3148 | /* Get the device id from inquiry page 0x83 */ |
| 3149 | static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr, |
Don Brace | 75d23d8 | 2015-11-04 15:51:39 -0600 | [diff] [blame] | 3150 | unsigned char *device_id, int index, int buflen) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3151 | { |
| 3152 | int rc; |
| 3153 | unsigned char *buf; |
| 3154 | |
| 3155 | if (buflen > 16) |
| 3156 | buflen = 16; |
| 3157 | buf = kzalloc(64, GFP_KERNEL); |
| 3158 | if (!buf) |
Stephen M. Cameron | a84d794 | 2014-05-29 10:54:20 -0500 | [diff] [blame] | 3159 | return -ENOMEM; |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 3160 | 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] | 3161 | if (rc == 0) |
Don Brace | 75d23d8 | 2015-11-04 15:51:39 -0600 | [diff] [blame] | 3162 | memcpy(device_id, &buf[index], buflen); |
| 3163 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3164 | kfree(buf); |
Don Brace | 75d23d8 | 2015-11-04 15:51:39 -0600 | [diff] [blame] | 3165 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3166 | return rc != 0; |
| 3167 | } |
| 3168 | |
| 3169 | 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] | 3170 | void *buf, int bufsize, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3171 | int extended_response) |
| 3172 | { |
| 3173 | int rc = IO_OK; |
| 3174 | struct CommandList *c; |
| 3175 | unsigned char scsi3addr[8]; |
| 3176 | struct ErrorInfo *ei; |
| 3177 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 3178 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 3179 | |
Stephen M. Cameron | e89c0ae | 2010-02-04 08:42:04 -0600 | [diff] [blame] | 3180 | /* address the controller */ |
| 3181 | memset(scsi3addr, 0, sizeof(scsi3addr)); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 3182 | if (fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h, |
| 3183 | buf, bufsize, 0, scsi3addr, TYPE_CMD)) { |
| 3184 | rc = -1; |
| 3185 | goto out; |
| 3186 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3187 | if (extended_response) |
| 3188 | c->Request.CDB[1] = extended_response; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 3189 | rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, |
| 3190 | PCI_DMA_FROMDEVICE, NO_TIMEOUT); |
| 3191 | if (rc) |
| 3192 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3193 | ei = c->err_info; |
| 3194 | if (ei->CommandStatus != 0 && |
| 3195 | ei->CommandStatus != CMD_DATA_UNDERRUN) { |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 3196 | hpsa_scsi_interpret_error(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3197 | rc = -1; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3198 | } else { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3199 | struct ReportLUNdata *rld = buf; |
| 3200 | |
| 3201 | if (rld->extended_response_flag != extended_response) { |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3202 | dev_err(&h->pdev->dev, |
| 3203 | "report luns requested format %u, got %u\n", |
| 3204 | extended_response, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3205 | rld->extended_response_flag); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3206 | rc = -1; |
| 3207 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3208 | } |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 3209 | out: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 3210 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3211 | return rc; |
| 3212 | } |
| 3213 | |
| 3214 | 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] | 3215 | struct ReportExtendedLUNdata *buf, int bufsize) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3216 | { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3217 | return hpsa_scsi_do_report_luns(h, 0, buf, bufsize, |
| 3218 | HPSA_REPORT_PHYS_EXTENDED); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3219 | } |
| 3220 | |
| 3221 | static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h, |
| 3222 | struct ReportLUNdata *buf, int bufsize) |
| 3223 | { |
| 3224 | return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0); |
| 3225 | } |
| 3226 | |
| 3227 | static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device, |
| 3228 | int bus, int target, int lun) |
| 3229 | { |
| 3230 | device->bus = bus; |
| 3231 | device->target = target; |
| 3232 | device->lun = lun; |
| 3233 | } |
| 3234 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3235 | /* Use VPD inquiry to get details of volume status */ |
| 3236 | static int hpsa_get_volume_status(struct ctlr_info *h, |
| 3237 | unsigned char scsi3addr[]) |
| 3238 | { |
| 3239 | int rc; |
| 3240 | int status; |
| 3241 | int size; |
| 3242 | unsigned char *buf; |
| 3243 | |
| 3244 | buf = kzalloc(64, GFP_KERNEL); |
| 3245 | if (!buf) |
| 3246 | return HPSA_VPD_LV_STATUS_UNSUPPORTED; |
| 3247 | |
| 3248 | /* Does controller have VPD for logical volume status? */ |
Stephen M. Cameron | 24a4b07 | 2014-05-29 10:54:10 -0500 | [diff] [blame] | 3249 | if (!hpsa_vpd_page_supported(h, scsi3addr, HPSA_VPD_LV_STATUS)) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3250 | goto exit_failed; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3251 | |
| 3252 | /* Get the size of the VPD return buffer */ |
| 3253 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS, |
| 3254 | buf, HPSA_VPD_HEADER_SZ); |
Stephen M. Cameron | 24a4b07 | 2014-05-29 10:54:10 -0500 | [diff] [blame] | 3255 | if (rc != 0) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3256 | goto exit_failed; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3257 | size = buf[3]; |
| 3258 | |
| 3259 | /* Now get the whole VPD buffer */ |
| 3260 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, VPD_PAGE | HPSA_VPD_LV_STATUS, |
| 3261 | buf, size + HPSA_VPD_HEADER_SZ); |
Stephen M. Cameron | 24a4b07 | 2014-05-29 10:54:10 -0500 | [diff] [blame] | 3262 | if (rc != 0) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3263 | goto exit_failed; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3264 | status = buf[4]; /* status byte */ |
| 3265 | |
| 3266 | kfree(buf); |
| 3267 | return status; |
| 3268 | exit_failed: |
| 3269 | kfree(buf); |
| 3270 | return HPSA_VPD_LV_STATUS_UNSUPPORTED; |
| 3271 | } |
| 3272 | |
| 3273 | /* Determine offline status of a volume. |
| 3274 | * Return either: |
| 3275 | * 0 (not offline) |
Stephen M. Cameron | 67955ba | 2014-05-29 10:54:25 -0500 | [diff] [blame] | 3276 | * 0xff (offline for unknown reasons) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3277 | * # (integer code indicating one of several NOT READY states |
| 3278 | * describing why a volume is to be kept offline) |
| 3279 | */ |
Stephen M. Cameron | 67955ba | 2014-05-29 10:54:25 -0500 | [diff] [blame] | 3280 | static int hpsa_volume_offline(struct ctlr_info *h, |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3281 | unsigned char scsi3addr[]) |
| 3282 | { |
| 3283 | struct CommandList *c; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 3284 | unsigned char *sense; |
| 3285 | u8 sense_key, asc, ascq; |
| 3286 | int sense_len; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 3287 | int rc, ldstat = 0; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3288 | u16 cmd_status; |
| 3289 | u8 scsi_status; |
| 3290 | #define ASC_LUN_NOT_READY 0x04 |
| 3291 | #define ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS 0x04 |
| 3292 | #define ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ 0x02 |
| 3293 | |
| 3294 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 3295 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3296 | (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] | 3297 | rc = hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT); |
| 3298 | if (rc) { |
| 3299 | cmd_free(h, c); |
| 3300 | return 0; |
| 3301 | } |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3302 | sense = c->err_info->SenseInfo; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 3303 | if (c->err_info->SenseLen > sizeof(c->err_info->SenseInfo)) |
| 3304 | sense_len = sizeof(c->err_info->SenseInfo); |
| 3305 | else |
| 3306 | sense_len = c->err_info->SenseLen; |
| 3307 | decode_sense_data(sense, sense_len, &sense_key, &asc, &ascq); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3308 | cmd_status = c->err_info->CommandStatus; |
| 3309 | scsi_status = c->err_info->ScsiStatus; |
| 3310 | cmd_free(h, c); |
| 3311 | /* Is the volume 'not ready'? */ |
| 3312 | if (cmd_status != CMD_TARGET_STATUS || |
| 3313 | scsi_status != SAM_STAT_CHECK_CONDITION || |
| 3314 | sense_key != NOT_READY || |
| 3315 | asc != ASC_LUN_NOT_READY) { |
| 3316 | return 0; |
| 3317 | } |
| 3318 | |
| 3319 | /* Determine the reason for not ready state */ |
| 3320 | ldstat = hpsa_get_volume_status(h, scsi3addr); |
| 3321 | |
| 3322 | /* Keep volume offline in certain cases: */ |
| 3323 | switch (ldstat) { |
| 3324 | case HPSA_LV_UNDERGOING_ERASE: |
Scott Benesh | 5ca0120 | 2015-07-18 11:13:04 -0500 | [diff] [blame] | 3325 | case HPSA_LV_NOT_AVAILABLE: |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3326 | case HPSA_LV_UNDERGOING_RPI: |
| 3327 | case HPSA_LV_PENDING_RPI: |
| 3328 | case HPSA_LV_ENCRYPTED_NO_KEY: |
| 3329 | case HPSA_LV_PLAINTEXT_IN_ENCRYPT_ONLY_CONTROLLER: |
| 3330 | case HPSA_LV_UNDERGOING_ENCRYPTION: |
| 3331 | case HPSA_LV_UNDERGOING_ENCRYPTION_REKEYING: |
| 3332 | case HPSA_LV_ENCRYPTED_IN_NON_ENCRYPTED_CONTROLLER: |
| 3333 | return ldstat; |
| 3334 | case HPSA_VPD_LV_STATUS_UNSUPPORTED: |
| 3335 | /* If VPD status page isn't available, |
| 3336 | * use ASC/ASCQ to determine state |
| 3337 | */ |
| 3338 | if ((ascq == ASCQ_LUN_NOT_READY_FORMAT_IN_PROGRESS) || |
| 3339 | (ascq == ASCQ_LUN_NOT_READY_INITIALIZING_CMD_REQ)) |
| 3340 | return ldstat; |
| 3341 | break; |
| 3342 | default: |
| 3343 | break; |
| 3344 | } |
| 3345 | return 0; |
| 3346 | } |
| 3347 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3348 | /* |
| 3349 | * Find out if a logical device supports aborts by simply trying one. |
| 3350 | * Smart Array may claim not to support aborts on logical drives, but |
| 3351 | * if a MSA2000 * is connected, the drives on that will be presented |
| 3352 | * by the Smart Array as logical drives, and aborts may be sent to |
| 3353 | * those devices successfully. So the simplest way to find out is |
| 3354 | * to simply try an abort and see how the device responds. |
| 3355 | */ |
| 3356 | static int hpsa_device_supports_aborts(struct ctlr_info *h, |
| 3357 | unsigned char *scsi3addr) |
| 3358 | { |
| 3359 | struct CommandList *c; |
| 3360 | struct ErrorInfo *ei; |
| 3361 | int rc = 0; |
| 3362 | |
| 3363 | u64 tag = (u64) -1; /* bogus tag */ |
| 3364 | |
| 3365 | /* Assume that physical devices support aborts */ |
| 3366 | if (!is_logical_dev_addr_mode(scsi3addr)) |
| 3367 | return 1; |
| 3368 | |
| 3369 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 3370 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3371 | (void) fill_cmd(c, HPSA_ABORT_MSG, h, &tag, 0, 0, scsi3addr, TYPE_MSG); |
| 3372 | (void) hpsa_scsi_do_simple_cmd(h, c, DEFAULT_REPLY_QUEUE, NO_TIMEOUT); |
| 3373 | /* no unmap needed here because no data xfer. */ |
| 3374 | ei = c->err_info; |
| 3375 | switch (ei->CommandStatus) { |
| 3376 | case CMD_INVALID: |
| 3377 | rc = 0; |
| 3378 | break; |
| 3379 | case CMD_UNABORTABLE: |
| 3380 | case CMD_ABORT_FAILED: |
| 3381 | rc = 1; |
| 3382 | break; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 3383 | case CMD_TMF_STATUS: |
| 3384 | rc = hpsa_evaluate_tmf_status(h, c); |
| 3385 | break; |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3386 | default: |
| 3387 | rc = 0; |
| 3388 | break; |
| 3389 | } |
| 3390 | cmd_free(h, c); |
| 3391 | return rc; |
| 3392 | } |
| 3393 | |
Don Brace | 75d23d8 | 2015-11-04 15:51:39 -0600 | [diff] [blame] | 3394 | static void sanitize_inquiry_string(unsigned char *s, int len) |
| 3395 | { |
| 3396 | bool terminated = false; |
| 3397 | |
| 3398 | for (; len > 0; (--len, ++s)) { |
| 3399 | if (*s == 0) |
| 3400 | terminated = true; |
| 3401 | if (terminated || *s < 0x20 || *s > 0x7e) |
| 3402 | *s = ' '; |
| 3403 | } |
| 3404 | } |
| 3405 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3406 | static int hpsa_update_device_info(struct ctlr_info *h, |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3407 | unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device, |
| 3408 | unsigned char *is_OBDR_device) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3409 | { |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3410 | |
| 3411 | #define OBDR_SIG_OFFSET 43 |
| 3412 | #define OBDR_TAPE_SIG "$DR-10" |
| 3413 | #define OBDR_SIG_LEN (sizeof(OBDR_TAPE_SIG) - 1) |
| 3414 | #define OBDR_TAPE_INQ_SIZE (OBDR_SIG_OFFSET + OBDR_SIG_LEN) |
| 3415 | |
Stephen M. Cameron | ea6d3bc | 2010-02-04 08:42:09 -0600 | [diff] [blame] | 3416 | unsigned char *inq_buff; |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3417 | unsigned char *obdr_sig; |
Don Brace | 683fc44 | 2015-11-04 15:50:44 -0600 | [diff] [blame] | 3418 | int rc = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3419 | |
Stephen M. Cameron | ea6d3bc | 2010-02-04 08:42:09 -0600 | [diff] [blame] | 3420 | inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL); |
Don Brace | 683fc44 | 2015-11-04 15:50:44 -0600 | [diff] [blame] | 3421 | if (!inq_buff) { |
| 3422 | rc = -ENOMEM; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3423 | goto bail_out; |
Don Brace | 683fc44 | 2015-11-04 15:50:44 -0600 | [diff] [blame] | 3424 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3425 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3426 | /* Do an inquiry to the device to see what it is. */ |
| 3427 | if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff, |
| 3428 | (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) { |
| 3429 | /* Inquiry failed (msg printed already) */ |
| 3430 | dev_err(&h->pdev->dev, |
| 3431 | "hpsa_update_device_info: inquiry failed\n"); |
Don Brace | 683fc44 | 2015-11-04 15:50:44 -0600 | [diff] [blame] | 3432 | rc = -EIO; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3433 | goto bail_out; |
| 3434 | } |
| 3435 | |
Don Brace | 75d23d8 | 2015-11-04 15:51:39 -0600 | [diff] [blame] | 3436 | sanitize_inquiry_string(&inq_buff[8], 8); |
| 3437 | sanitize_inquiry_string(&inq_buff[16], 16); |
| 3438 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3439 | this_device->devtype = (inq_buff[0] & 0x1f); |
| 3440 | memcpy(this_device->scsi3addr, scsi3addr, 8); |
| 3441 | memcpy(this_device->vendor, &inq_buff[8], |
| 3442 | sizeof(this_device->vendor)); |
| 3443 | memcpy(this_device->model, &inq_buff[16], |
| 3444 | sizeof(this_device->model)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3445 | memset(this_device->device_id, 0, |
| 3446 | sizeof(this_device->device_id)); |
Don Brace | 75d23d8 | 2015-11-04 15:51:39 -0600 | [diff] [blame] | 3447 | hpsa_get_device_id(h, scsi3addr, this_device->device_id, 8, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3448 | sizeof(this_device->device_id)); |
| 3449 | |
| 3450 | if (this_device->devtype == TYPE_DISK && |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3451 | is_logical_dev_addr_mode(scsi3addr)) { |
Stephen M. Cameron | 67955ba | 2014-05-29 10:54:25 -0500 | [diff] [blame] | 3452 | int volume_offline; |
| 3453 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3454 | hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3455 | if (h->fw_support & MISC_FW_RAID_OFFLOAD_BASIC) |
| 3456 | hpsa_get_ioaccel_status(h, scsi3addr, this_device); |
Stephen M. Cameron | 67955ba | 2014-05-29 10:54:25 -0500 | [diff] [blame] | 3457 | volume_offline = hpsa_volume_offline(h, scsi3addr); |
| 3458 | if (volume_offline < 0 || volume_offline > 0xff) |
| 3459 | volume_offline = HPSA_VPD_LV_STATUS_UNSUPPORTED; |
| 3460 | this_device->volume_offline = volume_offline & 0xff; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3461 | } else { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3462 | this_device->raid_level = RAID_UNKNOWN; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3463 | this_device->offload_config = 0; |
| 3464 | this_device->offload_enabled = 0; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3465 | this_device->offload_to_be_enabled = 0; |
Joe Handzik | a3144e0 | 2015-04-23 09:32:59 -0500 | [diff] [blame] | 3466 | this_device->hba_ioaccel_enabled = 0; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 3467 | this_device->volume_offline = 0; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3468 | this_device->queue_depth = h->nr_cmds; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 3469 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3470 | |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3471 | if (is_OBDR_device) { |
| 3472 | /* See if this is a One-Button-Disaster-Recovery device |
| 3473 | * by looking for "$DR-10" at offset 43 in inquiry data. |
| 3474 | */ |
| 3475 | obdr_sig = &inq_buff[OBDR_SIG_OFFSET]; |
| 3476 | *is_OBDR_device = (this_device->devtype == TYPE_ROM && |
| 3477 | strncmp(obdr_sig, OBDR_TAPE_SIG, |
| 3478 | OBDR_SIG_LEN) == 0); |
| 3479 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3480 | kfree(inq_buff); |
| 3481 | return 0; |
| 3482 | |
| 3483 | bail_out: |
| 3484 | kfree(inq_buff); |
Don Brace | 683fc44 | 2015-11-04 15:50:44 -0600 | [diff] [blame] | 3485 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3486 | } |
| 3487 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3488 | static void hpsa_update_device_supports_aborts(struct ctlr_info *h, |
| 3489 | struct hpsa_scsi_dev_t *dev, u8 *scsi3addr) |
| 3490 | { |
| 3491 | unsigned long flags; |
| 3492 | int rc, entry; |
| 3493 | /* |
| 3494 | * See if this device supports aborts. If we already know |
| 3495 | * the device, we already know if it supports aborts, otherwise |
| 3496 | * we have to find out if it supports aborts by trying one. |
| 3497 | */ |
| 3498 | spin_lock_irqsave(&h->devlock, flags); |
| 3499 | rc = hpsa_scsi_find_entry(dev, h->dev, h->ndevices, &entry); |
| 3500 | if ((rc == DEVICE_SAME || rc == DEVICE_UPDATED) && |
| 3501 | entry >= 0 && entry < h->ndevices) { |
| 3502 | dev->supports_aborts = h->dev[entry]->supports_aborts; |
| 3503 | spin_unlock_irqrestore(&h->devlock, flags); |
| 3504 | } else { |
| 3505 | spin_unlock_irqrestore(&h->devlock, flags); |
| 3506 | dev->supports_aborts = |
| 3507 | hpsa_device_supports_aborts(h, scsi3addr); |
| 3508 | if (dev->supports_aborts < 0) |
| 3509 | dev->supports_aborts = 0; |
| 3510 | } |
| 3511 | } |
| 3512 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3513 | static unsigned char *ext_target_model[] = { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3514 | "MSA2012", |
| 3515 | "MSA2024", |
| 3516 | "MSA2312", |
| 3517 | "MSA2324", |
Stephen M. Cameron | fda3851 | 2011-05-03 15:00:07 -0500 | [diff] [blame] | 3518 | "P2000 G3 SAS", |
Stephen M. Cameron | e06c8e5 | 2013-09-23 13:33:56 -0500 | [diff] [blame] | 3519 | "MSA 2040 SAS", |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3520 | NULL, |
| 3521 | }; |
| 3522 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3523 | 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] | 3524 | { |
| 3525 | int i; |
| 3526 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3527 | for (i = 0; ext_target_model[i]; i++) |
| 3528 | if (strncmp(device->model, ext_target_model[i], |
| 3529 | strlen(ext_target_model[i])) == 0) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3530 | return 1; |
| 3531 | return 0; |
| 3532 | } |
| 3533 | |
Kevin Barnett | c795505 | 2015-11-04 15:51:45 -0600 | [diff] [blame] | 3534 | /* |
| 3535 | * Helper function to assign bus, target, lun mapping of devices. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3536 | * Logical drive target and lun are assigned at this time, but |
| 3537 | * physical device lun and target assignment are deferred (assigned |
| 3538 | * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.) |
Kevin Barnett | c795505 | 2015-11-04 15:51:45 -0600 | [diff] [blame] | 3539 | */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3540 | static void figure_bus_target_lun(struct ctlr_info *h, |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3541 | u8 *lunaddrbytes, struct hpsa_scsi_dev_t *device) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3542 | { |
Kevin Barnett | c795505 | 2015-11-04 15:51:45 -0600 | [diff] [blame] | 3543 | u32 lunid = get_unaligned_le32(lunaddrbytes); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3544 | |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3545 | if (!is_logical_dev_addr_mode(lunaddrbytes)) { |
| 3546 | /* physical device, target and lun filled in later */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3547 | if (is_hba_lunid(lunaddrbytes)) |
Kevin Barnett | c795505 | 2015-11-04 15:51:45 -0600 | [diff] [blame] | 3548 | hpsa_set_bus_target_lun(device, |
| 3549 | HPSA_HBA_BUS, 0, lunid & 0x3fff); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3550 | else |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3551 | /* defer target, lun assignment for physical devices */ |
Kevin Barnett | c795505 | 2015-11-04 15:51:45 -0600 | [diff] [blame] | 3552 | hpsa_set_bus_target_lun(device, |
| 3553 | HPSA_PHYSICAL_DEVICE_BUS, -1, -1); |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3554 | return; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3555 | } |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3556 | /* It's a logical device */ |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3557 | if (is_ext_target(h, device)) { |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3558 | hpsa_set_bus_target_lun(device, |
Kevin Barnett | c795505 | 2015-11-04 15:51:45 -0600 | [diff] [blame] | 3559 | HPSA_EXTERNAL_RAID_VOLUME_BUS, (lunid >> 16) & 0x3fff, |
| 3560 | lunid & 0x00ff); |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3561 | return; |
| 3562 | } |
Kevin Barnett | c795505 | 2015-11-04 15:51:45 -0600 | [diff] [blame] | 3563 | hpsa_set_bus_target_lun(device, HPSA_RAID_VOLUME_BUS, |
| 3564 | 0, lunid & 0x3fff); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3565 | } |
| 3566 | |
| 3567 | /* |
| 3568 | * 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] | 3569 | * 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] | 3570 | * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report |
| 3571 | * it for some reason. *tmpdevice is the target we're adding, |
| 3572 | * this_device is a pointer into the current element of currentsd[] |
| 3573 | * that we're building up in update_scsi_devices(), below. |
| 3574 | * lunzerobits is a bitmap that tracks which targets already have a |
| 3575 | * lun 0 assigned. |
| 3576 | * Returns 1 if an enclosure was added, 0 if not. |
| 3577 | */ |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3578 | static int add_ext_target_dev(struct ctlr_info *h, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3579 | struct hpsa_scsi_dev_t *tmpdevice, |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 3580 | struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes, |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3581 | unsigned long lunzerobits[], int *n_ext_target_devs) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3582 | { |
| 3583 | unsigned char scsi3addr[8]; |
| 3584 | |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3585 | if (test_bit(tmpdevice->target, lunzerobits)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3586 | return 0; /* There is already a lun 0 on this target. */ |
| 3587 | |
| 3588 | if (!is_logical_dev_addr_mode(lunaddrbytes)) |
| 3589 | return 0; /* It's the logical targets that may lack lun 0. */ |
| 3590 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3591 | if (!is_ext_target(h, tmpdevice)) |
| 3592 | return 0; /* Only external target devices have this problem. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3593 | |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3594 | 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] | 3595 | return 0; |
| 3596 | |
Stephen M. Cameron | c4f8a29 | 2011-01-07 10:55:43 -0600 | [diff] [blame] | 3597 | memset(scsi3addr, 0, 8); |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3598 | scsi3addr[3] = tmpdevice->target; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3599 | if (is_hba_lunid(scsi3addr)) |
| 3600 | return 0; /* Don't add the RAID controller here. */ |
| 3601 | |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3602 | if (is_scsi_rev_5(h)) |
| 3603 | return 0; /* p1210m doesn't need to do this. */ |
| 3604 | |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3605 | if (*n_ext_target_devs >= MAX_EXT_TARGETS) { |
Scott Teel | aca4a52 | 2012-01-19 14:01:19 -0600 | [diff] [blame] | 3606 | dev_warn(&h->pdev->dev, "Maximum number of external " |
| 3607 | "target devices exceeded. Check your hardware " |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3608 | "configuration."); |
| 3609 | return 0; |
| 3610 | } |
| 3611 | |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3612 | if (hpsa_update_device_info(h, scsi3addr, this_device, NULL)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3613 | return 0; |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3614 | (*n_ext_target_devs)++; |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3615 | hpsa_set_bus_target_lun(this_device, |
| 3616 | tmpdevice->bus, tmpdevice->target, 0); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3617 | hpsa_update_device_supports_aborts(h, this_device, scsi3addr); |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3618 | set_bit(tmpdevice->target, lunzerobits); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3619 | return 1; |
| 3620 | } |
| 3621 | |
| 3622 | /* |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3623 | * Get address of physical disk used for an ioaccel2 mode command: |
| 3624 | * 1. Extract ioaccel2 handle from the command. |
| 3625 | * 2. Find a matching ioaccel2 handle from list of physical disks. |
| 3626 | * 3. Return: |
| 3627 | * 1 and set scsi3addr to address of matching physical |
| 3628 | * 0 if no matching physical disk was found. |
| 3629 | */ |
| 3630 | static int hpsa_get_pdisk_of_ioaccel2(struct ctlr_info *h, |
| 3631 | struct CommandList *ioaccel2_cmd_to_abort, unsigned char *scsi3addr) |
| 3632 | { |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3633 | struct io_accel2_cmd *c2 = |
| 3634 | &h->ioaccel2_cmd_pool[ioaccel2_cmd_to_abort->cmdindex]; |
| 3635 | unsigned long flags; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3636 | int i; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3637 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3638 | spin_lock_irqsave(&h->devlock, flags); |
| 3639 | for (i = 0; i < h->ndevices; i++) |
| 3640 | if (h->dev[i]->ioaccel_handle == le32_to_cpu(c2->scsi_nexus)) { |
| 3641 | memcpy(scsi3addr, h->dev[i]->scsi3addr, |
| 3642 | sizeof(h->dev[i]->scsi3addr)); |
| 3643 | spin_unlock_irqrestore(&h->devlock, flags); |
| 3644 | return 1; |
| 3645 | } |
| 3646 | spin_unlock_irqrestore(&h->devlock, flags); |
| 3647 | return 0; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3648 | } |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3649 | |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 3650 | /* |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3651 | * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev, |
| 3652 | * logdev. The number of luns in physdev and logdev are returned in |
| 3653 | * *nphysicals and *nlogicals, respectively. |
| 3654 | * Returns 0 on success, -1 otherwise. |
| 3655 | */ |
| 3656 | static int hpsa_gather_lun_info(struct ctlr_info *h, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3657 | struct ReportExtendedLUNdata *physdev, u32 *nphysicals, |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 3658 | struct ReportLUNdata *logdev, u32 *nlogicals) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3659 | { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3660 | if (hpsa_scsi_do_report_phys_luns(h, physdev, sizeof(*physdev))) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3661 | dev_err(&h->pdev->dev, "report physical LUNs failed.\n"); |
| 3662 | return -1; |
| 3663 | } |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3664 | *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 24; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3665 | if (*nphysicals > HPSA_MAX_PHYS_LUN) { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3666 | dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded. %d LUNs ignored.\n", |
| 3667 | HPSA_MAX_PHYS_LUN, *nphysicals - HPSA_MAX_PHYS_LUN); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3668 | *nphysicals = HPSA_MAX_PHYS_LUN; |
| 3669 | } |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3670 | if (hpsa_scsi_do_report_log_luns(h, logdev, sizeof(*logdev))) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3671 | dev_err(&h->pdev->dev, "report logical LUNs failed.\n"); |
| 3672 | return -1; |
| 3673 | } |
Stephen M. Cameron | 6df1e95 | 2010-02-04 08:42:19 -0600 | [diff] [blame] | 3674 | *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3675 | /* Reject Logicals in excess of our max capability. */ |
| 3676 | if (*nlogicals > HPSA_MAX_LUN) { |
| 3677 | dev_warn(&h->pdev->dev, |
| 3678 | "maximum logical LUNs (%d) exceeded. " |
| 3679 | "%d LUNs ignored.\n", HPSA_MAX_LUN, |
| 3680 | *nlogicals - HPSA_MAX_LUN); |
| 3681 | *nlogicals = HPSA_MAX_LUN; |
| 3682 | } |
| 3683 | if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) { |
| 3684 | dev_warn(&h->pdev->dev, |
| 3685 | "maximum logical + physical LUNs (%d) exceeded. " |
| 3686 | "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN, |
| 3687 | *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN); |
| 3688 | *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals; |
| 3689 | } |
| 3690 | return 0; |
| 3691 | } |
| 3692 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 3693 | static u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position, |
| 3694 | int i, int nphysicals, int nlogicals, |
Matt Gates | a93aa1f | 2014-02-18 13:55:07 -0600 | [diff] [blame] | 3695 | struct ReportExtendedLUNdata *physdev_list, |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3696 | struct ReportLUNdata *logdev_list) |
| 3697 | { |
| 3698 | /* Helper function, figure out where the LUN ID info is coming from |
| 3699 | * given index i, lists of physical and logical devices, where in |
| 3700 | * the list the raid controller is supposed to appear (first or last) |
| 3701 | */ |
| 3702 | |
| 3703 | int logicals_start = nphysicals + (raid_ctlr_position == 0); |
| 3704 | int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0); |
| 3705 | |
| 3706 | if (i == raid_ctlr_position) |
| 3707 | return RAID_CTLR_LUNID; |
| 3708 | |
| 3709 | if (i < logicals_start) |
Stephen M. Cameron | d5b5d96 | 2014-05-29 10:53:34 -0500 | [diff] [blame] | 3710 | return &physdev_list->LUN[i - |
| 3711 | (raid_ctlr_position == 0)].lunid[0]; |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3712 | |
| 3713 | if (i < last_device) |
| 3714 | return &logdev_list->LUN[i - nphysicals - |
| 3715 | (raid_ctlr_position == 0)][0]; |
| 3716 | BUG(); |
| 3717 | return NULL; |
| 3718 | } |
| 3719 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3720 | /* get physical drive ioaccel handle and queue depth */ |
| 3721 | static void hpsa_get_ioaccel_drive_info(struct ctlr_info *h, |
| 3722 | struct hpsa_scsi_dev_t *dev, |
Don Brace | f2039b0 | 2015-11-04 15:51:08 -0600 | [diff] [blame] | 3723 | struct ReportExtendedLUNdata *rlep, int rle_index, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3724 | struct bmic_identify_physical_device *id_phys) |
| 3725 | { |
| 3726 | int rc; |
Don Brace | f2039b0 | 2015-11-04 15:51:08 -0600 | [diff] [blame] | 3727 | struct ext_report_lun_entry *rle = &rlep->LUN[rle_index]; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3728 | |
| 3729 | dev->ioaccel_handle = rle->ioaccel_handle; |
Don Brace | f2039b0 | 2015-11-04 15:51:08 -0600 | [diff] [blame] | 3730 | if ((rle->device_flags & 0x08) && dev->ioaccel_handle) |
Joe Handzik | a3144e0 | 2015-04-23 09:32:59 -0500 | [diff] [blame] | 3731 | dev->hba_ioaccel_enabled = 1; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3732 | memset(id_phys, 0, sizeof(*id_phys)); |
Don Brace | f2039b0 | 2015-11-04 15:51:08 -0600 | [diff] [blame] | 3733 | rc = hpsa_bmic_id_physical_device(h, &rle->lunid[0], |
| 3734 | GET_BMIC_DRIVE_NUMBER(&rle->lunid[0]), id_phys, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3735 | sizeof(*id_phys)); |
| 3736 | if (!rc) |
| 3737 | /* Reserve space for FW operations */ |
| 3738 | #define DRIVE_CMDS_RESERVED_FOR_FW 2 |
| 3739 | #define DRIVE_QUEUE_DEPTH 7 |
| 3740 | dev->queue_depth = |
| 3741 | le16_to_cpu(id_phys->current_queue_depth_limit) - |
| 3742 | DRIVE_CMDS_RESERVED_FOR_FW; |
| 3743 | else |
| 3744 | dev->queue_depth = DRIVE_QUEUE_DEPTH; /* conservative */ |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3745 | } |
| 3746 | |
Joe Handzik | 8270b86 | 2015-07-18 11:12:43 -0500 | [diff] [blame] | 3747 | static void hpsa_get_path_info(struct hpsa_scsi_dev_t *this_device, |
Don Brace | f2039b0 | 2015-11-04 15:51:08 -0600 | [diff] [blame] | 3748 | struct ReportExtendedLUNdata *rlep, int rle_index, |
Joe Handzik | 8270b86 | 2015-07-18 11:12:43 -0500 | [diff] [blame] | 3749 | struct bmic_identify_physical_device *id_phys) |
| 3750 | { |
Don Brace | f2039b0 | 2015-11-04 15:51:08 -0600 | [diff] [blame] | 3751 | struct ext_report_lun_entry *rle = &rlep->LUN[rle_index]; |
| 3752 | |
| 3753 | if ((rle->device_flags & 0x08) && this_device->ioaccel_handle) |
Joe Handzik | 8270b86 | 2015-07-18 11:12:43 -0500 | [diff] [blame] | 3754 | this_device->hba_ioaccel_enabled = 1; |
| 3755 | |
| 3756 | memcpy(&this_device->active_path_index, |
| 3757 | &id_phys->active_path_number, |
| 3758 | sizeof(this_device->active_path_index)); |
| 3759 | memcpy(&this_device->path_map, |
| 3760 | &id_phys->redundant_path_present_map, |
| 3761 | sizeof(this_device->path_map)); |
| 3762 | memcpy(&this_device->box, |
| 3763 | &id_phys->alternate_paths_phys_box_on_port, |
| 3764 | sizeof(this_device->box)); |
| 3765 | memcpy(&this_device->phys_connector, |
| 3766 | &id_phys->alternate_paths_phys_connector, |
| 3767 | sizeof(this_device->phys_connector)); |
| 3768 | memcpy(&this_device->bay, |
| 3769 | &id_phys->phys_bay_in_box, |
| 3770 | sizeof(this_device->bay)); |
| 3771 | } |
| 3772 | |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 3773 | static void hpsa_update_scsi_devices(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3774 | { |
| 3775 | /* the idea here is we could get notified |
| 3776 | * that some devices have changed, so we do a report |
| 3777 | * physical luns and report logical luns cmd, and adjust |
| 3778 | * our list of devices accordingly. |
| 3779 | * |
| 3780 | * The scsi3addr's of devices won't change so long as the |
| 3781 | * adapter is not reset. That means we can rescan and |
| 3782 | * tell which devices we already know about, vs. new |
| 3783 | * devices, vs. disappearing devices. |
| 3784 | */ |
Matt Gates | a93aa1f | 2014-02-18 13:55:07 -0600 | [diff] [blame] | 3785 | struct ReportExtendedLUNdata *physdev_list = NULL; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3786 | struct ReportLUNdata *logdev_list = NULL; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3787 | struct bmic_identify_physical_device *id_phys = NULL; |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 3788 | u32 nphysicals = 0; |
| 3789 | u32 nlogicals = 0; |
| 3790 | u32 ndev_allocated = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3791 | struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice; |
| 3792 | int ncurrent = 0; |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3793 | int i, n_ext_target_devs, ndevs_to_allocate; |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3794 | int raid_ctlr_position; |
Kevin Barnett | 04fa2f4 | 2015-11-04 15:51:27 -0600 | [diff] [blame] | 3795 | bool physical_device; |
Scott Teel | aca4a52 | 2012-01-19 14:01:19 -0600 | [diff] [blame] | 3796 | DECLARE_BITMAP(lunzerobits, MAX_EXT_TARGETS); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3797 | |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 3798 | currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_DEVICES, GFP_KERNEL); |
Stephen M. Cameron | 9208471 | 2014-11-14 17:26:54 -0600 | [diff] [blame] | 3799 | physdev_list = kzalloc(sizeof(*physdev_list), GFP_KERNEL); |
| 3800 | logdev_list = kzalloc(sizeof(*logdev_list), GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3801 | tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3802 | id_phys = kzalloc(sizeof(*id_phys), GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3803 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3804 | if (!currentsd || !physdev_list || !logdev_list || |
| 3805 | !tmpdevice || !id_phys) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3806 | dev_err(&h->pdev->dev, "out of memory\n"); |
| 3807 | goto out; |
| 3808 | } |
| 3809 | memset(lunzerobits, 0, sizeof(lunzerobits)); |
| 3810 | |
Don Brace | 853633e | 2015-11-04 15:50:37 -0600 | [diff] [blame] | 3811 | h->drv_req_rescan = 0; /* cancel scheduled rescan - we're doing it. */ |
| 3812 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3813 | if (hpsa_gather_lun_info(h, physdev_list, &nphysicals, |
Don Brace | 853633e | 2015-11-04 15:50:37 -0600 | [diff] [blame] | 3814 | logdev_list, &nlogicals)) { |
| 3815 | h->drv_req_rescan = 1; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3816 | goto out; |
Don Brace | 853633e | 2015-11-04 15:50:37 -0600 | [diff] [blame] | 3817 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3818 | |
Scott Teel | aca4a52 | 2012-01-19 14:01:19 -0600 | [diff] [blame] | 3819 | /* We might see up to the maximum number of logical and physical disks |
| 3820 | * plus external target devices, and a device for the local RAID |
| 3821 | * controller. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3822 | */ |
Scott Teel | aca4a52 | 2012-01-19 14:01:19 -0600 | [diff] [blame] | 3823 | ndevs_to_allocate = nphysicals + nlogicals + MAX_EXT_TARGETS + 1; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3824 | |
| 3825 | /* Allocate the per device structures */ |
| 3826 | for (i = 0; i < ndevs_to_allocate; i++) { |
Scott Teel | b7ec021 | 2011-10-26 16:21:12 -0500 | [diff] [blame] | 3827 | if (i >= HPSA_MAX_DEVICES) { |
| 3828 | dev_warn(&h->pdev->dev, "maximum devices (%d) exceeded." |
| 3829 | " %d devices ignored.\n", HPSA_MAX_DEVICES, |
| 3830 | ndevs_to_allocate - HPSA_MAX_DEVICES); |
| 3831 | break; |
| 3832 | } |
| 3833 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3834 | currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL); |
| 3835 | if (!currentsd[i]) { |
| 3836 | dev_warn(&h->pdev->dev, "out of memory at %s:%d\n", |
| 3837 | __FILE__, __LINE__); |
Don Brace | 853633e | 2015-11-04 15:50:37 -0600 | [diff] [blame] | 3838 | h->drv_req_rescan = 1; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3839 | goto out; |
| 3840 | } |
| 3841 | ndev_allocated++; |
| 3842 | } |
| 3843 | |
Stephen M. Cameron | 8645291 | 2014-05-29 10:53:49 -0500 | [diff] [blame] | 3844 | if (is_scsi_rev_5(h)) |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3845 | raid_ctlr_position = 0; |
| 3846 | else |
| 3847 | raid_ctlr_position = nphysicals + nlogicals; |
| 3848 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3849 | /* adjust our table of devices */ |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3850 | n_ext_target_devs = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3851 | for (i = 0; i < nphysicals + nlogicals + 1; i++) { |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3852 | u8 *lunaddrbytes, is_OBDR = 0; |
Don Brace | 683fc44 | 2015-11-04 15:50:44 -0600 | [diff] [blame] | 3853 | int rc = 0; |
Don Brace | f2039b0 | 2015-11-04 15:51:08 -0600 | [diff] [blame] | 3854 | int phys_dev_index = i - (raid_ctlr_position == 0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3855 | |
Kevin Barnett | 04fa2f4 | 2015-11-04 15:51:27 -0600 | [diff] [blame] | 3856 | physical_device = i < nphysicals + (raid_ctlr_position == 0); |
| 3857 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3858 | /* Figure out where the LUN ID info is coming from */ |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3859 | lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position, |
| 3860 | i, nphysicals, nlogicals, physdev_list, logdev_list); |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3861 | |
| 3862 | /* skip masked non-disk devices */ |
Kevin Barnett | 04fa2f4 | 2015-11-04 15:51:27 -0600 | [diff] [blame] | 3863 | if (MASKED_DEVICE(lunaddrbytes) && physical_device && |
| 3864 | (physdev_list->LUN[phys_dev_index].device_flags & 0x01)) |
| 3865 | continue; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3866 | |
| 3867 | /* Get device type, vendor, model, device id */ |
Don Brace | 683fc44 | 2015-11-04 15:50:44 -0600 | [diff] [blame] | 3868 | rc = hpsa_update_device_info(h, lunaddrbytes, tmpdevice, |
| 3869 | &is_OBDR); |
| 3870 | if (rc == -ENOMEM) { |
| 3871 | dev_warn(&h->pdev->dev, |
| 3872 | "Out of memory, rescan deferred.\n"); |
Don Brace | 853633e | 2015-11-04 15:50:37 -0600 | [diff] [blame] | 3873 | h->drv_req_rescan = 1; |
Don Brace | 683fc44 | 2015-11-04 15:50:44 -0600 | [diff] [blame] | 3874 | goto out; |
Don Brace | 853633e | 2015-11-04 15:50:37 -0600 | [diff] [blame] | 3875 | } |
Don Brace | 683fc44 | 2015-11-04 15:50:44 -0600 | [diff] [blame] | 3876 | if (rc) { |
| 3877 | dev_warn(&h->pdev->dev, |
| 3878 | "Inquiry failed, skipping device.\n"); |
| 3879 | continue; |
| 3880 | } |
| 3881 | |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3882 | figure_bus_target_lun(h, lunaddrbytes, tmpdevice); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 3883 | hpsa_update_device_supports_aborts(h, tmpdevice, lunaddrbytes); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3884 | this_device = currentsd[ncurrent]; |
| 3885 | |
| 3886 | /* |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3887 | * 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] | 3888 | * doesn't show up in CCISS_REPORT_PHYSICAL data, but there |
| 3889 | * is nonetheless an enclosure device there. We have to |
| 3890 | * present that otherwise linux won't find anything if |
| 3891 | * there is no lun 0. |
| 3892 | */ |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3893 | if (add_ext_target_dev(h, tmpdevice, this_device, |
Stephen M. Cameron | 1f310bd | 2012-01-19 14:01:14 -0600 | [diff] [blame] | 3894 | lunaddrbytes, lunzerobits, |
Scott Teel | 4f4eb9f | 2012-01-19 14:01:25 -0600 | [diff] [blame] | 3895 | &n_ext_target_devs)) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3896 | ncurrent++; |
| 3897 | this_device = currentsd[ncurrent]; |
| 3898 | } |
| 3899 | |
| 3900 | *this_device = *tmpdevice; |
Kevin Barnett | 04fa2f4 | 2015-11-04 15:51:27 -0600 | [diff] [blame] | 3901 | this_device->physical_device = physical_device; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3902 | |
Kevin Barnett | 04fa2f4 | 2015-11-04 15:51:27 -0600 | [diff] [blame] | 3903 | /* |
| 3904 | * Expose all devices except for physical devices that |
| 3905 | * are masked. |
| 3906 | */ |
| 3907 | if (MASKED_DEVICE(lunaddrbytes) && this_device->physical_device) |
Kevin Barnett | 2a16820 | 2015-11-04 15:51:21 -0600 | [diff] [blame] | 3908 | this_device->expose_device = 0; |
| 3909 | else |
| 3910 | this_device->expose_device = 1; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3911 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3912 | switch (this_device->devtype) { |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3913 | case TYPE_ROM: |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3914 | /* We don't *really* support actual CD-ROM devices, |
| 3915 | * just "One Button Disaster Recovery" tape drive |
| 3916 | * which temporarily pretends to be a CD-ROM drive. |
| 3917 | * So we check that the device is really an OBDR tape |
| 3918 | * device by checking for "$DR-10" in bytes 43-48 of |
| 3919 | * the inquiry data. |
| 3920 | */ |
Stephen M. Cameron | 0b0e1d6 | 2011-08-09 08:17:30 -0500 | [diff] [blame] | 3921 | if (is_OBDR) |
| 3922 | ncurrent++; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3923 | break; |
| 3924 | case TYPE_DISK: |
Kevin Barnett | 04fa2f4 | 2015-11-04 15:51:27 -0600 | [diff] [blame] | 3925 | if (this_device->physical_device) { |
Kevin Barnett | b9092b7 | 2015-07-18 11:12:59 -0500 | [diff] [blame] | 3926 | /* The disk is in HBA mode. */ |
| 3927 | /* Never use RAID mapper in HBA mode. */ |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 3928 | this_device->offload_enabled = 0; |
Kevin Barnett | b9092b7 | 2015-07-18 11:12:59 -0500 | [diff] [blame] | 3929 | hpsa_get_ioaccel_drive_info(h, this_device, |
Don Brace | f2039b0 | 2015-11-04 15:51:08 -0600 | [diff] [blame] | 3930 | physdev_list, phys_dev_index, id_phys); |
| 3931 | hpsa_get_path_info(this_device, |
| 3932 | physdev_list, phys_dev_index, id_phys); |
Kevin Barnett | b9092b7 | 2015-07-18 11:12:59 -0500 | [diff] [blame] | 3933 | } |
Joe Handzik | ecf418d1 | 2015-04-23 09:33:04 -0500 | [diff] [blame] | 3934 | ncurrent++; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3935 | break; |
| 3936 | case TYPE_TAPE: |
| 3937 | case TYPE_MEDIUM_CHANGER: |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3938 | case TYPE_ENCLOSURE: |
Kevin Barnett | b9092b7 | 2015-07-18 11:12:59 -0500 | [diff] [blame] | 3939 | ncurrent++; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 3940 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3941 | case TYPE_RAID: |
| 3942 | /* Only present the Smartarray HBA as a RAID controller. |
| 3943 | * If it's a RAID controller other than the HBA itself |
| 3944 | * (an external RAID controller, MSA500 or similar) |
| 3945 | * don't present it. |
| 3946 | */ |
| 3947 | if (!is_hba_lunid(lunaddrbytes)) |
| 3948 | break; |
| 3949 | ncurrent++; |
| 3950 | break; |
| 3951 | default: |
| 3952 | break; |
| 3953 | } |
Scott Teel | cfe5bad | 2011-10-26 16:21:07 -0500 | [diff] [blame] | 3954 | if (ncurrent >= HPSA_MAX_DEVICES) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3955 | break; |
| 3956 | } |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 3957 | adjust_hpsa_scsi_table(h, currentsd, ncurrent); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3958 | out: |
| 3959 | kfree(tmpdevice); |
| 3960 | for (i = 0; i < ndev_allocated; i++) |
| 3961 | kfree(currentsd[i]); |
| 3962 | kfree(currentsd); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3963 | kfree(physdev_list); |
| 3964 | kfree(logdev_list); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 3965 | kfree(id_phys); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3966 | } |
| 3967 | |
Webb Scales | ec5cbf0 | 2015-01-23 16:44:45 -0600 | [diff] [blame] | 3968 | static void hpsa_set_sg_descriptor(struct SGDescriptor *desc, |
| 3969 | struct scatterlist *sg) |
| 3970 | { |
| 3971 | u64 addr64 = (u64) sg_dma_address(sg); |
| 3972 | unsigned int len = sg_dma_len(sg); |
| 3973 | |
| 3974 | desc->Addr = cpu_to_le64(addr64); |
| 3975 | desc->Len = cpu_to_le32(len); |
| 3976 | desc->Ext = 0; |
| 3977 | } |
| 3978 | |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 3979 | /* |
| 3980 | * 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] | 3981 | * dma mapping and fills in the scatter gather entries of the |
| 3982 | * hpsa command, cp. |
| 3983 | */ |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3984 | static int hpsa_scatter_gather(struct ctlr_info *h, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3985 | struct CommandList *cp, |
| 3986 | struct scsi_cmnd *cmd) |
| 3987 | { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3988 | struct scatterlist *sg; |
Webb Scales | b3a7ba7 | 2015-04-23 09:34:27 -0500 | [diff] [blame] | 3989 | int use_sg, i, sg_limit, chained, last_sg; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3990 | struct SGDescriptor *curr_sg; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3991 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3992 | BUG_ON(scsi_sg_count(cmd) > h->maxsgentries); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3993 | |
| 3994 | use_sg = scsi_dma_map(cmd); |
| 3995 | if (use_sg < 0) |
| 3996 | return use_sg; |
| 3997 | |
| 3998 | if (!use_sg) |
| 3999 | goto sglist_finished; |
| 4000 | |
Webb Scales | b3a7ba7 | 2015-04-23 09:34:27 -0500 | [diff] [blame] | 4001 | /* |
| 4002 | * If the number of entries is greater than the max for a single list, |
| 4003 | * then we have a chained list; we will set up all but one entry in the |
| 4004 | * first list (the last entry is saved for link information); |
| 4005 | * otherwise, we don't have a chained list and we'll set up at each of |
| 4006 | * the entries in the one list. |
| 4007 | */ |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 4008 | curr_sg = cp->SG; |
Webb Scales | b3a7ba7 | 2015-04-23 09:34:27 -0500 | [diff] [blame] | 4009 | chained = use_sg > h->max_cmd_sg_entries; |
| 4010 | sg_limit = chained ? h->max_cmd_sg_entries - 1 : use_sg; |
| 4011 | last_sg = scsi_sg_count(cmd) - 1; |
| 4012 | scsi_for_each_sg(cmd, sg, sg_limit, i) { |
Webb Scales | ec5cbf0 | 2015-01-23 16:44:45 -0600 | [diff] [blame] | 4013 | hpsa_set_sg_descriptor(curr_sg, sg); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 4014 | curr_sg++; |
| 4015 | } |
Webb Scales | ec5cbf0 | 2015-01-23 16:44:45 -0600 | [diff] [blame] | 4016 | |
Webb Scales | b3a7ba7 | 2015-04-23 09:34:27 -0500 | [diff] [blame] | 4017 | if (chained) { |
| 4018 | /* |
| 4019 | * Continue with the chained list. Set curr_sg to the chained |
| 4020 | * list. Modify the limit to the total count less the entries |
| 4021 | * we've already set up. Resume the scan at the list entry |
| 4022 | * where the previous loop left off. |
| 4023 | */ |
| 4024 | curr_sg = h->cmd_sg_list[cp->cmdindex]; |
| 4025 | sg_limit = use_sg - sg_limit; |
| 4026 | for_each_sg(sg, sg, sg_limit, i) { |
| 4027 | hpsa_set_sg_descriptor(curr_sg, sg); |
| 4028 | curr_sg++; |
| 4029 | } |
| 4030 | } |
| 4031 | |
Webb Scales | ec5cbf0 | 2015-01-23 16:44:45 -0600 | [diff] [blame] | 4032 | /* Back the pointer up to the last entry and mark it as "last". */ |
Webb Scales | b3a7ba7 | 2015-04-23 09:34:27 -0500 | [diff] [blame] | 4033 | (curr_sg - 1)->Ext = cpu_to_le32(HPSA_SG_LAST); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 4034 | |
| 4035 | if (use_sg + chained > h->maxSG) |
| 4036 | h->maxSG = use_sg + chained; |
| 4037 | |
| 4038 | if (chained) { |
| 4039 | cp->Header.SGList = h->max_cmd_sg_entries; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 4040 | cp->Header.SGTotal = cpu_to_le16(use_sg + 1); |
Stephen M. Cameron | e2bea6d | 2013-02-20 11:24:46 -0600 | [diff] [blame] | 4041 | if (hpsa_map_sg_chain_block(h, cp)) { |
| 4042 | scsi_dma_unmap(cmd); |
| 4043 | return -1; |
| 4044 | } |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 4045 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4046 | } |
| 4047 | |
| 4048 | sglist_finished: |
| 4049 | |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 4050 | cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */ |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 4051 | 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] | 4052 | return 0; |
| 4053 | } |
| 4054 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4055 | #define IO_ACCEL_INELIGIBLE (1) |
| 4056 | static int fixup_ioaccel_cdb(u8 *cdb, int *cdb_len) |
| 4057 | { |
| 4058 | int is_write = 0; |
| 4059 | u32 block; |
| 4060 | u32 block_cnt; |
| 4061 | |
| 4062 | /* Perform some CDB fixups if needed using 10 byte reads/writes only */ |
| 4063 | switch (cdb[0]) { |
| 4064 | case WRITE_6: |
| 4065 | case WRITE_12: |
| 4066 | is_write = 1; |
| 4067 | case READ_6: |
| 4068 | case READ_12: |
| 4069 | if (*cdb_len == 6) { |
Don Brace | c8a6c9a | 2015-11-04 15:50:50 -0600 | [diff] [blame] | 4070 | block = get_unaligned_be16(&cdb[2]); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4071 | block_cnt = cdb[4]; |
Don Brace | c8a6c9a | 2015-11-04 15:50:50 -0600 | [diff] [blame] | 4072 | if (block_cnt == 0) |
| 4073 | block_cnt = 256; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4074 | } else { |
| 4075 | BUG_ON(*cdb_len != 12); |
Don Brace | c8a6c9a | 2015-11-04 15:50:50 -0600 | [diff] [blame] | 4076 | block = get_unaligned_be32(&cdb[2]); |
| 4077 | block_cnt = get_unaligned_be32(&cdb[6]); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4078 | } |
| 4079 | if (block_cnt > 0xffff) |
| 4080 | return IO_ACCEL_INELIGIBLE; |
| 4081 | |
| 4082 | cdb[0] = is_write ? WRITE_10 : READ_10; |
| 4083 | cdb[1] = 0; |
| 4084 | cdb[2] = (u8) (block >> 24); |
| 4085 | cdb[3] = (u8) (block >> 16); |
| 4086 | cdb[4] = (u8) (block >> 8); |
| 4087 | cdb[5] = (u8) (block); |
| 4088 | cdb[6] = 0; |
| 4089 | cdb[7] = (u8) (block_cnt >> 8); |
| 4090 | cdb[8] = (u8) (block_cnt); |
| 4091 | cdb[9] = 0; |
| 4092 | *cdb_len = 10; |
| 4093 | break; |
| 4094 | } |
| 4095 | return 0; |
| 4096 | } |
| 4097 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4098 | static int hpsa_scsi_ioaccel1_queue_command(struct ctlr_info *h, |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4099 | struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4100 | u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk) |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4101 | { |
| 4102 | struct scsi_cmnd *cmd = c->scsi_cmd; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4103 | struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[c->cmdindex]; |
| 4104 | unsigned int len; |
| 4105 | unsigned int total_len = 0; |
| 4106 | struct scatterlist *sg; |
| 4107 | u64 addr64; |
| 4108 | int use_sg, i; |
| 4109 | struct SGDescriptor *curr_sg; |
| 4110 | u32 control = IOACCEL1_CONTROL_SIMPLEQUEUE; |
| 4111 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4112 | /* TODO: implement chaining support */ |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4113 | if (scsi_sg_count(cmd) > h->ioaccel_maxsg) { |
| 4114 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4115 | return IO_ACCEL_INELIGIBLE; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4116 | } |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4117 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4118 | BUG_ON(cmd->cmd_len > IOACCEL1_IOFLAGS_CDBLEN_MAX); |
| 4119 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4120 | if (fixup_ioaccel_cdb(cdb, &cdb_len)) { |
| 4121 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4122 | return IO_ACCEL_INELIGIBLE; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4123 | } |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4124 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4125 | c->cmd_type = CMD_IOACCEL1; |
| 4126 | |
| 4127 | /* Adjust the DMA address to point to the accelerated command buffer */ |
| 4128 | c->busaddr = (u32) h->ioaccel_cmd_pool_dhandle + |
| 4129 | (c->cmdindex * sizeof(*cp)); |
| 4130 | BUG_ON(c->busaddr & 0x0000007F); |
| 4131 | |
| 4132 | use_sg = scsi_dma_map(cmd); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4133 | if (use_sg < 0) { |
| 4134 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4135 | return use_sg; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4136 | } |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4137 | |
| 4138 | if (use_sg) { |
| 4139 | curr_sg = cp->SG; |
| 4140 | scsi_for_each_sg(cmd, sg, use_sg, i) { |
| 4141 | addr64 = (u64) sg_dma_address(sg); |
| 4142 | len = sg_dma_len(sg); |
| 4143 | total_len += len; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 4144 | curr_sg->Addr = cpu_to_le64(addr64); |
| 4145 | curr_sg->Len = cpu_to_le32(len); |
| 4146 | curr_sg->Ext = cpu_to_le32(0); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4147 | curr_sg++; |
| 4148 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 4149 | (--curr_sg)->Ext = cpu_to_le32(HPSA_SG_LAST); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4150 | |
| 4151 | switch (cmd->sc_data_direction) { |
| 4152 | case DMA_TO_DEVICE: |
| 4153 | control |= IOACCEL1_CONTROL_DATA_OUT; |
| 4154 | break; |
| 4155 | case DMA_FROM_DEVICE: |
| 4156 | control |= IOACCEL1_CONTROL_DATA_IN; |
| 4157 | break; |
| 4158 | case DMA_NONE: |
| 4159 | control |= IOACCEL1_CONTROL_NODATAXFER; |
| 4160 | break; |
| 4161 | default: |
| 4162 | dev_err(&h->pdev->dev, "unknown data direction: %d\n", |
| 4163 | cmd->sc_data_direction); |
| 4164 | BUG(); |
| 4165 | break; |
| 4166 | } |
| 4167 | } else { |
| 4168 | control |= IOACCEL1_CONTROL_NODATAXFER; |
| 4169 | } |
| 4170 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4171 | c->Header.SGList = use_sg; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4172 | /* Fill out the command structure to submit */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4173 | cp->dev_handle = cpu_to_le16(ioaccel_handle & 0xFFFF); |
| 4174 | cp->transfer_len = cpu_to_le32(total_len); |
| 4175 | cp->io_flags = cpu_to_le16(IOACCEL1_IOFLAGS_IO_REQ | |
| 4176 | (cdb_len & IOACCEL1_IOFLAGS_CDBLEN_MASK)); |
| 4177 | cp->control = cpu_to_le32(control); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4178 | memcpy(cp->CDB, cdb, cdb_len); |
| 4179 | memcpy(cp->CISS_LUN, scsi3addr, 8); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4180 | /* Tag was already set at init time. */ |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4181 | enqueue_cmd_and_start_io(h, c); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 4182 | return 0; |
| 4183 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4184 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4185 | /* |
| 4186 | * Queue a command directly to a device behind the controller using the |
| 4187 | * I/O accelerator path. |
| 4188 | */ |
| 4189 | static int hpsa_scsi_ioaccel_direct_map(struct ctlr_info *h, |
| 4190 | struct CommandList *c) |
| 4191 | { |
| 4192 | struct scsi_cmnd *cmd = c->scsi_cmd; |
| 4193 | struct hpsa_scsi_dev_t *dev = cmd->device->hostdata; |
| 4194 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4195 | c->phys_disk = dev; |
| 4196 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4197 | return hpsa_scsi_ioaccel_queue_command(h, c, dev->ioaccel_handle, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4198 | cmd->cmnd, cmd->cmd_len, dev->scsi3addr, dev); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4199 | } |
| 4200 | |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4201 | /* |
| 4202 | * Set encryption parameters for the ioaccel2 request |
| 4203 | */ |
| 4204 | static void set_encrypt_ioaccel2(struct ctlr_info *h, |
| 4205 | struct CommandList *c, struct io_accel2_cmd *cp) |
| 4206 | { |
| 4207 | struct scsi_cmnd *cmd = c->scsi_cmd; |
| 4208 | struct hpsa_scsi_dev_t *dev = cmd->device->hostdata; |
| 4209 | struct raid_map_data *map = &dev->raid_map; |
| 4210 | u64 first_block; |
| 4211 | |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4212 | /* Are we doing encryption on this device */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4213 | if (!(le16_to_cpu(map->flags) & RAID_MAP_FLAG_ENCRYPT_ON)) |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4214 | return; |
| 4215 | /* Set the data encryption key index. */ |
| 4216 | cp->dekindex = map->dekindex; |
| 4217 | |
| 4218 | /* Set the encryption enable flag, encoded into direction field. */ |
| 4219 | cp->direction |= IOACCEL2_DIRECTION_ENCRYPT_MASK; |
| 4220 | |
| 4221 | /* Set encryption tweak values based on logical block address |
| 4222 | * If block size is 512, tweak value is LBA. |
| 4223 | * For other block sizes, tweak is (LBA * block size)/ 512) |
| 4224 | */ |
| 4225 | switch (cmd->cmnd[0]) { |
| 4226 | /* Required? 6-byte cdbs eliminated by fixup_ioaccel_cdb */ |
| 4227 | case WRITE_6: |
| 4228 | case READ_6: |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4229 | first_block = get_unaligned_be16(&cmd->cmnd[2]); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4230 | break; |
| 4231 | case WRITE_10: |
| 4232 | case READ_10: |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4233 | /* Required? 12-byte cdbs eliminated by fixup_ioaccel_cdb */ |
| 4234 | case WRITE_12: |
| 4235 | case READ_12: |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4236 | first_block = get_unaligned_be32(&cmd->cmnd[2]); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4237 | break; |
| 4238 | case WRITE_16: |
| 4239 | case READ_16: |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4240 | first_block = get_unaligned_be64(&cmd->cmnd[2]); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4241 | break; |
| 4242 | default: |
| 4243 | dev_err(&h->pdev->dev, |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4244 | "ERROR: %s: size (0x%x) not supported for encryption\n", |
| 4245 | __func__, cmd->cmnd[0]); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4246 | BUG(); |
| 4247 | break; |
| 4248 | } |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4249 | |
| 4250 | if (le32_to_cpu(map->volume_blk_size) != 512) |
| 4251 | first_block = first_block * |
| 4252 | le32_to_cpu(map->volume_blk_size)/512; |
| 4253 | |
| 4254 | cp->tweak_lower = cpu_to_le32(first_block); |
| 4255 | cp->tweak_upper = cpu_to_le32(first_block >> 32); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4256 | } |
| 4257 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4258 | static int hpsa_scsi_ioaccel2_queue_command(struct ctlr_info *h, |
| 4259 | struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4260 | u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk) |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4261 | { |
| 4262 | struct scsi_cmnd *cmd = c->scsi_cmd; |
| 4263 | struct io_accel2_cmd *cp = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 4264 | struct ioaccel2_sg_element *curr_sg; |
| 4265 | int use_sg, i; |
| 4266 | struct scatterlist *sg; |
| 4267 | u64 addr64; |
| 4268 | u32 len; |
| 4269 | u32 total_len = 0; |
| 4270 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 4271 | BUG_ON(scsi_sg_count(cmd) > h->maxsgentries); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4272 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4273 | if (fixup_ioaccel_cdb(cdb, &cdb_len)) { |
| 4274 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4275 | return IO_ACCEL_INELIGIBLE; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4276 | } |
| 4277 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4278 | c->cmd_type = CMD_IOACCEL2; |
| 4279 | /* Adjust the DMA address to point to the accelerated command buffer */ |
| 4280 | c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle + |
| 4281 | (c->cmdindex * sizeof(*cp)); |
| 4282 | BUG_ON(c->busaddr & 0x0000007F); |
| 4283 | |
| 4284 | memset(cp, 0, sizeof(*cp)); |
| 4285 | cp->IU_type = IOACCEL2_IU_TYPE; |
| 4286 | |
| 4287 | use_sg = scsi_dma_map(cmd); |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4288 | if (use_sg < 0) { |
| 4289 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4290 | return use_sg; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4291 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4292 | |
| 4293 | if (use_sg) { |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4294 | curr_sg = cp->sg; |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 4295 | if (use_sg > h->ioaccel_maxsg) { |
| 4296 | addr64 = le64_to_cpu( |
| 4297 | h->ioaccel2_cmd_sg_list[c->cmdindex]->address); |
| 4298 | curr_sg->address = cpu_to_le64(addr64); |
| 4299 | curr_sg->length = 0; |
| 4300 | curr_sg->reserved[0] = 0; |
| 4301 | curr_sg->reserved[1] = 0; |
| 4302 | curr_sg->reserved[2] = 0; |
| 4303 | curr_sg->chain_indicator = 0x80; |
| 4304 | |
| 4305 | curr_sg = h->ioaccel2_cmd_sg_list[c->cmdindex]; |
| 4306 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4307 | scsi_for_each_sg(cmd, sg, use_sg, i) { |
| 4308 | addr64 = (u64) sg_dma_address(sg); |
| 4309 | len = sg_dma_len(sg); |
| 4310 | total_len += len; |
| 4311 | curr_sg->address = cpu_to_le64(addr64); |
| 4312 | curr_sg->length = cpu_to_le32(len); |
| 4313 | curr_sg->reserved[0] = 0; |
| 4314 | curr_sg->reserved[1] = 0; |
| 4315 | curr_sg->reserved[2] = 0; |
| 4316 | curr_sg->chain_indicator = 0; |
| 4317 | curr_sg++; |
| 4318 | } |
| 4319 | |
| 4320 | switch (cmd->sc_data_direction) { |
| 4321 | case DMA_TO_DEVICE: |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4322 | cp->direction &= ~IOACCEL2_DIRECTION_MASK; |
| 4323 | cp->direction |= IOACCEL2_DIR_DATA_OUT; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4324 | break; |
| 4325 | case DMA_FROM_DEVICE: |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4326 | cp->direction &= ~IOACCEL2_DIRECTION_MASK; |
| 4327 | cp->direction |= IOACCEL2_DIR_DATA_IN; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4328 | break; |
| 4329 | case DMA_NONE: |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4330 | cp->direction &= ~IOACCEL2_DIRECTION_MASK; |
| 4331 | cp->direction |= IOACCEL2_DIR_NO_DATA; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4332 | break; |
| 4333 | default: |
| 4334 | dev_err(&h->pdev->dev, "unknown data direction: %d\n", |
| 4335 | cmd->sc_data_direction); |
| 4336 | BUG(); |
| 4337 | break; |
| 4338 | } |
| 4339 | } else { |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4340 | cp->direction &= ~IOACCEL2_DIRECTION_MASK; |
| 4341 | cp->direction |= IOACCEL2_DIR_NO_DATA; |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4342 | } |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 4343 | |
| 4344 | /* Set encryption parameters, if necessary */ |
| 4345 | set_encrypt_ioaccel2(h, c, cp); |
| 4346 | |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4347 | cp->scsi_nexus = cpu_to_le32(ioaccel_handle); |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 4348 | cp->Tag = cpu_to_le32(c->cmdindex << DIRECT_LOOKUP_SHIFT); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4349 | memcpy(cp->cdb, cdb, sizeof(cp->cdb)); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4350 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4351 | cp->data_len = cpu_to_le32(total_len); |
| 4352 | cp->err_ptr = cpu_to_le64(c->busaddr + |
| 4353 | offsetof(struct io_accel2_cmd, error_data)); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 4354 | cp->err_len = cpu_to_le32(sizeof(cp->error_data)); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4355 | |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 4356 | /* fill in sg elements */ |
| 4357 | if (use_sg > h->ioaccel_maxsg) { |
| 4358 | cp->sg_count = 1; |
Don Brace | a736e9b | 2015-11-04 15:51:14 -0600 | [diff] [blame] | 4359 | cp->sg[0].length = cpu_to_le32(use_sg * sizeof(cp->sg[0])); |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 4360 | if (hpsa_map_ioaccel2_sg_chain_block(h, cp, c)) { |
| 4361 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
| 4362 | scsi_dma_unmap(cmd); |
| 4363 | return -1; |
| 4364 | } |
| 4365 | } else |
| 4366 | cp->sg_count = (u8) use_sg; |
| 4367 | |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4368 | enqueue_cmd_and_start_io(h, c); |
| 4369 | return 0; |
| 4370 | } |
| 4371 | |
| 4372 | /* |
| 4373 | * Queue a command to the correct I/O accelerator path. |
| 4374 | */ |
| 4375 | static int hpsa_scsi_ioaccel_queue_command(struct ctlr_info *h, |
| 4376 | struct CommandList *c, u32 ioaccel_handle, u8 *cdb, int cdb_len, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4377 | u8 *scsi3addr, struct hpsa_scsi_dev_t *phys_disk) |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4378 | { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4379 | /* Try to honor the device's queue depth */ |
| 4380 | if (atomic_inc_return(&phys_disk->ioaccel_cmds_out) > |
| 4381 | phys_disk->queue_depth) { |
| 4382 | atomic_dec(&phys_disk->ioaccel_cmds_out); |
| 4383 | return IO_ACCEL_INELIGIBLE; |
| 4384 | } |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4385 | if (h->transMethod & CFGTBL_Trans_io_accel1) |
| 4386 | return hpsa_scsi_ioaccel1_queue_command(h, c, ioaccel_handle, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4387 | cdb, cdb_len, scsi3addr, |
| 4388 | phys_disk); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4389 | else |
| 4390 | return hpsa_scsi_ioaccel2_queue_command(h, c, ioaccel_handle, |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4391 | cdb, cdb_len, scsi3addr, |
| 4392 | phys_disk); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 4393 | } |
| 4394 | |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4395 | static void raid_map_helper(struct raid_map_data *map, |
| 4396 | int offload_to_mirror, u32 *map_index, u32 *current_group) |
| 4397 | { |
| 4398 | if (offload_to_mirror == 0) { |
| 4399 | /* use physical disk in the first mirrored group. */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4400 | *map_index %= le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4401 | return; |
| 4402 | } |
| 4403 | do { |
| 4404 | /* determine mirror group that *map_index indicates */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4405 | *current_group = *map_index / |
| 4406 | le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4407 | if (offload_to_mirror == *current_group) |
| 4408 | continue; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4409 | if (*current_group < le16_to_cpu(map->layout_map_count) - 1) { |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4410 | /* select map index from next group */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4411 | *map_index += le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4412 | (*current_group)++; |
| 4413 | } else { |
| 4414 | /* select map index from first group */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4415 | *map_index %= le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4416 | *current_group = 0; |
| 4417 | } |
| 4418 | } while (offload_to_mirror != *current_group); |
| 4419 | } |
| 4420 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4421 | /* |
| 4422 | * Attempt to perform offload RAID mapping for a logical volume I/O. |
| 4423 | */ |
| 4424 | static int hpsa_scsi_ioaccel_raid_map(struct ctlr_info *h, |
| 4425 | struct CommandList *c) |
| 4426 | { |
| 4427 | struct scsi_cmnd *cmd = c->scsi_cmd; |
| 4428 | struct hpsa_scsi_dev_t *dev = cmd->device->hostdata; |
| 4429 | struct raid_map_data *map = &dev->raid_map; |
| 4430 | struct raid_map_disk_data *dd = &map->data[0]; |
| 4431 | int is_write = 0; |
| 4432 | u32 map_index; |
| 4433 | u64 first_block, last_block; |
| 4434 | u32 block_cnt; |
| 4435 | u32 blocks_per_row; |
| 4436 | u64 first_row, last_row; |
| 4437 | u32 first_row_offset, last_row_offset; |
| 4438 | u32 first_column, last_column; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4439 | u64 r0_first_row, r0_last_row; |
| 4440 | u32 r5or6_blocks_per_row; |
| 4441 | u64 r5or6_first_row, r5or6_last_row; |
| 4442 | u32 r5or6_first_row_offset, r5or6_last_row_offset; |
| 4443 | u32 r5or6_first_column, r5or6_last_column; |
| 4444 | u32 total_disks_per_row; |
| 4445 | u32 stripesize; |
| 4446 | u32 first_group, last_group, current_group; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4447 | u32 map_row; |
| 4448 | u32 disk_handle; |
| 4449 | u64 disk_block; |
| 4450 | u32 disk_block_cnt; |
| 4451 | u8 cdb[16]; |
| 4452 | u8 cdb_len; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4453 | u16 strip_size; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4454 | #if BITS_PER_LONG == 32 |
| 4455 | u64 tmpdiv; |
| 4456 | #endif |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4457 | int offload_to_mirror; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4458 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4459 | /* check for valid opcode, get LBA and block count */ |
| 4460 | switch (cmd->cmnd[0]) { |
| 4461 | case WRITE_6: |
| 4462 | is_write = 1; |
| 4463 | case READ_6: |
Don Brace | c8a6c9a | 2015-11-04 15:50:50 -0600 | [diff] [blame] | 4464 | first_block = get_unaligned_be16(&cmd->cmnd[2]); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4465 | block_cnt = cmd->cmnd[4]; |
Stephen M. Cameron | 3fa89a0 | 2014-07-03 10:18:14 -0500 | [diff] [blame] | 4466 | if (block_cnt == 0) |
| 4467 | block_cnt = 256; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4468 | break; |
| 4469 | case WRITE_10: |
| 4470 | is_write = 1; |
| 4471 | case READ_10: |
| 4472 | first_block = |
| 4473 | (((u64) cmd->cmnd[2]) << 24) | |
| 4474 | (((u64) cmd->cmnd[3]) << 16) | |
| 4475 | (((u64) cmd->cmnd[4]) << 8) | |
| 4476 | cmd->cmnd[5]; |
| 4477 | block_cnt = |
| 4478 | (((u32) cmd->cmnd[7]) << 8) | |
| 4479 | cmd->cmnd[8]; |
| 4480 | break; |
| 4481 | case WRITE_12: |
| 4482 | is_write = 1; |
| 4483 | case READ_12: |
| 4484 | first_block = |
| 4485 | (((u64) cmd->cmnd[2]) << 24) | |
| 4486 | (((u64) cmd->cmnd[3]) << 16) | |
| 4487 | (((u64) cmd->cmnd[4]) << 8) | |
| 4488 | cmd->cmnd[5]; |
| 4489 | block_cnt = |
| 4490 | (((u32) cmd->cmnd[6]) << 24) | |
| 4491 | (((u32) cmd->cmnd[7]) << 16) | |
| 4492 | (((u32) cmd->cmnd[8]) << 8) | |
| 4493 | cmd->cmnd[9]; |
| 4494 | break; |
| 4495 | case WRITE_16: |
| 4496 | is_write = 1; |
| 4497 | case READ_16: |
| 4498 | first_block = |
| 4499 | (((u64) cmd->cmnd[2]) << 56) | |
| 4500 | (((u64) cmd->cmnd[3]) << 48) | |
| 4501 | (((u64) cmd->cmnd[4]) << 40) | |
| 4502 | (((u64) cmd->cmnd[5]) << 32) | |
| 4503 | (((u64) cmd->cmnd[6]) << 24) | |
| 4504 | (((u64) cmd->cmnd[7]) << 16) | |
| 4505 | (((u64) cmd->cmnd[8]) << 8) | |
| 4506 | cmd->cmnd[9]; |
| 4507 | block_cnt = |
| 4508 | (((u32) cmd->cmnd[10]) << 24) | |
| 4509 | (((u32) cmd->cmnd[11]) << 16) | |
| 4510 | (((u32) cmd->cmnd[12]) << 8) | |
| 4511 | cmd->cmnd[13]; |
| 4512 | break; |
| 4513 | default: |
| 4514 | return IO_ACCEL_INELIGIBLE; /* process via normal I/O path */ |
| 4515 | } |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4516 | last_block = first_block + block_cnt - 1; |
| 4517 | |
| 4518 | /* check for write to non-RAID-0 */ |
| 4519 | if (is_write && dev->raid_level != 0) |
| 4520 | return IO_ACCEL_INELIGIBLE; |
| 4521 | |
| 4522 | /* check for invalid block or wraparound */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4523 | if (last_block >= le64_to_cpu(map->volume_blk_cnt) || |
| 4524 | last_block < first_block) |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4525 | return IO_ACCEL_INELIGIBLE; |
| 4526 | |
| 4527 | /* calculate stripe information for the request */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4528 | blocks_per_row = le16_to_cpu(map->data_disks_per_row) * |
| 4529 | le16_to_cpu(map->strip_size); |
| 4530 | strip_size = le16_to_cpu(map->strip_size); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4531 | #if BITS_PER_LONG == 32 |
| 4532 | tmpdiv = first_block; |
| 4533 | (void) do_div(tmpdiv, blocks_per_row); |
| 4534 | first_row = tmpdiv; |
| 4535 | tmpdiv = last_block; |
| 4536 | (void) do_div(tmpdiv, blocks_per_row); |
| 4537 | last_row = tmpdiv; |
| 4538 | first_row_offset = (u32) (first_block - (first_row * blocks_per_row)); |
| 4539 | last_row_offset = (u32) (last_block - (last_row * blocks_per_row)); |
| 4540 | tmpdiv = first_row_offset; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4541 | (void) do_div(tmpdiv, strip_size); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4542 | first_column = tmpdiv; |
| 4543 | tmpdiv = last_row_offset; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4544 | (void) do_div(tmpdiv, strip_size); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4545 | last_column = tmpdiv; |
| 4546 | #else |
| 4547 | first_row = first_block / blocks_per_row; |
| 4548 | last_row = last_block / blocks_per_row; |
| 4549 | first_row_offset = (u32) (first_block - (first_row * blocks_per_row)); |
| 4550 | last_row_offset = (u32) (last_block - (last_row * blocks_per_row)); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4551 | first_column = first_row_offset / strip_size; |
| 4552 | last_column = last_row_offset / strip_size; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4553 | #endif |
| 4554 | |
| 4555 | /* if this isn't a single row/column then give to the controller */ |
| 4556 | if ((first_row != last_row) || (first_column != last_column)) |
| 4557 | return IO_ACCEL_INELIGIBLE; |
| 4558 | |
| 4559 | /* proceeding with driver mapping */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4560 | total_disks_per_row = le16_to_cpu(map->data_disks_per_row) + |
| 4561 | le16_to_cpu(map->metadata_disks_per_row); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4562 | map_row = ((u32)(first_row >> map->parity_rotation_shift)) % |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4563 | le16_to_cpu(map->row_cnt); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4564 | map_index = (map_row * total_disks_per_row) + first_column; |
| 4565 | |
| 4566 | switch (dev->raid_level) { |
| 4567 | case HPSA_RAID_0: |
| 4568 | break; /* nothing special to do */ |
| 4569 | case HPSA_RAID_1: |
| 4570 | /* Handles load balance across RAID 1 members. |
| 4571 | * (2-drive R1 and R10 with even # of drives.) |
| 4572 | * Appropriate for SSDs, not optimal for HDDs |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4573 | */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4574 | BUG_ON(le16_to_cpu(map->layout_map_count) != 2); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4575 | if (dev->offload_to_mirror) |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4576 | map_index += le16_to_cpu(map->data_disks_per_row); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4577 | dev->offload_to_mirror = !dev->offload_to_mirror; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4578 | break; |
| 4579 | case HPSA_RAID_ADM: |
| 4580 | /* Handles N-way mirrors (R1-ADM) |
| 4581 | * and R10 with # of drives divisible by 3.) |
| 4582 | */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4583 | BUG_ON(le16_to_cpu(map->layout_map_count) != 3); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4584 | |
| 4585 | offload_to_mirror = dev->offload_to_mirror; |
| 4586 | raid_map_helper(map, offload_to_mirror, |
| 4587 | &map_index, ¤t_group); |
| 4588 | /* set mirror group to use next time */ |
| 4589 | offload_to_mirror = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4590 | (offload_to_mirror >= |
| 4591 | le16_to_cpu(map->layout_map_count) - 1) |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4592 | ? 0 : offload_to_mirror + 1; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4593 | dev->offload_to_mirror = offload_to_mirror; |
| 4594 | /* Avoid direct use of dev->offload_to_mirror within this |
| 4595 | * function since multiple threads might simultaneously |
| 4596 | * increment it beyond the range of dev->layout_map_count -1. |
| 4597 | */ |
| 4598 | break; |
| 4599 | case HPSA_RAID_5: |
| 4600 | case HPSA_RAID_6: |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4601 | if (le16_to_cpu(map->layout_map_count) <= 1) |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4602 | break; |
| 4603 | |
| 4604 | /* Verify first and last block are in same RAID group */ |
| 4605 | r5or6_blocks_per_row = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4606 | le16_to_cpu(map->strip_size) * |
| 4607 | le16_to_cpu(map->data_disks_per_row); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4608 | BUG_ON(r5or6_blocks_per_row == 0); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4609 | stripesize = r5or6_blocks_per_row * |
| 4610 | le16_to_cpu(map->layout_map_count); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4611 | #if BITS_PER_LONG == 32 |
| 4612 | tmpdiv = first_block; |
| 4613 | first_group = do_div(tmpdiv, stripesize); |
| 4614 | tmpdiv = first_group; |
| 4615 | (void) do_div(tmpdiv, r5or6_blocks_per_row); |
| 4616 | first_group = tmpdiv; |
| 4617 | tmpdiv = last_block; |
| 4618 | last_group = do_div(tmpdiv, stripesize); |
| 4619 | tmpdiv = last_group; |
| 4620 | (void) do_div(tmpdiv, r5or6_blocks_per_row); |
| 4621 | last_group = tmpdiv; |
| 4622 | #else |
| 4623 | first_group = (first_block % stripesize) / r5or6_blocks_per_row; |
| 4624 | last_group = (last_block % stripesize) / r5or6_blocks_per_row; |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4625 | #endif |
Stephen M. Cameron | 000ff7c | 2014-03-13 17:12:50 -0500 | [diff] [blame] | 4626 | if (first_group != last_group) |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4627 | return IO_ACCEL_INELIGIBLE; |
| 4628 | |
| 4629 | /* Verify request is in a single row of RAID 5/6 */ |
| 4630 | #if BITS_PER_LONG == 32 |
| 4631 | tmpdiv = first_block; |
| 4632 | (void) do_div(tmpdiv, stripesize); |
| 4633 | first_row = r5or6_first_row = r0_first_row = tmpdiv; |
| 4634 | tmpdiv = last_block; |
| 4635 | (void) do_div(tmpdiv, stripesize); |
| 4636 | r5or6_last_row = r0_last_row = tmpdiv; |
| 4637 | #else |
| 4638 | first_row = r5or6_first_row = r0_first_row = |
| 4639 | first_block / stripesize; |
| 4640 | r5or6_last_row = r0_last_row = last_block / stripesize; |
| 4641 | #endif |
| 4642 | if (r5or6_first_row != r5or6_last_row) |
| 4643 | return IO_ACCEL_INELIGIBLE; |
| 4644 | |
| 4645 | |
| 4646 | /* Verify request is in a single column */ |
| 4647 | #if BITS_PER_LONG == 32 |
| 4648 | tmpdiv = first_block; |
| 4649 | first_row_offset = do_div(tmpdiv, stripesize); |
| 4650 | tmpdiv = first_row_offset; |
| 4651 | first_row_offset = (u32) do_div(tmpdiv, r5or6_blocks_per_row); |
| 4652 | r5or6_first_row_offset = first_row_offset; |
| 4653 | tmpdiv = last_block; |
| 4654 | r5or6_last_row_offset = do_div(tmpdiv, stripesize); |
| 4655 | tmpdiv = r5or6_last_row_offset; |
| 4656 | r5or6_last_row_offset = do_div(tmpdiv, r5or6_blocks_per_row); |
| 4657 | tmpdiv = r5or6_first_row_offset; |
| 4658 | (void) do_div(tmpdiv, map->strip_size); |
| 4659 | first_column = r5or6_first_column = tmpdiv; |
| 4660 | tmpdiv = r5or6_last_row_offset; |
| 4661 | (void) do_div(tmpdiv, map->strip_size); |
| 4662 | r5or6_last_column = tmpdiv; |
| 4663 | #else |
| 4664 | first_row_offset = r5or6_first_row_offset = |
| 4665 | (u32)((first_block % stripesize) % |
| 4666 | r5or6_blocks_per_row); |
| 4667 | |
| 4668 | r5or6_last_row_offset = |
| 4669 | (u32)((last_block % stripesize) % |
| 4670 | r5or6_blocks_per_row); |
| 4671 | |
| 4672 | first_column = r5or6_first_column = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4673 | r5or6_first_row_offset / le16_to_cpu(map->strip_size); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4674 | r5or6_last_column = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4675 | r5or6_last_row_offset / le16_to_cpu(map->strip_size); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4676 | #endif |
| 4677 | if (r5or6_first_column != r5or6_last_column) |
| 4678 | return IO_ACCEL_INELIGIBLE; |
| 4679 | |
| 4680 | /* Request is eligible */ |
| 4681 | map_row = ((u32)(first_row >> map->parity_rotation_shift)) % |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4682 | le16_to_cpu(map->row_cnt); |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4683 | |
| 4684 | map_index = (first_group * |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4685 | (le16_to_cpu(map->row_cnt) * total_disks_per_row)) + |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4686 | (map_row * total_disks_per_row) + first_column; |
| 4687 | break; |
| 4688 | default: |
| 4689 | return IO_ACCEL_INELIGIBLE; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4690 | } |
Scott Teel | 6b80b18 | 2014-02-18 13:56:55 -0600 | [diff] [blame] | 4691 | |
Stephen Cameron | 07543e0 | 2015-01-23 16:44:14 -0600 | [diff] [blame] | 4692 | if (unlikely(map_index >= RAID_MAP_MAX_ENTRIES)) |
| 4693 | return IO_ACCEL_INELIGIBLE; |
| 4694 | |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 4695 | c->phys_disk = dev->phys_disk[map_index]; |
| 4696 | |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4697 | disk_handle = dd[map_index].ioaccel_handle; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 4698 | disk_block = le64_to_cpu(map->disk_starting_blk) + |
| 4699 | first_row * le16_to_cpu(map->strip_size) + |
| 4700 | (first_row_offset - first_column * |
| 4701 | le16_to_cpu(map->strip_size)); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4702 | disk_block_cnt = block_cnt; |
| 4703 | |
| 4704 | /* handle differing logical/physical block sizes */ |
| 4705 | if (map->phys_blk_shift) { |
| 4706 | disk_block <<= map->phys_blk_shift; |
| 4707 | disk_block_cnt <<= map->phys_blk_shift; |
| 4708 | } |
| 4709 | BUG_ON(disk_block_cnt > 0xffff); |
| 4710 | |
| 4711 | /* build the new CDB for the physical disk I/O */ |
| 4712 | if (disk_block > 0xffffffff) { |
| 4713 | cdb[0] = is_write ? WRITE_16 : READ_16; |
| 4714 | cdb[1] = 0; |
| 4715 | cdb[2] = (u8) (disk_block >> 56); |
| 4716 | cdb[3] = (u8) (disk_block >> 48); |
| 4717 | cdb[4] = (u8) (disk_block >> 40); |
| 4718 | cdb[5] = (u8) (disk_block >> 32); |
| 4719 | cdb[6] = (u8) (disk_block >> 24); |
| 4720 | cdb[7] = (u8) (disk_block >> 16); |
| 4721 | cdb[8] = (u8) (disk_block >> 8); |
| 4722 | cdb[9] = (u8) (disk_block); |
| 4723 | cdb[10] = (u8) (disk_block_cnt >> 24); |
| 4724 | cdb[11] = (u8) (disk_block_cnt >> 16); |
| 4725 | cdb[12] = (u8) (disk_block_cnt >> 8); |
| 4726 | cdb[13] = (u8) (disk_block_cnt); |
| 4727 | cdb[14] = 0; |
| 4728 | cdb[15] = 0; |
| 4729 | cdb_len = 16; |
| 4730 | } else { |
| 4731 | cdb[0] = is_write ? WRITE_10 : READ_10; |
| 4732 | cdb[1] = 0; |
| 4733 | cdb[2] = (u8) (disk_block >> 24); |
| 4734 | cdb[3] = (u8) (disk_block >> 16); |
| 4735 | cdb[4] = (u8) (disk_block >> 8); |
| 4736 | cdb[5] = (u8) (disk_block); |
| 4737 | cdb[6] = 0; |
| 4738 | cdb[7] = (u8) (disk_block_cnt >> 8); |
| 4739 | cdb[8] = (u8) (disk_block_cnt); |
| 4740 | cdb[9] = 0; |
| 4741 | cdb_len = 10; |
| 4742 | } |
| 4743 | 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] | 4744 | dev->scsi3addr, |
| 4745 | dev->phys_disk[map_index]); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 4746 | } |
| 4747 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4748 | /* |
| 4749 | * Submit commands down the "normal" RAID stack path |
| 4750 | * All callers to hpsa_ciss_submit must check lockup_detected |
| 4751 | * beforehand, before (opt.) and after calling cmd_alloc |
| 4752 | */ |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4753 | static int hpsa_ciss_submit(struct ctlr_info *h, |
| 4754 | struct CommandList *c, struct scsi_cmnd *cmd, |
| 4755 | unsigned char scsi3addr[]) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4756 | { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4757 | cmd->host_scribble = (unsigned char *) c; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4758 | c->cmd_type = CMD_SCSI; |
| 4759 | c->scsi_cmd = cmd; |
| 4760 | c->Header.ReplyQueue = 0; /* unused in simple mode */ |
| 4761 | memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8); |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 4762 | c->Header.tag = cpu_to_le64((c->cmdindex << DIRECT_LOOKUP_SHIFT)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4763 | |
| 4764 | /* Fill in the request block... */ |
| 4765 | |
| 4766 | c->Request.Timeout = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4767 | BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB)); |
| 4768 | c->Request.CDBLen = cmd->cmd_len; |
| 4769 | memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4770 | switch (cmd->sc_data_direction) { |
| 4771 | case DMA_TO_DEVICE: |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 4772 | c->Request.type_attr_dir = |
| 4773 | TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_WRITE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4774 | break; |
| 4775 | case DMA_FROM_DEVICE: |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 4776 | c->Request.type_attr_dir = |
| 4777 | TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4778 | break; |
| 4779 | case DMA_NONE: |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 4780 | c->Request.type_attr_dir = |
| 4781 | TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_NONE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4782 | break; |
| 4783 | case DMA_BIDIRECTIONAL: |
| 4784 | /* This can happen if a buggy application does a scsi passthru |
| 4785 | * and sets both inlen and outlen to non-zero. ( see |
| 4786 | * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() ) |
| 4787 | */ |
| 4788 | |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 4789 | c->Request.type_attr_dir = |
| 4790 | TYPE_ATTR_DIR(TYPE_CMD, ATTR_SIMPLE, XFER_RSVD); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4791 | /* This is technically wrong, and hpsa controllers should |
| 4792 | * reject it with CMD_INVALID, which is the most correct |
| 4793 | * response, but non-fibre backends appear to let it |
| 4794 | * slide by, and give the same results as if this field |
| 4795 | * were set correctly. Either way is acceptable for |
| 4796 | * our purposes here. |
| 4797 | */ |
| 4798 | |
| 4799 | break; |
| 4800 | |
| 4801 | default: |
| 4802 | dev_err(&h->pdev->dev, "unknown data direction: %d\n", |
| 4803 | cmd->sc_data_direction); |
| 4804 | BUG(); |
| 4805 | break; |
| 4806 | } |
| 4807 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 4808 | if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */ |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 4809 | hpsa_cmd_resolve_and_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4810 | return SCSI_MLQUEUE_HOST_BUSY; |
| 4811 | } |
| 4812 | enqueue_cmd_and_start_io(h, c); |
| 4813 | /* the cmd'll come back via intr handler in complete_scsi_command() */ |
| 4814 | return 0; |
| 4815 | } |
| 4816 | |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 4817 | static void hpsa_cmd_init(struct ctlr_info *h, int index, |
| 4818 | struct CommandList *c) |
| 4819 | { |
| 4820 | dma_addr_t cmd_dma_handle, err_dma_handle; |
| 4821 | |
| 4822 | /* Zero out all of commandlist except the last field, refcount */ |
| 4823 | memset(c, 0, offsetof(struct CommandList, refcount)); |
| 4824 | c->Header.tag = cpu_to_le64((u64) (index << DIRECT_LOOKUP_SHIFT)); |
| 4825 | cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c); |
| 4826 | c->err_info = h->errinfo_pool + index; |
| 4827 | memset(c->err_info, 0, sizeof(*c->err_info)); |
| 4828 | err_dma_handle = h->errinfo_pool_dhandle |
| 4829 | + index * sizeof(*c->err_info); |
| 4830 | c->cmdindex = index; |
| 4831 | c->busaddr = (u32) cmd_dma_handle; |
| 4832 | c->ErrDesc.Addr = cpu_to_le64((u64) err_dma_handle); |
| 4833 | c->ErrDesc.Len = cpu_to_le32((u32) sizeof(*c->err_info)); |
| 4834 | c->h = h; |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 4835 | c->scsi_cmd = SCSI_CMD_IDLE; |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 4836 | } |
| 4837 | |
| 4838 | static void hpsa_preinitialize_commands(struct ctlr_info *h) |
| 4839 | { |
| 4840 | int i; |
| 4841 | |
| 4842 | for (i = 0; i < h->nr_cmds; i++) { |
| 4843 | struct CommandList *c = h->cmd_pool + i; |
| 4844 | |
| 4845 | hpsa_cmd_init(h, i, c); |
| 4846 | atomic_set(&c->refcount, 0); |
| 4847 | } |
| 4848 | } |
| 4849 | |
| 4850 | static inline void hpsa_cmd_partial_init(struct ctlr_info *h, int index, |
| 4851 | struct CommandList *c) |
| 4852 | { |
| 4853 | dma_addr_t cmd_dma_handle = h->cmd_pool_dhandle + index * sizeof(*c); |
| 4854 | |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 4855 | BUG_ON(c->cmdindex != index); |
| 4856 | |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 4857 | memset(c->Request.CDB, 0, sizeof(c->Request.CDB)); |
| 4858 | memset(c->err_info, 0, sizeof(*c->err_info)); |
| 4859 | c->busaddr = (u32) cmd_dma_handle; |
| 4860 | } |
| 4861 | |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4862 | static int hpsa_ioaccel_submit(struct ctlr_info *h, |
| 4863 | struct CommandList *c, struct scsi_cmnd *cmd, |
| 4864 | unsigned char *scsi3addr) |
| 4865 | { |
| 4866 | struct hpsa_scsi_dev_t *dev = cmd->device->hostdata; |
| 4867 | int rc = IO_ACCEL_INELIGIBLE; |
| 4868 | |
| 4869 | cmd->host_scribble = (unsigned char *) c; |
| 4870 | |
| 4871 | if (dev->offload_enabled) { |
| 4872 | hpsa_cmd_init(h, c->cmdindex, c); |
| 4873 | c->cmd_type = CMD_SCSI; |
| 4874 | c->scsi_cmd = cmd; |
| 4875 | rc = hpsa_scsi_ioaccel_raid_map(h, c); |
| 4876 | if (rc < 0) /* scsi_dma_map failed. */ |
| 4877 | rc = SCSI_MLQUEUE_HOST_BUSY; |
Joe Handzik | a3144e0 | 2015-04-23 09:32:59 -0500 | [diff] [blame] | 4878 | } else if (dev->hba_ioaccel_enabled) { |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4879 | hpsa_cmd_init(h, c->cmdindex, c); |
| 4880 | c->cmd_type = CMD_SCSI; |
| 4881 | c->scsi_cmd = cmd; |
| 4882 | rc = hpsa_scsi_ioaccel_direct_map(h, c); |
| 4883 | if (rc < 0) /* scsi_dma_map failed. */ |
| 4884 | rc = SCSI_MLQUEUE_HOST_BUSY; |
| 4885 | } |
| 4886 | return rc; |
| 4887 | } |
| 4888 | |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 4889 | static void hpsa_command_resubmit_worker(struct work_struct *work) |
| 4890 | { |
| 4891 | struct scsi_cmnd *cmd; |
| 4892 | struct hpsa_scsi_dev_t *dev; |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 4893 | struct CommandList *c = container_of(work, struct CommandList, work); |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 4894 | |
| 4895 | cmd = c->scsi_cmd; |
| 4896 | dev = cmd->device->hostdata; |
| 4897 | if (!dev) { |
| 4898 | cmd->result = DID_NO_CONNECT << 16; |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 4899 | return hpsa_cmd_free_and_done(c->h, c, cmd); |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 4900 | } |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 4901 | if (c->reset_pending) |
| 4902 | return hpsa_cmd_resolve_and_free(c->h, c); |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 4903 | if (c->abort_pending) |
| 4904 | return hpsa_cmd_abort_and_free(c->h, c, cmd); |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4905 | if (c->cmd_type == CMD_IOACCEL2) { |
| 4906 | struct ctlr_info *h = c->h; |
| 4907 | struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 4908 | int rc; |
| 4909 | |
| 4910 | if (c2->error_data.serv_response == |
| 4911 | IOACCEL2_STATUS_SR_TASK_COMP_SET_FULL) { |
| 4912 | rc = hpsa_ioaccel_submit(h, c, cmd, dev->scsi3addr); |
| 4913 | if (rc == 0) |
| 4914 | return; |
| 4915 | if (rc == SCSI_MLQUEUE_HOST_BUSY) { |
| 4916 | /* |
| 4917 | * If we get here, it means dma mapping failed. |
| 4918 | * Try again via scsi mid layer, which will |
| 4919 | * then get SCSI_MLQUEUE_HOST_BUSY. |
| 4920 | */ |
| 4921 | cmd->result = DID_IMM_RETRY << 16; |
Webb Scales | 8a0ff92 | 2015-04-23 09:34:11 -0500 | [diff] [blame] | 4922 | return hpsa_cmd_free_and_done(h, c, cmd); |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4923 | } |
| 4924 | /* else, fall thru and resubmit down CISS path */ |
| 4925 | } |
| 4926 | } |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 4927 | hpsa_cmd_partial_init(c->h, c->cmdindex, c); |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 4928 | if (hpsa_ciss_submit(c->h, c, cmd, dev->scsi3addr)) { |
| 4929 | /* |
| 4930 | * If we get here, it means dma mapping failed. Try |
| 4931 | * again via scsi mid layer, which will then get |
| 4932 | * SCSI_MLQUEUE_HOST_BUSY. |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4933 | * |
| 4934 | * hpsa_ciss_submit will have already freed c |
| 4935 | * if it encountered a dma mapping failure. |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 4936 | */ |
| 4937 | cmd->result = DID_IMM_RETRY << 16; |
| 4938 | cmd->scsi_done(cmd); |
| 4939 | } |
| 4940 | } |
| 4941 | |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4942 | /* Running in struct Scsi_Host->host_lock less mode */ |
| 4943 | static int hpsa_scsi_queue_command(struct Scsi_Host *sh, struct scsi_cmnd *cmd) |
| 4944 | { |
| 4945 | struct ctlr_info *h; |
| 4946 | struct hpsa_scsi_dev_t *dev; |
| 4947 | unsigned char scsi3addr[8]; |
| 4948 | struct CommandList *c; |
| 4949 | int rc = 0; |
| 4950 | |
| 4951 | /* Get the ptr to our adapter structure out of cmd->host. */ |
| 4952 | h = sdev_to_hba(cmd->device); |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 4953 | |
| 4954 | BUG_ON(cmd->request->tag < 0); |
| 4955 | |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4956 | dev = cmd->device->hostdata; |
| 4957 | if (!dev) { |
| 4958 | cmd->result = DID_NO_CONNECT << 16; |
| 4959 | cmd->scsi_done(cmd); |
| 4960 | return 0; |
| 4961 | } |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 4962 | |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4963 | memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr)); |
| 4964 | |
| 4965 | if (unlikely(lockup_detected(h))) { |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 4966 | cmd->result = DID_NO_CONNECT << 16; |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4967 | cmd->scsi_done(cmd); |
| 4968 | return 0; |
| 4969 | } |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 4970 | c = cmd_tagged_alloc(h, cmd); |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4971 | |
Stephen Cameron | 407863c | 2015-01-23 16:44:19 -0600 | [diff] [blame] | 4972 | /* |
| 4973 | * Call alternate submit routine for I/O accelerated commands. |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4974 | * Retries always go down the normal I/O path. |
| 4975 | */ |
| 4976 | if (likely(cmd->retries == 0 && |
| 4977 | cmd->request->cmd_type == REQ_TYPE_FS && |
| 4978 | h->acciopath_status)) { |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4979 | rc = hpsa_ioaccel_submit(h, c, cmd, scsi3addr); |
| 4980 | if (rc == 0) |
| 4981 | return 0; |
| 4982 | if (rc == SCSI_MLQUEUE_HOST_BUSY) { |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 4983 | hpsa_cmd_resolve_and_free(h, c); |
Webb Scales | 592a0ad | 2015-04-23 09:32:48 -0500 | [diff] [blame] | 4984 | return SCSI_MLQUEUE_HOST_BUSY; |
Stephen Cameron | 574f05d | 2015-01-23 16:43:20 -0600 | [diff] [blame] | 4985 | } |
| 4986 | } |
| 4987 | return hpsa_ciss_submit(h, c, cmd, scsi3addr); |
| 4988 | } |
| 4989 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 4990 | static void hpsa_scan_complete(struct ctlr_info *h) |
Stephen M. Cameron | 5f38936 | 2014-02-18 13:55:48 -0600 | [diff] [blame] | 4991 | { |
| 4992 | unsigned long flags; |
| 4993 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 4994 | spin_lock_irqsave(&h->scan_lock, flags); |
| 4995 | h->scan_finished = 1; |
| 4996 | wake_up_all(&h->scan_wait_queue); |
| 4997 | spin_unlock_irqrestore(&h->scan_lock, flags); |
Stephen M. Cameron | 5f38936 | 2014-02-18 13:55:48 -0600 | [diff] [blame] | 4998 | } |
| 4999 | |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 5000 | static void hpsa_scan_start(struct Scsi_Host *sh) |
| 5001 | { |
| 5002 | struct ctlr_info *h = shost_to_hba(sh); |
| 5003 | unsigned long flags; |
| 5004 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 5005 | /* |
| 5006 | * Don't let rescans be initiated on a controller known to be locked |
| 5007 | * up. If the controller locks up *during* a rescan, that thread is |
| 5008 | * probably hosed, but at least we can prevent new rescan threads from |
| 5009 | * piling up on a locked up controller. |
| 5010 | */ |
| 5011 | if (unlikely(lockup_detected(h))) |
| 5012 | return hpsa_scan_complete(h); |
Stephen M. Cameron | 5f38936 | 2014-02-18 13:55:48 -0600 | [diff] [blame] | 5013 | |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 5014 | /* wait until any scan already in progress is finished. */ |
| 5015 | while (1) { |
| 5016 | spin_lock_irqsave(&h->scan_lock, flags); |
| 5017 | if (h->scan_finished) |
| 5018 | break; |
| 5019 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 5020 | wait_event(h->scan_wait_queue, h->scan_finished); |
| 5021 | /* Note: We don't need to worry about a race between this |
| 5022 | * thread and driver unload because the midlayer will |
| 5023 | * have incremented the reference count, so unload won't |
| 5024 | * happen if we're in here. |
| 5025 | */ |
| 5026 | } |
| 5027 | h->scan_finished = 0; /* mark scan as in progress */ |
| 5028 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 5029 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 5030 | if (unlikely(lockup_detected(h))) |
| 5031 | return hpsa_scan_complete(h); |
Stephen M. Cameron | 5f38936 | 2014-02-18 13:55:48 -0600 | [diff] [blame] | 5032 | |
Don Brace | 8aa6068 | 2015-11-04 15:50:01 -0600 | [diff] [blame] | 5033 | hpsa_update_scsi_devices(h); |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 5034 | |
Webb Scales | 8ebc924 | 2015-01-23 16:44:50 -0600 | [diff] [blame] | 5035 | hpsa_scan_complete(h); |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 5036 | } |
| 5037 | |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 5038 | static int hpsa_change_queue_depth(struct scsi_device *sdev, int qdepth) |
| 5039 | { |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 5040 | struct hpsa_scsi_dev_t *logical_drive = sdev->hostdata; |
| 5041 | |
| 5042 | if (!logical_drive) |
| 5043 | return -ENODEV; |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 5044 | |
| 5045 | if (qdepth < 1) |
| 5046 | qdepth = 1; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 5047 | else if (qdepth > logical_drive->queue_depth) |
| 5048 | qdepth = logical_drive->queue_depth; |
| 5049 | |
| 5050 | return scsi_change_queue_depth(sdev, qdepth); |
Don Brace | 7c0a022 | 2015-01-23 16:41:30 -0600 | [diff] [blame] | 5051 | } |
| 5052 | |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 5053 | static int hpsa_scan_finished(struct Scsi_Host *sh, |
| 5054 | unsigned long elapsed_time) |
| 5055 | { |
| 5056 | struct ctlr_info *h = shost_to_hba(sh); |
| 5057 | unsigned long flags; |
| 5058 | int finished; |
| 5059 | |
| 5060 | spin_lock_irqsave(&h->scan_lock, flags); |
| 5061 | finished = h->scan_finished; |
| 5062 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 5063 | return finished; |
| 5064 | } |
| 5065 | |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 5066 | static int hpsa_scsi_host_alloc(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5067 | { |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 5068 | struct Scsi_Host *sh; |
| 5069 | int error; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5070 | |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 5071 | sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h)); |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 5072 | if (sh == NULL) { |
| 5073 | dev_err(&h->pdev->dev, "scsi_host_alloc failed\n"); |
| 5074 | return -ENOMEM; |
| 5075 | } |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 5076 | |
| 5077 | sh->io_port = 0; |
| 5078 | sh->n_io_port = 0; |
| 5079 | sh->this_id = -1; |
| 5080 | sh->max_channel = 3; |
| 5081 | sh->max_cmd_len = MAX_COMMAND_SIZE; |
| 5082 | sh->max_lun = HPSA_MAX_LUN; |
| 5083 | sh->max_id = HPSA_MAX_LUN; |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 5084 | sh->can_queue = h->nr_cmds - HPSA_NRESERVED_CMDS; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 5085 | sh->cmd_per_lun = sh->can_queue; |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 5086 | sh->sg_tablesize = h->maxsgentries; |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 5087 | sh->hostdata[0] = (unsigned long) h; |
| 5088 | sh->irq = h->intr[h->intr_mode]; |
| 5089 | sh->unique_id = sh->irq; |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5090 | error = scsi_init_shared_tag_map(sh, sh->can_queue); |
| 5091 | if (error) { |
| 5092 | dev_err(&h->pdev->dev, |
| 5093 | "%s: scsi_init_shared_tag_map failed for controller %d\n", |
| 5094 | __func__, h->ctlr); |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 5095 | scsi_host_put(sh); |
| 5096 | return error; |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5097 | } |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 5098 | h->scsi_host = sh; |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 5099 | return 0; |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 5100 | } |
Stephen M. Cameron | b705690 | 2012-01-19 14:00:53 -0600 | [diff] [blame] | 5101 | |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 5102 | static int hpsa_scsi_add_host(struct ctlr_info *h) |
| 5103 | { |
| 5104 | int rv; |
| 5105 | |
| 5106 | rv = scsi_add_host(h->scsi_host, &h->pdev->dev); |
| 5107 | if (rv) { |
| 5108 | dev_err(&h->pdev->dev, "scsi_add_host failed\n"); |
| 5109 | return rv; |
| 5110 | } |
| 5111 | scsi_scan_host(h->scsi_host); |
| 5112 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5113 | } |
| 5114 | |
Webb Scales | b69324f | 2015-04-23 09:34:22 -0500 | [diff] [blame] | 5115 | /* |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5116 | * The block layer has already gone to the trouble of picking out a unique, |
| 5117 | * small-integer tag for this request. We use an offset from that value as |
| 5118 | * an index to select our command block. (The offset allows us to reserve the |
| 5119 | * low-numbered entries for our own uses.) |
| 5120 | */ |
| 5121 | static int hpsa_get_cmd_index(struct scsi_cmnd *scmd) |
| 5122 | { |
| 5123 | int idx = scmd->request->tag; |
| 5124 | |
| 5125 | if (idx < 0) |
| 5126 | return idx; |
| 5127 | |
| 5128 | /* Offset to leave space for internal cmds. */ |
| 5129 | return idx += HPSA_NRESERVED_CMDS; |
| 5130 | } |
| 5131 | |
| 5132 | /* |
Webb Scales | b69324f | 2015-04-23 09:34:22 -0500 | [diff] [blame] | 5133 | * Send a TEST_UNIT_READY command to the specified LUN using the specified |
| 5134 | * reply queue; returns zero if the unit is ready, and non-zero otherwise. |
| 5135 | */ |
| 5136 | static int hpsa_send_test_unit_ready(struct ctlr_info *h, |
| 5137 | struct CommandList *c, unsigned char lunaddr[], |
| 5138 | int reply_queue) |
| 5139 | { |
| 5140 | int rc; |
| 5141 | |
| 5142 | /* Send the Test Unit Ready, fill_cmd can't fail, no mapping */ |
| 5143 | (void) fill_cmd(c, TEST_UNIT_READY, h, |
| 5144 | NULL, 0, 0, lunaddr, TYPE_CMD); |
| 5145 | rc = hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT); |
| 5146 | if (rc) |
| 5147 | return rc; |
| 5148 | /* no unmap needed here because no data xfer. */ |
| 5149 | |
| 5150 | /* Check if the unit is already ready. */ |
| 5151 | if (c->err_info->CommandStatus == CMD_SUCCESS) |
| 5152 | return 0; |
| 5153 | |
| 5154 | /* |
| 5155 | * The first command sent after reset will receive "unit attention" to |
| 5156 | * indicate that the LUN has been reset...this is actually what we're |
| 5157 | * looking for (but, success is good too). |
| 5158 | */ |
| 5159 | if (c->err_info->CommandStatus == CMD_TARGET_STATUS && |
| 5160 | c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION && |
| 5161 | (c->err_info->SenseInfo[2] == NO_SENSE || |
| 5162 | c->err_info->SenseInfo[2] == UNIT_ATTENTION)) |
| 5163 | return 0; |
| 5164 | |
| 5165 | return 1; |
| 5166 | } |
| 5167 | |
| 5168 | /* |
| 5169 | * Wait for a TEST_UNIT_READY command to complete, retrying as necessary; |
| 5170 | * returns zero when the unit is ready, and non-zero when giving up. |
| 5171 | */ |
| 5172 | static int hpsa_wait_for_test_unit_ready(struct ctlr_info *h, |
| 5173 | struct CommandList *c, |
| 5174 | unsigned char lunaddr[], int reply_queue) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5175 | { |
Tomas Henzl | 8919358 | 2014-02-21 16:25:05 -0600 | [diff] [blame] | 5176 | int rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5177 | int count = 0; |
| 5178 | int waittime = 1; /* seconds */ |
Webb Scales | b69324f | 2015-04-23 09:34:22 -0500 | [diff] [blame] | 5179 | |
| 5180 | /* Send test unit ready until device ready, or give up. */ |
| 5181 | for (count = 0; count < HPSA_TUR_RETRY_LIMIT; count++) { |
| 5182 | |
| 5183 | /* |
| 5184 | * Wait for a bit. do this first, because if we send |
| 5185 | * the TUR right away, the reset will just abort it. |
| 5186 | */ |
| 5187 | msleep(1000 * waittime); |
| 5188 | |
| 5189 | rc = hpsa_send_test_unit_ready(h, c, lunaddr, reply_queue); |
| 5190 | if (!rc) |
| 5191 | break; |
| 5192 | |
| 5193 | /* Increase wait time with each try, up to a point. */ |
| 5194 | if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS) |
| 5195 | waittime *= 2; |
| 5196 | |
| 5197 | dev_warn(&h->pdev->dev, |
| 5198 | "waiting %d secs for device to become ready.\n", |
| 5199 | waittime); |
| 5200 | } |
| 5201 | |
| 5202 | return rc; |
| 5203 | } |
| 5204 | |
| 5205 | static int wait_for_device_to_become_ready(struct ctlr_info *h, |
| 5206 | unsigned char lunaddr[], |
| 5207 | int reply_queue) |
| 5208 | { |
| 5209 | int first_queue; |
| 5210 | int last_queue; |
| 5211 | int rq; |
| 5212 | int rc = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5213 | struct CommandList *c; |
| 5214 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 5215 | c = cmd_alloc(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5216 | |
Webb Scales | b69324f | 2015-04-23 09:34:22 -0500 | [diff] [blame] | 5217 | /* |
| 5218 | * If no specific reply queue was requested, then send the TUR |
| 5219 | * repeatedly, requesting a reply on each reply queue; otherwise execute |
| 5220 | * the loop exactly once using only the specified queue. |
| 5221 | */ |
| 5222 | if (reply_queue == DEFAULT_REPLY_QUEUE) { |
| 5223 | first_queue = 0; |
| 5224 | last_queue = h->nreply_queues - 1; |
| 5225 | } else { |
| 5226 | first_queue = reply_queue; |
| 5227 | last_queue = reply_queue; |
| 5228 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5229 | |
Webb Scales | b69324f | 2015-04-23 09:34:22 -0500 | [diff] [blame] | 5230 | for (rq = first_queue; rq <= last_queue; rq++) { |
| 5231 | rc = hpsa_wait_for_test_unit_ready(h, c, lunaddr, rq); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5232 | if (rc) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5233 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5234 | } |
| 5235 | |
| 5236 | if (rc) |
| 5237 | dev_warn(&h->pdev->dev, "giving up on device.\n"); |
| 5238 | else |
| 5239 | dev_warn(&h->pdev->dev, "device is ready.\n"); |
| 5240 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 5241 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5242 | return rc; |
| 5243 | } |
| 5244 | |
| 5245 | /* Need at least one of these error handlers to keep ../scsi/hosts.c from |
| 5246 | * complaining. Doing a host- or bus-reset can't do anything good here. |
| 5247 | */ |
| 5248 | static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd) |
| 5249 | { |
| 5250 | int rc; |
| 5251 | struct ctlr_info *h; |
| 5252 | struct hpsa_scsi_dev_t *dev; |
Scott Teel | 0b9b7b6 | 2015-11-04 15:51:02 -0600 | [diff] [blame] | 5253 | u8 reset_type; |
Dan Carpenter | 2dc127b | 2015-06-04 17:47:56 +0300 | [diff] [blame] | 5254 | char msg[48]; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5255 | |
| 5256 | /* find the controller to which the command to be aborted was sent */ |
| 5257 | h = sdev_to_hba(scsicmd->device); |
| 5258 | if (h == NULL) /* paranoia */ |
| 5259 | return FAILED; |
Don Brace | e345893 | 2015-01-23 16:44:24 -0600 | [diff] [blame] | 5260 | |
| 5261 | if (lockup_detected(h)) |
| 5262 | return FAILED; |
| 5263 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5264 | dev = scsicmd->device->hostdata; |
| 5265 | if (!dev) { |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 5266 | dev_err(&h->pdev->dev, "%s: device lookup failed\n", __func__); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5267 | return FAILED; |
| 5268 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5269 | |
| 5270 | /* if controller locked up, we can guarantee command won't complete */ |
| 5271 | if (lockup_detected(h)) { |
Dan Carpenter | 2dc127b | 2015-06-04 17:47:56 +0300 | [diff] [blame] | 5272 | snprintf(msg, sizeof(msg), |
| 5273 | "cmd %d RESET FAILED, lockup detected", |
| 5274 | hpsa_get_cmd_index(scsicmd)); |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5275 | hpsa_show_dev_msg(KERN_WARNING, h, dev, msg); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5276 | return FAILED; |
| 5277 | } |
| 5278 | |
| 5279 | /* this reset request might be the result of a lockup; check */ |
| 5280 | if (detect_controller_lockup(h)) { |
Dan Carpenter | 2dc127b | 2015-06-04 17:47:56 +0300 | [diff] [blame] | 5281 | snprintf(msg, sizeof(msg), |
| 5282 | "cmd %d RESET FAILED, new lockup detected", |
| 5283 | hpsa_get_cmd_index(scsicmd)); |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5284 | hpsa_show_dev_msg(KERN_WARNING, h, dev, msg); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5285 | return FAILED; |
| 5286 | } |
| 5287 | |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 5288 | /* Do not attempt on controller */ |
| 5289 | if (is_hba_lunid(dev->scsi3addr)) |
| 5290 | return SUCCESS; |
| 5291 | |
Scott Teel | 0b9b7b6 | 2015-11-04 15:51:02 -0600 | [diff] [blame] | 5292 | if (is_logical_dev_addr_mode(dev->scsi3addr)) |
| 5293 | reset_type = HPSA_DEVICE_RESET_MSG; |
| 5294 | else |
| 5295 | reset_type = HPSA_PHYS_TARGET_RESET; |
| 5296 | |
| 5297 | sprintf(msg, "resetting %s", |
| 5298 | reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical "); |
| 5299 | hpsa_show_dev_msg(KERN_WARNING, h, dev, msg); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5300 | |
Don Brace | da03ded | 2015-11-04 15:50:56 -0600 | [diff] [blame] | 5301 | h->reset_in_progress = 1; |
| 5302 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5303 | /* send a reset to the SCSI LUN which the command was sent to */ |
Scott Teel | 0b9b7b6 | 2015-11-04 15:51:02 -0600 | [diff] [blame] | 5304 | rc = hpsa_do_reset(h, dev, dev->scsi3addr, reset_type, |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 5305 | DEFAULT_REPLY_QUEUE); |
Scott Teel | 0b9b7b6 | 2015-11-04 15:51:02 -0600 | [diff] [blame] | 5306 | sprintf(msg, "reset %s %s", |
| 5307 | reset_type == HPSA_DEVICE_RESET_MSG ? "logical " : "physical ", |
| 5308 | rc == 0 ? "completed successfully" : "failed"); |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 5309 | hpsa_show_dev_msg(KERN_WARNING, h, dev, msg); |
Don Brace | da03ded | 2015-11-04 15:50:56 -0600 | [diff] [blame] | 5310 | h->reset_in_progress = 0; |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 5311 | return rc == 0 ? SUCCESS : FAILED; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5312 | } |
| 5313 | |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 5314 | static void swizzle_abort_tag(u8 *tag) |
| 5315 | { |
| 5316 | u8 original_tag[8]; |
| 5317 | |
| 5318 | memcpy(original_tag, tag, 8); |
| 5319 | tag[0] = original_tag[3]; |
| 5320 | tag[1] = original_tag[2]; |
| 5321 | tag[2] = original_tag[1]; |
| 5322 | tag[3] = original_tag[0]; |
| 5323 | tag[4] = original_tag[7]; |
| 5324 | tag[5] = original_tag[6]; |
| 5325 | tag[6] = original_tag[5]; |
| 5326 | tag[7] = original_tag[4]; |
| 5327 | } |
| 5328 | |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5329 | static void hpsa_get_tag(struct ctlr_info *h, |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5330 | struct CommandList *c, __le32 *taglower, __le32 *tagupper) |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5331 | { |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5332 | u64 tag; |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5333 | if (c->cmd_type == CMD_IOACCEL1) { |
| 5334 | struct io_accel1_cmd *cm1 = (struct io_accel1_cmd *) |
| 5335 | &h->ioaccel_cmd_pool[c->cmdindex]; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5336 | tag = le64_to_cpu(cm1->tag); |
| 5337 | *tagupper = cpu_to_le32(tag >> 32); |
| 5338 | *taglower = cpu_to_le32(tag); |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5339 | return; |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5340 | } |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5341 | if (c->cmd_type == CMD_IOACCEL2) { |
| 5342 | struct io_accel2_cmd *cm2 = (struct io_accel2_cmd *) |
| 5343 | &h->ioaccel2_cmd_pool[c->cmdindex]; |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 5344 | /* upper tag not used in ioaccel2 mode */ |
| 5345 | memset(tagupper, 0, sizeof(*tagupper)); |
| 5346 | *taglower = cm2->Tag; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5347 | return; |
| 5348 | } |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5349 | tag = le64_to_cpu(c->Header.tag); |
| 5350 | *tagupper = cpu_to_le32(tag >> 32); |
| 5351 | *taglower = cpu_to_le32(tag); |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5352 | } |
| 5353 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5354 | static int hpsa_send_abort(struct ctlr_info *h, unsigned char *scsi3addr, |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5355 | struct CommandList *abort, int reply_queue) |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5356 | { |
| 5357 | int rc = IO_OK; |
| 5358 | struct CommandList *c; |
| 5359 | struct ErrorInfo *ei; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5360 | __le32 tagupper, taglower; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5361 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 5362 | c = cmd_alloc(h); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5363 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 5364 | /* fill_cmd can't fail here, no buffer to map */ |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5365 | (void) fill_cmd(c, HPSA_ABORT_MSG, h, &abort->Header.tag, |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 5366 | 0, 0, scsi3addr, TYPE_MSG); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5367 | if (h->needs_abort_tags_swizzled) |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 5368 | swizzle_abort_tag(&c->Request.CDB[4]); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5369 | (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT); |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5370 | hpsa_get_tag(h, abort, &taglower, &tagupper); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5371 | 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] | 5372 | __func__, tagupper, taglower); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5373 | /* no unmap needed here because no data xfer. */ |
| 5374 | |
| 5375 | ei = c->err_info; |
| 5376 | switch (ei->CommandStatus) { |
| 5377 | case CMD_SUCCESS: |
| 5378 | break; |
Stephen Cameron | 9437ac4 | 2015-04-23 09:32:16 -0500 | [diff] [blame] | 5379 | case CMD_TMF_STATUS: |
| 5380 | rc = hpsa_evaluate_tmf_status(h, c); |
| 5381 | break; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5382 | case CMD_UNABORTABLE: /* Very common, don't make noise. */ |
| 5383 | rc = -1; |
| 5384 | break; |
| 5385 | default: |
| 5386 | 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] | 5387 | __func__, tagupper, taglower); |
Stephen M. Cameron | d1e8bea | 2014-02-18 13:57:47 -0600 | [diff] [blame] | 5388 | hpsa_scsi_interpret_error(h, c); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5389 | rc = -1; |
| 5390 | break; |
| 5391 | } |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 5392 | cmd_free(h, c); |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 5393 | dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", |
| 5394 | __func__, tagupper, taglower); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5395 | return rc; |
| 5396 | } |
| 5397 | |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 5398 | static void setup_ioaccel2_abort_cmd(struct CommandList *c, struct ctlr_info *h, |
| 5399 | struct CommandList *command_to_abort, int reply_queue) |
| 5400 | { |
| 5401 | struct io_accel2_cmd *c2 = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 5402 | struct hpsa_tmf_struct *ac = (struct hpsa_tmf_struct *) c2; |
| 5403 | struct io_accel2_cmd *c2a = |
| 5404 | &h->ioaccel2_cmd_pool[command_to_abort->cmdindex]; |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 5405 | struct scsi_cmnd *scmd = command_to_abort->scsi_cmd; |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 5406 | struct hpsa_scsi_dev_t *dev = scmd->device->hostdata; |
| 5407 | |
| 5408 | /* |
| 5409 | * We're overlaying struct hpsa_tmf_struct on top of something which |
| 5410 | * was allocated as a struct io_accel2_cmd, so we better be sure it |
| 5411 | * actually fits, and doesn't overrun the error info space. |
| 5412 | */ |
| 5413 | BUILD_BUG_ON(sizeof(struct hpsa_tmf_struct) > |
| 5414 | sizeof(struct io_accel2_cmd)); |
| 5415 | BUG_ON(offsetof(struct io_accel2_cmd, error_data) < |
| 5416 | offsetof(struct hpsa_tmf_struct, error_len) + |
| 5417 | sizeof(ac->error_len)); |
| 5418 | |
| 5419 | c->cmd_type = IOACCEL2_TMF; |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 5420 | c->scsi_cmd = SCSI_CMD_BUSY; |
| 5421 | |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 5422 | /* Adjust the DMA address to point to the accelerated command buffer */ |
| 5423 | c->busaddr = (u32) h->ioaccel2_cmd_pool_dhandle + |
| 5424 | (c->cmdindex * sizeof(struct io_accel2_cmd)); |
| 5425 | BUG_ON(c->busaddr & 0x0000007F); |
| 5426 | |
| 5427 | memset(ac, 0, sizeof(*c2)); /* yes this is correct */ |
| 5428 | ac->iu_type = IOACCEL2_IU_TMF_TYPE; |
| 5429 | ac->reply_queue = reply_queue; |
| 5430 | ac->tmf = IOACCEL2_TMF_ABORT; |
| 5431 | ac->it_nexus = cpu_to_le32(dev->ioaccel_handle); |
| 5432 | memset(ac->lun_id, 0, sizeof(ac->lun_id)); |
| 5433 | ac->tag = cpu_to_le64(c->cmdindex << DIRECT_LOOKUP_SHIFT); |
| 5434 | ac->abort_tag = cpu_to_le64(le32_to_cpu(c2a->Tag)); |
| 5435 | ac->error_ptr = cpu_to_le64(c->busaddr + |
| 5436 | offsetof(struct io_accel2_cmd, error_data)); |
| 5437 | ac->error_len = cpu_to_le32(sizeof(c2->error_data)); |
| 5438 | } |
| 5439 | |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5440 | /* ioaccel2 path firmware cannot handle abort task requests. |
| 5441 | * Change abort requests to physical target reset, and send to the |
| 5442 | * address of the physical disk used for the ioaccel 2 command. |
| 5443 | * Return 0 on success (IO_OK) |
| 5444 | * -1 on failure |
| 5445 | */ |
| 5446 | |
| 5447 | static int hpsa_send_reset_as_abort_ioaccel2(struct ctlr_info *h, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5448 | unsigned char *scsi3addr, struct CommandList *abort, int reply_queue) |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5449 | { |
| 5450 | int rc = IO_OK; |
| 5451 | struct scsi_cmnd *scmd; /* scsi command within request being aborted */ |
| 5452 | struct hpsa_scsi_dev_t *dev; /* device to which scsi cmd was sent */ |
| 5453 | unsigned char phys_scsi3addr[8]; /* addr of phys disk with volume */ |
| 5454 | unsigned char *psa = &phys_scsi3addr[0]; |
| 5455 | |
| 5456 | /* Get a pointer to the hpsa logical device. */ |
Stephen Cameron | 7fa3030 | 2015-01-23 16:44:30 -0600 | [diff] [blame] | 5457 | scmd = abort->scsi_cmd; |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5458 | dev = (struct hpsa_scsi_dev_t *)(scmd->device->hostdata); |
| 5459 | if (dev == NULL) { |
| 5460 | dev_warn(&h->pdev->dev, |
| 5461 | "Cannot abort: no device pointer for command.\n"); |
| 5462 | return -1; /* not abortable */ |
| 5463 | } |
| 5464 | |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 5465 | if (h->raid_offload_debug > 0) |
| 5466 | dev_info(&h->pdev->dev, |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 5467 | "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] | 5468 | h->scsi_host->host_no, dev->bus, dev->target, dev->lun, |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 5469 | "Reset as abort", |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 5470 | scsi3addr[0], scsi3addr[1], scsi3addr[2], scsi3addr[3], |
| 5471 | scsi3addr[4], scsi3addr[5], scsi3addr[6], scsi3addr[7]); |
| 5472 | |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5473 | if (!dev->offload_enabled) { |
| 5474 | dev_warn(&h->pdev->dev, |
| 5475 | "Can't abort: device is not operating in HP SSD Smart Path mode.\n"); |
| 5476 | return -1; /* not abortable */ |
| 5477 | } |
| 5478 | |
| 5479 | /* Incoming scsi3addr is logical addr. We need physical disk addr. */ |
| 5480 | if (!hpsa_get_pdisk_of_ioaccel2(h, abort, psa)) { |
| 5481 | dev_warn(&h->pdev->dev, "Can't abort: Failed lookup of physical address.\n"); |
| 5482 | return -1; /* not abortable */ |
| 5483 | } |
| 5484 | |
| 5485 | /* send the reset */ |
Stephen M. Cameron | 2ba8bfc | 2014-02-18 13:57:52 -0600 | [diff] [blame] | 5486 | if (h->raid_offload_debug > 0) |
| 5487 | dev_info(&h->pdev->dev, |
| 5488 | "Reset as abort: Resetting physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 5489 | psa[0], psa[1], psa[2], psa[3], |
| 5490 | psa[4], psa[5], psa[6], psa[7]); |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 5491 | rc = hpsa_do_reset(h, dev, psa, HPSA_RESET_TYPE_TARGET, reply_queue); |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5492 | if (rc != 0) { |
| 5493 | dev_warn(&h->pdev->dev, |
| 5494 | "Reset as abort: Failed on physical device at scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 5495 | psa[0], psa[1], psa[2], psa[3], |
| 5496 | psa[4], psa[5], psa[6], psa[7]); |
| 5497 | return rc; /* failed to reset */ |
| 5498 | } |
| 5499 | |
| 5500 | /* wait for device to recover */ |
Webb Scales | b69324f | 2015-04-23 09:34:22 -0500 | [diff] [blame] | 5501 | if (wait_for_device_to_become_ready(h, psa, reply_queue) != 0) { |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5502 | dev_warn(&h->pdev->dev, |
| 5503 | "Reset as abort: Failed: Device never recovered from reset: 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 5504 | psa[0], psa[1], psa[2], psa[3], |
| 5505 | psa[4], psa[5], psa[6], psa[7]); |
| 5506 | return -1; /* failed to recover */ |
| 5507 | } |
| 5508 | |
| 5509 | /* device recovered */ |
| 5510 | dev_info(&h->pdev->dev, |
| 5511 | "Reset as abort: Device recovered from reset: scsi3addr 0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 5512 | psa[0], psa[1], psa[2], psa[3], |
| 5513 | psa[4], psa[5], psa[6], psa[7]); |
| 5514 | |
| 5515 | return rc; /* success */ |
| 5516 | } |
| 5517 | |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 5518 | static int hpsa_send_abort_ioaccel2(struct ctlr_info *h, |
| 5519 | struct CommandList *abort, int reply_queue) |
| 5520 | { |
| 5521 | int rc = IO_OK; |
| 5522 | struct CommandList *c; |
| 5523 | __le32 taglower, tagupper; |
| 5524 | struct hpsa_scsi_dev_t *dev; |
| 5525 | struct io_accel2_cmd *c2; |
| 5526 | |
| 5527 | dev = abort->scsi_cmd->device->hostdata; |
| 5528 | if (!dev->offload_enabled && !dev->hba_ioaccel_enabled) |
| 5529 | return -1; |
| 5530 | |
| 5531 | c = cmd_alloc(h); |
| 5532 | setup_ioaccel2_abort_cmd(c, h, abort, reply_queue); |
| 5533 | c2 = &h->ioaccel2_cmd_pool[c->cmdindex]; |
| 5534 | (void) hpsa_scsi_do_simple_cmd(h, c, reply_queue, NO_TIMEOUT); |
| 5535 | hpsa_get_tag(h, abort, &taglower, &tagupper); |
| 5536 | dev_dbg(&h->pdev->dev, |
| 5537 | "%s: Tag:0x%08x:%08x: do_simple_cmd(ioaccel2 abort) completed.\n", |
| 5538 | __func__, tagupper, taglower); |
| 5539 | /* no unmap needed here because no data xfer. */ |
| 5540 | |
| 5541 | dev_dbg(&h->pdev->dev, |
| 5542 | "%s: Tag:0x%08x:%08x: abort service response = 0x%02x.\n", |
| 5543 | __func__, tagupper, taglower, c2->error_data.serv_response); |
| 5544 | switch (c2->error_data.serv_response) { |
| 5545 | case IOACCEL2_SERV_RESPONSE_TMF_COMPLETE: |
| 5546 | case IOACCEL2_SERV_RESPONSE_TMF_SUCCESS: |
| 5547 | rc = 0; |
| 5548 | break; |
| 5549 | case IOACCEL2_SERV_RESPONSE_TMF_REJECTED: |
| 5550 | case IOACCEL2_SERV_RESPONSE_FAILURE: |
| 5551 | case IOACCEL2_SERV_RESPONSE_TMF_WRONG_LUN: |
| 5552 | rc = -1; |
| 5553 | break; |
| 5554 | default: |
| 5555 | dev_warn(&h->pdev->dev, |
| 5556 | "%s: Tag:0x%08x:%08x: unknown abort service response 0x%02x\n", |
| 5557 | __func__, tagupper, taglower, |
| 5558 | c2->error_data.serv_response); |
| 5559 | rc = -1; |
| 5560 | } |
| 5561 | cmd_free(h, c); |
| 5562 | dev_dbg(&h->pdev->dev, "%s: Tag:0x%08x:%08x: Finished.\n", __func__, |
| 5563 | tagupper, taglower); |
| 5564 | return rc; |
| 5565 | } |
| 5566 | |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 5567 | static int hpsa_send_abort_both_ways(struct ctlr_info *h, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5568 | unsigned char *scsi3addr, struct CommandList *abort, int reply_queue) |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 5569 | { |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 5570 | /* |
| 5571 | * ioccelerator mode 2 commands should be aborted via the |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5572 | * accelerated path, since RAID path is unaware of these commands, |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 5573 | * but not all underlying firmware can handle abort TMF. |
| 5574 | * Change abort to physical device reset when abort TMF is unsupported. |
Scott Teel | 54b6e9e | 2014-02-18 13:56:45 -0600 | [diff] [blame] | 5575 | */ |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 5576 | if (abort->cmd_type == CMD_IOACCEL2) { |
| 5577 | if (HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags) |
| 5578 | return hpsa_send_abort_ioaccel2(h, abort, |
| 5579 | reply_queue); |
| 5580 | else |
| 5581 | return hpsa_send_reset_as_abort_ioaccel2(h, scsi3addr, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5582 | abort, reply_queue); |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 5583 | } |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5584 | return hpsa_send_abort(h, scsi3addr, abort, reply_queue); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5585 | } |
| 5586 | |
| 5587 | /* Find out which reply queue a command was meant to return on */ |
| 5588 | static int hpsa_extract_reply_queue(struct ctlr_info *h, |
| 5589 | struct CommandList *c) |
| 5590 | { |
| 5591 | if (c->cmd_type == CMD_IOACCEL2) |
| 5592 | return h->ioaccel2_cmd_pool[c->cmdindex].reply_queue; |
| 5593 | return c->Header.ReplyQueue; |
Stephen M. Cameron | 6cba3f1 | 2012-05-01 11:42:56 -0500 | [diff] [blame] | 5594 | } |
| 5595 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5596 | /* |
| 5597 | * Limit concurrency of abort commands to prevent |
| 5598 | * over-subscription of commands |
| 5599 | */ |
| 5600 | static inline int wait_for_available_abort_cmd(struct ctlr_info *h) |
| 5601 | { |
| 5602 | #define ABORT_CMD_WAIT_MSECS 5000 |
| 5603 | return !wait_event_timeout(h->abort_cmd_wait_queue, |
| 5604 | atomic_dec_if_positive(&h->abort_cmds_available) >= 0, |
| 5605 | msecs_to_jiffies(ABORT_CMD_WAIT_MSECS)); |
| 5606 | } |
| 5607 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5608 | /* Send an abort for the specified command. |
| 5609 | * If the device and controller support it, |
| 5610 | * send a task abort request. |
| 5611 | */ |
| 5612 | static int hpsa_eh_abort_handler(struct scsi_cmnd *sc) |
| 5613 | { |
| 5614 | |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 5615 | int rc; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5616 | struct ctlr_info *h; |
| 5617 | struct hpsa_scsi_dev_t *dev; |
| 5618 | struct CommandList *abort; /* pointer to command to be aborted */ |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5619 | struct scsi_cmnd *as; /* ptr to scsi cmd inside aborted command. */ |
| 5620 | char msg[256]; /* For debug messaging. */ |
| 5621 | int ml = 0; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 5622 | __le32 tagupper, taglower; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5623 | int refcount, reply_queue; |
| 5624 | |
| 5625 | if (sc == NULL) |
| 5626 | return FAILED; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5627 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5628 | if (sc->device == NULL) |
| 5629 | return FAILED; |
| 5630 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5631 | /* Find the controller of the command to be aborted */ |
| 5632 | h = sdev_to_hba(sc->device); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5633 | if (h == NULL) |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5634 | return FAILED; |
| 5635 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5636 | /* Find the device of the command to be aborted */ |
| 5637 | dev = sc->device->hostdata; |
| 5638 | if (!dev) { |
| 5639 | dev_err(&h->pdev->dev, "%s FAILED, Device lookup failed.\n", |
| 5640 | msg); |
Don Brace | e345893 | 2015-01-23 16:44:24 -0600 | [diff] [blame] | 5641 | return FAILED; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5642 | } |
| 5643 | |
| 5644 | /* If controller locked up, we can guarantee command won't complete */ |
| 5645 | if (lockup_detected(h)) { |
| 5646 | hpsa_show_dev_msg(KERN_WARNING, h, dev, |
| 5647 | "ABORT FAILED, lockup detected"); |
| 5648 | return FAILED; |
| 5649 | } |
| 5650 | |
| 5651 | /* This is a good time to check if controller lockup has occurred */ |
| 5652 | if (detect_controller_lockup(h)) { |
| 5653 | hpsa_show_dev_msg(KERN_WARNING, h, dev, |
| 5654 | "ABORT FAILED, new lockup detected"); |
| 5655 | return FAILED; |
| 5656 | } |
Don Brace | e345893 | 2015-01-23 16:44:24 -0600 | [diff] [blame] | 5657 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5658 | /* Check that controller supports some kind of task abort */ |
| 5659 | if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags) && |
| 5660 | !(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags)) |
| 5661 | return FAILED; |
| 5662 | |
| 5663 | memset(msg, 0, sizeof(msg)); |
Robert Elliott | 4b76155 | 2015-04-23 09:33:54 -0500 | [diff] [blame] | 5664 | ml += sprintf(msg+ml, "scsi %d:%d:%d:%llu %s %p", |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5665 | h->scsi_host->host_no, sc->device->channel, |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 5666 | sc->device->id, sc->device->lun, |
Robert Elliott | 4b76155 | 2015-04-23 09:33:54 -0500 | [diff] [blame] | 5667 | "Aborting command", sc); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5668 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5669 | /* Get SCSI command to be aborted */ |
| 5670 | abort = (struct CommandList *) sc->host_scribble; |
| 5671 | if (abort == NULL) { |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5672 | /* This can happen if the command already completed. */ |
| 5673 | return SUCCESS; |
| 5674 | } |
| 5675 | refcount = atomic_inc_return(&abort->refcount); |
| 5676 | if (refcount == 1) { /* Command is done already. */ |
| 5677 | cmd_free(h, abort); |
| 5678 | return SUCCESS; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5679 | } |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5680 | |
| 5681 | /* Don't bother trying the abort if we know it won't work. */ |
| 5682 | if (abort->cmd_type != CMD_IOACCEL2 && |
| 5683 | abort->cmd_type != CMD_IOACCEL1 && !dev->supports_aborts) { |
| 5684 | cmd_free(h, abort); |
| 5685 | return FAILED; |
| 5686 | } |
| 5687 | |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 5688 | /* |
| 5689 | * Check that we're aborting the right command. |
| 5690 | * It's possible the CommandList already completed and got re-used. |
| 5691 | */ |
| 5692 | if (abort->scsi_cmd != sc) { |
| 5693 | cmd_free(h, abort); |
| 5694 | return SUCCESS; |
| 5695 | } |
| 5696 | |
| 5697 | abort->abort_pending = true; |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5698 | hpsa_get_tag(h, abort, &taglower, &tagupper); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5699 | reply_queue = hpsa_extract_reply_queue(h, abort); |
Scott Teel | 17eb87d | 2014-02-18 13:55:28 -0600 | [diff] [blame] | 5700 | ml += sprintf(msg+ml, "Tag:0x%08x:%08x ", tagupper, taglower); |
Stephen Cameron | 7fa3030 | 2015-01-23 16:44:30 -0600 | [diff] [blame] | 5701 | as = abort->scsi_cmd; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5702 | if (as != NULL) |
Robert Elliott | 4b76155 | 2015-04-23 09:33:54 -0500 | [diff] [blame] | 5703 | ml += sprintf(msg+ml, |
| 5704 | "CDBLen: %d CDB: 0x%02x%02x... SN: 0x%lx ", |
| 5705 | as->cmd_len, as->cmnd[0], as->cmnd[1], |
| 5706 | as->serial_number); |
| 5707 | dev_warn(&h->pdev->dev, "%s BEING SENT\n", msg); |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 5708 | hpsa_show_dev_msg(KERN_WARNING, h, dev, "Aborting command"); |
Robert Elliott | 4b76155 | 2015-04-23 09:33:54 -0500 | [diff] [blame] | 5709 | |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5710 | /* |
| 5711 | * Command is in flight, or possibly already completed |
| 5712 | * by the firmware (but not to the scsi mid layer) but we can't |
| 5713 | * distinguish which. Send the abort down. |
| 5714 | */ |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5715 | if (wait_for_available_abort_cmd(h)) { |
| 5716 | dev_warn(&h->pdev->dev, |
Robert Elliott | 4b76155 | 2015-04-23 09:33:54 -0500 | [diff] [blame] | 5717 | "%s FAILED, timeout waiting for an abort command to become available.\n", |
| 5718 | msg); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5719 | cmd_free(h, abort); |
| 5720 | return FAILED; |
| 5721 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 5722 | rc = hpsa_send_abort_both_ways(h, dev->scsi3addr, abort, reply_queue); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 5723 | atomic_inc(&h->abort_cmds_available); |
| 5724 | wake_up_all(&h->abort_cmd_wait_queue); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5725 | if (rc != 0) { |
Robert Elliott | 4b76155 | 2015-04-23 09:33:54 -0500 | [diff] [blame] | 5726 | dev_warn(&h->pdev->dev, "%s SENT, FAILED\n", msg); |
Webb Scales | 0d96ef5 | 2015-04-23 09:31:55 -0500 | [diff] [blame] | 5727 | hpsa_show_dev_msg(KERN_WARNING, h, dev, |
Robert Elliott | 4b76155 | 2015-04-23 09:33:54 -0500 | [diff] [blame] | 5728 | "FAILED to abort command"); |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5729 | cmd_free(h, abort); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5730 | return FAILED; |
| 5731 | } |
Robert Elliott | 4b76155 | 2015-04-23 09:33:54 -0500 | [diff] [blame] | 5732 | dev_info(&h->pdev->dev, "%s SENT, SUCCESS\n", msg); |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 5733 | wait_event(h->event_sync_wait_queue, |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 5734 | abort->scsi_cmd != sc || lockup_detected(h)); |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5735 | cmd_free(h, abort); |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 5736 | return !lockup_detected(h) ? SUCCESS : FAILED; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 5737 | } |
| 5738 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5739 | /* |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5740 | * For operations with an associated SCSI command, a command block is allocated |
| 5741 | * at init, and managed by cmd_tagged_alloc() and cmd_tagged_free() using the |
| 5742 | * block request tag as an index into a table of entries. cmd_tagged_free() is |
| 5743 | * the complement, although cmd_free() may be called instead. |
| 5744 | */ |
| 5745 | static struct CommandList *cmd_tagged_alloc(struct ctlr_info *h, |
| 5746 | struct scsi_cmnd *scmd) |
| 5747 | { |
| 5748 | int idx = hpsa_get_cmd_index(scmd); |
| 5749 | struct CommandList *c = h->cmd_pool + idx; |
| 5750 | |
| 5751 | if (idx < HPSA_NRESERVED_CMDS || idx >= h->nr_cmds) { |
| 5752 | dev_err(&h->pdev->dev, "Bad block tag: %d not in [%d..%d]\n", |
| 5753 | idx, HPSA_NRESERVED_CMDS, h->nr_cmds - 1); |
| 5754 | /* The index value comes from the block layer, so if it's out of |
| 5755 | * bounds, it's probably not our bug. |
| 5756 | */ |
| 5757 | BUG(); |
| 5758 | } |
| 5759 | |
| 5760 | atomic_inc(&c->refcount); |
| 5761 | if (unlikely(!hpsa_is_cmd_idle(c))) { |
| 5762 | /* |
| 5763 | * We expect that the SCSI layer will hand us a unique tag |
| 5764 | * value. Thus, there should never be a collision here between |
| 5765 | * two requests...because if the selected command isn't idle |
| 5766 | * then someone is going to be very disappointed. |
| 5767 | */ |
| 5768 | dev_err(&h->pdev->dev, |
| 5769 | "tag collision (tag=%d) in cmd_tagged_alloc().\n", |
| 5770 | idx); |
| 5771 | if (c->scsi_cmd != NULL) |
| 5772 | scsi_print_command(c->scsi_cmd); |
| 5773 | scsi_print_command(scmd); |
| 5774 | } |
| 5775 | |
| 5776 | hpsa_cmd_partial_init(h, idx, c); |
| 5777 | return c; |
| 5778 | } |
| 5779 | |
| 5780 | static void cmd_tagged_free(struct ctlr_info *h, struct CommandList *c) |
| 5781 | { |
| 5782 | /* |
| 5783 | * Release our reference to the block. We don't need to do anything |
| 5784 | * else to free it, because it is accessed by index. (There's no point |
| 5785 | * in checking the result of the decrement, since we cannot guarantee |
| 5786 | * that there isn't a concurrent abort which is also accessing it.) |
| 5787 | */ |
| 5788 | (void)atomic_dec(&c->refcount); |
| 5789 | } |
| 5790 | |
| 5791 | /* |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5792 | * For operations that cannot sleep, a command block is allocated at init, |
| 5793 | * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track |
| 5794 | * which ones are free or in use. Lock must be held when calling this. |
| 5795 | * cmd_free() is the complement. |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 5796 | * This function never gives up and returns NULL. If it hangs, |
| 5797 | * another thread must call cmd_free() to free some tags. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5798 | */ |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5799 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5800 | static struct CommandList *cmd_alloc(struct ctlr_info *h) |
| 5801 | { |
| 5802 | struct CommandList *c; |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 5803 | int refcount, i; |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5804 | int offset = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5805 | |
Robert Elliott | 3381102 | 2015-01-23 16:43:41 -0600 | [diff] [blame] | 5806 | /* |
| 5807 | * There is some *extremely* small but non-zero chance that that |
Stephen M. Cameron | 4c41312 | 2014-11-14 17:27:29 -0600 | [diff] [blame] | 5808 | * multiple threads could get in here, and one thread could |
| 5809 | * be scanning through the list of bits looking for a free |
| 5810 | * one, but the free ones are always behind him, and other |
| 5811 | * threads sneak in behind him and eat them before he can |
| 5812 | * get to them, so that while there is always a free one, a |
| 5813 | * very unlucky thread might be starved anyway, never able to |
| 5814 | * beat the other threads. In reality, this happens so |
| 5815 | * infrequently as to be indistinguishable from never. |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5816 | * |
| 5817 | * Note that we start allocating commands before the SCSI host structure |
| 5818 | * is initialized. Since the search starts at bit zero, this |
| 5819 | * all works, since we have at least one command structure available; |
| 5820 | * however, it means that the structures with the low indexes have to be |
| 5821 | * reserved for driver-initiated requests, while requests from the block |
| 5822 | * layer will use the higher indexes. |
Stephen M. Cameron | 4c41312 | 2014-11-14 17:27:29 -0600 | [diff] [blame] | 5823 | */ |
| 5824 | |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5825 | for (;;) { |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5826 | i = find_next_zero_bit(h->cmd_pool_bits, |
| 5827 | HPSA_NRESERVED_CMDS, |
| 5828 | offset); |
| 5829 | if (unlikely(i >= HPSA_NRESERVED_CMDS)) { |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5830 | offset = 0; |
| 5831 | continue; |
| 5832 | } |
| 5833 | c = h->cmd_pool + i; |
| 5834 | refcount = atomic_inc_return(&c->refcount); |
| 5835 | if (unlikely(refcount > 1)) { |
| 5836 | cmd_free(h, c); /* already in use */ |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5837 | offset = (i + 1) % HPSA_NRESERVED_CMDS; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5838 | continue; |
| 5839 | } |
| 5840 | set_bit(i & (BITS_PER_LONG - 1), |
| 5841 | h->cmd_pool_bits + (i / BITS_PER_LONG)); |
| 5842 | break; /* it's ours now. */ |
| 5843 | } |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 5844 | hpsa_cmd_partial_init(h, i, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5845 | return c; |
| 5846 | } |
| 5847 | |
Webb Scales | 73153fe | 2015-04-23 09:35:04 -0500 | [diff] [blame] | 5848 | /* |
| 5849 | * This is the complementary operation to cmd_alloc(). Note, however, in some |
| 5850 | * corner cases it may also be used to free blocks allocated by |
| 5851 | * cmd_tagged_alloc() in which case the ref-count decrement does the trick and |
| 5852 | * the clear-bit is harmless. |
| 5853 | */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5854 | static void cmd_free(struct ctlr_info *h, struct CommandList *c) |
| 5855 | { |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5856 | if (atomic_dec_and_test(&c->refcount)) { |
| 5857 | int i; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5858 | |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 5859 | i = c - h->cmd_pool; |
| 5860 | clear_bit(i & (BITS_PER_LONG - 1), |
| 5861 | h->cmd_pool_bits + (i / BITS_PER_LONG)); |
| 5862 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5863 | } |
| 5864 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5865 | #ifdef CONFIG_COMPAT |
| 5866 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5867 | static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd, |
| 5868 | void __user *arg) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5869 | { |
| 5870 | IOCTL32_Command_struct __user *arg32 = |
| 5871 | (IOCTL32_Command_struct __user *) arg; |
| 5872 | IOCTL_Command_struct arg64; |
| 5873 | IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64)); |
| 5874 | int err; |
| 5875 | u32 cp; |
| 5876 | |
Vasiliy Kulikov | 938abd8 | 2011-01-07 10:55:53 -0600 | [diff] [blame] | 5877 | memset(&arg64, 0, sizeof(arg64)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5878 | err = 0; |
| 5879 | err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info, |
| 5880 | sizeof(arg64.LUN_info)); |
| 5881 | err |= copy_from_user(&arg64.Request, &arg32->Request, |
| 5882 | sizeof(arg64.Request)); |
| 5883 | err |= copy_from_user(&arg64.error_info, &arg32->error_info, |
| 5884 | sizeof(arg64.error_info)); |
| 5885 | err |= get_user(arg64.buf_size, &arg32->buf_size); |
| 5886 | err |= get_user(cp, &arg32->buf); |
| 5887 | arg64.buf = compat_ptr(cp); |
| 5888 | err |= copy_to_user(p, &arg64, sizeof(arg64)); |
| 5889 | |
| 5890 | if (err) |
| 5891 | return -EFAULT; |
| 5892 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5893 | err = hpsa_ioctl(dev, CCISS_PASSTHRU, p); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5894 | if (err) |
| 5895 | return err; |
| 5896 | err |= copy_in_user(&arg32->error_info, &p->error_info, |
| 5897 | sizeof(arg32->error_info)); |
| 5898 | if (err) |
| 5899 | return -EFAULT; |
| 5900 | return err; |
| 5901 | } |
| 5902 | |
| 5903 | static int hpsa_ioctl32_big_passthru(struct scsi_device *dev, |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5904 | int cmd, void __user *arg) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5905 | { |
| 5906 | BIG_IOCTL32_Command_struct __user *arg32 = |
| 5907 | (BIG_IOCTL32_Command_struct __user *) arg; |
| 5908 | BIG_IOCTL_Command_struct arg64; |
| 5909 | BIG_IOCTL_Command_struct __user *p = |
| 5910 | compat_alloc_user_space(sizeof(arg64)); |
| 5911 | int err; |
| 5912 | u32 cp; |
| 5913 | |
Vasiliy Kulikov | 938abd8 | 2011-01-07 10:55:53 -0600 | [diff] [blame] | 5914 | memset(&arg64, 0, sizeof(arg64)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5915 | err = 0; |
| 5916 | err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info, |
| 5917 | sizeof(arg64.LUN_info)); |
| 5918 | err |= copy_from_user(&arg64.Request, &arg32->Request, |
| 5919 | sizeof(arg64.Request)); |
| 5920 | err |= copy_from_user(&arg64.error_info, &arg32->error_info, |
| 5921 | sizeof(arg64.error_info)); |
| 5922 | err |= get_user(arg64.buf_size, &arg32->buf_size); |
| 5923 | err |= get_user(arg64.malloc_size, &arg32->malloc_size); |
| 5924 | err |= get_user(cp, &arg32->buf); |
| 5925 | arg64.buf = compat_ptr(cp); |
| 5926 | err |= copy_to_user(p, &arg64, sizeof(arg64)); |
| 5927 | |
| 5928 | if (err) |
| 5929 | return -EFAULT; |
| 5930 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5931 | err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, p); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5932 | if (err) |
| 5933 | return err; |
| 5934 | err |= copy_in_user(&arg32->error_info, &p->error_info, |
| 5935 | sizeof(arg32->error_info)); |
| 5936 | if (err) |
| 5937 | return -EFAULT; |
| 5938 | return err; |
| 5939 | } |
Stephen M. Cameron | 71fe75a | 2010-02-04 08:43:51 -0600 | [diff] [blame] | 5940 | |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 5941 | 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] | 5942 | { |
| 5943 | switch (cmd) { |
| 5944 | case CCISS_GETPCIINFO: |
| 5945 | case CCISS_GETINTINFO: |
| 5946 | case CCISS_SETINTINFO: |
| 5947 | case CCISS_GETNODENAME: |
| 5948 | case CCISS_SETNODENAME: |
| 5949 | case CCISS_GETHEARTBEAT: |
| 5950 | case CCISS_GETBUSTYPES: |
| 5951 | case CCISS_GETFIRMVER: |
| 5952 | case CCISS_GETDRIVVER: |
| 5953 | case CCISS_REVALIDVOLS: |
| 5954 | case CCISS_DEREGDISK: |
| 5955 | case CCISS_REGNEWDISK: |
| 5956 | case CCISS_REGNEWD: |
| 5957 | case CCISS_RESCANDISK: |
| 5958 | case CCISS_GETLUNINFO: |
| 5959 | return hpsa_ioctl(dev, cmd, arg); |
| 5960 | |
| 5961 | case CCISS_PASSTHRU32: |
| 5962 | return hpsa_ioctl32_passthru(dev, cmd, arg); |
| 5963 | case CCISS_BIG_PASSTHRU32: |
| 5964 | return hpsa_ioctl32_big_passthru(dev, cmd, arg); |
| 5965 | |
| 5966 | default: |
| 5967 | return -ENOIOCTLCMD; |
| 5968 | } |
| 5969 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 5970 | #endif |
| 5971 | |
| 5972 | static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp) |
| 5973 | { |
| 5974 | struct hpsa_pci_info pciinfo; |
| 5975 | |
| 5976 | if (!argp) |
| 5977 | return -EINVAL; |
| 5978 | pciinfo.domain = pci_domain_nr(h->pdev->bus); |
| 5979 | pciinfo.bus = h->pdev->bus->number; |
| 5980 | pciinfo.dev_fn = h->pdev->devfn; |
| 5981 | pciinfo.board_id = h->board_id; |
| 5982 | if (copy_to_user(argp, &pciinfo, sizeof(pciinfo))) |
| 5983 | return -EFAULT; |
| 5984 | return 0; |
| 5985 | } |
| 5986 | |
| 5987 | static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp) |
| 5988 | { |
| 5989 | DriverVer_type DriverVer; |
| 5990 | unsigned char vmaj, vmin, vsubmin; |
| 5991 | int rc; |
| 5992 | |
| 5993 | rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu", |
| 5994 | &vmaj, &vmin, &vsubmin); |
| 5995 | if (rc != 3) { |
| 5996 | dev_info(&h->pdev->dev, "driver version string '%s' " |
| 5997 | "unrecognized.", HPSA_DRIVER_VERSION); |
| 5998 | vmaj = 0; |
| 5999 | vmin = 0; |
| 6000 | vsubmin = 0; |
| 6001 | } |
| 6002 | DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin; |
| 6003 | if (!argp) |
| 6004 | return -EINVAL; |
| 6005 | if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type))) |
| 6006 | return -EFAULT; |
| 6007 | return 0; |
| 6008 | } |
| 6009 | |
| 6010 | static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp) |
| 6011 | { |
| 6012 | IOCTL_Command_struct iocommand; |
| 6013 | struct CommandList *c; |
| 6014 | char *buff = NULL; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6015 | u64 temp64; |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 6016 | int rc = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6017 | |
| 6018 | if (!argp) |
| 6019 | return -EINVAL; |
| 6020 | if (!capable(CAP_SYS_RAWIO)) |
| 6021 | return -EPERM; |
| 6022 | if (copy_from_user(&iocommand, argp, sizeof(iocommand))) |
| 6023 | return -EFAULT; |
| 6024 | if ((iocommand.buf_size < 1) && |
| 6025 | (iocommand.Request.Type.Direction != XFER_NONE)) { |
| 6026 | return -EINVAL; |
| 6027 | } |
| 6028 | if (iocommand.buf_size > 0) { |
| 6029 | buff = kmalloc(iocommand.buf_size, GFP_KERNEL); |
| 6030 | if (buff == NULL) |
Robert Elliott | 2dd02d7 | 2015-04-23 09:33:43 -0500 | [diff] [blame] | 6031 | return -ENOMEM; |
Stephen M. Cameron | 9233fb1 | 2014-05-29 10:52:41 -0500 | [diff] [blame] | 6032 | if (iocommand.Request.Type.Direction & XFER_WRITE) { |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 6033 | /* Copy the data into the buffer we created */ |
| 6034 | if (copy_from_user(buff, iocommand.buf, |
| 6035 | iocommand.buf_size)) { |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 6036 | rc = -EFAULT; |
| 6037 | goto out_kfree; |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 6038 | } |
| 6039 | } else { |
| 6040 | memset(buff, 0, iocommand.buf_size); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6041 | } |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 6042 | } |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 6043 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 6044 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6045 | /* Fill in the command type */ |
| 6046 | c->cmd_type = CMD_IOCTL_PEND; |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 6047 | c->scsi_cmd = SCSI_CMD_BUSY; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6048 | /* Fill in Command Header */ |
| 6049 | c->Header.ReplyQueue = 0; /* unused in simple mode */ |
| 6050 | if (iocommand.buf_size > 0) { /* buffer to fill */ |
| 6051 | c->Header.SGList = 1; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6052 | c->Header.SGTotal = cpu_to_le16(1); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6053 | } else { /* no buffers to fill */ |
| 6054 | c->Header.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6055 | c->Header.SGTotal = cpu_to_le16(0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6056 | } |
| 6057 | memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6058 | |
| 6059 | /* Fill in Request block */ |
| 6060 | memcpy(&c->Request, &iocommand.Request, |
| 6061 | sizeof(c->Request)); |
| 6062 | |
| 6063 | /* Fill in the scatter gather information */ |
| 6064 | if (iocommand.buf_size > 0) { |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6065 | temp64 = pci_map_single(h->pdev, buff, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6066 | iocommand.buf_size, PCI_DMA_BIDIRECTIONAL); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6067 | if (dma_mapping_error(&h->pdev->dev, (dma_addr_t) temp64)) { |
| 6068 | c->SG[0].Addr = cpu_to_le64(0); |
| 6069 | c->SG[0].Len = cpu_to_le32(0); |
Stephen M. Cameron | bcc48ff | 2013-02-20 11:24:57 -0600 | [diff] [blame] | 6070 | rc = -ENOMEM; |
| 6071 | goto out; |
| 6072 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6073 | c->SG[0].Addr = cpu_to_le64(temp64); |
| 6074 | c->SG[0].Len = cpu_to_le32(iocommand.buf_size); |
| 6075 | 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] | 6076 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 6077 | 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] | 6078 | if (iocommand.buf_size > 0) |
| 6079 | hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6080 | check_ioctl_unit_attention(h, c); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 6081 | if (rc) { |
| 6082 | rc = -EIO; |
| 6083 | goto out; |
| 6084 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6085 | |
| 6086 | /* Copy the error information out */ |
| 6087 | memcpy(&iocommand.error_info, c->err_info, |
| 6088 | sizeof(iocommand.error_info)); |
| 6089 | if (copy_to_user(argp, &iocommand, sizeof(iocommand))) { |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 6090 | rc = -EFAULT; |
| 6091 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6092 | } |
Stephen M. Cameron | 9233fb1 | 2014-05-29 10:52:41 -0500 | [diff] [blame] | 6093 | if ((iocommand.Request.Type.Direction & XFER_READ) && |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 6094 | iocommand.buf_size > 0) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6095 | /* Copy the data out of the buffer we created */ |
| 6096 | if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) { |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 6097 | rc = -EFAULT; |
| 6098 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6099 | } |
| 6100 | } |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 6101 | out: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 6102 | cmd_free(h, c); |
Stephen M. Cameron | c1f63c8 | 2013-02-20 11:24:52 -0600 | [diff] [blame] | 6103 | out_kfree: |
| 6104 | kfree(buff); |
| 6105 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6106 | } |
| 6107 | |
| 6108 | static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp) |
| 6109 | { |
| 6110 | BIG_IOCTL_Command_struct *ioc; |
| 6111 | struct CommandList *c; |
| 6112 | unsigned char **buff = NULL; |
| 6113 | int *buff_size = NULL; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6114 | u64 temp64; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6115 | BYTE sg_used = 0; |
| 6116 | int status = 0; |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 6117 | u32 left; |
| 6118 | u32 sz; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6119 | BYTE __user *data_ptr; |
| 6120 | |
| 6121 | if (!argp) |
| 6122 | return -EINVAL; |
| 6123 | if (!capable(CAP_SYS_RAWIO)) |
| 6124 | return -EPERM; |
| 6125 | ioc = (BIG_IOCTL_Command_struct *) |
| 6126 | kmalloc(sizeof(*ioc), GFP_KERNEL); |
| 6127 | if (!ioc) { |
| 6128 | status = -ENOMEM; |
| 6129 | goto cleanup1; |
| 6130 | } |
| 6131 | if (copy_from_user(ioc, argp, sizeof(*ioc))) { |
| 6132 | status = -EFAULT; |
| 6133 | goto cleanup1; |
| 6134 | } |
| 6135 | if ((ioc->buf_size < 1) && |
| 6136 | (ioc->Request.Type.Direction != XFER_NONE)) { |
| 6137 | status = -EINVAL; |
| 6138 | goto cleanup1; |
| 6139 | } |
| 6140 | /* Check kmalloc limits using all SGs */ |
| 6141 | if (ioc->malloc_size > MAX_KMALLOC_SIZE) { |
| 6142 | status = -EINVAL; |
| 6143 | goto cleanup1; |
| 6144 | } |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 6145 | if (ioc->buf_size > ioc->malloc_size * SG_ENTRIES_IN_CMD) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6146 | status = -EINVAL; |
| 6147 | goto cleanup1; |
| 6148 | } |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 6149 | buff = kzalloc(SG_ENTRIES_IN_CMD * sizeof(char *), GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6150 | if (!buff) { |
| 6151 | status = -ENOMEM; |
| 6152 | goto cleanup1; |
| 6153 | } |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 6154 | buff_size = kmalloc(SG_ENTRIES_IN_CMD * sizeof(int), GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6155 | if (!buff_size) { |
| 6156 | status = -ENOMEM; |
| 6157 | goto cleanup1; |
| 6158 | } |
| 6159 | left = ioc->buf_size; |
| 6160 | data_ptr = ioc->buf; |
| 6161 | while (left) { |
| 6162 | sz = (left > ioc->malloc_size) ? ioc->malloc_size : left; |
| 6163 | buff_size[sg_used] = sz; |
| 6164 | buff[sg_used] = kmalloc(sz, GFP_KERNEL); |
| 6165 | if (buff[sg_used] == NULL) { |
| 6166 | status = -ENOMEM; |
| 6167 | goto cleanup1; |
| 6168 | } |
Stephen M. Cameron | 9233fb1 | 2014-05-29 10:52:41 -0500 | [diff] [blame] | 6169 | if (ioc->Request.Type.Direction & XFER_WRITE) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6170 | if (copy_from_user(buff[sg_used], data_ptr, sz)) { |
Stephen M. Cameron | 0758f4f | 2014-07-03 10:18:03 -0500 | [diff] [blame] | 6171 | status = -EFAULT; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6172 | goto cleanup1; |
| 6173 | } |
| 6174 | } else |
| 6175 | memset(buff[sg_used], 0, sz); |
| 6176 | left -= sz; |
| 6177 | data_ptr += sz; |
| 6178 | sg_used++; |
| 6179 | } |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 6180 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 6181 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6182 | c->cmd_type = CMD_IOCTL_PEND; |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 6183 | c->scsi_cmd = SCSI_CMD_BUSY; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6184 | c->Header.ReplyQueue = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6185 | c->Header.SGList = (u8) sg_used; |
| 6186 | c->Header.SGTotal = cpu_to_le16(sg_used); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6187 | memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6188 | memcpy(&c->Request, &ioc->Request, sizeof(c->Request)); |
| 6189 | if (ioc->buf_size > 0) { |
| 6190 | int i; |
| 6191 | for (i = 0; i < sg_used; i++) { |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6192 | temp64 = pci_map_single(h->pdev, buff[i], |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6193 | buff_size[i], PCI_DMA_BIDIRECTIONAL); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6194 | if (dma_mapping_error(&h->pdev->dev, |
| 6195 | (dma_addr_t) temp64)) { |
| 6196 | c->SG[i].Addr = cpu_to_le64(0); |
| 6197 | c->SG[i].Len = cpu_to_le32(0); |
Stephen M. Cameron | bcc48ff | 2013-02-20 11:24:57 -0600 | [diff] [blame] | 6198 | hpsa_pci_unmap(h->pdev, c, i, |
| 6199 | PCI_DMA_BIDIRECTIONAL); |
| 6200 | status = -ENOMEM; |
Stephen M. Cameron | e2d4a1f | 2013-09-23 13:33:51 -0500 | [diff] [blame] | 6201 | goto cleanup0; |
Stephen M. Cameron | bcc48ff | 2013-02-20 11:24:57 -0600 | [diff] [blame] | 6202 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6203 | c->SG[i].Addr = cpu_to_le64(temp64); |
| 6204 | c->SG[i].Len = cpu_to_le32(buff_size[i]); |
| 6205 | c->SG[i].Ext = cpu_to_le32(0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6206 | } |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6207 | c->SG[--i].Ext = cpu_to_le32(HPSA_SG_LAST); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6208 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 6209 | 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] | 6210 | if (sg_used) |
| 6211 | hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6212 | check_ioctl_unit_attention(h, c); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 6213 | if (status) { |
| 6214 | status = -EIO; |
| 6215 | goto cleanup0; |
| 6216 | } |
| 6217 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6218 | /* Copy the error information out */ |
| 6219 | memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info)); |
| 6220 | if (copy_to_user(argp, ioc, sizeof(*ioc))) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6221 | status = -EFAULT; |
Stephen M. Cameron | e2d4a1f | 2013-09-23 13:33:51 -0500 | [diff] [blame] | 6222 | goto cleanup0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6223 | } |
Stephen M. Cameron | 9233fb1 | 2014-05-29 10:52:41 -0500 | [diff] [blame] | 6224 | if ((ioc->Request.Type.Direction & XFER_READ) && ioc->buf_size > 0) { |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6225 | int i; |
| 6226 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6227 | /* Copy the data out of the buffer we created */ |
| 6228 | BYTE __user *ptr = ioc->buf; |
| 6229 | for (i = 0; i < sg_used; i++) { |
| 6230 | if (copy_to_user(ptr, buff[i], buff_size[i])) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6231 | status = -EFAULT; |
Stephen M. Cameron | e2d4a1f | 2013-09-23 13:33:51 -0500 | [diff] [blame] | 6232 | goto cleanup0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6233 | } |
| 6234 | ptr += buff_size[i]; |
| 6235 | } |
| 6236 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6237 | status = 0; |
Stephen M. Cameron | e2d4a1f | 2013-09-23 13:33:51 -0500 | [diff] [blame] | 6238 | cleanup0: |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 6239 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6240 | cleanup1: |
| 6241 | if (buff) { |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6242 | int i; |
| 6243 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6244 | for (i = 0; i < sg_used; i++) |
| 6245 | kfree(buff[i]); |
| 6246 | kfree(buff); |
| 6247 | } |
| 6248 | kfree(buff_size); |
| 6249 | kfree(ioc); |
| 6250 | return status; |
| 6251 | } |
| 6252 | |
| 6253 | static void check_ioctl_unit_attention(struct ctlr_info *h, |
| 6254 | struct CommandList *c) |
| 6255 | { |
| 6256 | if (c->err_info->CommandStatus == CMD_TARGET_STATUS && |
| 6257 | c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION) |
| 6258 | (void) check_for_unit_attention(h, c); |
| 6259 | } |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 6260 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6261 | /* |
| 6262 | * ioctl |
| 6263 | */ |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 6264 | 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] | 6265 | { |
| 6266 | struct ctlr_info *h; |
| 6267 | void __user *argp = (void __user *)arg; |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 6268 | int rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6269 | |
| 6270 | h = sdev_to_hba(dev); |
| 6271 | |
| 6272 | switch (cmd) { |
| 6273 | case CCISS_DEREGDISK: |
| 6274 | case CCISS_REGNEWDISK: |
| 6275 | case CCISS_REGNEWD: |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 6276 | hpsa_scan_start(h->scsi_host); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6277 | return 0; |
| 6278 | case CCISS_GETPCIINFO: |
| 6279 | return hpsa_getpciinfo_ioctl(h, argp); |
| 6280 | case CCISS_GETDRIVVER: |
| 6281 | return hpsa_getdrivver_ioctl(h, argp); |
| 6282 | case CCISS_PASSTHRU: |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 6283 | if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0) |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 6284 | return -EAGAIN; |
| 6285 | rc = hpsa_passthru_ioctl(h, argp); |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 6286 | atomic_inc(&h->passthru_cmds_avail); |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 6287 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6288 | case CCISS_BIG_PASSTHRU: |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 6289 | if (atomic_dec_if_positive(&h->passthru_cmds_avail) < 0) |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 6290 | return -EAGAIN; |
| 6291 | rc = hpsa_big_passthru_ioctl(h, argp); |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 6292 | atomic_inc(&h->passthru_cmds_avail); |
Stephen M. Cameron | 0390f0c | 2013-09-23 13:34:12 -0500 | [diff] [blame] | 6293 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6294 | default: |
| 6295 | return -ENOTTY; |
| 6296 | } |
| 6297 | } |
| 6298 | |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 6299 | 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] | 6300 | u8 reset_type) |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6301 | { |
| 6302 | struct CommandList *c; |
| 6303 | |
| 6304 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 6305 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 6306 | /* fill_cmd can't fail here, no data buffer to map */ |
| 6307 | (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] | 6308 | RAID_CTLR_LUNID, TYPE_MSG); |
| 6309 | c->Request.CDB[1] = reset_type; /* fill_cmd defaults to target reset */ |
| 6310 | c->waiting = NULL; |
| 6311 | enqueue_cmd_and_start_io(h, c); |
| 6312 | /* Don't wait for completion, the reset won't complete. Don't free |
| 6313 | * the command either. This is the last command we will send before |
| 6314 | * re-initializing everything, so it doesn't matter and won't leak. |
| 6315 | */ |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 6316 | return; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6317 | } |
| 6318 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 6319 | 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] | 6320 | void *buff, size_t size, u16 page_code, unsigned char *scsi3addr, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6321 | int cmd_type) |
| 6322 | { |
| 6323 | int pci_dir = XFER_NONE; |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 6324 | u64 tag; /* for commands to be aborted */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6325 | |
| 6326 | c->cmd_type = CMD_IOCTL_PEND; |
Webb Scales | a58e7e5 | 2015-04-23 09:34:16 -0500 | [diff] [blame] | 6327 | c->scsi_cmd = SCSI_CMD_BUSY; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6328 | c->Header.ReplyQueue = 0; |
| 6329 | if (buff != NULL && size > 0) { |
| 6330 | c->Header.SGList = 1; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6331 | c->Header.SGTotal = cpu_to_le16(1); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6332 | } else { |
| 6333 | c->Header.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6334 | c->Header.SGTotal = cpu_to_le16(0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6335 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6336 | memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8); |
| 6337 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6338 | if (cmd_type == TYPE_CMD) { |
| 6339 | switch (cmd) { |
| 6340 | case HPSA_INQUIRY: |
| 6341 | /* are we trying to read a vital product page */ |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 6342 | if (page_code & VPD_PAGE) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6343 | c->Request.CDB[1] = 0x01; |
Stephen M. Cameron | b7bb24e | 2014-02-18 13:57:11 -0600 | [diff] [blame] | 6344 | c->Request.CDB[2] = (page_code & 0xff); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6345 | } |
| 6346 | c->Request.CDBLen = 6; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6347 | c->Request.type_attr_dir = |
| 6348 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6349 | c->Request.Timeout = 0; |
| 6350 | c->Request.CDB[0] = HPSA_INQUIRY; |
| 6351 | c->Request.CDB[4] = size & 0xFF; |
| 6352 | break; |
| 6353 | case HPSA_REPORT_LOG: |
| 6354 | case HPSA_REPORT_PHYS: |
| 6355 | /* Talking to controller so It's a physical command |
| 6356 | mode = 00 target = 0. Nothing to write. |
| 6357 | */ |
| 6358 | c->Request.CDBLen = 12; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6359 | c->Request.type_attr_dir = |
| 6360 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6361 | c->Request.Timeout = 0; |
| 6362 | c->Request.CDB[0] = cmd; |
| 6363 | c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */ |
| 6364 | c->Request.CDB[7] = (size >> 16) & 0xFF; |
| 6365 | c->Request.CDB[8] = (size >> 8) & 0xFF; |
| 6366 | c->Request.CDB[9] = size & 0xFF; |
| 6367 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6368 | case HPSA_CACHE_FLUSH: |
| 6369 | c->Request.CDBLen = 12; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6370 | c->Request.type_attr_dir = |
| 6371 | TYPE_ATTR_DIR(cmd_type, |
| 6372 | ATTR_SIMPLE, XFER_WRITE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6373 | c->Request.Timeout = 0; |
| 6374 | c->Request.CDB[0] = BMIC_WRITE; |
| 6375 | c->Request.CDB[6] = BMIC_CACHE_FLUSH; |
Stephen M. Cameron | bb158ea | 2011-10-26 16:21:17 -0500 | [diff] [blame] | 6376 | c->Request.CDB[7] = (size >> 8) & 0xFF; |
| 6377 | c->Request.CDB[8] = size & 0xFF; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6378 | break; |
| 6379 | case TEST_UNIT_READY: |
| 6380 | c->Request.CDBLen = 6; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6381 | c->Request.type_attr_dir = |
| 6382 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6383 | c->Request.Timeout = 0; |
| 6384 | break; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 6385 | case HPSA_GET_RAID_MAP: |
| 6386 | c->Request.CDBLen = 12; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6387 | c->Request.type_attr_dir = |
| 6388 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 6389 | c->Request.Timeout = 0; |
| 6390 | c->Request.CDB[0] = HPSA_CISS_READ; |
| 6391 | c->Request.CDB[1] = cmd; |
| 6392 | c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */ |
| 6393 | c->Request.CDB[7] = (size >> 16) & 0xFF; |
| 6394 | c->Request.CDB[8] = (size >> 8) & 0xFF; |
| 6395 | c->Request.CDB[9] = size & 0xFF; |
| 6396 | break; |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 6397 | case BMIC_SENSE_CONTROLLER_PARAMETERS: |
| 6398 | c->Request.CDBLen = 10; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6399 | c->Request.type_attr_dir = |
| 6400 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
Stephen M. Cameron | 316b221 | 2014-02-21 16:25:15 -0600 | [diff] [blame] | 6401 | c->Request.Timeout = 0; |
| 6402 | c->Request.CDB[0] = BMIC_READ; |
| 6403 | c->Request.CDB[6] = BMIC_SENSE_CONTROLLER_PARAMETERS; |
| 6404 | c->Request.CDB[7] = (size >> 16) & 0xFF; |
| 6405 | c->Request.CDB[8] = (size >> 8) & 0xFF; |
| 6406 | break; |
Don Brace | 0338373 | 2015-01-23 16:43:30 -0600 | [diff] [blame] | 6407 | case BMIC_IDENTIFY_PHYSICAL_DEVICE: |
| 6408 | c->Request.CDBLen = 10; |
| 6409 | c->Request.type_attr_dir = |
| 6410 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_READ); |
| 6411 | c->Request.Timeout = 0; |
| 6412 | c->Request.CDB[0] = BMIC_READ; |
| 6413 | c->Request.CDB[6] = BMIC_IDENTIFY_PHYSICAL_DEVICE; |
| 6414 | c->Request.CDB[7] = (size >> 16) & 0xFF; |
| 6415 | c->Request.CDB[8] = (size >> 8) & 0XFF; |
| 6416 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6417 | default: |
| 6418 | dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd); |
| 6419 | BUG(); |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 6420 | return -1; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6421 | } |
| 6422 | } else if (cmd_type == TYPE_MSG) { |
| 6423 | switch (cmd) { |
| 6424 | |
Scott Teel | 0b9b7b6 | 2015-11-04 15:51:02 -0600 | [diff] [blame] | 6425 | case HPSA_PHYS_TARGET_RESET: |
| 6426 | c->Request.CDBLen = 16; |
| 6427 | c->Request.type_attr_dir = |
| 6428 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE); |
| 6429 | c->Request.Timeout = 0; /* Don't time out */ |
| 6430 | memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB)); |
| 6431 | c->Request.CDB[0] = HPSA_RESET; |
| 6432 | c->Request.CDB[1] = HPSA_TARGET_RESET_TYPE; |
| 6433 | /* Physical target reset needs no control bytes 4-7*/ |
| 6434 | c->Request.CDB[4] = 0x00; |
| 6435 | c->Request.CDB[5] = 0x00; |
| 6436 | c->Request.CDB[6] = 0x00; |
| 6437 | c->Request.CDB[7] = 0x00; |
| 6438 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6439 | case HPSA_DEVICE_RESET_MSG: |
| 6440 | c->Request.CDBLen = 16; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6441 | c->Request.type_attr_dir = |
| 6442 | TYPE_ATTR_DIR(cmd_type, ATTR_SIMPLE, XFER_NONE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6443 | c->Request.Timeout = 0; /* Don't time out */ |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6444 | memset(&c->Request.CDB[0], 0, sizeof(c->Request.CDB)); |
| 6445 | c->Request.CDB[0] = cmd; |
Stephen M. Cameron | 21e89af | 2012-07-26 11:34:10 -0500 | [diff] [blame] | 6446 | c->Request.CDB[1] = HPSA_RESET_TYPE_LUN; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6447 | /* If bytes 4-7 are zero, it means reset the */ |
| 6448 | /* LunID device */ |
| 6449 | c->Request.CDB[4] = 0x00; |
| 6450 | c->Request.CDB[5] = 0x00; |
| 6451 | c->Request.CDB[6] = 0x00; |
| 6452 | c->Request.CDB[7] = 0x00; |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 6453 | break; |
| 6454 | case HPSA_ABORT_MSG: |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 6455 | memcpy(&tag, buff, sizeof(tag)); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6456 | dev_dbg(&h->pdev->dev, |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 6457 | "Abort Tag:0x%016llx using rqst Tag:0x%016llx", |
| 6458 | tag, c->Header.tag); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 6459 | c->Request.CDBLen = 16; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6460 | c->Request.type_attr_dir = |
| 6461 | TYPE_ATTR_DIR(cmd_type, |
| 6462 | ATTR_SIMPLE, XFER_WRITE); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 6463 | c->Request.Timeout = 0; /* Don't time out */ |
| 6464 | c->Request.CDB[0] = HPSA_TASK_MANAGEMENT; |
| 6465 | c->Request.CDB[1] = HPSA_TMF_ABORT_TASK; |
| 6466 | c->Request.CDB[2] = 0x00; /* reserved */ |
| 6467 | c->Request.CDB[3] = 0x00; /* reserved */ |
| 6468 | /* Tag to abort goes in CDB[4]-CDB[11] */ |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 6469 | memcpy(&c->Request.CDB[4], &tag, sizeof(tag)); |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 6470 | c->Request.CDB[12] = 0x00; /* reserved */ |
| 6471 | c->Request.CDB[13] = 0x00; /* reserved */ |
| 6472 | c->Request.CDB[14] = 0x00; /* reserved */ |
| 6473 | c->Request.CDB[15] = 0x00; /* reserved */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6474 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6475 | default: |
| 6476 | dev_warn(&h->pdev->dev, "unknown message type %d\n", |
| 6477 | cmd); |
| 6478 | BUG(); |
| 6479 | } |
| 6480 | } else { |
| 6481 | dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type); |
| 6482 | BUG(); |
| 6483 | } |
| 6484 | |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6485 | switch (GET_DIR(c->Request.type_attr_dir)) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6486 | case XFER_READ: |
| 6487 | pci_dir = PCI_DMA_FROMDEVICE; |
| 6488 | break; |
| 6489 | case XFER_WRITE: |
| 6490 | pci_dir = PCI_DMA_TODEVICE; |
| 6491 | break; |
| 6492 | case XFER_NONE: |
| 6493 | pci_dir = PCI_DMA_NONE; |
| 6494 | break; |
| 6495 | default: |
| 6496 | pci_dir = PCI_DMA_BIDIRECTIONAL; |
| 6497 | } |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 6498 | if (hpsa_map_one(h->pdev, c, buff, size, pci_dir)) |
| 6499 | return -1; |
| 6500 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6501 | } |
| 6502 | |
| 6503 | /* |
| 6504 | * Map (physical) PCI mem into (virtual) kernel space |
| 6505 | */ |
| 6506 | static void __iomem *remap_pci_mem(ulong base, ulong size) |
| 6507 | { |
| 6508 | ulong page_base = ((ulong) base) & PAGE_MASK; |
| 6509 | ulong page_offs = ((ulong) base) - page_base; |
Stephen M. Cameron | 088ba34 | 2012-07-26 11:34:23 -0500 | [diff] [blame] | 6510 | void __iomem *page_remapped = ioremap_nocache(page_base, |
| 6511 | page_offs + size); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6512 | |
| 6513 | return page_remapped ? (page_remapped + page_offs) : NULL; |
| 6514 | } |
| 6515 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6516 | 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] | 6517 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6518 | return h->access.command_completed(h, q); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6519 | } |
| 6520 | |
Stephen M. Cameron | 900c544 | 2010-02-04 08:42:35 -0600 | [diff] [blame] | 6521 | static inline bool interrupt_pending(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6522 | { |
| 6523 | return h->access.intr_pending(h); |
| 6524 | } |
| 6525 | |
| 6526 | static inline long interrupt_not_for_us(struct ctlr_info *h) |
| 6527 | { |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6528 | return (h->access.intr_pending(h) == 0) || |
| 6529 | (h->interrupts_enabled == 0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6530 | } |
| 6531 | |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 6532 | static inline int bad_tag(struct ctlr_info *h, u32 tag_index, |
| 6533 | u32 raw_tag) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6534 | { |
| 6535 | if (unlikely(tag_index >= h->nr_cmds)) { |
| 6536 | dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag); |
| 6537 | return 1; |
| 6538 | } |
| 6539 | return 0; |
| 6540 | } |
| 6541 | |
Stephen M. Cameron | 5a3d16f | 2012-05-01 11:42:46 -0500 | [diff] [blame] | 6542 | static inline void finish_cmd(struct CommandList *c) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6543 | { |
Stephen M. Cameron | e85c597 | 2012-05-01 11:43:42 -0500 | [diff] [blame] | 6544 | dial_up_lockup_detection_on_fw_flash_complete(c->h, c); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 6545 | if (likely(c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_SCSI |
| 6546 | || c->cmd_type == CMD_IOACCEL2)) |
Stephen M. Cameron | 1fb011f | 2011-05-03 14:59:00 -0500 | [diff] [blame] | 6547 | complete_scsi_command(c); |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 6548 | else if (c->cmd_type == CMD_IOCTL_PEND || c->cmd_type == IOACCEL2_TMF) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6549 | complete(c->waiting); |
Stephen M. Cameron | a104c99 | 2010-02-04 08:42:24 -0600 | [diff] [blame] | 6550 | } |
| 6551 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 6552 | /* process completion of an indexed ("direct lookup") command */ |
Stephen M. Cameron | 1d94f94 | 2012-05-01 11:43:01 -0500 | [diff] [blame] | 6553 | static inline void process_indexed_cmd(struct ctlr_info *h, |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 6554 | u32 raw_tag) |
| 6555 | { |
| 6556 | u32 tag_index; |
| 6557 | struct CommandList *c; |
| 6558 | |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 6559 | tag_index = raw_tag >> DIRECT_LOOKUP_SHIFT; |
Stephen M. Cameron | 1d94f94 | 2012-05-01 11:43:01 -0500 | [diff] [blame] | 6560 | if (!bad_tag(h, tag_index, raw_tag)) { |
| 6561 | c = h->cmd_pool + tag_index; |
| 6562 | finish_cmd(c); |
| 6563 | } |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 6564 | } |
| 6565 | |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6566 | /* Some controllers, like p400, will give us one interrupt |
| 6567 | * after a soft reset, even if we turned interrupts off. |
| 6568 | * Only need to check for this in the hpsa_xxx_discard_completions |
| 6569 | * functions. |
| 6570 | */ |
| 6571 | static int ignore_bogus_interrupt(struct ctlr_info *h) |
| 6572 | { |
| 6573 | if (likely(!reset_devices)) |
| 6574 | return 0; |
| 6575 | |
| 6576 | if (likely(h->interrupts_enabled)) |
| 6577 | return 0; |
| 6578 | |
| 6579 | dev_info(&h->pdev->dev, "Received interrupt while interrupts disabled " |
| 6580 | "(known firmware bug.) Ignoring.\n"); |
| 6581 | |
| 6582 | return 1; |
| 6583 | } |
| 6584 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6585 | /* |
| 6586 | * Convert &h->q[x] (passed to interrupt handlers) back to h. |
| 6587 | * Relies on (h-q[x] == x) being true for x such that |
| 6588 | * 0 <= x < MAX_REPLY_QUEUES. |
| 6589 | */ |
| 6590 | static struct ctlr_info *queue_to_hba(u8 *queue) |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6591 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6592 | return container_of((queue - *queue), struct ctlr_info, q[0]); |
| 6593 | } |
| 6594 | |
| 6595 | static irqreturn_t hpsa_intx_discard_completions(int irq, void *queue) |
| 6596 | { |
| 6597 | struct ctlr_info *h = queue_to_hba(queue); |
| 6598 | u8 q = *(u8 *) queue; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6599 | u32 raw_tag; |
| 6600 | |
| 6601 | if (ignore_bogus_interrupt(h)) |
| 6602 | return IRQ_NONE; |
| 6603 | |
| 6604 | if (interrupt_not_for_us(h)) |
| 6605 | return IRQ_NONE; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 6606 | h->last_intr_timestamp = get_jiffies_64(); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6607 | while (interrupt_pending(h)) { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6608 | raw_tag = get_next_completion(h, q); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6609 | while (raw_tag != FIFO_EMPTY) |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6610 | raw_tag = next_command(h, q); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6611 | } |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6612 | return IRQ_HANDLED; |
| 6613 | } |
| 6614 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6615 | static irqreturn_t hpsa_msix_discard_completions(int irq, void *queue) |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6616 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6617 | struct ctlr_info *h = queue_to_hba(queue); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6618 | u32 raw_tag; |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6619 | u8 q = *(u8 *) queue; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6620 | |
| 6621 | if (ignore_bogus_interrupt(h)) |
| 6622 | return IRQ_NONE; |
| 6623 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 6624 | h->last_intr_timestamp = get_jiffies_64(); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6625 | raw_tag = get_next_completion(h, q); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6626 | while (raw_tag != FIFO_EMPTY) |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6627 | raw_tag = next_command(h, q); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6628 | return IRQ_HANDLED; |
| 6629 | } |
| 6630 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6631 | static irqreturn_t do_hpsa_intr_intx(int irq, void *queue) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6632 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6633 | struct ctlr_info *h = queue_to_hba((u8 *) queue); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 6634 | u32 raw_tag; |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6635 | u8 q = *(u8 *) queue; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6636 | |
| 6637 | if (interrupt_not_for_us(h)) |
| 6638 | return IRQ_NONE; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 6639 | h->last_intr_timestamp = get_jiffies_64(); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6640 | while (interrupt_pending(h)) { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6641 | raw_tag = get_next_completion(h, q); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6642 | while (raw_tag != FIFO_EMPTY) { |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 6643 | process_indexed_cmd(h, raw_tag); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6644 | raw_tag = next_command(h, q); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6645 | } |
| 6646 | } |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6647 | return IRQ_HANDLED; |
| 6648 | } |
| 6649 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6650 | static irqreturn_t do_hpsa_intr_msi(int irq, void *queue) |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6651 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6652 | struct ctlr_info *h = queue_to_hba(queue); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6653 | u32 raw_tag; |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6654 | u8 q = *(u8 *) queue; |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 6655 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 6656 | h->last_intr_timestamp = get_jiffies_64(); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6657 | raw_tag = get_next_completion(h, q); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 6658 | while (raw_tag != FIFO_EMPTY) { |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 6659 | process_indexed_cmd(h, raw_tag); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 6660 | raw_tag = next_command(h, q); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6661 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6662 | return IRQ_HANDLED; |
| 6663 | } |
| 6664 | |
Stephen M. Cameron | a9a3a27 | 2011-02-15 15:32:53 -0600 | [diff] [blame] | 6665 | /* Send a message CDB to the firmware. Careful, this only works |
| 6666 | * in simple mode, not performant mode due to the tag lookup. |
| 6667 | * We only ever use this immediately after a controller reset. |
| 6668 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6669 | static int hpsa_message(struct pci_dev *pdev, unsigned char opcode, |
| 6670 | unsigned char type) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6671 | { |
| 6672 | struct Command { |
| 6673 | struct CommandListHeader CommandHeader; |
| 6674 | struct RequestBlock Request; |
| 6675 | struct ErrDescriptor ErrorDescriptor; |
| 6676 | }; |
| 6677 | struct Command *cmd; |
| 6678 | static const size_t cmd_sz = sizeof(*cmd) + |
| 6679 | sizeof(cmd->ErrorDescriptor); |
| 6680 | dma_addr_t paddr64; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6681 | __le32 paddr32; |
| 6682 | u32 tag; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6683 | void __iomem *vaddr; |
| 6684 | int i, err; |
| 6685 | |
| 6686 | vaddr = pci_ioremap_bar(pdev, 0); |
| 6687 | if (vaddr == NULL) |
| 6688 | return -ENOMEM; |
| 6689 | |
| 6690 | /* The Inbound Post Queue only accepts 32-bit physical addresses for the |
| 6691 | * CCISS commands, so they must be allocated from the lower 4GiB of |
| 6692 | * memory. |
| 6693 | */ |
| 6694 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 6695 | if (err) { |
| 6696 | iounmap(vaddr); |
Robert Elliott | 1eaec8f | 2015-01-23 16:42:37 -0600 | [diff] [blame] | 6697 | return err; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6698 | } |
| 6699 | |
| 6700 | cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64); |
| 6701 | if (cmd == NULL) { |
| 6702 | iounmap(vaddr); |
| 6703 | return -ENOMEM; |
| 6704 | } |
| 6705 | |
| 6706 | /* This must fit, because of the 32-bit consistent DMA mask. Also, |
| 6707 | * although there's no guarantee, we assume that the address is at |
| 6708 | * least 4-byte aligned (most likely, it's page-aligned). |
| 6709 | */ |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6710 | paddr32 = cpu_to_le32(paddr64); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6711 | |
| 6712 | cmd->CommandHeader.ReplyQueue = 0; |
| 6713 | cmd->CommandHeader.SGList = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6714 | cmd->CommandHeader.SGTotal = cpu_to_le16(0); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6715 | cmd->CommandHeader.tag = cpu_to_le64(paddr64); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6716 | memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8); |
| 6717 | |
| 6718 | cmd->Request.CDBLen = 16; |
Stephen M. Cameron | a505b86 | 2014-11-14 17:27:04 -0600 | [diff] [blame] | 6719 | cmd->Request.type_attr_dir = |
| 6720 | TYPE_ATTR_DIR(TYPE_MSG, ATTR_HEADOFQUEUE, XFER_NONE); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6721 | cmd->Request.Timeout = 0; /* Don't time out */ |
| 6722 | cmd->Request.CDB[0] = opcode; |
| 6723 | cmd->Request.CDB[1] = type; |
| 6724 | 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] | 6725 | cmd->ErrorDescriptor.Addr = |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6726 | cpu_to_le64((le32_to_cpu(paddr32) + sizeof(*cmd))); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 6727 | cmd->ErrorDescriptor.Len = cpu_to_le32(sizeof(struct ErrorInfo)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6728 | |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6729 | writel(le32_to_cpu(paddr32), vaddr + SA5_REQUEST_PORT_OFFSET); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6730 | |
| 6731 | for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) { |
| 6732 | tag = readl(vaddr + SA5_REPLY_PORT_OFFSET); |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 6733 | if ((tag & ~HPSA_SIMPLE_ERROR_BITS) == paddr64) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6734 | break; |
| 6735 | msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS); |
| 6736 | } |
| 6737 | |
| 6738 | iounmap(vaddr); |
| 6739 | |
| 6740 | /* we leak the DMA buffer here ... no choice since the controller could |
| 6741 | * still complete the command. |
| 6742 | */ |
| 6743 | if (i == HPSA_MSG_SEND_RETRY_LIMIT) { |
| 6744 | dev_err(&pdev->dev, "controller message %02x:%02x timed out\n", |
| 6745 | opcode, type); |
| 6746 | return -ETIMEDOUT; |
| 6747 | } |
| 6748 | |
| 6749 | pci_free_consistent(pdev, cmd_sz, cmd, paddr64); |
| 6750 | |
| 6751 | if (tag & HPSA_ERROR_BIT) { |
| 6752 | dev_err(&pdev->dev, "controller message %02x:%02x failed\n", |
| 6753 | opcode, type); |
| 6754 | return -EIO; |
| 6755 | } |
| 6756 | |
| 6757 | dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n", |
| 6758 | opcode, type); |
| 6759 | return 0; |
| 6760 | } |
| 6761 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6762 | #define hpsa_noop(p) hpsa_message(p, 3, 0) |
| 6763 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6764 | static int hpsa_controller_hard_reset(struct pci_dev *pdev, |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 6765 | void __iomem *vaddr, u32 use_doorbell) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6766 | { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6767 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6768 | if (use_doorbell) { |
| 6769 | /* For everything after the P600, the PCI power state method |
| 6770 | * of resetting the controller doesn't work, so we have this |
| 6771 | * other way using the doorbell register. |
| 6772 | */ |
| 6773 | dev_info(&pdev->dev, "using doorbell to reset controller\n"); |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6774 | writel(use_doorbell, vaddr + SA5_DOORBELL); |
Stephen M. Cameron | 8500923 | 2013-09-23 13:33:36 -0500 | [diff] [blame] | 6775 | |
Justin Lindley | 00701a9 | 2014-05-29 10:52:47 -0500 | [diff] [blame] | 6776 | /* 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] | 6777 | * doorbell reset and before any attempt to talk to the board |
| 6778 | * at all to ensure that this actually works and doesn't fall |
| 6779 | * over in some weird corner cases. |
| 6780 | */ |
Justin Lindley | 00701a9 | 2014-05-29 10:52:47 -0500 | [diff] [blame] | 6781 | msleep(10000); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6782 | } else { /* Try to do it the PCI power state way */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6783 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6784 | /* Quoting from the Open CISS Specification: "The Power |
| 6785 | * Management Control/Status Register (CSR) controls the power |
| 6786 | * state of the device. The normal operating state is D0, |
| 6787 | * CSR=00h. The software off state is D3, CSR=03h. To reset |
| 6788 | * the controller, place the interface device in D3 then to D0, |
| 6789 | * this causes a secondary PCI reset which will reset the |
| 6790 | * controller." */ |
| 6791 | |
Don Brace | 2662cab | 2015-01-23 16:41:25 -0600 | [diff] [blame] | 6792 | int rc = 0; |
| 6793 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6794 | dev_info(&pdev->dev, "using PCI PM to reset controller\n"); |
Don Brace | 2662cab | 2015-01-23 16:41:25 -0600 | [diff] [blame] | 6795 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6796 | /* enter the D3hot power management state */ |
Don Brace | 2662cab | 2015-01-23 16:41:25 -0600 | [diff] [blame] | 6797 | rc = pci_set_power_state(pdev, PCI_D3hot); |
| 6798 | if (rc) |
| 6799 | return rc; |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6800 | |
| 6801 | msleep(500); |
| 6802 | |
| 6803 | /* enter the D0 power management state */ |
Don Brace | 2662cab | 2015-01-23 16:41:25 -0600 | [diff] [blame] | 6804 | rc = pci_set_power_state(pdev, PCI_D0); |
| 6805 | if (rc) |
| 6806 | return rc; |
Mike Miller | c4853ef | 2011-10-21 08:19:43 +0200 | [diff] [blame] | 6807 | |
| 6808 | /* |
| 6809 | * The P600 requires a small delay when changing states. |
| 6810 | * Otherwise we may think the board did not reset and we bail. |
| 6811 | * This for kdump only and is particular to the P600. |
| 6812 | */ |
| 6813 | msleep(500); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6814 | } |
| 6815 | return 0; |
| 6816 | } |
| 6817 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6818 | static void init_driver_version(char *driver_version, int len) |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6819 | { |
| 6820 | memset(driver_version, 0, len); |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 6821 | strncpy(driver_version, HPSA " " HPSA_DRIVER_VERSION, len - 1); |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6822 | } |
| 6823 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6824 | static int write_driver_ver_to_cfgtable(struct CfgTable __iomem *cfgtable) |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6825 | { |
| 6826 | char *driver_version; |
| 6827 | int i, size = sizeof(cfgtable->driver_version); |
| 6828 | |
| 6829 | driver_version = kmalloc(size, GFP_KERNEL); |
| 6830 | if (!driver_version) |
| 6831 | return -ENOMEM; |
| 6832 | |
| 6833 | init_driver_version(driver_version, size); |
| 6834 | for (i = 0; i < size; i++) |
| 6835 | writeb(driver_version[i], &cfgtable->driver_version[i]); |
| 6836 | kfree(driver_version); |
| 6837 | return 0; |
| 6838 | } |
| 6839 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6840 | static void read_driver_ver_from_cfgtable(struct CfgTable __iomem *cfgtable, |
| 6841 | unsigned char *driver_ver) |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6842 | { |
| 6843 | int i; |
| 6844 | |
| 6845 | for (i = 0; i < sizeof(cfgtable->driver_version); i++) |
| 6846 | driver_ver[i] = readb(&cfgtable->driver_version[i]); |
| 6847 | } |
| 6848 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 6849 | static int controller_reset_failed(struct CfgTable __iomem *cfgtable) |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6850 | { |
| 6851 | |
| 6852 | char *driver_ver, *old_driver_ver; |
| 6853 | int rc, size = sizeof(cfgtable->driver_version); |
| 6854 | |
| 6855 | old_driver_ver = kmalloc(2 * size, GFP_KERNEL); |
| 6856 | if (!old_driver_ver) |
| 6857 | return -ENOMEM; |
| 6858 | driver_ver = old_driver_ver + size; |
| 6859 | |
| 6860 | /* After a reset, the 32 bytes of "driver version" in the cfgtable |
| 6861 | * should have been changed, otherwise we know the reset failed. |
| 6862 | */ |
| 6863 | init_driver_version(old_driver_ver, size); |
| 6864 | read_driver_ver_from_cfgtable(cfgtable, driver_ver); |
| 6865 | rc = !memcmp(driver_ver, old_driver_ver, size); |
| 6866 | kfree(old_driver_ver); |
| 6867 | return rc; |
| 6868 | } |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6869 | /* This does a hard reset of the controller using PCI power management |
| 6870 | * states or the using the doorbell register. |
| 6871 | */ |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 6872 | 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] | 6873 | { |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6874 | u64 cfg_offset; |
| 6875 | u32 cfg_base_addr; |
| 6876 | u64 cfg_base_addr_index; |
| 6877 | void __iomem *vaddr; |
| 6878 | unsigned long paddr; |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6879 | u32 misc_fw_support; |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6880 | int rc; |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6881 | struct CfgTable __iomem *cfgtable; |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6882 | u32 use_doorbell; |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6883 | u16 command_register; |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6884 | |
| 6885 | /* For controllers as old as the P600, this is very nearly |
| 6886 | * the same thing as |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6887 | * |
| 6888 | * pci_save_state(pci_dev); |
| 6889 | * pci_set_power_state(pci_dev, PCI_D3hot); |
| 6890 | * pci_set_power_state(pci_dev, PCI_D0); |
| 6891 | * pci_restore_state(pci_dev); |
| 6892 | * |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6893 | * For controllers newer than the P600, the pci power state |
| 6894 | * method of resetting doesn't work so we have another way |
| 6895 | * using the doorbell register. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6896 | */ |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 6897 | |
Robert Elliott | 60f923b | 2015-01-23 16:42:06 -0600 | [diff] [blame] | 6898 | if (!ctlr_is_resettable(board_id)) { |
| 6899 | dev_warn(&pdev->dev, "Controller not resettable\n"); |
Stephen M. Cameron | 25c1e56a | 2011-01-06 14:48:18 -0600 | [diff] [blame] | 6900 | return -ENODEV; |
| 6901 | } |
Stephen M. Cameron | 4638078 | 2011-05-03 15:00:01 -0500 | [diff] [blame] | 6902 | |
| 6903 | /* if controller is soft- but not hard resettable... */ |
| 6904 | if (!ctlr_is_hard_resettable(board_id)) |
| 6905 | return -ENOTSUPP; /* try soft reset later. */ |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 6906 | |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6907 | /* Save the PCI command register */ |
| 6908 | pci_read_config_word(pdev, 4, &command_register); |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6909 | pci_save_state(pdev); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6910 | |
| 6911 | /* find the first memory BAR, so we can find the cfg table */ |
| 6912 | rc = hpsa_pci_find_memory_BAR(pdev, &paddr); |
| 6913 | if (rc) |
| 6914 | return rc; |
| 6915 | vaddr = remap_pci_mem(paddr, 0x250); |
| 6916 | if (!vaddr) |
| 6917 | return -ENOMEM; |
| 6918 | |
| 6919 | /* find cfgtable in order to check if reset via doorbell is supported */ |
| 6920 | rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr, |
| 6921 | &cfg_base_addr_index, &cfg_offset); |
| 6922 | if (rc) |
| 6923 | goto unmap_vaddr; |
| 6924 | cfgtable = remap_pci_mem(pci_resource_start(pdev, |
| 6925 | cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable)); |
| 6926 | if (!cfgtable) { |
| 6927 | rc = -ENOMEM; |
| 6928 | goto unmap_vaddr; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6929 | } |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6930 | rc = write_driver_ver_to_cfgtable(cfgtable); |
| 6931 | if (rc) |
Tomas Henzl | 03741d9 | 2015-01-23 16:41:14 -0600 | [diff] [blame] | 6932 | goto unmap_cfgtable; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6933 | |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6934 | /* If reset via doorbell register is supported, use that. |
| 6935 | * There are two such methods. Favor the newest method. |
| 6936 | */ |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6937 | misc_fw_support = readl(&cfgtable->misc_fw_support); |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6938 | use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET2; |
| 6939 | if (use_doorbell) { |
| 6940 | use_doorbell = DOORBELL_CTLR_RESET2; |
| 6941 | } else { |
| 6942 | use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET; |
| 6943 | if (use_doorbell) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 6944 | dev_warn(&pdev->dev, |
| 6945 | "Soft reset not supported. Firmware update is required.\n"); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6946 | rc = -ENOTSUPP; /* try soft reset */ |
Stephen M. Cameron | cf0b08d | 2011-05-03 14:59:46 -0500 | [diff] [blame] | 6947 | goto unmap_cfgtable; |
| 6948 | } |
| 6949 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6950 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6951 | rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell); |
| 6952 | if (rc) |
| 6953 | goto unmap_cfgtable; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6954 | |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6955 | pci_restore_state(pdev); |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 6956 | pci_write_config_word(pdev, 4, command_register); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6957 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6958 | /* Some devices (notably the HP Smart Array 5i Controller) |
| 6959 | need a little pause here */ |
| 6960 | msleep(HPSA_POST_RESET_PAUSE_MSECS); |
| 6961 | |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6962 | rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY); |
| 6963 | if (rc) { |
| 6964 | dev_warn(&pdev->dev, |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 6965 | "Failed waiting for board to become ready after hard reset\n"); |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6966 | goto unmap_cfgtable; |
| 6967 | } |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 6968 | |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6969 | rc = controller_reset_failed(vaddr); |
| 6970 | if (rc < 0) |
| 6971 | goto unmap_cfgtable; |
| 6972 | if (rc) { |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6973 | dev_warn(&pdev->dev, "Unable to successfully reset " |
| 6974 | "controller. Will try soft reset.\n"); |
| 6975 | rc = -ENOTSUPP; |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 6976 | } else { |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 6977 | dev_info(&pdev->dev, "board ready after hard reset.\n"); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 6978 | } |
| 6979 | |
| 6980 | unmap_cfgtable: |
| 6981 | iounmap(cfgtable); |
| 6982 | |
| 6983 | unmap_vaddr: |
| 6984 | iounmap(vaddr); |
| 6985 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6986 | } |
| 6987 | |
| 6988 | /* |
| 6989 | * We cannot read the structure directly, for portability we must use |
| 6990 | * the io functions. |
| 6991 | * This is for debug only. |
| 6992 | */ |
Don Brace | 42a9164 | 2014-11-14 17:26:27 -0600 | [diff] [blame] | 6993 | 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] | 6994 | { |
Stephen M. Cameron | 58f8665 | 2010-05-27 15:13:58 -0500 | [diff] [blame] | 6995 | #ifdef HPSA_DEBUG |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 6996 | int i; |
| 6997 | char temp_name[17]; |
| 6998 | |
| 6999 | dev_info(dev, "Controller Configuration information\n"); |
| 7000 | dev_info(dev, "------------------------------------\n"); |
| 7001 | for (i = 0; i < 4; i++) |
| 7002 | temp_name[i] = readb(&(tb->Signature[i])); |
| 7003 | temp_name[4] = '\0'; |
| 7004 | dev_info(dev, " Signature = %s\n", temp_name); |
| 7005 | dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence))); |
| 7006 | dev_info(dev, " Transport methods supported = 0x%x\n", |
| 7007 | readl(&(tb->TransportSupport))); |
| 7008 | dev_info(dev, " Transport methods active = 0x%x\n", |
| 7009 | readl(&(tb->TransportActive))); |
| 7010 | dev_info(dev, " Requested transport Method = 0x%x\n", |
| 7011 | readl(&(tb->HostWrite.TransportRequest))); |
| 7012 | dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n", |
| 7013 | readl(&(tb->HostWrite.CoalIntDelay))); |
| 7014 | dev_info(dev, " Coalesce Interrupt Count = 0x%x\n", |
| 7015 | readl(&(tb->HostWrite.CoalIntCount))); |
Robert Elliott | 69d6e33 | 2015-01-23 16:41:56 -0600 | [diff] [blame] | 7016 | dev_info(dev, " Max outstanding commands = %d\n", |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7017 | readl(&(tb->CmdsOutMax))); |
| 7018 | dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes))); |
| 7019 | for (i = 0; i < 16; i++) |
| 7020 | temp_name[i] = readb(&(tb->ServerName[i])); |
| 7021 | temp_name[16] = '\0'; |
| 7022 | dev_info(dev, " Server Name = %s\n", temp_name); |
| 7023 | dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n", |
| 7024 | readl(&(tb->HeartBeat))); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7025 | #endif /* HPSA_DEBUG */ |
Stephen M. Cameron | 58f8665 | 2010-05-27 15:13:58 -0500 | [diff] [blame] | 7026 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7027 | |
| 7028 | static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr) |
| 7029 | { |
| 7030 | int i, offset, mem_type, bar_type; |
| 7031 | |
| 7032 | if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */ |
| 7033 | return 0; |
| 7034 | offset = 0; |
| 7035 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { |
| 7036 | bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE; |
| 7037 | if (bar_type == PCI_BASE_ADDRESS_SPACE_IO) |
| 7038 | offset += 4; |
| 7039 | else { |
| 7040 | mem_type = pci_resource_flags(pdev, i) & |
| 7041 | PCI_BASE_ADDRESS_MEM_TYPE_MASK; |
| 7042 | switch (mem_type) { |
| 7043 | case PCI_BASE_ADDRESS_MEM_TYPE_32: |
| 7044 | case PCI_BASE_ADDRESS_MEM_TYPE_1M: |
| 7045 | offset += 4; /* 32 bit */ |
| 7046 | break; |
| 7047 | case PCI_BASE_ADDRESS_MEM_TYPE_64: |
| 7048 | offset += 8; |
| 7049 | break; |
| 7050 | default: /* reserved in PCI 2.2 */ |
| 7051 | dev_warn(&pdev->dev, |
| 7052 | "base address is invalid\n"); |
| 7053 | return -1; |
| 7054 | break; |
| 7055 | } |
| 7056 | } |
| 7057 | if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0) |
| 7058 | return i + 1; |
| 7059 | } |
| 7060 | return -1; |
| 7061 | } |
| 7062 | |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 7063 | static void hpsa_disable_interrupt_mode(struct ctlr_info *h) |
| 7064 | { |
| 7065 | if (h->msix_vector) { |
| 7066 | if (h->pdev->msix_enabled) |
| 7067 | pci_disable_msix(h->pdev); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7068 | h->msix_vector = 0; |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 7069 | } else if (h->msi_vector) { |
| 7070 | if (h->pdev->msi_enabled) |
| 7071 | pci_disable_msi(h->pdev); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7072 | h->msi_vector = 0; |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 7073 | } |
| 7074 | } |
| 7075 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7076 | /* 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] | 7077 | * controllers that are capable. If not, we use legacy INTx mode. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7078 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7079 | static void hpsa_interrupt_mode(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7080 | { |
| 7081 | #ifdef CONFIG_PCI_MSI |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7082 | int err, i; |
| 7083 | struct msix_entry hpsa_msix_entries[MAX_REPLY_QUEUES]; |
| 7084 | |
| 7085 | for (i = 0; i < MAX_REPLY_QUEUES; i++) { |
| 7086 | hpsa_msix_entries[i].vector = 0; |
| 7087 | hpsa_msix_entries[i].entry = i; |
| 7088 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7089 | |
| 7090 | /* Some boards advertise MSI but don't really support it */ |
Stephen M. Cameron | 6b3f4c5 | 2010-05-27 15:13:02 -0500 | [diff] [blame] | 7091 | if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) || |
| 7092 | (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7093 | goto default_int_mode; |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 7094 | if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 7095 | dev_info(&h->pdev->dev, "MSI-X capable controller\n"); |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 7096 | h->msix_vector = MAX_REPLY_QUEUES; |
Stephen M. Cameron | f89439b | 2014-05-29 10:53:02 -0500 | [diff] [blame] | 7097 | if (h->msix_vector > num_online_cpus()) |
| 7098 | h->msix_vector = num_online_cpus(); |
Alexander Gordeev | 18fce3c | 2014-08-18 08:01:42 +0200 | [diff] [blame] | 7099 | err = pci_enable_msix_range(h->pdev, hpsa_msix_entries, |
| 7100 | 1, h->msix_vector); |
| 7101 | if (err < 0) { |
| 7102 | dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", err); |
| 7103 | h->msix_vector = 0; |
| 7104 | goto single_msi_mode; |
| 7105 | } else if (err < h->msix_vector) { |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 7106 | dev_warn(&h->pdev->dev, "only %d MSI-X vectors " |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7107 | "available\n", err); |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 7108 | } |
Alexander Gordeev | 18fce3c | 2014-08-18 08:01:42 +0200 | [diff] [blame] | 7109 | h->msix_vector = err; |
| 7110 | for (i = 0; i < h->msix_vector; i++) |
| 7111 | h->intr[i] = hpsa_msix_entries[i].vector; |
| 7112 | return; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7113 | } |
Alexander Gordeev | 18fce3c | 2014-08-18 08:01:42 +0200 | [diff] [blame] | 7114 | single_msi_mode: |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 7115 | if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 7116 | dev_info(&h->pdev->dev, "MSI capable controller\n"); |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 7117 | if (!pci_enable_msi(h->pdev)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7118 | h->msi_vector = 1; |
| 7119 | else |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 7120 | dev_warn(&h->pdev->dev, "MSI init failed\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7121 | } |
| 7122 | default_int_mode: |
| 7123 | #endif /* CONFIG_PCI_MSI */ |
| 7124 | /* 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] | 7125 | h->intr[h->intr_mode] = h->pdev->irq; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7126 | } |
| 7127 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7128 | 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] | 7129 | { |
| 7130 | int i; |
| 7131 | u32 subsystem_vendor_id, subsystem_device_id; |
| 7132 | |
| 7133 | subsystem_vendor_id = pdev->subsystem_vendor; |
| 7134 | subsystem_device_id = pdev->subsystem_device; |
| 7135 | *board_id = ((subsystem_device_id << 16) & 0xffff0000) | |
| 7136 | subsystem_vendor_id; |
| 7137 | |
| 7138 | for (i = 0; i < ARRAY_SIZE(products); i++) |
| 7139 | if (*board_id == products[i].board_id) |
| 7140 | return i; |
| 7141 | |
Stephen M. Cameron | 6798cc0 | 2010-06-16 13:51:20 -0500 | [diff] [blame] | 7142 | if ((subsystem_vendor_id != PCI_VENDOR_ID_HP && |
| 7143 | subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) || |
| 7144 | !hpsa_allow_any) { |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 7145 | dev_warn(&pdev->dev, "unrecognized board ID: " |
| 7146 | "0x%08x, ignoring.\n", *board_id); |
| 7147 | return -ENODEV; |
| 7148 | } |
| 7149 | return ARRAY_SIZE(products) - 1; /* generic unknown smart array */ |
| 7150 | } |
| 7151 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7152 | static int hpsa_pci_find_memory_BAR(struct pci_dev *pdev, |
| 7153 | unsigned long *memory_bar) |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 7154 | { |
| 7155 | int i; |
| 7156 | |
| 7157 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 7158 | if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) { |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 7159 | /* addressing mode bits already removed */ |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 7160 | *memory_bar = pci_resource_start(pdev, i); |
| 7161 | dev_dbg(&pdev->dev, "memory BAR = %lx\n", |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 7162 | *memory_bar); |
| 7163 | return 0; |
| 7164 | } |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 7165 | dev_warn(&pdev->dev, "no memory BAR found\n"); |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 7166 | return -ENODEV; |
| 7167 | } |
| 7168 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7169 | static int hpsa_wait_for_board_state(struct pci_dev *pdev, void __iomem *vaddr, |
| 7170 | int wait_for_ready) |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 7171 | { |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 7172 | int i, iterations; |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 7173 | u32 scratchpad; |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 7174 | if (wait_for_ready) |
| 7175 | iterations = HPSA_BOARD_READY_ITERATIONS; |
| 7176 | else |
| 7177 | iterations = HPSA_BOARD_NOT_READY_ITERATIONS; |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 7178 | |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 7179 | for (i = 0; i < iterations; i++) { |
| 7180 | scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET); |
| 7181 | if (wait_for_ready) { |
| 7182 | if (scratchpad == HPSA_FIRMWARE_READY) |
| 7183 | return 0; |
| 7184 | } else { |
| 7185 | if (scratchpad != HPSA_FIRMWARE_READY) |
| 7186 | return 0; |
| 7187 | } |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 7188 | msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS); |
| 7189 | } |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 7190 | dev_warn(&pdev->dev, "board not ready, timed out.\n"); |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 7191 | return -ENODEV; |
| 7192 | } |
| 7193 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7194 | static int hpsa_find_cfg_addrs(struct pci_dev *pdev, void __iomem *vaddr, |
| 7195 | u32 *cfg_base_addr, u64 *cfg_base_addr_index, |
| 7196 | u64 *cfg_offset) |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 7197 | { |
| 7198 | *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET); |
| 7199 | *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET); |
| 7200 | *cfg_base_addr &= (u32) 0x0000ffff; |
| 7201 | *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr); |
| 7202 | if (*cfg_base_addr_index == -1) { |
| 7203 | dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n"); |
| 7204 | return -ENODEV; |
| 7205 | } |
| 7206 | return 0; |
| 7207 | } |
| 7208 | |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7209 | static void hpsa_free_cfgtables(struct ctlr_info *h) |
| 7210 | { |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7211 | if (h->transtable) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7212 | iounmap(h->transtable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7213 | h->transtable = NULL; |
| 7214 | } |
| 7215 | if (h->cfgtable) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7216 | iounmap(h->cfgtable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7217 | h->cfgtable = NULL; |
| 7218 | } |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7219 | } |
| 7220 | |
| 7221 | /* Find and map CISS config table and transfer table |
| 7222 | + * several items must be unmapped (freed) later |
| 7223 | + * */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7224 | static int hpsa_find_cfgtables(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7225 | { |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 7226 | u64 cfg_offset; |
| 7227 | u32 cfg_base_addr; |
| 7228 | u64 cfg_base_addr_index; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 7229 | u32 trans_offset; |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 7230 | int rc; |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 7231 | |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 7232 | rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr, |
| 7233 | &cfg_base_addr_index, &cfg_offset); |
| 7234 | if (rc) |
| 7235 | return rc; |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 7236 | h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev, |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 7237 | cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable)); |
Robert Elliott | cd3c81c | 2015-01-23 16:42:27 -0600 | [diff] [blame] | 7238 | if (!h->cfgtable) { |
| 7239 | dev_err(&h->pdev->dev, "Failed mapping cfgtable\n"); |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 7240 | return -ENOMEM; |
Robert Elliott | cd3c81c | 2015-01-23 16:42:27 -0600 | [diff] [blame] | 7241 | } |
Stephen M. Cameron | 580ada3 | 2011-05-03 14:59:10 -0500 | [diff] [blame] | 7242 | rc = write_driver_ver_to_cfgtable(h->cfgtable); |
| 7243 | if (rc) |
| 7244 | return rc; |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 7245 | /* Find performant mode table. */ |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 7246 | trans_offset = readl(&h->cfgtable->TransMethodOffset); |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 7247 | h->transtable = remap_pci_mem(pci_resource_start(h->pdev, |
| 7248 | cfg_base_addr_index)+cfg_offset+trans_offset, |
| 7249 | sizeof(*h->transtable)); |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7250 | if (!h->transtable) { |
| 7251 | dev_err(&h->pdev->dev, "Failed mapping transfer table\n"); |
| 7252 | hpsa_free_cfgtables(h); |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 7253 | return -ENOMEM; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7254 | } |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 7255 | return 0; |
| 7256 | } |
| 7257 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7258 | 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] | 7259 | { |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 7260 | #define MIN_MAX_COMMANDS 16 |
| 7261 | BUILD_BUG_ON(MIN_MAX_COMMANDS <= HPSA_NRESERVED_CMDS); |
| 7262 | |
| 7263 | h->max_commands = readl(&h->cfgtable->MaxPerformantModeCommands); |
Stephen M. Cameron | 72ceeae | 2011-01-06 14:48:13 -0600 | [diff] [blame] | 7264 | |
| 7265 | /* Limit commands in memory limited kdump scenario. */ |
| 7266 | if (reset_devices && h->max_commands > 32) |
| 7267 | h->max_commands = 32; |
| 7268 | |
Stephen Cameron | 41ce4c3 | 2015-04-23 09:31:47 -0500 | [diff] [blame] | 7269 | if (h->max_commands < MIN_MAX_COMMANDS) { |
| 7270 | dev_warn(&h->pdev->dev, |
| 7271 | "Controller reports max supported commands of %d Using %d instead. Ensure that firmware is up to date.\n", |
| 7272 | h->max_commands, |
| 7273 | MIN_MAX_COMMANDS); |
| 7274 | h->max_commands = MIN_MAX_COMMANDS; |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 7275 | } |
| 7276 | } |
| 7277 | |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 7278 | /* If the controller reports that the total max sg entries is greater than 512, |
| 7279 | * then we know that chained SG blocks work. (Original smart arrays did not |
| 7280 | * support chained SG blocks and would return zero for max sg entries.) |
| 7281 | */ |
| 7282 | static int hpsa_supports_chained_sg_blocks(struct ctlr_info *h) |
| 7283 | { |
| 7284 | return h->maxsgentries > 512; |
| 7285 | } |
| 7286 | |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 7287 | /* Interrogate the hardware for some limits: |
| 7288 | * max commands, max SG elements without chaining, and with chaining, |
| 7289 | * SG chain block size, etc. |
| 7290 | */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7291 | static void hpsa_find_board_params(struct ctlr_info *h) |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 7292 | { |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 7293 | hpsa_get_max_perf_mode_cmds(h); |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 7294 | h->nr_cmds = h->max_commands; |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 7295 | h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements)); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 7296 | h->fw_support = readl(&(h->cfgtable->misc_fw_support)); |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 7297 | if (hpsa_supports_chained_sg_blocks(h)) { |
| 7298 | /* 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] | 7299 | h->max_cmd_sg_entries = 32; |
Webb Scales | 1a63ea6 | 2014-11-14 17:26:43 -0600 | [diff] [blame] | 7300 | h->chainsize = h->maxsgentries - h->max_cmd_sg_entries; |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 7301 | h->maxsgentries--; /* save one for chain pointer */ |
| 7302 | } else { |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 7303 | /* |
| 7304 | * Original smart arrays supported at most 31 s/g entries |
| 7305 | * embedded inline in the command (trying to use more |
| 7306 | * would lock up the controller) |
| 7307 | */ |
| 7308 | h->max_cmd_sg_entries = 31; |
Webb Scales | 1a63ea6 | 2014-11-14 17:26:43 -0600 | [diff] [blame] | 7309 | h->maxsgentries = 31; /* default to traditional values */ |
Webb Scales | c7ee65b | 2015-01-23 16:42:17 -0600 | [diff] [blame] | 7310 | h->chainsize = 0; |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 7311 | } |
Stephen M. Cameron | 75167d2 | 2012-05-01 11:42:51 -0500 | [diff] [blame] | 7312 | |
| 7313 | /* Find out what task management functions are supported and cache */ |
| 7314 | h->TMFSupportFlags = readl(&(h->cfgtable->TMFSupportFlags)); |
Scott Teel | 0e7a7fc | 2014-02-18 13:55:59 -0600 | [diff] [blame] | 7315 | if (!(HPSATMF_PHYS_TASK_ABORT & h->TMFSupportFlags)) |
| 7316 | dev_warn(&h->pdev->dev, "Physical aborts not supported\n"); |
| 7317 | if (!(HPSATMF_LOG_TASK_ABORT & h->TMFSupportFlags)) |
| 7318 | dev_warn(&h->pdev->dev, "Logical aborts not supported\n"); |
Stephen Cameron | 8be986c | 2015-04-23 09:34:06 -0500 | [diff] [blame] | 7319 | if (!(HPSATMF_IOACCEL_ENABLED & h->TMFSupportFlags)) |
| 7320 | dev_warn(&h->pdev->dev, "HP SSD Smart Path aborts not supported\n"); |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 7321 | } |
| 7322 | |
Stephen M. Cameron | 76c46e4 | 2010-05-27 15:13:32 -0500 | [diff] [blame] | 7323 | static inline bool hpsa_CISS_signature_present(struct ctlr_info *h) |
| 7324 | { |
Akinobu Mita | 0fc9fd4 | 2012-04-04 22:14:59 +0900 | [diff] [blame] | 7325 | if (!check_signature(h->cfgtable->Signature, "CISS", 4)) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 7326 | 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] | 7327 | return false; |
| 7328 | } |
| 7329 | return true; |
| 7330 | } |
| 7331 | |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 7332 | 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] | 7333 | { |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 7334 | u32 driver_support; |
Stephen M. Cameron | f7c3910 | 2010-05-27 15:13:38 -0500 | [diff] [blame] | 7335 | |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 7336 | driver_support = readl(&(h->cfgtable->driver_support)); |
Arnd Bergmann | 0b9e7b7 | 2014-06-26 15:44:52 +0200 | [diff] [blame] | 7337 | /* Need to enable prefetch in the SCSI core for 6400 in x86 */ |
| 7338 | #ifdef CONFIG_X86 |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 7339 | driver_support |= ENABLE_SCSI_PREFETCH; |
Stephen M. Cameron | f7c3910 | 2010-05-27 15:13:38 -0500 | [diff] [blame] | 7340 | #endif |
Stephen M. Cameron | 28e1344 | 2013-12-04 17:10:21 -0600 | [diff] [blame] | 7341 | driver_support |= ENABLE_UNIT_ATTN; |
| 7342 | writel(driver_support, &(h->cfgtable->driver_support)); |
Stephen M. Cameron | f7c3910 | 2010-05-27 15:13:38 -0500 | [diff] [blame] | 7343 | } |
| 7344 | |
Stephen M. Cameron | 3d0eab6 | 2010-05-27 15:13:43 -0500 | [diff] [blame] | 7345 | /* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result |
| 7346 | * in a prefetch beyond physical memory. |
| 7347 | */ |
| 7348 | static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h) |
| 7349 | { |
| 7350 | u32 dma_prefetch; |
| 7351 | |
| 7352 | if (h->board_id != 0x3225103C) |
| 7353 | return; |
| 7354 | dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG); |
| 7355 | dma_prefetch |= 0x8000; |
| 7356 | writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG); |
| 7357 | } |
| 7358 | |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7359 | 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] | 7360 | { |
| 7361 | int i; |
| 7362 | u32 doorbell_value; |
| 7363 | unsigned long flags; |
| 7364 | /* wait until the clear_event_notify bit 6 is cleared by controller. */ |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 7365 | for (i = 0; i < MAX_CLEAR_EVENT_WAIT; i++) { |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7366 | spin_lock_irqsave(&h->lock, flags); |
| 7367 | doorbell_value = readl(h->vaddr + SA5_DOORBELL); |
| 7368 | spin_unlock_irqrestore(&h->lock, flags); |
| 7369 | if (!(doorbell_value & DOORBELL_CLEAR_EVENTS)) |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7370 | goto done; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7371 | /* delay and try again */ |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 7372 | msleep(CLEAR_EVENT_WAIT_INTERVAL); |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7373 | } |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7374 | return -ENODEV; |
| 7375 | done: |
| 7376 | return 0; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7377 | } |
| 7378 | |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7379 | 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] | 7380 | { |
| 7381 | int i; |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 7382 | u32 doorbell_value; |
| 7383 | unsigned long flags; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 7384 | |
| 7385 | /* under certain very rare conditions, this can take awhile. |
| 7386 | * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right |
| 7387 | * as we enter this code.) |
| 7388 | */ |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 7389 | for (i = 0; i < MAX_MODE_CHANGE_WAIT; i++) { |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7390 | if (h->remove_in_progress) |
| 7391 | goto done; |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 7392 | spin_lock_irqsave(&h->lock, flags); |
| 7393 | doorbell_value = readl(h->vaddr + SA5_DOORBELL); |
| 7394 | spin_unlock_irqrestore(&h->lock, flags); |
Dan Carpenter | 382be66 | 2011-02-15 15:33:13 -0600 | [diff] [blame] | 7395 | if (!(doorbell_value & CFGTBL_ChangeReq)) |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7396 | goto done; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 7397 | /* delay and try again */ |
Robert Elliott | 007e7aa | 2015-01-23 16:44:56 -0600 | [diff] [blame] | 7398 | msleep(MODE_CHANGE_WAIT_INTERVAL); |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 7399 | } |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7400 | return -ENODEV; |
| 7401 | done: |
| 7402 | return 0; |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 7403 | } |
| 7404 | |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7405 | /* return -ENODEV or other reason on error, 0 on success */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7406 | static int hpsa_enter_simple_mode(struct ctlr_info *h) |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 7407 | { |
| 7408 | u32 trans_support; |
| 7409 | |
| 7410 | trans_support = readl(&(h->cfgtable->TransportSupport)); |
| 7411 | if (!(trans_support & SIMPLE_MODE)) |
| 7412 | return -ENOTSUPP; |
| 7413 | |
| 7414 | h->max_commands = readl(&(h->cfgtable->CmdsOutMax)); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 7415 | |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 7416 | /* Update the field, and then ring the doorbell */ |
| 7417 | writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest)); |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 7418 | writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi); |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 7419 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 7420 | if (hpsa_wait_for_mode_change_ack(h)) |
| 7421 | goto error; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 7422 | print_cfg_table(&h->pdev->dev, h->cfgtable); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 7423 | if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple)) |
| 7424 | goto error; |
Stephen M. Cameron | 960a30e | 2011-02-15 15:33:03 -0600 | [diff] [blame] | 7425 | h->transMethod = CFGTBL_Trans_Simple; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 7426 | return 0; |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 7427 | error: |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 7428 | dev_err(&h->pdev->dev, "failed to enter simple mode\n"); |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 7429 | return -ENODEV; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 7430 | } |
| 7431 | |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7432 | /* free items allocated or mapped by hpsa_pci_init */ |
| 7433 | static void hpsa_free_pci_init(struct ctlr_info *h) |
| 7434 | { |
| 7435 | hpsa_free_cfgtables(h); /* pci_init 4 */ |
| 7436 | iounmap(h->vaddr); /* pci_init 3 */ |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7437 | h->vaddr = NULL; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7438 | hpsa_disable_interrupt_mode(h); /* pci_init 2 */ |
Robert Elliott | 943a702 | 2015-04-23 09:34:32 -0500 | [diff] [blame] | 7439 | /* |
| 7440 | * call pci_disable_device before pci_release_regions per |
| 7441 | * Documentation/PCI/pci.txt |
| 7442 | */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7443 | pci_disable_device(h->pdev); /* pci_init 1 */ |
Robert Elliott | 943a702 | 2015-04-23 09:34:32 -0500 | [diff] [blame] | 7444 | pci_release_regions(h->pdev); /* pci_init 2 */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7445 | } |
| 7446 | |
| 7447 | /* several items must be freed later */ |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7448 | static int hpsa_pci_init(struct ctlr_info *h) |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 7449 | { |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 7450 | int prod_index, err; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7451 | |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 7452 | prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id); |
| 7453 | if (prod_index < 0) |
Robert Elliott | 60f923b | 2015-01-23 16:42:06 -0600 | [diff] [blame] | 7454 | return prod_index; |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 7455 | h->product_name = products[prod_index].product_name; |
| 7456 | h->access = *(products[prod_index].access); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7457 | |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 7458 | h->needs_abort_tags_swizzled = |
| 7459 | ctlr_needs_abort_tags_swizzled(h->board_id); |
| 7460 | |
Matthew Garrett | e5a44df | 2011-11-11 11:14:23 -0500 | [diff] [blame] | 7461 | pci_disable_link_state(h->pdev, PCIE_LINK_STATE_L0S | |
| 7462 | PCIE_LINK_STATE_L1 | PCIE_LINK_STATE_CLKPM); |
| 7463 | |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 7464 | err = pci_enable_device(h->pdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7465 | if (err) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7466 | dev_err(&h->pdev->dev, "failed to enable PCI device\n"); |
Robert Elliott | 943a702 | 2015-04-23 09:34:32 -0500 | [diff] [blame] | 7467 | pci_disable_device(h->pdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7468 | return err; |
| 7469 | } |
| 7470 | |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 7471 | err = pci_request_regions(h->pdev, HPSA); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7472 | if (err) { |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 7473 | dev_err(&h->pdev->dev, |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7474 | "failed to obtain PCI resources\n"); |
Robert Elliott | 943a702 | 2015-04-23 09:34:32 -0500 | [diff] [blame] | 7475 | pci_disable_device(h->pdev); |
| 7476 | return err; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7477 | } |
Robert Elliott | 4fa604e | 2014-11-14 17:27:24 -0600 | [diff] [blame] | 7478 | |
| 7479 | pci_set_master(h->pdev); |
| 7480 | |
Stephen M. Cameron | 6b3f4c5 | 2010-05-27 15:13:02 -0500 | [diff] [blame] | 7481 | hpsa_interrupt_mode(h); |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 7482 | err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr); |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 7483 | if (err) |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7484 | goto clean2; /* intmode+region, pci */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7485 | h->vaddr = remap_pci_mem(h->paddr, 0x250); |
Stephen M. Cameron | 204892e | 2010-05-27 15:13:22 -0500 | [diff] [blame] | 7486 | if (!h->vaddr) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7487 | dev_err(&h->pdev->dev, "failed to remap PCI mem\n"); |
Stephen M. Cameron | 204892e | 2010-05-27 15:13:22 -0500 | [diff] [blame] | 7488 | err = -ENOMEM; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7489 | goto clean2; /* intmode+region, pci */ |
Stephen M. Cameron | 204892e | 2010-05-27 15:13:22 -0500 | [diff] [blame] | 7490 | } |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 7491 | 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] | 7492 | if (err) |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7493 | goto clean3; /* vaddr, intmode+region, pci */ |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 7494 | err = hpsa_find_cfgtables(h); |
| 7495 | if (err) |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7496 | goto clean3; /* vaddr, intmode+region, pci */ |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 7497 | hpsa_find_board_params(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7498 | |
Stephen M. Cameron | 76c46e4 | 2010-05-27 15:13:32 -0500 | [diff] [blame] | 7499 | if (!hpsa_CISS_signature_present(h)) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7500 | err = -ENODEV; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7501 | goto clean4; /* cfgtables, vaddr, intmode+region, pci */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7502 | } |
Stephen M. Cameron | 97a5e98 | 2013-12-04 17:10:16 -0600 | [diff] [blame] | 7503 | hpsa_set_driver_support_bits(h); |
Stephen M. Cameron | 3d0eab6 | 2010-05-27 15:13:43 -0500 | [diff] [blame] | 7504 | hpsa_p600_dma_prefetch_quirk(h); |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 7505 | err = hpsa_enter_simple_mode(h); |
| 7506 | if (err) |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7507 | goto clean4; /* cfgtables, vaddr, intmode+region, pci */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7508 | return 0; |
| 7509 | |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7510 | clean4: /* cfgtables, vaddr, intmode+region, pci */ |
| 7511 | hpsa_free_cfgtables(h); |
| 7512 | clean3: /* vaddr, intmode+region, pci */ |
| 7513 | iounmap(h->vaddr); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7514 | h->vaddr = NULL; |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7515 | clean2: /* intmode+region, pci */ |
| 7516 | hpsa_disable_interrupt_mode(h); |
Robert Elliott | 943a702 | 2015-04-23 09:34:32 -0500 | [diff] [blame] | 7517 | /* |
| 7518 | * call pci_disable_device before pci_release_regions per |
| 7519 | * Documentation/PCI/pci.txt |
| 7520 | */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7521 | pci_disable_device(h->pdev); |
Robert Elliott | 943a702 | 2015-04-23 09:34:32 -0500 | [diff] [blame] | 7522 | pci_release_regions(h->pdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 7523 | return err; |
| 7524 | } |
| 7525 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7526 | static void hpsa_hba_inquiry(struct ctlr_info *h) |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 7527 | { |
| 7528 | int rc; |
| 7529 | |
| 7530 | #define HBA_INQUIRY_BYTE_COUNT 64 |
| 7531 | h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL); |
| 7532 | if (!h->hba_inquiry_data) |
| 7533 | return; |
| 7534 | rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0, |
| 7535 | h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT); |
| 7536 | if (rc != 0) { |
| 7537 | kfree(h->hba_inquiry_data); |
| 7538 | h->hba_inquiry_data = NULL; |
| 7539 | } |
| 7540 | } |
| 7541 | |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 7542 | 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] | 7543 | { |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 7544 | int rc, i; |
Tomas Henzl | 3b74729 | 2015-01-23 16:41:20 -0600 | [diff] [blame] | 7545 | void __iomem *vaddr; |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 7546 | |
| 7547 | if (!reset_devices) |
| 7548 | return 0; |
| 7549 | |
Tomas Henzl | 132aa22 | 2014-08-14 16:12:39 +0200 | [diff] [blame] | 7550 | /* kdump kernel is loading, we don't know in which state is |
| 7551 | * the pci interface. The dev->enable_cnt is equal zero |
| 7552 | * so we call enable+disable, wait a while and switch it on. |
| 7553 | */ |
| 7554 | rc = pci_enable_device(pdev); |
| 7555 | if (rc) { |
| 7556 | dev_warn(&pdev->dev, "Failed to enable PCI device\n"); |
| 7557 | return -ENODEV; |
| 7558 | } |
| 7559 | pci_disable_device(pdev); |
| 7560 | msleep(260); /* a randomly chosen number */ |
| 7561 | rc = pci_enable_device(pdev); |
| 7562 | if (rc) { |
| 7563 | dev_warn(&pdev->dev, "failed to enable device.\n"); |
| 7564 | return -ENODEV; |
| 7565 | } |
Robert Elliott | 4fa604e | 2014-11-14 17:27:24 -0600 | [diff] [blame] | 7566 | |
Tomas Henzl | 859c75a | 2014-09-12 14:44:15 +0200 | [diff] [blame] | 7567 | pci_set_master(pdev); |
Robert Elliott | 4fa604e | 2014-11-14 17:27:24 -0600 | [diff] [blame] | 7568 | |
Tomas Henzl | 3b74729 | 2015-01-23 16:41:20 -0600 | [diff] [blame] | 7569 | vaddr = pci_ioremap_bar(pdev, 0); |
| 7570 | if (vaddr == NULL) { |
| 7571 | rc = -ENOMEM; |
| 7572 | goto out_disable; |
| 7573 | } |
| 7574 | writel(SA5_INTR_OFF, vaddr + SA5_REPLY_INTR_MASK_OFFSET); |
| 7575 | iounmap(vaddr); |
| 7576 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 7577 | /* Reset the controller with a PCI power-cycle or via doorbell */ |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 7578 | rc = hpsa_kdump_hard_reset_controller(pdev, board_id); |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 7579 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 7580 | /* -ENOTSUPP here means we cannot reset the controller |
| 7581 | * but it's already (and still) up and running in |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 7582 | * "performant mode". Or, it might be 640x, which can't reset |
| 7583 | * due to concerns about shared bbwc between 6402/6404 pair. |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 7584 | */ |
Robert Elliott | adf1b3a | 2015-01-23 16:42:01 -0600 | [diff] [blame] | 7585 | if (rc) |
Tomas Henzl | 132aa22 | 2014-08-14 16:12:39 +0200 | [diff] [blame] | 7586 | goto out_disable; |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 7587 | |
| 7588 | /* Now try to get the controller to respond to a no-op */ |
Robert Elliott | 1ba66c9 | 2015-01-23 16:42:11 -0600 | [diff] [blame] | 7589 | 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] | 7590 | for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) { |
| 7591 | if (hpsa_noop(pdev) == 0) |
| 7592 | break; |
| 7593 | else |
| 7594 | dev_warn(&pdev->dev, "no-op failed%s\n", |
| 7595 | (i < 11 ? "; re-trying" : "")); |
| 7596 | } |
Tomas Henzl | 132aa22 | 2014-08-14 16:12:39 +0200 | [diff] [blame] | 7597 | |
| 7598 | out_disable: |
| 7599 | |
| 7600 | pci_disable_device(pdev); |
| 7601 | return rc; |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 7602 | } |
| 7603 | |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7604 | static void hpsa_free_cmd_pool(struct ctlr_info *h) |
| 7605 | { |
| 7606 | kfree(h->cmd_pool_bits); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7607 | h->cmd_pool_bits = NULL; |
| 7608 | if (h->cmd_pool) { |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7609 | pci_free_consistent(h->pdev, |
| 7610 | h->nr_cmds * sizeof(struct CommandList), |
| 7611 | h->cmd_pool, |
| 7612 | h->cmd_pool_dhandle); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7613 | h->cmd_pool = NULL; |
| 7614 | h->cmd_pool_dhandle = 0; |
| 7615 | } |
| 7616 | if (h->errinfo_pool) { |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7617 | pci_free_consistent(h->pdev, |
| 7618 | h->nr_cmds * sizeof(struct ErrorInfo), |
| 7619 | h->errinfo_pool, |
| 7620 | h->errinfo_pool_dhandle); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7621 | h->errinfo_pool = NULL; |
| 7622 | h->errinfo_pool_dhandle = 0; |
| 7623 | } |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7624 | } |
| 7625 | |
Robert Elliott | d37ffbe | 2015-04-23 09:32:27 -0500 | [diff] [blame] | 7626 | static int hpsa_alloc_cmd_pool(struct ctlr_info *h) |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 7627 | { |
| 7628 | h->cmd_pool_bits = kzalloc( |
| 7629 | DIV_ROUND_UP(h->nr_cmds, BITS_PER_LONG) * |
| 7630 | sizeof(unsigned long), GFP_KERNEL); |
| 7631 | h->cmd_pool = pci_alloc_consistent(h->pdev, |
| 7632 | h->nr_cmds * sizeof(*h->cmd_pool), |
| 7633 | &(h->cmd_pool_dhandle)); |
| 7634 | h->errinfo_pool = pci_alloc_consistent(h->pdev, |
| 7635 | h->nr_cmds * sizeof(*h->errinfo_pool), |
| 7636 | &(h->errinfo_pool_dhandle)); |
| 7637 | if ((h->cmd_pool_bits == NULL) |
| 7638 | || (h->cmd_pool == NULL) |
| 7639 | || (h->errinfo_pool == NULL)) { |
| 7640 | dev_err(&h->pdev->dev, "out of memory in %s", __func__); |
Robert Elliott | 2c14334 | 2015-01-23 16:42:48 -0600 | [diff] [blame] | 7641 | goto clean_up; |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 7642 | } |
Stephen Cameron | 360c73b | 2015-04-23 09:32:32 -0500 | [diff] [blame] | 7643 | hpsa_preinitialize_commands(h); |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 7644 | return 0; |
Robert Elliott | 2c14334 | 2015-01-23 16:42:48 -0600 | [diff] [blame] | 7645 | clean_up: |
| 7646 | hpsa_free_cmd_pool(h); |
| 7647 | return -ENOMEM; |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 7648 | } |
| 7649 | |
Stephen M. Cameron | 41b3cf0 | 2014-05-29 10:53:13 -0500 | [diff] [blame] | 7650 | static void hpsa_irq_affinity_hints(struct ctlr_info *h) |
| 7651 | { |
Fabian Frederick | ec42995 | 2015-01-23 16:41:46 -0600 | [diff] [blame] | 7652 | int i, cpu; |
Stephen M. Cameron | 41b3cf0 | 2014-05-29 10:53:13 -0500 | [diff] [blame] | 7653 | |
| 7654 | cpu = cpumask_first(cpu_online_mask); |
| 7655 | for (i = 0; i < h->msix_vector; i++) { |
Fabian Frederick | ec42995 | 2015-01-23 16:41:46 -0600 | [diff] [blame] | 7656 | irq_set_affinity_hint(h->intr[i], get_cpu_mask(cpu)); |
Stephen M. Cameron | 41b3cf0 | 2014-05-29 10:53:13 -0500 | [diff] [blame] | 7657 | cpu = cpumask_next(cpu, cpu_online_mask); |
| 7658 | } |
| 7659 | } |
| 7660 | |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7661 | /* clear affinity hints and free MSI-X, MSI, or legacy INTx vectors */ |
| 7662 | static void hpsa_free_irqs(struct ctlr_info *h) |
| 7663 | { |
| 7664 | int i; |
| 7665 | |
| 7666 | if (!h->msix_vector || h->intr_mode != PERF_MODE_INT) { |
| 7667 | /* Single reply queue, only one irq to free */ |
| 7668 | i = h->intr_mode; |
| 7669 | irq_set_affinity_hint(h->intr[i], NULL); |
| 7670 | free_irq(h->intr[i], &h->q[i]); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7671 | h->q[i] = 0; |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7672 | return; |
| 7673 | } |
| 7674 | |
| 7675 | for (i = 0; i < h->msix_vector; i++) { |
| 7676 | irq_set_affinity_hint(h->intr[i], NULL); |
| 7677 | free_irq(h->intr[i], &h->q[i]); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7678 | h->q[i] = 0; |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7679 | } |
Robert Elliott | a4e17fc | 2015-01-23 16:41:51 -0600 | [diff] [blame] | 7680 | for (; i < MAX_REPLY_QUEUES; i++) |
| 7681 | h->q[i] = 0; |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 7682 | } |
| 7683 | |
Robert Elliott | 9ee6179 | 2015-01-23 16:42:32 -0600 | [diff] [blame] | 7684 | /* returns 0 on success; cleans up and returns -Enn on error */ |
| 7685 | static int hpsa_request_irqs(struct ctlr_info *h, |
Stephen M. Cameron | 0ae01a3 | 2011-05-03 14:59:25 -0500 | [diff] [blame] | 7686 | irqreturn_t (*msixhandler)(int, void *), |
| 7687 | irqreturn_t (*intxhandler)(int, void *)) |
| 7688 | { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7689 | int rc, i; |
Stephen M. Cameron | 0ae01a3 | 2011-05-03 14:59:25 -0500 | [diff] [blame] | 7690 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7691 | /* |
| 7692 | * initialize h->q[x] = x so that interrupt handlers know which |
| 7693 | * queue to process. |
| 7694 | */ |
| 7695 | for (i = 0; i < MAX_REPLY_QUEUES; i++) |
| 7696 | h->q[i] = (u8) i; |
| 7697 | |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 7698 | if (h->intr_mode == PERF_MODE_INT && h->msix_vector > 0) { |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7699 | /* If performant mode and MSI-X, use multiple reply queues */ |
Robert Elliott | a4e17fc | 2015-01-23 16:41:51 -0600 | [diff] [blame] | 7700 | for (i = 0; i < h->msix_vector; i++) { |
Robert Elliott | 8b47004 | 2015-04-23 09:34:58 -0500 | [diff] [blame] | 7701 | sprintf(h->intrname[i], "%s-msix%d", h->devname, i); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7702 | rc = request_irq(h->intr[i], msixhandler, |
Robert Elliott | 8b47004 | 2015-04-23 09:34:58 -0500 | [diff] [blame] | 7703 | 0, h->intrname[i], |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7704 | &h->q[i]); |
Robert Elliott | a4e17fc | 2015-01-23 16:41:51 -0600 | [diff] [blame] | 7705 | if (rc) { |
| 7706 | int j; |
| 7707 | |
| 7708 | dev_err(&h->pdev->dev, |
| 7709 | "failed to get irq %d for %s\n", |
| 7710 | h->intr[i], h->devname); |
| 7711 | for (j = 0; j < i; j++) { |
| 7712 | free_irq(h->intr[j], &h->q[j]); |
| 7713 | h->q[j] = 0; |
| 7714 | } |
| 7715 | for (; j < MAX_REPLY_QUEUES; j++) |
| 7716 | h->q[j] = 0; |
| 7717 | return rc; |
| 7718 | } |
| 7719 | } |
Stephen M. Cameron | 41b3cf0 | 2014-05-29 10:53:13 -0500 | [diff] [blame] | 7720 | hpsa_irq_affinity_hints(h); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7721 | } else { |
| 7722 | /* Use single reply pool */ |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 7723 | if (h->msix_vector > 0 || h->msi_vector) { |
Robert Elliott | 8b47004 | 2015-04-23 09:34:58 -0500 | [diff] [blame] | 7724 | if (h->msix_vector) |
| 7725 | sprintf(h->intrname[h->intr_mode], |
| 7726 | "%s-msix", h->devname); |
| 7727 | else |
| 7728 | sprintf(h->intrname[h->intr_mode], |
| 7729 | "%s-msi", h->devname); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7730 | rc = request_irq(h->intr[h->intr_mode], |
Robert Elliott | 8b47004 | 2015-04-23 09:34:58 -0500 | [diff] [blame] | 7731 | msixhandler, 0, |
| 7732 | h->intrname[h->intr_mode], |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7733 | &h->q[h->intr_mode]); |
| 7734 | } else { |
Robert Elliott | 8b47004 | 2015-04-23 09:34:58 -0500 | [diff] [blame] | 7735 | sprintf(h->intrname[h->intr_mode], |
| 7736 | "%s-intx", h->devname); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7737 | rc = request_irq(h->intr[h->intr_mode], |
Robert Elliott | 8b47004 | 2015-04-23 09:34:58 -0500 | [diff] [blame] | 7738 | intxhandler, IRQF_SHARED, |
| 7739 | h->intrname[h->intr_mode], |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7740 | &h->q[h->intr_mode]); |
| 7741 | } |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7742 | irq_set_affinity_hint(h->intr[h->intr_mode], NULL); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 7743 | } |
Stephen M. Cameron | 0ae01a3 | 2011-05-03 14:59:25 -0500 | [diff] [blame] | 7744 | if (rc) { |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7745 | 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] | 7746 | h->intr[h->intr_mode], h->devname); |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 7747 | hpsa_free_irqs(h); |
Stephen M. Cameron | 0ae01a3 | 2011-05-03 14:59:25 -0500 | [diff] [blame] | 7748 | return -ENODEV; |
| 7749 | } |
| 7750 | return 0; |
| 7751 | } |
| 7752 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 7753 | static int hpsa_kdump_soft_reset(struct ctlr_info *h) |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7754 | { |
Robert Elliott | 39c53f5 | 2015-04-23 09:35:14 -0500 | [diff] [blame] | 7755 | int rc; |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 7756 | 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] | 7757 | |
| 7758 | dev_info(&h->pdev->dev, "Waiting for board to soft reset.\n"); |
Robert Elliott | 39c53f5 | 2015-04-23 09:35:14 -0500 | [diff] [blame] | 7759 | rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_NOT_READY); |
| 7760 | if (rc) { |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7761 | dev_warn(&h->pdev->dev, "Soft reset had no effect.\n"); |
Robert Elliott | 39c53f5 | 2015-04-23 09:35:14 -0500 | [diff] [blame] | 7762 | return rc; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7763 | } |
| 7764 | |
| 7765 | dev_info(&h->pdev->dev, "Board reset, awaiting READY status.\n"); |
Robert Elliott | 39c53f5 | 2015-04-23 09:35:14 -0500 | [diff] [blame] | 7766 | rc = hpsa_wait_for_board_state(h->pdev, h->vaddr, BOARD_READY); |
| 7767 | if (rc) { |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7768 | dev_warn(&h->pdev->dev, "Board failed to become ready " |
| 7769 | "after soft reset.\n"); |
Robert Elliott | 39c53f5 | 2015-04-23 09:35:14 -0500 | [diff] [blame] | 7770 | return rc; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7771 | } |
| 7772 | |
| 7773 | return 0; |
| 7774 | } |
| 7775 | |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 7776 | static void hpsa_free_reply_queues(struct ctlr_info *h) |
| 7777 | { |
| 7778 | int i; |
| 7779 | |
| 7780 | for (i = 0; i < h->nreply_queues; i++) { |
| 7781 | if (!h->reply_queue[i].head) |
| 7782 | continue; |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 7783 | pci_free_consistent(h->pdev, |
| 7784 | h->reply_queue_size, |
| 7785 | h->reply_queue[i].head, |
| 7786 | h->reply_queue[i].busaddr); |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 7787 | h->reply_queue[i].head = NULL; |
| 7788 | h->reply_queue[i].busaddr = 0; |
| 7789 | } |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7790 | h->reply_queue_size = 0; |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 7791 | } |
| 7792 | |
Stephen M. Cameron | 0097f0f | 2012-05-01 11:43:21 -0500 | [diff] [blame] | 7793 | static void hpsa_undo_allocations_after_kdump_soft_reset(struct ctlr_info *h) |
| 7794 | { |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7795 | hpsa_free_performant_mode(h); /* init_one 7 */ |
| 7796 | hpsa_free_sg_chain_blocks(h); /* init_one 6 */ |
| 7797 | hpsa_free_cmd_pool(h); /* init_one 5 */ |
| 7798 | hpsa_free_irqs(h); /* init_one 4 */ |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 7799 | scsi_host_put(h->scsi_host); /* init_one 3 */ |
| 7800 | h->scsi_host = NULL; /* init_one 3 */ |
| 7801 | hpsa_free_pci_init(h); /* init_one 2_5 */ |
Robert Elliott | 9ecd953 | 2015-04-23 09:34:43 -0500 | [diff] [blame] | 7802 | free_percpu(h->lockup_detected); /* init_one 2 */ |
| 7803 | h->lockup_detected = NULL; /* init_one 2 */ |
| 7804 | if (h->resubmit_wq) { |
| 7805 | destroy_workqueue(h->resubmit_wq); /* init_one 1 */ |
| 7806 | h->resubmit_wq = NULL; |
| 7807 | } |
| 7808 | if (h->rescan_ctlr_wq) { |
| 7809 | destroy_workqueue(h->rescan_ctlr_wq); |
| 7810 | h->rescan_ctlr_wq = NULL; |
| 7811 | } |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 7812 | kfree(h); /* init_one 1 */ |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 7813 | } |
| 7814 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7815 | /* Called when controller lockup detected. */ |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 7816 | static void fail_all_outstanding_cmds(struct ctlr_info *h) |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7817 | { |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 7818 | int i, refcount; |
| 7819 | struct CommandList *c; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7820 | int failcount = 0; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7821 | |
Don Brace | 080ef1c | 2015-01-23 16:43:25 -0600 | [diff] [blame] | 7822 | flush_workqueue(h->resubmit_wq); /* ensure all cmds are fully built */ |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 7823 | for (i = 0; i < h->nr_cmds; i++) { |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 7824 | c = h->cmd_pool + i; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 7825 | refcount = atomic_inc_return(&c->refcount); |
| 7826 | if (refcount > 1) { |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7827 | c->err_info->CommandStatus = CMD_CTLR_LOCKUP; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 7828 | finish_cmd(c); |
Stephen Cameron | 433b5f4 | 2015-04-23 09:32:11 -0500 | [diff] [blame] | 7829 | atomic_dec(&h->commands_outstanding); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7830 | failcount++; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 7831 | } |
| 7832 | cmd_free(h, c); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7833 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7834 | dev_warn(&h->pdev->dev, |
| 7835 | "failed %d commands in fail_all\n", failcount); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7836 | } |
| 7837 | |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7838 | static void set_lockup_detected_for_all_cpus(struct ctlr_info *h, u32 value) |
| 7839 | { |
Rusty Russell | c8ed001 | 2015-03-05 10:49:19 +1030 | [diff] [blame] | 7840 | int cpu; |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7841 | |
Rusty Russell | c8ed001 | 2015-03-05 10:49:19 +1030 | [diff] [blame] | 7842 | for_each_online_cpu(cpu) { |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7843 | u32 *lockup_detected; |
| 7844 | lockup_detected = per_cpu_ptr(h->lockup_detected, cpu); |
| 7845 | *lockup_detected = value; |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7846 | } |
| 7847 | wmb(); /* be sure the per-cpu variables are out to memory */ |
| 7848 | } |
| 7849 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7850 | static void controller_lockup_detected(struct ctlr_info *h) |
| 7851 | { |
| 7852 | unsigned long flags; |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7853 | u32 lockup_detected; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7854 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7855 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
| 7856 | spin_lock_irqsave(&h->lock, flags); |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7857 | lockup_detected = readl(h->vaddr + SA5_SCRATCHPAD_OFFSET); |
| 7858 | if (!lockup_detected) { |
| 7859 | /* no heartbeat, but controller gave us a zero. */ |
| 7860 | dev_warn(&h->pdev->dev, |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7861 | "lockup detected after %d but scratchpad register is zero\n", |
| 7862 | h->heartbeat_sample_interval / HZ); |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 7863 | lockup_detected = 0xffffffff; |
| 7864 | } |
| 7865 | set_lockup_detected_for_all_cpus(h, lockup_detected); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7866 | spin_unlock_irqrestore(&h->lock, flags); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7867 | dev_warn(&h->pdev->dev, "Controller lockup detected: 0x%08x after %d\n", |
| 7868 | lockup_detected, h->heartbeat_sample_interval / HZ); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7869 | pci_disable_device(h->pdev); |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 7870 | fail_all_outstanding_cmds(h); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7871 | } |
| 7872 | |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7873 | static int detect_controller_lockup(struct ctlr_info *h) |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7874 | { |
| 7875 | u64 now; |
| 7876 | u32 heartbeat; |
| 7877 | unsigned long flags; |
| 7878 | |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7879 | now = get_jiffies_64(); |
| 7880 | /* If we've received an interrupt recently, we're ok. */ |
| 7881 | if (time_after64(h->last_intr_timestamp + |
Stephen M. Cameron | e85c597 | 2012-05-01 11:43:42 -0500 | [diff] [blame] | 7882 | (h->heartbeat_sample_interval), now)) |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7883 | return false; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7884 | |
| 7885 | /* |
| 7886 | * If we've already checked the heartbeat recently, we're ok. |
| 7887 | * This could happen if someone sends us a signal. We |
| 7888 | * otherwise don't care about signals in this thread. |
| 7889 | */ |
| 7890 | if (time_after64(h->last_heartbeat_timestamp + |
Stephen M. Cameron | e85c597 | 2012-05-01 11:43:42 -0500 | [diff] [blame] | 7891 | (h->heartbeat_sample_interval), now)) |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7892 | return false; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7893 | |
| 7894 | /* If heartbeat has not changed since we last looked, we're not ok. */ |
| 7895 | spin_lock_irqsave(&h->lock, flags); |
| 7896 | heartbeat = readl(&h->cfgtable->HeartBeat); |
| 7897 | spin_unlock_irqrestore(&h->lock, flags); |
| 7898 | if (h->last_heartbeat == heartbeat) { |
| 7899 | controller_lockup_detected(h); |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7900 | return true; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7901 | } |
| 7902 | |
| 7903 | /* We're ok. */ |
| 7904 | h->last_heartbeat = heartbeat; |
| 7905 | h->last_heartbeat_timestamp = now; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 7906 | return false; |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 7907 | } |
| 7908 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7909 | static void hpsa_ack_ctlr_events(struct ctlr_info *h) |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7910 | { |
| 7911 | int i; |
| 7912 | char *event_type; |
| 7913 | |
Stephen Cameron | e4aa3e6 | 2015-01-23 16:44:07 -0600 | [diff] [blame] | 7914 | if (!(h->fw_support & MISC_FW_EVENT_NOTIFY)) |
| 7915 | return; |
| 7916 | |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7917 | /* Ask the controller to clear the events we're handling. */ |
Stephen M. Cameron | 1f7cee8 | 2014-02-18 13:56:09 -0600 | [diff] [blame] | 7918 | if ((h->transMethod & (CFGTBL_Trans_io_accel1 |
| 7919 | | CFGTBL_Trans_io_accel2)) && |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7920 | (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE || |
| 7921 | h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE)) { |
| 7922 | |
| 7923 | if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_STATE_CHANGE) |
| 7924 | event_type = "state change"; |
| 7925 | if (h->events & HPSA_EVENT_NOTIFY_ACCEL_IO_PATH_CONFIG_CHANGE) |
| 7926 | event_type = "configuration change"; |
| 7927 | /* Stop sending new RAID offload reqs via the IO accelerator */ |
| 7928 | scsi_block_requests(h->scsi_host); |
| 7929 | for (i = 0; i < h->ndevices; i++) |
| 7930 | h->dev[i]->offload_enabled = 0; |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 7931 | hpsa_drain_accel_commands(h); |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7932 | /* Set 'accelerator path config change' bit */ |
| 7933 | dev_warn(&h->pdev->dev, |
| 7934 | "Acknowledging event: 0x%08x (HP SSD Smart Path %s)\n", |
| 7935 | h->events, event_type); |
| 7936 | writel(h->events, &(h->cfgtable->clear_event_notify)); |
| 7937 | /* Set the "clear event notify field update" bit 6 */ |
| 7938 | writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL); |
| 7939 | /* Wait until ctlr clears 'clear event notify field', bit 6 */ |
| 7940 | hpsa_wait_for_clear_event_notify_ack(h); |
| 7941 | scsi_unblock_requests(h->scsi_host); |
| 7942 | } else { |
| 7943 | /* Acknowledge controller notification events. */ |
| 7944 | writel(h->events, &(h->cfgtable->clear_event_notify)); |
| 7945 | writel(DOORBELL_CLEAR_EVENTS, h->vaddr + SA5_DOORBELL); |
| 7946 | hpsa_wait_for_clear_event_notify_ack(h); |
| 7947 | #if 0 |
| 7948 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
| 7949 | hpsa_wait_for_mode_change_ack(h); |
| 7950 | #endif |
| 7951 | } |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7952 | return; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7953 | } |
| 7954 | |
| 7955 | /* Check a register on the controller to see if there are configuration |
| 7956 | * changes (added/changed/removed logical drives, etc.) which mean that |
Scott Teel | e863d68 | 2014-02-18 13:57:05 -0600 | [diff] [blame] | 7957 | * we should rescan the controller for devices. |
| 7958 | * Also check flag for driver-initiated rescan. |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7959 | */ |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7960 | static int hpsa_ctlr_needs_rescan(struct ctlr_info *h) |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7961 | { |
Don Brace | 853633e | 2015-11-04 15:50:37 -0600 | [diff] [blame] | 7962 | if (h->drv_req_rescan) { |
| 7963 | h->drv_req_rescan = 0; |
| 7964 | return 1; |
| 7965 | } |
| 7966 | |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7967 | if (!(h->fw_support & MISC_FW_EVENT_NOTIFY)) |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7968 | return 0; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7969 | |
| 7970 | h->events = readl(&(h->cfgtable->event_notify)); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7971 | return h->events & RESCAN_REQUIRED_EVENT_BITS; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 7972 | } |
| 7973 | |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7974 | /* |
| 7975 | * Check if any of the offline devices have become ready |
| 7976 | */ |
| 7977 | static int hpsa_offline_devices_ready(struct ctlr_info *h) |
| 7978 | { |
| 7979 | unsigned long flags; |
| 7980 | struct offline_device_entry *d; |
| 7981 | struct list_head *this, *tmp; |
| 7982 | |
| 7983 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 7984 | list_for_each_safe(this, tmp, &h->offline_device_list) { |
| 7985 | d = list_entry(this, struct offline_device_entry, |
| 7986 | offline_list); |
| 7987 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
Stephen M. Cameron | d1fea47 | 2014-07-03 10:17:58 -0500 | [diff] [blame] | 7988 | if (!hpsa_volume_offline(h, d->scsi3addr)) { |
| 7989 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 7990 | list_del(&d->offline_list); |
| 7991 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7992 | return 1; |
Stephen M. Cameron | d1fea47 | 2014-07-03 10:17:58 -0500 | [diff] [blame] | 7993 | } |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 7994 | spin_lock_irqsave(&h->offline_device_lock, flags); |
| 7995 | } |
| 7996 | spin_unlock_irqrestore(&h->offline_device_lock, flags); |
| 7997 | return 0; |
| 7998 | } |
| 7999 | |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 8000 | static void hpsa_rescan_ctlr_worker(struct work_struct *work) |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 8001 | { |
| 8002 | unsigned long flags; |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 8003 | struct ctlr_info *h = container_of(to_delayed_work(work), |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 8004 | struct ctlr_info, rescan_ctlr_work); |
| 8005 | |
| 8006 | |
| 8007 | if (h->remove_in_progress) |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 8008 | return; |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 8009 | |
| 8010 | if (hpsa_ctlr_needs_rescan(h) || hpsa_offline_devices_ready(h)) { |
| 8011 | scsi_host_get(h->scsi_host); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 8012 | hpsa_ack_ctlr_events(h); |
| 8013 | hpsa_scan_start(h->scsi_host); |
| 8014 | scsi_host_put(h->scsi_host); |
| 8015 | } |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 8016 | spin_lock_irqsave(&h->lock, flags); |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 8017 | if (!h->remove_in_progress) |
| 8018 | queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work, |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 8019 | h->heartbeat_sample_interval); |
| 8020 | spin_unlock_irqrestore(&h->lock, flags); |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 8021 | } |
| 8022 | |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 8023 | static void hpsa_monitor_ctlr_worker(struct work_struct *work) |
| 8024 | { |
| 8025 | unsigned long flags; |
| 8026 | struct ctlr_info *h = container_of(to_delayed_work(work), |
| 8027 | struct ctlr_info, monitor_ctlr_work); |
| 8028 | |
| 8029 | detect_controller_lockup(h); |
| 8030 | if (lockup_detected(h)) |
| 8031 | return; |
| 8032 | |
| 8033 | spin_lock_irqsave(&h->lock, flags); |
| 8034 | if (!h->remove_in_progress) |
| 8035 | schedule_delayed_work(&h->monitor_ctlr_work, |
| 8036 | h->heartbeat_sample_interval); |
| 8037 | spin_unlock_irqrestore(&h->lock, flags); |
| 8038 | } |
| 8039 | |
| 8040 | static struct workqueue_struct *hpsa_create_controller_wq(struct ctlr_info *h, |
| 8041 | char *name) |
| 8042 | { |
| 8043 | struct workqueue_struct *wq = NULL; |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 8044 | |
Don Brace | 397ea9c | 2015-02-06 17:44:15 -0600 | [diff] [blame] | 8045 | wq = alloc_ordered_workqueue("%s_%d_hpsa", 0, name, h->ctlr); |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 8046 | if (!wq) |
| 8047 | dev_err(&h->pdev->dev, "failed to create %s workqueue\n", name); |
| 8048 | |
| 8049 | return wq; |
| 8050 | } |
| 8051 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 8052 | 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] | 8053 | { |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 8054 | int dac, rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8055 | struct ctlr_info *h; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 8056 | int try_soft_reset = 0; |
| 8057 | unsigned long flags; |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 8058 | u32 board_id; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8059 | |
| 8060 | if (number_of_controllers == 0) |
| 8061 | printk(KERN_INFO DRIVER_NAME "\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8062 | |
Tomas Henzl | 6b6c1cd | 2015-04-02 15:25:54 +0200 | [diff] [blame] | 8063 | rc = hpsa_lookup_board_id(pdev, &board_id); |
| 8064 | if (rc < 0) { |
| 8065 | dev_warn(&pdev->dev, "Board ID not found\n"); |
| 8066 | return rc; |
| 8067 | } |
| 8068 | |
| 8069 | rc = hpsa_init_reset_devices(pdev, board_id); |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 8070 | if (rc) { |
| 8071 | if (rc != -ENOTSUPP) |
| 8072 | return rc; |
| 8073 | /* If the reset fails in a particular way (it has no way to do |
| 8074 | * a proper hard reset, so returns -ENOTSUPP) we can try to do |
| 8075 | * a soft reset once we get the controller configured up to the |
| 8076 | * point that it can accept a command. |
| 8077 | */ |
| 8078 | try_soft_reset = 1; |
| 8079 | rc = 0; |
| 8080 | } |
| 8081 | |
| 8082 | reinit_after_soft_reset: |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8083 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8084 | /* Command structures must be aligned on a 32-byte boundary because |
| 8085 | * the 5 lower bits of the address are used by the hardware. and by |
| 8086 | * the driver. See comments in hpsa.h for more info. |
| 8087 | */ |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8088 | BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8089 | h = kzalloc(sizeof(*h), GFP_KERNEL); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8090 | if (!h) { |
| 8091 | dev_err(&pdev->dev, "Failed to allocate controller head\n"); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 8092 | return -ENOMEM; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8093 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8094 | |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 8095 | h->pdev = pdev; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8096 | |
Stephen M. Cameron | a9a3a27 | 2011-02-15 15:32:53 -0600 | [diff] [blame] | 8097 | 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] | 8098 | INIT_LIST_HEAD(&h->offline_device_list); |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 8099 | spin_lock_init(&h->lock); |
Stephen M. Cameron | 9846590 | 2014-02-21 16:25:00 -0600 | [diff] [blame] | 8100 | spin_lock_init(&h->offline_device_lock); |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 8101 | spin_lock_init(&h->scan_lock); |
Don Brace | 34f0c62 | 2015-01-23 16:43:46 -0600 | [diff] [blame] | 8102 | atomic_set(&h->passthru_cmds_avail, HPSA_MAX_CONCURRENT_PASSTHRUS); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 8103 | atomic_set(&h->abort_cmds_available, HPSA_CMDS_RESERVED_FOR_ABORTS); |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 8104 | |
| 8105 | /* Allocate and clear per-cpu variable lockup_detected */ |
| 8106 | h->lockup_detected = alloc_percpu(u32); |
Stephen M. Cameron | 2a5ac32 | 2014-07-03 10:18:08 -0500 | [diff] [blame] | 8107 | if (!h->lockup_detected) { |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8108 | dev_err(&h->pdev->dev, "Failed to allocate lockup detector\n"); |
Stephen M. Cameron | 2a5ac32 | 2014-07-03 10:18:08 -0500 | [diff] [blame] | 8109 | rc = -ENOMEM; |
Robert Elliott | 2efa592 | 2015-04-23 09:34:53 -0500 | [diff] [blame] | 8110 | goto clean1; /* aer/h */ |
Stephen M. Cameron | 2a5ac32 | 2014-07-03 10:18:08 -0500 | [diff] [blame] | 8111 | } |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 8112 | set_lockup_detected_for_all_cpus(h, 0); |
| 8113 | |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 8114 | rc = hpsa_pci_init(h); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8115 | if (rc) |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8116 | goto clean2; /* lu, aer/h */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8117 | |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8118 | /* relies on h-> settings made by hpsa_pci_init, including |
| 8119 | * interrupt_mode h->intr */ |
| 8120 | rc = hpsa_scsi_host_alloc(h); |
| 8121 | if (rc) |
| 8122 | goto clean2_5; /* pci, lu, aer/h */ |
| 8123 | |
| 8124 | sprintf(h->devname, HPSA "%d", h->scsi_host->host_no); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8125 | h->ctlr = number_of_controllers; |
| 8126 | number_of_controllers++; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8127 | |
| 8128 | /* configure PCI DMA stuff */ |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 8129 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
| 8130 | if (rc == 0) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8131 | dac = 1; |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 8132 | } else { |
| 8133 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 8134 | if (rc == 0) { |
| 8135 | dac = 0; |
| 8136 | } else { |
| 8137 | dev_err(&pdev->dev, "no suitable DMA available\n"); |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8138 | goto clean3; /* shost, pci, lu, aer/h */ |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 8139 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8140 | } |
| 8141 | |
| 8142 | /* make sure the board interrupts are off */ |
| 8143 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 8144 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8145 | rc = hpsa_request_irqs(h, do_hpsa_intr_msi, do_hpsa_intr_intx); |
| 8146 | if (rc) |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8147 | goto clean3; /* shost, pci, lu, aer/h */ |
Robert Elliott | d37ffbe | 2015-04-23 09:32:27 -0500 | [diff] [blame] | 8148 | rc = hpsa_alloc_cmd_pool(h); |
Robert Elliott | 8947fd1 | 2015-01-23 16:42:54 -0600 | [diff] [blame] | 8149 | if (rc) |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8150 | goto clean4; /* irq, shost, pci, lu, aer/h */ |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8151 | rc = hpsa_alloc_sg_chain_blocks(h); |
| 8152 | if (rc) |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8153 | goto clean5; /* cmd, irq, shost, pci, lu, aer/h */ |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 8154 | init_waitqueue_head(&h->scan_wait_queue); |
Stephen Cameron | 9b5c48c | 2015-04-23 09:32:06 -0500 | [diff] [blame] | 8155 | init_waitqueue_head(&h->abort_cmd_wait_queue); |
Webb Scales | d604f53 | 2015-04-23 09:35:22 -0500 | [diff] [blame] | 8156 | init_waitqueue_head(&h->event_sync_wait_queue); |
| 8157 | mutex_init(&h->reset_mutex); |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 8158 | h->scan_finished = 1; /* no scan currently in progress */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8159 | |
| 8160 | pci_set_drvdata(pdev, h); |
Stephen M. Cameron | 9a41338 | 2011-05-03 14:59:41 -0500 | [diff] [blame] | 8161 | h->ndevices = 0; |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8162 | |
Stephen M. Cameron | 9a41338 | 2011-05-03 14:59:41 -0500 | [diff] [blame] | 8163 | spin_lock_init(&h->devlock); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8164 | rc = hpsa_put_ctlr_into_performant_mode(h); |
| 8165 | if (rc) |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8166 | goto clean6; /* sg, cmd, irq, shost, pci, lu, aer/h */ |
| 8167 | |
| 8168 | /* hook into SCSI subsystem */ |
| 8169 | rc = hpsa_scsi_add_host(h); |
| 8170 | if (rc) |
| 8171 | goto clean7; /* perf, sg, cmd, irq, shost, pci, lu, aer/h */ |
Robert Elliott | 2efa592 | 2015-04-23 09:34:53 -0500 | [diff] [blame] | 8172 | |
| 8173 | /* create the resubmit workqueue */ |
| 8174 | h->rescan_ctlr_wq = hpsa_create_controller_wq(h, "rescan"); |
| 8175 | if (!h->rescan_ctlr_wq) { |
| 8176 | rc = -ENOMEM; |
| 8177 | goto clean7; |
| 8178 | } |
| 8179 | |
| 8180 | h->resubmit_wq = hpsa_create_controller_wq(h, "resubmit"); |
| 8181 | if (!h->resubmit_wq) { |
| 8182 | rc = -ENOMEM; |
| 8183 | goto clean7; /* aer/h */ |
| 8184 | } |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 8185 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8186 | /* |
| 8187 | * At this point, the controller is ready to take commands. |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 8188 | * Now, if reset_devices and the hard reset didn't work, try |
| 8189 | * the soft reset and see if that works. |
| 8190 | */ |
| 8191 | if (try_soft_reset) { |
| 8192 | |
| 8193 | /* This is kind of gross. We may or may not get a completion |
| 8194 | * from the soft reset command, and if we do, then the value |
| 8195 | * from the fifo may or may not be valid. So, we wait 10 secs |
| 8196 | * after the reset throwing away any completions we get during |
| 8197 | * that time. Unregister the interrupt handler and register |
| 8198 | * fake ones to scoop up any residual completions. |
| 8199 | */ |
| 8200 | spin_lock_irqsave(&h->lock, flags); |
| 8201 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
| 8202 | spin_unlock_irqrestore(&h->lock, flags); |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 8203 | hpsa_free_irqs(h); |
Robert Elliott | 9ee6179 | 2015-01-23 16:42:32 -0600 | [diff] [blame] | 8204 | rc = hpsa_request_irqs(h, hpsa_msix_discard_completions, |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 8205 | hpsa_intx_discard_completions); |
| 8206 | if (rc) { |
Robert Elliott | 9ee6179 | 2015-01-23 16:42:32 -0600 | [diff] [blame] | 8207 | dev_warn(&h->pdev->dev, |
| 8208 | "Failed to request_irq after soft reset.\n"); |
Robert Elliott | d498757 | 2015-04-23 09:34:37 -0500 | [diff] [blame] | 8209 | /* |
Robert Elliott | b2ef480 | 2015-04-23 09:34:48 -0500 | [diff] [blame] | 8210 | * cannot goto clean7 or free_irqs will be called |
| 8211 | * again. Instead, do its work |
| 8212 | */ |
| 8213 | hpsa_free_performant_mode(h); /* clean7 */ |
| 8214 | hpsa_free_sg_chain_blocks(h); /* clean6 */ |
| 8215 | hpsa_free_cmd_pool(h); /* clean5 */ |
| 8216 | /* |
| 8217 | * skip hpsa_free_irqs(h) clean4 since that |
| 8218 | * was just called before request_irqs failed |
Robert Elliott | d498757 | 2015-04-23 09:34:37 -0500 | [diff] [blame] | 8219 | */ |
| 8220 | goto clean3; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 8221 | } |
| 8222 | |
| 8223 | rc = hpsa_kdump_soft_reset(h); |
| 8224 | if (rc) |
| 8225 | /* Neither hard nor soft reset worked, we're hosed. */ |
Don Brace | 7ef7323 | 2015-07-18 11:12:33 -0500 | [diff] [blame] | 8226 | goto clean7; |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 8227 | |
| 8228 | dev_info(&h->pdev->dev, "Board READY.\n"); |
| 8229 | dev_info(&h->pdev->dev, |
| 8230 | "Waiting for stale completions to drain.\n"); |
| 8231 | h->access.set_intr_mask(h, HPSA_INTR_ON); |
| 8232 | msleep(10000); |
| 8233 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
| 8234 | |
| 8235 | rc = controller_reset_failed(h->cfgtable); |
| 8236 | if (rc) |
| 8237 | dev_info(&h->pdev->dev, |
| 8238 | "Soft reset appears to have failed.\n"); |
| 8239 | |
| 8240 | /* since the controller's reset, we have to go back and re-init |
| 8241 | * everything. Easiest to just forget what we've done and do it |
| 8242 | * all over again. |
| 8243 | */ |
| 8244 | hpsa_undo_allocations_after_kdump_soft_reset(h); |
| 8245 | try_soft_reset = 0; |
| 8246 | if (rc) |
Robert Elliott | b2ef480 | 2015-04-23 09:34:48 -0500 | [diff] [blame] | 8247 | /* don't goto clean, we already unallocated */ |
Stephen M. Cameron | 64670ac | 2011-05-03 14:59:51 -0500 | [diff] [blame] | 8248 | return -ENODEV; |
| 8249 | |
| 8250 | goto reinit_after_soft_reset; |
| 8251 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8252 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8253 | /* Enable Accelerated IO path at driver layer */ |
| 8254 | h->acciopath_status = 1; |
Scott Teel | da0697b | 2014-02-18 13:57:00 -0600 | [diff] [blame] | 8255 | |
Scott Teel | e863d68 | 2014-02-18 13:57:05 -0600 | [diff] [blame] | 8256 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8257 | /* Turn the interrupts on so we can service requests */ |
| 8258 | h->access.set_intr_mask(h, HPSA_INTR_ON); |
| 8259 | |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 8260 | hpsa_hba_inquiry(h); |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 8261 | |
| 8262 | /* Monitor the controller for firmware lockups */ |
| 8263 | h->heartbeat_sample_interval = HEARTBEAT_SAMPLE_INTERVAL; |
| 8264 | INIT_DELAYED_WORK(&h->monitor_ctlr_work, hpsa_monitor_ctlr_worker); |
| 8265 | schedule_delayed_work(&h->monitor_ctlr_work, |
| 8266 | h->heartbeat_sample_interval); |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 8267 | INIT_DELAYED_WORK(&h->rescan_ctlr_work, hpsa_rescan_ctlr_worker); |
| 8268 | queue_delayed_work(h->rescan_ctlr_wq, &h->rescan_ctlr_work, |
| 8269 | h->heartbeat_sample_interval); |
Stephen M. Cameron | 88bf6d6 | 2013-11-01 11:02:25 -0500 | [diff] [blame] | 8270 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8271 | |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8272 | clean7: /* perf, sg, cmd, irq, shost, pci, lu, aer/h */ |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8273 | hpsa_free_performant_mode(h); |
| 8274 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
| 8275 | clean6: /* sg, cmd, irq, pci, lockup, wq/aer/h */ |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 8276 | hpsa_free_sg_chain_blocks(h); |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8277 | clean5: /* cmd, irq, shost, pci, lu, aer/h */ |
Stephen M. Cameron | 2e9d1b3 | 2011-05-03 14:59:20 -0500 | [diff] [blame] | 8278 | hpsa_free_cmd_pool(h); |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8279 | clean4: /* irq, shost, pci, lu, aer/h */ |
Robert Elliott | ec501a1 | 2015-01-23 16:41:40 -0600 | [diff] [blame] | 8280 | hpsa_free_irqs(h); |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8281 | clean3: /* shost, pci, lu, aer/h */ |
| 8282 | scsi_host_put(h->scsi_host); |
| 8283 | h->scsi_host = NULL; |
| 8284 | clean2_5: /* pci, lu, aer/h */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 8285 | hpsa_free_pci_init(h); |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8286 | clean2: /* lu, aer/h */ |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8287 | if (h->lockup_detected) { |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 8288 | free_percpu(h->lockup_detected); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8289 | h->lockup_detected = NULL; |
| 8290 | } |
| 8291 | clean1: /* wq/aer/h */ |
| 8292 | if (h->resubmit_wq) { |
| 8293 | destroy_workqueue(h->resubmit_wq); |
| 8294 | h->resubmit_wq = NULL; |
| 8295 | } |
| 8296 | if (h->rescan_ctlr_wq) { |
| 8297 | destroy_workqueue(h->rescan_ctlr_wq); |
| 8298 | h->rescan_ctlr_wq = NULL; |
| 8299 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8300 | kfree(h); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 8301 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8302 | } |
| 8303 | |
| 8304 | static void hpsa_flush_cache(struct ctlr_info *h) |
| 8305 | { |
| 8306 | char *flush_buf; |
| 8307 | struct CommandList *c; |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 8308 | int rc; |
Stephen M. Cameron | 702890e | 2013-09-23 13:33:30 -0500 | [diff] [blame] | 8309 | |
Stephen M. Cameron | 094963d | 2014-05-29 10:53:18 -0500 | [diff] [blame] | 8310 | if (unlikely(lockup_detected(h))) |
Stephen M. Cameron | 702890e | 2013-09-23 13:33:30 -0500 | [diff] [blame] | 8311 | return; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8312 | flush_buf = kzalloc(4, GFP_KERNEL); |
| 8313 | if (!flush_buf) |
| 8314 | return; |
| 8315 | |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 8316 | c = cmd_alloc(h); |
Robert Elliott | bf43caf | 2015-04-23 09:33:38 -0500 | [diff] [blame] | 8317 | |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 8318 | if (fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0, |
| 8319 | RAID_CTLR_LUNID, TYPE_CMD)) { |
| 8320 | goto out; |
| 8321 | } |
Webb Scales | 25163bd | 2015-04-23 09:32:00 -0500 | [diff] [blame] | 8322 | rc = hpsa_scsi_do_simple_cmd_with_retry(h, c, |
| 8323 | PCI_DMA_TODEVICE, NO_TIMEOUT); |
| 8324 | if (rc) |
| 8325 | goto out; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8326 | if (c->err_info->CommandStatus != 0) |
Stephen M. Cameron | a2dac13 | 2013-02-20 11:24:41 -0600 | [diff] [blame] | 8327 | out: |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8328 | dev_warn(&h->pdev->dev, |
| 8329 | "error flushing cache on controller\n"); |
Stephen Cameron | 45fcb86 | 2015-01-23 16:43:04 -0600 | [diff] [blame] | 8330 | cmd_free(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8331 | kfree(flush_buf); |
| 8332 | } |
| 8333 | |
| 8334 | static void hpsa_shutdown(struct pci_dev *pdev) |
| 8335 | { |
| 8336 | struct ctlr_info *h; |
| 8337 | |
| 8338 | h = pci_get_drvdata(pdev); |
| 8339 | /* Turn board interrupts off and send the flush cache command |
| 8340 | * sendcmd will turn off interrupt, and send the flush... |
| 8341 | * To write all data in the battery backed cache to disks |
| 8342 | */ |
| 8343 | hpsa_flush_cache(h); |
| 8344 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8345 | hpsa_free_irqs(h); /* init_one 4 */ |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 8346 | hpsa_disable_interrupt_mode(h); /* pci_init 2 */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8347 | } |
| 8348 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 8349 | static void hpsa_free_device_info(struct ctlr_info *h) |
Stephen M. Cameron | 55e14e7 | 2012-01-19 14:00:42 -0600 | [diff] [blame] | 8350 | { |
| 8351 | int i; |
| 8352 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8353 | for (i = 0; i < h->ndevices; i++) { |
Stephen M. Cameron | 55e14e7 | 2012-01-19 14:00:42 -0600 | [diff] [blame] | 8354 | kfree(h->dev[i]); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8355 | h->dev[i] = NULL; |
| 8356 | } |
Stephen M. Cameron | 55e14e7 | 2012-01-19 14:00:42 -0600 | [diff] [blame] | 8357 | } |
| 8358 | |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 8359 | static void hpsa_remove_one(struct pci_dev *pdev) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8360 | { |
| 8361 | struct ctlr_info *h; |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 8362 | unsigned long flags; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8363 | |
| 8364 | if (pci_get_drvdata(pdev) == NULL) { |
Stephen M. Cameron | a0c1241 | 2011-10-26 16:22:04 -0500 | [diff] [blame] | 8365 | dev_err(&pdev->dev, "unable to remove device\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8366 | return; |
| 8367 | } |
| 8368 | h = pci_get_drvdata(pdev); |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 8369 | |
| 8370 | /* Get rid of any controller monitoring work items */ |
| 8371 | spin_lock_irqsave(&h->lock, flags); |
| 8372 | h->remove_in_progress = 1; |
Stephen M. Cameron | 8a98db73 | 2013-12-04 17:10:07 -0600 | [diff] [blame] | 8373 | spin_unlock_irqrestore(&h->lock, flags); |
Don Brace | 6636e7f | 2015-01-23 16:45:17 -0600 | [diff] [blame] | 8374 | cancel_delayed_work_sync(&h->monitor_ctlr_work); |
| 8375 | cancel_delayed_work_sync(&h->rescan_ctlr_work); |
| 8376 | destroy_workqueue(h->rescan_ctlr_wq); |
| 8377 | destroy_workqueue(h->resubmit_wq); |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 8378 | |
Don Brace | 2d04130 | 2015-07-18 11:13:15 -0500 | [diff] [blame] | 8379 | /* |
| 8380 | * Call before disabling interrupts. |
| 8381 | * scsi_remove_host can trigger I/O operations especially |
| 8382 | * when multipath is enabled. There can be SYNCHRONIZE CACHE |
| 8383 | * operations which cannot complete and will hang the system. |
| 8384 | */ |
| 8385 | if (h->scsi_host) |
| 8386 | scsi_remove_host(h->scsi_host); /* init_one 8 */ |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8387 | /* includes hpsa_free_irqs - init_one 4 */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 8388 | /* includes hpsa_disable_interrupt_mode - pci_init 2 */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8389 | hpsa_shutdown(pdev); |
Robert Elliott | cc64c81 | 2015-04-23 09:33:12 -0500 | [diff] [blame] | 8390 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8391 | hpsa_free_device_info(h); /* scan */ |
| 8392 | |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8393 | kfree(h->hba_inquiry_data); /* init_one 10 */ |
| 8394 | h->hba_inquiry_data = NULL; /* init_one 10 */ |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8395 | hpsa_free_ioaccel2_sg_chain_blocks(h); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8396 | hpsa_free_performant_mode(h); /* init_one 7 */ |
| 8397 | hpsa_free_sg_chain_blocks(h); /* init_one 6 */ |
| 8398 | hpsa_free_cmd_pool(h); /* init_one 5 */ |
| 8399 | |
| 8400 | /* hpsa_free_irqs already called via hpsa_shutdown init_one 4 */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 8401 | |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8402 | scsi_host_put(h->scsi_host); /* init_one 3 */ |
| 8403 | h->scsi_host = NULL; /* init_one 3 */ |
| 8404 | |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 8405 | /* includes hpsa_disable_interrupt_mode - pci_init 2 */ |
Robert Elliott | 2946e82 | 2015-04-23 09:35:09 -0500 | [diff] [blame] | 8406 | hpsa_free_pci_init(h); /* init_one 2.5 */ |
Robert Elliott | 195f2c6 | 2015-04-23 09:33:17 -0500 | [diff] [blame] | 8407 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8408 | free_percpu(h->lockup_detected); /* init_one 2 */ |
| 8409 | h->lockup_detected = NULL; /* init_one 2 */ |
| 8410 | /* (void) pci_disable_pcie_error_reporting(pdev); */ /* init_one 1 */ |
| 8411 | kfree(h); /* init_one 1 */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8412 | } |
| 8413 | |
| 8414 | static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev, |
| 8415 | __attribute__((unused)) pm_message_t state) |
| 8416 | { |
| 8417 | return -ENOSYS; |
| 8418 | } |
| 8419 | |
| 8420 | static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev) |
| 8421 | { |
| 8422 | return -ENOSYS; |
| 8423 | } |
| 8424 | |
| 8425 | static struct pci_driver hpsa_pci_driver = { |
Stephen M. Cameron | f79cfec | 2012-01-19 14:00:59 -0600 | [diff] [blame] | 8426 | .name = HPSA, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8427 | .probe = hpsa_init_one, |
Greg Kroah-Hartman | 6f03979 | 2012-12-21 13:08:55 -0800 | [diff] [blame] | 8428 | .remove = hpsa_remove_one, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8429 | .id_table = hpsa_pci_device_id, /* id_table */ |
| 8430 | .shutdown = hpsa_shutdown, |
| 8431 | .suspend = hpsa_suspend, |
| 8432 | .resume = hpsa_resume, |
| 8433 | }; |
| 8434 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8435 | /* Fill in bucket_map[], given nsgs (the max number of |
| 8436 | * scatter gather elements supported) and bucket[], |
| 8437 | * which is an array of 8 integers. The bucket[] array |
| 8438 | * contains 8 different DMA transfer sizes (in 16 |
| 8439 | * byte increments) which the controller uses to fetch |
| 8440 | * commands. This function fills in bucket_map[], which |
| 8441 | * maps a given number of scatter gather elements to one of |
| 8442 | * the 8 DMA transfer sizes. The point of it is to allow the |
| 8443 | * controller to only do as much DMA as needed to fetch the |
| 8444 | * command, with the DMA transfer size encoded in the lower |
| 8445 | * bits of the command address. |
| 8446 | */ |
| 8447 | static void calc_bucket_map(int bucket[], int num_buckets, |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 8448 | int nsgs, int min_blocks, u32 *bucket_map) |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8449 | { |
| 8450 | int i, j, b, size; |
| 8451 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8452 | /* Note, bucket_map must have nsgs+1 entries. */ |
| 8453 | for (i = 0; i <= nsgs; i++) { |
| 8454 | /* Compute size of a command with i SG entries */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8455 | size = i + min_blocks; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8456 | b = num_buckets; /* Assume the biggest bucket */ |
| 8457 | /* Find the bucket that is just big enough */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8458 | for (j = 0; j < num_buckets; j++) { |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8459 | if (bucket[j] >= size) { |
| 8460 | b = j; |
| 8461 | break; |
| 8462 | } |
| 8463 | } |
| 8464 | /* for a command with i SG entries, use bucket b. */ |
| 8465 | bucket_map[i] = b; |
| 8466 | } |
| 8467 | } |
| 8468 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8469 | /* |
| 8470 | * return -ENODEV on err, 0 on success (or no action) |
| 8471 | * allocates numerous items that must be freed later |
| 8472 | */ |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 8473 | 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] | 8474 | { |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8475 | int i; |
| 8476 | unsigned long register_value; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8477 | unsigned long transMethod = CFGTBL_Trans_Performant | |
| 8478 | (trans_support & CFGTBL_Trans_use_short_tags) | |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 8479 | CFGTBL_Trans_enable_directed_msix | |
| 8480 | (trans_support & (CFGTBL_Trans_io_accel1 | |
| 8481 | CFGTBL_Trans_io_accel2)); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8482 | struct access_method access = SA5_performant_access; |
Stephen M. Cameron | def342b | 2010-05-27 15:14:39 -0500 | [diff] [blame] | 8483 | |
| 8484 | /* This is a bit complicated. There are 8 registers on |
| 8485 | * the controller which we write to to tell it 8 different |
| 8486 | * sizes of commands which there may be. It's a way of |
| 8487 | * reducing the DMA done to fetch each command. Encoded into |
| 8488 | * each command's tag are 3 bits which communicate to the controller |
| 8489 | * which of the eight sizes that command fits within. The size of |
| 8490 | * each command depends on how many scatter gather entries there are. |
| 8491 | * Each SG entry requires 16 bytes. The eight registers are programmed |
| 8492 | * with the number of 16-byte blocks a command of that size requires. |
| 8493 | * The smallest command possible requires 5 such 16 byte blocks. |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 8494 | * 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] | 8495 | * blocks. Note, this only extends to the SG entries contained |
| 8496 | * within the command block, and does not extend to chained blocks |
| 8497 | * of SG elements. bft[] contains the eight values we write to |
| 8498 | * the registers. They are not evenly distributed, but have more |
| 8499 | * sizes for small commands, and fewer sizes for larger commands. |
| 8500 | */ |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 8501 | 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] | 8502 | #define MIN_IOACCEL2_BFT_ENTRY 5 |
| 8503 | #define HPSA_IOACCEL2_HEADER_SZ 4 |
| 8504 | int bft2[16] = {MIN_IOACCEL2_BFT_ENTRY, 6, 7, 8, 9, 10, 11, 12, |
| 8505 | 13, 14, 15, 16, 17, 18, 19, |
| 8506 | HPSA_IOACCEL2_HEADER_SZ + IOACCEL2_MAXSGENTRIES}; |
| 8507 | BUILD_BUG_ON(ARRAY_SIZE(bft2) != 16); |
| 8508 | BUILD_BUG_ON(ARRAY_SIZE(bft) != 8); |
| 8509 | BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) > |
| 8510 | 16 * MIN_IOACCEL2_BFT_ENTRY); |
| 8511 | BUILD_BUG_ON(sizeof(struct ioaccel2_sg_element) != 16); |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 8512 | BUILD_BUG_ON(28 > SG_ENTRIES_IN_CMD + 4); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8513 | /* 5 = 1 s/g entry or 4k |
| 8514 | * 6 = 2 s/g entry or 8k |
| 8515 | * 8 = 4 s/g entry or 16k |
| 8516 | * 10 = 6 s/g entry or 24k |
| 8517 | */ |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8518 | |
Stephen M. Cameron | b3a52e7 | 2014-05-29 10:53:23 -0500 | [diff] [blame] | 8519 | /* If the controller supports either ioaccel method then |
| 8520 | * we can also use the RAID stack submit path that does not |
| 8521 | * perform the superfluous readl() after each command submission. |
| 8522 | */ |
| 8523 | if (trans_support & (CFGTBL_Trans_io_accel1 | CFGTBL_Trans_io_accel2)) |
| 8524 | access = SA5_performant_access_no_read; |
| 8525 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8526 | /* Controller spec: zero out this buffer. */ |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 8527 | for (i = 0; i < h->nreply_queues; i++) |
| 8528 | memset(h->reply_queue[i].head, 0, h->reply_queue_size); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8529 | |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 8530 | bft[7] = SG_ENTRIES_IN_CMD + 4; |
| 8531 | calc_bucket_map(bft, ARRAY_SIZE(bft), |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8532 | SG_ENTRIES_IN_CMD, 4, h->blockFetchTable); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8533 | for (i = 0; i < 8; i++) |
| 8534 | writel(bft[i], &h->transtable->BlockFetch[i]); |
| 8535 | |
| 8536 | /* size of controller ring buffer */ |
| 8537 | writel(h->max_commands, &h->transtable->RepQSize); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 8538 | writel(h->nreply_queues, &h->transtable->RepQCount); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8539 | writel(0, &h->transtable->RepQCtrAddrLow32); |
| 8540 | writel(0, &h->transtable->RepQCtrAddrHigh32); |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 8541 | |
| 8542 | for (i = 0; i < h->nreply_queues; i++) { |
| 8543 | writel(0, &h->transtable->RepQAddr[i].upper); |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 8544 | writel(h->reply_queue[i].busaddr, |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 8545 | &h->transtable->RepQAddr[i].lower); |
| 8546 | } |
| 8547 | |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 8548 | writel(0, &h->cfgtable->HostWrite.command_pool_addr_hi); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8549 | writel(transMethod, &(h->cfgtable->HostWrite.TransportRequest)); |
| 8550 | /* |
| 8551 | * enable outbound interrupt coalescing in accelerator mode; |
| 8552 | */ |
| 8553 | if (trans_support & CFGTBL_Trans_io_accel1) { |
| 8554 | access = SA5_ioaccel_mode1_access; |
| 8555 | writel(10, &h->cfgtable->HostWrite.CoalIntDelay); |
| 8556 | writel(4, &h->cfgtable->HostWrite.CoalIntCount); |
Scott Teel | c349775 | 2014-02-18 13:56:34 -0600 | [diff] [blame] | 8557 | } else { |
| 8558 | if (trans_support & CFGTBL_Trans_io_accel2) { |
| 8559 | access = SA5_ioaccel_mode2_access; |
| 8560 | writel(10, &h->cfgtable->HostWrite.CoalIntDelay); |
| 8561 | writel(4, &h->cfgtable->HostWrite.CoalIntCount); |
| 8562 | } |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8563 | } |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8564 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 8565 | if (hpsa_wait_for_mode_change_ack(h)) { |
| 8566 | dev_err(&h->pdev->dev, |
| 8567 | "performant mode problem - doorbell timeout\n"); |
| 8568 | return -ENODEV; |
| 8569 | } |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8570 | register_value = readl(&(h->cfgtable->TransportActive)); |
| 8571 | if (!(register_value & CFGTBL_Trans_Performant)) { |
Stephen Cameron | 050f714 | 2015-01-23 16:42:22 -0600 | [diff] [blame] | 8572 | dev_err(&h->pdev->dev, |
| 8573 | "performant mode problem - transport not active\n"); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 8574 | return -ENODEV; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8575 | } |
Stephen M. Cameron | 960a30e | 2011-02-15 15:33:03 -0600 | [diff] [blame] | 8576 | /* Change the access methods to the performant access methods */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8577 | h->access = access; |
| 8578 | h->transMethod = transMethod; |
| 8579 | |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 8580 | if (!((trans_support & CFGTBL_Trans_io_accel1) || |
| 8581 | (trans_support & CFGTBL_Trans_io_accel2))) |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 8582 | return 0; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8583 | |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 8584 | if (trans_support & CFGTBL_Trans_io_accel1) { |
| 8585 | /* Set up I/O accelerator mode */ |
| 8586 | for (i = 0; i < h->nreply_queues; i++) { |
| 8587 | writel(i, h->vaddr + IOACCEL_MODE1_REPLY_QUEUE_INDEX); |
| 8588 | h->reply_queue[i].current_entry = |
| 8589 | readl(h->vaddr + IOACCEL_MODE1_PRODUCER_INDEX); |
| 8590 | } |
| 8591 | bft[7] = h->ioaccel_maxsg + 8; |
| 8592 | calc_bucket_map(bft, ARRAY_SIZE(bft), h->ioaccel_maxsg, 8, |
| 8593 | h->ioaccel1_blockFetchTable); |
| 8594 | |
| 8595 | /* initialize all reply queue entries to unused */ |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 8596 | for (i = 0; i < h->nreply_queues; i++) |
| 8597 | memset(h->reply_queue[i].head, |
| 8598 | (u8) IOACCEL_MODE1_REPLY_UNUSED, |
| 8599 | h->reply_queue_size); |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 8600 | |
| 8601 | /* set all the constant fields in the accelerator command |
| 8602 | * frames once at init time to save CPU cycles later. |
| 8603 | */ |
| 8604 | for (i = 0; i < h->nr_cmds; i++) { |
| 8605 | struct io_accel1_cmd *cp = &h->ioaccel_cmd_pool[i]; |
| 8606 | |
| 8607 | cp->function = IOACCEL1_FUNCTION_SCSIIO; |
| 8608 | cp->err_info = (u32) (h->errinfo_pool_dhandle + |
| 8609 | (i * sizeof(struct ErrorInfo))); |
| 8610 | cp->err_info_len = sizeof(struct ErrorInfo); |
| 8611 | cp->sgl_offset = IOACCEL1_SGLOFFSET; |
Don Brace | 2b08b3e | 2015-01-23 16:41:09 -0600 | [diff] [blame] | 8612 | cp->host_context_flags = |
| 8613 | cpu_to_le16(IOACCEL1_HCFLAGS_CISS_FORMAT); |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 8614 | cp->timeout_sec = 0; |
| 8615 | cp->ReplyQueue = 0; |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 8616 | cp->tag = |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8617 | cpu_to_le64((i << DIRECT_LOOKUP_SHIFT)); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 8618 | cp->host_addr = |
| 8619 | cpu_to_le64(h->ioaccel_cmd_pool_dhandle + |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 8620 | (i * sizeof(struct io_accel1_cmd))); |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 8621 | } |
| 8622 | } else if (trans_support & CFGTBL_Trans_io_accel2) { |
| 8623 | u64 cfg_offset, cfg_base_addr_index; |
| 8624 | u32 bft2_offset, cfg_base_addr; |
| 8625 | int rc; |
| 8626 | |
| 8627 | rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr, |
| 8628 | &cfg_base_addr_index, &cfg_offset); |
| 8629 | BUILD_BUG_ON(offsetof(struct io_accel2_cmd, sg) != 64); |
| 8630 | bft2[15] = h->ioaccel_maxsg + HPSA_IOACCEL2_HEADER_SZ; |
| 8631 | calc_bucket_map(bft2, ARRAY_SIZE(bft2), h->ioaccel_maxsg, |
| 8632 | 4, h->ioaccel2_blockFetchTable); |
| 8633 | bft2_offset = readl(&h->cfgtable->io_accel_request_size_offset); |
| 8634 | BUILD_BUG_ON(offsetof(struct CfgTable, |
| 8635 | io_accel_request_size_offset) != 0xb8); |
| 8636 | h->ioaccel2_bft2_regs = |
| 8637 | remap_pci_mem(pci_resource_start(h->pdev, |
| 8638 | cfg_base_addr_index) + |
| 8639 | cfg_offset + bft2_offset, |
| 8640 | ARRAY_SIZE(bft2) * |
| 8641 | sizeof(*h->ioaccel2_bft2_regs)); |
| 8642 | for (i = 0; i < ARRAY_SIZE(bft2); i++) |
| 8643 | writel(bft2[i], &h->ioaccel2_bft2_regs[i]); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8644 | } |
Stephen M. Cameron | b9af493 | 2014-02-18 13:56:29 -0600 | [diff] [blame] | 8645 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
Robert Elliott | c706a79 | 2015-01-23 16:45:01 -0600 | [diff] [blame] | 8646 | if (hpsa_wait_for_mode_change_ack(h)) { |
| 8647 | dev_err(&h->pdev->dev, |
| 8648 | "performant mode problem - enabling ioaccel mode\n"); |
| 8649 | return -ENODEV; |
| 8650 | } |
| 8651 | return 0; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8652 | } |
| 8653 | |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8654 | /* Free ioaccel1 mode command blocks and block fetch table */ |
| 8655 | static void hpsa_free_ioaccel1_cmd_and_bft(struct ctlr_info *h) |
| 8656 | { |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8657 | if (h->ioaccel_cmd_pool) { |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8658 | pci_free_consistent(h->pdev, |
| 8659 | h->nr_cmds * sizeof(*h->ioaccel_cmd_pool), |
| 8660 | h->ioaccel_cmd_pool, |
| 8661 | h->ioaccel_cmd_pool_dhandle); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8662 | h->ioaccel_cmd_pool = NULL; |
| 8663 | h->ioaccel_cmd_pool_dhandle = 0; |
| 8664 | } |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8665 | kfree(h->ioaccel1_blockFetchTable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8666 | h->ioaccel1_blockFetchTable = NULL; |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8667 | } |
| 8668 | |
Robert Elliott | d37ffbe | 2015-04-23 09:32:27 -0500 | [diff] [blame] | 8669 | /* Allocate ioaccel1 mode command blocks and block fetch table */ |
| 8670 | static int hpsa_alloc_ioaccel1_cmd_and_bft(struct ctlr_info *h) |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8671 | { |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 8672 | h->ioaccel_maxsg = |
| 8673 | readl(&(h->cfgtable->io_accel_max_embedded_sg_count)); |
| 8674 | if (h->ioaccel_maxsg > IOACCEL1_MAXSGENTRIES) |
| 8675 | h->ioaccel_maxsg = IOACCEL1_MAXSGENTRIES; |
| 8676 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8677 | /* Command structures must be aligned on a 128-byte boundary |
| 8678 | * because the 7 lower bits of the address are used by the |
| 8679 | * hardware. |
| 8680 | */ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8681 | BUILD_BUG_ON(sizeof(struct io_accel1_cmd) % |
| 8682 | IOACCEL1_COMMANDLIST_ALIGNMENT); |
| 8683 | h->ioaccel_cmd_pool = |
| 8684 | pci_alloc_consistent(h->pdev, |
| 8685 | h->nr_cmds * sizeof(*h->ioaccel_cmd_pool), |
| 8686 | &(h->ioaccel_cmd_pool_dhandle)); |
| 8687 | |
| 8688 | h->ioaccel1_blockFetchTable = |
Stephen M. Cameron | 283b4a9 | 2014-02-18 13:55:33 -0600 | [diff] [blame] | 8689 | kmalloc(((h->ioaccel_maxsg + 1) * |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8690 | sizeof(u32)), GFP_KERNEL); |
| 8691 | |
| 8692 | if ((h->ioaccel_cmd_pool == NULL) || |
| 8693 | (h->ioaccel1_blockFetchTable == NULL)) |
| 8694 | goto clean_up; |
| 8695 | |
| 8696 | memset(h->ioaccel_cmd_pool, 0, |
| 8697 | h->nr_cmds * sizeof(*h->ioaccel_cmd_pool)); |
| 8698 | return 0; |
| 8699 | |
| 8700 | clean_up: |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8701 | hpsa_free_ioaccel1_cmd_and_bft(h); |
Robert Elliott | 2dd02d7 | 2015-04-23 09:33:43 -0500 | [diff] [blame] | 8702 | return -ENOMEM; |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8703 | } |
| 8704 | |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8705 | /* Free ioaccel2 mode command blocks and block fetch table */ |
| 8706 | static void hpsa_free_ioaccel2_cmd_and_bft(struct ctlr_info *h) |
| 8707 | { |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 8708 | hpsa_free_ioaccel2_sg_chain_blocks(h); |
| 8709 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8710 | if (h->ioaccel2_cmd_pool) { |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8711 | pci_free_consistent(h->pdev, |
| 8712 | h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool), |
| 8713 | h->ioaccel2_cmd_pool, |
| 8714 | h->ioaccel2_cmd_pool_dhandle); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8715 | h->ioaccel2_cmd_pool = NULL; |
| 8716 | h->ioaccel2_cmd_pool_dhandle = 0; |
| 8717 | } |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8718 | kfree(h->ioaccel2_blockFetchTable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8719 | h->ioaccel2_blockFetchTable = NULL; |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8720 | } |
| 8721 | |
Robert Elliott | d37ffbe | 2015-04-23 09:32:27 -0500 | [diff] [blame] | 8722 | /* Allocate ioaccel2 mode command blocks and block fetch table */ |
| 8723 | 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] | 8724 | { |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 8725 | int rc; |
| 8726 | |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8727 | /* Allocate ioaccel2 mode command blocks and block fetch table */ |
| 8728 | |
| 8729 | h->ioaccel_maxsg = |
| 8730 | readl(&(h->cfgtable->io_accel_max_embedded_sg_count)); |
| 8731 | if (h->ioaccel_maxsg > IOACCEL2_MAXSGENTRIES) |
| 8732 | h->ioaccel_maxsg = IOACCEL2_MAXSGENTRIES; |
| 8733 | |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8734 | BUILD_BUG_ON(sizeof(struct io_accel2_cmd) % |
| 8735 | IOACCEL2_COMMANDLIST_ALIGNMENT); |
| 8736 | h->ioaccel2_cmd_pool = |
| 8737 | pci_alloc_consistent(h->pdev, |
| 8738 | h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool), |
| 8739 | &(h->ioaccel2_cmd_pool_dhandle)); |
| 8740 | |
| 8741 | h->ioaccel2_blockFetchTable = |
| 8742 | kmalloc(((h->ioaccel_maxsg + 1) * |
| 8743 | sizeof(u32)), GFP_KERNEL); |
| 8744 | |
| 8745 | if ((h->ioaccel2_cmd_pool == NULL) || |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 8746 | (h->ioaccel2_blockFetchTable == NULL)) { |
| 8747 | rc = -ENOMEM; |
| 8748 | goto clean_up; |
| 8749 | } |
| 8750 | |
| 8751 | rc = hpsa_allocate_ioaccel2_sg_chain_blocks(h); |
| 8752 | if (rc) |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8753 | goto clean_up; |
| 8754 | |
| 8755 | memset(h->ioaccel2_cmd_pool, 0, |
| 8756 | h->nr_cmds * sizeof(*h->ioaccel2_cmd_pool)); |
| 8757 | return 0; |
| 8758 | |
| 8759 | clean_up: |
Robert Elliott | 1fb7c98 | 2015-04-23 09:33:22 -0500 | [diff] [blame] | 8760 | hpsa_free_ioaccel2_cmd_and_bft(h); |
Webb Scales | d9a729f | 2015-04-23 09:33:27 -0500 | [diff] [blame] | 8761 | return rc; |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8762 | } |
| 8763 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8764 | /* Free items allocated by hpsa_put_ctlr_into_performant_mode */ |
| 8765 | static void hpsa_free_performant_mode(struct ctlr_info *h) |
| 8766 | { |
| 8767 | kfree(h->blockFetchTable); |
| 8768 | h->blockFetchTable = NULL; |
| 8769 | hpsa_free_reply_queues(h); |
| 8770 | hpsa_free_ioaccel1_cmd_and_bft(h); |
| 8771 | hpsa_free_ioaccel2_cmd_and_bft(h); |
| 8772 | } |
| 8773 | |
| 8774 | /* return -ENODEV on error, 0 on success (or no action) |
| 8775 | * allocates numerous items that must be freed later |
| 8776 | */ |
| 8777 | 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] | 8778 | { |
| 8779 | u32 trans_support; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8780 | unsigned long transMethod = CFGTBL_Trans_Performant | |
| 8781 | CFGTBL_Trans_use_short_tags; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8782 | int i, rc; |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8783 | |
Stephen M. Cameron | 02ec19c | 2011-01-06 14:48:29 -0600 | [diff] [blame] | 8784 | if (hpsa_simple_mode) |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8785 | return 0; |
Stephen M. Cameron | 02ec19c | 2011-01-06 14:48:29 -0600 | [diff] [blame] | 8786 | |
scameron@beardog.cce.hp.com | 67c99a7 | 2014-04-14 14:01:09 -0500 | [diff] [blame] | 8787 | trans_support = readl(&(h->cfgtable->TransportSupport)); |
| 8788 | if (!(trans_support & PERFORMANT_MODE)) |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8789 | return 0; |
scameron@beardog.cce.hp.com | 67c99a7 | 2014-04-14 14:01:09 -0500 | [diff] [blame] | 8790 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8791 | /* Check for I/O accelerator mode support */ |
| 8792 | if (trans_support & CFGTBL_Trans_io_accel1) { |
| 8793 | transMethod |= CFGTBL_Trans_io_accel1 | |
| 8794 | CFGTBL_Trans_enable_directed_msix; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8795 | rc = hpsa_alloc_ioaccel1_cmd_and_bft(h); |
| 8796 | if (rc) |
| 8797 | return rc; |
| 8798 | } else if (trans_support & CFGTBL_Trans_io_accel2) { |
| 8799 | transMethod |= CFGTBL_Trans_io_accel2 | |
Stephen M. Cameron | aca9012 | 2014-02-18 13:56:14 -0600 | [diff] [blame] | 8800 | CFGTBL_Trans_enable_directed_msix; |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8801 | rc = hpsa_alloc_ioaccel2_cmd_and_bft(h); |
| 8802 | if (rc) |
| 8803 | return rc; |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8804 | } |
| 8805 | |
Hannes Reinecke | eee0f03 | 2014-01-15 13:30:53 +0100 | [diff] [blame] | 8806 | h->nreply_queues = h->msix_vector > 0 ? h->msix_vector : 1; |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 8807 | hpsa_get_max_perf_mode_cmds(h); |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8808 | /* Performant mode ring buffer and supporting data structures */ |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 8809 | h->reply_queue_size = h->max_commands * sizeof(u64); |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8810 | |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 8811 | for (i = 0; i < h->nreply_queues; i++) { |
Stephen M. Cameron | 072b051 | 2014-05-29 10:53:07 -0500 | [diff] [blame] | 8812 | h->reply_queue[i].head = pci_alloc_consistent(h->pdev, |
| 8813 | h->reply_queue_size, |
| 8814 | &(h->reply_queue[i].busaddr)); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8815 | if (!h->reply_queue[i].head) { |
| 8816 | rc = -ENOMEM; |
| 8817 | goto clean1; /* rq, ioaccel */ |
| 8818 | } |
Matt Gates | 254f796 | 2012-05-01 11:43:06 -0500 | [diff] [blame] | 8819 | h->reply_queue[i].size = h->max_commands; |
| 8820 | h->reply_queue[i].wraparound = 1; /* spec: init to 1 */ |
| 8821 | h->reply_queue[i].current_entry = 0; |
| 8822 | } |
| 8823 | |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8824 | /* Need a block fetch table for performant mode */ |
Stephen M. Cameron | d66ae08 | 2012-01-19 14:00:48 -0600 | [diff] [blame] | 8825 | h->blockFetchTable = kmalloc(((SG_ENTRIES_IN_CMD + 1) * |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8826 | sizeof(u32)), GFP_KERNEL); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8827 | if (!h->blockFetchTable) { |
| 8828 | rc = -ENOMEM; |
| 8829 | goto clean1; /* rq, ioaccel */ |
| 8830 | } |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 8831 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8832 | rc = hpsa_enter_performant_mode(h, trans_support); |
| 8833 | if (rc) |
| 8834 | goto clean2; /* bft, rq, ioaccel */ |
| 8835 | return 0; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8836 | |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8837 | clean2: /* bft, rq, ioaccel */ |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8838 | kfree(h->blockFetchTable); |
Robert Elliott | 105a3db | 2015-04-23 09:33:48 -0500 | [diff] [blame] | 8839 | h->blockFetchTable = NULL; |
| 8840 | clean1: /* rq, ioaccel */ |
| 8841 | hpsa_free_reply_queues(h); |
| 8842 | hpsa_free_ioaccel1_cmd_and_bft(h); |
| 8843 | hpsa_free_ioaccel2_cmd_and_bft(h); |
| 8844 | return rc; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 8845 | } |
| 8846 | |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 8847 | static int is_accelerated_cmd(struct CommandList *c) |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 8848 | { |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 8849 | return c->cmd_type == CMD_IOACCEL1 || c->cmd_type == CMD_IOACCEL2; |
| 8850 | } |
| 8851 | |
| 8852 | static void hpsa_drain_accel_commands(struct ctlr_info *h) |
| 8853 | { |
| 8854 | struct CommandList *c = NULL; |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8855 | int i, accel_cmds_out; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 8856 | int refcount; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 8857 | |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8858 | do { /* wait for all outstanding ioaccel commands to drain out */ |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 8859 | accel_cmds_out = 0; |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8860 | for (i = 0; i < h->nr_cmds; i++) { |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8861 | c = h->cmd_pool + i; |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 8862 | refcount = atomic_inc_return(&c->refcount); |
| 8863 | if (refcount > 1) /* Command is allocated */ |
| 8864 | accel_cmds_out += is_accelerated_cmd(c); |
| 8865 | cmd_free(h, c); |
Don Brace | f2405db | 2015-01-23 16:43:09 -0600 | [diff] [blame] | 8866 | } |
Stephen M. Cameron | 23100dd | 2014-02-18 13:57:37 -0600 | [diff] [blame] | 8867 | if (accel_cmds_out <= 0) |
Webb Scales | 281a7fd | 2015-01-23 16:43:35 -0600 | [diff] [blame] | 8868 | break; |
Stephen M. Cameron | 76438d0 | 2014-02-18 13:55:43 -0600 | [diff] [blame] | 8869 | msleep(100); |
| 8870 | } while (1); |
| 8871 | } |
| 8872 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8873 | /* |
| 8874 | * This is it. Register the PCI driver information for the cards we control |
| 8875 | * the OS will call our registered routines when it finds one of our cards. |
| 8876 | */ |
| 8877 | static int __init hpsa_init(void) |
| 8878 | { |
Mike Miller | 3146840 | 2010-02-25 14:03:12 -0600 | [diff] [blame] | 8879 | return pci_register_driver(&hpsa_pci_driver); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8880 | } |
| 8881 | |
| 8882 | static void __exit hpsa_cleanup(void) |
| 8883 | { |
| 8884 | pci_unregister_driver(&hpsa_pci_driver); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8885 | } |
| 8886 | |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8887 | static void __attribute__((unused)) verify_offsets(void) |
| 8888 | { |
| 8889 | #define VERIFY_OFFSET(member, offset) \ |
Scott Teel | dd0e19f | 2014-02-18 13:57:31 -0600 | [diff] [blame] | 8890 | BUILD_BUG_ON(offsetof(struct raid_map_data, member) != offset) |
| 8891 | |
| 8892 | VERIFY_OFFSET(structure_size, 0); |
| 8893 | VERIFY_OFFSET(volume_blk_size, 4); |
| 8894 | VERIFY_OFFSET(volume_blk_cnt, 8); |
| 8895 | VERIFY_OFFSET(phys_blk_shift, 16); |
| 8896 | VERIFY_OFFSET(parity_rotation_shift, 17); |
| 8897 | VERIFY_OFFSET(strip_size, 18); |
| 8898 | VERIFY_OFFSET(disk_starting_blk, 20); |
| 8899 | VERIFY_OFFSET(disk_blk_cnt, 28); |
| 8900 | VERIFY_OFFSET(data_disks_per_row, 36); |
| 8901 | VERIFY_OFFSET(metadata_disks_per_row, 38); |
| 8902 | VERIFY_OFFSET(row_cnt, 40); |
| 8903 | VERIFY_OFFSET(layout_map_count, 42); |
| 8904 | VERIFY_OFFSET(flags, 44); |
| 8905 | VERIFY_OFFSET(dekindex, 46); |
| 8906 | /* VERIFY_OFFSET(reserved, 48 */ |
| 8907 | VERIFY_OFFSET(data, 64); |
| 8908 | |
| 8909 | #undef VERIFY_OFFSET |
| 8910 | |
| 8911 | #define VERIFY_OFFSET(member, offset) \ |
Mike Miller | b66cc25 | 2014-02-18 13:56:04 -0600 | [diff] [blame] | 8912 | BUILD_BUG_ON(offsetof(struct io_accel2_cmd, member) != offset) |
| 8913 | |
| 8914 | VERIFY_OFFSET(IU_type, 0); |
| 8915 | VERIFY_OFFSET(direction, 1); |
| 8916 | VERIFY_OFFSET(reply_queue, 2); |
| 8917 | /* VERIFY_OFFSET(reserved1, 3); */ |
| 8918 | VERIFY_OFFSET(scsi_nexus, 4); |
| 8919 | VERIFY_OFFSET(Tag, 8); |
| 8920 | VERIFY_OFFSET(cdb, 16); |
| 8921 | VERIFY_OFFSET(cciss_lun, 32); |
| 8922 | VERIFY_OFFSET(data_len, 40); |
| 8923 | VERIFY_OFFSET(cmd_priority_task_attr, 44); |
| 8924 | VERIFY_OFFSET(sg_count, 45); |
| 8925 | /* VERIFY_OFFSET(reserved3 */ |
| 8926 | VERIFY_OFFSET(err_ptr, 48); |
| 8927 | VERIFY_OFFSET(err_len, 56); |
| 8928 | /* VERIFY_OFFSET(reserved4 */ |
| 8929 | VERIFY_OFFSET(sg, 64); |
| 8930 | |
| 8931 | #undef VERIFY_OFFSET |
| 8932 | |
| 8933 | #define VERIFY_OFFSET(member, offset) \ |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8934 | BUILD_BUG_ON(offsetof(struct io_accel1_cmd, member) != offset) |
| 8935 | |
| 8936 | VERIFY_OFFSET(dev_handle, 0x00); |
| 8937 | VERIFY_OFFSET(reserved1, 0x02); |
| 8938 | VERIFY_OFFSET(function, 0x03); |
| 8939 | VERIFY_OFFSET(reserved2, 0x04); |
| 8940 | VERIFY_OFFSET(err_info, 0x0C); |
| 8941 | VERIFY_OFFSET(reserved3, 0x10); |
| 8942 | VERIFY_OFFSET(err_info_len, 0x12); |
| 8943 | VERIFY_OFFSET(reserved4, 0x13); |
| 8944 | VERIFY_OFFSET(sgl_offset, 0x14); |
| 8945 | VERIFY_OFFSET(reserved5, 0x15); |
| 8946 | VERIFY_OFFSET(transfer_len, 0x1C); |
| 8947 | VERIFY_OFFSET(reserved6, 0x20); |
| 8948 | VERIFY_OFFSET(io_flags, 0x24); |
| 8949 | VERIFY_OFFSET(reserved7, 0x26); |
| 8950 | VERIFY_OFFSET(LUN, 0x34); |
| 8951 | VERIFY_OFFSET(control, 0x3C); |
| 8952 | VERIFY_OFFSET(CDB, 0x40); |
| 8953 | VERIFY_OFFSET(reserved8, 0x50); |
| 8954 | VERIFY_OFFSET(host_context_flags, 0x60); |
| 8955 | VERIFY_OFFSET(timeout_sec, 0x62); |
| 8956 | VERIFY_OFFSET(ReplyQueue, 0x64); |
| 8957 | VERIFY_OFFSET(reserved9, 0x65); |
Stephen M. Cameron | 50a0dec | 2014-11-14 17:26:59 -0600 | [diff] [blame] | 8958 | VERIFY_OFFSET(tag, 0x68); |
Matt Gates | e1f7de0 | 2014-02-18 13:55:17 -0600 | [diff] [blame] | 8959 | VERIFY_OFFSET(host_addr, 0x70); |
| 8960 | VERIFY_OFFSET(CISS_LUN, 0x78); |
| 8961 | VERIFY_OFFSET(SG, 0x78 + 8); |
| 8962 | #undef VERIFY_OFFSET |
| 8963 | } |
| 8964 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 8965 | module_init(hpsa_init); |
| 8966 | module_exit(hpsa_cleanup); |