blob: 8b06ce8fbb0f70721cd4000e87dd6e54b9041aaf [file] [log] [blame]
8482e1182005-04-17 15:04:54 -05001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Armen Baloyanbd21eaf2014-04-11 16:54:24 -04003 * Copyright (c) 2003-2014 QLogic Corporation
8482e1182005-04-17 15:04:54 -05004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
8482e1182005-04-17 15:04:54 -05006 */
7#include "qla_def.h"
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04008#include "qla_target.h"
8482e1182005-04-17 15:04:54 -05009
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070010#include <linux/kthread.h>
7aaef272005-04-17 16:32:42 -050011#include <linux/vmalloc.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
FUJITA Tomonori00eabe72008-07-28 11:59:20 +090013#include <linux/delay.h>
8482e1182005-04-17 15:04:54 -050014
Adrian Bunka824ebb2008-01-17 09:02:15 -080015static int qla24xx_vport_disable(struct fc_vport *, bool);
Giridhar Malavali6e980162010-03-19 17:03:58 -070016
8482e1182005-04-17 15:04:54 -050017/* SYSFS attributes --------------------------------------------------------- */
18
19static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -070020qla2x00_sysfs_read_fw_dump(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +080021 struct bin_attribute *bin_attr,
22 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -050023{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080024 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -050025 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080026 struct qla_hw_data *ha = vha->hw;
Giridhar Malavali08de2842011-08-16 11:31:44 -070027 int rval = 0;
8482e1182005-04-17 15:04:54 -050028
Saurav Kashyap81178772012-08-22 14:21:04 -040029 if (!(ha->fw_dump_reading || ha->mctp_dump_reading))
8482e1182005-04-17 15:04:54 -050030 return 0;
8482e1182005-04-17 15:04:54 -050031
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -040032 if (IS_P3P_TYPE(ha)) {
Giridhar Malavali08de2842011-08-16 11:31:44 -070033 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;
Saurav Kashyap81178772012-08-22 14:21:04 -040042 } else if (ha->mctp_dumped && ha->mctp_dump_reading)
43 return memory_read_from_buffer(buf, count, &off, ha->mctp_dump,
44 MCTP_DUMP_SIZE);
45 else if (ha->fw_dump_reading)
Giridhar Malavali08de2842011-08-16 11:31:44 -070046 return memory_read_from_buffer(buf, count, &off, ha->fw_dump,
Akinobu Mitab3dc9082008-07-24 08:31:47 -070047 ha->fw_dump_len);
Saurav Kashyap81178772012-08-22 14:21:04 -040048 else
49 return 0;
8482e1182005-04-17 15:04:54 -050050}
51
52static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -070053qla2x00_sysfs_write_fw_dump(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +080054 struct bin_attribute *bin_attr,
55 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -050056{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080057 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -050058 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080059 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -050060 int reading;
8482e1182005-04-17 15:04:54 -050061
62 if (off != 0)
63 return (0);
64
65 reading = simple_strtol(buf, NULL, 10);
66 switch (reading) {
67 case 0:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070068 if (!ha->fw_dump_reading)
69 break;
8482e1182005-04-17 15:04:54 -050070
Saurav Kashyap7c3df132011-07-14 12:00:13 -070071 ql_log(ql_log_info, vha, 0x705d,
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080072 "Firmware dump cleared on (%ld).\n", vha->host_no);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070073
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -040074 if (IS_P3P_TYPE(ha)) {
Giridhar Malavali08de2842011-08-16 11:31:44 -070075 qla82xx_md_free(vha);
76 qla82xx_md_prep(vha);
77 }
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070078 ha->fw_dump_reading = 0;
79 ha->fw_dumped = 0;
8482e1182005-04-17 15:04:54 -050080 break;
81 case 1:
Andrew Vasquezd4e3e042006-05-17 15:09:50 -070082 if (ha->fw_dumped && !ha->fw_dump_reading) {
8482e1182005-04-17 15:04:54 -050083 ha->fw_dump_reading = 1;
84
Saurav Kashyap7c3df132011-07-14 12:00:13 -070085 ql_log(ql_log_info, vha, 0x705e,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070086 "Raw firmware dump ready for read on (%ld).\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080087 vha->host_no);
8482e1182005-04-17 15:04:54 -050088 }
89 break;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070090 case 2:
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080091 qla2x00_alloc_fw_dump(vha);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070092 break;
Andrew Vasquez68af0812008-05-12 22:21:13 -070093 case 3:
Giridhar Malavali08de2842011-08-16 11:31:44 -070094 if (IS_QLA82XX(ha)) {
95 qla82xx_idc_lock(ha);
96 qla82xx_set_reset_owner(vha);
97 qla82xx_idc_unlock(ha);
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -040098 } else if (IS_QLA8044(ha)) {
99 qla8044_idc_lock(ha);
100 qla82xx_set_reset_owner(vha);
101 qla8044_idc_unlock(ha);
Giridhar Malavali08de2842011-08-16 11:31:44 -0700102 } else
103 qla2x00_system_error(vha);
104 break;
105 case 4:
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400106 if (IS_P3P_TYPE(ha)) {
Giridhar Malavali08de2842011-08-16 11:31:44 -0700107 if (ha->md_tmplt_hdr)
108 ql_dbg(ql_dbg_user, vha, 0x705b,
109 "MiniDump supported with this firmware.\n");
110 else
111 ql_dbg(ql_dbg_user, vha, 0x709d,
112 "MiniDump not supported with this firmware.\n");
113 }
114 break;
115 case 5:
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400116 if (IS_P3P_TYPE(ha))
Giridhar Malavali08de2842011-08-16 11:31:44 -0700117 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Andrew Vasquez68af0812008-05-12 22:21:13 -0700118 break;
Saurav Kashyap81178772012-08-22 14:21:04 -0400119 case 6:
120 if (!ha->mctp_dump_reading)
121 break;
122 ql_log(ql_log_info, vha, 0x70c1,
123 "MCTP dump cleared on (%ld).\n", vha->host_no);
124 ha->mctp_dump_reading = 0;
125 ha->mctp_dumped = 0;
126 break;
127 case 7:
128 if (ha->mctp_dumped && !ha->mctp_dump_reading) {
129 ha->mctp_dump_reading = 1;
130 ql_log(ql_log_info, vha, 0x70c2,
131 "Raw mctp dump ready for read on (%ld).\n",
132 vha->host_no);
133 }
134 break;
8482e1182005-04-17 15:04:54 -0500135 }
Joe Carnuccio71dfe9e2011-11-18 09:03:13 -0800136 return count;
8482e1182005-04-17 15:04:54 -0500137}
138
139static struct bin_attribute sysfs_fw_dump_attr = {
140 .attr = {
141 .name = "fw_dump",
142 .mode = S_IRUSR | S_IWUSR,
8482e1182005-04-17 15:04:54 -0500143 },
144 .size = 0,
145 .read = qla2x00_sysfs_read_fw_dump,
146 .write = qla2x00_sysfs_write_fw_dump,
147};
148
149static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700150qla2x00_sysfs_read_nvram(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800151 struct bin_attribute *bin_attr,
152 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -0500153{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800154 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -0500155 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800156 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -0500157
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700158 if (!capable(CAP_SYS_ADMIN))
8482e1182005-04-17 15:04:54 -0500159 return 0;
160
Andrew Vasquez6749ce32009-03-24 09:08:17 -0700161 if (IS_NOCACHE_VPD_TYPE(ha))
Andrew Vasquez8f979752009-04-06 22:33:43 -0700162 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez6749ce32009-03-24 09:08:17 -0700163 ha->nvram_size);
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700164 return memory_read_from_buffer(buf, count, &off, ha->nvram,
165 ha->nvram_size);
8482e1182005-04-17 15:04:54 -0500166}
167
168static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700169qla2x00_sysfs_write_nvram(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800170 struct bin_attribute *bin_attr,
171 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -0500172{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800173 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -0500174 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800175 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -0500176 uint16_t cnt;
8482e1182005-04-17 15:04:54 -0500177
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700178 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size ||
179 !ha->isp_ops->write_nvram)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700180 return -EINVAL;
8482e1182005-04-17 15:04:54 -0500181
182 /* Checksum NVRAM. */
Andrew Vasqueze4289242007-07-19 15:05:56 -0700183 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez459c5372005-07-06 10:31:07 -0700184 uint32_t *iter;
185 uint32_t chksum;
186
187 iter = (uint32_t *)buf;
188 chksum = 0;
Joe Carnuccioda08ef52016-01-27 12:03:34 -0500189 for (cnt = 0; cnt < ((count >> 2) - 1); cnt++, iter++)
190 chksum += le32_to_cpu(*iter);
Andrew Vasquez459c5372005-07-06 10:31:07 -0700191 chksum = ~chksum + 1;
192 *iter = cpu_to_le32(chksum);
193 } else {
194 uint8_t *iter;
195 uint8_t chksum;
196
197 iter = (uint8_t *)buf;
198 chksum = 0;
199 for (cnt = 0; cnt < count - 1; cnt++)
200 chksum += *iter++;
201 chksum = ~chksum + 1;
202 *iter = chksum;
203 }
8482e1182005-04-17 15:04:54 -0500204
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700205 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700206 ql_log(ql_log_warn, vha, 0x705f,
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700207 "HBA not online, failing NVRAM update.\n");
208 return -EAGAIN;
209 }
210
8482e1182005-04-17 15:04:54 -0500211 /* Write NVRAM. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800212 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->nvram_base, count);
213 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->nvram, ha->nvram_base,
Seokmann Ju281afe12007-07-26 13:43:34 -0700214 count);
8482e1182005-04-17 15:04:54 -0500215
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700216 ql_dbg(ql_dbg_user, vha, 0x7060,
217 "Setting ISP_ABORT_NEEDED\n");
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700218 /* NVRAM settings take effect immediately. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800219 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700220 qla2xxx_wake_dpc(vha);
221 qla2x00_wait_for_chip_reset(vha);
Andrew Vasquez26b8d3482007-01-29 10:22:28 -0800222
Joe Carnucciob668ae32011-08-16 11:31:53 -0700223 return count;
8482e1182005-04-17 15:04:54 -0500224}
225
226static struct bin_attribute sysfs_nvram_attr = {
227 .attr = {
228 .name = "nvram",
229 .mode = S_IRUSR | S_IWUSR,
8482e1182005-04-17 15:04:54 -0500230 },
andrew.vasquez@qlogic.com1b3f6362006-01-31 16:05:12 -0800231 .size = 512,
8482e1182005-04-17 15:04:54 -0500232 .read = qla2x00_sysfs_read_nvram,
233 .write = qla2x00_sysfs_write_nvram,
234};
235
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800236static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700237qla2x00_sysfs_read_optrom(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800238 struct bin_attribute *bin_attr,
239 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800240{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800241 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800242 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800243 struct qla_hw_data *ha = vha->hw;
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500244 ssize_t rval = 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800245
246 if (ha->optrom_state != QLA_SREADING)
247 return 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800248
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500249 mutex_lock(&ha->optrom_mutex);
250 rval = memory_read_from_buffer(buf, count, &off, ha->optrom_buffer,
251 ha->optrom_region_size);
252 mutex_unlock(&ha->optrom_mutex);
253
254 return rval;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800255}
256
257static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700258qla2x00_sysfs_write_optrom(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800259 struct bin_attribute *bin_attr,
260 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800261{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800262 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800263 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800264 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800265
266 if (ha->optrom_state != QLA_SWRITING)
267 return -EINVAL;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700268 if (off > ha->optrom_region_size)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800269 return -ERANGE;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700270 if (off + count > ha->optrom_region_size)
271 count = ha->optrom_region_size - off;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800272
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500273 mutex_lock(&ha->optrom_mutex);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800274 memcpy(&ha->optrom_buffer[off], buf, count);
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500275 mutex_unlock(&ha->optrom_mutex);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800276
277 return count;
278}
279
280static struct bin_attribute sysfs_optrom_attr = {
281 .attr = {
282 .name = "optrom",
283 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800284 },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700285 .size = 0,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800286 .read = qla2x00_sysfs_read_optrom,
287 .write = qla2x00_sysfs_write_optrom,
288};
289
290static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700291qla2x00_sysfs_write_optrom_ctl(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800292 struct bin_attribute *bin_attr,
293 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800294{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800295 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800296 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800297 struct qla_hw_data *ha = vha->hw;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700298 uint32_t start = 0;
299 uint32_t size = ha->optrom_size;
300 int val, valid;
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500301 ssize_t rval = count;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800302
303 if (off)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700304 return -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800305
Andrew Vasquez85880802009-12-15 21:29:46 -0800306 if (unlikely(pci_channel_offline(ha->pdev)))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700307 return -EAGAIN;
Andrew Vasquez85880802009-12-15 21:29:46 -0800308
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700309 if (sscanf(buf, "%d:%x:%x", &val, &start, &size) < 1)
310 return -EINVAL;
311 if (start > ha->optrom_size)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800312 return -EINVAL;
313
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500314 mutex_lock(&ha->optrom_mutex);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800315 switch (val) {
316 case 0:
317 if (ha->optrom_state != QLA_SREADING &&
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500318 ha->optrom_state != QLA_SWRITING) {
319 rval = -EINVAL;
320 goto out;
321 }
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800322 ha->optrom_state = QLA_SWAITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700323
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700324 ql_dbg(ql_dbg_user, vha, 0x7061,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700325 "Freeing flash region allocation -- 0x%x bytes.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700326 ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700327
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800328 vfree(ha->optrom_buffer);
329 ha->optrom_buffer = NULL;
330 break;
331 case 1:
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500332 if (ha->optrom_state != QLA_SWAITING) {
333 rval = -EINVAL;
334 goto out;
335 }
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800336
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700337 ha->optrom_region_start = start;
338 ha->optrom_region_size = start + size > ha->optrom_size ?
339 ha->optrom_size - start : size;
340
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800341 ha->optrom_state = QLA_SREADING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700342 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800343 if (ha->optrom_buffer == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700344 ql_log(ql_log_warn, vha, 0x7062,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800345 "Unable to allocate memory for optrom retrieval "
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700346 "(%x).\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800347
348 ha->optrom_state = QLA_SWAITING;
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500349 rval = -ENOMEM;
350 goto out;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800351 }
352
Lalit Chandivade86fbee82010-05-04 15:01:32 -0700353 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700354 ql_log(ql_log_warn, vha, 0x7063,
355 "HBA not online, failing NVRAM update.\n");
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500356 rval = -EAGAIN;
357 goto out;
Lalit Chandivade86fbee82010-05-04 15:01:32 -0700358 }
359
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700360 ql_dbg(ql_dbg_user, vha, 0x7064,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700361 "Reading flash region -- 0x%x/0x%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700362 ha->optrom_region_start, ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700363
364 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800365 ha->isp_ops->read_optrom(vha, ha->optrom_buffer,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700366 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800367 break;
368 case 2:
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500369 if (ha->optrom_state != QLA_SWAITING) {
370 rval = -EINVAL;
371 goto out;
372 }
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800373
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700374 /*
375 * We need to be more restrictive on which FLASH regions are
376 * allowed to be updated via user-space. Regions accessible
377 * via this method include:
378 *
379 * ISP21xx/ISP22xx/ISP23xx type boards:
380 *
381 * 0x000000 -> 0x020000 -- Boot code.
382 *
383 * ISP2322/ISP24xx type boards:
384 *
385 * 0x000000 -> 0x07ffff -- Boot code.
386 * 0x080000 -> 0x0fffff -- Firmware.
387 *
388 * ISP25xx type boards:
389 *
390 * 0x000000 -> 0x07ffff -- Boot code.
391 * 0x080000 -> 0x0fffff -- Firmware.
392 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
393 */
394 valid = 0;
395 if (ha->optrom_size == OPTROM_SIZE_2300 && start == 0)
396 valid = 1;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700397 else if (start == (ha->flt_region_boot * 4) ||
398 start == (ha->flt_region_fw * 4))
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700399 valid = 1;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800400 else if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha)
Alex Vechersky9a6e6402014-09-25 05:16:58 -0400401 || IS_CNA_CAPABLE(ha) || IS_QLA2031(ha)
402 || IS_QLA27XX(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -0700403 valid = 1;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700404 if (!valid) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700405 ql_log(ql_log_warn, vha, 0x7065,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700406 "Invalid start region 0x%x/0x%x.\n", start, size);
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500407 rval = -EINVAL;
408 goto out;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700409 }
410
411 ha->optrom_region_start = start;
412 ha->optrom_region_size = start + size > ha->optrom_size ?
413 ha->optrom_size - start : size;
414
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800415 ha->optrom_state = QLA_SWRITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700416 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800417 if (ha->optrom_buffer == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700418 ql_log(ql_log_warn, vha, 0x7066,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800419 "Unable to allocate memory for optrom update "
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700420 "(%x)\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800421
422 ha->optrom_state = QLA_SWAITING;
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500423 rval = -ENOMEM;
424 goto out;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800425 }
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700426
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700427 ql_dbg(ql_dbg_user, vha, 0x7067,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700428 "Staging flash region write -- 0x%x/0x%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700429 ha->optrom_region_start, ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700430
431 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800432 break;
433 case 3:
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500434 if (ha->optrom_state != QLA_SWRITING) {
435 rval = -EINVAL;
436 goto out;
437 }
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800438
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700439 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700440 ql_log(ql_log_warn, vha, 0x7068,
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700441 "HBA not online, failing flash update.\n");
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500442 rval = -EAGAIN;
443 goto out;
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700444 }
445
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700446 ql_dbg(ql_dbg_user, vha, 0x7069,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700447 "Writing flash region -- 0x%x/0x%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700448 ha->optrom_region_start, ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700449
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800450 ha->isp_ops->write_optrom(vha, ha->optrom_buffer,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700451 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800452 break;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700453 default:
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500454 rval = -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800455 }
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500456
457out:
458 mutex_unlock(&ha->optrom_mutex);
459 return rval;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800460}
461
462static struct bin_attribute sysfs_optrom_ctl_attr = {
463 .attr = {
464 .name = "optrom_ctl",
465 .mode = S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800466 },
467 .size = 0,
468 .write = qla2x00_sysfs_write_optrom_ctl,
469};
470
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800471static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700472qla2x00_sysfs_read_vpd(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800473 struct bin_attribute *bin_attr,
474 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800475{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800476 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800477 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800478 struct qla_hw_data *ha = vha->hw;
Sawan Chandak4243c112016-01-27 12:03:31 -0500479 uint32_t faddr;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800480
Andrew Vasquez85880802009-12-15 21:29:46 -0800481 if (unlikely(pci_channel_offline(ha->pdev)))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700482 return -EAGAIN;
Andrew Vasquez85880802009-12-15 21:29:46 -0800483
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700484 if (!capable(CAP_SYS_ADMIN))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700485 return -EINVAL;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800486
Sawan Chandak4243c112016-01-27 12:03:31 -0500487 if (IS_NOCACHE_VPD_TYPE(ha)) {
488 faddr = ha->flt_region_vpd << 2;
489
490 if (IS_QLA27XX(ha) &&
491 qla27xx_find_valid_image(vha) == QLA27XX_SECONDARY_IMAGE)
492 faddr = ha->flt_region_vpd_sec << 2;
493
494 ha->isp_ops->read_optrom(vha, ha->vpd, faddr,
Andrew Vasquez6749ce32009-03-24 09:08:17 -0700495 ha->vpd_size);
Sawan Chandak4243c112016-01-27 12:03:31 -0500496 }
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700497 return memory_read_from_buffer(buf, count, &off, ha->vpd, ha->vpd_size);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800498}
499
500static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700501qla2x00_sysfs_write_vpd(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800502 struct bin_attribute *bin_attr,
503 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800504{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800505 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800506 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800507 struct qla_hw_data *ha = vha->hw;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700508 uint8_t *tmp_data;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800509
Andrew Vasquez85880802009-12-15 21:29:46 -0800510 if (unlikely(pci_channel_offline(ha->pdev)))
511 return 0;
512
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700513 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size ||
514 !ha->isp_ops->write_nvram)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800515 return 0;
516
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700517 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700518 ql_log(ql_log_warn, vha, 0x706a,
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700519 "HBA not online, failing VPD update.\n");
520 return -EAGAIN;
521 }
522
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800523 /* Write NVRAM. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800524 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->vpd_base, count);
525 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd, ha->vpd_base, count);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800526
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700527 /* Update flash version information for 4Gb & above. */
528 if (!IS_FWI2_CAPABLE(ha))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700529 return -EINVAL;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700530
531 tmp_data = vmalloc(256);
532 if (!tmp_data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700533 ql_log(ql_log_warn, vha, 0x706b,
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700534 "Unable to allocate memory for VPD information update.\n");
Joe Carnucciob668ae32011-08-16 11:31:53 -0700535 return -ENOMEM;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700536 }
537 ha->isp_ops->get_flash_version(vha, tmp_data);
538 vfree(tmp_data);
Joe Carnucciob668ae32011-08-16 11:31:53 -0700539
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800540 return count;
541}
542
543static struct bin_attribute sysfs_vpd_attr = {
544 .attr = {
545 .name = "vpd",
546 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800547 },
548 .size = 0,
549 .read = qla2x00_sysfs_read_vpd,
550 .write = qla2x00_sysfs_write_vpd,
551};
552
Andrew Vasquez88729e52006-06-23 16:10:50 -0700553static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700554qla2x00_sysfs_read_sfp(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800555 struct bin_attribute *bin_attr,
556 char *buf, loff_t off, size_t count)
Andrew Vasquez88729e52006-06-23 16:10:50 -0700557{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800558 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700559 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800560 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez88729e52006-06-23 16:10:50 -0700561 uint16_t iter, addr, offset;
562 int rval;
563
564 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != SFP_DEV_SIZE * 2)
565 return 0;
566
Andrew Vasqueze8711082008-01-31 12:33:48 -0800567 if (ha->sfp_data)
568 goto do_read;
569
570 ha->sfp_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
571 &ha->sfp_data_dma);
572 if (!ha->sfp_data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700573 ql_log(ql_log_warn, vha, 0x706c,
Andrew Vasqueze8711082008-01-31 12:33:48 -0800574 "Unable to allocate memory for SFP read-data.\n");
575 return 0;
576 }
577
578do_read:
579 memset(ha->sfp_data, 0, SFP_BLOCK_SIZE);
Andrew Vasquez88729e52006-06-23 16:10:50 -0700580 addr = 0xa0;
581 for (iter = 0, offset = 0; iter < (SFP_DEV_SIZE * 2) / SFP_BLOCK_SIZE;
582 iter++, offset += SFP_BLOCK_SIZE) {
583 if (iter == 4) {
584 /* Skip to next device address. */
585 addr = 0xa2;
586 offset = 0;
587 }
588
Joe Carnuccio6766df92011-05-10 11:30:15 -0700589 rval = qla2x00_read_sfp(vha, ha->sfp_data_dma, ha->sfp_data,
Joe Carnuccio51e74882014-04-11 16:54:41 -0400590 addr, offset, SFP_BLOCK_SIZE, BIT_1);
Andrew Vasquez88729e52006-06-23 16:10:50 -0700591 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700592 ql_log(ql_log_warn, vha, 0x706d,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700593 "Unable to read SFP data (%x/%x/%x).\n", rval,
594 addr, offset);
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700595
Joe Carnucciob668ae32011-08-16 11:31:53 -0700596 return -EIO;
Andrew Vasquez88729e52006-06-23 16:10:50 -0700597 }
598 memcpy(buf, ha->sfp_data, SFP_BLOCK_SIZE);
599 buf += SFP_BLOCK_SIZE;
600 }
601
602 return count;
603}
604
605static struct bin_attribute sysfs_sfp_attr = {
606 .attr = {
607 .name = "sfp",
608 .mode = S_IRUSR | S_IWUSR,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700609 },
610 .size = SFP_DEV_SIZE * 2,
611 .read = qla2x00_sysfs_read_sfp,
612};
613
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700614static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700615qla2x00_sysfs_write_reset(struct file *filp, struct kobject *kobj,
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700616 struct bin_attribute *bin_attr,
617 char *buf, loff_t off, size_t count)
618{
619 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
620 struct device, kobj)));
621 struct qla_hw_data *ha = vha->hw;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700622 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700623 int type;
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400624 uint32_t idc_control;
Sawan Chandak8c2cf7d2013-08-27 01:37:51 -0400625 uint8_t *tmp_data = NULL;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700626 if (off != 0)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700627 return -EINVAL;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700628
629 type = simple_strtol(buf, NULL, 10);
630 switch (type) {
631 case 0x2025c:
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700632 ql_log(ql_log_info, vha, 0x706e,
633 "Issuing ISP reset.\n");
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700634
635 scsi_block_requests(vha->host);
Giridhar Malavali08de2842011-08-16 11:31:44 -0700636 if (IS_QLA82XX(ha)) {
Giridhar Malavalib6d0d9d2012-05-15 14:34:25 -0400637 ha->flags.isp82xx_no_md_cap = 1;
Giridhar Malavali08de2842011-08-16 11:31:44 -0700638 qla82xx_idc_lock(ha);
639 qla82xx_set_reset_owner(vha);
640 qla82xx_idc_unlock(ha);
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400641 } else if (IS_QLA8044(ha)) {
642 qla8044_idc_lock(ha);
643 idc_control = qla8044_rd_reg(ha,
644 QLA8044_IDC_DRV_CTRL);
645 qla8044_wr_reg(ha, QLA8044_IDC_DRV_CTRL,
646 (idc_control | GRACEFUL_RESET_BIT1));
647 qla82xx_set_reset_owner(vha);
648 qla8044_idc_unlock(ha);
649 } else {
650 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
651 qla2xxx_wake_dpc(vha);
Giridhar Malavali08de2842011-08-16 11:31:44 -0700652 }
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700653 qla2x00_wait_for_chip_reset(vha);
654 scsi_unblock_requests(vha->host);
655 break;
656 case 0x2025d:
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400657 if (!IS_QLA81XX(ha) && !IS_QLA83XX(ha))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700658 return -EPERM;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700659
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700660 ql_log(ql_log_info, vha, 0x706f,
661 "Issuing MPI reset.\n");
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700662
Himanshu Madhanib20f02e2015-06-10 11:05:18 -0400663 if (IS_QLA83XX(ha) || IS_QLA27XX(ha)) {
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400664 uint32_t idc_control;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700665
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400666 qla83xx_idc_lock(vha, 0);
667 __qla83xx_get_idc_control(vha, &idc_control);
668 idc_control |= QLA83XX_IDC_GRACEFUL_RESET;
669 __qla83xx_set_idc_control(vha, idc_control);
670 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE,
671 QLA8XXX_DEV_NEED_RESET);
672 qla83xx_idc_audit(vha, IDC_AUDIT_TIMESTAMP);
673 qla83xx_idc_unlock(vha, 0);
674 break;
675 } else {
676 /* Make sure FC side is not in reset */
677 qla2x00_wait_for_hba_online(vha);
678
679 /* Issue MPI reset */
680 scsi_block_requests(vha->host);
681 if (qla81xx_restart_mpi_firmware(vha) != QLA_SUCCESS)
682 ql_log(ql_log_warn, vha, 0x7070,
683 "MPI reset failed.\n");
684 scsi_unblock_requests(vha->host);
685 break;
686 }
Giridhar Malavalia9083012010-04-12 17:59:55 -0700687 case 0x2025e:
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400688 if (!IS_P3P_TYPE(ha) || vha != base_vha) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700689 ql_log(ql_log_info, vha, 0x7071,
690 "FCoE ctx reset no supported.\n");
Joe Carnucciob668ae32011-08-16 11:31:53 -0700691 return -EPERM;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700692 }
693
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700694 ql_log(ql_log_info, vha, 0x7072,
695 "Issuing FCoE ctx reset.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -0700696 set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
697 qla2xxx_wake_dpc(vha);
698 qla2x00_wait_for_fcoe_ctx_reset(vha);
699 break;
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400700 case 0x2025f:
701 if (!IS_QLA8031(ha))
702 return -EPERM;
703 ql_log(ql_log_info, vha, 0x70bc,
704 "Disabling Reset by IDC control\n");
705 qla83xx_idc_lock(vha, 0);
706 __qla83xx_get_idc_control(vha, &idc_control);
707 idc_control |= QLA83XX_IDC_RESET_DISABLED;
708 __qla83xx_set_idc_control(vha, idc_control);
709 qla83xx_idc_unlock(vha, 0);
710 break;
711 case 0x20260:
712 if (!IS_QLA8031(ha))
713 return -EPERM;
714 ql_log(ql_log_info, vha, 0x70bd,
715 "Enabling Reset by IDC control\n");
716 qla83xx_idc_lock(vha, 0);
717 __qla83xx_get_idc_control(vha, &idc_control);
718 idc_control &= ~QLA83XX_IDC_RESET_DISABLED;
719 __qla83xx_set_idc_control(vha, idc_control);
720 qla83xx_idc_unlock(vha, 0);
721 break;
Sawan Chandak8c2cf7d2013-08-27 01:37:51 -0400722 case 0x20261:
723 ql_dbg(ql_dbg_user, vha, 0x70e0,
724 "Updating cache versions without reset ");
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400725
Sawan Chandak8c2cf7d2013-08-27 01:37:51 -0400726 tmp_data = vmalloc(256);
727 if (!tmp_data) {
728 ql_log(ql_log_warn, vha, 0x70e1,
729 "Unable to allocate memory for VPD information update.\n");
730 return -ENOMEM;
731 }
732 ha->isp_ops->get_flash_version(vha, tmp_data);
733 vfree(tmp_data);
734 break;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700735 }
736 return count;
737}
738
739static struct bin_attribute sysfs_reset_attr = {
740 .attr = {
741 .name = "reset",
742 .mode = S_IWUSR,
743 },
744 .size = 0,
745 .write = qla2x00_sysfs_write_reset,
746};
747
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700748static ssize_t
Himanshu Madhani6eb54712015-12-17 14:57:00 -0500749qla2x00_issue_logo(struct file *filp, struct kobject *kobj,
750 struct bin_attribute *bin_attr,
751 char *buf, loff_t off, size_t count)
752{
753 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
754 struct device, kobj)));
755 int type;
756 int rval = 0;
757 port_id_t did;
758
759 type = simple_strtol(buf, NULL, 10);
760
761 did.b.domain = (type & 0x00ff0000) >> 16;
762 did.b.area = (type & 0x0000ff00) >> 8;
763 did.b.al_pa = (type & 0x000000ff);
764
765 ql_log(ql_log_info, vha, 0x70e3, "portid=%02x%02x%02x done\n",
766 did.b.domain, did.b.area, did.b.al_pa);
767
768 ql_log(ql_log_info, vha, 0x70e4, "%s: %d\n", __func__, type);
769
770 rval = qla24xx_els_dcmd_iocb(vha, ELS_DCMD_LOGO, did);
771 return count;
772}
773
774static struct bin_attribute sysfs_issue_logo_attr = {
775 .attr = {
776 .name = "issue_logo",
777 .mode = S_IWUSR,
778 },
779 .size = 0,
780 .write = qla2x00_issue_logo,
781};
782
783static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700784qla2x00_sysfs_read_xgmac_stats(struct file *filp, struct kobject *kobj,
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700785 struct bin_attribute *bin_attr,
786 char *buf, loff_t off, size_t count)
787{
788 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
789 struct device, kobj)));
790 struct qla_hw_data *ha = vha->hw;
791 int rval;
792 uint16_t actual_size;
793
794 if (!capable(CAP_SYS_ADMIN) || off != 0 || count > XGMAC_DATA_SIZE)
795 return 0;
796
797 if (ha->xgmac_data)
798 goto do_read;
799
800 ha->xgmac_data = dma_alloc_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
801 &ha->xgmac_data_dma, GFP_KERNEL);
802 if (!ha->xgmac_data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700803 ql_log(ql_log_warn, vha, 0x7076,
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700804 "Unable to allocate memory for XGMAC read-data.\n");
805 return 0;
806 }
807
808do_read:
809 actual_size = 0;
810 memset(ha->xgmac_data, 0, XGMAC_DATA_SIZE);
811
812 rval = qla2x00_get_xgmac_stats(vha, ha->xgmac_data_dma,
813 XGMAC_DATA_SIZE, &actual_size);
814 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700815 ql_log(ql_log_warn, vha, 0x7077,
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700816 "Unable to read XGMAC data (%x).\n", rval);
817 count = 0;
818 }
819
820 count = actual_size > count ? count: actual_size;
821 memcpy(buf, ha->xgmac_data, count);
822
823 return count;
824}
825
826static struct bin_attribute sysfs_xgmac_stats_attr = {
827 .attr = {
828 .name = "xgmac_stats",
829 .mode = S_IRUSR,
830 },
831 .size = 0,
832 .read = qla2x00_sysfs_read_xgmac_stats,
833};
834
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700835static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700836qla2x00_sysfs_read_dcbx_tlv(struct file *filp, struct kobject *kobj,
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700837 struct bin_attribute *bin_attr,
838 char *buf, loff_t off, size_t count)
839{
840 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
841 struct device, kobj)));
842 struct qla_hw_data *ha = vha->hw;
843 int rval;
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700844
845 if (!capable(CAP_SYS_ADMIN) || off != 0 || count > DCBX_TLV_DATA_SIZE)
846 return 0;
847
848 if (ha->dcbx_tlv)
849 goto do_read;
850
851 ha->dcbx_tlv = dma_alloc_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
852 &ha->dcbx_tlv_dma, GFP_KERNEL);
853 if (!ha->dcbx_tlv) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700854 ql_log(ql_log_warn, vha, 0x7078,
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700855 "Unable to allocate memory for DCBX TLV read-data.\n");
Joe Carnucciob668ae32011-08-16 11:31:53 -0700856 return -ENOMEM;
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700857 }
858
859do_read:
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700860 memset(ha->dcbx_tlv, 0, DCBX_TLV_DATA_SIZE);
861
862 rval = qla2x00_get_dcbx_params(vha, ha->dcbx_tlv_dma,
863 DCBX_TLV_DATA_SIZE);
864 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700865 ql_log(ql_log_warn, vha, 0x7079,
866 "Unable to read DCBX TLV (%x).\n", rval);
Joe Carnucciob668ae32011-08-16 11:31:53 -0700867 return -EIO;
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700868 }
869
870 memcpy(buf, ha->dcbx_tlv, count);
871
872 return count;
873}
874
875static struct bin_attribute sysfs_dcbx_tlv_attr = {
876 .attr = {
877 .name = "dcbx_tlv",
878 .mode = S_IRUSR,
879 },
880 .size = 0,
881 .read = qla2x00_sysfs_read_dcbx_tlv,
882};
883
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700884static struct sysfs_entry {
885 char *name;
886 struct bin_attribute *attr;
887 int is4GBp_only;
888} bin_file_entries[] = {
889 { "fw_dump", &sysfs_fw_dump_attr, },
890 { "nvram", &sysfs_nvram_attr, },
891 { "optrom", &sysfs_optrom_attr, },
892 { "optrom_ctl", &sysfs_optrom_ctl_attr, },
893 { "vpd", &sysfs_vpd_attr, 1 },
894 { "sfp", &sysfs_sfp_attr, 1 },
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700895 { "reset", &sysfs_reset_attr, },
Himanshu Madhani6eb54712015-12-17 14:57:00 -0500896 { "issue_logo", &sysfs_issue_logo_attr, },
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700897 { "xgmac_stats", &sysfs_xgmac_stats_attr, 3 },
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700898 { "dcbx_tlv", &sysfs_dcbx_tlv_attr, 3 },
Randy Dunlap46ddab72006-11-27 09:35:42 -0800899 { NULL },
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700900};
901
8482e1182005-04-17 15:04:54 -0500902void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800903qla2x00_alloc_sysfs_attr(scsi_qla_host_t *vha)
8482e1182005-04-17 15:04:54 -0500904{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800905 struct Scsi_Host *host = vha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700906 struct sysfs_entry *iter;
907 int ret;
8482e1182005-04-17 15:04:54 -0500908
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700909 for (iter = bin_file_entries; iter->name; iter++) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800910 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(vha->hw))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700911 continue;
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700912 if (iter->is4GBp_only == 2 && !IS_QLA25XX(vha->hw))
913 continue;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800914 if (iter->is4GBp_only == 3 && !(IS_CNA_CAPABLE(vha->hw)))
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700915 continue;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700916
917 ret = sysfs_create_bin_file(&host->shost_gendev.kobj,
918 iter->attr);
919 if (ret)
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700920 ql_log(ql_log_warn, vha, 0x00f3,
921 "Unable to create sysfs %s binary attribute (%d).\n",
922 iter->name, ret);
923 else
924 ql_dbg(ql_dbg_init, vha, 0x00f4,
925 "Successfully created sysfs %s binary attribure.\n",
926 iter->name);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700927 }
8482e1182005-04-17 15:04:54 -0500928}
929
930void
Chad Dupuisfe1b8062013-10-30 03:38:15 -0400931qla2x00_free_sysfs_attr(scsi_qla_host_t *vha, bool stop_beacon)
8482e1182005-04-17 15:04:54 -0500932{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800933 struct Scsi_Host *host = vha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700934 struct sysfs_entry *iter;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800935 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -0500936
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700937 for (iter = bin_file_entries; iter->name; iter++) {
Andrew Vasqueze4289242007-07-19 15:05:56 -0700938 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(ha))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700939 continue;
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700940 if (iter->is4GBp_only == 2 && !IS_QLA25XX(ha))
941 continue;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800942 if (iter->is4GBp_only == 3 && !(IS_CNA_CAPABLE(vha->hw)))
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700943 continue;
Nigel Kirkland74739522014-09-25 05:16:56 -0400944 if (iter->is4GBp_only == 0x27 && !IS_QLA27XX(vha->hw))
945 continue;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700946
Andrew Vasquez7914d002006-06-23 16:10:55 -0700947 sysfs_remove_bin_file(&host->shost_gendev.kobj,
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700948 iter->attr);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700949 }
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800950
Chad Dupuisfe1b8062013-10-30 03:38:15 -0400951 if (stop_beacon && ha->beacon_blink_led == 1)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800952 ha->isp_ops->beacon_off(vha);
8482e1182005-04-17 15:04:54 -0500953}
954
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700955/* Scsi_Host attributes. */
956
957static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100958qla2x00_drvr_version_show(struct device *dev,
959 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700960{
Sawan Chandak15904d72013-10-30 03:38:24 -0400961 return scnprintf(buf, PAGE_SIZE, "%s\n", qla2x00_version_str);
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700962}
963
964static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100965qla2x00_fw_version_show(struct device *dev,
966 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700967{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800968 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
969 struct qla_hw_data *ha = vha->hw;
970 char fw_str[128];
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700971
Sawan Chandak15904d72013-10-30 03:38:24 -0400972 return scnprintf(buf, PAGE_SIZE, "%s\n",
Himanshu Madhanidf57cab2014-09-25 05:16:46 -0400973 ha->isp_ops->fw_version_str(vha, fw_str, sizeof(fw_str)));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700974}
975
976static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100977qla2x00_serial_num_show(struct device *dev, struct device_attribute *attr,
978 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700979{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800980 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
981 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700982 uint32_t sn;
983
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400984 if (IS_QLAFX00(vha->hw)) {
Sawan Chandak15904d72013-10-30 03:38:24 -0400985 return scnprintf(buf, PAGE_SIZE, "%s\n",
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400986 vha->hw->mr.serial_num);
987 } else if (IS_FWI2_CAPABLE(ha)) {
Joe Carnuccioad5fa022013-10-30 03:38:19 -0400988 qla2xxx_get_vpd_field(vha, "SN", buf, PAGE_SIZE - 1);
989 return strlen(strcat(buf, "\n"));
Joe Carnuccio1ee27142008-07-10 16:55:53 -0700990 }
Andrew Vasquez8b7afc22007-10-19 15:59:19 -0700991
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700992 sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1;
Sawan Chandak15904d72013-10-30 03:38:24 -0400993 return scnprintf(buf, PAGE_SIZE, "%c%05d\n", 'A' + sn / 100000,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700994 sn % 100000);
995}
996
997static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100998qla2x00_isp_name_show(struct device *dev, struct device_attribute *attr,
999 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001000{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001001 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Sawan Chandak15904d72013-10-30 03:38:24 -04001002 return scnprintf(buf, PAGE_SIZE, "ISP%04X\n", vha->hw->pdev->device);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001003}
1004
1005static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001006qla2x00_isp_id_show(struct device *dev, struct device_attribute *attr,
1007 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001008{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001009 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1010 struct qla_hw_data *ha = vha->hw;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001011
1012 if (IS_QLAFX00(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001013 return scnprintf(buf, PAGE_SIZE, "%s\n",
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001014 vha->hw->mr.hw_version);
1015
Sawan Chandak15904d72013-10-30 03:38:24 -04001016 return scnprintf(buf, PAGE_SIZE, "%04x %04x %04x %04x\n",
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001017 ha->product_id[0], ha->product_id[1], ha->product_id[2],
1018 ha->product_id[3]);
1019}
1020
1021static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001022qla2x00_model_name_show(struct device *dev, struct device_attribute *attr,
1023 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001024{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001025 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001026
Sawan Chandak15904d72013-10-30 03:38:24 -04001027 return scnprintf(buf, PAGE_SIZE, "%s\n", vha->hw->model_number);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001028}
1029
1030static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001031qla2x00_model_desc_show(struct device *dev, struct device_attribute *attr,
1032 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001033{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001034 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Bart Van Assche82e6afd2015-07-09 07:25:07 -07001035 return scnprintf(buf, PAGE_SIZE, "%s\n", vha->hw->model_desc);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001036}
1037
1038static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001039qla2x00_pci_info_show(struct device *dev, struct device_attribute *attr,
1040 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001041{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001042 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001043 char pci_info[30];
1044
Sawan Chandak15904d72013-10-30 03:38:24 -04001045 return scnprintf(buf, PAGE_SIZE, "%s\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001046 vha->hw->isp_ops->pci_info_str(vha, pci_info));
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001047}
1048
1049static ssize_t
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001050qla2x00_link_state_show(struct device *dev, struct device_attribute *attr,
1051 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001052{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001053 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1054 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001055 int len = 0;
1056
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001057 if (atomic_read(&vha->loop_state) == LOOP_DOWN ||
Andrew Vasquez62542f42010-05-04 15:01:22 -07001058 atomic_read(&vha->loop_state) == LOOP_DEAD ||
1059 vha->device_flags & DFLG_NO_CABLE)
Sawan Chandak15904d72013-10-30 03:38:24 -04001060 len = scnprintf(buf, PAGE_SIZE, "Link Down\n");
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001061 else if (atomic_read(&vha->loop_state) != LOOP_READY ||
Andrew Vasquezd051a5aa2012-02-09 11:14:05 -08001062 qla2x00_reset_active(vha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001063 len = scnprintf(buf, PAGE_SIZE, "Unknown Link State\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001064 else {
Sawan Chandak15904d72013-10-30 03:38:24 -04001065 len = scnprintf(buf, PAGE_SIZE, "Link Up - ");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001066
1067 switch (ha->current_topology) {
1068 case ISP_CFG_NL:
Sawan Chandak15904d72013-10-30 03:38:24 -04001069 len += scnprintf(buf + len, PAGE_SIZE-len, "Loop\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001070 break;
1071 case ISP_CFG_FL:
Sawan Chandak15904d72013-10-30 03:38:24 -04001072 len += scnprintf(buf + len, PAGE_SIZE-len, "FL_Port\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001073 break;
1074 case ISP_CFG_N:
Sawan Chandak15904d72013-10-30 03:38:24 -04001075 len += scnprintf(buf + len, PAGE_SIZE-len,
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001076 "N_Port to N_Port\n");
1077 break;
1078 case ISP_CFG_F:
Sawan Chandak15904d72013-10-30 03:38:24 -04001079 len += scnprintf(buf + len, PAGE_SIZE-len, "F_Port\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001080 break;
1081 default:
Sawan Chandak15904d72013-10-30 03:38:24 -04001082 len += scnprintf(buf + len, PAGE_SIZE-len, "Loop\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001083 break;
1084 }
1085 }
1086 return len;
1087}
1088
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001089static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001090qla2x00_zio_show(struct device *dev, struct device_attribute *attr,
1091 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001092{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001093 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001094 int len = 0;
1095
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001096 switch (vha->hw->zio_mode) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001097 case QLA_ZIO_MODE_6:
Sawan Chandak15904d72013-10-30 03:38:24 -04001098 len += scnprintf(buf + len, PAGE_SIZE-len, "Mode 6\n");
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001099 break;
1100 case QLA_ZIO_DISABLED:
Sawan Chandak15904d72013-10-30 03:38:24 -04001101 len += scnprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001102 break;
1103 }
1104 return len;
1105}
1106
1107static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001108qla2x00_zio_store(struct device *dev, struct device_attribute *attr,
1109 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001110{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001111 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1112 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001113 int val = 0;
1114 uint16_t zio_mode;
1115
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001116 if (!IS_ZIO_SUPPORTED(ha))
1117 return -ENOTSUPP;
1118
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001119 if (sscanf(buf, "%d", &val) != 1)
1120 return -EINVAL;
1121
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001122 if (val)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001123 zio_mode = QLA_ZIO_MODE_6;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001124 else
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001125 zio_mode = QLA_ZIO_DISABLED;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001126
1127 /* Update per-hba values and queue a reset. */
1128 if (zio_mode != QLA_ZIO_DISABLED || ha->zio_mode != QLA_ZIO_DISABLED) {
1129 ha->zio_mode = zio_mode;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001130 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001131 }
1132 return strlen(buf);
1133}
1134
1135static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001136qla2x00_zio_timer_show(struct device *dev, struct device_attribute *attr,
1137 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001138{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001139 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001140
Sawan Chandak15904d72013-10-30 03:38:24 -04001141 return scnprintf(buf, PAGE_SIZE, "%d us\n", vha->hw->zio_timer * 100);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001142}
1143
1144static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001145qla2x00_zio_timer_store(struct device *dev, struct device_attribute *attr,
1146 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001147{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001148 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001149 int val = 0;
1150 uint16_t zio_timer;
1151
1152 if (sscanf(buf, "%d", &val) != 1)
1153 return -EINVAL;
1154 if (val > 25500 || val < 100)
1155 return -ERANGE;
1156
1157 zio_timer = (uint16_t)(val / 100);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001158 vha->hw->zio_timer = zio_timer;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001159
1160 return strlen(buf);
1161}
1162
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001163static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001164qla2x00_beacon_show(struct device *dev, struct device_attribute *attr,
1165 char *buf)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001166{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001167 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001168 int len = 0;
1169
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001170 if (vha->hw->beacon_blink_led)
Sawan Chandak15904d72013-10-30 03:38:24 -04001171 len += scnprintf(buf + len, PAGE_SIZE-len, "Enabled\n");
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001172 else
Sawan Chandak15904d72013-10-30 03:38:24 -04001173 len += scnprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001174 return len;
1175}
1176
1177static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001178qla2x00_beacon_store(struct device *dev, struct device_attribute *attr,
1179 const char *buf, size_t count)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001180{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001181 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1182 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001183 int val = 0;
1184 int rval;
1185
1186 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1187 return -EPERM;
1188
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001189 if (test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001190 ql_log(ql_log_warn, vha, 0x707a,
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001191 "Abort ISP active -- ignoring beacon request.\n");
1192 return -EBUSY;
1193 }
1194
1195 if (sscanf(buf, "%d", &val) != 1)
1196 return -EINVAL;
1197
1198 if (val)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001199 rval = ha->isp_ops->beacon_on(vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001200 else
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001201 rval = ha->isp_ops->beacon_off(vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001202
1203 if (rval != QLA_SUCCESS)
1204 count = 0;
1205
1206 return count;
1207}
1208
Andrew Vasquez30c47662007-01-29 10:22:21 -08001209static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001210qla2x00_optrom_bios_version_show(struct device *dev,
1211 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001212{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001213 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1214 struct qla_hw_data *ha = vha->hw;
Sawan Chandak15904d72013-10-30 03:38:24 -04001215 return scnprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->bios_revision[1],
Andrew Vasquez30c47662007-01-29 10:22:21 -08001216 ha->bios_revision[0]);
1217}
1218
1219static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001220qla2x00_optrom_efi_version_show(struct device *dev,
1221 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001222{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001223 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1224 struct qla_hw_data *ha = vha->hw;
Sawan Chandak15904d72013-10-30 03:38:24 -04001225 return scnprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->efi_revision[1],
Andrew Vasquez30c47662007-01-29 10:22:21 -08001226 ha->efi_revision[0]);
1227}
1228
1229static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001230qla2x00_optrom_fcode_version_show(struct device *dev,
1231 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001232{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001233 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1234 struct qla_hw_data *ha = vha->hw;
Sawan Chandak15904d72013-10-30 03:38:24 -04001235 return scnprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->fcode_revision[1],
Andrew Vasquez30c47662007-01-29 10:22:21 -08001236 ha->fcode_revision[0]);
1237}
1238
1239static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001240qla2x00_optrom_fw_version_show(struct device *dev,
1241 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001242{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001243 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1244 struct qla_hw_data *ha = vha->hw;
Sawan Chandak15904d72013-10-30 03:38:24 -04001245 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d %d\n",
Andrew Vasquez30c47662007-01-29 10:22:21 -08001246 ha->fw_revision[0], ha->fw_revision[1], ha->fw_revision[2],
1247 ha->fw_revision[3]);
1248}
1249
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001250static ssize_t
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001251qla2x00_optrom_gold_fw_version_show(struct device *dev,
1252 struct device_attribute *attr, char *buf)
1253{
1254 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1255 struct qla_hw_data *ha = vha->hw;
1256
Chad Dupuisf73cb692014-02-26 04:15:06 -05001257 if (!IS_QLA81XX(ha) && !IS_QLA83XX(ha) && !IS_QLA27XX(ha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001258 return scnprintf(buf, PAGE_SIZE, "\n");
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001259
Sawan Chandak15904d72013-10-30 03:38:24 -04001260 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%d)\n",
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001261 ha->gold_fw_version[0], ha->gold_fw_version[1],
1262 ha->gold_fw_version[2], ha->gold_fw_version[3]);
1263}
1264
1265static ssize_t
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001266qla2x00_total_isp_aborts_show(struct device *dev,
1267 struct device_attribute *attr, char *buf)
1268{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001269 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Sawan Chandak15904d72013-10-30 03:38:24 -04001270 return scnprintf(buf, PAGE_SIZE, "%d\n",
Saurav Kashyap2be21fa2012-05-15 14:34:16 -04001271 vha->qla_stats.total_isp_aborts);
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001272}
1273
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001274static ssize_t
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001275qla24xx_84xx_fw_version_show(struct device *dev,
1276 struct device_attribute *attr, char *buf)
1277{
1278 int rval = QLA_SUCCESS;
1279 uint16_t status[2] = {0, 0};
1280 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1281 struct qla_hw_data *ha = vha->hw;
1282
Andrew Vasquez0b9dae62010-05-04 15:01:21 -07001283 if (!IS_QLA84XX(ha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001284 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquez0b9dae62010-05-04 15:01:21 -07001285
Giridhar Malavali6c7ccf72010-05-28 15:08:29 -07001286 if (ha->cs84xx->op_fw_version == 0)
Andrew Vasquez0b9dae62010-05-04 15:01:21 -07001287 rval = qla84xx_verify_chip(vha, status);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001288
1289 if ((rval == QLA_SUCCESS) && (status[0] == 0))
Sawan Chandak15904d72013-10-30 03:38:24 -04001290 return scnprintf(buf, PAGE_SIZE, "%u\n",
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001291 (uint32_t)ha->cs84xx->op_fw_version);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001292
Sawan Chandak15904d72013-10-30 03:38:24 -04001293 return scnprintf(buf, PAGE_SIZE, "\n");
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001294}
1295
1296static ssize_t
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001297qla2x00_mpi_version_show(struct device *dev, struct device_attribute *attr,
1298 char *buf)
1299{
1300 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1301 struct qla_hw_data *ha = vha->hw;
1302
Sawan Chandak03aa8682015-08-04 13:37:59 -04001303 if (!IS_QLA81XX(ha) && !IS_QLA8031(ha) && !IS_QLA8044(ha) &&
1304 !IS_QLA27XX(ha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001305 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001306
Sawan Chandak15904d72013-10-30 03:38:24 -04001307 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%x)\n",
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001308 ha->mpi_version[0], ha->mpi_version[1], ha->mpi_version[2],
Andrew Vasquez55a96152009-03-24 09:08:03 -07001309 ha->mpi_capabilities);
1310}
1311
1312static ssize_t
1313qla2x00_phy_version_show(struct device *dev, struct device_attribute *attr,
1314 char *buf)
1315{
1316 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1317 struct qla_hw_data *ha = vha->hw;
1318
Nigel Kirklandf863f602012-05-15 14:34:19 -04001319 if (!IS_QLA81XX(ha) && !IS_QLA8031(ha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001320 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquez55a96152009-03-24 09:08:03 -07001321
Sawan Chandak15904d72013-10-30 03:38:24 -04001322 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d\n",
Andrew Vasquez55a96152009-03-24 09:08:03 -07001323 ha->phy_version[0], ha->phy_version[1], ha->phy_version[2]);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001324}
1325
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001326static ssize_t
1327qla2x00_flash_block_size_show(struct device *dev,
1328 struct device_attribute *attr, char *buf)
1329{
1330 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1331 struct qla_hw_data *ha = vha->hw;
1332
Sawan Chandak15904d72013-10-30 03:38:24 -04001333 return scnprintf(buf, PAGE_SIZE, "0x%x\n", ha->fdt_block_size);
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001334}
1335
Andrew Vasquezbad70012009-04-06 22:33:38 -07001336static ssize_t
1337qla2x00_vlan_id_show(struct device *dev, struct device_attribute *attr,
1338 char *buf)
1339{
1340 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1341
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001342 if (!IS_CNA_CAPABLE(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001343 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquezbad70012009-04-06 22:33:38 -07001344
Sawan Chandak15904d72013-10-30 03:38:24 -04001345 return scnprintf(buf, PAGE_SIZE, "%d\n", vha->fcoe_vlan_id);
Andrew Vasquezbad70012009-04-06 22:33:38 -07001346}
1347
1348static ssize_t
1349qla2x00_vn_port_mac_address_show(struct device *dev,
1350 struct device_attribute *attr, char *buf)
1351{
1352 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1353
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001354 if (!IS_CNA_CAPABLE(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001355 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquezbad70012009-04-06 22:33:38 -07001356
Sawan Chandak15904d72013-10-30 03:38:24 -04001357 return scnprintf(buf, PAGE_SIZE, "%pMR\n", vha->fcoe_vn_port_mac);
Andrew Vasquezbad70012009-04-06 22:33:38 -07001358}
1359
Andrew Vasquez7f774022009-06-03 09:55:12 -07001360static ssize_t
1361qla2x00_fabric_param_show(struct device *dev, struct device_attribute *attr,
1362 char *buf)
1363{
1364 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1365
Sawan Chandak15904d72013-10-30 03:38:24 -04001366 return scnprintf(buf, PAGE_SIZE, "%d\n", vha->hw->switch_cap);
Andrew Vasquez7f774022009-06-03 09:55:12 -07001367}
1368
Andrew Vasquez656e8912009-06-03 09:55:29 -07001369static ssize_t
Andrew Vasquez794a5692010-12-21 16:00:21 -08001370qla2x00_thermal_temp_show(struct device *dev,
1371 struct device_attribute *attr, char *buf)
1372{
1373 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Joe Carnucciofe52f6e2013-02-08 01:58:03 -05001374 uint16_t temp = 0;
Andrew Vasquez794a5692010-12-21 16:00:21 -08001375
Joe Carnucciofe52f6e2013-02-08 01:58:03 -05001376 if (qla2x00_reset_active(vha)) {
1377 ql_log(ql_log_warn, vha, 0x70dc, "ISP reset active.\n");
1378 goto done;
1379 }
Andrew Vasquez794a5692010-12-21 16:00:21 -08001380
Joe Carnucciofe52f6e2013-02-08 01:58:03 -05001381 if (vha->hw->flags.eeh_busy) {
1382 ql_log(ql_log_warn, vha, 0x70dd, "PCI EEH busy.\n");
1383 goto done;
1384 }
1385
1386 if (qla2x00_get_thermal_temp(vha, &temp) == QLA_SUCCESS)
Sawan Chandak15904d72013-10-30 03:38:24 -04001387 return scnprintf(buf, PAGE_SIZE, "%d\n", temp);
Joe Carnucciofe52f6e2013-02-08 01:58:03 -05001388
1389done:
Sawan Chandak15904d72013-10-30 03:38:24 -04001390 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquez794a5692010-12-21 16:00:21 -08001391}
1392
1393static ssize_t
Andrew Vasquez656e8912009-06-03 09:55:29 -07001394qla2x00_fw_state_show(struct device *dev, struct device_attribute *attr,
1395 char *buf)
1396{
1397 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez85880802009-12-15 21:29:46 -08001398 int rval = QLA_FUNCTION_FAILED;
Joe Carnucciob5a340d2014-09-25 05:16:48 -04001399 uint16_t state[6];
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001400 uint32_t pstate;
1401
1402 if (IS_QLAFX00(vha->hw)) {
1403 pstate = qlafx00_fw_state_show(dev, attr, buf);
Sawan Chandak15904d72013-10-30 03:38:24 -04001404 return scnprintf(buf, PAGE_SIZE, "0x%x\n", pstate);
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001405 }
Andrew Vasquez656e8912009-06-03 09:55:29 -07001406
Andrew Vasquezd051a5aa2012-02-09 11:14:05 -08001407 if (qla2x00_reset_active(vha))
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001408 ql_log(ql_log_warn, vha, 0x707c,
1409 "ISP reset active.\n");
Santosh Vernekard6136f32010-03-19 16:59:20 -07001410 else if (!vha->hw->flags.eeh_busy)
Andrew Vasquez85880802009-12-15 21:29:46 -08001411 rval = qla2x00_get_firmware_state(vha, state);
Andrew Vasquez656e8912009-06-03 09:55:29 -07001412 if (rval != QLA_SUCCESS)
1413 memset(state, -1, sizeof(state));
1414
Joe Carnucciob5a340d2014-09-25 05:16:48 -04001415 return scnprintf(buf, PAGE_SIZE, "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
1416 state[0], state[1], state[2], state[3], state[4], state[5]);
Andrew Vasquez656e8912009-06-03 09:55:29 -07001417}
1418
Saurav Kashyapa9b6f7222012-08-22 14:21:01 -04001419static ssize_t
1420qla2x00_diag_requests_show(struct device *dev,
1421 struct device_attribute *attr, char *buf)
1422{
1423 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1424
1425 if (!IS_BIDI_CAPABLE(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001426 return scnprintf(buf, PAGE_SIZE, "\n");
Saurav Kashyapa9b6f7222012-08-22 14:21:01 -04001427
Sawan Chandak15904d72013-10-30 03:38:24 -04001428 return scnprintf(buf, PAGE_SIZE, "%llu\n", vha->bidi_stats.io_count);
Saurav Kashyapa9b6f7222012-08-22 14:21:01 -04001429}
1430
1431static ssize_t
1432qla2x00_diag_megabytes_show(struct device *dev,
1433 struct device_attribute *attr, char *buf)
1434{
1435 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1436
1437 if (!IS_BIDI_CAPABLE(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001438 return scnprintf(buf, PAGE_SIZE, "\n");
Saurav Kashyapa9b6f7222012-08-22 14:21:01 -04001439
Sawan Chandak15904d72013-10-30 03:38:24 -04001440 return scnprintf(buf, PAGE_SIZE, "%llu\n",
Saurav Kashyapa9b6f7222012-08-22 14:21:01 -04001441 vha->bidi_stats.transfer_bytes >> 20);
1442}
1443
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001444static ssize_t
1445qla2x00_fw_dump_size_show(struct device *dev, struct device_attribute *attr,
1446 char *buf)
1447{
1448 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1449 struct qla_hw_data *ha = vha->hw;
1450 uint32_t size;
1451
1452 if (!ha->fw_dumped)
1453 size = 0;
Hiral Patelcf3af762014-04-11 16:54:22 -04001454 else if (IS_P3P_TYPE(ha))
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001455 size = ha->md_template_size + ha->md_dump_size;
1456 else
1457 size = ha->fw_dump_len;
1458
Sawan Chandak15904d72013-10-30 03:38:24 -04001459 return scnprintf(buf, PAGE_SIZE, "%d\n", size);
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001460}
1461
Chad Dupuisa1b23c52014-02-26 04:15:12 -05001462static ssize_t
1463qla2x00_allow_cna_fw_dump_show(struct device *dev,
1464 struct device_attribute *attr, char *buf)
1465{
1466 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1467
1468 if (!IS_P3P_TYPE(vha->hw))
1469 return scnprintf(buf, PAGE_SIZE, "\n");
1470 else
1471 return scnprintf(buf, PAGE_SIZE, "%s\n",
1472 vha->hw->allow_cna_fw_dump ? "true" : "false");
1473}
1474
1475static ssize_t
1476qla2x00_allow_cna_fw_dump_store(struct device *dev,
1477 struct device_attribute *attr, const char *buf, size_t count)
1478{
1479 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1480 int val = 0;
1481
1482 if (!IS_P3P_TYPE(vha->hw))
1483 return -EINVAL;
1484
1485 if (sscanf(buf, "%d", &val) != 1)
1486 return -EINVAL;
1487
1488 vha->hw->allow_cna_fw_dump = val != 0;
1489
1490 return strlen(buf);
1491}
1492
Sawan Chandak03aa8682015-08-04 13:37:59 -04001493static ssize_t
1494qla2x00_pep_version_show(struct device *dev, struct device_attribute *attr,
1495 char *buf)
1496{
1497 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1498 struct qla_hw_data *ha = vha->hw;
1499
1500 if (!IS_QLA27XX(ha))
1501 return scnprintf(buf, PAGE_SIZE, "\n");
1502
1503 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d\n",
1504 ha->pep_version[0], ha->pep_version[1], ha->pep_version[2]);
1505}
1506
Tony Jonesee959b02008-02-22 00:13:36 +01001507static DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, NULL);
1508static DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL);
1509static DEVICE_ATTR(serial_num, S_IRUGO, qla2x00_serial_num_show, NULL);
1510static DEVICE_ATTR(isp_name, S_IRUGO, qla2x00_isp_name_show, NULL);
1511static DEVICE_ATTR(isp_id, S_IRUGO, qla2x00_isp_id_show, NULL);
1512static DEVICE_ATTR(model_name, S_IRUGO, qla2x00_model_name_show, NULL);
1513static DEVICE_ATTR(model_desc, S_IRUGO, qla2x00_model_desc_show, NULL);
1514static DEVICE_ATTR(pci_info, S_IRUGO, qla2x00_pci_info_show, NULL);
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001515static DEVICE_ATTR(link_state, S_IRUGO, qla2x00_link_state_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001516static DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show, qla2x00_zio_store);
1517static DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show,
1518 qla2x00_zio_timer_store);
1519static DEVICE_ATTR(beacon, S_IRUGO | S_IWUSR, qla2x00_beacon_show,
1520 qla2x00_beacon_store);
1521static DEVICE_ATTR(optrom_bios_version, S_IRUGO,
1522 qla2x00_optrom_bios_version_show, NULL);
1523static DEVICE_ATTR(optrom_efi_version, S_IRUGO,
1524 qla2x00_optrom_efi_version_show, NULL);
1525static DEVICE_ATTR(optrom_fcode_version, S_IRUGO,
1526 qla2x00_optrom_fcode_version_show, NULL);
1527static DEVICE_ATTR(optrom_fw_version, S_IRUGO, qla2x00_optrom_fw_version_show,
1528 NULL);
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001529static DEVICE_ATTR(optrom_gold_fw_version, S_IRUGO,
1530 qla2x00_optrom_gold_fw_version_show, NULL);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001531static DEVICE_ATTR(84xx_fw_version, S_IRUGO, qla24xx_84xx_fw_version_show,
1532 NULL);
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001533static DEVICE_ATTR(total_isp_aborts, S_IRUGO, qla2x00_total_isp_aborts_show,
1534 NULL);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001535static DEVICE_ATTR(mpi_version, S_IRUGO, qla2x00_mpi_version_show, NULL);
Andrew Vasquez55a96152009-03-24 09:08:03 -07001536static DEVICE_ATTR(phy_version, S_IRUGO, qla2x00_phy_version_show, NULL);
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001537static DEVICE_ATTR(flash_block_size, S_IRUGO, qla2x00_flash_block_size_show,
1538 NULL);
Andrew Vasquezbad70012009-04-06 22:33:38 -07001539static DEVICE_ATTR(vlan_id, S_IRUGO, qla2x00_vlan_id_show, NULL);
1540static DEVICE_ATTR(vn_port_mac_address, S_IRUGO,
1541 qla2x00_vn_port_mac_address_show, NULL);
Andrew Vasquez7f774022009-06-03 09:55:12 -07001542static DEVICE_ATTR(fabric_param, S_IRUGO, qla2x00_fabric_param_show, NULL);
Andrew Vasquez656e8912009-06-03 09:55:29 -07001543static DEVICE_ATTR(fw_state, S_IRUGO, qla2x00_fw_state_show, NULL);
Andrew Vasquez794a5692010-12-21 16:00:21 -08001544static DEVICE_ATTR(thermal_temp, S_IRUGO, qla2x00_thermal_temp_show, NULL);
Saurav Kashyapa9b6f7222012-08-22 14:21:01 -04001545static DEVICE_ATTR(diag_requests, S_IRUGO, qla2x00_diag_requests_show, NULL);
1546static DEVICE_ATTR(diag_megabytes, S_IRUGO, qla2x00_diag_megabytes_show, NULL);
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001547static DEVICE_ATTR(fw_dump_size, S_IRUGO, qla2x00_fw_dump_size_show, NULL);
Chad Dupuisa1b23c52014-02-26 04:15:12 -05001548static DEVICE_ATTR(allow_cna_fw_dump, S_IRUGO | S_IWUSR,
1549 qla2x00_allow_cna_fw_dump_show,
1550 qla2x00_allow_cna_fw_dump_store);
Sawan Chandak03aa8682015-08-04 13:37:59 -04001551static DEVICE_ATTR(pep_version, S_IRUGO, qla2x00_pep_version_show, NULL);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001552
Tony Jonesee959b02008-02-22 00:13:36 +01001553struct device_attribute *qla2x00_host_attrs[] = {
1554 &dev_attr_driver_version,
1555 &dev_attr_fw_version,
1556 &dev_attr_serial_num,
1557 &dev_attr_isp_name,
1558 &dev_attr_isp_id,
1559 &dev_attr_model_name,
1560 &dev_attr_model_desc,
1561 &dev_attr_pci_info,
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001562 &dev_attr_link_state,
Tony Jonesee959b02008-02-22 00:13:36 +01001563 &dev_attr_zio,
1564 &dev_attr_zio_timer,
1565 &dev_attr_beacon,
1566 &dev_attr_optrom_bios_version,
1567 &dev_attr_optrom_efi_version,
1568 &dev_attr_optrom_fcode_version,
1569 &dev_attr_optrom_fw_version,
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001570 &dev_attr_84xx_fw_version,
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001571 &dev_attr_total_isp_aborts,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001572 &dev_attr_mpi_version,
Andrew Vasquez55a96152009-03-24 09:08:03 -07001573 &dev_attr_phy_version,
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001574 &dev_attr_flash_block_size,
Andrew Vasquezbad70012009-04-06 22:33:38 -07001575 &dev_attr_vlan_id,
1576 &dev_attr_vn_port_mac_address,
Andrew Vasquez7f774022009-06-03 09:55:12 -07001577 &dev_attr_fabric_param,
Andrew Vasquez656e8912009-06-03 09:55:29 -07001578 &dev_attr_fw_state,
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001579 &dev_attr_optrom_gold_fw_version,
Andrew Vasquez794a5692010-12-21 16:00:21 -08001580 &dev_attr_thermal_temp,
Saurav Kashyapa9b6f7222012-08-22 14:21:01 -04001581 &dev_attr_diag_requests,
1582 &dev_attr_diag_megabytes,
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001583 &dev_attr_fw_dump_size,
Chad Dupuisa1b23c52014-02-26 04:15:12 -05001584 &dev_attr_allow_cna_fw_dump,
Sawan Chandak03aa8682015-08-04 13:37:59 -04001585 &dev_attr_pep_version,
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001586 NULL,
1587};
1588
8482e1182005-04-17 15:04:54 -05001589/* Host attributes. */
1590
1591static void
1592qla2x00_get_host_port_id(struct Scsi_Host *shost)
1593{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001594 scsi_qla_host_t *vha = shost_priv(shost);
8482e1182005-04-17 15:04:54 -05001595
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001596 fc_host_port_id(shost) = vha->d_id.b.domain << 16 |
1597 vha->d_id.b.area << 8 | vha->d_id.b.al_pa;
8482e1182005-04-17 15:04:54 -05001598}
1599
1600static void
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001601qla2x00_get_host_speed(struct Scsi_Host *shost)
1602{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001603 struct qla_hw_data *ha = ((struct scsi_qla_host *)
1604 (shost_priv(shost)))->hw;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001605 u32 speed = FC_PORTSPEED_UNKNOWN;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001606
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001607 if (IS_QLAFX00(ha)) {
1608 qlafx00_get_host_speed(shost);
1609 return;
1610 }
1611
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001612 switch (ha->link_data_rate) {
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001613 case PORT_SPEED_1GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001614 speed = FC_PORTSPEED_1GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001615 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001616 case PORT_SPEED_2GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001617 speed = FC_PORTSPEED_2GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001618 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001619 case PORT_SPEED_4GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001620 speed = FC_PORTSPEED_4GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001621 break;
Seokmann Juda4541b2008-01-31 12:33:52 -08001622 case PORT_SPEED_8GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001623 speed = FC_PORTSPEED_8GBIT;
Seokmann Juda4541b2008-01-31 12:33:52 -08001624 break;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001625 case PORT_SPEED_10GB:
1626 speed = FC_PORTSPEED_10GBIT;
1627 break;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001628 case PORT_SPEED_16GB:
1629 speed = FC_PORTSPEED_16GBIT;
1630 break;
Chad Dupuisf73cb692014-02-26 04:15:06 -05001631 case PORT_SPEED_32GB:
1632 speed = FC_PORTSPEED_32GBIT;
1633 break;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001634 }
1635 fc_host_speed(shost) = speed;
1636}
1637
1638static void
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001639qla2x00_get_host_port_type(struct Scsi_Host *shost)
1640{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001641 scsi_qla_host_t *vha = shost_priv(shost);
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001642 uint32_t port_type = FC_PORTTYPE_UNKNOWN;
1643
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001644 if (vha->vp_idx) {
Shyam Sundar2f2fa132008-05-12 22:21:07 -07001645 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
1646 return;
1647 }
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001648 switch (vha->hw->current_topology) {
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001649 case ISP_CFG_NL:
1650 port_type = FC_PORTTYPE_LPORT;
1651 break;
1652 case ISP_CFG_FL:
1653 port_type = FC_PORTTYPE_NLPORT;
1654 break;
1655 case ISP_CFG_N:
1656 port_type = FC_PORTTYPE_PTP;
1657 break;
1658 case ISP_CFG_F:
1659 port_type = FC_PORTTYPE_NPORT;
1660 break;
1661 }
1662 fc_host_port_type(shost) = port_type;
1663}
1664
1665static void
8482e1182005-04-17 15:04:54 -05001666qla2x00_get_starget_node_name(struct scsi_target *starget)
1667{
1668 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001669 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001670 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001671 u64 node_name = 0;
8482e1182005-04-17 15:04:54 -05001672
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001673 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001674 if (fcport->rport &&
1675 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001676 node_name = wwn_to_u64(fcport->node_name);
bdf79622005-04-17 15:06:53 -05001677 break;
1678 }
1679 }
1680
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001681 fc_starget_node_name(starget) = node_name;
8482e1182005-04-17 15:04:54 -05001682}
1683
1684static void
1685qla2x00_get_starget_port_name(struct scsi_target *starget)
1686{
1687 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001688 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001689 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001690 u64 port_name = 0;
8482e1182005-04-17 15:04:54 -05001691
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001692 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001693 if (fcport->rport &&
1694 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001695 port_name = wwn_to_u64(fcport->port_name);
bdf79622005-04-17 15:06:53 -05001696 break;
1697 }
1698 }
1699
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001700 fc_starget_port_name(starget) = port_name;
8482e1182005-04-17 15:04:54 -05001701}
1702
1703static void
1704qla2x00_get_starget_port_id(struct scsi_target *starget)
1705{
1706 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001707 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001708 fc_port_t *fcport;
1709 uint32_t port_id = ~0U;
8482e1182005-04-17 15:04:54 -05001710
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001711 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001712 if (fcport->rport &&
1713 starget->id == fcport->rport->scsi_target_id) {
bdf79622005-04-17 15:06:53 -05001714 port_id = fcport->d_id.b.domain << 16 |
1715 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
1716 break;
1717 }
1718 }
1719
8482e1182005-04-17 15:04:54 -05001720 fc_starget_port_id(starget) = port_id;
1721}
1722
1723static void
8482e1182005-04-17 15:04:54 -05001724qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
1725{
8482e1182005-04-17 15:04:54 -05001726 if (timeout)
Andrew Vasquez85821c92008-07-10 16:55:48 -07001727 rport->dev_loss_tmo = timeout;
8482e1182005-04-17 15:04:54 -05001728 else
Andrew Vasquez85821c92008-07-10 16:55:48 -07001729 rport->dev_loss_tmo = 1;
8482e1182005-04-17 15:04:54 -05001730}
1731
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001732static void
1733qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport)
1734{
1735 struct Scsi_Host *host = rport_to_shost(rport);
1736 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08001737 unsigned long flags;
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001738
Seokmann Ju3c01b4f2009-01-22 09:45:38 -08001739 if (!fcport)
1740 return;
1741
Giridhar Malavali38170fa2010-10-15 11:27:49 -07001742 /* Now that the rport has been deleted, set the fcport state to
1743 FCS_DEVICE_DEAD */
Chad Dupuisec426e12011-03-30 11:46:32 -07001744 qla2x00_set_fcport_state(fcport, FCS_DEVICE_DEAD);
Giridhar Malavali38170fa2010-10-15 11:27:49 -07001745
Giridhar Malavali3fadb80b2010-09-03 15:20:55 -07001746 /*
1747 * Transport has effectively 'deleted' the rport, clear
1748 * all local references.
1749 */
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08001750 spin_lock_irqsave(host->host_lock, flags);
Giridhar Malavali3fadb80b2010-09-03 15:20:55 -07001751 fcport->rport = fcport->drport = NULL;
1752 *((fc_port_t **)rport->dd_data) = NULL;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08001753 spin_unlock_irqrestore(host->host_lock, flags);
Giridhar Malavali3fadb80b2010-09-03 15:20:55 -07001754
Andrew Vasquez85880802009-12-15 21:29:46 -08001755 if (test_bit(ABORT_ISP_ACTIVE, &fcport->vha->dpc_flags))
1756 return;
1757
1758 if (unlikely(pci_channel_offline(fcport->vha->hw->pdev))) {
Seokmann Jub9b12f72009-03-24 09:08:18 -07001759 qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16);
Andrew Vasquez85880802009-12-15 21:29:46 -08001760 return;
1761 }
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001762}
1763
1764static void
1765qla2x00_terminate_rport_io(struct fc_rport *rport)
1766{
1767 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1768
Seokmann Ju3c01b4f2009-01-22 09:45:38 -08001769 if (!fcport)
1770 return;
1771
Andrew Vasquez85880802009-12-15 21:29:46 -08001772 if (test_bit(ABORT_ISP_ACTIVE, &fcport->vha->dpc_flags))
1773 return;
1774
Seokmann Jub9b12f72009-03-24 09:08:18 -07001775 if (unlikely(pci_channel_offline(fcport->vha->hw->pdev))) {
1776 qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16);
1777 return;
1778 }
Andrew Vasquez6390d1f2008-08-13 21:36:56 -07001779 /*
1780 * At this point all fcport's software-states are cleared. Perform any
1781 * final cleanup of firmware resources (PCBs and XCBs).
1782 */
Giridhar Malavali220d36b2012-11-21 02:39:55 -05001783 if (fcport->loop_id != FC_NO_LOOP_ID) {
Andrew Vasquezaf11f642012-02-09 11:15:43 -08001784 if (IS_FWI2_CAPABLE(fcport->vha->hw))
1785 fcport->vha->hw->isp_ops->fabric_logout(fcport->vha,
1786 fcport->loop_id, fcport->d_id.b.domain,
1787 fcport->d_id.b.area, fcport->d_id.b.al_pa);
1788 else
1789 qla2x00_port_logout(fcport->vha, fcport);
1790 }
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001791}
1792
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001793static int
1794qla2x00_issue_lip(struct Scsi_Host *shost)
1795{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001796 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001797
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001798 if (IS_QLAFX00(vha->hw))
1799 return 0;
1800
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001801 qla2x00_loop_reset(vha);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001802 return 0;
1803}
1804
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001805static struct fc_host_statistics *
1806qla2x00_get_fc_host_stats(struct Scsi_Host *shost)
1807{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001808 scsi_qla_host_t *vha = shost_priv(shost);
1809 struct qla_hw_data *ha = vha->hw;
1810 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001811 int rval;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001812 struct link_statistics *stats;
1813 dma_addr_t stats_dma;
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001814 struct fc_host_statistics *p = &vha->fc_host_stat;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001815
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001816 memset(p, -1, sizeof(*p));
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001817
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001818 if (IS_QLAFX00(vha->hw))
1819 goto done;
1820
Andrew Vasquez85880802009-12-15 21:29:46 -08001821 if (test_bit(UNLOADING, &vha->dpc_flags))
1822 goto done;
1823
1824 if (unlikely(pci_channel_offline(ha->pdev)))
1825 goto done;
1826
Chad Dupuis8fbfe2d2013-06-25 11:27:19 -04001827 if (qla2x00_reset_active(vha))
1828 goto done;
1829
Harish Zunjarrao243de672016-01-27 12:03:33 -05001830 stats = dma_alloc_coherent(&ha->pdev->dev,
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001831 sizeof(*stats), &stats_dma, GFP_KERNEL);
1832 if (!stats) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001833 ql_log(ql_log_warn, vha, 0x707d,
1834 "Failed to allocate memory for stats.\n");
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001835 goto done;
1836 }
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001837 memset(stats, 0, sizeof(*stats));
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001838
1839 rval = QLA_FUNCTION_FAILED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001840 if (IS_FWI2_CAPABLE(ha)) {
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001841 rval = qla24xx_get_isp_stats(base_vha, stats, stats_dma, 0);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001842 } else if (atomic_read(&base_vha->loop_state) == LOOP_READY &&
Chad Dupuis8fbfe2d2013-06-25 11:27:19 -04001843 !ha->dpc_active) {
Andrew Vasquez178779a2007-01-29 10:22:25 -08001844 /* Must be in a 'READY' state for statistics retrieval. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001845 rval = qla2x00_get_link_status(base_vha, base_vha->loop_id,
1846 stats, stats_dma);
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001847 }
Andrew Vasquez178779a2007-01-29 10:22:25 -08001848
1849 if (rval != QLA_SUCCESS)
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001850 goto done_free;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001851
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001852 p->link_failure_count = stats->link_fail_cnt;
1853 p->loss_of_sync_count = stats->loss_sync_cnt;
1854 p->loss_of_signal_count = stats->loss_sig_cnt;
1855 p->prim_seq_protocol_err_count = stats->prim_seq_err_cnt;
1856 p->invalid_tx_word_count = stats->inval_xmit_word_cnt;
1857 p->invalid_crc_count = stats->inval_crc_cnt;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001858 if (IS_FWI2_CAPABLE(ha)) {
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001859 p->lip_count = stats->lip_cnt;
1860 p->tx_frames = stats->tx_frames;
1861 p->rx_frames = stats->rx_frames;
1862 p->dumped_frames = stats->discarded_frames;
1863 p->nos_count = stats->nos_rcvd;
1864 p->error_frames =
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001865 stats->dropped_frames + stats->discarded_frames;
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001866 p->rx_words = vha->qla_stats.input_bytes;
1867 p->tx_words = vha->qla_stats.output_bytes;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001868 }
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001869 p->fcp_control_requests = vha->qla_stats.control_requests;
1870 p->fcp_input_requests = vha->qla_stats.input_requests;
1871 p->fcp_output_requests = vha->qla_stats.output_requests;
1872 p->fcp_input_megabytes = vha->qla_stats.input_bytes >> 20;
1873 p->fcp_output_megabytes = vha->qla_stats.output_bytes >> 20;
1874 p->seconds_since_last_reset =
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001875 get_jiffies_64() - vha->qla_stats.jiffies_at_last_reset;
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001876 do_div(p->seconds_since_last_reset, HZ);
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001877
1878done_free:
Harish Zunjarrao243de672016-01-27 12:03:33 -05001879 dma_free_coherent(&ha->pdev->dev, sizeof(struct link_statistics),
1880 stats, stats_dma);
Andrew Vasquez178779a2007-01-29 10:22:25 -08001881done:
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001882 return p;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001883}
1884
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001885static void
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001886qla2x00_reset_host_stats(struct Scsi_Host *shost)
1887{
1888 scsi_qla_host_t *vha = shost_priv(shost);
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001889 struct qla_hw_data *ha = vha->hw;
1890 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
1891 struct link_statistics *stats;
1892 dma_addr_t stats_dma;
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001893
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001894 memset(&vha->qla_stats, 0, sizeof(vha->qla_stats));
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001895 memset(&vha->fc_host_stat, 0, sizeof(vha->fc_host_stat));
1896
1897 vha->qla_stats.jiffies_at_last_reset = get_jiffies_64();
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001898
1899 if (IS_FWI2_CAPABLE(ha)) {
1900 stats = dma_alloc_coherent(&ha->pdev->dev,
1901 sizeof(*stats), &stats_dma, GFP_KERNEL);
1902 if (!stats) {
1903 ql_log(ql_log_warn, vha, 0x70d7,
1904 "Failed to allocate memory for stats.\n");
1905 return;
1906 }
1907
1908 /* reset firmware statistics */
1909 qla24xx_get_isp_stats(base_vha, stats, stats_dma, BIT_0);
1910
1911 dma_free_coherent(&ha->pdev->dev, sizeof(*stats),
1912 stats, stats_dma);
1913 }
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001914}
1915
1916static void
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001917qla2x00_get_host_symbolic_name(struct Scsi_Host *shost)
1918{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001919 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001920
Himanshu Madhanidf57cab2014-09-25 05:16:46 -04001921 qla2x00_get_sym_node_name(vha, fc_host_symbolic_name(shost),
1922 sizeof(fc_host_symbolic_name(shost)));
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001923}
1924
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001925static void
1926qla2x00_set_host_system_hostname(struct Scsi_Host *shost)
1927{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001928 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001929
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001930 set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags);
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001931}
1932
Andrew Vasquez90991c82006-10-02 12:00:46 -07001933static void
1934qla2x00_get_host_fabric_name(struct Scsi_Host *shost)
1935{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001936 scsi_qla_host_t *vha = shost_priv(shost);
Giridhar Malavali35e0cbd2010-09-03 15:20:51 -07001937 uint8_t node_name[WWN_SIZE] = { 0xFF, 0xFF, 0xFF, 0xFF, \
1938 0xFF, 0xFF, 0xFF, 0xFF};
1939 u64 fabric_name = wwn_to_u64(node_name);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001940
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001941 if (vha->device_flags & SWITCH_FOUND)
Giridhar Malavali35e0cbd2010-09-03 15:20:51 -07001942 fabric_name = wwn_to_u64(vha->fabric_node_name);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001943
Giridhar Malavali35e0cbd2010-09-03 15:20:51 -07001944 fc_host_fabric_name(shost) = fabric_name;
Andrew Vasquez90991c82006-10-02 12:00:46 -07001945}
1946
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001947static void
1948qla2x00_get_host_port_state(struct Scsi_Host *shost)
1949{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001950 scsi_qla_host_t *vha = shost_priv(shost);
1951 struct scsi_qla_host *base_vha = pci_get_drvdata(vha->hw->pdev);
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001952
Saurav Kashyap49e85c22011-11-18 09:02:20 -08001953 if (!base_vha->flags.online) {
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001954 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
Saurav Kashyap49e85c22011-11-18 09:02:20 -08001955 return;
1956 }
1957
1958 switch (atomic_read(&base_vha->loop_state)) {
1959 case LOOP_UPDATE:
1960 fc_host_port_state(shost) = FC_PORTSTATE_DIAGNOSTICS;
1961 break;
1962 case LOOP_DOWN:
1963 if (test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags))
1964 fc_host_port_state(shost) = FC_PORTSTATE_DIAGNOSTICS;
1965 else
1966 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
1967 break;
1968 case LOOP_DEAD:
1969 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
1970 break;
1971 case LOOP_READY:
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001972 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
Saurav Kashyap49e85c22011-11-18 09:02:20 -08001973 break;
1974 default:
1975 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1976 break;
1977 }
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001978}
1979
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001980static int
1981qla24xx_vport_create(struct fc_vport *fc_vport, bool disable)
1982{
1983 int ret = 0;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001984 uint8_t qos = 0;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001985 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
1986 scsi_qla_host_t *vha = NULL;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001987 struct qla_hw_data *ha = base_vha->hw;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001988 uint16_t options = 0;
1989 int cnt;
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07001990 struct req_que *req = ha->req_q_map[0];
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001991
1992 ret = qla24xx_vport_create_req_sanity_check(fc_vport);
1993 if (ret) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001994 ql_log(ql_log_warn, vha, 0x707e,
1995 "Vport sanity check failed, status %x\n", ret);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001996 return (ret);
1997 }
1998
1999 vha = qla24xx_create_vhost(fc_vport);
2000 if (vha == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002001 ql_log(ql_log_warn, vha, 0x707f, "Vport create host failed.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002002 return FC_VPORT_FAILED;
2003 }
2004 if (disable) {
2005 atomic_set(&vha->vp_state, VP_OFFLINE);
2006 fc_vport_set_state(fc_vport, FC_VPORT_DISABLED);
2007 } else
2008 atomic_set(&vha->vp_state, VP_FAILED);
2009
2010 /* ready to create vport */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002011 ql_log(ql_log_info, vha, 0x7080,
2012 "VP entry id %d assigned.\n", vha->vp_idx);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002013
2014 /* initialized vport states */
2015 atomic_set(&vha->loop_state, LOOP_DOWN);
2016 vha->vp_err_state= VP_ERR_PORTDWN;
2017 vha->vp_prev_err_state= VP_ERR_UNKWN;
2018 /* Check if physical ha port is Up */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002019 if (atomic_read(&base_vha->loop_state) == LOOP_DOWN ||
2020 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002021 /* Don't retry or attempt login of this virtual port */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002022 ql_dbg(ql_dbg_user, vha, 0x7081,
2023 "Vport loop state is not UP.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002024 atomic_set(&vha->loop_state, LOOP_DEAD);
2025 if (!disable)
2026 fc_vport_set_state(fc_vport, FC_VPORT_LINKDOWN);
2027 }
2028
Arun Easie02587d2011-08-16 11:29:23 -07002029 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) {
Arun Easibad75002010-05-04 15:01:30 -07002030 if (ha->fw_attributes & BIT_4) {
Arun Easi9e522cd2012-08-22 14:21:31 -04002031 int prot = 0, guard;
Arun Easibad75002010-05-04 15:01:30 -07002032 vha->flags.difdix_supported = 1;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002033 ql_dbg(ql_dbg_user, vha, 0x7082,
2034 "Registered for DIF/DIX type 1 and 3 protection.\n");
Arun Easi8cb20492011-08-16 11:29:22 -07002035 if (ql2xenabledif == 1)
2036 prot = SHOST_DIX_TYPE0_PROTECTION;
Arun Easibad75002010-05-04 15:01:30 -07002037 scsi_host_set_prot(vha->host,
Arun Easi8cb20492011-08-16 11:29:22 -07002038 prot | SHOST_DIF_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05002039 | SHOST_DIF_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07002040 | SHOST_DIF_TYPE3_PROTECTION
2041 | SHOST_DIX_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05002042 | SHOST_DIX_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07002043 | SHOST_DIX_TYPE3_PROTECTION);
Arun Easi9e522cd2012-08-22 14:21:31 -04002044
2045 guard = SHOST_DIX_GUARD_CRC;
2046
2047 if (IS_PI_IPGUARD_CAPABLE(ha) &&
2048 (ql2xenabledif > 1 || IS_PI_DIFB_DIX0_CAPABLE(ha)))
2049 guard |= SHOST_DIX_GUARD_IP;
2050
2051 scsi_host_set_guard(vha->host, guard);
Arun Easibad75002010-05-04 15:01:30 -07002052 } else
2053 vha->flags.difdix_supported = 0;
2054 }
2055
James Bottomleyd139b9b2009-11-05 13:33:12 -06002056 if (scsi_add_host_with_dma(vha->host, &fc_vport->dev,
2057 &ha->pdev->dev)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002058 ql_dbg(ql_dbg_user, vha, 0x7083,
2059 "scsi_add_host failure for VP[%d].\n", vha->vp_idx);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002060 goto vport_create_failed_2;
2061 }
2062
2063 /* initialize attributes */
Mike Christied2b5f102010-09-15 16:52:30 -05002064 fc_host_dev_loss_tmo(vha->host) = ha->port_down_retry_count;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002065 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
2066 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
2067 fc_host_supported_classes(vha->host) =
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002068 fc_host_supported_classes(base_vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002069 fc_host_supported_speeds(vha->host) =
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002070 fc_host_supported_speeds(base_vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002071
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002072 qlt_vport_create(vha, ha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002073 qla24xx_vport_disable(fc_vport, disable);
2074
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07002075 if (ha->flags.cpu_affinity_enabled) {
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002076 req = ha->req_q_map[1];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002077 ql_dbg(ql_dbg_multiq, vha, 0xc000,
2078 "Request queue %p attached with "
2079 "VP[%d], cpu affinity =%d\n",
2080 req, vha->vp_idx, ha->flags.cpu_affinity_enabled);
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002081 goto vport_queue;
2082 } else if (ql2xmaxqueues == 1 || !ha->npiv_info)
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002083 goto vport_queue;
2084 /* Create a request queue in QoS mode for the vport */
Anirban Chakraborty40859ae2009-06-03 09:55:16 -07002085 for (cnt = 0; cnt < ha->nvram_npiv_size; cnt++) {
2086 if (memcmp(ha->npiv_info[cnt].port_name, vha->port_name, 8) == 0
2087 && memcmp(ha->npiv_info[cnt].node_name, vha->node_name,
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002088 8) == 0) {
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002089 qos = ha->npiv_info[cnt].q_qos;
2090 break;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002091 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002092 }
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002093
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002094 if (qos) {
2095 ret = qla25xx_create_req_que(ha, options, vha->vp_idx, 0, 0,
2096 qos);
2097 if (!ret)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002098 ql_log(ql_log_warn, vha, 0x7084,
2099 "Can't create request queue for VP[%d]\n",
2100 vha->vp_idx);
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002101 else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002102 ql_dbg(ql_dbg_multiq, vha, 0xc001,
2103 "Request Que:%d Q0s: %d) created for VP[%d]\n",
2104 ret, qos, vha->vp_idx);
2105 ql_dbg(ql_dbg_user, vha, 0x7085,
2106 "Request Que:%d Q0s: %d) created for VP[%d]\n",
2107 ret, qos, vha->vp_idx);
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002108 req = ha->req_q_map[ret];
2109 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002110 }
2111
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002112vport_queue:
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002113 vha->req = req;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002114 return 0;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002115
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002116vport_create_failed_2:
2117 qla24xx_disable_vp(vha);
2118 qla24xx_deallocate_vp_id(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002119 scsi_host_put(vha->host);
2120 return FC_VPORT_FAILED;
2121}
2122
Adrian Bunka824ebb2008-01-17 09:02:15 -08002123static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002124qla24xx_vport_delete(struct fc_vport *fc_vport)
2125{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002126 scsi_qla_host_t *vha = fc_vport->dd_data;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002127 struct qla_hw_data *ha = vha->hw;
2128 uint16_t id = vha->vp_idx;
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07002129
2130 while (test_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags) ||
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002131 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags))
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07002132 msleep(1000);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002133
2134 qla24xx_disable_vp(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002135
Arun Easifeafb7b2010-09-03 14:57:00 -07002136 vha->flags.delete_progress = 1;
2137
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08002138 qlt_remove_target(ha, vha);
2139
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002140 fc_remove_host(vha->host);
2141
2142 scsi_remove_host(vha->host);
2143
Arun Easi9f406822011-05-10 11:18:17 -07002144 /* Allow timer to run to drain queued items, when removing vp */
2145 qla24xx_deallocate_vp_id(vha);
2146
Arun Easifeafb7b2010-09-03 14:57:00 -07002147 if (vha->timer_active) {
2148 qla2x00_vp_stop_timer(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002149 ql_dbg(ql_dbg_user, vha, 0x7086,
2150 "Timer for the VP[%d] has stopped\n", vha->vp_idx);
Arun Easifeafb7b2010-09-03 14:57:00 -07002151 }
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002152
Arun Easifeafb7b2010-09-03 14:57:00 -07002153 BUG_ON(atomic_read(&vha->vref_count));
2154
2155 qla2x00_free_fcports(vha);
2156
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07002157 mutex_lock(&ha->vport_lock);
2158 ha->cur_vport_count--;
2159 clear_bit(vha->vp_idx, ha->vp_idx_map);
2160 mutex_unlock(&ha->vport_lock);
2161
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07002162 if (vha->req->id && !ha->flags.cpu_affinity_enabled) {
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002163 if (qla25xx_delete_req_que(vha, vha->req) != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002164 ql_log(ql_log_warn, vha, 0x7087,
2165 "Queue delete failed.\n");
Anirban Chakrabortycf5a1632009-02-08 20:50:13 -08002166 }
2167
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002168 ql_log(ql_log_info, vha, 0x7088, "VP[%d] deleted.\n", id);
Chad Dupuiscfb09192011-11-18 09:03:07 -08002169 scsi_host_put(vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002170 return 0;
2171}
2172
Adrian Bunka824ebb2008-01-17 09:02:15 -08002173static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002174qla24xx_vport_disable(struct fc_vport *fc_vport, bool disable)
2175{
2176 scsi_qla_host_t *vha = fc_vport->dd_data;
2177
2178 if (disable)
2179 qla24xx_disable_vp(vha);
2180 else
2181 qla24xx_enable_vp(vha);
2182
2183 return 0;
2184}
2185
Andrew Vasquez1c97a122005-04-21 16:13:36 -04002186struct fc_function_template qla2xxx_transport_functions = {
8482e1182005-04-17 15:04:54 -05002187
2188 .show_host_node_name = 1,
2189 .show_host_port_name = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002190 .show_host_supported_classes = 1,
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002191 .show_host_supported_speeds = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002192
8482e1182005-04-17 15:04:54 -05002193 .get_host_port_id = qla2x00_get_host_port_id,
2194 .show_host_port_id = 1,
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08002195 .get_host_speed = qla2x00_get_host_speed,
2196 .show_host_speed = 1,
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08002197 .get_host_port_type = qla2x00_get_host_port_type,
2198 .show_host_port_type = 1,
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07002199 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
2200 .show_host_symbolic_name = 1,
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07002201 .set_host_system_hostname = qla2x00_set_host_system_hostname,
2202 .show_host_system_hostname = 1,
Andrew Vasquez90991c82006-10-02 12:00:46 -07002203 .get_host_fabric_name = qla2x00_get_host_fabric_name,
2204 .show_host_fabric_name = 1,
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07002205 .get_host_port_state = qla2x00_get_host_port_state,
2206 .show_host_port_state = 1,
8482e1182005-04-17 15:04:54 -05002207
bdf79622005-04-17 15:06:53 -05002208 .dd_fcrport_size = sizeof(struct fc_port *),
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002209 .show_rport_supported_classes = 1,
8482e1182005-04-17 15:04:54 -05002210
2211 .get_starget_node_name = qla2x00_get_starget_node_name,
2212 .show_starget_node_name = 1,
2213 .get_starget_port_name = qla2x00_get_starget_port_name,
2214 .show_starget_port_name = 1,
2215 .get_starget_port_id = qla2x00_get_starget_port_id,
2216 .show_starget_port_id = 1,
2217
8482e1182005-04-17 15:04:54 -05002218 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
2219 .show_rport_dev_loss_tmo = 1,
2220
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002221 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07002222 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
2223 .terminate_rport_io = qla2x00_terminate_rport_io,
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08002224 .get_fc_host_stats = qla2x00_get_fc_host_stats,
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04002225 .reset_fc_host_stats = qla2x00_reset_host_stats,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002226
2227 .vport_create = qla24xx_vport_create,
2228 .vport_disable = qla24xx_vport_disable,
2229 .vport_delete = qla24xx_vport_delete,
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002230 .bsg_request = qla24xx_bsg_request,
2231 .bsg_timeout = qla24xx_bsg_timeout,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002232};
2233
2234struct fc_function_template qla2xxx_transport_vport_functions = {
2235
2236 .show_host_node_name = 1,
2237 .show_host_port_name = 1,
2238 .show_host_supported_classes = 1,
2239
2240 .get_host_port_id = qla2x00_get_host_port_id,
2241 .show_host_port_id = 1,
2242 .get_host_speed = qla2x00_get_host_speed,
2243 .show_host_speed = 1,
2244 .get_host_port_type = qla2x00_get_host_port_type,
2245 .show_host_port_type = 1,
2246 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
2247 .show_host_symbolic_name = 1,
2248 .set_host_system_hostname = qla2x00_set_host_system_hostname,
2249 .show_host_system_hostname = 1,
2250 .get_host_fabric_name = qla2x00_get_host_fabric_name,
2251 .show_host_fabric_name = 1,
2252 .get_host_port_state = qla2x00_get_host_port_state,
2253 .show_host_port_state = 1,
2254
2255 .dd_fcrport_size = sizeof(struct fc_port *),
2256 .show_rport_supported_classes = 1,
2257
2258 .get_starget_node_name = qla2x00_get_starget_node_name,
2259 .show_starget_node_name = 1,
2260 .get_starget_port_name = qla2x00_get_starget_port_name,
2261 .show_starget_port_name = 1,
2262 .get_starget_port_id = qla2x00_get_starget_port_id,
2263 .show_starget_port_id = 1,
2264
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002265 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
2266 .show_rport_dev_loss_tmo = 1,
2267
2268 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07002269 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
2270 .terminate_rport_io = qla2x00_terminate_rport_io,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002271 .get_fc_host_stats = qla2x00_get_fc_host_stats,
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04002272 .reset_fc_host_stats = qla2x00_reset_host_stats,
2273
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002274 .bsg_request = qla24xx_bsg_request,
2275 .bsg_timeout = qla24xx_bsg_timeout,
8482e1182005-04-17 15:04:54 -05002276};
2277
8482e1182005-04-17 15:04:54 -05002278void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002279qla2x00_init_host_attr(scsi_qla_host_t *vha)
8482e1182005-04-17 15:04:54 -05002280{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002281 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002282 u32 speed = FC_PORTSPEED_UNKNOWN;
2283
Mike Christied2b5f102010-09-15 16:52:30 -05002284 fc_host_dev_loss_tmo(vha->host) = ha->port_down_retry_count;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002285 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
2286 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002287 fc_host_supported_classes(vha->host) = ha->tgt.enable_class_2 ?
2288 (FC_COS_CLASS2|FC_COS_CLASS3) : FC_COS_CLASS3;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002289 fc_host_max_npiv_vports(vha->host) = ha->max_npiv_vports;
2290 fc_host_npiv_vports_inuse(vha->host) = ha->cur_vport_count;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002291
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002292 if (IS_CNA_CAPABLE(ha))
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002293 speed = FC_PORTSPEED_10GBIT;
Giridhar Malavali6f606d22012-05-15 14:34:18 -04002294 else if (IS_QLA2031(ha))
2295 speed = FC_PORTSPEED_16GBIT | FC_PORTSPEED_8GBIT |
2296 FC_PORTSPEED_4GBIT;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002297 else if (IS_QLA25XX(ha))
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002298 speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT |
2299 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002300 else if (IS_QLA24XX_TYPE(ha))
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002301 speed = FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
2302 FC_PORTSPEED_1GBIT;
2303 else if (IS_QLA23XX(ha))
2304 speed = FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002305 else if (IS_QLAFX00(ha))
2306 speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT |
2307 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
Chad Dupuisf73cb692014-02-26 04:15:06 -05002308 else if (IS_QLA27XX(ha))
2309 speed = FC_PORTSPEED_32GBIT | FC_PORTSPEED_16GBIT |
2310 FC_PORTSPEED_8GBIT;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002311 else
2312 speed = FC_PORTSPEED_1GBIT;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002313 fc_host_supported_speeds(vha->host) = speed;
8482e1182005-04-17 15:04:54 -05002314}