Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Disk Array driver for HP Smart Array SAS controllers |
| 3 | * Copyright 2000, 2009 Hewlett-Packard Development Company, L.P. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; version 2 of the License. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or |
| 12 | * NON INFRINGEMENT. See the GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 17 | * |
| 18 | * Questions/Comments/Bugfixes to iss_storagedev@hp.com |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/types.h> |
| 25 | #include <linux/pci.h> |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/delay.h> |
| 29 | #include <linux/fs.h> |
| 30 | #include <linux/timer.h> |
| 31 | #include <linux/seq_file.h> |
| 32 | #include <linux/init.h> |
| 33 | #include <linux/spinlock.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 34 | #include <linux/compat.h> |
| 35 | #include <linux/blktrace_api.h> |
| 36 | #include <linux/uaccess.h> |
| 37 | #include <linux/io.h> |
| 38 | #include <linux/dma-mapping.h> |
| 39 | #include <linux/completion.h> |
| 40 | #include <linux/moduleparam.h> |
| 41 | #include <scsi/scsi.h> |
| 42 | #include <scsi/scsi_cmnd.h> |
| 43 | #include <scsi/scsi_device.h> |
| 44 | #include <scsi/scsi_host.h> |
Stephen M. Cameron | 667e23d | 2010-02-25 14:02:51 -0600 | [diff] [blame] | 45 | #include <scsi/scsi_tcq.h> |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 46 | #include <linux/cciss_ioctl.h> |
| 47 | #include <linux/string.h> |
| 48 | #include <linux/bitmap.h> |
| 49 | #include <asm/atomic.h> |
| 50 | #include <linux/kthread.h> |
| 51 | #include "hpsa_cmd.h" |
| 52 | #include "hpsa.h" |
| 53 | |
| 54 | /* HPSA_DRIVER_VERSION must be 3 byte values (0-255) separated by '.' */ |
Mike Miller | 3146840 | 2010-02-25 14:03:12 -0600 | [diff] [blame] | 55 | #define HPSA_DRIVER_VERSION "2.0.2-1" |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 56 | #define DRIVER_NAME "HP HPSA Driver (v " HPSA_DRIVER_VERSION ")" |
| 57 | |
| 58 | /* How long to wait (in milliseconds) for board to go into simple mode */ |
| 59 | #define MAX_CONFIG_WAIT 30000 |
| 60 | #define MAX_IOCTL_CONFIG_WAIT 1000 |
| 61 | |
| 62 | /*define how many times we will try a command because of bus resets */ |
| 63 | #define MAX_CMD_RETRIES 3 |
| 64 | |
| 65 | /* Embedded module documentation macros - see modules.h */ |
| 66 | MODULE_AUTHOR("Hewlett-Packard Company"); |
| 67 | MODULE_DESCRIPTION("Driver for HP Smart Array Controller version " \ |
| 68 | HPSA_DRIVER_VERSION); |
| 69 | MODULE_SUPPORTED_DEVICE("HP Smart Array Controllers"); |
| 70 | MODULE_VERSION(HPSA_DRIVER_VERSION); |
| 71 | MODULE_LICENSE("GPL"); |
| 72 | |
| 73 | static int hpsa_allow_any; |
| 74 | module_param(hpsa_allow_any, int, S_IRUGO|S_IWUSR); |
| 75 | MODULE_PARM_DESC(hpsa_allow_any, |
| 76 | "Allow hpsa driver to access unknown HP Smart Array hardware"); |
Stephen M. Cameron | 02ec19c | 2011-01-06 14:48:29 -0600 | [diff] [blame] | 77 | static int hpsa_simple_mode; |
| 78 | module_param(hpsa_simple_mode, int, S_IRUGO|S_IWUSR); |
| 79 | MODULE_PARM_DESC(hpsa_simple_mode, |
| 80 | "Use 'simple mode' rather than 'performant mode'"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 81 | |
| 82 | /* define the PCI info for the cards we can control */ |
| 83 | static const struct pci_device_id hpsa_pci_device_id[] = { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 84 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3241}, |
| 85 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3243}, |
| 86 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3245}, |
| 87 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3247}, |
| 88 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3249}, |
| 89 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324a}, |
| 90 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x324b}, |
Mike Miller | f8b01eb | 2010-02-04 08:42:45 -0600 | [diff] [blame] | 91 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3233}, |
Stephen M. Cameron | 2e931f3 | 2010-06-16 13:51:15 -0500 | [diff] [blame] | 92 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3250}, |
| 93 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3251}, |
| 94 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3252}, |
| 95 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3253}, |
| 96 | {PCI_VENDOR_ID_HP, PCI_DEVICE_ID_HP_CISSE, 0x103C, 0x3254}, |
Mike Miller | 7c03b87 | 2010-12-01 11:16:07 -0600 | [diff] [blame] | 97 | {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] | 98 | PCI_CLASS_STORAGE_RAID << 8, 0xffff << 8, 0}, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 99 | {0,} |
| 100 | }; |
| 101 | |
| 102 | MODULE_DEVICE_TABLE(pci, hpsa_pci_device_id); |
| 103 | |
| 104 | /* board_id = Subsystem Device ID & Vendor ID |
| 105 | * product = Marketing Name for the board |
| 106 | * access = Address of the struct of function pointers |
| 107 | */ |
| 108 | static struct board_type products[] = { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 109 | {0x3241103C, "Smart Array P212", &SA5_access}, |
| 110 | {0x3243103C, "Smart Array P410", &SA5_access}, |
| 111 | {0x3245103C, "Smart Array P410i", &SA5_access}, |
| 112 | {0x3247103C, "Smart Array P411", &SA5_access}, |
| 113 | {0x3249103C, "Smart Array P812", &SA5_access}, |
| 114 | {0x324a103C, "Smart Array P712m", &SA5_access}, |
| 115 | {0x324b103C, "Smart Array P711m", &SA5_access}, |
Stephen M. Cameron | 2e931f3 | 2010-06-16 13:51:15 -0500 | [diff] [blame] | 116 | {0x3250103C, "Smart Array", &SA5_access}, |
| 117 | {0x3250113C, "Smart Array", &SA5_access}, |
| 118 | {0x3250123C, "Smart Array", &SA5_access}, |
| 119 | {0x3250133C, "Smart Array", &SA5_access}, |
| 120 | {0x3250143C, "Smart Array", &SA5_access}, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 121 | {0xFFFF103C, "Unknown Smart Array", &SA5_access}, |
| 122 | }; |
| 123 | |
| 124 | static int number_of_controllers; |
| 125 | |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 126 | static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id); |
| 127 | static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 128 | static int hpsa_ioctl(struct scsi_device *dev, int cmd, void *arg); |
| 129 | static void start_io(struct ctlr_info *h); |
| 130 | |
| 131 | #ifdef CONFIG_COMPAT |
| 132 | static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void *arg); |
| 133 | #endif |
| 134 | |
| 135 | static void cmd_free(struct ctlr_info *h, struct CommandList *c); |
| 136 | static void cmd_special_free(struct ctlr_info *h, struct CommandList *c); |
| 137 | static struct CommandList *cmd_alloc(struct ctlr_info *h); |
| 138 | static struct CommandList *cmd_special_alloc(struct ctlr_info *h); |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 139 | static void fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h, |
| 140 | void *buff, size_t size, u8 page_code, unsigned char *scsi3addr, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 141 | int cmd_type); |
| 142 | |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 143 | 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] | 144 | static void hpsa_scan_start(struct Scsi_Host *); |
| 145 | static int hpsa_scan_finished(struct Scsi_Host *sh, |
| 146 | unsigned long elapsed_time); |
Stephen M. Cameron | 667e23d | 2010-02-25 14:02:51 -0600 | [diff] [blame] | 147 | static int hpsa_change_queue_depth(struct scsi_device *sdev, |
| 148 | int qdepth, int reason); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 149 | |
| 150 | static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd); |
| 151 | static int hpsa_slave_alloc(struct scsi_device *sdev); |
| 152 | static void hpsa_slave_destroy(struct scsi_device *sdev); |
| 153 | |
| 154 | static ssize_t raid_level_show(struct device *dev, |
| 155 | struct device_attribute *attr, char *buf); |
| 156 | static ssize_t lunid_show(struct device *dev, |
| 157 | struct device_attribute *attr, char *buf); |
| 158 | static ssize_t unique_id_show(struct device *dev, |
| 159 | struct device_attribute *attr, char *buf); |
Stephen M. Cameron | d28ce02 | 2010-05-27 15:14:34 -0500 | [diff] [blame] | 160 | static ssize_t host_show_firmware_revision(struct device *dev, |
| 161 | struct device_attribute *attr, char *buf); |
Stephen M. Cameron | 94a1364 | 2011-01-06 14:48:39 -0600 | [diff] [blame^] | 162 | static ssize_t host_show_commands_outstanding(struct device *dev, |
| 163 | struct device_attribute *attr, char *buf); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 164 | static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno); |
| 165 | static ssize_t host_store_rescan(struct device *dev, |
| 166 | struct device_attribute *attr, const char *buf, size_t count); |
| 167 | static int check_for_unit_attention(struct ctlr_info *h, |
| 168 | struct CommandList *c); |
| 169 | static void check_ioctl_unit_attention(struct ctlr_info *h, |
| 170 | struct CommandList *c); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 171 | /* performant mode helper functions */ |
| 172 | static void calc_bucket_map(int *bucket, int num_buckets, |
| 173 | int nsgs, int *bucket_map); |
Stephen M. Cameron | 7136f9a | 2010-05-27 15:14:03 -0500 | [diff] [blame] | 174 | static __devinit void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 175 | static inline u32 next_command(struct ctlr_info *h); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 176 | static int __devinit hpsa_find_cfg_addrs(struct pci_dev *pdev, |
| 177 | void __iomem *vaddr, u32 *cfg_base_addr, u64 *cfg_base_addr_index, |
| 178 | u64 *cfg_offset); |
| 179 | static int __devinit hpsa_pci_find_memory_BAR(struct pci_dev *pdev, |
| 180 | unsigned long *memory_bar); |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 181 | static int __devinit hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id); |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 182 | static int __devinit hpsa_wait_for_board_state(struct pci_dev *pdev, |
| 183 | void __iomem *vaddr, int wait_for_ready); |
| 184 | #define BOARD_NOT_READY 0 |
| 185 | #define BOARD_READY 1 |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 186 | |
| 187 | static DEVICE_ATTR(raid_level, S_IRUGO, raid_level_show, NULL); |
| 188 | static DEVICE_ATTR(lunid, S_IRUGO, lunid_show, NULL); |
| 189 | static DEVICE_ATTR(unique_id, S_IRUGO, unique_id_show, NULL); |
| 190 | static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan); |
Stephen M. Cameron | d28ce02 | 2010-05-27 15:14:34 -0500 | [diff] [blame] | 191 | static DEVICE_ATTR(firmware_revision, S_IRUGO, |
| 192 | host_show_firmware_revision, NULL); |
Stephen M. Cameron | 94a1364 | 2011-01-06 14:48:39 -0600 | [diff] [blame^] | 193 | static DEVICE_ATTR(commands_outstanding, S_IRUGO, |
| 194 | host_show_commands_outstanding, NULL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 195 | |
| 196 | static struct device_attribute *hpsa_sdev_attrs[] = { |
| 197 | &dev_attr_raid_level, |
| 198 | &dev_attr_lunid, |
| 199 | &dev_attr_unique_id, |
| 200 | NULL, |
| 201 | }; |
| 202 | |
| 203 | static struct device_attribute *hpsa_shost_attrs[] = { |
| 204 | &dev_attr_rescan, |
Stephen M. Cameron | d28ce02 | 2010-05-27 15:14:34 -0500 | [diff] [blame] | 205 | &dev_attr_firmware_revision, |
Stephen M. Cameron | 94a1364 | 2011-01-06 14:48:39 -0600 | [diff] [blame^] | 206 | &dev_attr_commands_outstanding, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 207 | NULL, |
| 208 | }; |
| 209 | |
| 210 | static struct scsi_host_template hpsa_driver_template = { |
| 211 | .module = THIS_MODULE, |
| 212 | .name = "hpsa", |
| 213 | .proc_name = "hpsa", |
| 214 | .queuecommand = hpsa_scsi_queue_command, |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 215 | .scan_start = hpsa_scan_start, |
| 216 | .scan_finished = hpsa_scan_finished, |
Stephen M. Cameron | 667e23d | 2010-02-25 14:02:51 -0600 | [diff] [blame] | 217 | .change_queue_depth = hpsa_change_queue_depth, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 218 | .this_id = -1, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 219 | .use_clustering = ENABLE_CLUSTERING, |
| 220 | .eh_device_reset_handler = hpsa_eh_device_reset_handler, |
| 221 | .ioctl = hpsa_ioctl, |
| 222 | .slave_alloc = hpsa_slave_alloc, |
| 223 | .slave_destroy = hpsa_slave_destroy, |
| 224 | #ifdef CONFIG_COMPAT |
| 225 | .compat_ioctl = hpsa_compat_ioctl, |
| 226 | #endif |
| 227 | .sdev_attrs = hpsa_sdev_attrs, |
| 228 | .shost_attrs = hpsa_shost_attrs, |
| 229 | }; |
| 230 | |
| 231 | static inline struct ctlr_info *sdev_to_hba(struct scsi_device *sdev) |
| 232 | { |
| 233 | unsigned long *priv = shost_priv(sdev->host); |
| 234 | return (struct ctlr_info *) *priv; |
| 235 | } |
| 236 | |
Stephen M. Cameron | a23513e | 2010-02-04 08:43:11 -0600 | [diff] [blame] | 237 | static inline struct ctlr_info *shost_to_hba(struct Scsi_Host *sh) |
| 238 | { |
| 239 | unsigned long *priv = shost_priv(sh); |
| 240 | return (struct ctlr_info *) *priv; |
| 241 | } |
| 242 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 243 | static int check_for_unit_attention(struct ctlr_info *h, |
| 244 | struct CommandList *c) |
| 245 | { |
| 246 | if (c->err_info->SenseInfo[2] != UNIT_ATTENTION) |
| 247 | return 0; |
| 248 | |
| 249 | switch (c->err_info->SenseInfo[12]) { |
| 250 | case STATE_CHANGED: |
| 251 | dev_warn(&h->pdev->dev, "hpsa%d: a state change " |
| 252 | "detected, command retried\n", h->ctlr); |
| 253 | break; |
| 254 | case LUN_FAILED: |
| 255 | dev_warn(&h->pdev->dev, "hpsa%d: LUN failure " |
| 256 | "detected, action required\n", h->ctlr); |
| 257 | break; |
| 258 | case REPORT_LUNS_CHANGED: |
| 259 | dev_warn(&h->pdev->dev, "hpsa%d: report LUN data " |
Mike Miller | 3146840 | 2010-02-25 14:03:12 -0600 | [diff] [blame] | 260 | "changed, action required\n", h->ctlr); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 261 | /* |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 262 | * Note: this REPORT_LUNS_CHANGED condition only occurs on the MSA2012. |
| 263 | */ |
| 264 | break; |
| 265 | case POWER_OR_RESET: |
| 266 | dev_warn(&h->pdev->dev, "hpsa%d: a power on " |
| 267 | "or device reset detected\n", h->ctlr); |
| 268 | break; |
| 269 | case UNIT_ATTENTION_CLEARED: |
| 270 | dev_warn(&h->pdev->dev, "hpsa%d: unit attention " |
| 271 | "cleared by another initiator\n", h->ctlr); |
| 272 | break; |
| 273 | default: |
| 274 | dev_warn(&h->pdev->dev, "hpsa%d: unknown " |
| 275 | "unit attention detected\n", h->ctlr); |
| 276 | break; |
| 277 | } |
| 278 | return 1; |
| 279 | } |
| 280 | |
| 281 | static ssize_t host_store_rescan(struct device *dev, |
| 282 | struct device_attribute *attr, |
| 283 | const char *buf, size_t count) |
| 284 | { |
| 285 | struct ctlr_info *h; |
| 286 | struct Scsi_Host *shost = class_to_shost(dev); |
Stephen M. Cameron | a23513e | 2010-02-04 08:43:11 -0600 | [diff] [blame] | 287 | h = shost_to_hba(shost); |
Mike Miller | 3146840 | 2010-02-25 14:03:12 -0600 | [diff] [blame] | 288 | hpsa_scan_start(h->scsi_host); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 289 | return count; |
| 290 | } |
| 291 | |
Stephen M. Cameron | d28ce02 | 2010-05-27 15:14:34 -0500 | [diff] [blame] | 292 | static ssize_t host_show_firmware_revision(struct device *dev, |
| 293 | struct device_attribute *attr, char *buf) |
| 294 | { |
| 295 | struct ctlr_info *h; |
| 296 | struct Scsi_Host *shost = class_to_shost(dev); |
| 297 | unsigned char *fwrev; |
| 298 | |
| 299 | h = shost_to_hba(shost); |
| 300 | if (!h->hba_inquiry_data) |
| 301 | return 0; |
| 302 | fwrev = &h->hba_inquiry_data[32]; |
| 303 | return snprintf(buf, 20, "%c%c%c%c\n", |
| 304 | fwrev[0], fwrev[1], fwrev[2], fwrev[3]); |
| 305 | } |
| 306 | |
Stephen M. Cameron | 94a1364 | 2011-01-06 14:48:39 -0600 | [diff] [blame^] | 307 | static ssize_t host_show_commands_outstanding(struct device *dev, |
| 308 | struct device_attribute *attr, char *buf) |
| 309 | { |
| 310 | struct Scsi_Host *shost = class_to_shost(dev); |
| 311 | struct ctlr_info *h = shost_to_hba(shost); |
| 312 | |
| 313 | return snprintf(buf, 20, "%d\n", h->commands_outstanding); |
| 314 | } |
| 315 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 316 | /* Enqueuing and dequeuing functions for cmdlists. */ |
| 317 | static inline void addQ(struct hlist_head *list, struct CommandList *c) |
| 318 | { |
| 319 | hlist_add_head(&c->list, list); |
| 320 | } |
| 321 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 322 | static inline u32 next_command(struct ctlr_info *h) |
| 323 | { |
| 324 | u32 a; |
| 325 | |
| 326 | if (unlikely(h->transMethod != CFGTBL_Trans_Performant)) |
| 327 | return h->access.command_completed(h); |
| 328 | |
| 329 | if ((*(h->reply_pool_head) & 1) == (h->reply_pool_wraparound)) { |
| 330 | a = *(h->reply_pool_head); /* Next cmd in ring buffer */ |
| 331 | (h->reply_pool_head)++; |
| 332 | h->commands_outstanding--; |
| 333 | } else { |
| 334 | a = FIFO_EMPTY; |
| 335 | } |
| 336 | /* Check for wraparound */ |
| 337 | if (h->reply_pool_head == (h->reply_pool + h->max_commands)) { |
| 338 | h->reply_pool_head = h->reply_pool; |
| 339 | h->reply_pool_wraparound ^= 1; |
| 340 | } |
| 341 | return a; |
| 342 | } |
| 343 | |
| 344 | /* set_performant_mode: Modify the tag for cciss performant |
| 345 | * set bit 0 for pull model, bits 3-1 for block fetch |
| 346 | * register number |
| 347 | */ |
| 348 | static void set_performant_mode(struct ctlr_info *h, struct CommandList *c) |
| 349 | { |
| 350 | if (likely(h->transMethod == CFGTBL_Trans_Performant)) |
| 351 | c->busaddr |= 1 | (h->blockFetchTable[c->Header.SGList] << 1); |
| 352 | } |
| 353 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 354 | static void enqueue_cmd_and_start_io(struct ctlr_info *h, |
| 355 | struct CommandList *c) |
| 356 | { |
| 357 | unsigned long flags; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 358 | |
| 359 | set_performant_mode(h, c); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 360 | spin_lock_irqsave(&h->lock, flags); |
| 361 | addQ(&h->reqQ, c); |
| 362 | h->Qdepth++; |
| 363 | start_io(h); |
| 364 | spin_unlock_irqrestore(&h->lock, flags); |
| 365 | } |
| 366 | |
| 367 | static inline void removeQ(struct CommandList *c) |
| 368 | { |
| 369 | if (WARN_ON(hlist_unhashed(&c->list))) |
| 370 | return; |
| 371 | hlist_del_init(&c->list); |
| 372 | } |
| 373 | |
| 374 | static inline int is_hba_lunid(unsigned char scsi3addr[]) |
| 375 | { |
| 376 | return memcmp(scsi3addr, RAID_CTLR_LUNID, 8) == 0; |
| 377 | } |
| 378 | |
| 379 | static inline int is_logical_dev_addr_mode(unsigned char scsi3addr[]) |
| 380 | { |
| 381 | return (scsi3addr[3] & 0xC0) == 0x40; |
| 382 | } |
| 383 | |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 384 | static inline int is_scsi_rev_5(struct ctlr_info *h) |
| 385 | { |
| 386 | if (!h->hba_inquiry_data) |
| 387 | return 0; |
| 388 | if ((h->hba_inquiry_data[2] & 0x07) == 5) |
| 389 | return 1; |
| 390 | return 0; |
| 391 | } |
| 392 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 393 | static const char *raid_label[] = { "0", "4", "1(1+0)", "5", "5+1", "ADG", |
| 394 | "UNKNOWN" |
| 395 | }; |
| 396 | #define RAID_UNKNOWN (ARRAY_SIZE(raid_label) - 1) |
| 397 | |
| 398 | static ssize_t raid_level_show(struct device *dev, |
| 399 | struct device_attribute *attr, char *buf) |
| 400 | { |
| 401 | ssize_t l = 0; |
Stephen M. Cameron | 82a72c0 | 2010-02-04 08:41:38 -0600 | [diff] [blame] | 402 | unsigned char rlevel; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 403 | struct ctlr_info *h; |
| 404 | struct scsi_device *sdev; |
| 405 | struct hpsa_scsi_dev_t *hdev; |
| 406 | unsigned long flags; |
| 407 | |
| 408 | sdev = to_scsi_device(dev); |
| 409 | h = sdev_to_hba(sdev); |
| 410 | spin_lock_irqsave(&h->lock, flags); |
| 411 | hdev = sdev->hostdata; |
| 412 | if (!hdev) { |
| 413 | spin_unlock_irqrestore(&h->lock, flags); |
| 414 | return -ENODEV; |
| 415 | } |
| 416 | |
| 417 | /* Is this even a logical drive? */ |
| 418 | if (!is_logical_dev_addr_mode(hdev->scsi3addr)) { |
| 419 | spin_unlock_irqrestore(&h->lock, flags); |
| 420 | l = snprintf(buf, PAGE_SIZE, "N/A\n"); |
| 421 | return l; |
| 422 | } |
| 423 | |
| 424 | rlevel = hdev->raid_level; |
| 425 | spin_unlock_irqrestore(&h->lock, flags); |
Stephen M. Cameron | 82a72c0 | 2010-02-04 08:41:38 -0600 | [diff] [blame] | 426 | if (rlevel > RAID_UNKNOWN) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 427 | rlevel = RAID_UNKNOWN; |
| 428 | l = snprintf(buf, PAGE_SIZE, "RAID %s\n", raid_label[rlevel]); |
| 429 | return l; |
| 430 | } |
| 431 | |
| 432 | static ssize_t lunid_show(struct device *dev, |
| 433 | struct device_attribute *attr, char *buf) |
| 434 | { |
| 435 | struct ctlr_info *h; |
| 436 | struct scsi_device *sdev; |
| 437 | struct hpsa_scsi_dev_t *hdev; |
| 438 | unsigned long flags; |
| 439 | unsigned char lunid[8]; |
| 440 | |
| 441 | sdev = to_scsi_device(dev); |
| 442 | h = sdev_to_hba(sdev); |
| 443 | spin_lock_irqsave(&h->lock, flags); |
| 444 | hdev = sdev->hostdata; |
| 445 | if (!hdev) { |
| 446 | spin_unlock_irqrestore(&h->lock, flags); |
| 447 | return -ENODEV; |
| 448 | } |
| 449 | memcpy(lunid, hdev->scsi3addr, sizeof(lunid)); |
| 450 | spin_unlock_irqrestore(&h->lock, flags); |
| 451 | return snprintf(buf, 20, "0x%02x%02x%02x%02x%02x%02x%02x%02x\n", |
| 452 | lunid[0], lunid[1], lunid[2], lunid[3], |
| 453 | lunid[4], lunid[5], lunid[6], lunid[7]); |
| 454 | } |
| 455 | |
| 456 | static ssize_t unique_id_show(struct device *dev, |
| 457 | struct device_attribute *attr, char *buf) |
| 458 | { |
| 459 | struct ctlr_info *h; |
| 460 | struct scsi_device *sdev; |
| 461 | struct hpsa_scsi_dev_t *hdev; |
| 462 | unsigned long flags; |
| 463 | unsigned char sn[16]; |
| 464 | |
| 465 | sdev = to_scsi_device(dev); |
| 466 | h = sdev_to_hba(sdev); |
| 467 | spin_lock_irqsave(&h->lock, flags); |
| 468 | hdev = sdev->hostdata; |
| 469 | if (!hdev) { |
| 470 | spin_unlock_irqrestore(&h->lock, flags); |
| 471 | return -ENODEV; |
| 472 | } |
| 473 | memcpy(sn, hdev->device_id, sizeof(sn)); |
| 474 | spin_unlock_irqrestore(&h->lock, flags); |
| 475 | return snprintf(buf, 16 * 2 + 2, |
| 476 | "%02X%02X%02X%02X%02X%02X%02X%02X" |
| 477 | "%02X%02X%02X%02X%02X%02X%02X%02X\n", |
| 478 | sn[0], sn[1], sn[2], sn[3], |
| 479 | sn[4], sn[5], sn[6], sn[7], |
| 480 | sn[8], sn[9], sn[10], sn[11], |
| 481 | sn[12], sn[13], sn[14], sn[15]); |
| 482 | } |
| 483 | |
| 484 | static int hpsa_find_target_lun(struct ctlr_info *h, |
| 485 | unsigned char scsi3addr[], int bus, int *target, int *lun) |
| 486 | { |
| 487 | /* finds an unused bus, target, lun for a new physical device |
| 488 | * assumes h->devlock is held |
| 489 | */ |
| 490 | int i, found = 0; |
| 491 | DECLARE_BITMAP(lun_taken, HPSA_MAX_SCSI_DEVS_PER_HBA); |
| 492 | |
| 493 | memset(&lun_taken[0], 0, HPSA_MAX_SCSI_DEVS_PER_HBA >> 3); |
| 494 | |
| 495 | for (i = 0; i < h->ndevices; i++) { |
| 496 | if (h->dev[i]->bus == bus && h->dev[i]->target != -1) |
| 497 | set_bit(h->dev[i]->target, lun_taken); |
| 498 | } |
| 499 | |
| 500 | for (i = 0; i < HPSA_MAX_SCSI_DEVS_PER_HBA; i++) { |
| 501 | if (!test_bit(i, lun_taken)) { |
| 502 | /* *bus = 1; */ |
| 503 | *target = i; |
| 504 | *lun = 0; |
| 505 | found = 1; |
| 506 | break; |
| 507 | } |
| 508 | } |
| 509 | return !found; |
| 510 | } |
| 511 | |
| 512 | /* Add an entry into h->dev[] array. */ |
| 513 | static int hpsa_scsi_add_entry(struct ctlr_info *h, int hostno, |
| 514 | struct hpsa_scsi_dev_t *device, |
| 515 | struct hpsa_scsi_dev_t *added[], int *nadded) |
| 516 | { |
| 517 | /* assumes h->devlock is held */ |
| 518 | int n = h->ndevices; |
| 519 | int i; |
| 520 | unsigned char addr1[8], addr2[8]; |
| 521 | struct hpsa_scsi_dev_t *sd; |
| 522 | |
| 523 | if (n >= HPSA_MAX_SCSI_DEVS_PER_HBA) { |
| 524 | dev_err(&h->pdev->dev, "too many devices, some will be " |
| 525 | "inaccessible.\n"); |
| 526 | return -1; |
| 527 | } |
| 528 | |
| 529 | /* physical devices do not have lun or target assigned until now. */ |
| 530 | if (device->lun != -1) |
| 531 | /* Logical device, lun is already assigned. */ |
| 532 | goto lun_assigned; |
| 533 | |
| 534 | /* If this device a non-zero lun of a multi-lun device |
| 535 | * byte 4 of the 8-byte LUN addr will contain the logical |
| 536 | * unit no, zero otherise. |
| 537 | */ |
| 538 | if (device->scsi3addr[4] == 0) { |
| 539 | /* This is not a non-zero lun of a multi-lun device */ |
| 540 | if (hpsa_find_target_lun(h, device->scsi3addr, |
| 541 | device->bus, &device->target, &device->lun) != 0) |
| 542 | return -1; |
| 543 | goto lun_assigned; |
| 544 | } |
| 545 | |
| 546 | /* This is a non-zero lun of a multi-lun device. |
| 547 | * Search through our list and find the device which |
| 548 | * has the same 8 byte LUN address, excepting byte 4. |
| 549 | * Assign the same bus and target for this new LUN. |
| 550 | * Use the logical unit number from the firmware. |
| 551 | */ |
| 552 | memcpy(addr1, device->scsi3addr, 8); |
| 553 | addr1[4] = 0; |
| 554 | for (i = 0; i < n; i++) { |
| 555 | sd = h->dev[i]; |
| 556 | memcpy(addr2, sd->scsi3addr, 8); |
| 557 | addr2[4] = 0; |
| 558 | /* differ only in byte 4? */ |
| 559 | if (memcmp(addr1, addr2, 8) == 0) { |
| 560 | device->bus = sd->bus; |
| 561 | device->target = sd->target; |
| 562 | device->lun = device->scsi3addr[4]; |
| 563 | break; |
| 564 | } |
| 565 | } |
| 566 | if (device->lun == -1) { |
| 567 | dev_warn(&h->pdev->dev, "physical device with no LUN=0," |
| 568 | " suspect firmware bug or unsupported hardware " |
| 569 | "configuration.\n"); |
| 570 | return -1; |
| 571 | } |
| 572 | |
| 573 | lun_assigned: |
| 574 | |
| 575 | h->dev[n] = device; |
| 576 | h->ndevices++; |
| 577 | added[*nadded] = device; |
| 578 | (*nadded)++; |
| 579 | |
| 580 | /* initially, (before registering with scsi layer) we don't |
| 581 | * know our hostno and we don't want to print anything first |
| 582 | * time anyway (the scsi layer's inquiries will show that info) |
| 583 | */ |
| 584 | /* if (hostno != -1) */ |
| 585 | dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d added.\n", |
| 586 | scsi_device_type(device->devtype), hostno, |
| 587 | device->bus, device->target, device->lun); |
| 588 | return 0; |
| 589 | } |
| 590 | |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 591 | /* Replace an entry from h->dev[] array. */ |
| 592 | static void hpsa_scsi_replace_entry(struct ctlr_info *h, int hostno, |
| 593 | int entry, struct hpsa_scsi_dev_t *new_entry, |
| 594 | struct hpsa_scsi_dev_t *added[], int *nadded, |
| 595 | struct hpsa_scsi_dev_t *removed[], int *nremoved) |
| 596 | { |
| 597 | /* assumes h->devlock is held */ |
| 598 | BUG_ON(entry < 0 || entry >= HPSA_MAX_SCSI_DEVS_PER_HBA); |
| 599 | removed[*nremoved] = h->dev[entry]; |
| 600 | (*nremoved)++; |
| 601 | h->dev[entry] = new_entry; |
| 602 | added[*nadded] = new_entry; |
| 603 | (*nadded)++; |
| 604 | dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d changed.\n", |
| 605 | scsi_device_type(new_entry->devtype), hostno, new_entry->bus, |
| 606 | new_entry->target, new_entry->lun); |
| 607 | } |
| 608 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 609 | /* Remove an entry from h->dev[] array. */ |
| 610 | static void hpsa_scsi_remove_entry(struct ctlr_info *h, int hostno, int entry, |
| 611 | struct hpsa_scsi_dev_t *removed[], int *nremoved) |
| 612 | { |
| 613 | /* assumes h->devlock is held */ |
| 614 | int i; |
| 615 | struct hpsa_scsi_dev_t *sd; |
| 616 | |
Stephen M. Cameron | b2ed4f7 | 2010-02-04 08:41:44 -0600 | [diff] [blame] | 617 | BUG_ON(entry < 0 || entry >= HPSA_MAX_SCSI_DEVS_PER_HBA); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 618 | |
| 619 | sd = h->dev[entry]; |
| 620 | removed[*nremoved] = h->dev[entry]; |
| 621 | (*nremoved)++; |
| 622 | |
| 623 | for (i = entry; i < h->ndevices-1; i++) |
| 624 | h->dev[i] = h->dev[i+1]; |
| 625 | h->ndevices--; |
| 626 | dev_info(&h->pdev->dev, "%s device c%db%dt%dl%d removed.\n", |
| 627 | scsi_device_type(sd->devtype), hostno, sd->bus, sd->target, |
| 628 | sd->lun); |
| 629 | } |
| 630 | |
| 631 | #define SCSI3ADDR_EQ(a, b) ( \ |
| 632 | (a)[7] == (b)[7] && \ |
| 633 | (a)[6] == (b)[6] && \ |
| 634 | (a)[5] == (b)[5] && \ |
| 635 | (a)[4] == (b)[4] && \ |
| 636 | (a)[3] == (b)[3] && \ |
| 637 | (a)[2] == (b)[2] && \ |
| 638 | (a)[1] == (b)[1] && \ |
| 639 | (a)[0] == (b)[0]) |
| 640 | |
| 641 | static void fixup_botched_add(struct ctlr_info *h, |
| 642 | struct hpsa_scsi_dev_t *added) |
| 643 | { |
| 644 | /* called when scsi_add_device fails in order to re-adjust |
| 645 | * h->dev[] to match the mid layer's view. |
| 646 | */ |
| 647 | unsigned long flags; |
| 648 | int i, j; |
| 649 | |
| 650 | spin_lock_irqsave(&h->lock, flags); |
| 651 | for (i = 0; i < h->ndevices; i++) { |
| 652 | if (h->dev[i] == added) { |
| 653 | for (j = i; j < h->ndevices-1; j++) |
| 654 | h->dev[j] = h->dev[j+1]; |
| 655 | h->ndevices--; |
| 656 | break; |
| 657 | } |
| 658 | } |
| 659 | spin_unlock_irqrestore(&h->lock, flags); |
| 660 | kfree(added); |
| 661 | } |
| 662 | |
| 663 | static inline int device_is_the_same(struct hpsa_scsi_dev_t *dev1, |
| 664 | struct hpsa_scsi_dev_t *dev2) |
| 665 | { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 666 | /* we compare everything except lun and target as these |
| 667 | * are not yet assigned. Compare parts likely |
| 668 | * to differ first |
| 669 | */ |
| 670 | if (memcmp(dev1->scsi3addr, dev2->scsi3addr, |
| 671 | sizeof(dev1->scsi3addr)) != 0) |
| 672 | return 0; |
| 673 | if (memcmp(dev1->device_id, dev2->device_id, |
| 674 | sizeof(dev1->device_id)) != 0) |
| 675 | return 0; |
| 676 | if (memcmp(dev1->model, dev2->model, sizeof(dev1->model)) != 0) |
| 677 | return 0; |
| 678 | if (memcmp(dev1->vendor, dev2->vendor, sizeof(dev1->vendor)) != 0) |
| 679 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 680 | if (dev1->devtype != dev2->devtype) |
| 681 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 682 | if (dev1->bus != dev2->bus) |
| 683 | return 0; |
| 684 | return 1; |
| 685 | } |
| 686 | |
| 687 | /* Find needle in haystack. If exact match found, return DEVICE_SAME, |
| 688 | * and return needle location in *index. If scsi3addr matches, but not |
| 689 | * vendor, model, serial num, etc. return DEVICE_CHANGED, and return needle |
| 690 | * location in *index. If needle not found, return DEVICE_NOT_FOUND. |
| 691 | */ |
| 692 | static int hpsa_scsi_find_entry(struct hpsa_scsi_dev_t *needle, |
| 693 | struct hpsa_scsi_dev_t *haystack[], int haystack_size, |
| 694 | int *index) |
| 695 | { |
| 696 | int i; |
| 697 | #define DEVICE_NOT_FOUND 0 |
| 698 | #define DEVICE_CHANGED 1 |
| 699 | #define DEVICE_SAME 2 |
| 700 | for (i = 0; i < haystack_size; i++) { |
Stephen M. Cameron | 2323104 | 2010-02-04 08:43:36 -0600 | [diff] [blame] | 701 | if (haystack[i] == NULL) /* previously removed. */ |
| 702 | continue; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 703 | if (SCSI3ADDR_EQ(needle->scsi3addr, haystack[i]->scsi3addr)) { |
| 704 | *index = i; |
| 705 | if (device_is_the_same(needle, haystack[i])) |
| 706 | return DEVICE_SAME; |
| 707 | else |
| 708 | return DEVICE_CHANGED; |
| 709 | } |
| 710 | } |
| 711 | *index = -1; |
| 712 | return DEVICE_NOT_FOUND; |
| 713 | } |
| 714 | |
Stephen M. Cameron | 4967bd3 | 2010-02-04 08:41:49 -0600 | [diff] [blame] | 715 | static void adjust_hpsa_scsi_table(struct ctlr_info *h, int hostno, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 716 | struct hpsa_scsi_dev_t *sd[], int nsds) |
| 717 | { |
| 718 | /* sd contains scsi3 addresses and devtypes, and inquiry |
| 719 | * data. This function takes what's in sd to be the current |
| 720 | * reality and updates h->dev[] to reflect that reality. |
| 721 | */ |
| 722 | int i, entry, device_change, changes = 0; |
| 723 | struct hpsa_scsi_dev_t *csd; |
| 724 | unsigned long flags; |
| 725 | struct hpsa_scsi_dev_t **added, **removed; |
| 726 | int nadded, nremoved; |
| 727 | struct Scsi_Host *sh = NULL; |
| 728 | |
| 729 | added = kzalloc(sizeof(*added) * HPSA_MAX_SCSI_DEVS_PER_HBA, |
| 730 | GFP_KERNEL); |
| 731 | removed = kzalloc(sizeof(*removed) * HPSA_MAX_SCSI_DEVS_PER_HBA, |
| 732 | GFP_KERNEL); |
| 733 | |
| 734 | if (!added || !removed) { |
| 735 | dev_warn(&h->pdev->dev, "out of memory in " |
| 736 | "adjust_hpsa_scsi_table\n"); |
| 737 | goto free_and_out; |
| 738 | } |
| 739 | |
| 740 | spin_lock_irqsave(&h->devlock, flags); |
| 741 | |
| 742 | /* find any devices in h->dev[] that are not in |
| 743 | * sd[] and remove them from h->dev[], and for any |
| 744 | * devices which have changed, remove the old device |
| 745 | * info and add the new device info. |
| 746 | */ |
| 747 | i = 0; |
| 748 | nremoved = 0; |
| 749 | nadded = 0; |
| 750 | while (i < h->ndevices) { |
| 751 | csd = h->dev[i]; |
| 752 | device_change = hpsa_scsi_find_entry(csd, sd, nsds, &entry); |
| 753 | if (device_change == DEVICE_NOT_FOUND) { |
| 754 | changes++; |
| 755 | hpsa_scsi_remove_entry(h, hostno, i, |
| 756 | removed, &nremoved); |
| 757 | continue; /* remove ^^^, hence i not incremented */ |
| 758 | } else if (device_change == DEVICE_CHANGED) { |
| 759 | changes++; |
Stephen M. Cameron | 2a8ccf3 | 2010-02-04 08:43:41 -0600 | [diff] [blame] | 760 | hpsa_scsi_replace_entry(h, hostno, i, sd[entry], |
| 761 | added, &nadded, removed, &nremoved); |
Stephen M. Cameron | c7f172d | 2010-02-04 08:43:31 -0600 | [diff] [blame] | 762 | /* Set it to NULL to prevent it from being freed |
| 763 | * at the bottom of hpsa_update_scsi_devices() |
| 764 | */ |
| 765 | sd[entry] = NULL; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 766 | } |
| 767 | i++; |
| 768 | } |
| 769 | |
| 770 | /* Now, make sure every device listed in sd[] is also |
| 771 | * listed in h->dev[], adding them if they aren't found |
| 772 | */ |
| 773 | |
| 774 | for (i = 0; i < nsds; i++) { |
| 775 | if (!sd[i]) /* if already added above. */ |
| 776 | continue; |
| 777 | device_change = hpsa_scsi_find_entry(sd[i], h->dev, |
| 778 | h->ndevices, &entry); |
| 779 | if (device_change == DEVICE_NOT_FOUND) { |
| 780 | changes++; |
| 781 | if (hpsa_scsi_add_entry(h, hostno, sd[i], |
| 782 | added, &nadded) != 0) |
| 783 | break; |
| 784 | sd[i] = NULL; /* prevent from being freed later. */ |
| 785 | } else if (device_change == DEVICE_CHANGED) { |
| 786 | /* should never happen... */ |
| 787 | changes++; |
| 788 | dev_warn(&h->pdev->dev, |
| 789 | "device unexpectedly changed.\n"); |
| 790 | /* but if it does happen, we just ignore that device */ |
| 791 | } |
| 792 | } |
| 793 | spin_unlock_irqrestore(&h->devlock, flags); |
| 794 | |
| 795 | /* Don't notify scsi mid layer of any changes the first time through |
| 796 | * (or if there are no changes) scsi_scan_host will do it later the |
| 797 | * first time through. |
| 798 | */ |
| 799 | if (hostno == -1 || !changes) |
| 800 | goto free_and_out; |
| 801 | |
| 802 | sh = h->scsi_host; |
| 803 | /* Notify scsi mid layer of any removed devices */ |
| 804 | for (i = 0; i < nremoved; i++) { |
| 805 | struct scsi_device *sdev = |
| 806 | scsi_device_lookup(sh, removed[i]->bus, |
| 807 | removed[i]->target, removed[i]->lun); |
| 808 | if (sdev != NULL) { |
| 809 | scsi_remove_device(sdev); |
| 810 | scsi_device_put(sdev); |
| 811 | } else { |
| 812 | /* We don't expect to get here. |
| 813 | * future cmds to this device will get selection |
| 814 | * timeout as if the device was gone. |
| 815 | */ |
| 816 | dev_warn(&h->pdev->dev, "didn't find c%db%dt%dl%d " |
| 817 | " for removal.", hostno, removed[i]->bus, |
| 818 | removed[i]->target, removed[i]->lun); |
| 819 | } |
| 820 | kfree(removed[i]); |
| 821 | removed[i] = NULL; |
| 822 | } |
| 823 | |
| 824 | /* Notify scsi mid layer of any added devices */ |
| 825 | for (i = 0; i < nadded; i++) { |
| 826 | if (scsi_add_device(sh, added[i]->bus, |
| 827 | added[i]->target, added[i]->lun) == 0) |
| 828 | continue; |
| 829 | dev_warn(&h->pdev->dev, "scsi_add_device c%db%dt%dl%d failed, " |
| 830 | "device not added.\n", hostno, added[i]->bus, |
| 831 | added[i]->target, added[i]->lun); |
| 832 | /* now we have to remove it from h->dev, |
| 833 | * since it didn't get added to scsi mid layer |
| 834 | */ |
| 835 | fixup_botched_add(h, added[i]); |
| 836 | } |
| 837 | |
| 838 | free_and_out: |
| 839 | kfree(added); |
| 840 | kfree(removed); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 841 | } |
| 842 | |
| 843 | /* |
| 844 | * Lookup bus/target/lun and retrun corresponding struct hpsa_scsi_dev_t * |
| 845 | * Assume's h->devlock is held. |
| 846 | */ |
| 847 | static struct hpsa_scsi_dev_t *lookup_hpsa_scsi_dev(struct ctlr_info *h, |
| 848 | int bus, int target, int lun) |
| 849 | { |
| 850 | int i; |
| 851 | struct hpsa_scsi_dev_t *sd; |
| 852 | |
| 853 | for (i = 0; i < h->ndevices; i++) { |
| 854 | sd = h->dev[i]; |
| 855 | if (sd->bus == bus && sd->target == target && sd->lun == lun) |
| 856 | return sd; |
| 857 | } |
| 858 | return NULL; |
| 859 | } |
| 860 | |
| 861 | /* link sdev->hostdata to our per-device structure. */ |
| 862 | static int hpsa_slave_alloc(struct scsi_device *sdev) |
| 863 | { |
| 864 | struct hpsa_scsi_dev_t *sd; |
| 865 | unsigned long flags; |
| 866 | struct ctlr_info *h; |
| 867 | |
| 868 | h = sdev_to_hba(sdev); |
| 869 | spin_lock_irqsave(&h->devlock, flags); |
| 870 | sd = lookup_hpsa_scsi_dev(h, sdev_channel(sdev), |
| 871 | sdev_id(sdev), sdev->lun); |
| 872 | if (sd != NULL) |
| 873 | sdev->hostdata = sd; |
| 874 | spin_unlock_irqrestore(&h->devlock, flags); |
| 875 | return 0; |
| 876 | } |
| 877 | |
| 878 | static void hpsa_slave_destroy(struct scsi_device *sdev) |
| 879 | { |
Stephen M. Cameron | bcc4425 | 2010-02-04 08:41:54 -0600 | [diff] [blame] | 880 | /* nothing to do. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 881 | } |
| 882 | |
| 883 | static void hpsa_scsi_setup(struct ctlr_info *h) |
| 884 | { |
| 885 | h->ndevices = 0; |
| 886 | h->scsi_host = NULL; |
| 887 | spin_lock_init(&h->devlock); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 888 | } |
| 889 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 890 | static void hpsa_free_sg_chain_blocks(struct ctlr_info *h) |
| 891 | { |
| 892 | int i; |
| 893 | |
| 894 | if (!h->cmd_sg_list) |
| 895 | return; |
| 896 | for (i = 0; i < h->nr_cmds; i++) { |
| 897 | kfree(h->cmd_sg_list[i]); |
| 898 | h->cmd_sg_list[i] = NULL; |
| 899 | } |
| 900 | kfree(h->cmd_sg_list); |
| 901 | h->cmd_sg_list = NULL; |
| 902 | } |
| 903 | |
| 904 | static int hpsa_allocate_sg_chain_blocks(struct ctlr_info *h) |
| 905 | { |
| 906 | int i; |
| 907 | |
| 908 | if (h->chainsize <= 0) |
| 909 | return 0; |
| 910 | |
| 911 | h->cmd_sg_list = kzalloc(sizeof(*h->cmd_sg_list) * h->nr_cmds, |
| 912 | GFP_KERNEL); |
| 913 | if (!h->cmd_sg_list) |
| 914 | return -ENOMEM; |
| 915 | for (i = 0; i < h->nr_cmds; i++) { |
| 916 | h->cmd_sg_list[i] = kmalloc(sizeof(*h->cmd_sg_list[i]) * |
| 917 | h->chainsize, GFP_KERNEL); |
| 918 | if (!h->cmd_sg_list[i]) |
| 919 | goto clean; |
| 920 | } |
| 921 | return 0; |
| 922 | |
| 923 | clean: |
| 924 | hpsa_free_sg_chain_blocks(h); |
| 925 | return -ENOMEM; |
| 926 | } |
| 927 | |
| 928 | static void hpsa_map_sg_chain_block(struct ctlr_info *h, |
| 929 | struct CommandList *c) |
| 930 | { |
| 931 | struct SGDescriptor *chain_sg, *chain_block; |
| 932 | u64 temp64; |
| 933 | |
| 934 | chain_sg = &c->SG[h->max_cmd_sg_entries - 1]; |
| 935 | chain_block = h->cmd_sg_list[c->cmdindex]; |
| 936 | chain_sg->Ext = HPSA_SG_CHAIN; |
| 937 | chain_sg->Len = sizeof(*chain_sg) * |
| 938 | (c->Header.SGTotal - h->max_cmd_sg_entries); |
| 939 | temp64 = pci_map_single(h->pdev, chain_block, chain_sg->Len, |
| 940 | PCI_DMA_TODEVICE); |
| 941 | chain_sg->Addr.lower = (u32) (temp64 & 0x0FFFFFFFFULL); |
| 942 | chain_sg->Addr.upper = (u32) ((temp64 >> 32) & 0x0FFFFFFFFULL); |
| 943 | } |
| 944 | |
| 945 | static void hpsa_unmap_sg_chain_block(struct ctlr_info *h, |
| 946 | struct CommandList *c) |
| 947 | { |
| 948 | struct SGDescriptor *chain_sg; |
| 949 | union u64bit temp64; |
| 950 | |
| 951 | if (c->Header.SGTotal <= h->max_cmd_sg_entries) |
| 952 | return; |
| 953 | |
| 954 | chain_sg = &c->SG[h->max_cmd_sg_entries - 1]; |
| 955 | temp64.val32.lower = chain_sg->Addr.lower; |
| 956 | temp64.val32.upper = chain_sg->Addr.upper; |
| 957 | pci_unmap_single(h->pdev, temp64.val, chain_sg->Len, PCI_DMA_TODEVICE); |
| 958 | } |
| 959 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 960 | static void complete_scsi_command(struct CommandList *cp, |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 961 | int timeout, u32 tag) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 962 | { |
| 963 | struct scsi_cmnd *cmd; |
| 964 | struct ctlr_info *h; |
| 965 | struct ErrorInfo *ei; |
| 966 | |
| 967 | unsigned char sense_key; |
| 968 | unsigned char asc; /* additional sense code */ |
| 969 | unsigned char ascq; /* additional sense code qualifier */ |
| 970 | |
| 971 | ei = cp->err_info; |
| 972 | cmd = (struct scsi_cmnd *) cp->scsi_cmd; |
| 973 | h = cp->h; |
| 974 | |
| 975 | scsi_dma_unmap(cmd); /* undo the DMA mappings */ |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 976 | if (cp->Header.SGTotal > h->max_cmd_sg_entries) |
| 977 | hpsa_unmap_sg_chain_block(h, cp); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 978 | |
| 979 | cmd->result = (DID_OK << 16); /* host byte */ |
| 980 | cmd->result |= (COMMAND_COMPLETE << 8); /* msg byte */ |
Stephen M. Cameron | 5512672 | 2010-02-25 14:03:01 -0600 | [diff] [blame] | 981 | cmd->result |= ei->ScsiStatus; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 982 | |
| 983 | /* copy the sense data whether we need to or not. */ |
| 984 | memcpy(cmd->sense_buffer, ei->SenseInfo, |
| 985 | ei->SenseLen > SCSI_SENSE_BUFFERSIZE ? |
| 986 | SCSI_SENSE_BUFFERSIZE : |
| 987 | ei->SenseLen); |
| 988 | scsi_set_resid(cmd, ei->ResidualCnt); |
| 989 | |
| 990 | if (ei->CommandStatus == 0) { |
| 991 | cmd->scsi_done(cmd); |
| 992 | cmd_free(h, cp); |
| 993 | return; |
| 994 | } |
| 995 | |
| 996 | /* an error has occurred */ |
| 997 | switch (ei->CommandStatus) { |
| 998 | |
| 999 | case CMD_TARGET_STATUS: |
| 1000 | if (ei->ScsiStatus) { |
| 1001 | /* Get sense key */ |
| 1002 | sense_key = 0xf & ei->SenseInfo[2]; |
| 1003 | /* Get additional sense code */ |
| 1004 | asc = ei->SenseInfo[12]; |
| 1005 | /* Get addition sense code qualifier */ |
| 1006 | ascq = ei->SenseInfo[13]; |
| 1007 | } |
| 1008 | |
| 1009 | if (ei->ScsiStatus == SAM_STAT_CHECK_CONDITION) { |
| 1010 | if (check_for_unit_attention(h, cp)) { |
| 1011 | cmd->result = DID_SOFT_ERROR << 16; |
| 1012 | break; |
| 1013 | } |
| 1014 | if (sense_key == ILLEGAL_REQUEST) { |
| 1015 | /* |
| 1016 | * SCSI REPORT_LUNS is commonly unsupported on |
| 1017 | * Smart Array. Suppress noisy complaint. |
| 1018 | */ |
| 1019 | if (cp->Request.CDB[0] == REPORT_LUNS) |
| 1020 | break; |
| 1021 | |
| 1022 | /* If ASC/ASCQ indicate Logical Unit |
| 1023 | * Not Supported condition, |
| 1024 | */ |
| 1025 | if ((asc == 0x25) && (ascq == 0x0)) { |
| 1026 | dev_warn(&h->pdev->dev, "cp %p " |
| 1027 | "has check condition\n", cp); |
| 1028 | break; |
| 1029 | } |
| 1030 | } |
| 1031 | |
| 1032 | if (sense_key == NOT_READY) { |
| 1033 | /* If Sense is Not Ready, Logical Unit |
| 1034 | * Not ready, Manual Intervention |
| 1035 | * required |
| 1036 | */ |
| 1037 | if ((asc == 0x04) && (ascq == 0x03)) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1038 | dev_warn(&h->pdev->dev, "cp %p " |
| 1039 | "has check condition: unit " |
| 1040 | "not ready, manual " |
| 1041 | "intervention required\n", cp); |
| 1042 | break; |
| 1043 | } |
| 1044 | } |
Matt Gates | 1d3b360 | 2010-02-04 08:43:00 -0600 | [diff] [blame] | 1045 | if (sense_key == ABORTED_COMMAND) { |
| 1046 | /* Aborted command is retryable */ |
| 1047 | dev_warn(&h->pdev->dev, "cp %p " |
| 1048 | "has check condition: aborted command: " |
| 1049 | "ASC: 0x%x, ASCQ: 0x%x\n", |
| 1050 | cp, asc, ascq); |
| 1051 | cmd->result = DID_SOFT_ERROR << 16; |
| 1052 | break; |
| 1053 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1054 | /* Must be some other type of check condition */ |
| 1055 | dev_warn(&h->pdev->dev, "cp %p has check condition: " |
| 1056 | "unknown type: " |
| 1057 | "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, " |
| 1058 | "Returning result: 0x%x, " |
| 1059 | "cmd=[%02x %02x %02x %02x %02x " |
Mike Miller | 807be73 | 2010-02-04 08:43:26 -0600 | [diff] [blame] | 1060 | "%02x %02x %02x %02x %02x %02x " |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1061 | "%02x %02x %02x %02x %02x]\n", |
| 1062 | cp, sense_key, asc, ascq, |
| 1063 | cmd->result, |
| 1064 | cmd->cmnd[0], cmd->cmnd[1], |
| 1065 | cmd->cmnd[2], cmd->cmnd[3], |
| 1066 | cmd->cmnd[4], cmd->cmnd[5], |
| 1067 | cmd->cmnd[6], cmd->cmnd[7], |
Mike Miller | 807be73 | 2010-02-04 08:43:26 -0600 | [diff] [blame] | 1068 | cmd->cmnd[8], cmd->cmnd[9], |
| 1069 | cmd->cmnd[10], cmd->cmnd[11], |
| 1070 | cmd->cmnd[12], cmd->cmnd[13], |
| 1071 | cmd->cmnd[14], cmd->cmnd[15]); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1072 | break; |
| 1073 | } |
| 1074 | |
| 1075 | |
| 1076 | /* Problem was not a check condition |
| 1077 | * Pass it up to the upper layers... |
| 1078 | */ |
| 1079 | if (ei->ScsiStatus) { |
| 1080 | dev_warn(&h->pdev->dev, "cp %p has status 0x%x " |
| 1081 | "Sense: 0x%x, ASC: 0x%x, ASCQ: 0x%x, " |
| 1082 | "Returning result: 0x%x\n", |
| 1083 | cp, ei->ScsiStatus, |
| 1084 | sense_key, asc, ascq, |
| 1085 | cmd->result); |
| 1086 | } else { /* scsi status is zero??? How??? */ |
| 1087 | dev_warn(&h->pdev->dev, "cp %p SCSI status was 0. " |
| 1088 | "Returning no connection.\n", cp), |
| 1089 | |
| 1090 | /* Ordinarily, this case should never happen, |
| 1091 | * but there is a bug in some released firmware |
| 1092 | * revisions that allows it to happen if, for |
| 1093 | * example, a 4100 backplane loses power and |
| 1094 | * the tape drive is in it. We assume that |
| 1095 | * it's a fatal error of some kind because we |
| 1096 | * can't show that it wasn't. We will make it |
| 1097 | * look like selection timeout since that is |
| 1098 | * the most common reason for this to occur, |
| 1099 | * and it's severe enough. |
| 1100 | */ |
| 1101 | |
| 1102 | cmd->result = DID_NO_CONNECT << 16; |
| 1103 | } |
| 1104 | break; |
| 1105 | |
| 1106 | case CMD_DATA_UNDERRUN: /* let mid layer handle it. */ |
| 1107 | break; |
| 1108 | case CMD_DATA_OVERRUN: |
| 1109 | dev_warn(&h->pdev->dev, "cp %p has" |
| 1110 | " completed with data overrun " |
| 1111 | "reported\n", cp); |
| 1112 | break; |
| 1113 | case CMD_INVALID: { |
| 1114 | /* print_bytes(cp, sizeof(*cp), 1, 0); |
| 1115 | print_cmd(cp); */ |
| 1116 | /* We get CMD_INVALID if you address a non-existent device |
| 1117 | * instead of a selection timeout (no response). You will |
| 1118 | * see this if you yank out a drive, then try to access it. |
| 1119 | * This is kind of a shame because it means that any other |
| 1120 | * CMD_INVALID (e.g. driver bug) will get interpreted as a |
| 1121 | * missing target. */ |
| 1122 | cmd->result = DID_NO_CONNECT << 16; |
| 1123 | } |
| 1124 | break; |
| 1125 | case CMD_PROTOCOL_ERR: |
| 1126 | dev_warn(&h->pdev->dev, "cp %p has " |
| 1127 | "protocol error \n", cp); |
| 1128 | break; |
| 1129 | case CMD_HARDWARE_ERR: |
| 1130 | cmd->result = DID_ERROR << 16; |
| 1131 | dev_warn(&h->pdev->dev, "cp %p had hardware error\n", cp); |
| 1132 | break; |
| 1133 | case CMD_CONNECTION_LOST: |
| 1134 | cmd->result = DID_ERROR << 16; |
| 1135 | dev_warn(&h->pdev->dev, "cp %p had connection lost\n", cp); |
| 1136 | break; |
| 1137 | case CMD_ABORTED: |
| 1138 | cmd->result = DID_ABORT << 16; |
| 1139 | dev_warn(&h->pdev->dev, "cp %p was aborted with status 0x%x\n", |
| 1140 | cp, ei->ScsiStatus); |
| 1141 | break; |
| 1142 | case CMD_ABORT_FAILED: |
| 1143 | cmd->result = DID_ERROR << 16; |
| 1144 | dev_warn(&h->pdev->dev, "cp %p reports abort failed\n", cp); |
| 1145 | break; |
| 1146 | case CMD_UNSOLICITED_ABORT: |
Matt Gates | 5f0325a | 2010-02-04 08:42:55 -0600 | [diff] [blame] | 1147 | cmd->result = DID_RESET << 16; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1148 | dev_warn(&h->pdev->dev, "cp %p aborted do to an unsolicited " |
| 1149 | "abort\n", cp); |
| 1150 | break; |
| 1151 | case CMD_TIMEOUT: |
| 1152 | cmd->result = DID_TIME_OUT << 16; |
| 1153 | dev_warn(&h->pdev->dev, "cp %p timedout\n", cp); |
| 1154 | break; |
| 1155 | default: |
| 1156 | cmd->result = DID_ERROR << 16; |
| 1157 | dev_warn(&h->pdev->dev, "cp %p returned unknown status %x\n", |
| 1158 | cp, ei->CommandStatus); |
| 1159 | } |
| 1160 | cmd->scsi_done(cmd); |
| 1161 | cmd_free(h, cp); |
| 1162 | } |
| 1163 | |
| 1164 | static int hpsa_scsi_detect(struct ctlr_info *h) |
| 1165 | { |
| 1166 | struct Scsi_Host *sh; |
| 1167 | int error; |
| 1168 | |
| 1169 | sh = scsi_host_alloc(&hpsa_driver_template, sizeof(h)); |
| 1170 | if (sh == NULL) |
| 1171 | goto fail; |
| 1172 | |
| 1173 | sh->io_port = 0; |
| 1174 | sh->n_io_port = 0; |
| 1175 | sh->this_id = -1; |
| 1176 | sh->max_channel = 3; |
| 1177 | sh->max_cmd_len = MAX_COMMAND_SIZE; |
| 1178 | sh->max_lun = HPSA_MAX_LUN; |
| 1179 | sh->max_id = HPSA_MAX_LUN; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 1180 | sh->can_queue = h->nr_cmds; |
| 1181 | sh->cmd_per_lun = h->nr_cmds; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1182 | sh->sg_tablesize = h->maxsgentries; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1183 | h->scsi_host = sh; |
| 1184 | sh->hostdata[0] = (unsigned long) h; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 1185 | sh->irq = h->intr[PERF_MODE_INT]; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1186 | sh->unique_id = sh->irq; |
| 1187 | error = scsi_add_host(sh, &h->pdev->dev); |
| 1188 | if (error) |
| 1189 | goto fail_host_put; |
| 1190 | scsi_scan_host(sh); |
| 1191 | return 0; |
| 1192 | |
| 1193 | fail_host_put: |
| 1194 | dev_err(&h->pdev->dev, "hpsa_scsi_detect: scsi_add_host" |
| 1195 | " failed for controller %d\n", h->ctlr); |
| 1196 | scsi_host_put(sh); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 1197 | return error; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1198 | fail: |
| 1199 | dev_err(&h->pdev->dev, "hpsa_scsi_detect: scsi_host_alloc" |
| 1200 | " failed for controller %d\n", h->ctlr); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 1201 | return -ENOMEM; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1202 | } |
| 1203 | |
| 1204 | static void hpsa_pci_unmap(struct pci_dev *pdev, |
| 1205 | struct CommandList *c, int sg_used, int data_direction) |
| 1206 | { |
| 1207 | int i; |
| 1208 | union u64bit addr64; |
| 1209 | |
| 1210 | for (i = 0; i < sg_used; i++) { |
| 1211 | addr64.val32.lower = c->SG[i].Addr.lower; |
| 1212 | addr64.val32.upper = c->SG[i].Addr.upper; |
| 1213 | pci_unmap_single(pdev, (dma_addr_t) addr64.val, c->SG[i].Len, |
| 1214 | data_direction); |
| 1215 | } |
| 1216 | } |
| 1217 | |
| 1218 | static void hpsa_map_one(struct pci_dev *pdev, |
| 1219 | struct CommandList *cp, |
| 1220 | unsigned char *buf, |
| 1221 | size_t buflen, |
| 1222 | int data_direction) |
| 1223 | { |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1224 | u64 addr64; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1225 | |
| 1226 | if (buflen == 0 || data_direction == PCI_DMA_NONE) { |
| 1227 | cp->Header.SGList = 0; |
| 1228 | cp->Header.SGTotal = 0; |
| 1229 | return; |
| 1230 | } |
| 1231 | |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1232 | addr64 = (u64) pci_map_single(pdev, buf, buflen, data_direction); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1233 | cp->SG[0].Addr.lower = |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1234 | (u32) (addr64 & (u64) 0x00000000FFFFFFFF); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1235 | cp->SG[0].Addr.upper = |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1236 | (u32) ((addr64 >> 32) & (u64) 0x00000000FFFFFFFF); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1237 | cp->SG[0].Len = buflen; |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1238 | cp->Header.SGList = (u8) 1; /* no. SGs contig in this cmd */ |
| 1239 | cp->Header.SGTotal = (u16) 1; /* total sgs in this cmd list */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1240 | } |
| 1241 | |
| 1242 | static inline void hpsa_scsi_do_simple_cmd_core(struct ctlr_info *h, |
| 1243 | struct CommandList *c) |
| 1244 | { |
| 1245 | DECLARE_COMPLETION_ONSTACK(wait); |
| 1246 | |
| 1247 | c->waiting = &wait; |
| 1248 | enqueue_cmd_and_start_io(h, c); |
| 1249 | wait_for_completion(&wait); |
| 1250 | } |
| 1251 | |
| 1252 | static void hpsa_scsi_do_simple_cmd_with_retry(struct ctlr_info *h, |
| 1253 | struct CommandList *c, int data_direction) |
| 1254 | { |
| 1255 | int retry_count = 0; |
| 1256 | |
| 1257 | do { |
| 1258 | memset(c->err_info, 0, sizeof(c->err_info)); |
| 1259 | hpsa_scsi_do_simple_cmd_core(h, c); |
| 1260 | retry_count++; |
| 1261 | } while (check_for_unit_attention(h, c) && retry_count <= 3); |
| 1262 | hpsa_pci_unmap(h->pdev, c, 1, data_direction); |
| 1263 | } |
| 1264 | |
| 1265 | static void hpsa_scsi_interpret_error(struct CommandList *cp) |
| 1266 | { |
| 1267 | struct ErrorInfo *ei; |
| 1268 | struct device *d = &cp->h->pdev->dev; |
| 1269 | |
| 1270 | ei = cp->err_info; |
| 1271 | switch (ei->CommandStatus) { |
| 1272 | case CMD_TARGET_STATUS: |
| 1273 | dev_warn(d, "cmd %p has completed with errors\n", cp); |
| 1274 | dev_warn(d, "cmd %p has SCSI Status = %x\n", cp, |
| 1275 | ei->ScsiStatus); |
| 1276 | if (ei->ScsiStatus == 0) |
| 1277 | dev_warn(d, "SCSI status is abnormally zero. " |
| 1278 | "(probably indicates selection timeout " |
| 1279 | "reported incorrectly due to a known " |
| 1280 | "firmware bug, circa July, 2001.)\n"); |
| 1281 | break; |
| 1282 | case CMD_DATA_UNDERRUN: /* let mid layer handle it. */ |
| 1283 | dev_info(d, "UNDERRUN\n"); |
| 1284 | break; |
| 1285 | case CMD_DATA_OVERRUN: |
| 1286 | dev_warn(d, "cp %p has completed with data overrun\n", cp); |
| 1287 | break; |
| 1288 | case CMD_INVALID: { |
| 1289 | /* controller unfortunately reports SCSI passthru's |
| 1290 | * to non-existent targets as invalid commands. |
| 1291 | */ |
| 1292 | dev_warn(d, "cp %p is reported invalid (probably means " |
| 1293 | "target device no longer present)\n", cp); |
| 1294 | /* print_bytes((unsigned char *) cp, sizeof(*cp), 1, 0); |
| 1295 | print_cmd(cp); */ |
| 1296 | } |
| 1297 | break; |
| 1298 | case CMD_PROTOCOL_ERR: |
| 1299 | dev_warn(d, "cp %p has protocol error \n", cp); |
| 1300 | break; |
| 1301 | case CMD_HARDWARE_ERR: |
| 1302 | /* cmd->result = DID_ERROR << 16; */ |
| 1303 | dev_warn(d, "cp %p had hardware error\n", cp); |
| 1304 | break; |
| 1305 | case CMD_CONNECTION_LOST: |
| 1306 | dev_warn(d, "cp %p had connection lost\n", cp); |
| 1307 | break; |
| 1308 | case CMD_ABORTED: |
| 1309 | dev_warn(d, "cp %p was aborted\n", cp); |
| 1310 | break; |
| 1311 | case CMD_ABORT_FAILED: |
| 1312 | dev_warn(d, "cp %p reports abort failed\n", cp); |
| 1313 | break; |
| 1314 | case CMD_UNSOLICITED_ABORT: |
| 1315 | dev_warn(d, "cp %p aborted due to an unsolicited abort\n", cp); |
| 1316 | break; |
| 1317 | case CMD_TIMEOUT: |
| 1318 | dev_warn(d, "cp %p timed out\n", cp); |
| 1319 | break; |
| 1320 | default: |
| 1321 | dev_warn(d, "cp %p returned unknown status %x\n", cp, |
| 1322 | ei->CommandStatus); |
| 1323 | } |
| 1324 | } |
| 1325 | |
| 1326 | static int hpsa_scsi_do_inquiry(struct ctlr_info *h, unsigned char *scsi3addr, |
| 1327 | unsigned char page, unsigned char *buf, |
| 1328 | unsigned char bufsize) |
| 1329 | { |
| 1330 | int rc = IO_OK; |
| 1331 | struct CommandList *c; |
| 1332 | struct ErrorInfo *ei; |
| 1333 | |
| 1334 | c = cmd_special_alloc(h); |
| 1335 | |
| 1336 | if (c == NULL) { /* trouble... */ |
| 1337 | dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n"); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 1338 | return -ENOMEM; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1339 | } |
| 1340 | |
| 1341 | fill_cmd(c, HPSA_INQUIRY, h, buf, bufsize, page, scsi3addr, TYPE_CMD); |
| 1342 | hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE); |
| 1343 | ei = c->err_info; |
| 1344 | if (ei->CommandStatus != 0 && ei->CommandStatus != CMD_DATA_UNDERRUN) { |
| 1345 | hpsa_scsi_interpret_error(c); |
| 1346 | rc = -1; |
| 1347 | } |
| 1348 | cmd_special_free(h, c); |
| 1349 | return rc; |
| 1350 | } |
| 1351 | |
| 1352 | static int hpsa_send_reset(struct ctlr_info *h, unsigned char *scsi3addr) |
| 1353 | { |
| 1354 | int rc = IO_OK; |
| 1355 | struct CommandList *c; |
| 1356 | struct ErrorInfo *ei; |
| 1357 | |
| 1358 | c = cmd_special_alloc(h); |
| 1359 | |
| 1360 | if (c == NULL) { /* trouble... */ |
| 1361 | dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n"); |
Stephen M. Cameron | e9ea04a | 2010-02-25 14:03:06 -0600 | [diff] [blame] | 1362 | return -ENOMEM; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1363 | } |
| 1364 | |
| 1365 | fill_cmd(c, HPSA_DEVICE_RESET_MSG, h, NULL, 0, 0, scsi3addr, TYPE_MSG); |
| 1366 | hpsa_scsi_do_simple_cmd_core(h, c); |
| 1367 | /* no unmap needed here because no data xfer. */ |
| 1368 | |
| 1369 | ei = c->err_info; |
| 1370 | if (ei->CommandStatus != 0) { |
| 1371 | hpsa_scsi_interpret_error(c); |
| 1372 | rc = -1; |
| 1373 | } |
| 1374 | cmd_special_free(h, c); |
| 1375 | return rc; |
| 1376 | } |
| 1377 | |
| 1378 | static void hpsa_get_raid_level(struct ctlr_info *h, |
| 1379 | unsigned char *scsi3addr, unsigned char *raid_level) |
| 1380 | { |
| 1381 | int rc; |
| 1382 | unsigned char *buf; |
| 1383 | |
| 1384 | *raid_level = RAID_UNKNOWN; |
| 1385 | buf = kzalloc(64, GFP_KERNEL); |
| 1386 | if (!buf) |
| 1387 | return; |
| 1388 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, 0xC1, buf, 64); |
| 1389 | if (rc == 0) |
| 1390 | *raid_level = buf[8]; |
| 1391 | if (*raid_level > RAID_UNKNOWN) |
| 1392 | *raid_level = RAID_UNKNOWN; |
| 1393 | kfree(buf); |
| 1394 | return; |
| 1395 | } |
| 1396 | |
| 1397 | /* Get the device id from inquiry page 0x83 */ |
| 1398 | static int hpsa_get_device_id(struct ctlr_info *h, unsigned char *scsi3addr, |
| 1399 | unsigned char *device_id, int buflen) |
| 1400 | { |
| 1401 | int rc; |
| 1402 | unsigned char *buf; |
| 1403 | |
| 1404 | if (buflen > 16) |
| 1405 | buflen = 16; |
| 1406 | buf = kzalloc(64, GFP_KERNEL); |
| 1407 | if (!buf) |
| 1408 | return -1; |
| 1409 | rc = hpsa_scsi_do_inquiry(h, scsi3addr, 0x83, buf, 64); |
| 1410 | if (rc == 0) |
| 1411 | memcpy(device_id, &buf[8], buflen); |
| 1412 | kfree(buf); |
| 1413 | return rc != 0; |
| 1414 | } |
| 1415 | |
| 1416 | static int hpsa_scsi_do_report_luns(struct ctlr_info *h, int logical, |
| 1417 | struct ReportLUNdata *buf, int bufsize, |
| 1418 | int extended_response) |
| 1419 | { |
| 1420 | int rc = IO_OK; |
| 1421 | struct CommandList *c; |
| 1422 | unsigned char scsi3addr[8]; |
| 1423 | struct ErrorInfo *ei; |
| 1424 | |
| 1425 | c = cmd_special_alloc(h); |
| 1426 | if (c == NULL) { /* trouble... */ |
| 1427 | dev_err(&h->pdev->dev, "cmd_special_alloc returned NULL!\n"); |
| 1428 | return -1; |
| 1429 | } |
Stephen M. Cameron | e89c0ae | 2010-02-04 08:42:04 -0600 | [diff] [blame] | 1430 | /* address the controller */ |
| 1431 | memset(scsi3addr, 0, sizeof(scsi3addr)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1432 | fill_cmd(c, logical ? HPSA_REPORT_LOG : HPSA_REPORT_PHYS, h, |
| 1433 | buf, bufsize, 0, scsi3addr, TYPE_CMD); |
| 1434 | if (extended_response) |
| 1435 | c->Request.CDB[1] = extended_response; |
| 1436 | hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_FROMDEVICE); |
| 1437 | ei = c->err_info; |
| 1438 | if (ei->CommandStatus != 0 && |
| 1439 | ei->CommandStatus != CMD_DATA_UNDERRUN) { |
| 1440 | hpsa_scsi_interpret_error(c); |
| 1441 | rc = -1; |
| 1442 | } |
| 1443 | cmd_special_free(h, c); |
| 1444 | return rc; |
| 1445 | } |
| 1446 | |
| 1447 | static inline int hpsa_scsi_do_report_phys_luns(struct ctlr_info *h, |
| 1448 | struct ReportLUNdata *buf, |
| 1449 | int bufsize, int extended_response) |
| 1450 | { |
| 1451 | return hpsa_scsi_do_report_luns(h, 0, buf, bufsize, extended_response); |
| 1452 | } |
| 1453 | |
| 1454 | static inline int hpsa_scsi_do_report_log_luns(struct ctlr_info *h, |
| 1455 | struct ReportLUNdata *buf, int bufsize) |
| 1456 | { |
| 1457 | return hpsa_scsi_do_report_luns(h, 1, buf, bufsize, 0); |
| 1458 | } |
| 1459 | |
| 1460 | static inline void hpsa_set_bus_target_lun(struct hpsa_scsi_dev_t *device, |
| 1461 | int bus, int target, int lun) |
| 1462 | { |
| 1463 | device->bus = bus; |
| 1464 | device->target = target; |
| 1465 | device->lun = lun; |
| 1466 | } |
| 1467 | |
| 1468 | static int hpsa_update_device_info(struct ctlr_info *h, |
| 1469 | unsigned char scsi3addr[], struct hpsa_scsi_dev_t *this_device) |
| 1470 | { |
| 1471 | #define OBDR_TAPE_INQ_SIZE 49 |
Stephen M. Cameron | ea6d3bc | 2010-02-04 08:42:09 -0600 | [diff] [blame] | 1472 | unsigned char *inq_buff; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1473 | |
Stephen M. Cameron | ea6d3bc | 2010-02-04 08:42:09 -0600 | [diff] [blame] | 1474 | inq_buff = kzalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1475 | if (!inq_buff) |
| 1476 | goto bail_out; |
| 1477 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1478 | /* Do an inquiry to the device to see what it is. */ |
| 1479 | if (hpsa_scsi_do_inquiry(h, scsi3addr, 0, inq_buff, |
| 1480 | (unsigned char) OBDR_TAPE_INQ_SIZE) != 0) { |
| 1481 | /* Inquiry failed (msg printed already) */ |
| 1482 | dev_err(&h->pdev->dev, |
| 1483 | "hpsa_update_device_info: inquiry failed\n"); |
| 1484 | goto bail_out; |
| 1485 | } |
| 1486 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1487 | this_device->devtype = (inq_buff[0] & 0x1f); |
| 1488 | memcpy(this_device->scsi3addr, scsi3addr, 8); |
| 1489 | memcpy(this_device->vendor, &inq_buff[8], |
| 1490 | sizeof(this_device->vendor)); |
| 1491 | memcpy(this_device->model, &inq_buff[16], |
| 1492 | sizeof(this_device->model)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1493 | memset(this_device->device_id, 0, |
| 1494 | sizeof(this_device->device_id)); |
| 1495 | hpsa_get_device_id(h, scsi3addr, this_device->device_id, |
| 1496 | sizeof(this_device->device_id)); |
| 1497 | |
| 1498 | if (this_device->devtype == TYPE_DISK && |
| 1499 | is_logical_dev_addr_mode(scsi3addr)) |
| 1500 | hpsa_get_raid_level(h, scsi3addr, &this_device->raid_level); |
| 1501 | else |
| 1502 | this_device->raid_level = RAID_UNKNOWN; |
| 1503 | |
| 1504 | kfree(inq_buff); |
| 1505 | return 0; |
| 1506 | |
| 1507 | bail_out: |
| 1508 | kfree(inq_buff); |
| 1509 | return 1; |
| 1510 | } |
| 1511 | |
| 1512 | static unsigned char *msa2xxx_model[] = { |
| 1513 | "MSA2012", |
| 1514 | "MSA2024", |
| 1515 | "MSA2312", |
| 1516 | "MSA2324", |
| 1517 | NULL, |
| 1518 | }; |
| 1519 | |
| 1520 | static int is_msa2xxx(struct ctlr_info *h, struct hpsa_scsi_dev_t *device) |
| 1521 | { |
| 1522 | int i; |
| 1523 | |
| 1524 | for (i = 0; msa2xxx_model[i]; i++) |
| 1525 | if (strncmp(device->model, msa2xxx_model[i], |
| 1526 | strlen(msa2xxx_model[i])) == 0) |
| 1527 | return 1; |
| 1528 | return 0; |
| 1529 | } |
| 1530 | |
| 1531 | /* Helper function to assign bus, target, lun mapping of devices. |
| 1532 | * Puts non-msa2xxx logical volumes on bus 0, msa2xxx logical |
| 1533 | * volumes on bus 1, physical devices on bus 2. and the hba on bus 3. |
| 1534 | * Logical drive target and lun are assigned at this time, but |
| 1535 | * physical device lun and target assignment are deferred (assigned |
| 1536 | * in hpsa_find_target_lun, called by hpsa_scsi_add_entry.) |
| 1537 | */ |
| 1538 | static void figure_bus_target_lun(struct ctlr_info *h, |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1539 | u8 *lunaddrbytes, int *bus, int *target, int *lun, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1540 | struct hpsa_scsi_dev_t *device) |
| 1541 | { |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1542 | u32 lunid; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1543 | |
| 1544 | if (is_logical_dev_addr_mode(lunaddrbytes)) { |
| 1545 | /* logical device */ |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1546 | if (unlikely(is_scsi_rev_5(h))) { |
| 1547 | /* p1210m, logical drives lun assignments |
| 1548 | * match SCSI REPORT LUNS data. |
| 1549 | */ |
| 1550 | lunid = le32_to_cpu(*((__le32 *) lunaddrbytes)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1551 | *bus = 0; |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1552 | *target = 0; |
| 1553 | *lun = (lunid & 0x3fff) + 1; |
| 1554 | } else { |
| 1555 | /* not p1210m... */ |
| 1556 | lunid = le32_to_cpu(*((__le32 *) lunaddrbytes)); |
| 1557 | if (is_msa2xxx(h, device)) { |
| 1558 | /* msa2xxx way, put logicals on bus 1 |
| 1559 | * and match target/lun numbers box |
| 1560 | * reports. |
| 1561 | */ |
| 1562 | *bus = 1; |
| 1563 | *target = (lunid >> 16) & 0x3fff; |
| 1564 | *lun = lunid & 0x00ff; |
| 1565 | } else { |
| 1566 | /* Traditional smart array way. */ |
| 1567 | *bus = 0; |
| 1568 | *lun = 0; |
| 1569 | *target = lunid & 0x3fff; |
| 1570 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1571 | } |
| 1572 | } else { |
| 1573 | /* physical device */ |
| 1574 | if (is_hba_lunid(lunaddrbytes)) |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1575 | if (unlikely(is_scsi_rev_5(h))) { |
| 1576 | *bus = 0; /* put p1210m ctlr at 0,0,0 */ |
| 1577 | *target = 0; |
| 1578 | *lun = 0; |
| 1579 | return; |
| 1580 | } else |
| 1581 | *bus = 3; /* traditional smartarray */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1582 | else |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1583 | *bus = 2; /* physical disk */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1584 | *target = -1; |
| 1585 | *lun = -1; /* we will fill these in later. */ |
| 1586 | } |
| 1587 | } |
| 1588 | |
| 1589 | /* |
| 1590 | * If there is no lun 0 on a target, linux won't find any devices. |
| 1591 | * For the MSA2xxx boxes, we have to manually detect the enclosure |
| 1592 | * which is at lun zero, as CCISS_REPORT_PHYSICAL_LUNS doesn't report |
| 1593 | * it for some reason. *tmpdevice is the target we're adding, |
| 1594 | * this_device is a pointer into the current element of currentsd[] |
| 1595 | * that we're building up in update_scsi_devices(), below. |
| 1596 | * lunzerobits is a bitmap that tracks which targets already have a |
| 1597 | * lun 0 assigned. |
| 1598 | * Returns 1 if an enclosure was added, 0 if not. |
| 1599 | */ |
| 1600 | static int add_msa2xxx_enclosure_device(struct ctlr_info *h, |
| 1601 | struct hpsa_scsi_dev_t *tmpdevice, |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1602 | struct hpsa_scsi_dev_t *this_device, u8 *lunaddrbytes, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1603 | int bus, int target, int lun, unsigned long lunzerobits[], |
| 1604 | int *nmsa2xxx_enclosures) |
| 1605 | { |
| 1606 | unsigned char scsi3addr[8]; |
| 1607 | |
| 1608 | if (test_bit(target, lunzerobits)) |
| 1609 | return 0; /* There is already a lun 0 on this target. */ |
| 1610 | |
| 1611 | if (!is_logical_dev_addr_mode(lunaddrbytes)) |
| 1612 | return 0; /* It's the logical targets that may lack lun 0. */ |
| 1613 | |
| 1614 | if (!is_msa2xxx(h, tmpdevice)) |
| 1615 | return 0; /* It's only the MSA2xxx that have this problem. */ |
| 1616 | |
| 1617 | if (lun == 0) /* if lun is 0, then obviously we have a lun 0. */ |
| 1618 | return 0; |
| 1619 | |
| 1620 | if (is_hba_lunid(scsi3addr)) |
| 1621 | return 0; /* Don't add the RAID controller here. */ |
| 1622 | |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1623 | if (is_scsi_rev_5(h)) |
| 1624 | return 0; /* p1210m doesn't need to do this. */ |
| 1625 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1626 | #define MAX_MSA2XXX_ENCLOSURES 32 |
| 1627 | if (*nmsa2xxx_enclosures >= MAX_MSA2XXX_ENCLOSURES) { |
| 1628 | dev_warn(&h->pdev->dev, "Maximum number of MSA2XXX " |
| 1629 | "enclosures exceeded. Check your hardware " |
| 1630 | "configuration."); |
| 1631 | return 0; |
| 1632 | } |
| 1633 | |
| 1634 | memset(scsi3addr, 0, 8); |
| 1635 | scsi3addr[3] = target; |
| 1636 | if (hpsa_update_device_info(h, scsi3addr, this_device)) |
| 1637 | return 0; |
| 1638 | (*nmsa2xxx_enclosures)++; |
| 1639 | hpsa_set_bus_target_lun(this_device, bus, target, 0); |
| 1640 | set_bit(target, lunzerobits); |
| 1641 | return 1; |
| 1642 | } |
| 1643 | |
| 1644 | /* |
| 1645 | * Do CISS_REPORT_PHYS and CISS_REPORT_LOG. Data is returned in physdev, |
| 1646 | * logdev. The number of luns in physdev and logdev are returned in |
| 1647 | * *nphysicals and *nlogicals, respectively. |
| 1648 | * Returns 0 on success, -1 otherwise. |
| 1649 | */ |
| 1650 | static int hpsa_gather_lun_info(struct ctlr_info *h, |
| 1651 | int reportlunsize, |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1652 | struct ReportLUNdata *physdev, u32 *nphysicals, |
| 1653 | struct ReportLUNdata *logdev, u32 *nlogicals) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1654 | { |
| 1655 | if (hpsa_scsi_do_report_phys_luns(h, physdev, reportlunsize, 0)) { |
| 1656 | dev_err(&h->pdev->dev, "report physical LUNs failed.\n"); |
| 1657 | return -1; |
| 1658 | } |
Stephen M. Cameron | 6df1e95 | 2010-02-04 08:42:19 -0600 | [diff] [blame] | 1659 | *nphysicals = be32_to_cpu(*((__be32 *)physdev->LUNListLength)) / 8; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1660 | if (*nphysicals > HPSA_MAX_PHYS_LUN) { |
| 1661 | dev_warn(&h->pdev->dev, "maximum physical LUNs (%d) exceeded." |
| 1662 | " %d LUNs ignored.\n", HPSA_MAX_PHYS_LUN, |
| 1663 | *nphysicals - HPSA_MAX_PHYS_LUN); |
| 1664 | *nphysicals = HPSA_MAX_PHYS_LUN; |
| 1665 | } |
| 1666 | if (hpsa_scsi_do_report_log_luns(h, logdev, reportlunsize)) { |
| 1667 | dev_err(&h->pdev->dev, "report logical LUNs failed.\n"); |
| 1668 | return -1; |
| 1669 | } |
Stephen M. Cameron | 6df1e95 | 2010-02-04 08:42:19 -0600 | [diff] [blame] | 1670 | *nlogicals = be32_to_cpu(*((__be32 *) logdev->LUNListLength)) / 8; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1671 | /* Reject Logicals in excess of our max capability. */ |
| 1672 | if (*nlogicals > HPSA_MAX_LUN) { |
| 1673 | dev_warn(&h->pdev->dev, |
| 1674 | "maximum logical LUNs (%d) exceeded. " |
| 1675 | "%d LUNs ignored.\n", HPSA_MAX_LUN, |
| 1676 | *nlogicals - HPSA_MAX_LUN); |
| 1677 | *nlogicals = HPSA_MAX_LUN; |
| 1678 | } |
| 1679 | if (*nlogicals + *nphysicals > HPSA_MAX_PHYS_LUN) { |
| 1680 | dev_warn(&h->pdev->dev, |
| 1681 | "maximum logical + physical LUNs (%d) exceeded. " |
| 1682 | "%d LUNs ignored.\n", HPSA_MAX_PHYS_LUN, |
| 1683 | *nphysicals + *nlogicals - HPSA_MAX_PHYS_LUN); |
| 1684 | *nlogicals = HPSA_MAX_PHYS_LUN - *nphysicals; |
| 1685 | } |
| 1686 | return 0; |
| 1687 | } |
| 1688 | |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1689 | u8 *figure_lunaddrbytes(struct ctlr_info *h, int raid_ctlr_position, int i, |
| 1690 | int nphysicals, int nlogicals, struct ReportLUNdata *physdev_list, |
| 1691 | struct ReportLUNdata *logdev_list) |
| 1692 | { |
| 1693 | /* Helper function, figure out where the LUN ID info is coming from |
| 1694 | * given index i, lists of physical and logical devices, where in |
| 1695 | * the list the raid controller is supposed to appear (first or last) |
| 1696 | */ |
| 1697 | |
| 1698 | int logicals_start = nphysicals + (raid_ctlr_position == 0); |
| 1699 | int last_device = nphysicals + nlogicals + (raid_ctlr_position == 0); |
| 1700 | |
| 1701 | if (i == raid_ctlr_position) |
| 1702 | return RAID_CTLR_LUNID; |
| 1703 | |
| 1704 | if (i < logicals_start) |
| 1705 | return &physdev_list->LUN[i - (raid_ctlr_position == 0)][0]; |
| 1706 | |
| 1707 | if (i < last_device) |
| 1708 | return &logdev_list->LUN[i - nphysicals - |
| 1709 | (raid_ctlr_position == 0)][0]; |
| 1710 | BUG(); |
| 1711 | return NULL; |
| 1712 | } |
| 1713 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1714 | static void hpsa_update_scsi_devices(struct ctlr_info *h, int hostno) |
| 1715 | { |
| 1716 | /* the idea here is we could get notified |
| 1717 | * that some devices have changed, so we do a report |
| 1718 | * physical luns and report logical luns cmd, and adjust |
| 1719 | * our list of devices accordingly. |
| 1720 | * |
| 1721 | * The scsi3addr's of devices won't change so long as the |
| 1722 | * adapter is not reset. That means we can rescan and |
| 1723 | * tell which devices we already know about, vs. new |
| 1724 | * devices, vs. disappearing devices. |
| 1725 | */ |
| 1726 | struct ReportLUNdata *physdev_list = NULL; |
| 1727 | struct ReportLUNdata *logdev_list = NULL; |
| 1728 | unsigned char *inq_buff = NULL; |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1729 | u32 nphysicals = 0; |
| 1730 | u32 nlogicals = 0; |
| 1731 | u32 ndev_allocated = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1732 | struct hpsa_scsi_dev_t **currentsd, *this_device, *tmpdevice; |
| 1733 | int ncurrent = 0; |
| 1734 | int reportlunsize = sizeof(*physdev_list) + HPSA_MAX_PHYS_LUN * 8; |
| 1735 | int i, nmsa2xxx_enclosures, ndevs_to_allocate; |
| 1736 | int bus, target, lun; |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1737 | int raid_ctlr_position; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1738 | DECLARE_BITMAP(lunzerobits, HPSA_MAX_TARGETS_PER_CTLR); |
| 1739 | |
| 1740 | currentsd = kzalloc(sizeof(*currentsd) * HPSA_MAX_SCSI_DEVS_PER_HBA, |
| 1741 | GFP_KERNEL); |
| 1742 | physdev_list = kzalloc(reportlunsize, GFP_KERNEL); |
| 1743 | logdev_list = kzalloc(reportlunsize, GFP_KERNEL); |
| 1744 | inq_buff = kmalloc(OBDR_TAPE_INQ_SIZE, GFP_KERNEL); |
| 1745 | tmpdevice = kzalloc(sizeof(*tmpdevice), GFP_KERNEL); |
| 1746 | |
| 1747 | if (!currentsd || !physdev_list || !logdev_list || |
| 1748 | !inq_buff || !tmpdevice) { |
| 1749 | dev_err(&h->pdev->dev, "out of memory\n"); |
| 1750 | goto out; |
| 1751 | } |
| 1752 | memset(lunzerobits, 0, sizeof(lunzerobits)); |
| 1753 | |
| 1754 | if (hpsa_gather_lun_info(h, reportlunsize, physdev_list, &nphysicals, |
| 1755 | logdev_list, &nlogicals)) |
| 1756 | goto out; |
| 1757 | |
| 1758 | /* We might see up to 32 MSA2xxx enclosures, actually 8 of them |
| 1759 | * but each of them 4 times through different paths. The plus 1 |
| 1760 | * is for the RAID controller. |
| 1761 | */ |
| 1762 | ndevs_to_allocate = nphysicals + nlogicals + MAX_MSA2XXX_ENCLOSURES + 1; |
| 1763 | |
| 1764 | /* Allocate the per device structures */ |
| 1765 | for (i = 0; i < ndevs_to_allocate; i++) { |
| 1766 | currentsd[i] = kzalloc(sizeof(*currentsd[i]), GFP_KERNEL); |
| 1767 | if (!currentsd[i]) { |
| 1768 | dev_warn(&h->pdev->dev, "out of memory at %s:%d\n", |
| 1769 | __FILE__, __LINE__); |
| 1770 | goto out; |
| 1771 | } |
| 1772 | ndev_allocated++; |
| 1773 | } |
| 1774 | |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1775 | if (unlikely(is_scsi_rev_5(h))) |
| 1776 | raid_ctlr_position = 0; |
| 1777 | else |
| 1778 | raid_ctlr_position = nphysicals + nlogicals; |
| 1779 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1780 | /* adjust our table of devices */ |
| 1781 | nmsa2xxx_enclosures = 0; |
| 1782 | for (i = 0; i < nphysicals + nlogicals + 1; i++) { |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1783 | u8 *lunaddrbytes; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1784 | |
| 1785 | /* Figure out where the LUN ID info is coming from */ |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1786 | lunaddrbytes = figure_lunaddrbytes(h, raid_ctlr_position, |
| 1787 | i, nphysicals, nlogicals, physdev_list, logdev_list); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1788 | /* skip masked physical devices. */ |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 1789 | if (lunaddrbytes[3] & 0xC0 && |
| 1790 | i < nphysicals + (raid_ctlr_position == 0)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1791 | continue; |
| 1792 | |
| 1793 | /* Get device type, vendor, model, device id */ |
| 1794 | if (hpsa_update_device_info(h, lunaddrbytes, tmpdevice)) |
| 1795 | continue; /* skip it if we can't talk to it. */ |
| 1796 | figure_bus_target_lun(h, lunaddrbytes, &bus, &target, &lun, |
| 1797 | tmpdevice); |
| 1798 | this_device = currentsd[ncurrent]; |
| 1799 | |
| 1800 | /* |
| 1801 | * For the msa2xxx boxes, we have to insert a LUN 0 which |
| 1802 | * doesn't show up in CCISS_REPORT_PHYSICAL data, but there |
| 1803 | * is nonetheless an enclosure device there. We have to |
| 1804 | * present that otherwise linux won't find anything if |
| 1805 | * there is no lun 0. |
| 1806 | */ |
| 1807 | if (add_msa2xxx_enclosure_device(h, tmpdevice, this_device, |
| 1808 | lunaddrbytes, bus, target, lun, lunzerobits, |
| 1809 | &nmsa2xxx_enclosures)) { |
| 1810 | ncurrent++; |
| 1811 | this_device = currentsd[ncurrent]; |
| 1812 | } |
| 1813 | |
| 1814 | *this_device = *tmpdevice; |
| 1815 | hpsa_set_bus_target_lun(this_device, bus, target, lun); |
| 1816 | |
| 1817 | switch (this_device->devtype) { |
| 1818 | case TYPE_ROM: { |
| 1819 | /* We don't *really* support actual CD-ROM devices, |
| 1820 | * just "One Button Disaster Recovery" tape drive |
| 1821 | * which temporarily pretends to be a CD-ROM drive. |
| 1822 | * So we check that the device is really an OBDR tape |
| 1823 | * device by checking for "$DR-10" in bytes 43-48 of |
| 1824 | * the inquiry data. |
| 1825 | */ |
| 1826 | char obdr_sig[7]; |
| 1827 | #define OBDR_TAPE_SIG "$DR-10" |
| 1828 | strncpy(obdr_sig, &inq_buff[43], 6); |
| 1829 | obdr_sig[6] = '\0'; |
| 1830 | if (strncmp(obdr_sig, OBDR_TAPE_SIG, 6) != 0) |
| 1831 | /* Not OBDR device, ignore it. */ |
| 1832 | break; |
| 1833 | } |
| 1834 | ncurrent++; |
| 1835 | break; |
| 1836 | case TYPE_DISK: |
| 1837 | if (i < nphysicals) |
| 1838 | break; |
| 1839 | ncurrent++; |
| 1840 | break; |
| 1841 | case TYPE_TAPE: |
| 1842 | case TYPE_MEDIUM_CHANGER: |
| 1843 | ncurrent++; |
| 1844 | break; |
| 1845 | case TYPE_RAID: |
| 1846 | /* Only present the Smartarray HBA as a RAID controller. |
| 1847 | * If it's a RAID controller other than the HBA itself |
| 1848 | * (an external RAID controller, MSA500 or similar) |
| 1849 | * don't present it. |
| 1850 | */ |
| 1851 | if (!is_hba_lunid(lunaddrbytes)) |
| 1852 | break; |
| 1853 | ncurrent++; |
| 1854 | break; |
| 1855 | default: |
| 1856 | break; |
| 1857 | } |
| 1858 | if (ncurrent >= HPSA_MAX_SCSI_DEVS_PER_HBA) |
| 1859 | break; |
| 1860 | } |
| 1861 | adjust_hpsa_scsi_table(h, hostno, currentsd, ncurrent); |
| 1862 | out: |
| 1863 | kfree(tmpdevice); |
| 1864 | for (i = 0; i < ndev_allocated; i++) |
| 1865 | kfree(currentsd[i]); |
| 1866 | kfree(currentsd); |
| 1867 | kfree(inq_buff); |
| 1868 | kfree(physdev_list); |
| 1869 | kfree(logdev_list); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1870 | } |
| 1871 | |
| 1872 | /* hpsa_scatter_gather takes a struct scsi_cmnd, (cmd), and does the pci |
| 1873 | * dma mapping and fills in the scatter gather entries of the |
| 1874 | * hpsa command, cp. |
| 1875 | */ |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1876 | static int hpsa_scatter_gather(struct ctlr_info *h, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1877 | struct CommandList *cp, |
| 1878 | struct scsi_cmnd *cmd) |
| 1879 | { |
| 1880 | unsigned int len; |
| 1881 | struct scatterlist *sg; |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1882 | u64 addr64; |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1883 | int use_sg, i, sg_index, chained; |
| 1884 | struct SGDescriptor *curr_sg; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1885 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1886 | BUG_ON(scsi_sg_count(cmd) > h->maxsgentries); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1887 | |
| 1888 | use_sg = scsi_dma_map(cmd); |
| 1889 | if (use_sg < 0) |
| 1890 | return use_sg; |
| 1891 | |
| 1892 | if (!use_sg) |
| 1893 | goto sglist_finished; |
| 1894 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1895 | curr_sg = cp->SG; |
| 1896 | chained = 0; |
| 1897 | sg_index = 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1898 | scsi_for_each_sg(cmd, sg, use_sg, i) { |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1899 | if (i == h->max_cmd_sg_entries - 1 && |
| 1900 | use_sg > h->max_cmd_sg_entries) { |
| 1901 | chained = 1; |
| 1902 | curr_sg = h->cmd_sg_list[cp->cmdindex]; |
| 1903 | sg_index = 0; |
| 1904 | } |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1905 | addr64 = (u64) sg_dma_address(sg); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1906 | len = sg_dma_len(sg); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 1907 | curr_sg->Addr.lower = (u32) (addr64 & 0x0FFFFFFFFULL); |
| 1908 | curr_sg->Addr.upper = (u32) ((addr64 >> 32) & 0x0FFFFFFFFULL); |
| 1909 | curr_sg->Len = len; |
| 1910 | curr_sg->Ext = 0; /* we are not chaining */ |
| 1911 | curr_sg++; |
| 1912 | } |
| 1913 | |
| 1914 | if (use_sg + chained > h->maxSG) |
| 1915 | h->maxSG = use_sg + chained; |
| 1916 | |
| 1917 | if (chained) { |
| 1918 | cp->Header.SGList = h->max_cmd_sg_entries; |
| 1919 | cp->Header.SGTotal = (u16) (use_sg + 1); |
| 1920 | hpsa_map_sg_chain_block(h, cp); |
| 1921 | return 0; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1922 | } |
| 1923 | |
| 1924 | sglist_finished: |
| 1925 | |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 1926 | cp->Header.SGList = (u8) use_sg; /* no. SGs contig in this cmd */ |
| 1927 | cp->Header.SGTotal = (u16) use_sg; /* total sgs in this cmd list */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1928 | return 0; |
| 1929 | } |
| 1930 | |
| 1931 | |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 1932 | static int hpsa_scsi_queue_command_lck(struct scsi_cmnd *cmd, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1933 | void (*done)(struct scsi_cmnd *)) |
| 1934 | { |
| 1935 | struct ctlr_info *h; |
| 1936 | struct hpsa_scsi_dev_t *dev; |
| 1937 | unsigned char scsi3addr[8]; |
| 1938 | struct CommandList *c; |
| 1939 | unsigned long flags; |
| 1940 | |
| 1941 | /* Get the ptr to our adapter structure out of cmd->host. */ |
| 1942 | h = sdev_to_hba(cmd->device); |
| 1943 | dev = cmd->device->hostdata; |
| 1944 | if (!dev) { |
| 1945 | cmd->result = DID_NO_CONNECT << 16; |
| 1946 | done(cmd); |
| 1947 | return 0; |
| 1948 | } |
| 1949 | memcpy(scsi3addr, dev->scsi3addr, sizeof(scsi3addr)); |
| 1950 | |
| 1951 | /* Need a lock as this is being allocated from the pool */ |
| 1952 | spin_lock_irqsave(&h->lock, flags); |
| 1953 | c = cmd_alloc(h); |
| 1954 | spin_unlock_irqrestore(&h->lock, flags); |
| 1955 | if (c == NULL) { /* trouble... */ |
| 1956 | dev_err(&h->pdev->dev, "cmd_alloc returned NULL!\n"); |
| 1957 | return SCSI_MLQUEUE_HOST_BUSY; |
| 1958 | } |
| 1959 | |
| 1960 | /* Fill in the command list header */ |
| 1961 | |
| 1962 | cmd->scsi_done = done; /* save this for use by completion code */ |
| 1963 | |
| 1964 | /* save c in case we have to abort it */ |
| 1965 | cmd->host_scribble = (unsigned char *) c; |
| 1966 | |
| 1967 | c->cmd_type = CMD_SCSI; |
| 1968 | c->scsi_cmd = cmd; |
| 1969 | c->Header.ReplyQueue = 0; /* unused in simple mode */ |
| 1970 | memcpy(&c->Header.LUN.LunAddrBytes[0], &scsi3addr[0], 8); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 1971 | c->Header.Tag.lower = (c->cmdindex << DIRECT_LOOKUP_SHIFT); |
| 1972 | c->Header.Tag.lower |= DIRECT_LOOKUP_BIT; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 1973 | |
| 1974 | /* Fill in the request block... */ |
| 1975 | |
| 1976 | c->Request.Timeout = 0; |
| 1977 | memset(c->Request.CDB, 0, sizeof(c->Request.CDB)); |
| 1978 | BUG_ON(cmd->cmd_len > sizeof(c->Request.CDB)); |
| 1979 | c->Request.CDBLen = cmd->cmd_len; |
| 1980 | memcpy(c->Request.CDB, cmd->cmnd, cmd->cmd_len); |
| 1981 | c->Request.Type.Type = TYPE_CMD; |
| 1982 | c->Request.Type.Attribute = ATTR_SIMPLE; |
| 1983 | switch (cmd->sc_data_direction) { |
| 1984 | case DMA_TO_DEVICE: |
| 1985 | c->Request.Type.Direction = XFER_WRITE; |
| 1986 | break; |
| 1987 | case DMA_FROM_DEVICE: |
| 1988 | c->Request.Type.Direction = XFER_READ; |
| 1989 | break; |
| 1990 | case DMA_NONE: |
| 1991 | c->Request.Type.Direction = XFER_NONE; |
| 1992 | break; |
| 1993 | case DMA_BIDIRECTIONAL: |
| 1994 | /* This can happen if a buggy application does a scsi passthru |
| 1995 | * and sets both inlen and outlen to non-zero. ( see |
| 1996 | * ../scsi/scsi_ioctl.c:scsi_ioctl_send_command() ) |
| 1997 | */ |
| 1998 | |
| 1999 | c->Request.Type.Direction = XFER_RSVD; |
| 2000 | /* This is technically wrong, and hpsa controllers should |
| 2001 | * reject it with CMD_INVALID, which is the most correct |
| 2002 | * response, but non-fibre backends appear to let it |
| 2003 | * slide by, and give the same results as if this field |
| 2004 | * were set correctly. Either way is acceptable for |
| 2005 | * our purposes here. |
| 2006 | */ |
| 2007 | |
| 2008 | break; |
| 2009 | |
| 2010 | default: |
| 2011 | dev_err(&h->pdev->dev, "unknown data direction: %d\n", |
| 2012 | cmd->sc_data_direction); |
| 2013 | BUG(); |
| 2014 | break; |
| 2015 | } |
| 2016 | |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 2017 | if (hpsa_scatter_gather(h, c, cmd) < 0) { /* Fill SG list */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2018 | cmd_free(h, c); |
| 2019 | return SCSI_MLQUEUE_HOST_BUSY; |
| 2020 | } |
| 2021 | enqueue_cmd_and_start_io(h, c); |
| 2022 | /* the cmd'll come back via intr handler in complete_scsi_command() */ |
| 2023 | return 0; |
| 2024 | } |
| 2025 | |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 2026 | static DEF_SCSI_QCMD(hpsa_scsi_queue_command) |
| 2027 | |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 2028 | static void hpsa_scan_start(struct Scsi_Host *sh) |
| 2029 | { |
| 2030 | struct ctlr_info *h = shost_to_hba(sh); |
| 2031 | unsigned long flags; |
| 2032 | |
| 2033 | /* wait until any scan already in progress is finished. */ |
| 2034 | while (1) { |
| 2035 | spin_lock_irqsave(&h->scan_lock, flags); |
| 2036 | if (h->scan_finished) |
| 2037 | break; |
| 2038 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 2039 | wait_event(h->scan_wait_queue, h->scan_finished); |
| 2040 | /* Note: We don't need to worry about a race between this |
| 2041 | * thread and driver unload because the midlayer will |
| 2042 | * have incremented the reference count, so unload won't |
| 2043 | * happen if we're in here. |
| 2044 | */ |
| 2045 | } |
| 2046 | h->scan_finished = 0; /* mark scan as in progress */ |
| 2047 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 2048 | |
| 2049 | hpsa_update_scsi_devices(h, h->scsi_host->host_no); |
| 2050 | |
| 2051 | spin_lock_irqsave(&h->scan_lock, flags); |
| 2052 | h->scan_finished = 1; /* mark scan as finished. */ |
| 2053 | wake_up_all(&h->scan_wait_queue); |
| 2054 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 2055 | } |
| 2056 | |
| 2057 | static int hpsa_scan_finished(struct Scsi_Host *sh, |
| 2058 | unsigned long elapsed_time) |
| 2059 | { |
| 2060 | struct ctlr_info *h = shost_to_hba(sh); |
| 2061 | unsigned long flags; |
| 2062 | int finished; |
| 2063 | |
| 2064 | spin_lock_irqsave(&h->scan_lock, flags); |
| 2065 | finished = h->scan_finished; |
| 2066 | spin_unlock_irqrestore(&h->scan_lock, flags); |
| 2067 | return finished; |
| 2068 | } |
| 2069 | |
Stephen M. Cameron | 667e23d | 2010-02-25 14:02:51 -0600 | [diff] [blame] | 2070 | static int hpsa_change_queue_depth(struct scsi_device *sdev, |
| 2071 | int qdepth, int reason) |
| 2072 | { |
| 2073 | struct ctlr_info *h = sdev_to_hba(sdev); |
| 2074 | |
| 2075 | if (reason != SCSI_QDEPTH_DEFAULT) |
| 2076 | return -ENOTSUPP; |
| 2077 | |
| 2078 | if (qdepth < 1) |
| 2079 | qdepth = 1; |
| 2080 | else |
| 2081 | if (qdepth > h->nr_cmds) |
| 2082 | qdepth = h->nr_cmds; |
| 2083 | scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth); |
| 2084 | return sdev->queue_depth; |
| 2085 | } |
| 2086 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2087 | static void hpsa_unregister_scsi(struct ctlr_info *h) |
| 2088 | { |
| 2089 | /* we are being forcibly unloaded, and may not refuse. */ |
| 2090 | scsi_remove_host(h->scsi_host); |
| 2091 | scsi_host_put(h->scsi_host); |
| 2092 | h->scsi_host = NULL; |
| 2093 | } |
| 2094 | |
| 2095 | static int hpsa_register_scsi(struct ctlr_info *h) |
| 2096 | { |
| 2097 | int rc; |
| 2098 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2099 | rc = hpsa_scsi_detect(h); |
| 2100 | if (rc != 0) |
| 2101 | dev_err(&h->pdev->dev, "hpsa_register_scsi: failed" |
| 2102 | " hpsa_scsi_detect(), rc is %d\n", rc); |
| 2103 | return rc; |
| 2104 | } |
| 2105 | |
| 2106 | static int wait_for_device_to_become_ready(struct ctlr_info *h, |
| 2107 | unsigned char lunaddr[]) |
| 2108 | { |
| 2109 | int rc = 0; |
| 2110 | int count = 0; |
| 2111 | int waittime = 1; /* seconds */ |
| 2112 | struct CommandList *c; |
| 2113 | |
| 2114 | c = cmd_special_alloc(h); |
| 2115 | if (!c) { |
| 2116 | dev_warn(&h->pdev->dev, "out of memory in " |
| 2117 | "wait_for_device_to_become_ready.\n"); |
| 2118 | return IO_ERROR; |
| 2119 | } |
| 2120 | |
| 2121 | /* Send test unit ready until device ready, or give up. */ |
| 2122 | while (count < HPSA_TUR_RETRY_LIMIT) { |
| 2123 | |
| 2124 | /* Wait for a bit. do this first, because if we send |
| 2125 | * the TUR right away, the reset will just abort it. |
| 2126 | */ |
| 2127 | msleep(1000 * waittime); |
| 2128 | count++; |
| 2129 | |
| 2130 | /* Increase wait time with each try, up to a point. */ |
| 2131 | if (waittime < HPSA_MAX_WAIT_INTERVAL_SECS) |
| 2132 | waittime = waittime * 2; |
| 2133 | |
| 2134 | /* Send the Test Unit Ready */ |
| 2135 | fill_cmd(c, TEST_UNIT_READY, h, NULL, 0, 0, lunaddr, TYPE_CMD); |
| 2136 | hpsa_scsi_do_simple_cmd_core(h, c); |
| 2137 | /* no unmap needed here because no data xfer. */ |
| 2138 | |
| 2139 | if (c->err_info->CommandStatus == CMD_SUCCESS) |
| 2140 | break; |
| 2141 | |
| 2142 | if (c->err_info->CommandStatus == CMD_TARGET_STATUS && |
| 2143 | c->err_info->ScsiStatus == SAM_STAT_CHECK_CONDITION && |
| 2144 | (c->err_info->SenseInfo[2] == NO_SENSE || |
| 2145 | c->err_info->SenseInfo[2] == UNIT_ATTENTION)) |
| 2146 | break; |
| 2147 | |
| 2148 | dev_warn(&h->pdev->dev, "waiting %d secs " |
| 2149 | "for device to become ready.\n", waittime); |
| 2150 | rc = 1; /* device not ready. */ |
| 2151 | } |
| 2152 | |
| 2153 | if (rc) |
| 2154 | dev_warn(&h->pdev->dev, "giving up on device.\n"); |
| 2155 | else |
| 2156 | dev_warn(&h->pdev->dev, "device is ready.\n"); |
| 2157 | |
| 2158 | cmd_special_free(h, c); |
| 2159 | return rc; |
| 2160 | } |
| 2161 | |
| 2162 | /* Need at least one of these error handlers to keep ../scsi/hosts.c from |
| 2163 | * complaining. Doing a host- or bus-reset can't do anything good here. |
| 2164 | */ |
| 2165 | static int hpsa_eh_device_reset_handler(struct scsi_cmnd *scsicmd) |
| 2166 | { |
| 2167 | int rc; |
| 2168 | struct ctlr_info *h; |
| 2169 | struct hpsa_scsi_dev_t *dev; |
| 2170 | |
| 2171 | /* find the controller to which the command to be aborted was sent */ |
| 2172 | h = sdev_to_hba(scsicmd->device); |
| 2173 | if (h == NULL) /* paranoia */ |
| 2174 | return FAILED; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2175 | dev = scsicmd->device->hostdata; |
| 2176 | if (!dev) { |
| 2177 | dev_err(&h->pdev->dev, "hpsa_eh_device_reset_handler: " |
| 2178 | "device lookup failed.\n"); |
| 2179 | return FAILED; |
| 2180 | } |
Stephen M. Cameron | d416b0c | 2010-02-04 08:43:21 -0600 | [diff] [blame] | 2181 | dev_warn(&h->pdev->dev, "resetting device %d:%d:%d:%d\n", |
| 2182 | h->scsi_host->host_no, dev->bus, dev->target, dev->lun); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2183 | /* send a reset to the SCSI LUN which the command was sent to */ |
| 2184 | rc = hpsa_send_reset(h, dev->scsi3addr); |
| 2185 | if (rc == 0 && wait_for_device_to_become_ready(h, dev->scsi3addr) == 0) |
| 2186 | return SUCCESS; |
| 2187 | |
| 2188 | dev_warn(&h->pdev->dev, "resetting device failed.\n"); |
| 2189 | return FAILED; |
| 2190 | } |
| 2191 | |
| 2192 | /* |
| 2193 | * For operations that cannot sleep, a command block is allocated at init, |
| 2194 | * and managed by cmd_alloc() and cmd_free() using a simple bitmap to track |
| 2195 | * which ones are free or in use. Lock must be held when calling this. |
| 2196 | * cmd_free() is the complement. |
| 2197 | */ |
| 2198 | static struct CommandList *cmd_alloc(struct ctlr_info *h) |
| 2199 | { |
| 2200 | struct CommandList *c; |
| 2201 | int i; |
| 2202 | union u64bit temp64; |
| 2203 | dma_addr_t cmd_dma_handle, err_dma_handle; |
| 2204 | |
| 2205 | do { |
| 2206 | i = find_first_zero_bit(h->cmd_pool_bits, h->nr_cmds); |
| 2207 | if (i == h->nr_cmds) |
| 2208 | return NULL; |
| 2209 | } while (test_and_set_bit |
| 2210 | (i & (BITS_PER_LONG - 1), |
| 2211 | h->cmd_pool_bits + (i / BITS_PER_LONG)) != 0); |
| 2212 | c = h->cmd_pool + i; |
| 2213 | memset(c, 0, sizeof(*c)); |
| 2214 | cmd_dma_handle = h->cmd_pool_dhandle |
| 2215 | + i * sizeof(*c); |
| 2216 | c->err_info = h->errinfo_pool + i; |
| 2217 | memset(c->err_info, 0, sizeof(*c->err_info)); |
| 2218 | err_dma_handle = h->errinfo_pool_dhandle |
| 2219 | + i * sizeof(*c->err_info); |
| 2220 | h->nr_allocs++; |
| 2221 | |
| 2222 | c->cmdindex = i; |
| 2223 | |
| 2224 | INIT_HLIST_NODE(&c->list); |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 2225 | c->busaddr = (u32) cmd_dma_handle; |
| 2226 | temp64.val = (u64) err_dma_handle; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2227 | c->ErrDesc.Addr.lower = temp64.val32.lower; |
| 2228 | c->ErrDesc.Addr.upper = temp64.val32.upper; |
| 2229 | c->ErrDesc.Len = sizeof(*c->err_info); |
| 2230 | |
| 2231 | c->h = h; |
| 2232 | return c; |
| 2233 | } |
| 2234 | |
| 2235 | /* For operations that can wait for kmalloc to possibly sleep, |
| 2236 | * this routine can be called. Lock need not be held to call |
| 2237 | * cmd_special_alloc. cmd_special_free() is the complement. |
| 2238 | */ |
| 2239 | static struct CommandList *cmd_special_alloc(struct ctlr_info *h) |
| 2240 | { |
| 2241 | struct CommandList *c; |
| 2242 | union u64bit temp64; |
| 2243 | dma_addr_t cmd_dma_handle, err_dma_handle; |
| 2244 | |
| 2245 | c = pci_alloc_consistent(h->pdev, sizeof(*c), &cmd_dma_handle); |
| 2246 | if (c == NULL) |
| 2247 | return NULL; |
| 2248 | memset(c, 0, sizeof(*c)); |
| 2249 | |
| 2250 | c->cmdindex = -1; |
| 2251 | |
| 2252 | c->err_info = pci_alloc_consistent(h->pdev, sizeof(*c->err_info), |
| 2253 | &err_dma_handle); |
| 2254 | |
| 2255 | if (c->err_info == NULL) { |
| 2256 | pci_free_consistent(h->pdev, |
| 2257 | sizeof(*c), c, cmd_dma_handle); |
| 2258 | return NULL; |
| 2259 | } |
| 2260 | memset(c->err_info, 0, sizeof(*c->err_info)); |
| 2261 | |
| 2262 | INIT_HLIST_NODE(&c->list); |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 2263 | c->busaddr = (u32) cmd_dma_handle; |
| 2264 | temp64.val = (u64) err_dma_handle; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2265 | c->ErrDesc.Addr.lower = temp64.val32.lower; |
| 2266 | c->ErrDesc.Addr.upper = temp64.val32.upper; |
| 2267 | c->ErrDesc.Len = sizeof(*c->err_info); |
| 2268 | |
| 2269 | c->h = h; |
| 2270 | return c; |
| 2271 | } |
| 2272 | |
| 2273 | static void cmd_free(struct ctlr_info *h, struct CommandList *c) |
| 2274 | { |
| 2275 | int i; |
| 2276 | |
| 2277 | i = c - h->cmd_pool; |
| 2278 | clear_bit(i & (BITS_PER_LONG - 1), |
| 2279 | h->cmd_pool_bits + (i / BITS_PER_LONG)); |
| 2280 | h->nr_frees++; |
| 2281 | } |
| 2282 | |
| 2283 | static void cmd_special_free(struct ctlr_info *h, struct CommandList *c) |
| 2284 | { |
| 2285 | union u64bit temp64; |
| 2286 | |
| 2287 | temp64.val32.lower = c->ErrDesc.Addr.lower; |
| 2288 | temp64.val32.upper = c->ErrDesc.Addr.upper; |
| 2289 | pci_free_consistent(h->pdev, sizeof(*c->err_info), |
| 2290 | c->err_info, (dma_addr_t) temp64.val); |
| 2291 | pci_free_consistent(h->pdev, sizeof(*c), |
Stephen M. Cameron | d896f3f | 2011-01-06 14:47:53 -0600 | [diff] [blame] | 2292 | c, (dma_addr_t) (c->busaddr & DIRECT_LOOKUP_MASK)); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2293 | } |
| 2294 | |
| 2295 | #ifdef CONFIG_COMPAT |
| 2296 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2297 | static int hpsa_ioctl32_passthru(struct scsi_device *dev, int cmd, void *arg) |
| 2298 | { |
| 2299 | IOCTL32_Command_struct __user *arg32 = |
| 2300 | (IOCTL32_Command_struct __user *) arg; |
| 2301 | IOCTL_Command_struct arg64; |
| 2302 | IOCTL_Command_struct __user *p = compat_alloc_user_space(sizeof(arg64)); |
| 2303 | int err; |
| 2304 | u32 cp; |
| 2305 | |
| 2306 | err = 0; |
| 2307 | err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info, |
| 2308 | sizeof(arg64.LUN_info)); |
| 2309 | err |= copy_from_user(&arg64.Request, &arg32->Request, |
| 2310 | sizeof(arg64.Request)); |
| 2311 | err |= copy_from_user(&arg64.error_info, &arg32->error_info, |
| 2312 | sizeof(arg64.error_info)); |
| 2313 | err |= get_user(arg64.buf_size, &arg32->buf_size); |
| 2314 | err |= get_user(cp, &arg32->buf); |
| 2315 | arg64.buf = compat_ptr(cp); |
| 2316 | err |= copy_to_user(p, &arg64, sizeof(arg64)); |
| 2317 | |
| 2318 | if (err) |
| 2319 | return -EFAULT; |
| 2320 | |
Stephen M. Cameron | e39eeae | 2010-02-04 08:43:46 -0600 | [diff] [blame] | 2321 | err = hpsa_ioctl(dev, CCISS_PASSTHRU, (void *)p); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2322 | if (err) |
| 2323 | return err; |
| 2324 | err |= copy_in_user(&arg32->error_info, &p->error_info, |
| 2325 | sizeof(arg32->error_info)); |
| 2326 | if (err) |
| 2327 | return -EFAULT; |
| 2328 | return err; |
| 2329 | } |
| 2330 | |
| 2331 | static int hpsa_ioctl32_big_passthru(struct scsi_device *dev, |
| 2332 | int cmd, void *arg) |
| 2333 | { |
| 2334 | BIG_IOCTL32_Command_struct __user *arg32 = |
| 2335 | (BIG_IOCTL32_Command_struct __user *) arg; |
| 2336 | BIG_IOCTL_Command_struct arg64; |
| 2337 | BIG_IOCTL_Command_struct __user *p = |
| 2338 | compat_alloc_user_space(sizeof(arg64)); |
| 2339 | int err; |
| 2340 | u32 cp; |
| 2341 | |
| 2342 | err = 0; |
| 2343 | err |= copy_from_user(&arg64.LUN_info, &arg32->LUN_info, |
| 2344 | sizeof(arg64.LUN_info)); |
| 2345 | err |= copy_from_user(&arg64.Request, &arg32->Request, |
| 2346 | sizeof(arg64.Request)); |
| 2347 | err |= copy_from_user(&arg64.error_info, &arg32->error_info, |
| 2348 | sizeof(arg64.error_info)); |
| 2349 | err |= get_user(arg64.buf_size, &arg32->buf_size); |
| 2350 | err |= get_user(arg64.malloc_size, &arg32->malloc_size); |
| 2351 | err |= get_user(cp, &arg32->buf); |
| 2352 | arg64.buf = compat_ptr(cp); |
| 2353 | err |= copy_to_user(p, &arg64, sizeof(arg64)); |
| 2354 | |
| 2355 | if (err) |
| 2356 | return -EFAULT; |
| 2357 | |
Stephen M. Cameron | e39eeae | 2010-02-04 08:43:46 -0600 | [diff] [blame] | 2358 | err = hpsa_ioctl(dev, CCISS_BIG_PASSTHRU, (void *)p); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2359 | if (err) |
| 2360 | return err; |
| 2361 | err |= copy_in_user(&arg32->error_info, &p->error_info, |
| 2362 | sizeof(arg32->error_info)); |
| 2363 | if (err) |
| 2364 | return -EFAULT; |
| 2365 | return err; |
| 2366 | } |
Stephen M. Cameron | 71fe75a | 2010-02-04 08:43:51 -0600 | [diff] [blame] | 2367 | |
| 2368 | static int hpsa_compat_ioctl(struct scsi_device *dev, int cmd, void *arg) |
| 2369 | { |
| 2370 | switch (cmd) { |
| 2371 | case CCISS_GETPCIINFO: |
| 2372 | case CCISS_GETINTINFO: |
| 2373 | case CCISS_SETINTINFO: |
| 2374 | case CCISS_GETNODENAME: |
| 2375 | case CCISS_SETNODENAME: |
| 2376 | case CCISS_GETHEARTBEAT: |
| 2377 | case CCISS_GETBUSTYPES: |
| 2378 | case CCISS_GETFIRMVER: |
| 2379 | case CCISS_GETDRIVVER: |
| 2380 | case CCISS_REVALIDVOLS: |
| 2381 | case CCISS_DEREGDISK: |
| 2382 | case CCISS_REGNEWDISK: |
| 2383 | case CCISS_REGNEWD: |
| 2384 | case CCISS_RESCANDISK: |
| 2385 | case CCISS_GETLUNINFO: |
| 2386 | return hpsa_ioctl(dev, cmd, arg); |
| 2387 | |
| 2388 | case CCISS_PASSTHRU32: |
| 2389 | return hpsa_ioctl32_passthru(dev, cmd, arg); |
| 2390 | case CCISS_BIG_PASSTHRU32: |
| 2391 | return hpsa_ioctl32_big_passthru(dev, cmd, arg); |
| 2392 | |
| 2393 | default: |
| 2394 | return -ENOIOCTLCMD; |
| 2395 | } |
| 2396 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2397 | #endif |
| 2398 | |
| 2399 | static int hpsa_getpciinfo_ioctl(struct ctlr_info *h, void __user *argp) |
| 2400 | { |
| 2401 | struct hpsa_pci_info pciinfo; |
| 2402 | |
| 2403 | if (!argp) |
| 2404 | return -EINVAL; |
| 2405 | pciinfo.domain = pci_domain_nr(h->pdev->bus); |
| 2406 | pciinfo.bus = h->pdev->bus->number; |
| 2407 | pciinfo.dev_fn = h->pdev->devfn; |
| 2408 | pciinfo.board_id = h->board_id; |
| 2409 | if (copy_to_user(argp, &pciinfo, sizeof(pciinfo))) |
| 2410 | return -EFAULT; |
| 2411 | return 0; |
| 2412 | } |
| 2413 | |
| 2414 | static int hpsa_getdrivver_ioctl(struct ctlr_info *h, void __user *argp) |
| 2415 | { |
| 2416 | DriverVer_type DriverVer; |
| 2417 | unsigned char vmaj, vmin, vsubmin; |
| 2418 | int rc; |
| 2419 | |
| 2420 | rc = sscanf(HPSA_DRIVER_VERSION, "%hhu.%hhu.%hhu", |
| 2421 | &vmaj, &vmin, &vsubmin); |
| 2422 | if (rc != 3) { |
| 2423 | dev_info(&h->pdev->dev, "driver version string '%s' " |
| 2424 | "unrecognized.", HPSA_DRIVER_VERSION); |
| 2425 | vmaj = 0; |
| 2426 | vmin = 0; |
| 2427 | vsubmin = 0; |
| 2428 | } |
| 2429 | DriverVer = (vmaj << 16) | (vmin << 8) | vsubmin; |
| 2430 | if (!argp) |
| 2431 | return -EINVAL; |
| 2432 | if (copy_to_user(argp, &DriverVer, sizeof(DriverVer_type))) |
| 2433 | return -EFAULT; |
| 2434 | return 0; |
| 2435 | } |
| 2436 | |
| 2437 | static int hpsa_passthru_ioctl(struct ctlr_info *h, void __user *argp) |
| 2438 | { |
| 2439 | IOCTL_Command_struct iocommand; |
| 2440 | struct CommandList *c; |
| 2441 | char *buff = NULL; |
| 2442 | union u64bit temp64; |
| 2443 | |
| 2444 | if (!argp) |
| 2445 | return -EINVAL; |
| 2446 | if (!capable(CAP_SYS_RAWIO)) |
| 2447 | return -EPERM; |
| 2448 | if (copy_from_user(&iocommand, argp, sizeof(iocommand))) |
| 2449 | return -EFAULT; |
| 2450 | if ((iocommand.buf_size < 1) && |
| 2451 | (iocommand.Request.Type.Direction != XFER_NONE)) { |
| 2452 | return -EINVAL; |
| 2453 | } |
| 2454 | if (iocommand.buf_size > 0) { |
| 2455 | buff = kmalloc(iocommand.buf_size, GFP_KERNEL); |
| 2456 | if (buff == NULL) |
| 2457 | return -EFAULT; |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 2458 | if (iocommand.Request.Type.Direction == XFER_WRITE) { |
| 2459 | /* Copy the data into the buffer we created */ |
| 2460 | if (copy_from_user(buff, iocommand.buf, |
| 2461 | iocommand.buf_size)) { |
| 2462 | kfree(buff); |
| 2463 | return -EFAULT; |
| 2464 | } |
| 2465 | } else { |
| 2466 | memset(buff, 0, iocommand.buf_size); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2467 | } |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 2468 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2469 | c = cmd_special_alloc(h); |
| 2470 | if (c == NULL) { |
| 2471 | kfree(buff); |
| 2472 | return -ENOMEM; |
| 2473 | } |
| 2474 | /* Fill in the command type */ |
| 2475 | c->cmd_type = CMD_IOCTL_PEND; |
| 2476 | /* Fill in Command Header */ |
| 2477 | c->Header.ReplyQueue = 0; /* unused in simple mode */ |
| 2478 | if (iocommand.buf_size > 0) { /* buffer to fill */ |
| 2479 | c->Header.SGList = 1; |
| 2480 | c->Header.SGTotal = 1; |
| 2481 | } else { /* no buffers to fill */ |
| 2482 | c->Header.SGList = 0; |
| 2483 | c->Header.SGTotal = 0; |
| 2484 | } |
| 2485 | memcpy(&c->Header.LUN, &iocommand.LUN_info, sizeof(c->Header.LUN)); |
| 2486 | /* use the kernel address the cmd block for tag */ |
| 2487 | c->Header.Tag.lower = c->busaddr; |
| 2488 | |
| 2489 | /* Fill in Request block */ |
| 2490 | memcpy(&c->Request, &iocommand.Request, |
| 2491 | sizeof(c->Request)); |
| 2492 | |
| 2493 | /* Fill in the scatter gather information */ |
| 2494 | if (iocommand.buf_size > 0) { |
| 2495 | temp64.val = pci_map_single(h->pdev, buff, |
| 2496 | iocommand.buf_size, PCI_DMA_BIDIRECTIONAL); |
| 2497 | c->SG[0].Addr.lower = temp64.val32.lower; |
| 2498 | c->SG[0].Addr.upper = temp64.val32.upper; |
| 2499 | c->SG[0].Len = iocommand.buf_size; |
| 2500 | c->SG[0].Ext = 0; /* we are not chaining*/ |
| 2501 | } |
| 2502 | hpsa_scsi_do_simple_cmd_core(h, c); |
| 2503 | hpsa_pci_unmap(h->pdev, c, 1, PCI_DMA_BIDIRECTIONAL); |
| 2504 | check_ioctl_unit_attention(h, c); |
| 2505 | |
| 2506 | /* Copy the error information out */ |
| 2507 | memcpy(&iocommand.error_info, c->err_info, |
| 2508 | sizeof(iocommand.error_info)); |
| 2509 | if (copy_to_user(argp, &iocommand, sizeof(iocommand))) { |
| 2510 | kfree(buff); |
| 2511 | cmd_special_free(h, c); |
| 2512 | return -EFAULT; |
| 2513 | } |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 2514 | if (iocommand.Request.Type.Direction == XFER_READ && |
| 2515 | iocommand.buf_size > 0) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2516 | /* Copy the data out of the buffer we created */ |
| 2517 | if (copy_to_user(iocommand.buf, buff, iocommand.buf_size)) { |
| 2518 | kfree(buff); |
| 2519 | cmd_special_free(h, c); |
| 2520 | return -EFAULT; |
| 2521 | } |
| 2522 | } |
| 2523 | kfree(buff); |
| 2524 | cmd_special_free(h, c); |
| 2525 | return 0; |
| 2526 | } |
| 2527 | |
| 2528 | static int hpsa_big_passthru_ioctl(struct ctlr_info *h, void __user *argp) |
| 2529 | { |
| 2530 | BIG_IOCTL_Command_struct *ioc; |
| 2531 | struct CommandList *c; |
| 2532 | unsigned char **buff = NULL; |
| 2533 | int *buff_size = NULL; |
| 2534 | union u64bit temp64; |
| 2535 | BYTE sg_used = 0; |
| 2536 | int status = 0; |
| 2537 | int i; |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 2538 | u32 left; |
| 2539 | u32 sz; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2540 | BYTE __user *data_ptr; |
| 2541 | |
| 2542 | if (!argp) |
| 2543 | return -EINVAL; |
| 2544 | if (!capable(CAP_SYS_RAWIO)) |
| 2545 | return -EPERM; |
| 2546 | ioc = (BIG_IOCTL_Command_struct *) |
| 2547 | kmalloc(sizeof(*ioc), GFP_KERNEL); |
| 2548 | if (!ioc) { |
| 2549 | status = -ENOMEM; |
| 2550 | goto cleanup1; |
| 2551 | } |
| 2552 | if (copy_from_user(ioc, argp, sizeof(*ioc))) { |
| 2553 | status = -EFAULT; |
| 2554 | goto cleanup1; |
| 2555 | } |
| 2556 | if ((ioc->buf_size < 1) && |
| 2557 | (ioc->Request.Type.Direction != XFER_NONE)) { |
| 2558 | status = -EINVAL; |
| 2559 | goto cleanup1; |
| 2560 | } |
| 2561 | /* Check kmalloc limits using all SGs */ |
| 2562 | if (ioc->malloc_size > MAX_KMALLOC_SIZE) { |
| 2563 | status = -EINVAL; |
| 2564 | goto cleanup1; |
| 2565 | } |
| 2566 | if (ioc->buf_size > ioc->malloc_size * MAXSGENTRIES) { |
| 2567 | status = -EINVAL; |
| 2568 | goto cleanup1; |
| 2569 | } |
| 2570 | buff = kzalloc(MAXSGENTRIES * sizeof(char *), GFP_KERNEL); |
| 2571 | if (!buff) { |
| 2572 | status = -ENOMEM; |
| 2573 | goto cleanup1; |
| 2574 | } |
| 2575 | buff_size = kmalloc(MAXSGENTRIES * sizeof(int), GFP_KERNEL); |
| 2576 | if (!buff_size) { |
| 2577 | status = -ENOMEM; |
| 2578 | goto cleanup1; |
| 2579 | } |
| 2580 | left = ioc->buf_size; |
| 2581 | data_ptr = ioc->buf; |
| 2582 | while (left) { |
| 2583 | sz = (left > ioc->malloc_size) ? ioc->malloc_size : left; |
| 2584 | buff_size[sg_used] = sz; |
| 2585 | buff[sg_used] = kmalloc(sz, GFP_KERNEL); |
| 2586 | if (buff[sg_used] == NULL) { |
| 2587 | status = -ENOMEM; |
| 2588 | goto cleanup1; |
| 2589 | } |
| 2590 | if (ioc->Request.Type.Direction == XFER_WRITE) { |
| 2591 | if (copy_from_user(buff[sg_used], data_ptr, sz)) { |
| 2592 | status = -ENOMEM; |
| 2593 | goto cleanup1; |
| 2594 | } |
| 2595 | } else |
| 2596 | memset(buff[sg_used], 0, sz); |
| 2597 | left -= sz; |
| 2598 | data_ptr += sz; |
| 2599 | sg_used++; |
| 2600 | } |
| 2601 | c = cmd_special_alloc(h); |
| 2602 | if (c == NULL) { |
| 2603 | status = -ENOMEM; |
| 2604 | goto cleanup1; |
| 2605 | } |
| 2606 | c->cmd_type = CMD_IOCTL_PEND; |
| 2607 | c->Header.ReplyQueue = 0; |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 2608 | c->Header.SGList = c->Header.SGTotal = sg_used; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2609 | memcpy(&c->Header.LUN, &ioc->LUN_info, sizeof(c->Header.LUN)); |
| 2610 | c->Header.Tag.lower = c->busaddr; |
| 2611 | memcpy(&c->Request, &ioc->Request, sizeof(c->Request)); |
| 2612 | if (ioc->buf_size > 0) { |
| 2613 | int i; |
| 2614 | for (i = 0; i < sg_used; i++) { |
| 2615 | temp64.val = pci_map_single(h->pdev, buff[i], |
| 2616 | buff_size[i], PCI_DMA_BIDIRECTIONAL); |
| 2617 | c->SG[i].Addr.lower = temp64.val32.lower; |
| 2618 | c->SG[i].Addr.upper = temp64.val32.upper; |
| 2619 | c->SG[i].Len = buff_size[i]; |
| 2620 | /* we are not chaining */ |
| 2621 | c->SG[i].Ext = 0; |
| 2622 | } |
| 2623 | } |
| 2624 | hpsa_scsi_do_simple_cmd_core(h, c); |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 2625 | if (sg_used) |
| 2626 | hpsa_pci_unmap(h->pdev, c, sg_used, PCI_DMA_BIDIRECTIONAL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2627 | check_ioctl_unit_attention(h, c); |
| 2628 | /* Copy the error information out */ |
| 2629 | memcpy(&ioc->error_info, c->err_info, sizeof(ioc->error_info)); |
| 2630 | if (copy_to_user(argp, ioc, sizeof(*ioc))) { |
| 2631 | cmd_special_free(h, c); |
| 2632 | status = -EFAULT; |
| 2633 | goto cleanup1; |
| 2634 | } |
Stephen M. Cameron | b03a777 | 2011-01-06 14:47:48 -0600 | [diff] [blame] | 2635 | if (ioc->Request.Type.Direction == XFER_READ && ioc->buf_size > 0) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2636 | /* Copy the data out of the buffer we created */ |
| 2637 | BYTE __user *ptr = ioc->buf; |
| 2638 | for (i = 0; i < sg_used; i++) { |
| 2639 | if (copy_to_user(ptr, buff[i], buff_size[i])) { |
| 2640 | cmd_special_free(h, c); |
| 2641 | status = -EFAULT; |
| 2642 | goto cleanup1; |
| 2643 | } |
| 2644 | ptr += buff_size[i]; |
| 2645 | } |
| 2646 | } |
| 2647 | cmd_special_free(h, c); |
| 2648 | status = 0; |
| 2649 | cleanup1: |
| 2650 | if (buff) { |
| 2651 | for (i = 0; i < sg_used; i++) |
| 2652 | kfree(buff[i]); |
| 2653 | kfree(buff); |
| 2654 | } |
| 2655 | kfree(buff_size); |
| 2656 | kfree(ioc); |
| 2657 | return status; |
| 2658 | } |
| 2659 | |
| 2660 | static void check_ioctl_unit_attention(struct ctlr_info *h, |
| 2661 | struct CommandList *c) |
| 2662 | { |
| 2663 | if (c->err_info->CommandStatus == CMD_TARGET_STATUS && |
| 2664 | c->err_info->ScsiStatus != SAM_STAT_CHECK_CONDITION) |
| 2665 | (void) check_for_unit_attention(h, c); |
| 2666 | } |
| 2667 | /* |
| 2668 | * ioctl |
| 2669 | */ |
| 2670 | static int hpsa_ioctl(struct scsi_device *dev, int cmd, void *arg) |
| 2671 | { |
| 2672 | struct ctlr_info *h; |
| 2673 | void __user *argp = (void __user *)arg; |
| 2674 | |
| 2675 | h = sdev_to_hba(dev); |
| 2676 | |
| 2677 | switch (cmd) { |
| 2678 | case CCISS_DEREGDISK: |
| 2679 | case CCISS_REGNEWDISK: |
| 2680 | case CCISS_REGNEWD: |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 2681 | hpsa_scan_start(h->scsi_host); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2682 | return 0; |
| 2683 | case CCISS_GETPCIINFO: |
| 2684 | return hpsa_getpciinfo_ioctl(h, argp); |
| 2685 | case CCISS_GETDRIVVER: |
| 2686 | return hpsa_getdrivver_ioctl(h, argp); |
| 2687 | case CCISS_PASSTHRU: |
| 2688 | return hpsa_passthru_ioctl(h, argp); |
| 2689 | case CCISS_BIG_PASSTHRU: |
| 2690 | return hpsa_big_passthru_ioctl(h, argp); |
| 2691 | default: |
| 2692 | return -ENOTTY; |
| 2693 | } |
| 2694 | } |
| 2695 | |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 2696 | static void fill_cmd(struct CommandList *c, u8 cmd, struct ctlr_info *h, |
| 2697 | void *buff, size_t size, u8 page_code, unsigned char *scsi3addr, |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2698 | int cmd_type) |
| 2699 | { |
| 2700 | int pci_dir = XFER_NONE; |
| 2701 | |
| 2702 | c->cmd_type = CMD_IOCTL_PEND; |
| 2703 | c->Header.ReplyQueue = 0; |
| 2704 | if (buff != NULL && size > 0) { |
| 2705 | c->Header.SGList = 1; |
| 2706 | c->Header.SGTotal = 1; |
| 2707 | } else { |
| 2708 | c->Header.SGList = 0; |
| 2709 | c->Header.SGTotal = 0; |
| 2710 | } |
| 2711 | c->Header.Tag.lower = c->busaddr; |
| 2712 | memcpy(c->Header.LUN.LunAddrBytes, scsi3addr, 8); |
| 2713 | |
| 2714 | c->Request.Type.Type = cmd_type; |
| 2715 | if (cmd_type == TYPE_CMD) { |
| 2716 | switch (cmd) { |
| 2717 | case HPSA_INQUIRY: |
| 2718 | /* are we trying to read a vital product page */ |
| 2719 | if (page_code != 0) { |
| 2720 | c->Request.CDB[1] = 0x01; |
| 2721 | c->Request.CDB[2] = page_code; |
| 2722 | } |
| 2723 | c->Request.CDBLen = 6; |
| 2724 | c->Request.Type.Attribute = ATTR_SIMPLE; |
| 2725 | c->Request.Type.Direction = XFER_READ; |
| 2726 | c->Request.Timeout = 0; |
| 2727 | c->Request.CDB[0] = HPSA_INQUIRY; |
| 2728 | c->Request.CDB[4] = size & 0xFF; |
| 2729 | break; |
| 2730 | case HPSA_REPORT_LOG: |
| 2731 | case HPSA_REPORT_PHYS: |
| 2732 | /* Talking to controller so It's a physical command |
| 2733 | mode = 00 target = 0. Nothing to write. |
| 2734 | */ |
| 2735 | c->Request.CDBLen = 12; |
| 2736 | c->Request.Type.Attribute = ATTR_SIMPLE; |
| 2737 | c->Request.Type.Direction = XFER_READ; |
| 2738 | c->Request.Timeout = 0; |
| 2739 | c->Request.CDB[0] = cmd; |
| 2740 | c->Request.CDB[6] = (size >> 24) & 0xFF; /* MSB */ |
| 2741 | c->Request.CDB[7] = (size >> 16) & 0xFF; |
| 2742 | c->Request.CDB[8] = (size >> 8) & 0xFF; |
| 2743 | c->Request.CDB[9] = size & 0xFF; |
| 2744 | break; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2745 | case HPSA_CACHE_FLUSH: |
| 2746 | c->Request.CDBLen = 12; |
| 2747 | c->Request.Type.Attribute = ATTR_SIMPLE; |
| 2748 | c->Request.Type.Direction = XFER_WRITE; |
| 2749 | c->Request.Timeout = 0; |
| 2750 | c->Request.CDB[0] = BMIC_WRITE; |
| 2751 | c->Request.CDB[6] = BMIC_CACHE_FLUSH; |
| 2752 | break; |
| 2753 | case TEST_UNIT_READY: |
| 2754 | c->Request.CDBLen = 6; |
| 2755 | c->Request.Type.Attribute = ATTR_SIMPLE; |
| 2756 | c->Request.Type.Direction = XFER_NONE; |
| 2757 | c->Request.Timeout = 0; |
| 2758 | break; |
| 2759 | default: |
| 2760 | dev_warn(&h->pdev->dev, "unknown command 0x%c\n", cmd); |
| 2761 | BUG(); |
| 2762 | return; |
| 2763 | } |
| 2764 | } else if (cmd_type == TYPE_MSG) { |
| 2765 | switch (cmd) { |
| 2766 | |
| 2767 | case HPSA_DEVICE_RESET_MSG: |
| 2768 | c->Request.CDBLen = 16; |
| 2769 | c->Request.Type.Type = 1; /* It is a MSG not a CMD */ |
| 2770 | c->Request.Type.Attribute = ATTR_SIMPLE; |
| 2771 | c->Request.Type.Direction = XFER_NONE; |
| 2772 | c->Request.Timeout = 0; /* Don't time out */ |
| 2773 | c->Request.CDB[0] = 0x01; /* RESET_MSG is 0x01 */ |
| 2774 | c->Request.CDB[1] = 0x03; /* Reset target above */ |
| 2775 | /* If bytes 4-7 are zero, it means reset the */ |
| 2776 | /* LunID device */ |
| 2777 | c->Request.CDB[4] = 0x00; |
| 2778 | c->Request.CDB[5] = 0x00; |
| 2779 | c->Request.CDB[6] = 0x00; |
| 2780 | c->Request.CDB[7] = 0x00; |
| 2781 | break; |
| 2782 | |
| 2783 | default: |
| 2784 | dev_warn(&h->pdev->dev, "unknown message type %d\n", |
| 2785 | cmd); |
| 2786 | BUG(); |
| 2787 | } |
| 2788 | } else { |
| 2789 | dev_warn(&h->pdev->dev, "unknown command type %d\n", cmd_type); |
| 2790 | BUG(); |
| 2791 | } |
| 2792 | |
| 2793 | switch (c->Request.Type.Direction) { |
| 2794 | case XFER_READ: |
| 2795 | pci_dir = PCI_DMA_FROMDEVICE; |
| 2796 | break; |
| 2797 | case XFER_WRITE: |
| 2798 | pci_dir = PCI_DMA_TODEVICE; |
| 2799 | break; |
| 2800 | case XFER_NONE: |
| 2801 | pci_dir = PCI_DMA_NONE; |
| 2802 | break; |
| 2803 | default: |
| 2804 | pci_dir = PCI_DMA_BIDIRECTIONAL; |
| 2805 | } |
| 2806 | |
| 2807 | hpsa_map_one(h->pdev, c, buff, size, pci_dir); |
| 2808 | |
| 2809 | return; |
| 2810 | } |
| 2811 | |
| 2812 | /* |
| 2813 | * Map (physical) PCI mem into (virtual) kernel space |
| 2814 | */ |
| 2815 | static void __iomem *remap_pci_mem(ulong base, ulong size) |
| 2816 | { |
| 2817 | ulong page_base = ((ulong) base) & PAGE_MASK; |
| 2818 | ulong page_offs = ((ulong) base) - page_base; |
| 2819 | void __iomem *page_remapped = ioremap(page_base, page_offs + size); |
| 2820 | |
| 2821 | return page_remapped ? (page_remapped + page_offs) : NULL; |
| 2822 | } |
| 2823 | |
| 2824 | /* Takes cmds off the submission queue and sends them to the hardware, |
| 2825 | * then puts them on the queue of cmds waiting for completion. |
| 2826 | */ |
| 2827 | static void start_io(struct ctlr_info *h) |
| 2828 | { |
| 2829 | struct CommandList *c; |
| 2830 | |
| 2831 | while (!hlist_empty(&h->reqQ)) { |
| 2832 | c = hlist_entry(h->reqQ.first, struct CommandList, list); |
| 2833 | /* can't do anything if fifo is full */ |
| 2834 | if ((h->access.fifo_full(h))) { |
| 2835 | dev_warn(&h->pdev->dev, "fifo full\n"); |
| 2836 | break; |
| 2837 | } |
| 2838 | |
| 2839 | /* Get the first entry from the Request Q */ |
| 2840 | removeQ(c); |
| 2841 | h->Qdepth--; |
| 2842 | |
| 2843 | /* Tell the controller execute command */ |
| 2844 | h->access.submit_command(h, c); |
| 2845 | |
| 2846 | /* Put job onto the completed Q */ |
| 2847 | addQ(&h->cmpQ, c); |
| 2848 | } |
| 2849 | } |
| 2850 | |
| 2851 | static inline unsigned long get_next_completion(struct ctlr_info *h) |
| 2852 | { |
| 2853 | return h->access.command_completed(h); |
| 2854 | } |
| 2855 | |
Stephen M. Cameron | 900c544 | 2010-02-04 08:42:35 -0600 | [diff] [blame] | 2856 | static inline bool interrupt_pending(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2857 | { |
| 2858 | return h->access.intr_pending(h); |
| 2859 | } |
| 2860 | |
| 2861 | static inline long interrupt_not_for_us(struct ctlr_info *h) |
| 2862 | { |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 2863 | return (h->access.intr_pending(h) == 0) || |
| 2864 | (h->interrupts_enabled == 0); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2865 | } |
| 2866 | |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 2867 | static inline int bad_tag(struct ctlr_info *h, u32 tag_index, |
| 2868 | u32 raw_tag) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2869 | { |
| 2870 | if (unlikely(tag_index >= h->nr_cmds)) { |
| 2871 | dev_warn(&h->pdev->dev, "bad tag 0x%08x ignored.\n", raw_tag); |
| 2872 | return 1; |
| 2873 | } |
| 2874 | return 0; |
| 2875 | } |
| 2876 | |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 2877 | static inline void finish_cmd(struct CommandList *c, u32 raw_tag) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2878 | { |
| 2879 | removeQ(c); |
| 2880 | if (likely(c->cmd_type == CMD_SCSI)) |
| 2881 | complete_scsi_command(c, 0, raw_tag); |
| 2882 | else if (c->cmd_type == CMD_IOCTL_PEND) |
| 2883 | complete(c->waiting); |
| 2884 | } |
| 2885 | |
Stephen M. Cameron | a104c99 | 2010-02-04 08:42:24 -0600 | [diff] [blame] | 2886 | static inline u32 hpsa_tag_contains_index(u32 tag) |
| 2887 | { |
Stephen M. Cameron | a104c99 | 2010-02-04 08:42:24 -0600 | [diff] [blame] | 2888 | return tag & DIRECT_LOOKUP_BIT; |
| 2889 | } |
| 2890 | |
| 2891 | static inline u32 hpsa_tag_to_index(u32 tag) |
| 2892 | { |
Stephen M. Cameron | a104c99 | 2010-02-04 08:42:24 -0600 | [diff] [blame] | 2893 | return tag >> DIRECT_LOOKUP_SHIFT; |
| 2894 | } |
| 2895 | |
| 2896 | static inline u32 hpsa_tag_discard_error_bits(u32 tag) |
| 2897 | { |
| 2898 | #define HPSA_ERROR_BITS 0x03 |
| 2899 | return tag & ~HPSA_ERROR_BITS; |
| 2900 | } |
| 2901 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 2902 | /* process completion of an indexed ("direct lookup") command */ |
| 2903 | static inline u32 process_indexed_cmd(struct ctlr_info *h, |
| 2904 | u32 raw_tag) |
| 2905 | { |
| 2906 | u32 tag_index; |
| 2907 | struct CommandList *c; |
| 2908 | |
| 2909 | tag_index = hpsa_tag_to_index(raw_tag); |
| 2910 | if (bad_tag(h, tag_index, raw_tag)) |
| 2911 | return next_command(h); |
| 2912 | c = h->cmd_pool + tag_index; |
| 2913 | finish_cmd(c, raw_tag); |
| 2914 | return next_command(h); |
| 2915 | } |
| 2916 | |
| 2917 | /* process completion of a non-indexed command */ |
| 2918 | static inline u32 process_nonindexed_cmd(struct ctlr_info *h, |
| 2919 | u32 raw_tag) |
| 2920 | { |
| 2921 | u32 tag; |
| 2922 | struct CommandList *c = NULL; |
| 2923 | struct hlist_node *tmp; |
| 2924 | |
| 2925 | tag = hpsa_tag_discard_error_bits(raw_tag); |
| 2926 | hlist_for_each_entry(c, tmp, &h->cmpQ, list) { |
| 2927 | if ((c->busaddr & 0xFFFFFFE0) == (tag & 0xFFFFFFE0)) { |
| 2928 | finish_cmd(c, raw_tag); |
| 2929 | return next_command(h); |
| 2930 | } |
| 2931 | } |
| 2932 | bad_tag(h, h->nr_cmds + 1, raw_tag); |
| 2933 | return next_command(h); |
| 2934 | } |
| 2935 | |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 2936 | static irqreturn_t do_hpsa_intr_intx(int irq, void *dev_id) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2937 | { |
| 2938 | struct ctlr_info *h = dev_id; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2939 | unsigned long flags; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 2940 | u32 raw_tag; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2941 | |
| 2942 | if (interrupt_not_for_us(h)) |
| 2943 | return IRQ_NONE; |
| 2944 | spin_lock_irqsave(&h->lock, flags); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 2945 | while (interrupt_pending(h)) { |
| 2946 | raw_tag = get_next_completion(h); |
| 2947 | while (raw_tag != FIFO_EMPTY) { |
| 2948 | if (hpsa_tag_contains_index(raw_tag)) |
| 2949 | raw_tag = process_indexed_cmd(h, raw_tag); |
| 2950 | else |
| 2951 | raw_tag = process_nonindexed_cmd(h, raw_tag); |
| 2952 | } |
| 2953 | } |
| 2954 | spin_unlock_irqrestore(&h->lock, flags); |
| 2955 | return IRQ_HANDLED; |
| 2956 | } |
| 2957 | |
| 2958 | static irqreturn_t do_hpsa_intr_msi(int irq, void *dev_id) |
| 2959 | { |
| 2960 | struct ctlr_info *h = dev_id; |
| 2961 | unsigned long flags; |
| 2962 | u32 raw_tag; |
| 2963 | |
| 2964 | spin_lock_irqsave(&h->lock, flags); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 2965 | raw_tag = get_next_completion(h); |
| 2966 | while (raw_tag != FIFO_EMPTY) { |
| 2967 | if (hpsa_tag_contains_index(raw_tag)) |
| 2968 | raw_tag = process_indexed_cmd(h, raw_tag); |
| 2969 | else |
| 2970 | raw_tag = process_nonindexed_cmd(h, raw_tag); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2971 | } |
| 2972 | spin_unlock_irqrestore(&h->lock, flags); |
| 2973 | return IRQ_HANDLED; |
| 2974 | } |
| 2975 | |
Stephen M. Cameron | f0edafc | 2010-02-25 14:02:56 -0600 | [diff] [blame] | 2976 | /* Send a message CDB to the firmware. */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 2977 | static __devinit int hpsa_message(struct pci_dev *pdev, unsigned char opcode, |
| 2978 | unsigned char type) |
| 2979 | { |
| 2980 | struct Command { |
| 2981 | struct CommandListHeader CommandHeader; |
| 2982 | struct RequestBlock Request; |
| 2983 | struct ErrDescriptor ErrorDescriptor; |
| 2984 | }; |
| 2985 | struct Command *cmd; |
| 2986 | static const size_t cmd_sz = sizeof(*cmd) + |
| 2987 | sizeof(cmd->ErrorDescriptor); |
| 2988 | dma_addr_t paddr64; |
| 2989 | uint32_t paddr32, tag; |
| 2990 | void __iomem *vaddr; |
| 2991 | int i, err; |
| 2992 | |
| 2993 | vaddr = pci_ioremap_bar(pdev, 0); |
| 2994 | if (vaddr == NULL) |
| 2995 | return -ENOMEM; |
| 2996 | |
| 2997 | /* The Inbound Post Queue only accepts 32-bit physical addresses for the |
| 2998 | * CCISS commands, so they must be allocated from the lower 4GiB of |
| 2999 | * memory. |
| 3000 | */ |
| 3001 | err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 3002 | if (err) { |
| 3003 | iounmap(vaddr); |
| 3004 | return -ENOMEM; |
| 3005 | } |
| 3006 | |
| 3007 | cmd = pci_alloc_consistent(pdev, cmd_sz, &paddr64); |
| 3008 | if (cmd == NULL) { |
| 3009 | iounmap(vaddr); |
| 3010 | return -ENOMEM; |
| 3011 | } |
| 3012 | |
| 3013 | /* This must fit, because of the 32-bit consistent DMA mask. Also, |
| 3014 | * although there's no guarantee, we assume that the address is at |
| 3015 | * least 4-byte aligned (most likely, it's page-aligned). |
| 3016 | */ |
| 3017 | paddr32 = paddr64; |
| 3018 | |
| 3019 | cmd->CommandHeader.ReplyQueue = 0; |
| 3020 | cmd->CommandHeader.SGList = 0; |
| 3021 | cmd->CommandHeader.SGTotal = 0; |
| 3022 | cmd->CommandHeader.Tag.lower = paddr32; |
| 3023 | cmd->CommandHeader.Tag.upper = 0; |
| 3024 | memset(&cmd->CommandHeader.LUN.LunAddrBytes, 0, 8); |
| 3025 | |
| 3026 | cmd->Request.CDBLen = 16; |
| 3027 | cmd->Request.Type.Type = TYPE_MSG; |
| 3028 | cmd->Request.Type.Attribute = ATTR_HEADOFQUEUE; |
| 3029 | cmd->Request.Type.Direction = XFER_NONE; |
| 3030 | cmd->Request.Timeout = 0; /* Don't time out */ |
| 3031 | cmd->Request.CDB[0] = opcode; |
| 3032 | cmd->Request.CDB[1] = type; |
| 3033 | memset(&cmd->Request.CDB[2], 0, 14); /* rest of the CDB is reserved */ |
| 3034 | cmd->ErrorDescriptor.Addr.lower = paddr32 + sizeof(*cmd); |
| 3035 | cmd->ErrorDescriptor.Addr.upper = 0; |
| 3036 | cmd->ErrorDescriptor.Len = sizeof(struct ErrorInfo); |
| 3037 | |
| 3038 | writel(paddr32, vaddr + SA5_REQUEST_PORT_OFFSET); |
| 3039 | |
| 3040 | for (i = 0; i < HPSA_MSG_SEND_RETRY_LIMIT; i++) { |
| 3041 | tag = readl(vaddr + SA5_REPLY_PORT_OFFSET); |
Stephen M. Cameron | a104c99 | 2010-02-04 08:42:24 -0600 | [diff] [blame] | 3042 | if (hpsa_tag_discard_error_bits(tag) == paddr32) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3043 | break; |
| 3044 | msleep(HPSA_MSG_SEND_RETRY_INTERVAL_MSECS); |
| 3045 | } |
| 3046 | |
| 3047 | iounmap(vaddr); |
| 3048 | |
| 3049 | /* we leak the DMA buffer here ... no choice since the controller could |
| 3050 | * still complete the command. |
| 3051 | */ |
| 3052 | if (i == HPSA_MSG_SEND_RETRY_LIMIT) { |
| 3053 | dev_err(&pdev->dev, "controller message %02x:%02x timed out\n", |
| 3054 | opcode, type); |
| 3055 | return -ETIMEDOUT; |
| 3056 | } |
| 3057 | |
| 3058 | pci_free_consistent(pdev, cmd_sz, cmd, paddr64); |
| 3059 | |
| 3060 | if (tag & HPSA_ERROR_BIT) { |
| 3061 | dev_err(&pdev->dev, "controller message %02x:%02x failed\n", |
| 3062 | opcode, type); |
| 3063 | return -EIO; |
| 3064 | } |
| 3065 | |
| 3066 | dev_info(&pdev->dev, "controller message %02x:%02x succeeded\n", |
| 3067 | opcode, type); |
| 3068 | return 0; |
| 3069 | } |
| 3070 | |
| 3071 | #define hpsa_soft_reset_controller(p) hpsa_message(p, 1, 0) |
| 3072 | #define hpsa_noop(p) hpsa_message(p, 3, 0) |
| 3073 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3074 | static int hpsa_controller_hard_reset(struct pci_dev *pdev, |
| 3075 | void * __iomem vaddr, bool use_doorbell) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3076 | { |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3077 | u16 pmcsr; |
| 3078 | int pos; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3079 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3080 | if (use_doorbell) { |
| 3081 | /* For everything after the P600, the PCI power state method |
| 3082 | * of resetting the controller doesn't work, so we have this |
| 3083 | * other way using the doorbell register. |
| 3084 | */ |
| 3085 | dev_info(&pdev->dev, "using doorbell to reset controller\n"); |
| 3086 | writel(DOORBELL_CTLR_RESET, vaddr + SA5_DOORBELL); |
| 3087 | msleep(1000); |
| 3088 | } else { /* Try to do it the PCI power state way */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3089 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3090 | /* Quoting from the Open CISS Specification: "The Power |
| 3091 | * Management Control/Status Register (CSR) controls the power |
| 3092 | * state of the device. The normal operating state is D0, |
| 3093 | * CSR=00h. The software off state is D3, CSR=03h. To reset |
| 3094 | * the controller, place the interface device in D3 then to D0, |
| 3095 | * this causes a secondary PCI reset which will reset the |
| 3096 | * controller." */ |
| 3097 | |
| 3098 | pos = pci_find_capability(pdev, PCI_CAP_ID_PM); |
| 3099 | if (pos == 0) { |
| 3100 | dev_err(&pdev->dev, |
| 3101 | "hpsa_reset_controller: " |
| 3102 | "PCI PM not supported\n"); |
| 3103 | return -ENODEV; |
| 3104 | } |
| 3105 | dev_info(&pdev->dev, "using PCI PM to reset controller\n"); |
| 3106 | /* enter the D3hot power management state */ |
| 3107 | pci_read_config_word(pdev, pos + PCI_PM_CTRL, &pmcsr); |
| 3108 | pmcsr &= ~PCI_PM_CTRL_STATE_MASK; |
| 3109 | pmcsr |= PCI_D3hot; |
| 3110 | pci_write_config_word(pdev, pos + PCI_PM_CTRL, pmcsr); |
| 3111 | |
| 3112 | msleep(500); |
| 3113 | |
| 3114 | /* enter the D0 power management state */ |
| 3115 | pmcsr &= ~PCI_PM_CTRL_STATE_MASK; |
| 3116 | pmcsr |= PCI_D0; |
| 3117 | pci_write_config_word(pdev, pos + PCI_PM_CTRL, pmcsr); |
| 3118 | |
| 3119 | msleep(500); |
| 3120 | } |
| 3121 | return 0; |
| 3122 | } |
| 3123 | |
| 3124 | /* This does a hard reset of the controller using PCI power management |
| 3125 | * states or the using the doorbell register. |
| 3126 | */ |
| 3127 | static __devinit int hpsa_kdump_hard_reset_controller(struct pci_dev *pdev) |
| 3128 | { |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3129 | u64 cfg_offset; |
| 3130 | u32 cfg_base_addr; |
| 3131 | u64 cfg_base_addr_index; |
| 3132 | void __iomem *vaddr; |
| 3133 | unsigned long paddr; |
| 3134 | u32 misc_fw_support, active_transport; |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 3135 | int rc; |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3136 | struct CfgTable __iomem *cfgtable; |
| 3137 | bool use_doorbell; |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 3138 | u32 board_id; |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 3139 | u16 command_register; |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3140 | |
| 3141 | /* For controllers as old as the P600, this is very nearly |
| 3142 | * the same thing as |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3143 | * |
| 3144 | * pci_save_state(pci_dev); |
| 3145 | * pci_set_power_state(pci_dev, PCI_D3hot); |
| 3146 | * pci_set_power_state(pci_dev, PCI_D0); |
| 3147 | * pci_restore_state(pci_dev); |
| 3148 | * |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3149 | * For controllers newer than the P600, the pci power state |
| 3150 | * method of resetting doesn't work so we have another way |
| 3151 | * using the doorbell register. |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3152 | */ |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 3153 | |
| 3154 | /* Exclude 640x boards. These are two pci devices in one slot |
| 3155 | * which share a battery backed cache module. One controls the |
| 3156 | * cache, the other accesses the cache through the one that controls |
| 3157 | * it. If we reset the one controlling the cache, the other will |
| 3158 | * likely not be happy. Just forbid resetting this conjoined mess. |
| 3159 | * The 640x isn't really supported by hpsa anyway. |
| 3160 | */ |
Stephen M. Cameron | 25c1e56a | 2011-01-06 14:48:18 -0600 | [diff] [blame] | 3161 | rc = hpsa_lookup_board_id(pdev, &board_id); |
| 3162 | if (rc < 0) { |
| 3163 | dev_warn(&pdev->dev, "Not resetting device.\n"); |
| 3164 | return -ENODEV; |
| 3165 | } |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 3166 | if (board_id == 0x409C0E11 || board_id == 0x409D0E11) |
| 3167 | return -ENOTSUPP; |
| 3168 | |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 3169 | /* Save the PCI command register */ |
| 3170 | pci_read_config_word(pdev, 4, &command_register); |
| 3171 | /* Turn the board off. This is so that later pci_restore_state() |
| 3172 | * won't turn the board on before the rest of config space is ready. |
| 3173 | */ |
| 3174 | pci_disable_device(pdev); |
| 3175 | pci_save_state(pdev); |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3176 | |
| 3177 | /* find the first memory BAR, so we can find the cfg table */ |
| 3178 | rc = hpsa_pci_find_memory_BAR(pdev, &paddr); |
| 3179 | if (rc) |
| 3180 | return rc; |
| 3181 | vaddr = remap_pci_mem(paddr, 0x250); |
| 3182 | if (!vaddr) |
| 3183 | return -ENOMEM; |
| 3184 | |
| 3185 | /* find cfgtable in order to check if reset via doorbell is supported */ |
| 3186 | rc = hpsa_find_cfg_addrs(pdev, vaddr, &cfg_base_addr, |
| 3187 | &cfg_base_addr_index, &cfg_offset); |
| 3188 | if (rc) |
| 3189 | goto unmap_vaddr; |
| 3190 | cfgtable = remap_pci_mem(pci_resource_start(pdev, |
| 3191 | cfg_base_addr_index) + cfg_offset, sizeof(*cfgtable)); |
| 3192 | if (!cfgtable) { |
| 3193 | rc = -ENOMEM; |
| 3194 | goto unmap_vaddr; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3195 | } |
| 3196 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3197 | /* If reset via doorbell register is supported, use that. */ |
| 3198 | misc_fw_support = readl(&cfgtable->misc_fw_support); |
| 3199 | use_doorbell = misc_fw_support & MISC_FW_DOORBELL_RESET; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3200 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3201 | rc = hpsa_controller_hard_reset(pdev, vaddr, use_doorbell); |
| 3202 | if (rc) |
| 3203 | goto unmap_cfgtable; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3204 | |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 3205 | pci_restore_state(pdev); |
| 3206 | rc = pci_enable_device(pdev); |
| 3207 | if (rc) { |
| 3208 | dev_warn(&pdev->dev, "failed to enable device.\n"); |
| 3209 | goto unmap_cfgtable; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3210 | } |
Stephen M. Cameron | 270d05d | 2011-01-06 14:48:08 -0600 | [diff] [blame] | 3211 | pci_write_config_word(pdev, 4, command_register); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3212 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3213 | /* Some devices (notably the HP Smart Array 5i Controller) |
| 3214 | need a little pause here */ |
| 3215 | msleep(HPSA_POST_RESET_PAUSE_MSECS); |
| 3216 | |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 3217 | /* Wait for board to become not ready, then ready. */ |
| 3218 | dev_info(&pdev->dev, "Waiting for board to become ready.\n"); |
| 3219 | rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_NOT_READY); |
| 3220 | if (rc) |
| 3221 | dev_warn(&pdev->dev, |
| 3222 | "failed waiting for board to become not ready\n"); |
| 3223 | rc = hpsa_wait_for_board_state(pdev, vaddr, BOARD_READY); |
| 3224 | if (rc) { |
| 3225 | dev_warn(&pdev->dev, |
| 3226 | "failed waiting for board to become ready\n"); |
| 3227 | goto unmap_cfgtable; |
| 3228 | } |
| 3229 | dev_info(&pdev->dev, "board ready.\n"); |
| 3230 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3231 | /* Controller should be in simple mode at this point. If it's not, |
| 3232 | * It means we're on one of those controllers which doesn't support |
| 3233 | * the doorbell reset method and on which the PCI power management reset |
| 3234 | * method doesn't work (P800, for example.) |
| 3235 | * In those cases, pretend the reset worked and hope for the best. |
| 3236 | */ |
| 3237 | active_transport = readl(&cfgtable->TransportActive); |
| 3238 | if (active_transport & PERFORMANT_MODE) { |
| 3239 | dev_warn(&pdev->dev, "Unable to successfully reset controller," |
| 3240 | " proceeding anyway.\n"); |
| 3241 | rc = -ENOTSUPP; |
| 3242 | } |
| 3243 | |
| 3244 | unmap_cfgtable: |
| 3245 | iounmap(cfgtable); |
| 3246 | |
| 3247 | unmap_vaddr: |
| 3248 | iounmap(vaddr); |
| 3249 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3250 | } |
| 3251 | |
| 3252 | /* |
| 3253 | * We cannot read the structure directly, for portability we must use |
| 3254 | * the io functions. |
| 3255 | * This is for debug only. |
| 3256 | */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3257 | static void print_cfg_table(struct device *dev, struct CfgTable *tb) |
| 3258 | { |
Stephen M. Cameron | 58f8665 | 2010-05-27 15:13:58 -0500 | [diff] [blame] | 3259 | #ifdef HPSA_DEBUG |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3260 | int i; |
| 3261 | char temp_name[17]; |
| 3262 | |
| 3263 | dev_info(dev, "Controller Configuration information\n"); |
| 3264 | dev_info(dev, "------------------------------------\n"); |
| 3265 | for (i = 0; i < 4; i++) |
| 3266 | temp_name[i] = readb(&(tb->Signature[i])); |
| 3267 | temp_name[4] = '\0'; |
| 3268 | dev_info(dev, " Signature = %s\n", temp_name); |
| 3269 | dev_info(dev, " Spec Number = %d\n", readl(&(tb->SpecValence))); |
| 3270 | dev_info(dev, " Transport methods supported = 0x%x\n", |
| 3271 | readl(&(tb->TransportSupport))); |
| 3272 | dev_info(dev, " Transport methods active = 0x%x\n", |
| 3273 | readl(&(tb->TransportActive))); |
| 3274 | dev_info(dev, " Requested transport Method = 0x%x\n", |
| 3275 | readl(&(tb->HostWrite.TransportRequest))); |
| 3276 | dev_info(dev, " Coalesce Interrupt Delay = 0x%x\n", |
| 3277 | readl(&(tb->HostWrite.CoalIntDelay))); |
| 3278 | dev_info(dev, " Coalesce Interrupt Count = 0x%x\n", |
| 3279 | readl(&(tb->HostWrite.CoalIntCount))); |
| 3280 | dev_info(dev, " Max outstanding commands = 0x%d\n", |
| 3281 | readl(&(tb->CmdsOutMax))); |
| 3282 | dev_info(dev, " Bus Types = 0x%x\n", readl(&(tb->BusTypes))); |
| 3283 | for (i = 0; i < 16; i++) |
| 3284 | temp_name[i] = readb(&(tb->ServerName[i])); |
| 3285 | temp_name[16] = '\0'; |
| 3286 | dev_info(dev, " Server Name = %s\n", temp_name); |
| 3287 | dev_info(dev, " Heartbeat Counter = 0x%x\n\n\n", |
| 3288 | readl(&(tb->HeartBeat))); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3289 | #endif /* HPSA_DEBUG */ |
Stephen M. Cameron | 58f8665 | 2010-05-27 15:13:58 -0500 | [diff] [blame] | 3290 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3291 | |
| 3292 | static int find_PCI_BAR_index(struct pci_dev *pdev, unsigned long pci_bar_addr) |
| 3293 | { |
| 3294 | int i, offset, mem_type, bar_type; |
| 3295 | |
| 3296 | if (pci_bar_addr == PCI_BASE_ADDRESS_0) /* looking for BAR zero? */ |
| 3297 | return 0; |
| 3298 | offset = 0; |
| 3299 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { |
| 3300 | bar_type = pci_resource_flags(pdev, i) & PCI_BASE_ADDRESS_SPACE; |
| 3301 | if (bar_type == PCI_BASE_ADDRESS_SPACE_IO) |
| 3302 | offset += 4; |
| 3303 | else { |
| 3304 | mem_type = pci_resource_flags(pdev, i) & |
| 3305 | PCI_BASE_ADDRESS_MEM_TYPE_MASK; |
| 3306 | switch (mem_type) { |
| 3307 | case PCI_BASE_ADDRESS_MEM_TYPE_32: |
| 3308 | case PCI_BASE_ADDRESS_MEM_TYPE_1M: |
| 3309 | offset += 4; /* 32 bit */ |
| 3310 | break; |
| 3311 | case PCI_BASE_ADDRESS_MEM_TYPE_64: |
| 3312 | offset += 8; |
| 3313 | break; |
| 3314 | default: /* reserved in PCI 2.2 */ |
| 3315 | dev_warn(&pdev->dev, |
| 3316 | "base address is invalid\n"); |
| 3317 | return -1; |
| 3318 | break; |
| 3319 | } |
| 3320 | } |
| 3321 | if (offset == pci_bar_addr - PCI_BASE_ADDRESS_0) |
| 3322 | return i + 1; |
| 3323 | } |
| 3324 | return -1; |
| 3325 | } |
| 3326 | |
| 3327 | /* If MSI/MSI-X is supported by the kernel we will try to enable it on |
| 3328 | * controllers that are capable. If not, we use IO-APIC mode. |
| 3329 | */ |
| 3330 | |
Stephen M. Cameron | 6b3f4c5 | 2010-05-27 15:13:02 -0500 | [diff] [blame] | 3331 | static void __devinit hpsa_interrupt_mode(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3332 | { |
| 3333 | #ifdef CONFIG_PCI_MSI |
| 3334 | int err; |
| 3335 | struct msix_entry hpsa_msix_entries[4] = { {0, 0}, {0, 1}, |
| 3336 | {0, 2}, {0, 3} |
| 3337 | }; |
| 3338 | |
| 3339 | /* Some boards advertise MSI but don't really support it */ |
Stephen M. Cameron | 6b3f4c5 | 2010-05-27 15:13:02 -0500 | [diff] [blame] | 3340 | if ((h->board_id == 0x40700E11) || (h->board_id == 0x40800E11) || |
| 3341 | (h->board_id == 0x40820E11) || (h->board_id == 0x40830E11)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3342 | goto default_int_mode; |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3343 | if (pci_find_capability(h->pdev, PCI_CAP_ID_MSIX)) { |
| 3344 | dev_info(&h->pdev->dev, "MSIX\n"); |
| 3345 | err = pci_enable_msix(h->pdev, hpsa_msix_entries, 4); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3346 | if (!err) { |
| 3347 | h->intr[0] = hpsa_msix_entries[0].vector; |
| 3348 | h->intr[1] = hpsa_msix_entries[1].vector; |
| 3349 | h->intr[2] = hpsa_msix_entries[2].vector; |
| 3350 | h->intr[3] = hpsa_msix_entries[3].vector; |
| 3351 | h->msix_vector = 1; |
| 3352 | return; |
| 3353 | } |
| 3354 | if (err > 0) { |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3355 | dev_warn(&h->pdev->dev, "only %d MSI-X vectors " |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3356 | "available\n", err); |
| 3357 | goto default_int_mode; |
| 3358 | } else { |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3359 | dev_warn(&h->pdev->dev, "MSI-X init failed %d\n", |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3360 | err); |
| 3361 | goto default_int_mode; |
| 3362 | } |
| 3363 | } |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3364 | if (pci_find_capability(h->pdev, PCI_CAP_ID_MSI)) { |
| 3365 | dev_info(&h->pdev->dev, "MSI\n"); |
| 3366 | if (!pci_enable_msi(h->pdev)) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3367 | h->msi_vector = 1; |
| 3368 | else |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3369 | dev_warn(&h->pdev->dev, "MSI init failed\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3370 | } |
| 3371 | default_int_mode: |
| 3372 | #endif /* CONFIG_PCI_MSI */ |
| 3373 | /* if we get here we're going to use the default interrupt mode */ |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3374 | h->intr[PERF_MODE_INT] = h->pdev->irq; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3375 | } |
| 3376 | |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 3377 | static int __devinit hpsa_lookup_board_id(struct pci_dev *pdev, u32 *board_id) |
| 3378 | { |
| 3379 | int i; |
| 3380 | u32 subsystem_vendor_id, subsystem_device_id; |
| 3381 | |
| 3382 | subsystem_vendor_id = pdev->subsystem_vendor; |
| 3383 | subsystem_device_id = pdev->subsystem_device; |
| 3384 | *board_id = ((subsystem_device_id << 16) & 0xffff0000) | |
| 3385 | subsystem_vendor_id; |
| 3386 | |
| 3387 | for (i = 0; i < ARRAY_SIZE(products); i++) |
| 3388 | if (*board_id == products[i].board_id) |
| 3389 | return i; |
| 3390 | |
Stephen M. Cameron | 6798cc0 | 2010-06-16 13:51:20 -0500 | [diff] [blame] | 3391 | if ((subsystem_vendor_id != PCI_VENDOR_ID_HP && |
| 3392 | subsystem_vendor_id != PCI_VENDOR_ID_COMPAQ) || |
| 3393 | !hpsa_allow_any) { |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 3394 | dev_warn(&pdev->dev, "unrecognized board ID: " |
| 3395 | "0x%08x, ignoring.\n", *board_id); |
| 3396 | return -ENODEV; |
| 3397 | } |
| 3398 | return ARRAY_SIZE(products) - 1; /* generic unknown smart array */ |
| 3399 | } |
| 3400 | |
Stephen M. Cameron | 85bdbab | 2010-05-27 15:12:57 -0500 | [diff] [blame] | 3401 | static inline bool hpsa_board_disabled(struct pci_dev *pdev) |
| 3402 | { |
| 3403 | u16 command; |
| 3404 | |
| 3405 | (void) pci_read_config_word(pdev, PCI_COMMAND, &command); |
| 3406 | return ((command & PCI_COMMAND_MEMORY) == 0); |
| 3407 | } |
| 3408 | |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 3409 | static int __devinit hpsa_pci_find_memory_BAR(struct pci_dev *pdev, |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 3410 | unsigned long *memory_bar) |
| 3411 | { |
| 3412 | int i; |
| 3413 | |
| 3414 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 3415 | if (pci_resource_flags(pdev, i) & IORESOURCE_MEM) { |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 3416 | /* addressing mode bits already removed */ |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 3417 | *memory_bar = pci_resource_start(pdev, i); |
| 3418 | dev_dbg(&pdev->dev, "memory BAR = %lx\n", |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 3419 | *memory_bar); |
| 3420 | return 0; |
| 3421 | } |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 3422 | dev_warn(&pdev->dev, "no memory BAR found\n"); |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 3423 | return -ENODEV; |
| 3424 | } |
| 3425 | |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 3426 | static int __devinit hpsa_wait_for_board_state(struct pci_dev *pdev, |
| 3427 | void __iomem *vaddr, int wait_for_ready) |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 3428 | { |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 3429 | int i, iterations; |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 3430 | u32 scratchpad; |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 3431 | if (wait_for_ready) |
| 3432 | iterations = HPSA_BOARD_READY_ITERATIONS; |
| 3433 | else |
| 3434 | iterations = HPSA_BOARD_NOT_READY_ITERATIONS; |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 3435 | |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 3436 | for (i = 0; i < iterations; i++) { |
| 3437 | scratchpad = readl(vaddr + SA5_SCRATCHPAD_OFFSET); |
| 3438 | if (wait_for_ready) { |
| 3439 | if (scratchpad == HPSA_FIRMWARE_READY) |
| 3440 | return 0; |
| 3441 | } else { |
| 3442 | if (scratchpad != HPSA_FIRMWARE_READY) |
| 3443 | return 0; |
| 3444 | } |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 3445 | msleep(HPSA_BOARD_READY_POLL_INTERVAL_MSECS); |
| 3446 | } |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 3447 | dev_warn(&pdev->dev, "board not ready, timed out.\n"); |
Stephen M. Cameron | 2c4c8c8 | 2010-05-27 15:13:12 -0500 | [diff] [blame] | 3448 | return -ENODEV; |
| 3449 | } |
| 3450 | |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 3451 | static int __devinit hpsa_find_cfg_addrs(struct pci_dev *pdev, |
| 3452 | void __iomem *vaddr, u32 *cfg_base_addr, u64 *cfg_base_addr_index, |
| 3453 | u64 *cfg_offset) |
| 3454 | { |
| 3455 | *cfg_base_addr = readl(vaddr + SA5_CTCFG_OFFSET); |
| 3456 | *cfg_offset = readl(vaddr + SA5_CTMEM_OFFSET); |
| 3457 | *cfg_base_addr &= (u32) 0x0000ffff; |
| 3458 | *cfg_base_addr_index = find_PCI_BAR_index(pdev, *cfg_base_addr); |
| 3459 | if (*cfg_base_addr_index == -1) { |
| 3460 | dev_warn(&pdev->dev, "cannot find cfg_base_addr_index\n"); |
| 3461 | return -ENODEV; |
| 3462 | } |
| 3463 | return 0; |
| 3464 | } |
| 3465 | |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 3466 | static int __devinit hpsa_find_cfgtables(struct ctlr_info *h) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3467 | { |
Stephen M. Cameron | 01a02ff | 2010-02-04 08:41:33 -0600 | [diff] [blame] | 3468 | u64 cfg_offset; |
| 3469 | u32 cfg_base_addr; |
| 3470 | u64 cfg_base_addr_index; |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3471 | u32 trans_offset; |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 3472 | int rc; |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 3473 | |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 3474 | rc = hpsa_find_cfg_addrs(h->pdev, h->vaddr, &cfg_base_addr, |
| 3475 | &cfg_base_addr_index, &cfg_offset); |
| 3476 | if (rc) |
| 3477 | return rc; |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 3478 | h->cfgtable = remap_pci_mem(pci_resource_start(h->pdev, |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 3479 | cfg_base_addr_index) + cfg_offset, sizeof(*h->cfgtable)); |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 3480 | if (!h->cfgtable) |
| 3481 | return -ENOMEM; |
| 3482 | /* Find performant mode table. */ |
Stephen M. Cameron | a51fd47 | 2010-06-16 13:51:30 -0500 | [diff] [blame] | 3483 | trans_offset = readl(&h->cfgtable->TransMethodOffset); |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 3484 | h->transtable = remap_pci_mem(pci_resource_start(h->pdev, |
| 3485 | cfg_base_addr_index)+cfg_offset+trans_offset, |
| 3486 | sizeof(*h->transtable)); |
| 3487 | if (!h->transtable) |
| 3488 | return -ENOMEM; |
| 3489 | return 0; |
| 3490 | } |
| 3491 | |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 3492 | static void __devinit hpsa_get_max_perf_mode_cmds(struct ctlr_info *h) |
| 3493 | { |
| 3494 | h->max_commands = readl(&(h->cfgtable->MaxPerformantModeCommands)); |
Stephen M. Cameron | 72ceeae | 2011-01-06 14:48:13 -0600 | [diff] [blame] | 3495 | |
| 3496 | /* Limit commands in memory limited kdump scenario. */ |
| 3497 | if (reset_devices && h->max_commands > 32) |
| 3498 | h->max_commands = 32; |
| 3499 | |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 3500 | if (h->max_commands < 16) { |
| 3501 | dev_warn(&h->pdev->dev, "Controller reports " |
| 3502 | "max supported commands of %d, an obvious lie. " |
| 3503 | "Using 16. Ensure that firmware is up to date.\n", |
| 3504 | h->max_commands); |
| 3505 | h->max_commands = 16; |
| 3506 | } |
| 3507 | } |
| 3508 | |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 3509 | /* Interrogate the hardware for some limits: |
| 3510 | * max commands, max SG elements without chaining, and with chaining, |
| 3511 | * SG chain block size, etc. |
| 3512 | */ |
| 3513 | static void __devinit hpsa_find_board_params(struct ctlr_info *h) |
| 3514 | { |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 3515 | hpsa_get_max_perf_mode_cmds(h); |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 3516 | h->nr_cmds = h->max_commands - 4; /* Allow room for some ioctls */ |
| 3517 | h->maxsgentries = readl(&(h->cfgtable->MaxScatterGatherElements)); |
| 3518 | /* |
| 3519 | * Limit in-command s/g elements to 32 save dma'able memory. |
| 3520 | * Howvever spec says if 0, use 31 |
| 3521 | */ |
| 3522 | h->max_cmd_sg_entries = 31; |
| 3523 | if (h->maxsgentries > 512) { |
| 3524 | h->max_cmd_sg_entries = 32; |
| 3525 | h->chainsize = h->maxsgentries - h->max_cmd_sg_entries + 1; |
| 3526 | h->maxsgentries--; /* save one for chain pointer */ |
| 3527 | } else { |
| 3528 | h->maxsgentries = 31; /* default to traditional values */ |
| 3529 | h->chainsize = 0; |
| 3530 | } |
| 3531 | } |
| 3532 | |
Stephen M. Cameron | 76c46e4 | 2010-05-27 15:13:32 -0500 | [diff] [blame] | 3533 | static inline bool hpsa_CISS_signature_present(struct ctlr_info *h) |
| 3534 | { |
| 3535 | if ((readb(&h->cfgtable->Signature[0]) != 'C') || |
| 3536 | (readb(&h->cfgtable->Signature[1]) != 'I') || |
| 3537 | (readb(&h->cfgtable->Signature[2]) != 'S') || |
| 3538 | (readb(&h->cfgtable->Signature[3]) != 'S')) { |
| 3539 | dev_warn(&h->pdev->dev, "not a valid CISS config table\n"); |
| 3540 | return false; |
| 3541 | } |
| 3542 | return true; |
| 3543 | } |
| 3544 | |
Stephen M. Cameron | f7c3910 | 2010-05-27 15:13:38 -0500 | [diff] [blame] | 3545 | /* Need to enable prefetch in the SCSI core for 6400 in x86 */ |
| 3546 | static inline void hpsa_enable_scsi_prefetch(struct ctlr_info *h) |
| 3547 | { |
| 3548 | #ifdef CONFIG_X86 |
| 3549 | u32 prefetch; |
| 3550 | |
| 3551 | prefetch = readl(&(h->cfgtable->SCSI_Prefetch)); |
| 3552 | prefetch |= 0x100; |
| 3553 | writel(prefetch, &(h->cfgtable->SCSI_Prefetch)); |
| 3554 | #endif |
| 3555 | } |
| 3556 | |
Stephen M. Cameron | 3d0eab6 | 2010-05-27 15:13:43 -0500 | [diff] [blame] | 3557 | /* Disable DMA prefetch for the P600. Otherwise an ASIC bug may result |
| 3558 | * in a prefetch beyond physical memory. |
| 3559 | */ |
| 3560 | static inline void hpsa_p600_dma_prefetch_quirk(struct ctlr_info *h) |
| 3561 | { |
| 3562 | u32 dma_prefetch; |
| 3563 | |
| 3564 | if (h->board_id != 0x3225103C) |
| 3565 | return; |
| 3566 | dma_prefetch = readl(h->vaddr + I2O_DMA1_CFG); |
| 3567 | dma_prefetch |= 0x8000; |
| 3568 | writel(dma_prefetch, h->vaddr + I2O_DMA1_CFG); |
| 3569 | } |
| 3570 | |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 3571 | static void __devinit hpsa_wait_for_mode_change_ack(struct ctlr_info *h) |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 3572 | { |
| 3573 | int i; |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 3574 | u32 doorbell_value; |
| 3575 | unsigned long flags; |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 3576 | |
| 3577 | /* under certain very rare conditions, this can take awhile. |
| 3578 | * (e.g.: hot replace a failed 144GB drive in a RAID 5 set right |
| 3579 | * as we enter this code.) |
| 3580 | */ |
| 3581 | for (i = 0; i < MAX_CONFIG_WAIT; i++) { |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 3582 | spin_lock_irqsave(&h->lock, flags); |
| 3583 | doorbell_value = readl(h->vaddr + SA5_DOORBELL); |
| 3584 | spin_unlock_irqrestore(&h->lock, flags); |
| 3585 | if (!doorbell_value & CFGTBL_ChangeReq) |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 3586 | break; |
| 3587 | /* delay and try again */ |
Stephen M. Cameron | 60d3f5b | 2011-01-06 14:48:34 -0600 | [diff] [blame] | 3588 | usleep_range(10000, 20000); |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 3589 | } |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 3590 | } |
| 3591 | |
| 3592 | static int __devinit hpsa_enter_simple_mode(struct ctlr_info *h) |
| 3593 | { |
| 3594 | u32 trans_support; |
| 3595 | |
| 3596 | trans_support = readl(&(h->cfgtable->TransportSupport)); |
| 3597 | if (!(trans_support & SIMPLE_MODE)) |
| 3598 | return -ENOTSUPP; |
| 3599 | |
| 3600 | h->max_commands = readl(&(h->cfgtable->CmdsOutMax)); |
| 3601 | /* Update the field, and then ring the doorbell */ |
| 3602 | writel(CFGTBL_Trans_Simple, &(h->cfgtable->HostWrite.TransportRequest)); |
| 3603 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
| 3604 | hpsa_wait_for_mode_change_ack(h); |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 3605 | print_cfg_table(&h->pdev->dev, h->cfgtable); |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 3606 | if (!(readl(&(h->cfgtable->TransportActive)) & CFGTBL_Trans_Simple)) { |
| 3607 | dev_warn(&h->pdev->dev, |
| 3608 | "unable to get board into simple mode\n"); |
| 3609 | return -ENODEV; |
| 3610 | } |
| 3611 | return 0; |
| 3612 | } |
| 3613 | |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 3614 | static int __devinit hpsa_pci_init(struct ctlr_info *h) |
| 3615 | { |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 3616 | int prod_index, err; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3617 | |
Stephen M. Cameron | e5c880d | 2010-05-27 15:12:52 -0500 | [diff] [blame] | 3618 | prod_index = hpsa_lookup_board_id(h->pdev, &h->board_id); |
| 3619 | if (prod_index < 0) |
| 3620 | return -ENODEV; |
| 3621 | h->product_name = products[prod_index].product_name; |
| 3622 | h->access = *(products[prod_index].access); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3623 | |
Stephen M. Cameron | 85bdbab | 2010-05-27 15:12:57 -0500 | [diff] [blame] | 3624 | if (hpsa_board_disabled(h->pdev)) { |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3625 | dev_warn(&h->pdev->dev, "controller appears to be disabled\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3626 | return -ENODEV; |
| 3627 | } |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3628 | err = pci_enable_device(h->pdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3629 | if (err) { |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3630 | dev_warn(&h->pdev->dev, "unable to enable PCI device\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3631 | return err; |
| 3632 | } |
| 3633 | |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3634 | err = pci_request_regions(h->pdev, "hpsa"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3635 | if (err) { |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3636 | dev_err(&h->pdev->dev, |
| 3637 | "cannot obtain PCI resources, aborting\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3638 | return err; |
| 3639 | } |
Stephen M. Cameron | 6b3f4c5 | 2010-05-27 15:13:02 -0500 | [diff] [blame] | 3640 | hpsa_interrupt_mode(h); |
Stephen M. Cameron | 12d2cd4 | 2010-06-16 13:51:25 -0500 | [diff] [blame] | 3641 | err = hpsa_pci_find_memory_BAR(h->pdev, &h->paddr); |
Stephen M. Cameron | 3a7774c | 2010-05-27 15:13:07 -0500 | [diff] [blame] | 3642 | if (err) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3643 | goto err_out_free_res; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3644 | h->vaddr = remap_pci_mem(h->paddr, 0x250); |
Stephen M. Cameron | 204892e | 2010-05-27 15:13:22 -0500 | [diff] [blame] | 3645 | if (!h->vaddr) { |
| 3646 | err = -ENOMEM; |
| 3647 | goto err_out_free_res; |
| 3648 | } |
Stephen M. Cameron | fe5389c | 2011-01-06 14:48:03 -0600 | [diff] [blame] | 3649 | 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] | 3650 | if (err) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3651 | goto err_out_free_res; |
Stephen M. Cameron | 77c4495 | 2010-05-27 15:13:17 -0500 | [diff] [blame] | 3652 | err = hpsa_find_cfgtables(h); |
| 3653 | if (err) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3654 | goto err_out_free_res; |
Stephen M. Cameron | b93d753 | 2010-05-27 15:13:27 -0500 | [diff] [blame] | 3655 | hpsa_find_board_params(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3656 | |
Stephen M. Cameron | 76c46e4 | 2010-05-27 15:13:32 -0500 | [diff] [blame] | 3657 | if (!hpsa_CISS_signature_present(h)) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3658 | err = -ENODEV; |
| 3659 | goto err_out_free_res; |
| 3660 | } |
Stephen M. Cameron | f7c3910 | 2010-05-27 15:13:38 -0500 | [diff] [blame] | 3661 | hpsa_enable_scsi_prefetch(h); |
Stephen M. Cameron | 3d0eab6 | 2010-05-27 15:13:43 -0500 | [diff] [blame] | 3662 | hpsa_p600_dma_prefetch_quirk(h); |
Stephen M. Cameron | eb6b2ae | 2010-05-27 15:13:48 -0500 | [diff] [blame] | 3663 | err = hpsa_enter_simple_mode(h); |
| 3664 | if (err) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3665 | goto err_out_free_res; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3666 | return 0; |
| 3667 | |
| 3668 | err_out_free_res: |
Stephen M. Cameron | 204892e | 2010-05-27 15:13:22 -0500 | [diff] [blame] | 3669 | if (h->transtable) |
| 3670 | iounmap(h->transtable); |
| 3671 | if (h->cfgtable) |
| 3672 | iounmap(h->cfgtable); |
| 3673 | if (h->vaddr) |
| 3674 | iounmap(h->vaddr); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3675 | /* |
| 3676 | * Deliberately omit pci_disable_device(): it does something nasty to |
| 3677 | * Smart Array controllers that pci_enable_device does not undo |
| 3678 | */ |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3679 | pci_release_regions(h->pdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3680 | return err; |
| 3681 | } |
| 3682 | |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3683 | static void __devinit hpsa_hba_inquiry(struct ctlr_info *h) |
| 3684 | { |
| 3685 | int rc; |
| 3686 | |
| 3687 | #define HBA_INQUIRY_BYTE_COUNT 64 |
| 3688 | h->hba_inquiry_data = kmalloc(HBA_INQUIRY_BYTE_COUNT, GFP_KERNEL); |
| 3689 | if (!h->hba_inquiry_data) |
| 3690 | return; |
| 3691 | rc = hpsa_scsi_do_inquiry(h, RAID_CTLR_LUNID, 0, |
| 3692 | h->hba_inquiry_data, HBA_INQUIRY_BYTE_COUNT); |
| 3693 | if (rc != 0) { |
| 3694 | kfree(h->hba_inquiry_data); |
| 3695 | h->hba_inquiry_data = NULL; |
| 3696 | } |
| 3697 | } |
| 3698 | |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 3699 | static __devinit int hpsa_init_reset_devices(struct pci_dev *pdev) |
| 3700 | { |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3701 | int rc, i; |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 3702 | |
| 3703 | if (!reset_devices) |
| 3704 | return 0; |
| 3705 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3706 | /* Reset the controller with a PCI power-cycle or via doorbell */ |
| 3707 | rc = hpsa_kdump_hard_reset_controller(pdev); |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 3708 | |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3709 | /* -ENOTSUPP here means we cannot reset the controller |
| 3710 | * but it's already (and still) up and running in |
Stephen M. Cameron | 1886765 | 2010-06-16 13:51:45 -0500 | [diff] [blame] | 3711 | * "performant mode". Or, it might be 640x, which can't reset |
| 3712 | * due to concerns about shared bbwc between 6402/6404 pair. |
Stephen M. Cameron | 1df8552 | 2010-06-16 13:51:40 -0500 | [diff] [blame] | 3713 | */ |
| 3714 | if (rc == -ENOTSUPP) |
| 3715 | return 0; /* just try to do the kdump anyhow. */ |
| 3716 | if (rc) |
| 3717 | return -ENODEV; |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 3718 | |
| 3719 | /* Now try to get the controller to respond to a no-op */ |
| 3720 | for (i = 0; i < HPSA_POST_RESET_NOOP_RETRIES; i++) { |
| 3721 | if (hpsa_noop(pdev) == 0) |
| 3722 | break; |
| 3723 | else |
| 3724 | dev_warn(&pdev->dev, "no-op failed%s\n", |
| 3725 | (i < 11 ? "; re-trying" : "")); |
| 3726 | } |
| 3727 | return 0; |
| 3728 | } |
| 3729 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3730 | static int __devinit hpsa_init_one(struct pci_dev *pdev, |
| 3731 | const struct pci_device_id *ent) |
| 3732 | { |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 3733 | int dac, rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3734 | struct ctlr_info *h; |
| 3735 | |
| 3736 | if (number_of_controllers == 0) |
| 3737 | printk(KERN_INFO DRIVER_NAME "\n"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3738 | |
Stephen M. Cameron | 4c2a8c4 | 2010-06-16 13:51:35 -0500 | [diff] [blame] | 3739 | rc = hpsa_init_reset_devices(pdev); |
| 3740 | if (rc) |
| 3741 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3742 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3743 | /* Command structures must be aligned on a 32-byte boundary because |
| 3744 | * the 5 lower bits of the address are used by the hardware. and by |
| 3745 | * the driver. See comments in hpsa.h for more info. |
| 3746 | */ |
| 3747 | #define COMMANDLIST_ALIGNMENT 32 |
| 3748 | BUILD_BUG_ON(sizeof(struct CommandList) % COMMANDLIST_ALIGNMENT); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3749 | h = kzalloc(sizeof(*h), GFP_KERNEL); |
| 3750 | if (!h) |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 3751 | return -ENOMEM; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3752 | |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3753 | h->pdev = pdev; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3754 | h->busy_initializing = 1; |
| 3755 | INIT_HLIST_HEAD(&h->cmpQ); |
| 3756 | INIT_HLIST_HEAD(&h->reqQ); |
Stephen M. Cameron | 6eaf46f | 2011-01-06 14:48:24 -0600 | [diff] [blame] | 3757 | spin_lock_init(&h->lock); |
| 3758 | spin_lock_init(&h->scan_lock); |
Stephen M. Cameron | 55c06c7 | 2010-05-27 15:12:46 -0500 | [diff] [blame] | 3759 | rc = hpsa_pci_init(h); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 3760 | if (rc != 0) |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3761 | goto clean1; |
| 3762 | |
| 3763 | sprintf(h->devname, "hpsa%d", number_of_controllers); |
| 3764 | h->ctlr = number_of_controllers; |
| 3765 | number_of_controllers++; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3766 | |
| 3767 | /* configure PCI DMA stuff */ |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 3768 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(64)); |
| 3769 | if (rc == 0) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3770 | dac = 1; |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 3771 | } else { |
| 3772 | rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
| 3773 | if (rc == 0) { |
| 3774 | dac = 0; |
| 3775 | } else { |
| 3776 | dev_err(&pdev->dev, "no suitable DMA available\n"); |
| 3777 | goto clean1; |
| 3778 | } |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3779 | } |
| 3780 | |
| 3781 | /* make sure the board interrupts are off */ |
| 3782 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
Stephen M. Cameron | 10f6601 | 2010-06-16 13:51:50 -0500 | [diff] [blame] | 3783 | |
| 3784 | if (h->msix_vector || h->msi_vector) |
| 3785 | rc = request_irq(h->intr[PERF_MODE_INT], do_hpsa_intr_msi, |
| 3786 | IRQF_DISABLED, h->devname, h); |
| 3787 | else |
| 3788 | rc = request_irq(h->intr[PERF_MODE_INT], do_hpsa_intr_intx, |
| 3789 | IRQF_DISABLED, h->devname, h); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 3790 | if (rc) { |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3791 | dev_err(&pdev->dev, "unable to get irq %d for %s\n", |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3792 | h->intr[PERF_MODE_INT], h->devname); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3793 | goto clean2; |
| 3794 | } |
| 3795 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3796 | dev_info(&pdev->dev, "%s: <0x%x> at IRQ %d%s using DAC\n", |
| 3797 | h->devname, pdev->device, |
| 3798 | h->intr[PERF_MODE_INT], dac ? "" : " not"); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3799 | |
| 3800 | h->cmd_pool_bits = |
| 3801 | kmalloc(((h->nr_cmds + BITS_PER_LONG - |
| 3802 | 1) / BITS_PER_LONG) * sizeof(unsigned long), GFP_KERNEL); |
| 3803 | h->cmd_pool = pci_alloc_consistent(h->pdev, |
| 3804 | h->nr_cmds * sizeof(*h->cmd_pool), |
| 3805 | &(h->cmd_pool_dhandle)); |
| 3806 | h->errinfo_pool = pci_alloc_consistent(h->pdev, |
| 3807 | h->nr_cmds * sizeof(*h->errinfo_pool), |
| 3808 | &(h->errinfo_pool_dhandle)); |
| 3809 | if ((h->cmd_pool_bits == NULL) |
| 3810 | || (h->cmd_pool == NULL) |
| 3811 | || (h->errinfo_pool == NULL)) { |
| 3812 | dev_err(&pdev->dev, "out of memory"); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 3813 | rc = -ENOMEM; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3814 | goto clean4; |
| 3815 | } |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3816 | if (hpsa_allocate_sg_chain_blocks(h)) |
| 3817 | goto clean4; |
Stephen M. Cameron | a08a847 | 2010-02-04 08:43:16 -0600 | [diff] [blame] | 3818 | init_waitqueue_head(&h->scan_wait_queue); |
| 3819 | h->scan_finished = 1; /* no scan currently in progress */ |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3820 | |
| 3821 | pci_set_drvdata(pdev, h); |
| 3822 | memset(h->cmd_pool_bits, 0, |
| 3823 | ((h->nr_cmds + BITS_PER_LONG - |
| 3824 | 1) / BITS_PER_LONG) * sizeof(unsigned long)); |
| 3825 | |
| 3826 | hpsa_scsi_setup(h); |
| 3827 | |
| 3828 | /* Turn the interrupts on so we can service requests */ |
| 3829 | h->access.set_intr_mask(h, HPSA_INTR_ON); |
| 3830 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3831 | hpsa_put_ctlr_into_performant_mode(h); |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3832 | hpsa_hba_inquiry(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3833 | hpsa_register_scsi(h); /* hook ourselves into SCSI subsystem */ |
| 3834 | h->busy_initializing = 0; |
| 3835 | return 1; |
| 3836 | |
| 3837 | clean4: |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3838 | hpsa_free_sg_chain_blocks(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3839 | kfree(h->cmd_pool_bits); |
| 3840 | if (h->cmd_pool) |
| 3841 | pci_free_consistent(h->pdev, |
| 3842 | h->nr_cmds * sizeof(struct CommandList), |
| 3843 | h->cmd_pool, h->cmd_pool_dhandle); |
| 3844 | if (h->errinfo_pool) |
| 3845 | pci_free_consistent(h->pdev, |
| 3846 | h->nr_cmds * sizeof(struct ErrorInfo), |
| 3847 | h->errinfo_pool, |
| 3848 | h->errinfo_pool_dhandle); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3849 | free_irq(h->intr[PERF_MODE_INT], h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3850 | clean2: |
| 3851 | clean1: |
| 3852 | h->busy_initializing = 0; |
| 3853 | kfree(h); |
Stephen M. Cameron | ecd9aad | 2010-02-04 08:41:59 -0600 | [diff] [blame] | 3854 | return rc; |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3855 | } |
| 3856 | |
| 3857 | static void hpsa_flush_cache(struct ctlr_info *h) |
| 3858 | { |
| 3859 | char *flush_buf; |
| 3860 | struct CommandList *c; |
| 3861 | |
| 3862 | flush_buf = kzalloc(4, GFP_KERNEL); |
| 3863 | if (!flush_buf) |
| 3864 | return; |
| 3865 | |
| 3866 | c = cmd_special_alloc(h); |
| 3867 | if (!c) { |
| 3868 | dev_warn(&h->pdev->dev, "cmd_special_alloc returned NULL!\n"); |
| 3869 | goto out_of_memory; |
| 3870 | } |
| 3871 | fill_cmd(c, HPSA_CACHE_FLUSH, h, flush_buf, 4, 0, |
| 3872 | RAID_CTLR_LUNID, TYPE_CMD); |
| 3873 | hpsa_scsi_do_simple_cmd_with_retry(h, c, PCI_DMA_TODEVICE); |
| 3874 | if (c->err_info->CommandStatus != 0) |
| 3875 | dev_warn(&h->pdev->dev, |
| 3876 | "error flushing cache on controller\n"); |
| 3877 | cmd_special_free(h, c); |
| 3878 | out_of_memory: |
| 3879 | kfree(flush_buf); |
| 3880 | } |
| 3881 | |
| 3882 | static void hpsa_shutdown(struct pci_dev *pdev) |
| 3883 | { |
| 3884 | struct ctlr_info *h; |
| 3885 | |
| 3886 | h = pci_get_drvdata(pdev); |
| 3887 | /* Turn board interrupts off and send the flush cache command |
| 3888 | * sendcmd will turn off interrupt, and send the flush... |
| 3889 | * To write all data in the battery backed cache to disks |
| 3890 | */ |
| 3891 | hpsa_flush_cache(h); |
| 3892 | h->access.set_intr_mask(h, HPSA_INTR_OFF); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3893 | free_irq(h->intr[PERF_MODE_INT], h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3894 | #ifdef CONFIG_PCI_MSI |
| 3895 | if (h->msix_vector) |
| 3896 | pci_disable_msix(h->pdev); |
| 3897 | else if (h->msi_vector) |
| 3898 | pci_disable_msi(h->pdev); |
| 3899 | #endif /* CONFIG_PCI_MSI */ |
| 3900 | } |
| 3901 | |
| 3902 | static void __devexit hpsa_remove_one(struct pci_dev *pdev) |
| 3903 | { |
| 3904 | struct ctlr_info *h; |
| 3905 | |
| 3906 | if (pci_get_drvdata(pdev) == NULL) { |
| 3907 | dev_err(&pdev->dev, "unable to remove device \n"); |
| 3908 | return; |
| 3909 | } |
| 3910 | h = pci_get_drvdata(pdev); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3911 | hpsa_unregister_scsi(h); /* unhook from SCSI subsystem */ |
| 3912 | hpsa_shutdown(pdev); |
| 3913 | iounmap(h->vaddr); |
Stephen M. Cameron | 204892e | 2010-05-27 15:13:22 -0500 | [diff] [blame] | 3914 | iounmap(h->transtable); |
| 3915 | iounmap(h->cfgtable); |
Stephen M. Cameron | 33a2ffc | 2010-02-25 14:03:27 -0600 | [diff] [blame] | 3916 | hpsa_free_sg_chain_blocks(h); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3917 | pci_free_consistent(h->pdev, |
| 3918 | h->nr_cmds * sizeof(struct CommandList), |
| 3919 | h->cmd_pool, h->cmd_pool_dhandle); |
| 3920 | pci_free_consistent(h->pdev, |
| 3921 | h->nr_cmds * sizeof(struct ErrorInfo), |
| 3922 | h->errinfo_pool, h->errinfo_pool_dhandle); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3923 | pci_free_consistent(h->pdev, h->reply_pool_size, |
| 3924 | h->reply_pool, h->reply_pool_dhandle); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3925 | kfree(h->cmd_pool_bits); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3926 | kfree(h->blockFetchTable); |
Stephen M. Cameron | 339b2b1 | 2010-02-04 08:42:50 -0600 | [diff] [blame] | 3927 | kfree(h->hba_inquiry_data); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3928 | /* |
| 3929 | * Deliberately omit pci_disable_device(): it does something nasty to |
| 3930 | * Smart Array controllers that pci_enable_device does not undo |
| 3931 | */ |
| 3932 | pci_release_regions(pdev); |
| 3933 | pci_set_drvdata(pdev, NULL); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 3934 | kfree(h); |
| 3935 | } |
| 3936 | |
| 3937 | static int hpsa_suspend(__attribute__((unused)) struct pci_dev *pdev, |
| 3938 | __attribute__((unused)) pm_message_t state) |
| 3939 | { |
| 3940 | return -ENOSYS; |
| 3941 | } |
| 3942 | |
| 3943 | static int hpsa_resume(__attribute__((unused)) struct pci_dev *pdev) |
| 3944 | { |
| 3945 | return -ENOSYS; |
| 3946 | } |
| 3947 | |
| 3948 | static struct pci_driver hpsa_pci_driver = { |
| 3949 | .name = "hpsa", |
| 3950 | .probe = hpsa_init_one, |
| 3951 | .remove = __devexit_p(hpsa_remove_one), |
| 3952 | .id_table = hpsa_pci_device_id, /* id_table */ |
| 3953 | .shutdown = hpsa_shutdown, |
| 3954 | .suspend = hpsa_suspend, |
| 3955 | .resume = hpsa_resume, |
| 3956 | }; |
| 3957 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3958 | /* Fill in bucket_map[], given nsgs (the max number of |
| 3959 | * scatter gather elements supported) and bucket[], |
| 3960 | * which is an array of 8 integers. The bucket[] array |
| 3961 | * contains 8 different DMA transfer sizes (in 16 |
| 3962 | * byte increments) which the controller uses to fetch |
| 3963 | * commands. This function fills in bucket_map[], which |
| 3964 | * maps a given number of scatter gather elements to one of |
| 3965 | * the 8 DMA transfer sizes. The point of it is to allow the |
| 3966 | * controller to only do as much DMA as needed to fetch the |
| 3967 | * command, with the DMA transfer size encoded in the lower |
| 3968 | * bits of the command address. |
| 3969 | */ |
| 3970 | static void calc_bucket_map(int bucket[], int num_buckets, |
| 3971 | int nsgs, int *bucket_map) |
| 3972 | { |
| 3973 | int i, j, b, size; |
| 3974 | |
| 3975 | /* even a command with 0 SGs requires 4 blocks */ |
| 3976 | #define MINIMUM_TRANSFER_BLOCKS 4 |
| 3977 | #define NUM_BUCKETS 8 |
| 3978 | /* Note, bucket_map must have nsgs+1 entries. */ |
| 3979 | for (i = 0; i <= nsgs; i++) { |
| 3980 | /* Compute size of a command with i SG entries */ |
| 3981 | size = i + MINIMUM_TRANSFER_BLOCKS; |
| 3982 | b = num_buckets; /* Assume the biggest bucket */ |
| 3983 | /* Find the bucket that is just big enough */ |
| 3984 | for (j = 0; j < 8; j++) { |
| 3985 | if (bucket[j] >= size) { |
| 3986 | b = j; |
| 3987 | break; |
| 3988 | } |
| 3989 | } |
| 3990 | /* for a command with i SG entries, use bucket b. */ |
| 3991 | bucket_map[i] = b; |
| 3992 | } |
| 3993 | } |
| 3994 | |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 3995 | static __devinit void hpsa_enter_performant_mode(struct ctlr_info *h) |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 3996 | { |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 3997 | int i; |
| 3998 | unsigned long register_value; |
Stephen M. Cameron | def342b | 2010-05-27 15:14:39 -0500 | [diff] [blame] | 3999 | |
| 4000 | /* This is a bit complicated. There are 8 registers on |
| 4001 | * the controller which we write to to tell it 8 different |
| 4002 | * sizes of commands which there may be. It's a way of |
| 4003 | * reducing the DMA done to fetch each command. Encoded into |
| 4004 | * each command's tag are 3 bits which communicate to the controller |
| 4005 | * which of the eight sizes that command fits within. The size of |
| 4006 | * each command depends on how many scatter gather entries there are. |
| 4007 | * Each SG entry requires 16 bytes. The eight registers are programmed |
| 4008 | * with the number of 16-byte blocks a command of that size requires. |
| 4009 | * The smallest command possible requires 5 such 16 byte blocks. |
| 4010 | * the largest command possible requires MAXSGENTRIES + 4 16-byte |
| 4011 | * blocks. Note, this only extends to the SG entries contained |
| 4012 | * within the command block, and does not extend to chained blocks |
| 4013 | * of SG elements. bft[] contains the eight values we write to |
| 4014 | * the registers. They are not evenly distributed, but have more |
| 4015 | * sizes for small commands, and fewer sizes for larger commands. |
| 4016 | */ |
| 4017 | int bft[8] = {5, 6, 8, 10, 12, 20, 28, MAXSGENTRIES + 4}; |
| 4018 | BUILD_BUG_ON(28 > MAXSGENTRIES + 4); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 4019 | /* 5 = 1 s/g entry or 4k |
| 4020 | * 6 = 2 s/g entry or 8k |
| 4021 | * 8 = 4 s/g entry or 16k |
| 4022 | * 10 = 6 s/g entry or 24k |
| 4023 | */ |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 4024 | |
| 4025 | h->reply_pool_wraparound = 1; /* spec: init to 1 */ |
| 4026 | |
| 4027 | /* Controller spec: zero out this buffer. */ |
| 4028 | memset(h->reply_pool, 0, h->reply_pool_size); |
| 4029 | h->reply_pool_head = h->reply_pool; |
| 4030 | |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 4031 | bft[7] = h->max_sg_entries + 4; |
| 4032 | calc_bucket_map(bft, ARRAY_SIZE(bft), 32, h->blockFetchTable); |
| 4033 | for (i = 0; i < 8; i++) |
| 4034 | writel(bft[i], &h->transtable->BlockFetch[i]); |
| 4035 | |
| 4036 | /* size of controller ring buffer */ |
| 4037 | writel(h->max_commands, &h->transtable->RepQSize); |
| 4038 | writel(1, &h->transtable->RepQCount); |
| 4039 | writel(0, &h->transtable->RepQCtrAddrLow32); |
| 4040 | writel(0, &h->transtable->RepQCtrAddrHigh32); |
| 4041 | writel(h->reply_pool_dhandle, &h->transtable->RepQAddr0Low32); |
| 4042 | writel(0, &h->transtable->RepQAddr0High32); |
| 4043 | writel(CFGTBL_Trans_Performant, |
| 4044 | &(h->cfgtable->HostWrite.TransportRequest)); |
| 4045 | writel(CFGTBL_ChangeReq, h->vaddr + SA5_DOORBELL); |
Stephen M. Cameron | 3f4336f | 2010-05-27 15:14:08 -0500 | [diff] [blame] | 4046 | hpsa_wait_for_mode_change_ack(h); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 4047 | register_value = readl(&(h->cfgtable->TransportActive)); |
| 4048 | if (!(register_value & CFGTBL_Trans_Performant)) { |
| 4049 | dev_warn(&h->pdev->dev, "unable to get board into" |
| 4050 | " performant mode\n"); |
| 4051 | return; |
| 4052 | } |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 4053 | } |
| 4054 | |
| 4055 | static __devinit void hpsa_put_ctlr_into_performant_mode(struct ctlr_info *h) |
| 4056 | { |
| 4057 | u32 trans_support; |
| 4058 | |
Stephen M. Cameron | 02ec19c | 2011-01-06 14:48:29 -0600 | [diff] [blame] | 4059 | if (hpsa_simple_mode) |
| 4060 | return; |
| 4061 | |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 4062 | trans_support = readl(&(h->cfgtable->TransportSupport)); |
| 4063 | if (!(trans_support & PERFORMANT_MODE)) |
| 4064 | return; |
| 4065 | |
Stephen M. Cameron | cba3d38 | 2010-06-16 13:51:56 -0500 | [diff] [blame] | 4066 | hpsa_get_max_perf_mode_cmds(h); |
Stephen M. Cameron | 6c311b5 | 2010-05-27 15:14:19 -0500 | [diff] [blame] | 4067 | h->max_sg_entries = 32; |
| 4068 | /* Performant mode ring buffer and supporting data structures */ |
| 4069 | h->reply_pool_size = h->max_commands * sizeof(u64); |
| 4070 | h->reply_pool = pci_alloc_consistent(h->pdev, h->reply_pool_size, |
| 4071 | &(h->reply_pool_dhandle)); |
| 4072 | |
| 4073 | /* Need a block fetch table for performant mode */ |
| 4074 | h->blockFetchTable = kmalloc(((h->max_sg_entries+1) * |
| 4075 | sizeof(u32)), GFP_KERNEL); |
| 4076 | |
| 4077 | if ((h->reply_pool == NULL) |
| 4078 | || (h->blockFetchTable == NULL)) |
| 4079 | goto clean_up; |
| 4080 | |
| 4081 | hpsa_enter_performant_mode(h); |
Don Brace | 303932f | 2010-02-04 08:42:40 -0600 | [diff] [blame] | 4082 | |
| 4083 | /* Change the access methods to the performant access methods */ |
| 4084 | h->access = SA5_performant_access; |
| 4085 | h->transMethod = CFGTBL_Trans_Performant; |
| 4086 | |
| 4087 | return; |
| 4088 | |
| 4089 | clean_up: |
| 4090 | if (h->reply_pool) |
| 4091 | pci_free_consistent(h->pdev, h->reply_pool_size, |
| 4092 | h->reply_pool, h->reply_pool_dhandle); |
| 4093 | kfree(h->blockFetchTable); |
| 4094 | } |
| 4095 | |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4096 | /* |
| 4097 | * This is it. Register the PCI driver information for the cards we control |
| 4098 | * the OS will call our registered routines when it finds one of our cards. |
| 4099 | */ |
| 4100 | static int __init hpsa_init(void) |
| 4101 | { |
Mike Miller | 3146840 | 2010-02-25 14:03:12 -0600 | [diff] [blame] | 4102 | return pci_register_driver(&hpsa_pci_driver); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4103 | } |
| 4104 | |
| 4105 | static void __exit hpsa_cleanup(void) |
| 4106 | { |
| 4107 | pci_unregister_driver(&hpsa_pci_driver); |
Stephen M. Cameron | edd1636 | 2009-12-08 14:09:11 -0800 | [diff] [blame] | 4108 | } |
| 4109 | |
| 4110 | module_init(hpsa_init); |
| 4111 | module_exit(hpsa_cleanup); |