| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1 | /* |
Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 2 | * QLogic Fibre Channel HBA Driver |
Andrew Vasquez | 07e264b | 2011-03-30 11:46:23 -0700 | [diff] [blame] | 3 | * Copyright (c) 2003-2011 QLogic Corporation |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 4 | * |
Andrew Vasquez | fa90c54 | 2005-10-27 11:10:08 -0700 | [diff] [blame] | 5 | * See LICENSE.qla2xxx for copyright and licensing details. |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 6 | */ |
| 7 | #include "qla_def.h" |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 8 | #include "qla_target.h" |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 9 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 10 | #include <linux/kthread.h> |
| 7aaef27 | 2005-04-17 16:32:42 -0500 | [diff] [blame] | 11 | #include <linux/vmalloc.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/slab.h> |
FUJITA Tomonori | 00eabe7 | 2008-07-28 11:59:20 +0900 | [diff] [blame] | 13 | #include <linux/delay.h> |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 14 | |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 15 | static int qla24xx_vport_disable(struct fc_vport *, bool); |
Giridhar Malavali | 6e98016 | 2010-03-19 17:03:58 -0700 | [diff] [blame] | 16 | |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 17 | /* SYSFS attributes --------------------------------------------------------- */ |
| 18 | |
| 19 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 20 | qla2x00_sysfs_read_fw_dump(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 21 | struct bin_attribute *bin_attr, |
| 22 | char *buf, loff_t off, size_t count) |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 23 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 24 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 25 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 26 | struct qla_hw_data *ha = vha->hw; |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 27 | int rval = 0; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 28 | |
| 29 | if (ha->fw_dump_reading == 0) |
| 30 | return 0; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 31 | |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 32 | if (IS_QLA82XX(ha)) { |
| 33 | if (off < ha->md_template_size) { |
| 34 | rval = memory_read_from_buffer(buf, count, |
| 35 | &off, ha->md_tmplt_hdr, ha->md_template_size); |
| 36 | return rval; |
| 37 | } |
| 38 | off -= ha->md_template_size; |
| 39 | rval = memory_read_from_buffer(buf, count, |
| 40 | &off, ha->md_dump, ha->md_dump_size); |
| 41 | return rval; |
| 42 | } else |
| 43 | return memory_read_from_buffer(buf, count, &off, ha->fw_dump, |
Akinobu Mita | b3dc908 | 2008-07-24 08:31:47 -0700 | [diff] [blame] | 44 | ha->fw_dump_len); |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 48 | qla2x00_sysfs_write_fw_dump(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 49 | struct bin_attribute *bin_attr, |
| 50 | char *buf, loff_t off, size_t count) |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 51 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 52 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 53 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 54 | struct qla_hw_data *ha = vha->hw; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 55 | int reading; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 56 | |
| 57 | if (off != 0) |
| 58 | return (0); |
| 59 | |
| 60 | reading = simple_strtol(buf, NULL, 10); |
| 61 | switch (reading) { |
| 62 | case 0: |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 63 | if (!ha->fw_dump_reading) |
| 64 | break; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 65 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 66 | ql_log(ql_log_info, vha, 0x705d, |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 67 | "Firmware dump cleared on (%ld).\n", vha->host_no); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 68 | |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 69 | if (IS_QLA82XX(vha->hw)) { |
| 70 | qla82xx_md_free(vha); |
| 71 | qla82xx_md_prep(vha); |
| 72 | } |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 73 | ha->fw_dump_reading = 0; |
| 74 | ha->fw_dumped = 0; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 75 | break; |
| 76 | case 1: |
Andrew Vasquez | d4e3e04 | 2006-05-17 15:09:50 -0700 | [diff] [blame] | 77 | if (ha->fw_dumped && !ha->fw_dump_reading) { |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 78 | ha->fw_dump_reading = 1; |
| 79 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 80 | ql_log(ql_log_info, vha, 0x705e, |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 81 | "Raw firmware dump ready for read on (%ld).\n", |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 82 | vha->host_no); |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 83 | } |
| 84 | break; |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 85 | case 2: |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 86 | qla2x00_alloc_fw_dump(vha); |
Andrew Vasquez | a7a167b | 2006-06-23 16:10:29 -0700 | [diff] [blame] | 87 | break; |
Andrew Vasquez | 68af081 | 2008-05-12 22:21:13 -0700 | [diff] [blame] | 88 | case 3: |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 89 | if (IS_QLA82XX(ha)) { |
| 90 | qla82xx_idc_lock(ha); |
| 91 | qla82xx_set_reset_owner(vha); |
| 92 | qla82xx_idc_unlock(ha); |
| 93 | } else |
| 94 | qla2x00_system_error(vha); |
| 95 | break; |
| 96 | case 4: |
| 97 | if (IS_QLA82XX(ha)) { |
| 98 | if (ha->md_tmplt_hdr) |
| 99 | ql_dbg(ql_dbg_user, vha, 0x705b, |
| 100 | "MiniDump supported with this firmware.\n"); |
| 101 | else |
| 102 | ql_dbg(ql_dbg_user, vha, 0x709d, |
| 103 | "MiniDump not supported with this firmware.\n"); |
| 104 | } |
| 105 | break; |
| 106 | case 5: |
| 107 | if (IS_QLA82XX(ha)) |
| 108 | set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); |
Andrew Vasquez | 68af081 | 2008-05-12 22:21:13 -0700 | [diff] [blame] | 109 | break; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 110 | } |
Joe Carnuccio | 71dfe9e | 2011-11-18 09:03:13 -0800 | [diff] [blame] | 111 | return count; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | static struct bin_attribute sysfs_fw_dump_attr = { |
| 115 | .attr = { |
| 116 | .name = "fw_dump", |
| 117 | .mode = S_IRUSR | S_IWUSR, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 118 | }, |
| 119 | .size = 0, |
| 120 | .read = qla2x00_sysfs_read_fw_dump, |
| 121 | .write = qla2x00_sysfs_write_fw_dump, |
| 122 | }; |
| 123 | |
| 124 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 125 | qla2x00_sysfs_read_nvram(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 126 | struct bin_attribute *bin_attr, |
| 127 | char *buf, loff_t off, size_t count) |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 128 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 129 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 130 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 131 | struct qla_hw_data *ha = vha->hw; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 132 | |
Akinobu Mita | b3dc908 | 2008-07-24 08:31:47 -0700 | [diff] [blame] | 133 | if (!capable(CAP_SYS_ADMIN)) |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 134 | return 0; |
| 135 | |
Andrew Vasquez | 6749ce3 | 2009-03-24 09:08:17 -0700 | [diff] [blame] | 136 | if (IS_NOCACHE_VPD_TYPE(ha)) |
Andrew Vasquez | 8f97975 | 2009-04-06 22:33:43 -0700 | [diff] [blame] | 137 | ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2, |
Andrew Vasquez | 6749ce3 | 2009-03-24 09:08:17 -0700 | [diff] [blame] | 138 | ha->nvram_size); |
Akinobu Mita | b3dc908 | 2008-07-24 08:31:47 -0700 | [diff] [blame] | 139 | return memory_read_from_buffer(buf, count, &off, ha->nvram, |
| 140 | ha->nvram_size); |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 144 | qla2x00_sysfs_write_nvram(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 145 | struct bin_attribute *bin_attr, |
| 146 | char *buf, loff_t off, size_t count) |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 147 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 148 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 149 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 150 | struct qla_hw_data *ha = vha->hw; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 151 | uint16_t cnt; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 152 | |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 153 | if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size || |
| 154 | !ha->isp_ops->write_nvram) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 155 | return -EINVAL; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 156 | |
| 157 | /* Checksum NVRAM. */ |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 158 | if (IS_FWI2_CAPABLE(ha)) { |
Andrew Vasquez | 459c537 | 2005-07-06 10:31:07 -0700 | [diff] [blame] | 159 | uint32_t *iter; |
| 160 | uint32_t chksum; |
| 161 | |
| 162 | iter = (uint32_t *)buf; |
| 163 | chksum = 0; |
| 164 | for (cnt = 0; cnt < ((count >> 2) - 1); cnt++) |
| 165 | chksum += le32_to_cpu(*iter++); |
| 166 | chksum = ~chksum + 1; |
| 167 | *iter = cpu_to_le32(chksum); |
| 168 | } else { |
| 169 | uint8_t *iter; |
| 170 | uint8_t chksum; |
| 171 | |
| 172 | iter = (uint8_t *)buf; |
| 173 | chksum = 0; |
| 174 | for (cnt = 0; cnt < count - 1; cnt++) |
| 175 | chksum += *iter++; |
| 176 | chksum = ~chksum + 1; |
| 177 | *iter = chksum; |
| 178 | } |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 179 | |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 180 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 181 | ql_log(ql_log_warn, vha, 0x705f, |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 182 | "HBA not online, failing NVRAM update.\n"); |
| 183 | return -EAGAIN; |
| 184 | } |
| 185 | |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 186 | /* Write NVRAM. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 187 | ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->nvram_base, count); |
| 188 | ha->isp_ops->read_nvram(vha, (uint8_t *)ha->nvram, ha->nvram_base, |
Seokmann Ju | 281afe1 | 2007-07-26 13:43:34 -0700 | [diff] [blame] | 189 | count); |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 190 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 191 | ql_dbg(ql_dbg_user, vha, 0x7060, |
| 192 | "Setting ISP_ABORT_NEEDED\n"); |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 193 | /* NVRAM settings take effect immediately. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 194 | set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 195 | qla2xxx_wake_dpc(vha); |
| 196 | qla2x00_wait_for_chip_reset(vha); |
Andrew Vasquez | 26b8d348 | 2007-01-29 10:22:28 -0800 | [diff] [blame] | 197 | |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 198 | return count; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | static struct bin_attribute sysfs_nvram_attr = { |
| 202 | .attr = { |
| 203 | .name = "nvram", |
| 204 | .mode = S_IRUSR | S_IWUSR, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 205 | }, |
andrew.vasquez@qlogic.com | 1b3f636 | 2006-01-31 16:05:12 -0800 | [diff] [blame] | 206 | .size = 512, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 207 | .read = qla2x00_sysfs_read_nvram, |
| 208 | .write = qla2x00_sysfs_write_nvram, |
| 209 | }; |
| 210 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 211 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 212 | qla2x00_sysfs_read_optrom(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 213 | struct bin_attribute *bin_attr, |
| 214 | char *buf, loff_t off, size_t count) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 215 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 216 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 217 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 218 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 219 | |
| 220 | if (ha->optrom_state != QLA_SREADING) |
| 221 | return 0; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 222 | |
Akinobu Mita | b3dc908 | 2008-07-24 08:31:47 -0700 | [diff] [blame] | 223 | return memory_read_from_buffer(buf, count, &off, ha->optrom_buffer, |
| 224 | ha->optrom_region_size); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 228 | qla2x00_sysfs_write_optrom(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 229 | struct bin_attribute *bin_attr, |
| 230 | char *buf, loff_t off, size_t count) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 231 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 232 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 233 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 234 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 235 | |
| 236 | if (ha->optrom_state != QLA_SWRITING) |
| 237 | return -EINVAL; |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 238 | if (off > ha->optrom_region_size) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 239 | return -ERANGE; |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 240 | if (off + count > ha->optrom_region_size) |
| 241 | count = ha->optrom_region_size - off; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 242 | |
| 243 | memcpy(&ha->optrom_buffer[off], buf, count); |
| 244 | |
| 245 | return count; |
| 246 | } |
| 247 | |
| 248 | static struct bin_attribute sysfs_optrom_attr = { |
| 249 | .attr = { |
| 250 | .name = "optrom", |
| 251 | .mode = S_IRUSR | S_IWUSR, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 252 | }, |
Andrew Vasquez | c3a2f0d | 2007-07-19 20:37:34 -0700 | [diff] [blame] | 253 | .size = 0, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 254 | .read = qla2x00_sysfs_read_optrom, |
| 255 | .write = qla2x00_sysfs_write_optrom, |
| 256 | }; |
| 257 | |
| 258 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 259 | qla2x00_sysfs_write_optrom_ctl(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 260 | struct bin_attribute *bin_attr, |
| 261 | char *buf, loff_t off, size_t count) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 262 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 263 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 264 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 265 | struct qla_hw_data *ha = vha->hw; |
| 266 | |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 267 | uint32_t start = 0; |
| 268 | uint32_t size = ha->optrom_size; |
| 269 | int val, valid; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 270 | |
| 271 | if (off) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 272 | return -EINVAL; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 273 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 274 | if (unlikely(pci_channel_offline(ha->pdev))) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 275 | return -EAGAIN; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 276 | |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 277 | if (sscanf(buf, "%d:%x:%x", &val, &start, &size) < 1) |
| 278 | return -EINVAL; |
| 279 | if (start > ha->optrom_size) |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 280 | return -EINVAL; |
| 281 | |
| 282 | switch (val) { |
| 283 | case 0: |
| 284 | if (ha->optrom_state != QLA_SREADING && |
| 285 | ha->optrom_state != QLA_SWRITING) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 286 | return -EINVAL; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 287 | |
| 288 | ha->optrom_state = QLA_SWAITING; |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 289 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 290 | ql_dbg(ql_dbg_user, vha, 0x7061, |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 291 | "Freeing flash region allocation -- 0x%x bytes.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 292 | ha->optrom_region_size); |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 293 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 294 | vfree(ha->optrom_buffer); |
| 295 | ha->optrom_buffer = NULL; |
| 296 | break; |
| 297 | case 1: |
| 298 | if (ha->optrom_state != QLA_SWAITING) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 299 | return -EINVAL; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 300 | |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 301 | ha->optrom_region_start = start; |
| 302 | ha->optrom_region_size = start + size > ha->optrom_size ? |
| 303 | ha->optrom_size - start : size; |
| 304 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 305 | ha->optrom_state = QLA_SREADING; |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 306 | ha->optrom_buffer = vmalloc(ha->optrom_region_size); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 307 | if (ha->optrom_buffer == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 308 | ql_log(ql_log_warn, vha, 0x7062, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 309 | "Unable to allocate memory for optrom retrieval " |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 310 | "(%x).\n", ha->optrom_region_size); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 311 | |
| 312 | ha->optrom_state = QLA_SWAITING; |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 313 | return -ENOMEM; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 314 | } |
| 315 | |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 316 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 317 | ql_log(ql_log_warn, vha, 0x7063, |
| 318 | "HBA not online, failing NVRAM update.\n"); |
Lalit Chandivade | 86fbee8 | 2010-05-04 15:01:32 -0700 | [diff] [blame] | 319 | return -EAGAIN; |
| 320 | } |
| 321 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 322 | ql_dbg(ql_dbg_user, vha, 0x7064, |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 323 | "Reading flash region -- 0x%x/0x%x.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 324 | ha->optrom_region_start, ha->optrom_region_size); |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 325 | |
| 326 | memset(ha->optrom_buffer, 0, ha->optrom_region_size); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 327 | ha->isp_ops->read_optrom(vha, ha->optrom_buffer, |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 328 | ha->optrom_region_start, ha->optrom_region_size); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 329 | break; |
| 330 | case 2: |
| 331 | if (ha->optrom_state != QLA_SWAITING) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 332 | return -EINVAL; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 333 | |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 334 | /* |
| 335 | * We need to be more restrictive on which FLASH regions are |
| 336 | * allowed to be updated via user-space. Regions accessible |
| 337 | * via this method include: |
| 338 | * |
| 339 | * ISP21xx/ISP22xx/ISP23xx type boards: |
| 340 | * |
| 341 | * 0x000000 -> 0x020000 -- Boot code. |
| 342 | * |
| 343 | * ISP2322/ISP24xx type boards: |
| 344 | * |
| 345 | * 0x000000 -> 0x07ffff -- Boot code. |
| 346 | * 0x080000 -> 0x0fffff -- Firmware. |
| 347 | * |
| 348 | * ISP25xx type boards: |
| 349 | * |
| 350 | * 0x000000 -> 0x07ffff -- Boot code. |
| 351 | * 0x080000 -> 0x0fffff -- Firmware. |
| 352 | * 0x120000 -> 0x12ffff -- VPD and HBA parameters. |
| 353 | */ |
| 354 | valid = 0; |
| 355 | if (ha->optrom_size == OPTROM_SIZE_2300 && start == 0) |
| 356 | valid = 1; |
Andrew Vasquez | c00d899 | 2008-09-11 21:22:49 -0700 | [diff] [blame] | 357 | else if (start == (ha->flt_region_boot * 4) || |
| 358 | start == (ha->flt_region_fw * 4)) |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 359 | valid = 1; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 360 | else if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha) |
| 361 | || IS_CNA_CAPABLE(ha) || IS_QLA2031(ha)) |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 362 | valid = 1; |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 363 | if (!valid) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 364 | ql_log(ql_log_warn, vha, 0x7065, |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 365 | "Invalid start region 0x%x/0x%x.\n", start, size); |
| 366 | return -EINVAL; |
| 367 | } |
| 368 | |
| 369 | ha->optrom_region_start = start; |
| 370 | ha->optrom_region_size = start + size > ha->optrom_size ? |
| 371 | ha->optrom_size - start : size; |
| 372 | |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 373 | ha->optrom_state = QLA_SWRITING; |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 374 | ha->optrom_buffer = vmalloc(ha->optrom_region_size); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 375 | if (ha->optrom_buffer == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 376 | ql_log(ql_log_warn, vha, 0x7066, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 377 | "Unable to allocate memory for optrom update " |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 378 | "(%x)\n", ha->optrom_region_size); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 379 | |
| 380 | ha->optrom_state = QLA_SWAITING; |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 381 | return -ENOMEM; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 382 | } |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 383 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 384 | ql_dbg(ql_dbg_user, vha, 0x7067, |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 385 | "Staging flash region write -- 0x%x/0x%x.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 386 | ha->optrom_region_start, ha->optrom_region_size); |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 387 | |
| 388 | memset(ha->optrom_buffer, 0, ha->optrom_region_size); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 389 | break; |
| 390 | case 3: |
| 391 | if (ha->optrom_state != QLA_SWRITING) |
Joe Carnuccio | 71dfe9e | 2011-11-18 09:03:13 -0800 | [diff] [blame] | 392 | return -EINVAL; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 393 | |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 394 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 395 | ql_log(ql_log_warn, vha, 0x7068, |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 396 | "HBA not online, failing flash update.\n"); |
| 397 | return -EAGAIN; |
| 398 | } |
| 399 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 400 | ql_dbg(ql_dbg_user, vha, 0x7069, |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 401 | "Writing flash region -- 0x%x/0x%x.\n", |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 402 | ha->optrom_region_start, ha->optrom_region_size); |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 403 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 404 | ha->isp_ops->write_optrom(vha, ha->optrom_buffer, |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 405 | ha->optrom_region_start, ha->optrom_region_size); |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 406 | break; |
Joe Carnuccio | b7cc176 | 2007-09-20 14:07:35 -0700 | [diff] [blame] | 407 | default: |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 408 | return -EINVAL; |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 409 | } |
| 410 | return count; |
| 411 | } |
| 412 | |
| 413 | static struct bin_attribute sysfs_optrom_ctl_attr = { |
| 414 | .attr = { |
| 415 | .name = "optrom_ctl", |
| 416 | .mode = S_IWUSR, |
andrew.vasquez@qlogic.com | 854165f | 2006-01-31 16:05:17 -0800 | [diff] [blame] | 417 | }, |
| 418 | .size = 0, |
| 419 | .write = qla2x00_sysfs_write_optrom_ctl, |
| 420 | }; |
| 421 | |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 422 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 423 | qla2x00_sysfs_read_vpd(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 424 | struct bin_attribute *bin_attr, |
| 425 | char *buf, loff_t off, size_t count) |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 426 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 427 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 428 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 429 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 430 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 431 | if (unlikely(pci_channel_offline(ha->pdev))) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 432 | return -EAGAIN; |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 433 | |
Akinobu Mita | b3dc908 | 2008-07-24 08:31:47 -0700 | [diff] [blame] | 434 | if (!capable(CAP_SYS_ADMIN)) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 435 | return -EINVAL; |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 436 | |
Andrew Vasquez | 6749ce3 | 2009-03-24 09:08:17 -0700 | [diff] [blame] | 437 | if (IS_NOCACHE_VPD_TYPE(ha)) |
| 438 | ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2, |
| 439 | ha->vpd_size); |
Akinobu Mita | b3dc908 | 2008-07-24 08:31:47 -0700 | [diff] [blame] | 440 | return memory_read_from_buffer(buf, count, &off, ha->vpd, ha->vpd_size); |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 441 | } |
| 442 | |
| 443 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 444 | qla2x00_sysfs_write_vpd(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 445 | struct bin_attribute *bin_attr, |
| 446 | char *buf, loff_t off, size_t count) |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 447 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 448 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 449 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 450 | struct qla_hw_data *ha = vha->hw; |
Lalit Chandivade | d0c3eef | 2009-03-24 09:08:09 -0700 | [diff] [blame] | 451 | uint8_t *tmp_data; |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 452 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 453 | if (unlikely(pci_channel_offline(ha->pdev))) |
| 454 | return 0; |
| 455 | |
Andrew Vasquez | 3d79038f | 2009-03-24 09:08:14 -0700 | [diff] [blame] | 456 | if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size || |
| 457 | !ha->isp_ops->write_nvram) |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 458 | return 0; |
| 459 | |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 460 | if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 461 | ql_log(ql_log_warn, vha, 0x706a, |
Lalit Chandivade | 2533cf6 | 2009-03-24 09:08:07 -0700 | [diff] [blame] | 462 | "HBA not online, failing VPD update.\n"); |
| 463 | return -EAGAIN; |
| 464 | } |
| 465 | |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 466 | /* Write NVRAM. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 467 | ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->vpd_base, count); |
| 468 | ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd, ha->vpd_base, count); |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 469 | |
Lalit Chandivade | d0c3eef | 2009-03-24 09:08:09 -0700 | [diff] [blame] | 470 | /* Update flash version information for 4Gb & above. */ |
| 471 | if (!IS_FWI2_CAPABLE(ha)) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 472 | return -EINVAL; |
Lalit Chandivade | d0c3eef | 2009-03-24 09:08:09 -0700 | [diff] [blame] | 473 | |
| 474 | tmp_data = vmalloc(256); |
| 475 | if (!tmp_data) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 476 | ql_log(ql_log_warn, vha, 0x706b, |
Lalit Chandivade | d0c3eef | 2009-03-24 09:08:09 -0700 | [diff] [blame] | 477 | "Unable to allocate memory for VPD information update.\n"); |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 478 | return -ENOMEM; |
Lalit Chandivade | d0c3eef | 2009-03-24 09:08:09 -0700 | [diff] [blame] | 479 | } |
| 480 | ha->isp_ops->get_flash_version(vha, tmp_data); |
| 481 | vfree(tmp_data); |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 482 | |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 483 | return count; |
| 484 | } |
| 485 | |
| 486 | static struct bin_attribute sysfs_vpd_attr = { |
| 487 | .attr = { |
| 488 | .name = "vpd", |
| 489 | .mode = S_IRUSR | S_IWUSR, |
andrew.vasquez@qlogic.com | 6f64179 | 2006-03-09 14:27:34 -0800 | [diff] [blame] | 490 | }, |
| 491 | .size = 0, |
| 492 | .read = qla2x00_sysfs_read_vpd, |
| 493 | .write = qla2x00_sysfs_write_vpd, |
| 494 | }; |
| 495 | |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 496 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 497 | qla2x00_sysfs_read_sfp(struct file *filp, struct kobject *kobj, |
Zhang Rui | 91a6902 | 2007-06-09 13:57:22 +0800 | [diff] [blame] | 498 | struct bin_attribute *bin_attr, |
| 499 | char *buf, loff_t off, size_t count) |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 500 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 501 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 502 | struct device, kobj))); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 503 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 504 | uint16_t iter, addr, offset; |
| 505 | int rval; |
| 506 | |
| 507 | if (!capable(CAP_SYS_ADMIN) || off != 0 || count != SFP_DEV_SIZE * 2) |
| 508 | return 0; |
| 509 | |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 510 | if (ha->sfp_data) |
| 511 | goto do_read; |
| 512 | |
| 513 | ha->sfp_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, |
| 514 | &ha->sfp_data_dma); |
| 515 | if (!ha->sfp_data) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 516 | ql_log(ql_log_warn, vha, 0x706c, |
Andrew Vasquez | e871108 | 2008-01-31 12:33:48 -0800 | [diff] [blame] | 517 | "Unable to allocate memory for SFP read-data.\n"); |
| 518 | return 0; |
| 519 | } |
| 520 | |
| 521 | do_read: |
| 522 | memset(ha->sfp_data, 0, SFP_BLOCK_SIZE); |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 523 | addr = 0xa0; |
| 524 | for (iter = 0, offset = 0; iter < (SFP_DEV_SIZE * 2) / SFP_BLOCK_SIZE; |
| 525 | iter++, offset += SFP_BLOCK_SIZE) { |
| 526 | if (iter == 4) { |
| 527 | /* Skip to next device address. */ |
| 528 | addr = 0xa2; |
| 529 | offset = 0; |
| 530 | } |
| 531 | |
Joe Carnuccio | 6766df9 | 2011-05-10 11:30:15 -0700 | [diff] [blame] | 532 | rval = qla2x00_read_sfp(vha, ha->sfp_data_dma, ha->sfp_data, |
| 533 | addr, offset, SFP_BLOCK_SIZE, 0); |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 534 | if (rval != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 535 | ql_log(ql_log_warn, vha, 0x706d, |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 536 | "Unable to read SFP data (%x/%x/%x).\n", rval, |
| 537 | addr, offset); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 538 | |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 539 | return -EIO; |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 540 | } |
| 541 | memcpy(buf, ha->sfp_data, SFP_BLOCK_SIZE); |
| 542 | buf += SFP_BLOCK_SIZE; |
| 543 | } |
| 544 | |
| 545 | return count; |
| 546 | } |
| 547 | |
| 548 | static struct bin_attribute sysfs_sfp_attr = { |
| 549 | .attr = { |
| 550 | .name = "sfp", |
| 551 | .mode = S_IRUSR | S_IWUSR, |
Andrew Vasquez | 88729e5 | 2006-06-23 16:10:50 -0700 | [diff] [blame] | 552 | }, |
| 553 | .size = SFP_DEV_SIZE * 2, |
| 554 | .read = qla2x00_sysfs_read_sfp, |
| 555 | }; |
| 556 | |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 557 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 558 | qla2x00_sysfs_write_reset(struct file *filp, struct kobject *kobj, |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 559 | struct bin_attribute *bin_attr, |
| 560 | char *buf, loff_t off, size_t count) |
| 561 | { |
| 562 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
| 563 | struct device, kobj))); |
| 564 | struct qla_hw_data *ha = vha->hw; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 565 | struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 566 | int type; |
| 567 | |
| 568 | if (off != 0) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 569 | return -EINVAL; |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 570 | |
| 571 | type = simple_strtol(buf, NULL, 10); |
| 572 | switch (type) { |
| 573 | case 0x2025c: |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 574 | ql_log(ql_log_info, vha, 0x706e, |
| 575 | "Issuing ISP reset.\n"); |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 576 | |
| 577 | scsi_block_requests(vha->host); |
| 578 | set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 579 | if (IS_QLA82XX(ha)) { |
Giridhar Malavali | b6d0d9d | 2012-05-15 14:34:25 -0400 | [diff] [blame] | 580 | ha->flags.isp82xx_no_md_cap = 1; |
Giridhar Malavali | 08de284 | 2011-08-16 11:31:44 -0700 | [diff] [blame] | 581 | qla82xx_idc_lock(ha); |
| 582 | qla82xx_set_reset_owner(vha); |
| 583 | qla82xx_idc_unlock(ha); |
| 584 | } |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 585 | qla2xxx_wake_dpc(vha); |
| 586 | qla2x00_wait_for_chip_reset(vha); |
| 587 | scsi_unblock_requests(vha->host); |
| 588 | break; |
| 589 | case 0x2025d: |
Nigel Kirkland | f863f60 | 2012-05-15 14:34:19 -0400 | [diff] [blame] | 590 | if (!IS_QLA81XX(ha) || !IS_QLA8031(ha)) |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 591 | return -EPERM; |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 592 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 593 | ql_log(ql_log_info, vha, 0x706f, |
| 594 | "Issuing MPI reset.\n"); |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 595 | |
| 596 | /* Make sure FC side is not in reset */ |
| 597 | qla2x00_wait_for_hba_online(vha); |
| 598 | |
| 599 | /* Issue MPI reset */ |
| 600 | scsi_block_requests(vha->host); |
| 601 | if (qla81xx_restart_mpi_firmware(vha) != QLA_SUCCESS) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 602 | ql_log(ql_log_warn, vha, 0x7070, |
| 603 | "MPI reset failed.\n"); |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 604 | scsi_unblock_requests(vha->host); |
| 605 | break; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 606 | case 0x2025e: |
| 607 | if (!IS_QLA82XX(ha) || vha != base_vha) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 608 | ql_log(ql_log_info, vha, 0x7071, |
| 609 | "FCoE ctx reset no supported.\n"); |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 610 | return -EPERM; |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 611 | } |
| 612 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 613 | ql_log(ql_log_info, vha, 0x7072, |
| 614 | "Issuing FCoE ctx reset.\n"); |
Giridhar Malavali | a908301 | 2010-04-12 17:59:55 -0700 | [diff] [blame] | 615 | set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags); |
| 616 | qla2xxx_wake_dpc(vha); |
| 617 | qla2x00_wait_for_fcoe_ctx_reset(vha); |
| 618 | break; |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 619 | } |
| 620 | return count; |
| 621 | } |
| 622 | |
| 623 | static struct bin_attribute sysfs_reset_attr = { |
| 624 | .attr = { |
| 625 | .name = "reset", |
| 626 | .mode = S_IWUSR, |
| 627 | }, |
| 628 | .size = 0, |
| 629 | .write = qla2x00_sysfs_write_reset, |
| 630 | }; |
| 631 | |
Joe Carnuccio | ad0ecd6 | 2009-03-24 09:08:12 -0700 | [diff] [blame] | 632 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 633 | qla2x00_sysfs_read_xgmac_stats(struct file *filp, struct kobject *kobj, |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 634 | struct bin_attribute *bin_attr, |
| 635 | char *buf, loff_t off, size_t count) |
| 636 | { |
| 637 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
| 638 | struct device, kobj))); |
| 639 | struct qla_hw_data *ha = vha->hw; |
| 640 | int rval; |
| 641 | uint16_t actual_size; |
| 642 | |
| 643 | if (!capable(CAP_SYS_ADMIN) || off != 0 || count > XGMAC_DATA_SIZE) |
| 644 | return 0; |
| 645 | |
| 646 | if (ha->xgmac_data) |
| 647 | goto do_read; |
| 648 | |
| 649 | ha->xgmac_data = dma_alloc_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE, |
| 650 | &ha->xgmac_data_dma, GFP_KERNEL); |
| 651 | if (!ha->xgmac_data) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 652 | ql_log(ql_log_warn, vha, 0x7076, |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 653 | "Unable to allocate memory for XGMAC read-data.\n"); |
| 654 | return 0; |
| 655 | } |
| 656 | |
| 657 | do_read: |
| 658 | actual_size = 0; |
| 659 | memset(ha->xgmac_data, 0, XGMAC_DATA_SIZE); |
| 660 | |
| 661 | rval = qla2x00_get_xgmac_stats(vha, ha->xgmac_data_dma, |
| 662 | XGMAC_DATA_SIZE, &actual_size); |
| 663 | if (rval != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 664 | ql_log(ql_log_warn, vha, 0x7077, |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 665 | "Unable to read XGMAC data (%x).\n", rval); |
| 666 | count = 0; |
| 667 | } |
| 668 | |
| 669 | count = actual_size > count ? count: actual_size; |
| 670 | memcpy(buf, ha->xgmac_data, count); |
| 671 | |
| 672 | return count; |
| 673 | } |
| 674 | |
| 675 | static struct bin_attribute sysfs_xgmac_stats_attr = { |
| 676 | .attr = { |
| 677 | .name = "xgmac_stats", |
| 678 | .mode = S_IRUSR, |
| 679 | }, |
| 680 | .size = 0, |
| 681 | .read = qla2x00_sysfs_read_xgmac_stats, |
| 682 | }; |
| 683 | |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 684 | static ssize_t |
Chris Wright | 2c3c8be | 2010-05-12 18:28:57 -0700 | [diff] [blame] | 685 | qla2x00_sysfs_read_dcbx_tlv(struct file *filp, struct kobject *kobj, |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 686 | struct bin_attribute *bin_attr, |
| 687 | char *buf, loff_t off, size_t count) |
| 688 | { |
| 689 | struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj, |
| 690 | struct device, kobj))); |
| 691 | struct qla_hw_data *ha = vha->hw; |
| 692 | int rval; |
| 693 | uint16_t actual_size; |
| 694 | |
| 695 | if (!capable(CAP_SYS_ADMIN) || off != 0 || count > DCBX_TLV_DATA_SIZE) |
| 696 | return 0; |
| 697 | |
| 698 | if (ha->dcbx_tlv) |
| 699 | goto do_read; |
| 700 | |
| 701 | ha->dcbx_tlv = dma_alloc_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE, |
| 702 | &ha->dcbx_tlv_dma, GFP_KERNEL); |
| 703 | if (!ha->dcbx_tlv) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 704 | ql_log(ql_log_warn, vha, 0x7078, |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 705 | "Unable to allocate memory for DCBX TLV read-data.\n"); |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 706 | return -ENOMEM; |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | do_read: |
| 710 | actual_size = 0; |
| 711 | memset(ha->dcbx_tlv, 0, DCBX_TLV_DATA_SIZE); |
| 712 | |
| 713 | rval = qla2x00_get_dcbx_params(vha, ha->dcbx_tlv_dma, |
| 714 | DCBX_TLV_DATA_SIZE); |
| 715 | if (rval != QLA_SUCCESS) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 716 | ql_log(ql_log_warn, vha, 0x7079, |
| 717 | "Unable to read DCBX TLV (%x).\n", rval); |
Joe Carnuccio | b668ae3 | 2011-08-16 11:31:53 -0700 | [diff] [blame] | 718 | return -EIO; |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 719 | } |
| 720 | |
| 721 | memcpy(buf, ha->dcbx_tlv, count); |
| 722 | |
| 723 | return count; |
| 724 | } |
| 725 | |
| 726 | static struct bin_attribute sysfs_dcbx_tlv_attr = { |
| 727 | .attr = { |
| 728 | .name = "dcbx_tlv", |
| 729 | .mode = S_IRUSR, |
| 730 | }, |
| 731 | .size = 0, |
| 732 | .read = qla2x00_sysfs_read_dcbx_tlv, |
| 733 | }; |
| 734 | |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 735 | static struct sysfs_entry { |
| 736 | char *name; |
| 737 | struct bin_attribute *attr; |
| 738 | int is4GBp_only; |
| 739 | } bin_file_entries[] = { |
| 740 | { "fw_dump", &sysfs_fw_dump_attr, }, |
| 741 | { "nvram", &sysfs_nvram_attr, }, |
| 742 | { "optrom", &sysfs_optrom_attr, }, |
| 743 | { "optrom_ctl", &sysfs_optrom_ctl_attr, }, |
| 744 | { "vpd", &sysfs_vpd_attr, 1 }, |
| 745 | { "sfp", &sysfs_sfp_attr, 1 }, |
Lalit Chandivade | 6e181be | 2009-03-26 08:49:17 -0700 | [diff] [blame] | 746 | { "reset", &sysfs_reset_attr, }, |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 747 | { "xgmac_stats", &sysfs_xgmac_stats_attr, 3 }, |
Andrew Vasquez | 11bbc1d | 2009-06-03 09:55:14 -0700 | [diff] [blame] | 748 | { "dcbx_tlv", &sysfs_dcbx_tlv_attr, 3 }, |
Randy Dunlap | 46ddab7 | 2006-11-27 09:35:42 -0800 | [diff] [blame] | 749 | { NULL }, |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 750 | }; |
| 751 | |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 752 | void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 753 | qla2x00_alloc_sysfs_attr(scsi_qla_host_t *vha) |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 754 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 755 | struct Scsi_Host *host = vha->host; |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 756 | struct sysfs_entry *iter; |
| 757 | int ret; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 758 | |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 759 | for (iter = bin_file_entries; iter->name; iter++) { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 760 | if (iter->is4GBp_only && !IS_FWI2_CAPABLE(vha->hw)) |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 761 | continue; |
Joe Carnuccio | ad0ecd6 | 2009-03-24 09:08:12 -0700 | [diff] [blame] | 762 | if (iter->is4GBp_only == 2 && !IS_QLA25XX(vha->hw)) |
| 763 | continue; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 764 | if (iter->is4GBp_only == 3 && !(IS_CNA_CAPABLE(vha->hw))) |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 765 | continue; |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 766 | |
| 767 | ret = sysfs_create_bin_file(&host->shost_gendev.kobj, |
| 768 | iter->attr); |
| 769 | if (ret) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 770 | ql_log(ql_log_warn, vha, 0x00f3, |
| 771 | "Unable to create sysfs %s binary attribute (%d).\n", |
| 772 | iter->name, ret); |
| 773 | else |
| 774 | ql_dbg(ql_dbg_init, vha, 0x00f4, |
| 775 | "Successfully created sysfs %s binary attribure.\n", |
| 776 | iter->name); |
Andrew Vasquez | 7914d00 | 2006-06-23 16:10:55 -0700 | [diff] [blame] | 777 | } |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 781 | qla2x00_free_sysfs_attr(scsi_qla_host_t *vha) |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 782 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 783 | struct Scsi_Host *host = vha->host; |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 784 | struct sysfs_entry *iter; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 785 | struct qla_hw_data *ha = vha->hw; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 786 | |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 787 | for (iter = bin_file_entries; iter->name; iter++) { |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 788 | if (iter->is4GBp_only && !IS_FWI2_CAPABLE(ha)) |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 789 | continue; |
Joe Carnuccio | ad0ecd6 | 2009-03-24 09:08:12 -0700 | [diff] [blame] | 790 | if (iter->is4GBp_only == 2 && !IS_QLA25XX(ha)) |
| 791 | continue; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 792 | if (iter->is4GBp_only == 3 && !(IS_CNA_CAPABLE(vha->hw))) |
Andrew Vasquez | ce0423f | 2009-06-03 09:55:13 -0700 | [diff] [blame] | 793 | continue; |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 794 | |
Andrew Vasquez | 7914d00 | 2006-06-23 16:10:55 -0700 | [diff] [blame] | 795 | sysfs_remove_bin_file(&host->shost_gendev.kobj, |
Andrew Vasquez | f1663ad | 2006-10-13 09:33:37 -0700 | [diff] [blame] | 796 | iter->attr); |
Andrew Vasquez | 7914d00 | 2006-06-23 16:10:55 -0700 | [diff] [blame] | 797 | } |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 798 | |
| 799 | if (ha->beacon_blink_led == 1) |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 800 | ha->isp_ops->beacon_off(vha); |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 801 | } |
| 802 | |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 803 | /* Scsi_Host attributes. */ |
| 804 | |
| 805 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 806 | qla2x00_drvr_version_show(struct device *dev, |
| 807 | struct device_attribute *attr, char *buf) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 808 | { |
| 809 | return snprintf(buf, PAGE_SIZE, "%s\n", qla2x00_version_str); |
| 810 | } |
| 811 | |
| 812 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 813 | qla2x00_fw_version_show(struct device *dev, |
| 814 | struct device_attribute *attr, char *buf) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 815 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 816 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 817 | struct qla_hw_data *ha = vha->hw; |
| 818 | char fw_str[128]; |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 819 | |
| 820 | return snprintf(buf, PAGE_SIZE, "%s\n", |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 821 | ha->isp_ops->fw_version_str(vha, fw_str)); |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 825 | qla2x00_serial_num_show(struct device *dev, struct device_attribute *attr, |
| 826 | char *buf) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 827 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 828 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 829 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 830 | uint32_t sn; |
| 831 | |
Joe Carnuccio | 1ee2714 | 2008-07-10 16:55:53 -0700 | [diff] [blame] | 832 | if (IS_FWI2_CAPABLE(ha)) { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 833 | qla2xxx_get_vpd_field(vha, "SN", buf, PAGE_SIZE); |
Joe Carnuccio | 1ee2714 | 2008-07-10 16:55:53 -0700 | [diff] [blame] | 834 | return snprintf(buf, PAGE_SIZE, "%s\n", buf); |
| 835 | } |
Andrew Vasquez | 8b7afc2 | 2007-10-19 15:59:19 -0700 | [diff] [blame] | 836 | |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 837 | sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1; |
| 838 | return snprintf(buf, PAGE_SIZE, "%c%05d\n", 'A' + sn / 100000, |
| 839 | sn % 100000); |
| 840 | } |
| 841 | |
| 842 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 843 | qla2x00_isp_name_show(struct device *dev, struct device_attribute *attr, |
| 844 | char *buf) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 845 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 846 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 847 | return snprintf(buf, PAGE_SIZE, "ISP%04X\n", vha->hw->pdev->device); |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 851 | qla2x00_isp_id_show(struct device *dev, struct device_attribute *attr, |
| 852 | char *buf) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 853 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 854 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 855 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 856 | return snprintf(buf, PAGE_SIZE, "%04x %04x %04x %04x\n", |
| 857 | ha->product_id[0], ha->product_id[1], ha->product_id[2], |
| 858 | ha->product_id[3]); |
| 859 | } |
| 860 | |
| 861 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 862 | qla2x00_model_name_show(struct device *dev, struct device_attribute *attr, |
| 863 | char *buf) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 864 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 865 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 866 | return snprintf(buf, PAGE_SIZE, "%s\n", vha->hw->model_number); |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 867 | } |
| 868 | |
| 869 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 870 | qla2x00_model_desc_show(struct device *dev, struct device_attribute *attr, |
| 871 | char *buf) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 872 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 873 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 874 | return snprintf(buf, PAGE_SIZE, "%s\n", |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 875 | vha->hw->model_desc ? vha->hw->model_desc : ""); |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 876 | } |
| 877 | |
| 878 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 879 | qla2x00_pci_info_show(struct device *dev, struct device_attribute *attr, |
| 880 | char *buf) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 881 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 882 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 883 | char pci_info[30]; |
| 884 | |
| 885 | return snprintf(buf, PAGE_SIZE, "%s\n", |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 886 | vha->hw->isp_ops->pci_info_str(vha, pci_info)); |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 887 | } |
| 888 | |
| 889 | static ssize_t |
Hannes Reinecke | bbd1ae4 | 2008-03-18 14:32:28 +0100 | [diff] [blame] | 890 | qla2x00_link_state_show(struct device *dev, struct device_attribute *attr, |
| 891 | char *buf) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 892 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 893 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 894 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 895 | int len = 0; |
| 896 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 897 | if (atomic_read(&vha->loop_state) == LOOP_DOWN || |
Andrew Vasquez | 62542f4 | 2010-05-04 15:01:22 -0700 | [diff] [blame] | 898 | atomic_read(&vha->loop_state) == LOOP_DEAD || |
| 899 | vha->device_flags & DFLG_NO_CABLE) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 900 | len = snprintf(buf, PAGE_SIZE, "Link Down\n"); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 901 | else if (atomic_read(&vha->loop_state) != LOOP_READY || |
Andrew Vasquez | d051a5aa | 2012-02-09 11:14:05 -0800 | [diff] [blame] | 902 | qla2x00_reset_active(vha)) |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 903 | len = snprintf(buf, PAGE_SIZE, "Unknown Link State\n"); |
| 904 | else { |
| 905 | len = snprintf(buf, PAGE_SIZE, "Link Up - "); |
| 906 | |
| 907 | switch (ha->current_topology) { |
| 908 | case ISP_CFG_NL: |
| 909 | len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n"); |
| 910 | break; |
| 911 | case ISP_CFG_FL: |
| 912 | len += snprintf(buf + len, PAGE_SIZE-len, "FL_Port\n"); |
| 913 | break; |
| 914 | case ISP_CFG_N: |
| 915 | len += snprintf(buf + len, PAGE_SIZE-len, |
| 916 | "N_Port to N_Port\n"); |
| 917 | break; |
| 918 | case ISP_CFG_F: |
| 919 | len += snprintf(buf + len, PAGE_SIZE-len, "F_Port\n"); |
| 920 | break; |
| 921 | default: |
| 922 | len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n"); |
| 923 | break; |
| 924 | } |
| 925 | } |
| 926 | return len; |
| 927 | } |
| 928 | |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 929 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 930 | qla2x00_zio_show(struct device *dev, struct device_attribute *attr, |
| 931 | char *buf) |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 932 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 933 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 934 | int len = 0; |
| 935 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 936 | switch (vha->hw->zio_mode) { |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 937 | case QLA_ZIO_MODE_6: |
| 938 | len += snprintf(buf + len, PAGE_SIZE-len, "Mode 6\n"); |
| 939 | break; |
| 940 | case QLA_ZIO_DISABLED: |
| 941 | len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n"); |
| 942 | break; |
| 943 | } |
| 944 | return len; |
| 945 | } |
| 946 | |
| 947 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 948 | qla2x00_zio_store(struct device *dev, struct device_attribute *attr, |
| 949 | const char *buf, size_t count) |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 950 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 951 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 952 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 953 | int val = 0; |
| 954 | uint16_t zio_mode; |
| 955 | |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 956 | if (!IS_ZIO_SUPPORTED(ha)) |
| 957 | return -ENOTSUPP; |
| 958 | |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 959 | if (sscanf(buf, "%d", &val) != 1) |
| 960 | return -EINVAL; |
| 961 | |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 962 | if (val) |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 963 | zio_mode = QLA_ZIO_MODE_6; |
andrew.vasquez@qlogic.com | 4a59f71 | 2006-03-09 14:27:39 -0800 | [diff] [blame] | 964 | else |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 965 | zio_mode = QLA_ZIO_DISABLED; |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 966 | |
| 967 | /* Update per-hba values and queue a reset. */ |
| 968 | if (zio_mode != QLA_ZIO_DISABLED || ha->zio_mode != QLA_ZIO_DISABLED) { |
| 969 | ha->zio_mode = zio_mode; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 970 | set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags); |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 971 | } |
| 972 | return strlen(buf); |
| 973 | } |
| 974 | |
| 975 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 976 | qla2x00_zio_timer_show(struct device *dev, struct device_attribute *attr, |
| 977 | char *buf) |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 978 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 979 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 980 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 981 | return snprintf(buf, PAGE_SIZE, "%d us\n", vha->hw->zio_timer * 100); |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 985 | qla2x00_zio_timer_store(struct device *dev, struct device_attribute *attr, |
| 986 | const char *buf, size_t count) |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 987 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 988 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 989 | int val = 0; |
| 990 | uint16_t zio_timer; |
| 991 | |
| 992 | if (sscanf(buf, "%d", &val) != 1) |
| 993 | return -EINVAL; |
| 994 | if (val > 25500 || val < 100) |
| 995 | return -ERANGE; |
| 996 | |
| 997 | zio_timer = (uint16_t)(val / 100); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 998 | vha->hw->zio_timer = zio_timer; |
Andrew Vasquez | 4fdfefe | 2005-10-27 11:09:48 -0700 | [diff] [blame] | 999 | |
| 1000 | return strlen(buf); |
| 1001 | } |
| 1002 | |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1003 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1004 | qla2x00_beacon_show(struct device *dev, struct device_attribute *attr, |
| 1005 | char *buf) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1006 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1007 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1008 | int len = 0; |
| 1009 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1010 | if (vha->hw->beacon_blink_led) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1011 | len += snprintf(buf + len, PAGE_SIZE-len, "Enabled\n"); |
| 1012 | else |
| 1013 | len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n"); |
| 1014 | return len; |
| 1015 | } |
| 1016 | |
| 1017 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1018 | qla2x00_beacon_store(struct device *dev, struct device_attribute *attr, |
| 1019 | const char *buf, size_t count) |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1020 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1021 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1022 | struct qla_hw_data *ha = vha->hw; |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1023 | int val = 0; |
| 1024 | int rval; |
| 1025 | |
| 1026 | if (IS_QLA2100(ha) || IS_QLA2200(ha)) |
| 1027 | return -EPERM; |
| 1028 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1029 | if (test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1030 | ql_log(ql_log_warn, vha, 0x707a, |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1031 | "Abort ISP active -- ignoring beacon request.\n"); |
| 1032 | return -EBUSY; |
| 1033 | } |
| 1034 | |
| 1035 | if (sscanf(buf, "%d", &val) != 1) |
| 1036 | return -EINVAL; |
| 1037 | |
| 1038 | if (val) |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1039 | rval = ha->isp_ops->beacon_on(vha); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1040 | else |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1041 | rval = ha->isp_ops->beacon_off(vha); |
andrew.vasquez@qlogic.com | f6df144 | 2006-01-31 16:05:07 -0800 | [diff] [blame] | 1042 | |
| 1043 | if (rval != QLA_SUCCESS) |
| 1044 | count = 0; |
| 1045 | |
| 1046 | return count; |
| 1047 | } |
| 1048 | |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 1049 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1050 | qla2x00_optrom_bios_version_show(struct device *dev, |
| 1051 | struct device_attribute *attr, char *buf) |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 1052 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1053 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1054 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 1055 | return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->bios_revision[1], |
| 1056 | ha->bios_revision[0]); |
| 1057 | } |
| 1058 | |
| 1059 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1060 | qla2x00_optrom_efi_version_show(struct device *dev, |
| 1061 | struct device_attribute *attr, char *buf) |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 1062 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1063 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1064 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 1065 | return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->efi_revision[1], |
| 1066 | ha->efi_revision[0]); |
| 1067 | } |
| 1068 | |
| 1069 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1070 | qla2x00_optrom_fcode_version_show(struct device *dev, |
| 1071 | struct device_attribute *attr, char *buf) |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 1072 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1073 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1074 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 1075 | return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->fcode_revision[1], |
| 1076 | ha->fcode_revision[0]); |
| 1077 | } |
| 1078 | |
| 1079 | static ssize_t |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1080 | qla2x00_optrom_fw_version_show(struct device *dev, |
| 1081 | struct device_attribute *attr, char *buf) |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 1082 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1083 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1084 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 30c4766 | 2007-01-29 10:22:21 -0800 | [diff] [blame] | 1085 | return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d %d\n", |
| 1086 | ha->fw_revision[0], ha->fw_revision[1], ha->fw_revision[2], |
| 1087 | ha->fw_revision[3]); |
| 1088 | } |
| 1089 | |
Harish Zunjarrao | e5f5f6f | 2008-07-10 16:55:49 -0700 | [diff] [blame] | 1090 | static ssize_t |
Madhuranath Iyengar | 0f2d962 | 2010-07-23 15:28:26 +0500 | [diff] [blame] | 1091 | qla2x00_optrom_gold_fw_version_show(struct device *dev, |
| 1092 | struct device_attribute *attr, char *buf) |
| 1093 | { |
| 1094 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1095 | struct qla_hw_data *ha = vha->hw; |
| 1096 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1097 | if (!IS_QLA81XX(ha) && !IS_QLA83XX(ha)) |
Madhuranath Iyengar | 0f2d962 | 2010-07-23 15:28:26 +0500 | [diff] [blame] | 1098 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1099 | |
| 1100 | return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%d)\n", |
| 1101 | ha->gold_fw_version[0], ha->gold_fw_version[1], |
| 1102 | ha->gold_fw_version[2], ha->gold_fw_version[3]); |
| 1103 | } |
| 1104 | |
| 1105 | static ssize_t |
Harish Zunjarrao | e5f5f6f | 2008-07-10 16:55:49 -0700 | [diff] [blame] | 1106 | qla2x00_total_isp_aborts_show(struct device *dev, |
| 1107 | struct device_attribute *attr, char *buf) |
| 1108 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1109 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
Harish Zunjarrao | e5f5f6f | 2008-07-10 16:55:49 -0700 | [diff] [blame] | 1110 | return snprintf(buf, PAGE_SIZE, "%d\n", |
Saurav Kashyap | 2be21fa | 2012-05-15 14:34:16 -0400 | [diff] [blame] | 1111 | vha->qla_stats.total_isp_aborts); |
Harish Zunjarrao | e5f5f6f | 2008-07-10 16:55:49 -0700 | [diff] [blame] | 1112 | } |
| 1113 | |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1114 | static ssize_t |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 1115 | qla24xx_84xx_fw_version_show(struct device *dev, |
| 1116 | struct device_attribute *attr, char *buf) |
| 1117 | { |
| 1118 | int rval = QLA_SUCCESS; |
| 1119 | uint16_t status[2] = {0, 0}; |
| 1120 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1121 | struct qla_hw_data *ha = vha->hw; |
| 1122 | |
Andrew Vasquez | 0b9dae6 | 2010-05-04 15:01:21 -0700 | [diff] [blame] | 1123 | if (!IS_QLA84XX(ha)) |
| 1124 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1125 | |
Giridhar Malavali | 6c7ccf7 | 2010-05-28 15:08:29 -0700 | [diff] [blame] | 1126 | if (ha->cs84xx->op_fw_version == 0) |
Andrew Vasquez | 0b9dae6 | 2010-05-04 15:01:21 -0700 | [diff] [blame] | 1127 | rval = qla84xx_verify_chip(vha, status); |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 1128 | |
| 1129 | if ((rval == QLA_SUCCESS) && (status[0] == 0)) |
| 1130 | return snprintf(buf, PAGE_SIZE, "%u\n", |
| 1131 | (uint32_t)ha->cs84xx->op_fw_version); |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 1132 | |
| 1133 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1134 | } |
| 1135 | |
| 1136 | static ssize_t |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1137 | qla2x00_mpi_version_show(struct device *dev, struct device_attribute *attr, |
| 1138 | char *buf) |
| 1139 | { |
| 1140 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1141 | struct qla_hw_data *ha = vha->hw; |
| 1142 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1143 | if (!IS_QLA81XX(ha) && !IS_QLA8031(ha)) |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1144 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1145 | |
Andrew Vasquez | 55a9615 | 2009-03-24 09:08:03 -0700 | [diff] [blame] | 1146 | return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%x)\n", |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1147 | ha->mpi_version[0], ha->mpi_version[1], ha->mpi_version[2], |
Andrew Vasquez | 55a9615 | 2009-03-24 09:08:03 -0700 | [diff] [blame] | 1148 | ha->mpi_capabilities); |
| 1149 | } |
| 1150 | |
| 1151 | static ssize_t |
| 1152 | qla2x00_phy_version_show(struct device *dev, struct device_attribute *attr, |
| 1153 | char *buf) |
| 1154 | { |
| 1155 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1156 | struct qla_hw_data *ha = vha->hw; |
| 1157 | |
Nigel Kirkland | f863f60 | 2012-05-15 14:34:19 -0400 | [diff] [blame] | 1158 | if (!IS_QLA81XX(ha) && !IS_QLA8031(ha)) |
Andrew Vasquez | 55a9615 | 2009-03-24 09:08:03 -0700 | [diff] [blame] | 1159 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1160 | |
| 1161 | return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d\n", |
| 1162 | ha->phy_version[0], ha->phy_version[1], ha->phy_version[2]); |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1163 | } |
| 1164 | |
Lalit Chandivade | fbcbb5d | 2009-03-24 09:08:11 -0700 | [diff] [blame] | 1165 | static ssize_t |
| 1166 | qla2x00_flash_block_size_show(struct device *dev, |
| 1167 | struct device_attribute *attr, char *buf) |
| 1168 | { |
| 1169 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1170 | struct qla_hw_data *ha = vha->hw; |
| 1171 | |
| 1172 | return snprintf(buf, PAGE_SIZE, "0x%x\n", ha->fdt_block_size); |
| 1173 | } |
| 1174 | |
Andrew Vasquez | bad7001 | 2009-04-06 22:33:38 -0700 | [diff] [blame] | 1175 | static ssize_t |
| 1176 | qla2x00_vlan_id_show(struct device *dev, struct device_attribute *attr, |
| 1177 | char *buf) |
| 1178 | { |
| 1179 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1180 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1181 | if (!IS_CNA_CAPABLE(vha->hw)) |
Andrew Vasquez | bad7001 | 2009-04-06 22:33:38 -0700 | [diff] [blame] | 1182 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1183 | |
| 1184 | return snprintf(buf, PAGE_SIZE, "%d\n", vha->fcoe_vlan_id); |
| 1185 | } |
| 1186 | |
| 1187 | static ssize_t |
| 1188 | qla2x00_vn_port_mac_address_show(struct device *dev, |
| 1189 | struct device_attribute *attr, char *buf) |
| 1190 | { |
| 1191 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1192 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1193 | if (!IS_CNA_CAPABLE(vha->hw)) |
Andrew Vasquez | bad7001 | 2009-04-06 22:33:38 -0700 | [diff] [blame] | 1194 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1195 | |
| 1196 | return snprintf(buf, PAGE_SIZE, "%02x:%02x:%02x:%02x:%02x:%02x\n", |
| 1197 | vha->fcoe_vn_port_mac[5], vha->fcoe_vn_port_mac[4], |
| 1198 | vha->fcoe_vn_port_mac[3], vha->fcoe_vn_port_mac[2], |
| 1199 | vha->fcoe_vn_port_mac[1], vha->fcoe_vn_port_mac[0]); |
| 1200 | } |
| 1201 | |
Andrew Vasquez | 7f77402 | 2009-06-03 09:55:12 -0700 | [diff] [blame] | 1202 | static ssize_t |
| 1203 | qla2x00_fabric_param_show(struct device *dev, struct device_attribute *attr, |
| 1204 | char *buf) |
| 1205 | { |
| 1206 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1207 | |
| 1208 | return snprintf(buf, PAGE_SIZE, "%d\n", vha->hw->switch_cap); |
| 1209 | } |
| 1210 | |
Andrew Vasquez | 656e891 | 2009-06-03 09:55:29 -0700 | [diff] [blame] | 1211 | static ssize_t |
Andrew Vasquez | 794a569 | 2010-12-21 16:00:21 -0800 | [diff] [blame] | 1212 | qla2x00_thermal_temp_show(struct device *dev, |
| 1213 | struct device_attribute *attr, char *buf) |
| 1214 | { |
| 1215 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1216 | int rval = QLA_FUNCTION_FAILED; |
| 1217 | uint16_t temp, frac; |
| 1218 | |
| 1219 | if (!vha->hw->flags.thermal_supported) |
| 1220 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1221 | |
| 1222 | temp = frac = 0; |
Andrew Vasquez | d051a5aa | 2012-02-09 11:14:05 -0800 | [diff] [blame] | 1223 | if (qla2x00_reset_active(vha)) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1224 | ql_log(ql_log_warn, vha, 0x707b, |
| 1225 | "ISP reset active.\n"); |
Andrew Vasquez | 794a569 | 2010-12-21 16:00:21 -0800 | [diff] [blame] | 1226 | else if (!vha->hw->flags.eeh_busy) |
| 1227 | rval = qla2x00_get_thermal_temp(vha, &temp, &frac); |
| 1228 | if (rval != QLA_SUCCESS) |
Joe Carnuccio | aa61556 | 2012-02-09 11:15:40 -0800 | [diff] [blame] | 1229 | return snprintf(buf, PAGE_SIZE, "\n"); |
Andrew Vasquez | 794a569 | 2010-12-21 16:00:21 -0800 | [diff] [blame] | 1230 | |
| 1231 | return snprintf(buf, PAGE_SIZE, "%d.%02d\n", temp, frac); |
| 1232 | } |
| 1233 | |
| 1234 | static ssize_t |
Andrew Vasquez | 656e891 | 2009-06-03 09:55:29 -0700 | [diff] [blame] | 1235 | qla2x00_fw_state_show(struct device *dev, struct device_attribute *attr, |
| 1236 | char *buf) |
| 1237 | { |
| 1238 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 1239 | int rval = QLA_FUNCTION_FAILED; |
Andrew Vasquez | 656e891 | 2009-06-03 09:55:29 -0700 | [diff] [blame] | 1240 | uint16_t state[5]; |
| 1241 | |
Andrew Vasquez | d051a5aa | 2012-02-09 11:14:05 -0800 | [diff] [blame] | 1242 | if (qla2x00_reset_active(vha)) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1243 | ql_log(ql_log_warn, vha, 0x707c, |
| 1244 | "ISP reset active.\n"); |
Santosh Vernekar | d6136f3 | 2010-03-19 16:59:20 -0700 | [diff] [blame] | 1245 | else if (!vha->hw->flags.eeh_busy) |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 1246 | rval = qla2x00_get_firmware_state(vha, state); |
Andrew Vasquez | 656e891 | 2009-06-03 09:55:29 -0700 | [diff] [blame] | 1247 | if (rval != QLA_SUCCESS) |
| 1248 | memset(state, -1, sizeof(state)); |
| 1249 | |
| 1250 | return snprintf(buf, PAGE_SIZE, "0x%x 0x%x 0x%x 0x%x 0x%x\n", state[0], |
| 1251 | state[1], state[2], state[3], state[4]); |
| 1252 | } |
| 1253 | |
Saurav Kashyap | a9b6f72 | 2012-08-22 14:21:01 -0400 | [diff] [blame] | 1254 | static ssize_t |
| 1255 | qla2x00_diag_requests_show(struct device *dev, |
| 1256 | struct device_attribute *attr, char *buf) |
| 1257 | { |
| 1258 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1259 | |
| 1260 | if (!IS_BIDI_CAPABLE(vha->hw)) |
| 1261 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1262 | |
| 1263 | return snprintf(buf, PAGE_SIZE, "%llu\n", vha->bidi_stats.io_count); |
| 1264 | } |
| 1265 | |
| 1266 | static ssize_t |
| 1267 | qla2x00_diag_megabytes_show(struct device *dev, |
| 1268 | struct device_attribute *attr, char *buf) |
| 1269 | { |
| 1270 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1271 | |
| 1272 | if (!IS_BIDI_CAPABLE(vha->hw)) |
| 1273 | return snprintf(buf, PAGE_SIZE, "\n"); |
| 1274 | |
| 1275 | return snprintf(buf, PAGE_SIZE, "%llu\n", |
| 1276 | vha->bidi_stats.transfer_bytes >> 20); |
| 1277 | } |
| 1278 | |
Harish Zunjarrao | 40129a4 | 2012-08-22 14:21:02 -0400 | [diff] [blame^] | 1279 | static ssize_t |
| 1280 | qla2x00_fw_dump_size_show(struct device *dev, struct device_attribute *attr, |
| 1281 | char *buf) |
| 1282 | { |
| 1283 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
| 1284 | struct qla_hw_data *ha = vha->hw; |
| 1285 | uint32_t size; |
| 1286 | |
| 1287 | if (!ha->fw_dumped) |
| 1288 | size = 0; |
| 1289 | else if (IS_QLA82XX(ha)) |
| 1290 | size = ha->md_template_size + ha->md_dump_size; |
| 1291 | else |
| 1292 | size = ha->fw_dump_len; |
| 1293 | |
| 1294 | return snprintf(buf, PAGE_SIZE, "%d\n", size); |
| 1295 | } |
| 1296 | |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1297 | static DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, NULL); |
| 1298 | static DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL); |
| 1299 | static DEVICE_ATTR(serial_num, S_IRUGO, qla2x00_serial_num_show, NULL); |
| 1300 | static DEVICE_ATTR(isp_name, S_IRUGO, qla2x00_isp_name_show, NULL); |
| 1301 | static DEVICE_ATTR(isp_id, S_IRUGO, qla2x00_isp_id_show, NULL); |
| 1302 | static DEVICE_ATTR(model_name, S_IRUGO, qla2x00_model_name_show, NULL); |
| 1303 | static DEVICE_ATTR(model_desc, S_IRUGO, qla2x00_model_desc_show, NULL); |
| 1304 | static DEVICE_ATTR(pci_info, S_IRUGO, qla2x00_pci_info_show, NULL); |
Hannes Reinecke | bbd1ae4 | 2008-03-18 14:32:28 +0100 | [diff] [blame] | 1305 | static DEVICE_ATTR(link_state, S_IRUGO, qla2x00_link_state_show, NULL); |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1306 | static DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show, qla2x00_zio_store); |
| 1307 | static DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show, |
| 1308 | qla2x00_zio_timer_store); |
| 1309 | static DEVICE_ATTR(beacon, S_IRUGO | S_IWUSR, qla2x00_beacon_show, |
| 1310 | qla2x00_beacon_store); |
| 1311 | static DEVICE_ATTR(optrom_bios_version, S_IRUGO, |
| 1312 | qla2x00_optrom_bios_version_show, NULL); |
| 1313 | static DEVICE_ATTR(optrom_efi_version, S_IRUGO, |
| 1314 | qla2x00_optrom_efi_version_show, NULL); |
| 1315 | static DEVICE_ATTR(optrom_fcode_version, S_IRUGO, |
| 1316 | qla2x00_optrom_fcode_version_show, NULL); |
| 1317 | static DEVICE_ATTR(optrom_fw_version, S_IRUGO, qla2x00_optrom_fw_version_show, |
| 1318 | NULL); |
Madhuranath Iyengar | 0f2d962 | 2010-07-23 15:28:26 +0500 | [diff] [blame] | 1319 | static DEVICE_ATTR(optrom_gold_fw_version, S_IRUGO, |
| 1320 | qla2x00_optrom_gold_fw_version_show, NULL); |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 1321 | static DEVICE_ATTR(84xx_fw_version, S_IRUGO, qla24xx_84xx_fw_version_show, |
| 1322 | NULL); |
Harish Zunjarrao | e5f5f6f | 2008-07-10 16:55:49 -0700 | [diff] [blame] | 1323 | static DEVICE_ATTR(total_isp_aborts, S_IRUGO, qla2x00_total_isp_aborts_show, |
| 1324 | NULL); |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1325 | static DEVICE_ATTR(mpi_version, S_IRUGO, qla2x00_mpi_version_show, NULL); |
Andrew Vasquez | 55a9615 | 2009-03-24 09:08:03 -0700 | [diff] [blame] | 1326 | static DEVICE_ATTR(phy_version, S_IRUGO, qla2x00_phy_version_show, NULL); |
Lalit Chandivade | fbcbb5d | 2009-03-24 09:08:11 -0700 | [diff] [blame] | 1327 | static DEVICE_ATTR(flash_block_size, S_IRUGO, qla2x00_flash_block_size_show, |
| 1328 | NULL); |
Andrew Vasquez | bad7001 | 2009-04-06 22:33:38 -0700 | [diff] [blame] | 1329 | static DEVICE_ATTR(vlan_id, S_IRUGO, qla2x00_vlan_id_show, NULL); |
| 1330 | static DEVICE_ATTR(vn_port_mac_address, S_IRUGO, |
| 1331 | qla2x00_vn_port_mac_address_show, NULL); |
Andrew Vasquez | 7f77402 | 2009-06-03 09:55:12 -0700 | [diff] [blame] | 1332 | static DEVICE_ATTR(fabric_param, S_IRUGO, qla2x00_fabric_param_show, NULL); |
Andrew Vasquez | 656e891 | 2009-06-03 09:55:29 -0700 | [diff] [blame] | 1333 | static DEVICE_ATTR(fw_state, S_IRUGO, qla2x00_fw_state_show, NULL); |
Andrew Vasquez | 794a569 | 2010-12-21 16:00:21 -0800 | [diff] [blame] | 1334 | static DEVICE_ATTR(thermal_temp, S_IRUGO, qla2x00_thermal_temp_show, NULL); |
Saurav Kashyap | a9b6f72 | 2012-08-22 14:21:01 -0400 | [diff] [blame] | 1335 | static DEVICE_ATTR(diag_requests, S_IRUGO, qla2x00_diag_requests_show, NULL); |
| 1336 | static DEVICE_ATTR(diag_megabytes, S_IRUGO, qla2x00_diag_megabytes_show, NULL); |
Harish Zunjarrao | 40129a4 | 2012-08-22 14:21:02 -0400 | [diff] [blame^] | 1337 | static DEVICE_ATTR(fw_dump_size, S_IRUGO, qla2x00_fw_dump_size_show, NULL); |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 1338 | |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1339 | struct device_attribute *qla2x00_host_attrs[] = { |
| 1340 | &dev_attr_driver_version, |
| 1341 | &dev_attr_fw_version, |
| 1342 | &dev_attr_serial_num, |
| 1343 | &dev_attr_isp_name, |
| 1344 | &dev_attr_isp_id, |
| 1345 | &dev_attr_model_name, |
| 1346 | &dev_attr_model_desc, |
| 1347 | &dev_attr_pci_info, |
Hannes Reinecke | bbd1ae4 | 2008-03-18 14:32:28 +0100 | [diff] [blame] | 1348 | &dev_attr_link_state, |
Tony Jones | ee959b0 | 2008-02-22 00:13:36 +0100 | [diff] [blame] | 1349 | &dev_attr_zio, |
| 1350 | &dev_attr_zio_timer, |
| 1351 | &dev_attr_beacon, |
| 1352 | &dev_attr_optrom_bios_version, |
| 1353 | &dev_attr_optrom_efi_version, |
| 1354 | &dev_attr_optrom_fcode_version, |
| 1355 | &dev_attr_optrom_fw_version, |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 1356 | &dev_attr_84xx_fw_version, |
Harish Zunjarrao | e5f5f6f | 2008-07-10 16:55:49 -0700 | [diff] [blame] | 1357 | &dev_attr_total_isp_aborts, |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1358 | &dev_attr_mpi_version, |
Andrew Vasquez | 55a9615 | 2009-03-24 09:08:03 -0700 | [diff] [blame] | 1359 | &dev_attr_phy_version, |
Lalit Chandivade | fbcbb5d | 2009-03-24 09:08:11 -0700 | [diff] [blame] | 1360 | &dev_attr_flash_block_size, |
Andrew Vasquez | bad7001 | 2009-04-06 22:33:38 -0700 | [diff] [blame] | 1361 | &dev_attr_vlan_id, |
| 1362 | &dev_attr_vn_port_mac_address, |
Andrew Vasquez | 7f77402 | 2009-06-03 09:55:12 -0700 | [diff] [blame] | 1363 | &dev_attr_fabric_param, |
Andrew Vasquez | 656e891 | 2009-06-03 09:55:29 -0700 | [diff] [blame] | 1364 | &dev_attr_fw_state, |
Madhuranath Iyengar | 0f2d962 | 2010-07-23 15:28:26 +0500 | [diff] [blame] | 1365 | &dev_attr_optrom_gold_fw_version, |
Andrew Vasquez | 794a569 | 2010-12-21 16:00:21 -0800 | [diff] [blame] | 1366 | &dev_attr_thermal_temp, |
Saurav Kashyap | a9b6f72 | 2012-08-22 14:21:01 -0400 | [diff] [blame] | 1367 | &dev_attr_diag_requests, |
| 1368 | &dev_attr_diag_megabytes, |
Harish Zunjarrao | 40129a4 | 2012-08-22 14:21:02 -0400 | [diff] [blame^] | 1369 | &dev_attr_fw_dump_size, |
Andrew Vasquez | afb046e | 2005-08-26 19:09:40 -0700 | [diff] [blame] | 1370 | NULL, |
| 1371 | }; |
| 1372 | |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1373 | /* Host attributes. */ |
| 1374 | |
| 1375 | static void |
| 1376 | qla2x00_get_host_port_id(struct Scsi_Host *shost) |
| 1377 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1378 | scsi_qla_host_t *vha = shost_priv(shost); |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1379 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1380 | fc_host_port_id(shost) = vha->d_id.b.domain << 16 | |
| 1381 | vha->d_id.b.area << 8 | vha->d_id.b.al_pa; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1382 | } |
| 1383 | |
| 1384 | static void |
andrew.vasquez@qlogic.com | 0441401 | 2006-01-31 16:04:51 -0800 | [diff] [blame] | 1385 | qla2x00_get_host_speed(struct Scsi_Host *shost) |
| 1386 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1387 | struct qla_hw_data *ha = ((struct scsi_qla_host *) |
| 1388 | (shost_priv(shost)))->hw; |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 1389 | u32 speed = FC_PORTSPEED_UNKNOWN; |
andrew.vasquez@qlogic.com | 0441401 | 2006-01-31 16:04:51 -0800 | [diff] [blame] | 1390 | |
| 1391 | switch (ha->link_data_rate) { |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 1392 | case PORT_SPEED_1GB: |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 1393 | speed = FC_PORTSPEED_1GBIT; |
andrew.vasquez@qlogic.com | 0441401 | 2006-01-31 16:04:51 -0800 | [diff] [blame] | 1394 | break; |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 1395 | case PORT_SPEED_2GB: |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 1396 | speed = FC_PORTSPEED_2GBIT; |
andrew.vasquez@qlogic.com | 0441401 | 2006-01-31 16:04:51 -0800 | [diff] [blame] | 1397 | break; |
Andrew Vasquez | d8b4521 | 2006-10-02 12:00:43 -0700 | [diff] [blame] | 1398 | case PORT_SPEED_4GB: |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 1399 | speed = FC_PORTSPEED_4GBIT; |
andrew.vasquez@qlogic.com | 0441401 | 2006-01-31 16:04:51 -0800 | [diff] [blame] | 1400 | break; |
Seokmann Ju | da4541b | 2008-01-31 12:33:52 -0800 | [diff] [blame] | 1401 | case PORT_SPEED_8GB: |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 1402 | speed = FC_PORTSPEED_8GBIT; |
Seokmann Ju | da4541b | 2008-01-31 12:33:52 -0800 | [diff] [blame] | 1403 | break; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 1404 | case PORT_SPEED_10GB: |
| 1405 | speed = FC_PORTSPEED_10GBIT; |
| 1406 | break; |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1407 | case PORT_SPEED_16GB: |
| 1408 | speed = FC_PORTSPEED_16GBIT; |
| 1409 | break; |
andrew.vasquez@qlogic.com | 0441401 | 2006-01-31 16:04:51 -0800 | [diff] [blame] | 1410 | } |
| 1411 | fc_host_speed(shost) = speed; |
| 1412 | } |
| 1413 | |
| 1414 | static void |
andrew.vasquez@qlogic.com | 8d06762 | 2006-01-31 16:04:56 -0800 | [diff] [blame] | 1415 | qla2x00_get_host_port_type(struct Scsi_Host *shost) |
| 1416 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1417 | scsi_qla_host_t *vha = shost_priv(shost); |
andrew.vasquez@qlogic.com | 8d06762 | 2006-01-31 16:04:56 -0800 | [diff] [blame] | 1418 | uint32_t port_type = FC_PORTTYPE_UNKNOWN; |
| 1419 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1420 | if (vha->vp_idx) { |
Shyam Sundar | 2f2fa13 | 2008-05-12 22:21:07 -0700 | [diff] [blame] | 1421 | fc_host_port_type(shost) = FC_PORTTYPE_NPIV; |
| 1422 | return; |
| 1423 | } |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1424 | switch (vha->hw->current_topology) { |
andrew.vasquez@qlogic.com | 8d06762 | 2006-01-31 16:04:56 -0800 | [diff] [blame] | 1425 | case ISP_CFG_NL: |
| 1426 | port_type = FC_PORTTYPE_LPORT; |
| 1427 | break; |
| 1428 | case ISP_CFG_FL: |
| 1429 | port_type = FC_PORTTYPE_NLPORT; |
| 1430 | break; |
| 1431 | case ISP_CFG_N: |
| 1432 | port_type = FC_PORTTYPE_PTP; |
| 1433 | break; |
| 1434 | case ISP_CFG_F: |
| 1435 | port_type = FC_PORTTYPE_NPORT; |
| 1436 | break; |
| 1437 | } |
| 1438 | fc_host_port_type(shost) = port_type; |
| 1439 | } |
| 1440 | |
| 1441 | static void |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1442 | qla2x00_get_starget_node_name(struct scsi_target *starget) |
| 1443 | { |
| 1444 | struct Scsi_Host *host = dev_to_shost(starget->dev.parent); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1445 | scsi_qla_host_t *vha = shost_priv(host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1446 | fc_port_t *fcport; |
Andrew Vasquez | f8b02a8 | 2005-08-31 15:21:20 -0700 | [diff] [blame] | 1447 | u64 node_name = 0; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1448 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1449 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
Andrew Vasquez | 5ab5a4d | 2008-04-03 13:13:16 -0700 | [diff] [blame] | 1450 | if (fcport->rport && |
| 1451 | starget->id == fcport->rport->scsi_target_id) { |
Andrew Vasquez | f8b02a8 | 2005-08-31 15:21:20 -0700 | [diff] [blame] | 1452 | node_name = wwn_to_u64(fcport->node_name); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1453 | break; |
| 1454 | } |
| 1455 | } |
| 1456 | |
Andrew Vasquez | f8b02a8 | 2005-08-31 15:21:20 -0700 | [diff] [blame] | 1457 | fc_starget_node_name(starget) = node_name; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1458 | } |
| 1459 | |
| 1460 | static void |
| 1461 | qla2x00_get_starget_port_name(struct scsi_target *starget) |
| 1462 | { |
| 1463 | struct Scsi_Host *host = dev_to_shost(starget->dev.parent); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1464 | scsi_qla_host_t *vha = shost_priv(host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1465 | fc_port_t *fcport; |
Andrew Vasquez | f8b02a8 | 2005-08-31 15:21:20 -0700 | [diff] [blame] | 1466 | u64 port_name = 0; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1467 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1468 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
Andrew Vasquez | 5ab5a4d | 2008-04-03 13:13:16 -0700 | [diff] [blame] | 1469 | if (fcport->rport && |
| 1470 | starget->id == fcport->rport->scsi_target_id) { |
Andrew Vasquez | f8b02a8 | 2005-08-31 15:21:20 -0700 | [diff] [blame] | 1471 | port_name = wwn_to_u64(fcport->port_name); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1472 | break; |
| 1473 | } |
| 1474 | } |
| 1475 | |
Andrew Vasquez | f8b02a8 | 2005-08-31 15:21:20 -0700 | [diff] [blame] | 1476 | fc_starget_port_name(starget) = port_name; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1477 | } |
| 1478 | |
| 1479 | static void |
| 1480 | qla2x00_get_starget_port_id(struct scsi_target *starget) |
| 1481 | { |
| 1482 | struct Scsi_Host *host = dev_to_shost(starget->dev.parent); |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1483 | scsi_qla_host_t *vha = shost_priv(host); |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1484 | fc_port_t *fcport; |
| 1485 | uint32_t port_id = ~0U; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1486 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1487 | list_for_each_entry(fcport, &vha->vp_fcports, list) { |
Andrew Vasquez | 5ab5a4d | 2008-04-03 13:13:16 -0700 | [diff] [blame] | 1488 | if (fcport->rport && |
| 1489 | starget->id == fcport->rport->scsi_target_id) { |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1490 | port_id = fcport->d_id.b.domain << 16 | |
| 1491 | fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa; |
| 1492 | break; |
| 1493 | } |
| 1494 | } |
| 1495 | |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1496 | fc_starget_port_id(starget) = port_id; |
| 1497 | } |
| 1498 | |
| 1499 | static void |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1500 | qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout) |
| 1501 | { |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1502 | if (timeout) |
Andrew Vasquez | 85821c9 | 2008-07-10 16:55:48 -0700 | [diff] [blame] | 1503 | rport->dev_loss_tmo = timeout; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1504 | else |
Andrew Vasquez | 85821c9 | 2008-07-10 16:55:48 -0700 | [diff] [blame] | 1505 | rport->dev_loss_tmo = 1; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1506 | } |
| 1507 | |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 1508 | static void |
| 1509 | qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport) |
| 1510 | { |
| 1511 | struct Scsi_Host *host = rport_to_shost(rport); |
| 1512 | fc_port_t *fcport = *(fc_port_t **)rport->dd_data; |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 1513 | unsigned long flags; |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 1514 | |
Seokmann Ju | 3c01b4f | 2009-01-22 09:45:38 -0800 | [diff] [blame] | 1515 | if (!fcport) |
| 1516 | return; |
| 1517 | |
Giridhar Malavali | 38170fa | 2010-10-15 11:27:49 -0700 | [diff] [blame] | 1518 | /* Now that the rport has been deleted, set the fcport state to |
| 1519 | FCS_DEVICE_DEAD */ |
Chad Dupuis | ec426e1 | 2011-03-30 11:46:32 -0700 | [diff] [blame] | 1520 | qla2x00_set_fcport_state(fcport, FCS_DEVICE_DEAD); |
Giridhar Malavali | 38170fa | 2010-10-15 11:27:49 -0700 | [diff] [blame] | 1521 | |
Giridhar Malavali | 3fadb80b | 2010-09-03 15:20:55 -0700 | [diff] [blame] | 1522 | /* |
| 1523 | * Transport has effectively 'deleted' the rport, clear |
| 1524 | * all local references. |
| 1525 | */ |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 1526 | spin_lock_irqsave(host->host_lock, flags); |
Giridhar Malavali | 3fadb80b | 2010-09-03 15:20:55 -0700 | [diff] [blame] | 1527 | fcport->rport = fcport->drport = NULL; |
| 1528 | *((fc_port_t **)rport->dd_data) = NULL; |
Madhuranath Iyengar | 044d78e | 2011-01-28 15:17:56 -0800 | [diff] [blame] | 1529 | spin_unlock_irqrestore(host->host_lock, flags); |
Giridhar Malavali | 3fadb80b | 2010-09-03 15:20:55 -0700 | [diff] [blame] | 1530 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 1531 | if (test_bit(ABORT_ISP_ACTIVE, &fcport->vha->dpc_flags)) |
| 1532 | return; |
| 1533 | |
| 1534 | if (unlikely(pci_channel_offline(fcport->vha->hw->pdev))) { |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 1535 | qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16); |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 1536 | return; |
| 1537 | } |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 1538 | } |
| 1539 | |
| 1540 | static void |
| 1541 | qla2x00_terminate_rport_io(struct fc_rport *rport) |
| 1542 | { |
| 1543 | fc_port_t *fcport = *(fc_port_t **)rport->dd_data; |
| 1544 | |
Seokmann Ju | 3c01b4f | 2009-01-22 09:45:38 -0800 | [diff] [blame] | 1545 | if (!fcport) |
| 1546 | return; |
| 1547 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 1548 | if (test_bit(ABORT_ISP_ACTIVE, &fcport->vha->dpc_flags)) |
| 1549 | return; |
| 1550 | |
Seokmann Ju | b9b12f7 | 2009-03-24 09:08:18 -0700 | [diff] [blame] | 1551 | if (unlikely(pci_channel_offline(fcport->vha->hw->pdev))) { |
| 1552 | qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16); |
| 1553 | return; |
| 1554 | } |
Andrew Vasquez | 6390d1f | 2008-08-13 21:36:56 -0700 | [diff] [blame] | 1555 | /* |
| 1556 | * At this point all fcport's software-states are cleared. Perform any |
| 1557 | * final cleanup of firmware resources (PCBs and XCBs). |
| 1558 | */ |
Andrew Vasquez | 6805c15 | 2009-06-03 09:55:27 -0700 | [diff] [blame] | 1559 | if (fcport->loop_id != FC_NO_LOOP_ID && |
Andrew Vasquez | af11f64 | 2012-02-09 11:15:43 -0800 | [diff] [blame] | 1560 | !test_bit(UNLOADING, &fcport->vha->dpc_flags)) { |
| 1561 | if (IS_FWI2_CAPABLE(fcport->vha->hw)) |
| 1562 | fcport->vha->hw->isp_ops->fabric_logout(fcport->vha, |
| 1563 | fcport->loop_id, fcport->d_id.b.domain, |
| 1564 | fcport->d_id.b.area, fcport->d_id.b.al_pa); |
| 1565 | else |
| 1566 | qla2x00_port_logout(fcport->vha, fcport); |
| 1567 | } |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 1568 | } |
| 1569 | |
Andrew Vasquez | 91ca7b0 | 2005-10-27 16:03:37 -0700 | [diff] [blame] | 1570 | static int |
| 1571 | qla2x00_issue_lip(struct Scsi_Host *shost) |
| 1572 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1573 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 91ca7b0 | 2005-10-27 16:03:37 -0700 | [diff] [blame] | 1574 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1575 | qla2x00_loop_reset(vha); |
Andrew Vasquez | 91ca7b0 | 2005-10-27 16:03:37 -0700 | [diff] [blame] | 1576 | return 0; |
| 1577 | } |
| 1578 | |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 1579 | static struct fc_host_statistics * |
| 1580 | qla2x00_get_fc_host_stats(struct Scsi_Host *shost) |
| 1581 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1582 | scsi_qla_host_t *vha = shost_priv(shost); |
| 1583 | struct qla_hw_data *ha = vha->hw; |
| 1584 | struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev); |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 1585 | int rval; |
Andrew Vasquez | 43ef058 | 2008-01-17 09:02:08 -0800 | [diff] [blame] | 1586 | struct link_statistics *stats; |
| 1587 | dma_addr_t stats_dma; |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 1588 | struct fc_host_statistics *pfc_host_stat; |
| 1589 | |
Saurav Kashyap | 2be21fa | 2012-05-15 14:34:16 -0400 | [diff] [blame] | 1590 | pfc_host_stat = &vha->fc_host_stat; |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 1591 | memset(pfc_host_stat, -1, sizeof(struct fc_host_statistics)); |
| 1592 | |
Andrew Vasquez | 8588080 | 2009-12-15 21:29:46 -0800 | [diff] [blame] | 1593 | if (test_bit(UNLOADING, &vha->dpc_flags)) |
| 1594 | goto done; |
| 1595 | |
| 1596 | if (unlikely(pci_channel_offline(ha->pdev))) |
| 1597 | goto done; |
| 1598 | |
Andrew Vasquez | 43ef058 | 2008-01-17 09:02:08 -0800 | [diff] [blame] | 1599 | stats = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &stats_dma); |
| 1600 | if (stats == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1601 | ql_log(ql_log_warn, vha, 0x707d, |
| 1602 | "Failed to allocate memory for stats.\n"); |
Andrew Vasquez | 43ef058 | 2008-01-17 09:02:08 -0800 | [diff] [blame] | 1603 | goto done; |
| 1604 | } |
| 1605 | memset(stats, 0, DMA_POOL_SIZE); |
| 1606 | |
| 1607 | rval = QLA_FUNCTION_FAILED; |
Andrew Vasquez | e428924 | 2007-07-19 15:05:56 -0700 | [diff] [blame] | 1608 | if (IS_FWI2_CAPABLE(ha)) { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1609 | rval = qla24xx_get_isp_stats(base_vha, stats, stats_dma); |
| 1610 | } else if (atomic_read(&base_vha->loop_state) == LOOP_READY && |
Andrew Vasquez | d051a5aa | 2012-02-09 11:14:05 -0800 | [diff] [blame] | 1611 | !qla2x00_reset_active(vha) && !ha->dpc_active) { |
Andrew Vasquez | 178779a | 2007-01-29 10:22:25 -0800 | [diff] [blame] | 1612 | /* Must be in a 'READY' state for statistics retrieval. */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1613 | rval = qla2x00_get_link_status(base_vha, base_vha->loop_id, |
| 1614 | stats, stats_dma); |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 1615 | } |
Andrew Vasquez | 178779a | 2007-01-29 10:22:25 -0800 | [diff] [blame] | 1616 | |
| 1617 | if (rval != QLA_SUCCESS) |
Andrew Vasquez | 43ef058 | 2008-01-17 09:02:08 -0800 | [diff] [blame] | 1618 | goto done_free; |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 1619 | |
Andrew Vasquez | 43ef058 | 2008-01-17 09:02:08 -0800 | [diff] [blame] | 1620 | pfc_host_stat->link_failure_count = stats->link_fail_cnt; |
| 1621 | pfc_host_stat->loss_of_sync_count = stats->loss_sync_cnt; |
| 1622 | pfc_host_stat->loss_of_signal_count = stats->loss_sig_cnt; |
| 1623 | pfc_host_stat->prim_seq_protocol_err_count = stats->prim_seq_err_cnt; |
| 1624 | pfc_host_stat->invalid_tx_word_count = stats->inval_xmit_word_cnt; |
| 1625 | pfc_host_stat->invalid_crc_count = stats->inval_crc_cnt; |
| 1626 | if (IS_FWI2_CAPABLE(ha)) { |
Harish Zunjarrao | 032d8dd | 2008-07-10 16:55:50 -0700 | [diff] [blame] | 1627 | pfc_host_stat->lip_count = stats->lip_cnt; |
Andrew Vasquez | 43ef058 | 2008-01-17 09:02:08 -0800 | [diff] [blame] | 1628 | pfc_host_stat->tx_frames = stats->tx_frames; |
| 1629 | pfc_host_stat->rx_frames = stats->rx_frames; |
| 1630 | pfc_host_stat->dumped_frames = stats->dumped_frames; |
| 1631 | pfc_host_stat->nos_count = stats->nos_rcvd; |
| 1632 | } |
Saurav Kashyap | 2be21fa | 2012-05-15 14:34:16 -0400 | [diff] [blame] | 1633 | pfc_host_stat->fcp_input_megabytes = vha->qla_stats.input_bytes >> 20; |
| 1634 | pfc_host_stat->fcp_output_megabytes = vha->qla_stats.output_bytes >> 20; |
Andrew Vasquez | 43ef058 | 2008-01-17 09:02:08 -0800 | [diff] [blame] | 1635 | |
| 1636 | done_free: |
| 1637 | dma_pool_free(ha->s_dma_pool, stats, stats_dma); |
Andrew Vasquez | 178779a | 2007-01-29 10:22:25 -0800 | [diff] [blame] | 1638 | done: |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 1639 | return pfc_host_stat; |
| 1640 | } |
| 1641 | |
Andrew Vasquez | 1620f7c | 2006-10-02 12:00:44 -0700 | [diff] [blame] | 1642 | static void |
| 1643 | qla2x00_get_host_symbolic_name(struct Scsi_Host *shost) |
| 1644 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1645 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | 1620f7c | 2006-10-02 12:00:44 -0700 | [diff] [blame] | 1646 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1647 | qla2x00_get_sym_node_name(vha, fc_host_symbolic_name(shost)); |
Andrew Vasquez | 1620f7c | 2006-10-02 12:00:44 -0700 | [diff] [blame] | 1648 | } |
| 1649 | |
Andrew Vasquez | a740a3f | 2006-10-02 12:00:45 -0700 | [diff] [blame] | 1650 | static void |
| 1651 | qla2x00_set_host_system_hostname(struct Scsi_Host *shost) |
| 1652 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1653 | scsi_qla_host_t *vha = shost_priv(shost); |
Andrew Vasquez | a740a3f | 2006-10-02 12:00:45 -0700 | [diff] [blame] | 1654 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1655 | set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags); |
Andrew Vasquez | a740a3f | 2006-10-02 12:00:45 -0700 | [diff] [blame] | 1656 | } |
| 1657 | |
Andrew Vasquez | 90991c8 | 2006-10-02 12:00:46 -0700 | [diff] [blame] | 1658 | static void |
| 1659 | qla2x00_get_host_fabric_name(struct Scsi_Host *shost) |
| 1660 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1661 | scsi_qla_host_t *vha = shost_priv(shost); |
Giridhar Malavali | 35e0cbd | 2010-09-03 15:20:51 -0700 | [diff] [blame] | 1662 | uint8_t node_name[WWN_SIZE] = { 0xFF, 0xFF, 0xFF, 0xFF, \ |
| 1663 | 0xFF, 0xFF, 0xFF, 0xFF}; |
| 1664 | u64 fabric_name = wwn_to_u64(node_name); |
Andrew Vasquez | 90991c8 | 2006-10-02 12:00:46 -0700 | [diff] [blame] | 1665 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1666 | if (vha->device_flags & SWITCH_FOUND) |
Giridhar Malavali | 35e0cbd | 2010-09-03 15:20:51 -0700 | [diff] [blame] | 1667 | fabric_name = wwn_to_u64(vha->fabric_node_name); |
Andrew Vasquez | 90991c8 | 2006-10-02 12:00:46 -0700 | [diff] [blame] | 1668 | |
Giridhar Malavali | 35e0cbd | 2010-09-03 15:20:51 -0700 | [diff] [blame] | 1669 | fc_host_fabric_name(shost) = fabric_name; |
Andrew Vasquez | 90991c8 | 2006-10-02 12:00:46 -0700 | [diff] [blame] | 1670 | } |
| 1671 | |
Andrew Vasquez | 7047fcd | 2006-10-02 12:00:47 -0700 | [diff] [blame] | 1672 | static void |
| 1673 | qla2x00_get_host_port_state(struct Scsi_Host *shost) |
| 1674 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1675 | scsi_qla_host_t *vha = shost_priv(shost); |
| 1676 | struct scsi_qla_host *base_vha = pci_get_drvdata(vha->hw->pdev); |
Andrew Vasquez | 7047fcd | 2006-10-02 12:00:47 -0700 | [diff] [blame] | 1677 | |
Saurav Kashyap | 49e85c2 | 2011-11-18 09:02:20 -0800 | [diff] [blame] | 1678 | if (!base_vha->flags.online) { |
Andrew Vasquez | 7047fcd | 2006-10-02 12:00:47 -0700 | [diff] [blame] | 1679 | fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE; |
Saurav Kashyap | 49e85c2 | 2011-11-18 09:02:20 -0800 | [diff] [blame] | 1680 | return; |
| 1681 | } |
| 1682 | |
| 1683 | switch (atomic_read(&base_vha->loop_state)) { |
| 1684 | case LOOP_UPDATE: |
| 1685 | fc_host_port_state(shost) = FC_PORTSTATE_DIAGNOSTICS; |
| 1686 | break; |
| 1687 | case LOOP_DOWN: |
| 1688 | if (test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags)) |
| 1689 | fc_host_port_state(shost) = FC_PORTSTATE_DIAGNOSTICS; |
| 1690 | else |
| 1691 | fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN; |
| 1692 | break; |
| 1693 | case LOOP_DEAD: |
| 1694 | fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN; |
| 1695 | break; |
| 1696 | case LOOP_READY: |
Andrew Vasquez | 7047fcd | 2006-10-02 12:00:47 -0700 | [diff] [blame] | 1697 | fc_host_port_state(shost) = FC_PORTSTATE_ONLINE; |
Saurav Kashyap | 49e85c2 | 2011-11-18 09:02:20 -0800 | [diff] [blame] | 1698 | break; |
| 1699 | default: |
| 1700 | fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN; |
| 1701 | break; |
| 1702 | } |
Andrew Vasquez | 7047fcd | 2006-10-02 12:00:47 -0700 | [diff] [blame] | 1703 | } |
| 1704 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1705 | static int |
| 1706 | qla24xx_vport_create(struct fc_vport *fc_vport, bool disable) |
| 1707 | { |
| 1708 | int ret = 0; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1709 | uint8_t qos = 0; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1710 | scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost); |
| 1711 | scsi_qla_host_t *vha = NULL; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1712 | struct qla_hw_data *ha = base_vha->hw; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1713 | uint16_t options = 0; |
| 1714 | int cnt; |
Anirban Chakraborty | 59e0b8b | 2009-06-03 09:55:19 -0700 | [diff] [blame] | 1715 | struct req_que *req = ha->req_q_map[0]; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1716 | |
| 1717 | ret = qla24xx_vport_create_req_sanity_check(fc_vport); |
| 1718 | if (ret) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1719 | ql_log(ql_log_warn, vha, 0x707e, |
| 1720 | "Vport sanity check failed, status %x\n", ret); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1721 | return (ret); |
| 1722 | } |
| 1723 | |
| 1724 | vha = qla24xx_create_vhost(fc_vport); |
| 1725 | if (vha == NULL) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1726 | ql_log(ql_log_warn, vha, 0x707f, "Vport create host failed.\n"); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1727 | return FC_VPORT_FAILED; |
| 1728 | } |
| 1729 | if (disable) { |
| 1730 | atomic_set(&vha->vp_state, VP_OFFLINE); |
| 1731 | fc_vport_set_state(fc_vport, FC_VPORT_DISABLED); |
| 1732 | } else |
| 1733 | atomic_set(&vha->vp_state, VP_FAILED); |
| 1734 | |
| 1735 | /* ready to create vport */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1736 | ql_log(ql_log_info, vha, 0x7080, |
| 1737 | "VP entry id %d assigned.\n", vha->vp_idx); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1738 | |
| 1739 | /* initialized vport states */ |
| 1740 | atomic_set(&vha->loop_state, LOOP_DOWN); |
| 1741 | vha->vp_err_state= VP_ERR_PORTDWN; |
| 1742 | vha->vp_prev_err_state= VP_ERR_UNKWN; |
| 1743 | /* Check if physical ha port is Up */ |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1744 | if (atomic_read(&base_vha->loop_state) == LOOP_DOWN || |
| 1745 | atomic_read(&base_vha->loop_state) == LOOP_DEAD) { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1746 | /* Don't retry or attempt login of this virtual port */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1747 | ql_dbg(ql_dbg_user, vha, 0x7081, |
| 1748 | "Vport loop state is not UP.\n"); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1749 | atomic_set(&vha->loop_state, LOOP_DEAD); |
| 1750 | if (!disable) |
| 1751 | fc_vport_set_state(fc_vport, FC_VPORT_LINKDOWN); |
| 1752 | } |
| 1753 | |
Arun Easi | e02587d | 2011-08-16 11:29:23 -0700 | [diff] [blame] | 1754 | if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) { |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1755 | if (ha->fw_attributes & BIT_4) { |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 1756 | int prot = 0; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1757 | vha->flags.difdix_supported = 1; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1758 | ql_dbg(ql_dbg_user, vha, 0x7082, |
| 1759 | "Registered for DIF/DIX type 1 and 3 protection.\n"); |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 1760 | if (ql2xenabledif == 1) |
| 1761 | prot = SHOST_DIX_TYPE0_PROTECTION; |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1762 | scsi_host_set_prot(vha->host, |
Arun Easi | 8cb2049 | 2011-08-16 11:29:22 -0700 | [diff] [blame] | 1763 | prot | SHOST_DIF_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 1764 | | SHOST_DIF_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1765 | | SHOST_DIF_TYPE3_PROTECTION |
| 1766 | | SHOST_DIX_TYPE1_PROTECTION |
Arun Easi | 0c47087 | 2010-07-23 15:28:38 +0500 | [diff] [blame] | 1767 | | SHOST_DIX_TYPE2_PROTECTION |
Arun Easi | bad7500 | 2010-05-04 15:01:30 -0700 | [diff] [blame] | 1768 | | SHOST_DIX_TYPE3_PROTECTION); |
| 1769 | scsi_host_set_guard(vha->host, SHOST_DIX_GUARD_CRC); |
| 1770 | } else |
| 1771 | vha->flags.difdix_supported = 0; |
| 1772 | } |
| 1773 | |
James Bottomley | d139b9b | 2009-11-05 13:33:12 -0600 | [diff] [blame] | 1774 | if (scsi_add_host_with_dma(vha->host, &fc_vport->dev, |
| 1775 | &ha->pdev->dev)) { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1776 | ql_dbg(ql_dbg_user, vha, 0x7083, |
| 1777 | "scsi_add_host failure for VP[%d].\n", vha->vp_idx); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1778 | goto vport_create_failed_2; |
| 1779 | } |
| 1780 | |
| 1781 | /* initialize attributes */ |
Mike Christie | d2b5f10 | 2010-09-15 16:52:30 -0500 | [diff] [blame] | 1782 | fc_host_dev_loss_tmo(vha->host) = ha->port_down_retry_count; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1783 | fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name); |
| 1784 | fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name); |
| 1785 | fc_host_supported_classes(vha->host) = |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1786 | fc_host_supported_classes(base_vha->host); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1787 | fc_host_supported_speeds(vha->host) = |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1788 | fc_host_supported_speeds(base_vha->host); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1789 | |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 1790 | qlt_vport_create(vha, ha); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1791 | qla24xx_vport_disable(fc_vport, disable); |
| 1792 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 1793 | if (ha->flags.cpu_affinity_enabled) { |
Anirban Chakraborty | 59e0b8b | 2009-06-03 09:55:19 -0700 | [diff] [blame] | 1794 | req = ha->req_q_map[1]; |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1795 | ql_dbg(ql_dbg_multiq, vha, 0xc000, |
| 1796 | "Request queue %p attached with " |
| 1797 | "VP[%d], cpu affinity =%d\n", |
| 1798 | req, vha->vp_idx, ha->flags.cpu_affinity_enabled); |
Anirban Chakraborty | 59e0b8b | 2009-06-03 09:55:19 -0700 | [diff] [blame] | 1799 | goto vport_queue; |
| 1800 | } else if (ql2xmaxqueues == 1 || !ha->npiv_info) |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1801 | goto vport_queue; |
| 1802 | /* Create a request queue in QoS mode for the vport */ |
Anirban Chakraborty | 40859ae | 2009-06-03 09:55:16 -0700 | [diff] [blame] | 1803 | for (cnt = 0; cnt < ha->nvram_npiv_size; cnt++) { |
| 1804 | if (memcmp(ha->npiv_info[cnt].port_name, vha->port_name, 8) == 0 |
| 1805 | && memcmp(ha->npiv_info[cnt].node_name, vha->node_name, |
Anirban Chakraborty | 59e0b8b | 2009-06-03 09:55:19 -0700 | [diff] [blame] | 1806 | 8) == 0) { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1807 | qos = ha->npiv_info[cnt].q_qos; |
| 1808 | break; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1809 | } |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1810 | } |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 1811 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1812 | if (qos) { |
| 1813 | ret = qla25xx_create_req_que(ha, options, vha->vp_idx, 0, 0, |
| 1814 | qos); |
| 1815 | if (!ret) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1816 | ql_log(ql_log_warn, vha, 0x7084, |
| 1817 | "Can't create request queue for VP[%d]\n", |
| 1818 | vha->vp_idx); |
Anirban Chakraborty | 59e0b8b | 2009-06-03 09:55:19 -0700 | [diff] [blame] | 1819 | else { |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1820 | ql_dbg(ql_dbg_multiq, vha, 0xc001, |
| 1821 | "Request Que:%d Q0s: %d) created for VP[%d]\n", |
| 1822 | ret, qos, vha->vp_idx); |
| 1823 | ql_dbg(ql_dbg_user, vha, 0x7085, |
| 1824 | "Request Que:%d Q0s: %d) created for VP[%d]\n", |
| 1825 | ret, qos, vha->vp_idx); |
Anirban Chakraborty | 59e0b8b | 2009-06-03 09:55:19 -0700 | [diff] [blame] | 1826 | req = ha->req_q_map[ret]; |
| 1827 | } |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1828 | } |
| 1829 | |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1830 | vport_queue: |
Anirban Chakraborty | 59e0b8b | 2009-06-03 09:55:19 -0700 | [diff] [blame] | 1831 | vha->req = req; |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1832 | return 0; |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1833 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1834 | vport_create_failed_2: |
| 1835 | qla24xx_disable_vp(vha); |
| 1836 | qla24xx_deallocate_vp_id(vha); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1837 | scsi_host_put(vha->host); |
| 1838 | return FC_VPORT_FAILED; |
| 1839 | } |
| 1840 | |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 1841 | static int |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1842 | qla24xx_vport_delete(struct fc_vport *fc_vport) |
| 1843 | { |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1844 | scsi_qla_host_t *vha = fc_vport->dd_data; |
Anirban Chakraborty | 73208df | 2008-12-09 16:45:39 -0800 | [diff] [blame] | 1845 | struct qla_hw_data *ha = vha->hw; |
| 1846 | uint16_t id = vha->vp_idx; |
Andrew Vasquez | c9c5ced | 2008-07-24 08:31:49 -0700 | [diff] [blame] | 1847 | |
| 1848 | while (test_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags) || |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1849 | test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags)) |
Andrew Vasquez | c9c5ced | 2008-07-24 08:31:49 -0700 | [diff] [blame] | 1850 | msleep(1000); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1851 | |
| 1852 | qla24xx_disable_vp(vha); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1853 | |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 1854 | vha->flags.delete_progress = 1; |
| 1855 | |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1856 | fc_remove_host(vha->host); |
| 1857 | |
| 1858 | scsi_remove_host(vha->host); |
| 1859 | |
Arun Easi | 9f40682 | 2011-05-10 11:18:17 -0700 | [diff] [blame] | 1860 | /* Allow timer to run to drain queued items, when removing vp */ |
| 1861 | qla24xx_deallocate_vp_id(vha); |
| 1862 | |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 1863 | if (vha->timer_active) { |
| 1864 | qla2x00_vp_stop_timer(vha); |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1865 | ql_dbg(ql_dbg_user, vha, 0x7086, |
| 1866 | "Timer for the VP[%d] has stopped\n", vha->vp_idx); |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 1867 | } |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1868 | |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 1869 | /* No pending activities shall be there on the vha now */ |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1870 | if (ql2xextended_error_logging & ql_dbg_user) |
| 1871 | msleep(random32()%10); /* Just to see if something falls on |
Arun Easi | feafb7b | 2010-09-03 14:57:00 -0700 | [diff] [blame] | 1872 | * the net we have placed below */ |
| 1873 | |
| 1874 | BUG_ON(atomic_read(&vha->vref_count)); |
| 1875 | |
| 1876 | qla2x00_free_fcports(vha); |
| 1877 | |
Andrew Vasquez | 0d6e61b | 2009-08-25 11:36:19 -0700 | [diff] [blame] | 1878 | mutex_lock(&ha->vport_lock); |
| 1879 | ha->cur_vport_count--; |
| 1880 | clear_bit(vha->vp_idx, ha->vp_idx_map); |
| 1881 | mutex_unlock(&ha->vport_lock); |
| 1882 | |
Anirban Chakraborty | 7163ea8 | 2009-08-05 09:18:40 -0700 | [diff] [blame] | 1883 | if (vha->req->id && !ha->flags.cpu_affinity_enabled) { |
Anirban Chakraborty | 2afa19a | 2009-04-06 22:33:40 -0700 | [diff] [blame] | 1884 | if (qla25xx_delete_req_que(vha, vha->req) != QLA_SUCCESS) |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1885 | ql_log(ql_log_warn, vha, 0x7087, |
| 1886 | "Queue delete failed.\n"); |
Anirban Chakraborty | cf5a163 | 2009-02-08 20:50:13 -0800 | [diff] [blame] | 1887 | } |
| 1888 | |
Saurav Kashyap | 7c3df13 | 2011-07-14 12:00:13 -0700 | [diff] [blame] | 1889 | ql_log(ql_log_info, vha, 0x7088, "VP[%d] deleted.\n", id); |
Chad Dupuis | cfb0919 | 2011-11-18 09:03:07 -0800 | [diff] [blame] | 1890 | scsi_host_put(vha->host); |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1891 | return 0; |
| 1892 | } |
| 1893 | |
Adrian Bunk | a824ebb | 2008-01-17 09:02:15 -0800 | [diff] [blame] | 1894 | static int |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1895 | qla24xx_vport_disable(struct fc_vport *fc_vport, bool disable) |
| 1896 | { |
| 1897 | scsi_qla_host_t *vha = fc_vport->dd_data; |
| 1898 | |
| 1899 | if (disable) |
| 1900 | qla24xx_disable_vp(vha); |
| 1901 | else |
| 1902 | qla24xx_enable_vp(vha); |
| 1903 | |
| 1904 | return 0; |
| 1905 | } |
| 1906 | |
Andrew Vasquez | 1c97a12 | 2005-04-21 16:13:36 -0400 | [diff] [blame] | 1907 | struct fc_function_template qla2xxx_transport_functions = { |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1908 | |
| 1909 | .show_host_node_name = 1, |
| 1910 | .show_host_port_name = 1, |
Andrew Vasquez | ad3e0ed | 2005-08-26 19:08:10 -0700 | [diff] [blame] | 1911 | .show_host_supported_classes = 1, |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 1912 | .show_host_supported_speeds = 1, |
Andrew Vasquez | ad3e0ed | 2005-08-26 19:08:10 -0700 | [diff] [blame] | 1913 | |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1914 | .get_host_port_id = qla2x00_get_host_port_id, |
| 1915 | .show_host_port_id = 1, |
andrew.vasquez@qlogic.com | 0441401 | 2006-01-31 16:04:51 -0800 | [diff] [blame] | 1916 | .get_host_speed = qla2x00_get_host_speed, |
| 1917 | .show_host_speed = 1, |
andrew.vasquez@qlogic.com | 8d06762 | 2006-01-31 16:04:56 -0800 | [diff] [blame] | 1918 | .get_host_port_type = qla2x00_get_host_port_type, |
| 1919 | .show_host_port_type = 1, |
Andrew Vasquez | 1620f7c | 2006-10-02 12:00:44 -0700 | [diff] [blame] | 1920 | .get_host_symbolic_name = qla2x00_get_host_symbolic_name, |
| 1921 | .show_host_symbolic_name = 1, |
Andrew Vasquez | a740a3f | 2006-10-02 12:00:45 -0700 | [diff] [blame] | 1922 | .set_host_system_hostname = qla2x00_set_host_system_hostname, |
| 1923 | .show_host_system_hostname = 1, |
Andrew Vasquez | 90991c8 | 2006-10-02 12:00:46 -0700 | [diff] [blame] | 1924 | .get_host_fabric_name = qla2x00_get_host_fabric_name, |
| 1925 | .show_host_fabric_name = 1, |
Andrew Vasquez | 7047fcd | 2006-10-02 12:00:47 -0700 | [diff] [blame] | 1926 | .get_host_port_state = qla2x00_get_host_port_state, |
| 1927 | .show_host_port_state = 1, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1928 | |
| bdf7962 | 2005-04-17 15:06:53 -0500 | [diff] [blame] | 1929 | .dd_fcrport_size = sizeof(struct fc_port *), |
Andrew Vasquez | ad3e0ed | 2005-08-26 19:08:10 -0700 | [diff] [blame] | 1930 | .show_rport_supported_classes = 1, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1931 | |
| 1932 | .get_starget_node_name = qla2x00_get_starget_node_name, |
| 1933 | .show_starget_node_name = 1, |
| 1934 | .get_starget_port_name = qla2x00_get_starget_port_name, |
| 1935 | .show_starget_port_name = 1, |
| 1936 | .get_starget_port_id = qla2x00_get_starget_port_id, |
| 1937 | .show_starget_port_id = 1, |
| 1938 | |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1939 | .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo, |
| 1940 | .show_rport_dev_loss_tmo = 1, |
| 1941 | |
Andrew Vasquez | 91ca7b0 | 2005-10-27 16:03:37 -0700 | [diff] [blame] | 1942 | .issue_fc_host_lip = qla2x00_issue_lip, |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 1943 | .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk, |
| 1944 | .terminate_rport_io = qla2x00_terminate_rport_io, |
andrew.vasquez@qlogic.com | 392e2f6 | 2006-01-31 16:05:02 -0800 | [diff] [blame] | 1945 | .get_fc_host_stats = qla2x00_get_fc_host_stats, |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1946 | |
| 1947 | .vport_create = qla24xx_vport_create, |
| 1948 | .vport_disable = qla24xx_vport_disable, |
| 1949 | .vport_delete = qla24xx_vport_delete, |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 1950 | .bsg_request = qla24xx_bsg_request, |
| 1951 | .bsg_timeout = qla24xx_bsg_timeout, |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1952 | }; |
| 1953 | |
| 1954 | struct fc_function_template qla2xxx_transport_vport_functions = { |
| 1955 | |
| 1956 | .show_host_node_name = 1, |
| 1957 | .show_host_port_name = 1, |
| 1958 | .show_host_supported_classes = 1, |
| 1959 | |
| 1960 | .get_host_port_id = qla2x00_get_host_port_id, |
| 1961 | .show_host_port_id = 1, |
| 1962 | .get_host_speed = qla2x00_get_host_speed, |
| 1963 | .show_host_speed = 1, |
| 1964 | .get_host_port_type = qla2x00_get_host_port_type, |
| 1965 | .show_host_port_type = 1, |
| 1966 | .get_host_symbolic_name = qla2x00_get_host_symbolic_name, |
| 1967 | .show_host_symbolic_name = 1, |
| 1968 | .set_host_system_hostname = qla2x00_set_host_system_hostname, |
| 1969 | .show_host_system_hostname = 1, |
| 1970 | .get_host_fabric_name = qla2x00_get_host_fabric_name, |
| 1971 | .show_host_fabric_name = 1, |
| 1972 | .get_host_port_state = qla2x00_get_host_port_state, |
| 1973 | .show_host_port_state = 1, |
| 1974 | |
| 1975 | .dd_fcrport_size = sizeof(struct fc_port *), |
| 1976 | .show_rport_supported_classes = 1, |
| 1977 | |
| 1978 | .get_starget_node_name = qla2x00_get_starget_node_name, |
| 1979 | .show_starget_node_name = 1, |
| 1980 | .get_starget_port_name = qla2x00_get_starget_port_name, |
| 1981 | .show_starget_port_name = 1, |
| 1982 | .get_starget_port_id = qla2x00_get_starget_port_id, |
| 1983 | .show_starget_port_id = 1, |
| 1984 | |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1985 | .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo, |
| 1986 | .show_rport_dev_loss_tmo = 1, |
| 1987 | |
| 1988 | .issue_fc_host_lip = qla2x00_issue_lip, |
Seokmann Ju | 5f3a9a2 | 2008-07-10 16:55:47 -0700 | [diff] [blame] | 1989 | .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk, |
| 1990 | .terminate_rport_io = qla2x00_terminate_rport_io, |
Seokmann Ju | 2c3dfe3 | 2007-07-05 13:16:51 -0700 | [diff] [blame] | 1991 | .get_fc_host_stats = qla2x00_get_fc_host_stats, |
Giridhar Malavali | 9a069e1 | 2010-01-12 13:02:47 -0800 | [diff] [blame] | 1992 | .bsg_request = qla24xx_bsg_request, |
| 1993 | .bsg_timeout = qla24xx_bsg_timeout, |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1994 | }; |
| 1995 | |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1996 | void |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1997 | qla2x00_init_host_attr(scsi_qla_host_t *vha) |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 1998 | { |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 1999 | struct qla_hw_data *ha = vha->hw; |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 2000 | u32 speed = FC_PORTSPEED_UNKNOWN; |
| 2001 | |
Mike Christie | d2b5f10 | 2010-09-15 16:52:30 -0500 | [diff] [blame] | 2002 | fc_host_dev_loss_tmo(vha->host) = ha->port_down_retry_count; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2003 | fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name); |
| 2004 | fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name); |
Nicholas Bellinger | 2d70c10 | 2012-05-15 14:34:28 -0400 | [diff] [blame] | 2005 | fc_host_supported_classes(vha->host) = ha->tgt.enable_class_2 ? |
| 2006 | (FC_COS_CLASS2|FC_COS_CLASS3) : FC_COS_CLASS3; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2007 | fc_host_max_npiv_vports(vha->host) = ha->max_npiv_vports; |
| 2008 | fc_host_npiv_vports_inuse(vha->host) = ha->cur_vport_count; |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 2009 | |
Giridhar Malavali | 6246b8a | 2012-02-09 11:15:34 -0800 | [diff] [blame] | 2010 | if (IS_CNA_CAPABLE(ha)) |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2011 | speed = FC_PORTSPEED_10GBIT; |
Giridhar Malavali | 6f606d2 | 2012-05-15 14:34:18 -0400 | [diff] [blame] | 2012 | else if (IS_QLA2031(ha)) |
| 2013 | speed = FC_PORTSPEED_16GBIT | FC_PORTSPEED_8GBIT | |
| 2014 | FC_PORTSPEED_4GBIT; |
Andrew Vasquez | 3a03eb7 | 2009-01-05 11:18:11 -0800 | [diff] [blame] | 2015 | else if (IS_QLA25XX(ha)) |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 2016 | speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT | |
| 2017 | FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT; |
Harihara Kadayam | 4d4df19 | 2008-04-03 13:13:26 -0700 | [diff] [blame] | 2018 | else if (IS_QLA24XX_TYPE(ha)) |
Andrew Vasquez | 2ae2b37 | 2008-04-03 13:13:14 -0700 | [diff] [blame] | 2019 | speed = FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT | |
| 2020 | FC_PORTSPEED_1GBIT; |
| 2021 | else if (IS_QLA23XX(ha)) |
| 2022 | speed = FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT; |
| 2023 | else |
| 2024 | speed = FC_PORTSPEED_1GBIT; |
Anirban Chakraborty | 7b867cf | 2008-11-06 10:40:19 -0800 | [diff] [blame] | 2025 | fc_host_supported_speeds(vha->host) = speed; |
| 8482e118 | 2005-04-17 15:04:54 -0500 | [diff] [blame] | 2026 | } |