blob: 435ff7fd6384a0a4e941efb3d60411e0731d4c1b [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
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500246 mutex_lock(&ha->optrom_mutex);
Milan P. Gandhic7702b82016-12-24 22:02:46 +0530247
248 if (ha->optrom_state != QLA_SREADING)
249 goto out;
250
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500251 rval = memory_read_from_buffer(buf, count, &off, ha->optrom_buffer,
252 ha->optrom_region_size);
Milan P. Gandhic7702b82016-12-24 22:02:46 +0530253
254out:
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500255 mutex_unlock(&ha->optrom_mutex);
256
257 return rval;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800258}
259
260static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700261qla2x00_sysfs_write_optrom(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800262 struct bin_attribute *bin_attr,
263 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800264{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800265 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800266 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800267 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800268
Milan P. Gandhic7702b82016-12-24 22:02:46 +0530269 mutex_lock(&ha->optrom_mutex);
270
271 if (ha->optrom_state != QLA_SWRITING) {
272 mutex_unlock(&ha->optrom_mutex);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800273 return -EINVAL;
Milan P. Gandhic7702b82016-12-24 22:02:46 +0530274 }
275 if (off > ha->optrom_region_size) {
276 mutex_unlock(&ha->optrom_mutex);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800277 return -ERANGE;
Milan P. Gandhic7702b82016-12-24 22:02:46 +0530278 }
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700279 if (off + count > ha->optrom_region_size)
280 count = ha->optrom_region_size - off;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800281
282 memcpy(&ha->optrom_buffer[off], buf, count);
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500283 mutex_unlock(&ha->optrom_mutex);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800284
285 return count;
286}
287
288static struct bin_attribute sysfs_optrom_attr = {
289 .attr = {
290 .name = "optrom",
291 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800292 },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700293 .size = 0,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800294 .read = qla2x00_sysfs_read_optrom,
295 .write = qla2x00_sysfs_write_optrom,
296};
297
298static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700299qla2x00_sysfs_write_optrom_ctl(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800300 struct bin_attribute *bin_attr,
301 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800302{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800303 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800304 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800305 struct qla_hw_data *ha = vha->hw;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700306 uint32_t start = 0;
307 uint32_t size = ha->optrom_size;
308 int val, valid;
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500309 ssize_t rval = count;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800310
311 if (off)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700312 return -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800313
Andrew Vasquez85880802009-12-15 21:29:46 -0800314 if (unlikely(pci_channel_offline(ha->pdev)))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700315 return -EAGAIN;
Andrew Vasquez85880802009-12-15 21:29:46 -0800316
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700317 if (sscanf(buf, "%d:%x:%x", &val, &start, &size) < 1)
318 return -EINVAL;
319 if (start > ha->optrom_size)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800320 return -EINVAL;
321
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500322 mutex_lock(&ha->optrom_mutex);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800323 switch (val) {
324 case 0:
325 if (ha->optrom_state != QLA_SREADING &&
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500326 ha->optrom_state != QLA_SWRITING) {
327 rval = -EINVAL;
328 goto out;
329 }
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800330 ha->optrom_state = QLA_SWAITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700331
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700332 ql_dbg(ql_dbg_user, vha, 0x7061,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700333 "Freeing flash region allocation -- 0x%x bytes.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700334 ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700335
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800336 vfree(ha->optrom_buffer);
337 ha->optrom_buffer = NULL;
338 break;
339 case 1:
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500340 if (ha->optrom_state != QLA_SWAITING) {
341 rval = -EINVAL;
342 goto out;
343 }
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800344
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700345 ha->optrom_region_start = start;
346 ha->optrom_region_size = start + size > ha->optrom_size ?
347 ha->optrom_size - start : size;
348
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800349 ha->optrom_state = QLA_SREADING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700350 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800351 if (ha->optrom_buffer == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700352 ql_log(ql_log_warn, vha, 0x7062,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800353 "Unable to allocate memory for optrom retrieval "
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700354 "(%x).\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800355
356 ha->optrom_state = QLA_SWAITING;
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500357 rval = -ENOMEM;
358 goto out;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800359 }
360
Lalit Chandivade86fbee82010-05-04 15:01:32 -0700361 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700362 ql_log(ql_log_warn, vha, 0x7063,
363 "HBA not online, failing NVRAM update.\n");
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500364 rval = -EAGAIN;
365 goto out;
Lalit Chandivade86fbee82010-05-04 15:01:32 -0700366 }
367
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700368 ql_dbg(ql_dbg_user, vha, 0x7064,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700369 "Reading flash region -- 0x%x/0x%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700370 ha->optrom_region_start, ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700371
372 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800373 ha->isp_ops->read_optrom(vha, ha->optrom_buffer,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700374 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800375 break;
376 case 2:
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500377 if (ha->optrom_state != QLA_SWAITING) {
378 rval = -EINVAL;
379 goto out;
380 }
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800381
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700382 /*
383 * We need to be more restrictive on which FLASH regions are
384 * allowed to be updated via user-space. Regions accessible
385 * via this method include:
386 *
387 * ISP21xx/ISP22xx/ISP23xx type boards:
388 *
389 * 0x000000 -> 0x020000 -- Boot code.
390 *
391 * ISP2322/ISP24xx type boards:
392 *
393 * 0x000000 -> 0x07ffff -- Boot code.
394 * 0x080000 -> 0x0fffff -- Firmware.
395 *
396 * ISP25xx type boards:
397 *
398 * 0x000000 -> 0x07ffff -- Boot code.
399 * 0x080000 -> 0x0fffff -- Firmware.
400 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
401 */
402 valid = 0;
403 if (ha->optrom_size == OPTROM_SIZE_2300 && start == 0)
404 valid = 1;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700405 else if (start == (ha->flt_region_boot * 4) ||
406 start == (ha->flt_region_fw * 4))
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700407 valid = 1;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800408 else if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha)
Alex Vechersky9a6e6402014-09-25 05:16:58 -0400409 || IS_CNA_CAPABLE(ha) || IS_QLA2031(ha)
410 || IS_QLA27XX(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -0700411 valid = 1;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700412 if (!valid) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700413 ql_log(ql_log_warn, vha, 0x7065,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700414 "Invalid start region 0x%x/0x%x.\n", start, size);
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500415 rval = -EINVAL;
416 goto out;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700417 }
418
419 ha->optrom_region_start = start;
420 ha->optrom_region_size = start + size > ha->optrom_size ?
421 ha->optrom_size - start : size;
422
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800423 ha->optrom_state = QLA_SWRITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700424 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800425 if (ha->optrom_buffer == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700426 ql_log(ql_log_warn, vha, 0x7066,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800427 "Unable to allocate memory for optrom update "
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700428 "(%x)\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800429
430 ha->optrom_state = QLA_SWAITING;
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500431 rval = -ENOMEM;
432 goto out;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800433 }
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700434
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700435 ql_dbg(ql_dbg_user, vha, 0x7067,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700436 "Staging flash region write -- 0x%x/0x%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700437 ha->optrom_region_start, ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700438
439 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800440 break;
441 case 3:
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500442 if (ha->optrom_state != QLA_SWRITING) {
443 rval = -EINVAL;
444 goto out;
445 }
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800446
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700447 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700448 ql_log(ql_log_warn, vha, 0x7068,
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700449 "HBA not online, failing flash update.\n");
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500450 rval = -EAGAIN;
451 goto out;
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700452 }
453
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700454 ql_dbg(ql_dbg_user, vha, 0x7069,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700455 "Writing flash region -- 0x%x/0x%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700456 ha->optrom_region_start, ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700457
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800458 ha->isp_ops->write_optrom(vha, ha->optrom_buffer,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700459 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800460 break;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700461 default:
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500462 rval = -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800463 }
Chad Dupuis7a8ab9c2014-02-26 04:14:56 -0500464
465out:
466 mutex_unlock(&ha->optrom_mutex);
467 return rval;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800468}
469
470static struct bin_attribute sysfs_optrom_ctl_attr = {
471 .attr = {
472 .name = "optrom_ctl",
473 .mode = S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800474 },
475 .size = 0,
476 .write = qla2x00_sysfs_write_optrom_ctl,
477};
478
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800479static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700480qla2x00_sysfs_read_vpd(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800481 struct bin_attribute *bin_attr,
482 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800483{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800484 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800485 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800486 struct qla_hw_data *ha = vha->hw;
Sawan Chandak4243c112016-01-27 12:03:31 -0500487 uint32_t faddr;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800488
Andrew Vasquez85880802009-12-15 21:29:46 -0800489 if (unlikely(pci_channel_offline(ha->pdev)))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700490 return -EAGAIN;
Andrew Vasquez85880802009-12-15 21:29:46 -0800491
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700492 if (!capable(CAP_SYS_ADMIN))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700493 return -EINVAL;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800494
Sawan Chandak4243c112016-01-27 12:03:31 -0500495 if (IS_NOCACHE_VPD_TYPE(ha)) {
496 faddr = ha->flt_region_vpd << 2;
497
498 if (IS_QLA27XX(ha) &&
499 qla27xx_find_valid_image(vha) == QLA27XX_SECONDARY_IMAGE)
500 faddr = ha->flt_region_vpd_sec << 2;
501
502 ha->isp_ops->read_optrom(vha, ha->vpd, faddr,
Andrew Vasquez6749ce32009-03-24 09:08:17 -0700503 ha->vpd_size);
Sawan Chandak4243c112016-01-27 12:03:31 -0500504 }
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700505 return memory_read_from_buffer(buf, count, &off, ha->vpd, ha->vpd_size);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800506}
507
508static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700509qla2x00_sysfs_write_vpd(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800510 struct bin_attribute *bin_attr,
511 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800512{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800513 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800514 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800515 struct qla_hw_data *ha = vha->hw;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700516 uint8_t *tmp_data;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800517
Andrew Vasquez85880802009-12-15 21:29:46 -0800518 if (unlikely(pci_channel_offline(ha->pdev)))
519 return 0;
520
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700521 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size ||
522 !ha->isp_ops->write_nvram)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800523 return 0;
524
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700525 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700526 ql_log(ql_log_warn, vha, 0x706a,
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700527 "HBA not online, failing VPD update.\n");
528 return -EAGAIN;
529 }
530
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800531 /* Write NVRAM. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800532 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->vpd_base, count);
533 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd, ha->vpd_base, count);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800534
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700535 /* Update flash version information for 4Gb & above. */
536 if (!IS_FWI2_CAPABLE(ha))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700537 return -EINVAL;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700538
539 tmp_data = vmalloc(256);
540 if (!tmp_data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700541 ql_log(ql_log_warn, vha, 0x706b,
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700542 "Unable to allocate memory for VPD information update.\n");
Joe Carnucciob668ae32011-08-16 11:31:53 -0700543 return -ENOMEM;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700544 }
545 ha->isp_ops->get_flash_version(vha, tmp_data);
546 vfree(tmp_data);
Joe Carnucciob668ae32011-08-16 11:31:53 -0700547
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800548 return count;
549}
550
551static struct bin_attribute sysfs_vpd_attr = {
552 .attr = {
553 .name = "vpd",
554 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800555 },
556 .size = 0,
557 .read = qla2x00_sysfs_read_vpd,
558 .write = qla2x00_sysfs_write_vpd,
559};
560
Andrew Vasquez88729e52006-06-23 16:10:50 -0700561static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700562qla2x00_sysfs_read_sfp(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800563 struct bin_attribute *bin_attr,
564 char *buf, loff_t off, size_t count)
Andrew Vasquez88729e52006-06-23 16:10:50 -0700565{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800566 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700567 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800568 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez88729e52006-06-23 16:10:50 -0700569 uint16_t iter, addr, offset;
570 int rval;
571
572 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != SFP_DEV_SIZE * 2)
573 return 0;
574
Andrew Vasqueze8711082008-01-31 12:33:48 -0800575 if (ha->sfp_data)
576 goto do_read;
577
578 ha->sfp_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
579 &ha->sfp_data_dma);
580 if (!ha->sfp_data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700581 ql_log(ql_log_warn, vha, 0x706c,
Andrew Vasqueze8711082008-01-31 12:33:48 -0800582 "Unable to allocate memory for SFP read-data.\n");
583 return 0;
584 }
585
586do_read:
587 memset(ha->sfp_data, 0, SFP_BLOCK_SIZE);
Andrew Vasquez88729e52006-06-23 16:10:50 -0700588 addr = 0xa0;
589 for (iter = 0, offset = 0; iter < (SFP_DEV_SIZE * 2) / SFP_BLOCK_SIZE;
590 iter++, offset += SFP_BLOCK_SIZE) {
591 if (iter == 4) {
592 /* Skip to next device address. */
593 addr = 0xa2;
594 offset = 0;
595 }
596
Joe Carnuccio6766df92011-05-10 11:30:15 -0700597 rval = qla2x00_read_sfp(vha, ha->sfp_data_dma, ha->sfp_data,
Joe Carnuccio51e74882014-04-11 16:54:41 -0400598 addr, offset, SFP_BLOCK_SIZE, BIT_1);
Andrew Vasquez88729e52006-06-23 16:10:50 -0700599 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700600 ql_log(ql_log_warn, vha, 0x706d,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700601 "Unable to read SFP data (%x/%x/%x).\n", rval,
602 addr, offset);
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700603
Joe Carnucciob668ae32011-08-16 11:31:53 -0700604 return -EIO;
Andrew Vasquez88729e52006-06-23 16:10:50 -0700605 }
606 memcpy(buf, ha->sfp_data, SFP_BLOCK_SIZE);
607 buf += SFP_BLOCK_SIZE;
608 }
609
610 return count;
611}
612
613static struct bin_attribute sysfs_sfp_attr = {
614 .attr = {
615 .name = "sfp",
616 .mode = S_IRUSR | S_IWUSR,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700617 },
618 .size = SFP_DEV_SIZE * 2,
619 .read = qla2x00_sysfs_read_sfp,
620};
621
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700622static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700623qla2x00_sysfs_write_reset(struct file *filp, struct kobject *kobj,
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700624 struct bin_attribute *bin_attr,
625 char *buf, loff_t off, size_t count)
626{
627 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
628 struct device, kobj)));
629 struct qla_hw_data *ha = vha->hw;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700630 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700631 int type;
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400632 uint32_t idc_control;
Sawan Chandak8c2cf7d2013-08-27 01:37:51 -0400633 uint8_t *tmp_data = NULL;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700634 if (off != 0)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700635 return -EINVAL;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700636
637 type = simple_strtol(buf, NULL, 10);
638 switch (type) {
639 case 0x2025c:
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700640 ql_log(ql_log_info, vha, 0x706e,
641 "Issuing ISP reset.\n");
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700642
643 scsi_block_requests(vha->host);
Giridhar Malavali08de2842011-08-16 11:31:44 -0700644 if (IS_QLA82XX(ha)) {
Giridhar Malavalib6d0d9d2012-05-15 14:34:25 -0400645 ha->flags.isp82xx_no_md_cap = 1;
Giridhar Malavali08de2842011-08-16 11:31:44 -0700646 qla82xx_idc_lock(ha);
647 qla82xx_set_reset_owner(vha);
648 qla82xx_idc_unlock(ha);
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400649 } else if (IS_QLA8044(ha)) {
650 qla8044_idc_lock(ha);
651 idc_control = qla8044_rd_reg(ha,
652 QLA8044_IDC_DRV_CTRL);
653 qla8044_wr_reg(ha, QLA8044_IDC_DRV_CTRL,
654 (idc_control | GRACEFUL_RESET_BIT1));
655 qla82xx_set_reset_owner(vha);
656 qla8044_idc_unlock(ha);
657 } else {
658 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
659 qla2xxx_wake_dpc(vha);
Giridhar Malavali08de2842011-08-16 11:31:44 -0700660 }
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700661 qla2x00_wait_for_chip_reset(vha);
662 scsi_unblock_requests(vha->host);
663 break;
664 case 0x2025d:
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400665 if (!IS_QLA81XX(ha) && !IS_QLA83XX(ha))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700666 return -EPERM;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700667
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700668 ql_log(ql_log_info, vha, 0x706f,
669 "Issuing MPI reset.\n");
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700670
Himanshu Madhanib20f02e2015-06-10 11:05:18 -0400671 if (IS_QLA83XX(ha) || IS_QLA27XX(ha)) {
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400672 uint32_t idc_control;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700673
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400674 qla83xx_idc_lock(vha, 0);
675 __qla83xx_get_idc_control(vha, &idc_control);
676 idc_control |= QLA83XX_IDC_GRACEFUL_RESET;
677 __qla83xx_set_idc_control(vha, idc_control);
678 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE,
679 QLA8XXX_DEV_NEED_RESET);
680 qla83xx_idc_audit(vha, IDC_AUDIT_TIMESTAMP);
681 qla83xx_idc_unlock(vha, 0);
682 break;
683 } else {
684 /* Make sure FC side is not in reset */
685 qla2x00_wait_for_hba_online(vha);
686
687 /* Issue MPI reset */
688 scsi_block_requests(vha->host);
689 if (qla81xx_restart_mpi_firmware(vha) != QLA_SUCCESS)
690 ql_log(ql_log_warn, vha, 0x7070,
691 "MPI reset failed.\n");
692 scsi_unblock_requests(vha->host);
693 break;
694 }
Giridhar Malavalia9083012010-04-12 17:59:55 -0700695 case 0x2025e:
Atul Deshmukh7ec0eff2013-08-27 01:37:28 -0400696 if (!IS_P3P_TYPE(ha) || vha != base_vha) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700697 ql_log(ql_log_info, vha, 0x7071,
698 "FCoE ctx reset no supported.\n");
Joe Carnucciob668ae32011-08-16 11:31:53 -0700699 return -EPERM;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700700 }
701
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700702 ql_log(ql_log_info, vha, 0x7072,
703 "Issuing FCoE ctx reset.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -0700704 set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
705 qla2xxx_wake_dpc(vha);
706 qla2x00_wait_for_fcoe_ctx_reset(vha);
707 break;
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400708 case 0x2025f:
709 if (!IS_QLA8031(ha))
710 return -EPERM;
711 ql_log(ql_log_info, vha, 0x70bc,
712 "Disabling Reset by IDC control\n");
713 qla83xx_idc_lock(vha, 0);
714 __qla83xx_get_idc_control(vha, &idc_control);
715 idc_control |= QLA83XX_IDC_RESET_DISABLED;
716 __qla83xx_set_idc_control(vha, idc_control);
717 qla83xx_idc_unlock(vha, 0);
718 break;
719 case 0x20260:
720 if (!IS_QLA8031(ha))
721 return -EPERM;
722 ql_log(ql_log_info, vha, 0x70bd,
723 "Enabling Reset by IDC control\n");
724 qla83xx_idc_lock(vha, 0);
725 __qla83xx_get_idc_control(vha, &idc_control);
726 idc_control &= ~QLA83XX_IDC_RESET_DISABLED;
727 __qla83xx_set_idc_control(vha, idc_control);
728 qla83xx_idc_unlock(vha, 0);
729 break;
Sawan Chandak8c2cf7d2013-08-27 01:37:51 -0400730 case 0x20261:
731 ql_dbg(ql_dbg_user, vha, 0x70e0,
732 "Updating cache versions without reset ");
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400733
Sawan Chandak8c2cf7d2013-08-27 01:37:51 -0400734 tmp_data = vmalloc(256);
735 if (!tmp_data) {
736 ql_log(ql_log_warn, vha, 0x70e1,
737 "Unable to allocate memory for VPD information update.\n");
738 return -ENOMEM;
739 }
740 ha->isp_ops->get_flash_version(vha, tmp_data);
741 vfree(tmp_data);
742 break;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700743 }
744 return count;
745}
746
747static struct bin_attribute sysfs_reset_attr = {
748 .attr = {
749 .name = "reset",
750 .mode = S_IWUSR,
751 },
752 .size = 0,
753 .write = qla2x00_sysfs_write_reset,
754};
755
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700756static ssize_t
Himanshu Madhani6eb54712015-12-17 14:57:00 -0500757qla2x00_issue_logo(struct file *filp, struct kobject *kobj,
758 struct bin_attribute *bin_attr,
759 char *buf, loff_t off, size_t count)
760{
761 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
762 struct device, kobj)));
763 int type;
Himanshu Madhani6eb54712015-12-17 14:57:00 -0500764 port_id_t did;
765
766 type = simple_strtol(buf, NULL, 10);
767
768 did.b.domain = (type & 0x00ff0000) >> 16;
769 did.b.area = (type & 0x0000ff00) >> 8;
770 did.b.al_pa = (type & 0x000000ff);
771
772 ql_log(ql_log_info, vha, 0x70e3, "portid=%02x%02x%02x done\n",
773 did.b.domain, did.b.area, did.b.al_pa);
774
775 ql_log(ql_log_info, vha, 0x70e4, "%s: %d\n", __func__, type);
776
Bart Van Assche91f42b32016-03-30 15:25:21 -0700777 qla24xx_els_dcmd_iocb(vha, ELS_DCMD_LOGO, did);
Himanshu Madhani6eb54712015-12-17 14:57:00 -0500778 return count;
779}
780
781static struct bin_attribute sysfs_issue_logo_attr = {
782 .attr = {
783 .name = "issue_logo",
784 .mode = S_IWUSR,
785 },
786 .size = 0,
787 .write = qla2x00_issue_logo,
788};
789
790static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700791qla2x00_sysfs_read_xgmac_stats(struct file *filp, struct kobject *kobj,
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700792 struct bin_attribute *bin_attr,
793 char *buf, loff_t off, size_t count)
794{
795 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
796 struct device, kobj)));
797 struct qla_hw_data *ha = vha->hw;
798 int rval;
799 uint16_t actual_size;
800
801 if (!capable(CAP_SYS_ADMIN) || off != 0 || count > XGMAC_DATA_SIZE)
802 return 0;
803
804 if (ha->xgmac_data)
805 goto do_read;
806
807 ha->xgmac_data = dma_alloc_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
808 &ha->xgmac_data_dma, GFP_KERNEL);
809 if (!ha->xgmac_data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700810 ql_log(ql_log_warn, vha, 0x7076,
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700811 "Unable to allocate memory for XGMAC read-data.\n");
812 return 0;
813 }
814
815do_read:
816 actual_size = 0;
817 memset(ha->xgmac_data, 0, XGMAC_DATA_SIZE);
818
819 rval = qla2x00_get_xgmac_stats(vha, ha->xgmac_data_dma,
820 XGMAC_DATA_SIZE, &actual_size);
821 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700822 ql_log(ql_log_warn, vha, 0x7077,
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700823 "Unable to read XGMAC data (%x).\n", rval);
824 count = 0;
825 }
826
827 count = actual_size > count ? count: actual_size;
828 memcpy(buf, ha->xgmac_data, count);
829
830 return count;
831}
832
833static struct bin_attribute sysfs_xgmac_stats_attr = {
834 .attr = {
835 .name = "xgmac_stats",
836 .mode = S_IRUSR,
837 },
838 .size = 0,
839 .read = qla2x00_sysfs_read_xgmac_stats,
840};
841
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700842static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700843qla2x00_sysfs_read_dcbx_tlv(struct file *filp, struct kobject *kobj,
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700844 struct bin_attribute *bin_attr,
845 char *buf, loff_t off, size_t count)
846{
847 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
848 struct device, kobj)));
849 struct qla_hw_data *ha = vha->hw;
850 int rval;
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700851
852 if (!capable(CAP_SYS_ADMIN) || off != 0 || count > DCBX_TLV_DATA_SIZE)
853 return 0;
854
855 if (ha->dcbx_tlv)
856 goto do_read;
857
858 ha->dcbx_tlv = dma_alloc_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
859 &ha->dcbx_tlv_dma, GFP_KERNEL);
860 if (!ha->dcbx_tlv) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700861 ql_log(ql_log_warn, vha, 0x7078,
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700862 "Unable to allocate memory for DCBX TLV read-data.\n");
Joe Carnucciob668ae32011-08-16 11:31:53 -0700863 return -ENOMEM;
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700864 }
865
866do_read:
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700867 memset(ha->dcbx_tlv, 0, DCBX_TLV_DATA_SIZE);
868
869 rval = qla2x00_get_dcbx_params(vha, ha->dcbx_tlv_dma,
870 DCBX_TLV_DATA_SIZE);
871 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700872 ql_log(ql_log_warn, vha, 0x7079,
873 "Unable to read DCBX TLV (%x).\n", rval);
Joe Carnucciob668ae32011-08-16 11:31:53 -0700874 return -EIO;
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700875 }
876
877 memcpy(buf, ha->dcbx_tlv, count);
878
879 return count;
880}
881
882static struct bin_attribute sysfs_dcbx_tlv_attr = {
883 .attr = {
884 .name = "dcbx_tlv",
885 .mode = S_IRUSR,
886 },
887 .size = 0,
888 .read = qla2x00_sysfs_read_dcbx_tlv,
889};
890
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700891static struct sysfs_entry {
892 char *name;
893 struct bin_attribute *attr;
894 int is4GBp_only;
895} bin_file_entries[] = {
896 { "fw_dump", &sysfs_fw_dump_attr, },
897 { "nvram", &sysfs_nvram_attr, },
898 { "optrom", &sysfs_optrom_attr, },
899 { "optrom_ctl", &sysfs_optrom_ctl_attr, },
900 { "vpd", &sysfs_vpd_attr, 1 },
901 { "sfp", &sysfs_sfp_attr, 1 },
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700902 { "reset", &sysfs_reset_attr, },
Himanshu Madhani6eb54712015-12-17 14:57:00 -0500903 { "issue_logo", &sysfs_issue_logo_attr, },
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700904 { "xgmac_stats", &sysfs_xgmac_stats_attr, 3 },
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700905 { "dcbx_tlv", &sysfs_dcbx_tlv_attr, 3 },
Randy Dunlap46ddab72006-11-27 09:35:42 -0800906 { NULL },
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700907};
908
8482e1182005-04-17 15:04:54 -0500909void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800910qla2x00_alloc_sysfs_attr(scsi_qla_host_t *vha)
8482e1182005-04-17 15:04:54 -0500911{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800912 struct Scsi_Host *host = vha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700913 struct sysfs_entry *iter;
914 int ret;
8482e1182005-04-17 15:04:54 -0500915
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700916 for (iter = bin_file_entries; iter->name; iter++) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800917 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(vha->hw))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700918 continue;
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700919 if (iter->is4GBp_only == 2 && !IS_QLA25XX(vha->hw))
920 continue;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800921 if (iter->is4GBp_only == 3 && !(IS_CNA_CAPABLE(vha->hw)))
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700922 continue;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700923
924 ret = sysfs_create_bin_file(&host->shost_gendev.kobj,
925 iter->attr);
926 if (ret)
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700927 ql_log(ql_log_warn, vha, 0x00f3,
928 "Unable to create sysfs %s binary attribute (%d).\n",
929 iter->name, ret);
930 else
931 ql_dbg(ql_dbg_init, vha, 0x00f4,
932 "Successfully created sysfs %s binary attribure.\n",
933 iter->name);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700934 }
8482e1182005-04-17 15:04:54 -0500935}
936
937void
Chad Dupuisfe1b8062013-10-30 03:38:15 -0400938qla2x00_free_sysfs_attr(scsi_qla_host_t *vha, bool stop_beacon)
8482e1182005-04-17 15:04:54 -0500939{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800940 struct Scsi_Host *host = vha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700941 struct sysfs_entry *iter;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800942 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -0500943
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700944 for (iter = bin_file_entries; iter->name; iter++) {
Andrew Vasqueze4289242007-07-19 15:05:56 -0700945 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(ha))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700946 continue;
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700947 if (iter->is4GBp_only == 2 && !IS_QLA25XX(ha))
948 continue;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800949 if (iter->is4GBp_only == 3 && !(IS_CNA_CAPABLE(vha->hw)))
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700950 continue;
Nigel Kirkland74739522014-09-25 05:16:56 -0400951 if (iter->is4GBp_only == 0x27 && !IS_QLA27XX(vha->hw))
952 continue;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700953
Andrew Vasquez7914d002006-06-23 16:10:55 -0700954 sysfs_remove_bin_file(&host->shost_gendev.kobj,
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700955 iter->attr);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700956 }
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800957
Chad Dupuisfe1b8062013-10-30 03:38:15 -0400958 if (stop_beacon && ha->beacon_blink_led == 1)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800959 ha->isp_ops->beacon_off(vha);
8482e1182005-04-17 15:04:54 -0500960}
961
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700962/* Scsi_Host attributes. */
963
964static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100965qla2x00_drvr_version_show(struct device *dev,
966 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700967{
Sawan Chandak15904d72013-10-30 03:38:24 -0400968 return scnprintf(buf, PAGE_SIZE, "%s\n", qla2x00_version_str);
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700969}
970
971static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100972qla2x00_fw_version_show(struct device *dev,
973 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700974{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800975 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
976 struct qla_hw_data *ha = vha->hw;
977 char fw_str[128];
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700978
Sawan Chandak15904d72013-10-30 03:38:24 -0400979 return scnprintf(buf, PAGE_SIZE, "%s\n",
Himanshu Madhanidf57cab2014-09-25 05:16:46 -0400980 ha->isp_ops->fw_version_str(vha, fw_str, sizeof(fw_str)));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700981}
982
983static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100984qla2x00_serial_num_show(struct device *dev, struct device_attribute *attr,
985 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700986{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800987 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
988 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700989 uint32_t sn;
990
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400991 if (IS_QLAFX00(vha->hw)) {
Sawan Chandak15904d72013-10-30 03:38:24 -0400992 return scnprintf(buf, PAGE_SIZE, "%s\n",
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -0400993 vha->hw->mr.serial_num);
994 } else if (IS_FWI2_CAPABLE(ha)) {
Joe Carnuccioad5fa022013-10-30 03:38:19 -0400995 qla2xxx_get_vpd_field(vha, "SN", buf, PAGE_SIZE - 1);
996 return strlen(strcat(buf, "\n"));
Joe Carnuccio1ee27142008-07-10 16:55:53 -0700997 }
Andrew Vasquez8b7afc22007-10-19 15:59:19 -0700998
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700999 sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1;
Sawan Chandak15904d72013-10-30 03:38:24 -04001000 return scnprintf(buf, PAGE_SIZE, "%c%05d\n", 'A' + sn / 100000,
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001001 sn % 100000);
1002}
1003
1004static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001005qla2x00_isp_name_show(struct device *dev, struct device_attribute *attr,
1006 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001007{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001008 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Sawan Chandak15904d72013-10-30 03:38:24 -04001009 return scnprintf(buf, PAGE_SIZE, "ISP%04X\n", vha->hw->pdev->device);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001010}
1011
1012static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001013qla2x00_isp_id_show(struct device *dev, struct device_attribute *attr,
1014 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001015{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001016 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1017 struct qla_hw_data *ha = vha->hw;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001018
1019 if (IS_QLAFX00(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001020 return scnprintf(buf, PAGE_SIZE, "%s\n",
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001021 vha->hw->mr.hw_version);
1022
Sawan Chandak15904d72013-10-30 03:38:24 -04001023 return scnprintf(buf, PAGE_SIZE, "%04x %04x %04x %04x\n",
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001024 ha->product_id[0], ha->product_id[1], ha->product_id[2],
1025 ha->product_id[3]);
1026}
1027
1028static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001029qla2x00_model_name_show(struct device *dev, struct device_attribute *attr,
1030 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001031{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001032 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001033
Sawan Chandak15904d72013-10-30 03:38:24 -04001034 return scnprintf(buf, PAGE_SIZE, "%s\n", vha->hw->model_number);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001035}
1036
1037static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001038qla2x00_model_desc_show(struct device *dev, struct device_attribute *attr,
1039 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001040{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001041 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Bart Van Assche82e6afd2015-07-09 07:25:07 -07001042 return scnprintf(buf, PAGE_SIZE, "%s\n", vha->hw->model_desc);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001043}
1044
1045static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001046qla2x00_pci_info_show(struct device *dev, struct device_attribute *attr,
1047 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001048{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001049 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001050 char pci_info[30];
1051
Sawan Chandak15904d72013-10-30 03:38:24 -04001052 return scnprintf(buf, PAGE_SIZE, "%s\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001053 vha->hw->isp_ops->pci_info_str(vha, pci_info));
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001054}
1055
1056static ssize_t
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001057qla2x00_link_state_show(struct device *dev, struct device_attribute *attr,
1058 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001059{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001060 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1061 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001062 int len = 0;
1063
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001064 if (atomic_read(&vha->loop_state) == LOOP_DOWN ||
Andrew Vasquez62542f42010-05-04 15:01:22 -07001065 atomic_read(&vha->loop_state) == LOOP_DEAD ||
1066 vha->device_flags & DFLG_NO_CABLE)
Sawan Chandak15904d72013-10-30 03:38:24 -04001067 len = scnprintf(buf, PAGE_SIZE, "Link Down\n");
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001068 else if (atomic_read(&vha->loop_state) != LOOP_READY ||
Andrew Vasquezd051a5aa2012-02-09 11:14:05 -08001069 qla2x00_reset_active(vha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001070 len = scnprintf(buf, PAGE_SIZE, "Unknown Link State\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001071 else {
Sawan Chandak15904d72013-10-30 03:38:24 -04001072 len = scnprintf(buf, PAGE_SIZE, "Link Up - ");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001073
1074 switch (ha->current_topology) {
1075 case ISP_CFG_NL:
Sawan Chandak15904d72013-10-30 03:38:24 -04001076 len += scnprintf(buf + len, PAGE_SIZE-len, "Loop\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001077 break;
1078 case ISP_CFG_FL:
Sawan Chandak15904d72013-10-30 03:38:24 -04001079 len += scnprintf(buf + len, PAGE_SIZE-len, "FL_Port\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001080 break;
1081 case ISP_CFG_N:
Sawan Chandak15904d72013-10-30 03:38:24 -04001082 len += scnprintf(buf + len, PAGE_SIZE-len,
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001083 "N_Port to N_Port\n");
1084 break;
1085 case ISP_CFG_F:
Sawan Chandak15904d72013-10-30 03:38:24 -04001086 len += scnprintf(buf + len, PAGE_SIZE-len, "F_Port\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001087 break;
1088 default:
Sawan Chandak15904d72013-10-30 03:38:24 -04001089 len += scnprintf(buf + len, PAGE_SIZE-len, "Loop\n");
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001090 break;
1091 }
1092 }
1093 return len;
1094}
1095
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001096static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001097qla2x00_zio_show(struct device *dev, struct device_attribute *attr,
1098 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001099{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001100 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001101 int len = 0;
1102
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001103 switch (vha->hw->zio_mode) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001104 case QLA_ZIO_MODE_6:
Sawan Chandak15904d72013-10-30 03:38:24 -04001105 len += scnprintf(buf + len, PAGE_SIZE-len, "Mode 6\n");
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001106 break;
1107 case QLA_ZIO_DISABLED:
Sawan Chandak15904d72013-10-30 03:38:24 -04001108 len += scnprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001109 break;
1110 }
1111 return len;
1112}
1113
1114static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001115qla2x00_zio_store(struct device *dev, struct device_attribute *attr,
1116 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001117{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001118 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1119 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001120 int val = 0;
1121 uint16_t zio_mode;
1122
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001123 if (!IS_ZIO_SUPPORTED(ha))
1124 return -ENOTSUPP;
1125
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001126 if (sscanf(buf, "%d", &val) != 1)
1127 return -EINVAL;
1128
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001129 if (val)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001130 zio_mode = QLA_ZIO_MODE_6;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001131 else
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001132 zio_mode = QLA_ZIO_DISABLED;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001133
1134 /* Update per-hba values and queue a reset. */
1135 if (zio_mode != QLA_ZIO_DISABLED || ha->zio_mode != QLA_ZIO_DISABLED) {
1136 ha->zio_mode = zio_mode;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001137 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001138 }
1139 return strlen(buf);
1140}
1141
1142static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001143qla2x00_zio_timer_show(struct device *dev, struct device_attribute *attr,
1144 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001145{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001146 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001147
Sawan Chandak15904d72013-10-30 03:38:24 -04001148 return scnprintf(buf, PAGE_SIZE, "%d us\n", vha->hw->zio_timer * 100);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001149}
1150
1151static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001152qla2x00_zio_timer_store(struct device *dev, struct device_attribute *attr,
1153 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001154{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001155 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001156 int val = 0;
1157 uint16_t zio_timer;
1158
1159 if (sscanf(buf, "%d", &val) != 1)
1160 return -EINVAL;
1161 if (val > 25500 || val < 100)
1162 return -ERANGE;
1163
1164 zio_timer = (uint16_t)(val / 100);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001165 vha->hw->zio_timer = zio_timer;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001166
1167 return strlen(buf);
1168}
1169
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001170static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001171qla2x00_beacon_show(struct device *dev, struct device_attribute *attr,
1172 char *buf)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001173{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001174 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001175 int len = 0;
1176
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001177 if (vha->hw->beacon_blink_led)
Sawan Chandak15904d72013-10-30 03:38:24 -04001178 len += scnprintf(buf + len, PAGE_SIZE-len, "Enabled\n");
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001179 else
Sawan Chandak15904d72013-10-30 03:38:24 -04001180 len += scnprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001181 return len;
1182}
1183
1184static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001185qla2x00_beacon_store(struct device *dev, struct device_attribute *attr,
1186 const char *buf, size_t count)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001187{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001188 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1189 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001190 int val = 0;
1191 int rval;
1192
1193 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1194 return -EPERM;
1195
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001196 if (test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001197 ql_log(ql_log_warn, vha, 0x707a,
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001198 "Abort ISP active -- ignoring beacon request.\n");
1199 return -EBUSY;
1200 }
1201
1202 if (sscanf(buf, "%d", &val) != 1)
1203 return -EINVAL;
1204
1205 if (val)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001206 rval = ha->isp_ops->beacon_on(vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001207 else
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001208 rval = ha->isp_ops->beacon_off(vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001209
1210 if (rval != QLA_SUCCESS)
1211 count = 0;
1212
1213 return count;
1214}
1215
Andrew Vasquez30c47662007-01-29 10:22:21 -08001216static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001217qla2x00_optrom_bios_version_show(struct device *dev,
1218 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001219{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001220 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1221 struct qla_hw_data *ha = vha->hw;
Sawan Chandak15904d72013-10-30 03:38:24 -04001222 return scnprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->bios_revision[1],
Andrew Vasquez30c47662007-01-29 10:22:21 -08001223 ha->bios_revision[0]);
1224}
1225
1226static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001227qla2x00_optrom_efi_version_show(struct device *dev,
1228 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001229{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001230 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1231 struct qla_hw_data *ha = vha->hw;
Sawan Chandak15904d72013-10-30 03:38:24 -04001232 return scnprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->efi_revision[1],
Andrew Vasquez30c47662007-01-29 10:22:21 -08001233 ha->efi_revision[0]);
1234}
1235
1236static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001237qla2x00_optrom_fcode_version_show(struct device *dev,
1238 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001239{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001240 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1241 struct qla_hw_data *ha = vha->hw;
Sawan Chandak15904d72013-10-30 03:38:24 -04001242 return scnprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->fcode_revision[1],
Andrew Vasquez30c47662007-01-29 10:22:21 -08001243 ha->fcode_revision[0]);
1244}
1245
1246static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001247qla2x00_optrom_fw_version_show(struct device *dev,
1248 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001249{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001250 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1251 struct qla_hw_data *ha = vha->hw;
Sawan Chandak15904d72013-10-30 03:38:24 -04001252 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d %d\n",
Andrew Vasquez30c47662007-01-29 10:22:21 -08001253 ha->fw_revision[0], ha->fw_revision[1], ha->fw_revision[2],
1254 ha->fw_revision[3]);
1255}
1256
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001257static ssize_t
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001258qla2x00_optrom_gold_fw_version_show(struct device *dev,
1259 struct device_attribute *attr, char *buf)
1260{
1261 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1262 struct qla_hw_data *ha = vha->hw;
1263
Chad Dupuisf73cb692014-02-26 04:15:06 -05001264 if (!IS_QLA81XX(ha) && !IS_QLA83XX(ha) && !IS_QLA27XX(ha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001265 return scnprintf(buf, PAGE_SIZE, "\n");
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001266
Sawan Chandak15904d72013-10-30 03:38:24 -04001267 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%d)\n",
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001268 ha->gold_fw_version[0], ha->gold_fw_version[1],
1269 ha->gold_fw_version[2], ha->gold_fw_version[3]);
1270}
1271
1272static ssize_t
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001273qla2x00_total_isp_aborts_show(struct device *dev,
1274 struct device_attribute *attr, char *buf)
1275{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001276 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Sawan Chandak15904d72013-10-30 03:38:24 -04001277 return scnprintf(buf, PAGE_SIZE, "%d\n",
Saurav Kashyap2be21fa2012-05-15 14:34:16 -04001278 vha->qla_stats.total_isp_aborts);
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001279}
1280
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001281static ssize_t
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001282qla24xx_84xx_fw_version_show(struct device *dev,
1283 struct device_attribute *attr, char *buf)
1284{
1285 int rval = QLA_SUCCESS;
1286 uint16_t status[2] = {0, 0};
1287 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1288 struct qla_hw_data *ha = vha->hw;
1289
Andrew Vasquez0b9dae62010-05-04 15:01:21 -07001290 if (!IS_QLA84XX(ha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001291 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquez0b9dae62010-05-04 15:01:21 -07001292
Giridhar Malavali6c7ccf72010-05-28 15:08:29 -07001293 if (ha->cs84xx->op_fw_version == 0)
Andrew Vasquez0b9dae62010-05-04 15:01:21 -07001294 rval = qla84xx_verify_chip(vha, status);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001295
1296 if ((rval == QLA_SUCCESS) && (status[0] == 0))
Sawan Chandak15904d72013-10-30 03:38:24 -04001297 return scnprintf(buf, PAGE_SIZE, "%u\n",
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001298 (uint32_t)ha->cs84xx->op_fw_version);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001299
Sawan Chandak15904d72013-10-30 03:38:24 -04001300 return scnprintf(buf, PAGE_SIZE, "\n");
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001301}
1302
1303static ssize_t
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001304qla2x00_mpi_version_show(struct device *dev, struct device_attribute *attr,
1305 char *buf)
1306{
1307 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1308 struct qla_hw_data *ha = vha->hw;
1309
Sawan Chandak03aa8682015-08-04 13:37:59 -04001310 if (!IS_QLA81XX(ha) && !IS_QLA8031(ha) && !IS_QLA8044(ha) &&
1311 !IS_QLA27XX(ha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001312 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001313
Sawan Chandak15904d72013-10-30 03:38:24 -04001314 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%x)\n",
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001315 ha->mpi_version[0], ha->mpi_version[1], ha->mpi_version[2],
Andrew Vasquez55a96152009-03-24 09:08:03 -07001316 ha->mpi_capabilities);
1317}
1318
1319static ssize_t
1320qla2x00_phy_version_show(struct device *dev, struct device_attribute *attr,
1321 char *buf)
1322{
1323 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1324 struct qla_hw_data *ha = vha->hw;
1325
Nigel Kirklandf863f602012-05-15 14:34:19 -04001326 if (!IS_QLA81XX(ha) && !IS_QLA8031(ha))
Sawan Chandak15904d72013-10-30 03:38:24 -04001327 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquez55a96152009-03-24 09:08:03 -07001328
Sawan Chandak15904d72013-10-30 03:38:24 -04001329 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d\n",
Andrew Vasquez55a96152009-03-24 09:08:03 -07001330 ha->phy_version[0], ha->phy_version[1], ha->phy_version[2]);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001331}
1332
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001333static ssize_t
1334qla2x00_flash_block_size_show(struct device *dev,
1335 struct device_attribute *attr, char *buf)
1336{
1337 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1338 struct qla_hw_data *ha = vha->hw;
1339
Sawan Chandak15904d72013-10-30 03:38:24 -04001340 return scnprintf(buf, PAGE_SIZE, "0x%x\n", ha->fdt_block_size);
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001341}
1342
Andrew Vasquezbad70012009-04-06 22:33:38 -07001343static ssize_t
1344qla2x00_vlan_id_show(struct device *dev, struct device_attribute *attr,
1345 char *buf)
1346{
1347 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1348
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001349 if (!IS_CNA_CAPABLE(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001350 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquezbad70012009-04-06 22:33:38 -07001351
Sawan Chandak15904d72013-10-30 03:38:24 -04001352 return scnprintf(buf, PAGE_SIZE, "%d\n", vha->fcoe_vlan_id);
Andrew Vasquezbad70012009-04-06 22:33:38 -07001353}
1354
1355static ssize_t
1356qla2x00_vn_port_mac_address_show(struct device *dev,
1357 struct device_attribute *attr, char *buf)
1358{
1359 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1360
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001361 if (!IS_CNA_CAPABLE(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001362 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquezbad70012009-04-06 22:33:38 -07001363
Sawan Chandak15904d72013-10-30 03:38:24 -04001364 return scnprintf(buf, PAGE_SIZE, "%pMR\n", vha->fcoe_vn_port_mac);
Andrew Vasquezbad70012009-04-06 22:33:38 -07001365}
1366
Andrew Vasquez7f774022009-06-03 09:55:12 -07001367static ssize_t
1368qla2x00_fabric_param_show(struct device *dev, struct device_attribute *attr,
1369 char *buf)
1370{
1371 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1372
Sawan Chandak15904d72013-10-30 03:38:24 -04001373 return scnprintf(buf, PAGE_SIZE, "%d\n", vha->hw->switch_cap);
Andrew Vasquez7f774022009-06-03 09:55:12 -07001374}
1375
Andrew Vasquez656e8912009-06-03 09:55:29 -07001376static ssize_t
Andrew Vasquez794a5692010-12-21 16:00:21 -08001377qla2x00_thermal_temp_show(struct device *dev,
1378 struct device_attribute *attr, char *buf)
1379{
1380 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Joe Carnucciofe52f6e2013-02-08 01:58:03 -05001381 uint16_t temp = 0;
Andrew Vasquez794a5692010-12-21 16:00:21 -08001382
Joe Carnucciofe52f6e2013-02-08 01:58:03 -05001383 if (qla2x00_reset_active(vha)) {
1384 ql_log(ql_log_warn, vha, 0x70dc, "ISP reset active.\n");
1385 goto done;
1386 }
Andrew Vasquez794a5692010-12-21 16:00:21 -08001387
Joe Carnucciofe52f6e2013-02-08 01:58:03 -05001388 if (vha->hw->flags.eeh_busy) {
1389 ql_log(ql_log_warn, vha, 0x70dd, "PCI EEH busy.\n");
1390 goto done;
1391 }
1392
1393 if (qla2x00_get_thermal_temp(vha, &temp) == QLA_SUCCESS)
Sawan Chandak15904d72013-10-30 03:38:24 -04001394 return scnprintf(buf, PAGE_SIZE, "%d\n", temp);
Joe Carnucciofe52f6e2013-02-08 01:58:03 -05001395
1396done:
Sawan Chandak15904d72013-10-30 03:38:24 -04001397 return scnprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquez794a5692010-12-21 16:00:21 -08001398}
1399
1400static ssize_t
Andrew Vasquez656e8912009-06-03 09:55:29 -07001401qla2x00_fw_state_show(struct device *dev, struct device_attribute *attr,
1402 char *buf)
1403{
1404 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez85880802009-12-15 21:29:46 -08001405 int rval = QLA_FUNCTION_FAILED;
Joe Carnucciob5a340d2014-09-25 05:16:48 -04001406 uint16_t state[6];
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001407 uint32_t pstate;
1408
1409 if (IS_QLAFX00(vha->hw)) {
1410 pstate = qlafx00_fw_state_show(dev, attr, buf);
Sawan Chandak15904d72013-10-30 03:38:24 -04001411 return scnprintf(buf, PAGE_SIZE, "0x%x\n", pstate);
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001412 }
Andrew Vasquez656e8912009-06-03 09:55:29 -07001413
Andrew Vasquezd051a5aa2012-02-09 11:14:05 -08001414 if (qla2x00_reset_active(vha))
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001415 ql_log(ql_log_warn, vha, 0x707c,
1416 "ISP reset active.\n");
Santosh Vernekard6136f32010-03-19 16:59:20 -07001417 else if (!vha->hw->flags.eeh_busy)
Andrew Vasquez85880802009-12-15 21:29:46 -08001418 rval = qla2x00_get_firmware_state(vha, state);
Andrew Vasquez656e8912009-06-03 09:55:29 -07001419 if (rval != QLA_SUCCESS)
1420 memset(state, -1, sizeof(state));
1421
Joe Carnucciob5a340d2014-09-25 05:16:48 -04001422 return scnprintf(buf, PAGE_SIZE, "0x%x 0x%x 0x%x 0x%x 0x%x 0x%x\n",
1423 state[0], state[1], state[2], state[3], state[4], state[5]);
Andrew Vasquez656e8912009-06-03 09:55:29 -07001424}
1425
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001426static ssize_t
1427qla2x00_diag_requests_show(struct device *dev,
1428 struct device_attribute *attr, char *buf)
1429{
1430 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1431
1432 if (!IS_BIDI_CAPABLE(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001433 return scnprintf(buf, PAGE_SIZE, "\n");
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001434
Sawan Chandak15904d72013-10-30 03:38:24 -04001435 return scnprintf(buf, PAGE_SIZE, "%llu\n", vha->bidi_stats.io_count);
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001436}
1437
1438static ssize_t
1439qla2x00_diag_megabytes_show(struct device *dev,
1440 struct device_attribute *attr, char *buf)
1441{
1442 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1443
1444 if (!IS_BIDI_CAPABLE(vha->hw))
Sawan Chandak15904d72013-10-30 03:38:24 -04001445 return scnprintf(buf, PAGE_SIZE, "\n");
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001446
Sawan Chandak15904d72013-10-30 03:38:24 -04001447 return scnprintf(buf, PAGE_SIZE, "%llu\n",
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001448 vha->bidi_stats.transfer_bytes >> 20);
1449}
1450
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001451static ssize_t
1452qla2x00_fw_dump_size_show(struct device *dev, struct device_attribute *attr,
1453 char *buf)
1454{
1455 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1456 struct qla_hw_data *ha = vha->hw;
1457 uint32_t size;
1458
1459 if (!ha->fw_dumped)
1460 size = 0;
Hiral Patelcf3af762014-04-11 16:54:22 -04001461 else if (IS_P3P_TYPE(ha))
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001462 size = ha->md_template_size + ha->md_dump_size;
1463 else
1464 size = ha->fw_dump_len;
1465
Sawan Chandak15904d72013-10-30 03:38:24 -04001466 return scnprintf(buf, PAGE_SIZE, "%d\n", size);
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001467}
1468
Chad Dupuisa1b23c52014-02-26 04:15:12 -05001469static ssize_t
1470qla2x00_allow_cna_fw_dump_show(struct device *dev,
1471 struct device_attribute *attr, char *buf)
1472{
1473 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1474
1475 if (!IS_P3P_TYPE(vha->hw))
1476 return scnprintf(buf, PAGE_SIZE, "\n");
1477 else
1478 return scnprintf(buf, PAGE_SIZE, "%s\n",
1479 vha->hw->allow_cna_fw_dump ? "true" : "false");
1480}
1481
1482static ssize_t
1483qla2x00_allow_cna_fw_dump_store(struct device *dev,
1484 struct device_attribute *attr, const char *buf, size_t count)
1485{
1486 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1487 int val = 0;
1488
1489 if (!IS_P3P_TYPE(vha->hw))
1490 return -EINVAL;
1491
1492 if (sscanf(buf, "%d", &val) != 1)
1493 return -EINVAL;
1494
1495 vha->hw->allow_cna_fw_dump = val != 0;
1496
1497 return strlen(buf);
1498}
1499
Sawan Chandak03aa8682015-08-04 13:37:59 -04001500static ssize_t
1501qla2x00_pep_version_show(struct device *dev, struct device_attribute *attr,
1502 char *buf)
1503{
1504 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1505 struct qla_hw_data *ha = vha->hw;
1506
1507 if (!IS_QLA27XX(ha))
1508 return scnprintf(buf, PAGE_SIZE, "\n");
1509
1510 return scnprintf(buf, PAGE_SIZE, "%d.%02d.%02d\n",
1511 ha->pep_version[0], ha->pep_version[1], ha->pep_version[2]);
1512}
1513
Tony Jonesee959b02008-02-22 00:13:36 +01001514static DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, NULL);
1515static DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL);
1516static DEVICE_ATTR(serial_num, S_IRUGO, qla2x00_serial_num_show, NULL);
1517static DEVICE_ATTR(isp_name, S_IRUGO, qla2x00_isp_name_show, NULL);
1518static DEVICE_ATTR(isp_id, S_IRUGO, qla2x00_isp_id_show, NULL);
1519static DEVICE_ATTR(model_name, S_IRUGO, qla2x00_model_name_show, NULL);
1520static DEVICE_ATTR(model_desc, S_IRUGO, qla2x00_model_desc_show, NULL);
1521static DEVICE_ATTR(pci_info, S_IRUGO, qla2x00_pci_info_show, NULL);
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001522static DEVICE_ATTR(link_state, S_IRUGO, qla2x00_link_state_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001523static DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show, qla2x00_zio_store);
1524static DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show,
1525 qla2x00_zio_timer_store);
1526static DEVICE_ATTR(beacon, S_IRUGO | S_IWUSR, qla2x00_beacon_show,
1527 qla2x00_beacon_store);
1528static DEVICE_ATTR(optrom_bios_version, S_IRUGO,
1529 qla2x00_optrom_bios_version_show, NULL);
1530static DEVICE_ATTR(optrom_efi_version, S_IRUGO,
1531 qla2x00_optrom_efi_version_show, NULL);
1532static DEVICE_ATTR(optrom_fcode_version, S_IRUGO,
1533 qla2x00_optrom_fcode_version_show, NULL);
1534static DEVICE_ATTR(optrom_fw_version, S_IRUGO, qla2x00_optrom_fw_version_show,
1535 NULL);
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001536static DEVICE_ATTR(optrom_gold_fw_version, S_IRUGO,
1537 qla2x00_optrom_gold_fw_version_show, NULL);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001538static DEVICE_ATTR(84xx_fw_version, S_IRUGO, qla24xx_84xx_fw_version_show,
1539 NULL);
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001540static DEVICE_ATTR(total_isp_aborts, S_IRUGO, qla2x00_total_isp_aborts_show,
1541 NULL);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001542static DEVICE_ATTR(mpi_version, S_IRUGO, qla2x00_mpi_version_show, NULL);
Andrew Vasquez55a96152009-03-24 09:08:03 -07001543static DEVICE_ATTR(phy_version, S_IRUGO, qla2x00_phy_version_show, NULL);
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001544static DEVICE_ATTR(flash_block_size, S_IRUGO, qla2x00_flash_block_size_show,
1545 NULL);
Andrew Vasquezbad70012009-04-06 22:33:38 -07001546static DEVICE_ATTR(vlan_id, S_IRUGO, qla2x00_vlan_id_show, NULL);
1547static DEVICE_ATTR(vn_port_mac_address, S_IRUGO,
1548 qla2x00_vn_port_mac_address_show, NULL);
Andrew Vasquez7f774022009-06-03 09:55:12 -07001549static DEVICE_ATTR(fabric_param, S_IRUGO, qla2x00_fabric_param_show, NULL);
Andrew Vasquez656e8912009-06-03 09:55:29 -07001550static DEVICE_ATTR(fw_state, S_IRUGO, qla2x00_fw_state_show, NULL);
Andrew Vasquez794a5692010-12-21 16:00:21 -08001551static DEVICE_ATTR(thermal_temp, S_IRUGO, qla2x00_thermal_temp_show, NULL);
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001552static DEVICE_ATTR(diag_requests, S_IRUGO, qla2x00_diag_requests_show, NULL);
1553static DEVICE_ATTR(diag_megabytes, S_IRUGO, qla2x00_diag_megabytes_show, NULL);
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001554static DEVICE_ATTR(fw_dump_size, S_IRUGO, qla2x00_fw_dump_size_show, NULL);
Chad Dupuisa1b23c52014-02-26 04:15:12 -05001555static DEVICE_ATTR(allow_cna_fw_dump, S_IRUGO | S_IWUSR,
1556 qla2x00_allow_cna_fw_dump_show,
1557 qla2x00_allow_cna_fw_dump_store);
Sawan Chandak03aa8682015-08-04 13:37:59 -04001558static DEVICE_ATTR(pep_version, S_IRUGO, qla2x00_pep_version_show, NULL);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001559
Tony Jonesee959b02008-02-22 00:13:36 +01001560struct device_attribute *qla2x00_host_attrs[] = {
1561 &dev_attr_driver_version,
1562 &dev_attr_fw_version,
1563 &dev_attr_serial_num,
1564 &dev_attr_isp_name,
1565 &dev_attr_isp_id,
1566 &dev_attr_model_name,
1567 &dev_attr_model_desc,
1568 &dev_attr_pci_info,
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001569 &dev_attr_link_state,
Tony Jonesee959b02008-02-22 00:13:36 +01001570 &dev_attr_zio,
1571 &dev_attr_zio_timer,
1572 &dev_attr_beacon,
1573 &dev_attr_optrom_bios_version,
1574 &dev_attr_optrom_efi_version,
1575 &dev_attr_optrom_fcode_version,
1576 &dev_attr_optrom_fw_version,
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001577 &dev_attr_84xx_fw_version,
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001578 &dev_attr_total_isp_aborts,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001579 &dev_attr_mpi_version,
Andrew Vasquez55a96152009-03-24 09:08:03 -07001580 &dev_attr_phy_version,
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001581 &dev_attr_flash_block_size,
Andrew Vasquezbad70012009-04-06 22:33:38 -07001582 &dev_attr_vlan_id,
1583 &dev_attr_vn_port_mac_address,
Andrew Vasquez7f774022009-06-03 09:55:12 -07001584 &dev_attr_fabric_param,
Andrew Vasquez656e8912009-06-03 09:55:29 -07001585 &dev_attr_fw_state,
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001586 &dev_attr_optrom_gold_fw_version,
Andrew Vasquez794a5692010-12-21 16:00:21 -08001587 &dev_attr_thermal_temp,
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001588 &dev_attr_diag_requests,
1589 &dev_attr_diag_megabytes,
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001590 &dev_attr_fw_dump_size,
Chad Dupuisa1b23c52014-02-26 04:15:12 -05001591 &dev_attr_allow_cna_fw_dump,
Sawan Chandak03aa8682015-08-04 13:37:59 -04001592 &dev_attr_pep_version,
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001593 NULL,
1594};
1595
8482e1182005-04-17 15:04:54 -05001596/* Host attributes. */
1597
1598static void
1599qla2x00_get_host_port_id(struct Scsi_Host *shost)
1600{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001601 scsi_qla_host_t *vha = shost_priv(shost);
8482e1182005-04-17 15:04:54 -05001602
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001603 fc_host_port_id(shost) = vha->d_id.b.domain << 16 |
1604 vha->d_id.b.area << 8 | vha->d_id.b.al_pa;
8482e1182005-04-17 15:04:54 -05001605}
1606
1607static void
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001608qla2x00_get_host_speed(struct Scsi_Host *shost)
1609{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001610 struct qla_hw_data *ha = ((struct scsi_qla_host *)
1611 (shost_priv(shost)))->hw;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001612 u32 speed = FC_PORTSPEED_UNKNOWN;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001613
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001614 if (IS_QLAFX00(ha)) {
1615 qlafx00_get_host_speed(shost);
1616 return;
1617 }
1618
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001619 switch (ha->link_data_rate) {
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001620 case PORT_SPEED_1GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001621 speed = FC_PORTSPEED_1GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001622 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001623 case PORT_SPEED_2GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001624 speed = FC_PORTSPEED_2GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001625 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001626 case PORT_SPEED_4GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001627 speed = FC_PORTSPEED_4GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001628 break;
Seokmann Juda4541b2008-01-31 12:33:52 -08001629 case PORT_SPEED_8GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001630 speed = FC_PORTSPEED_8GBIT;
Seokmann Juda4541b2008-01-31 12:33:52 -08001631 break;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001632 case PORT_SPEED_10GB:
1633 speed = FC_PORTSPEED_10GBIT;
1634 break;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001635 case PORT_SPEED_16GB:
1636 speed = FC_PORTSPEED_16GBIT;
1637 break;
Chad Dupuisf73cb692014-02-26 04:15:06 -05001638 case PORT_SPEED_32GB:
1639 speed = FC_PORTSPEED_32GBIT;
1640 break;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001641 }
1642 fc_host_speed(shost) = speed;
1643}
1644
1645static void
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001646qla2x00_get_host_port_type(struct Scsi_Host *shost)
1647{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001648 scsi_qla_host_t *vha = shost_priv(shost);
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001649 uint32_t port_type = FC_PORTTYPE_UNKNOWN;
1650
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001651 if (vha->vp_idx) {
Shyam Sundar2f2fa132008-05-12 22:21:07 -07001652 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
1653 return;
1654 }
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001655 switch (vha->hw->current_topology) {
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001656 case ISP_CFG_NL:
1657 port_type = FC_PORTTYPE_LPORT;
1658 break;
1659 case ISP_CFG_FL:
1660 port_type = FC_PORTTYPE_NLPORT;
1661 break;
1662 case ISP_CFG_N:
1663 port_type = FC_PORTTYPE_PTP;
1664 break;
1665 case ISP_CFG_F:
1666 port_type = FC_PORTTYPE_NPORT;
1667 break;
1668 }
1669 fc_host_port_type(shost) = port_type;
1670}
1671
1672static void
8482e1182005-04-17 15:04:54 -05001673qla2x00_get_starget_node_name(struct scsi_target *starget)
1674{
1675 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001676 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001677 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001678 u64 node_name = 0;
8482e1182005-04-17 15:04:54 -05001679
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001680 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001681 if (fcport->rport &&
1682 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001683 node_name = wwn_to_u64(fcport->node_name);
bdf79622005-04-17 15:06:53 -05001684 break;
1685 }
1686 }
1687
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001688 fc_starget_node_name(starget) = node_name;
8482e1182005-04-17 15:04:54 -05001689}
1690
1691static void
1692qla2x00_get_starget_port_name(struct scsi_target *starget)
1693{
1694 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001695 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001696 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001697 u64 port_name = 0;
8482e1182005-04-17 15:04:54 -05001698
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001699 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001700 if (fcport->rport &&
1701 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001702 port_name = wwn_to_u64(fcport->port_name);
bdf79622005-04-17 15:06:53 -05001703 break;
1704 }
1705 }
1706
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001707 fc_starget_port_name(starget) = port_name;
8482e1182005-04-17 15:04:54 -05001708}
1709
1710static void
1711qla2x00_get_starget_port_id(struct scsi_target *starget)
1712{
1713 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001714 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001715 fc_port_t *fcport;
1716 uint32_t port_id = ~0U;
8482e1182005-04-17 15:04:54 -05001717
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001718 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001719 if (fcport->rport &&
1720 starget->id == fcport->rport->scsi_target_id) {
bdf79622005-04-17 15:06:53 -05001721 port_id = fcport->d_id.b.domain << 16 |
1722 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
1723 break;
1724 }
1725 }
1726
8482e1182005-04-17 15:04:54 -05001727 fc_starget_port_id(starget) = port_id;
1728}
1729
1730static void
8482e1182005-04-17 15:04:54 -05001731qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
1732{
8482e1182005-04-17 15:04:54 -05001733 if (timeout)
Andrew Vasquez85821c92008-07-10 16:55:48 -07001734 rport->dev_loss_tmo = timeout;
8482e1182005-04-17 15:04:54 -05001735 else
Andrew Vasquez85821c92008-07-10 16:55:48 -07001736 rport->dev_loss_tmo = 1;
8482e1182005-04-17 15:04:54 -05001737}
1738
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001739static void
1740qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport)
1741{
1742 struct Scsi_Host *host = rport_to_shost(rport);
1743 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08001744 unsigned long flags;
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001745
Seokmann Ju3c01b4f2009-01-22 09:45:38 -08001746 if (!fcport)
1747 return;
1748
Giridhar Malavali38170fa2010-10-15 11:27:49 -07001749 /* Now that the rport has been deleted, set the fcport state to
1750 FCS_DEVICE_DEAD */
Chad Dupuisec426e12011-03-30 11:46:32 -07001751 qla2x00_set_fcport_state(fcport, FCS_DEVICE_DEAD);
Giridhar Malavali38170fa2010-10-15 11:27:49 -07001752
Giridhar Malavali3fadb80b2010-09-03 15:20:55 -07001753 /*
1754 * Transport has effectively 'deleted' the rport, clear
1755 * all local references.
1756 */
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08001757 spin_lock_irqsave(host->host_lock, flags);
Giridhar Malavali3fadb80b2010-09-03 15:20:55 -07001758 fcport->rport = fcport->drport = NULL;
1759 *((fc_port_t **)rport->dd_data) = NULL;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08001760 spin_unlock_irqrestore(host->host_lock, flags);
Giridhar Malavali3fadb80b2010-09-03 15:20:55 -07001761
Andrew Vasquez85880802009-12-15 21:29:46 -08001762 if (test_bit(ABORT_ISP_ACTIVE, &fcport->vha->dpc_flags))
1763 return;
1764
1765 if (unlikely(pci_channel_offline(fcport->vha->hw->pdev))) {
Seokmann Jub9b12f72009-03-24 09:08:18 -07001766 qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16);
Andrew Vasquez85880802009-12-15 21:29:46 -08001767 return;
1768 }
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001769}
1770
1771static void
1772qla2x00_terminate_rport_io(struct fc_rport *rport)
1773{
1774 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1775
Seokmann Ju3c01b4f2009-01-22 09:45:38 -08001776 if (!fcport)
1777 return;
1778
Sawan Chandaka4655372016-07-06 11:14:32 -04001779 if (test_bit(UNLOADING, &fcport->vha->dpc_flags))
1780 return;
1781
Andrew Vasquez85880802009-12-15 21:29:46 -08001782 if (test_bit(ABORT_ISP_ACTIVE, &fcport->vha->dpc_flags))
1783 return;
1784
Seokmann Jub9b12f72009-03-24 09:08:18 -07001785 if (unlikely(pci_channel_offline(fcport->vha->hw->pdev))) {
1786 qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16);
1787 return;
1788 }
Andrew Vasquez6390d1f2008-08-13 21:36:56 -07001789 /*
1790 * At this point all fcport's software-states are cleared. Perform any
1791 * final cleanup of firmware resources (PCBs and XCBs).
1792 */
Giridhar Malavali220d36b2012-11-21 02:39:55 -05001793 if (fcport->loop_id != FC_NO_LOOP_ID) {
Andrew Vasquezaf11f642012-02-09 11:15:43 -08001794 if (IS_FWI2_CAPABLE(fcport->vha->hw))
1795 fcport->vha->hw->isp_ops->fabric_logout(fcport->vha,
1796 fcport->loop_id, fcport->d_id.b.domain,
1797 fcport->d_id.b.area, fcport->d_id.b.al_pa);
1798 else
1799 qla2x00_port_logout(fcport->vha, fcport);
1800 }
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001801}
1802
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001803static int
1804qla2x00_issue_lip(struct Scsi_Host *shost)
1805{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001806 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001807
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001808 if (IS_QLAFX00(vha->hw))
1809 return 0;
1810
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001811 qla2x00_loop_reset(vha);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001812 return 0;
1813}
1814
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001815static struct fc_host_statistics *
1816qla2x00_get_fc_host_stats(struct Scsi_Host *shost)
1817{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001818 scsi_qla_host_t *vha = shost_priv(shost);
1819 struct qla_hw_data *ha = vha->hw;
1820 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001821 int rval;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001822 struct link_statistics *stats;
1823 dma_addr_t stats_dma;
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001824 struct fc_host_statistics *p = &vha->fc_host_stat;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001825
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001826 memset(p, -1, sizeof(*p));
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001827
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04001828 if (IS_QLAFX00(vha->hw))
1829 goto done;
1830
Andrew Vasquez85880802009-12-15 21:29:46 -08001831 if (test_bit(UNLOADING, &vha->dpc_flags))
1832 goto done;
1833
1834 if (unlikely(pci_channel_offline(ha->pdev)))
1835 goto done;
1836
Chad Dupuis8fbfe2d2013-06-25 11:27:19 -04001837 if (qla2x00_reset_active(vha))
1838 goto done;
1839
Harish Zunjarrao243de672016-01-27 12:03:33 -05001840 stats = dma_alloc_coherent(&ha->pdev->dev,
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001841 sizeof(*stats), &stats_dma, GFP_KERNEL);
1842 if (!stats) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001843 ql_log(ql_log_warn, vha, 0x707d,
1844 "Failed to allocate memory for stats.\n");
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001845 goto done;
1846 }
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001847 memset(stats, 0, sizeof(*stats));
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001848
1849 rval = QLA_FUNCTION_FAILED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001850 if (IS_FWI2_CAPABLE(ha)) {
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001851 rval = qla24xx_get_isp_stats(base_vha, stats, stats_dma, 0);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001852 } else if (atomic_read(&base_vha->loop_state) == LOOP_READY &&
Chad Dupuis8fbfe2d2013-06-25 11:27:19 -04001853 !ha->dpc_active) {
Andrew Vasquez178779a2007-01-29 10:22:25 -08001854 /* Must be in a 'READY' state for statistics retrieval. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001855 rval = qla2x00_get_link_status(base_vha, base_vha->loop_id,
1856 stats, stats_dma);
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001857 }
Andrew Vasquez178779a2007-01-29 10:22:25 -08001858
1859 if (rval != QLA_SUCCESS)
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001860 goto done_free;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001861
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001862 p->link_failure_count = stats->link_fail_cnt;
1863 p->loss_of_sync_count = stats->loss_sync_cnt;
1864 p->loss_of_signal_count = stats->loss_sig_cnt;
1865 p->prim_seq_protocol_err_count = stats->prim_seq_err_cnt;
1866 p->invalid_tx_word_count = stats->inval_xmit_word_cnt;
1867 p->invalid_crc_count = stats->inval_crc_cnt;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001868 if (IS_FWI2_CAPABLE(ha)) {
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001869 p->lip_count = stats->lip_cnt;
1870 p->tx_frames = stats->tx_frames;
1871 p->rx_frames = stats->rx_frames;
1872 p->dumped_frames = stats->discarded_frames;
1873 p->nos_count = stats->nos_rcvd;
1874 p->error_frames =
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001875 stats->dropped_frames + stats->discarded_frames;
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001876 p->rx_words = vha->qla_stats.input_bytes;
1877 p->tx_words = vha->qla_stats.output_bytes;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001878 }
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001879 p->fcp_control_requests = vha->qla_stats.control_requests;
1880 p->fcp_input_requests = vha->qla_stats.input_requests;
1881 p->fcp_output_requests = vha->qla_stats.output_requests;
1882 p->fcp_input_megabytes = vha->qla_stats.input_bytes >> 20;
1883 p->fcp_output_megabytes = vha->qla_stats.output_bytes >> 20;
1884 p->seconds_since_last_reset =
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001885 get_jiffies_64() - vha->qla_stats.jiffies_at_last_reset;
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001886 do_div(p->seconds_since_last_reset, HZ);
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001887
1888done_free:
Harish Zunjarrao243de672016-01-27 12:03:33 -05001889 dma_free_coherent(&ha->pdev->dev, sizeof(struct link_statistics),
1890 stats, stats_dma);
Andrew Vasquez178779a2007-01-29 10:22:25 -08001891done:
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001892 return p;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001893}
1894
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001895static void
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001896qla2x00_reset_host_stats(struct Scsi_Host *shost)
1897{
1898 scsi_qla_host_t *vha = shost_priv(shost);
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001899 struct qla_hw_data *ha = vha->hw;
1900 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
1901 struct link_statistics *stats;
1902 dma_addr_t stats_dma;
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001903
Joe Carnucciofc90ada2016-07-06 11:14:23 -04001904 memset(&vha->qla_stats, 0, sizeof(vha->qla_stats));
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001905 memset(&vha->fc_host_stat, 0, sizeof(vha->fc_host_stat));
1906
1907 vha->qla_stats.jiffies_at_last_reset = get_jiffies_64();
Joe Carnuccioc6dc9902016-07-06 11:14:24 -04001908
1909 if (IS_FWI2_CAPABLE(ha)) {
1910 stats = dma_alloc_coherent(&ha->pdev->dev,
1911 sizeof(*stats), &stats_dma, GFP_KERNEL);
1912 if (!stats) {
1913 ql_log(ql_log_warn, vha, 0x70d7,
1914 "Failed to allocate memory for stats.\n");
1915 return;
1916 }
1917
1918 /* reset firmware statistics */
1919 qla24xx_get_isp_stats(base_vha, stats, stats_dma, BIT_0);
1920
1921 dma_free_coherent(&ha->pdev->dev, sizeof(*stats),
1922 stats, stats_dma);
1923 }
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04001924}
1925
1926static void
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001927qla2x00_get_host_symbolic_name(struct Scsi_Host *shost)
1928{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001929 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001930
Himanshu Madhanidf57cab2014-09-25 05:16:46 -04001931 qla2x00_get_sym_node_name(vha, fc_host_symbolic_name(shost),
1932 sizeof(fc_host_symbolic_name(shost)));
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001933}
1934
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001935static void
1936qla2x00_set_host_system_hostname(struct Scsi_Host *shost)
1937{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001938 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001939
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001940 set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags);
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001941}
1942
Andrew Vasquez90991c82006-10-02 12:00:46 -07001943static void
1944qla2x00_get_host_fabric_name(struct Scsi_Host *shost)
1945{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001946 scsi_qla_host_t *vha = shost_priv(shost);
Giridhar Malavali35e0cbd2010-09-03 15:20:51 -07001947 uint8_t node_name[WWN_SIZE] = { 0xFF, 0xFF, 0xFF, 0xFF, \
1948 0xFF, 0xFF, 0xFF, 0xFF};
1949 u64 fabric_name = wwn_to_u64(node_name);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001950
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001951 if (vha->device_flags & SWITCH_FOUND)
Giridhar Malavali35e0cbd2010-09-03 15:20:51 -07001952 fabric_name = wwn_to_u64(vha->fabric_node_name);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001953
Giridhar Malavali35e0cbd2010-09-03 15:20:51 -07001954 fc_host_fabric_name(shost) = fabric_name;
Andrew Vasquez90991c82006-10-02 12:00:46 -07001955}
1956
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001957static void
1958qla2x00_get_host_port_state(struct Scsi_Host *shost)
1959{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001960 scsi_qla_host_t *vha = shost_priv(shost);
1961 struct scsi_qla_host *base_vha = pci_get_drvdata(vha->hw->pdev);
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001962
Saurav Kashyap49e85c22011-11-18 09:02:20 -08001963 if (!base_vha->flags.online) {
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001964 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
Saurav Kashyap49e85c22011-11-18 09:02:20 -08001965 return;
1966 }
1967
1968 switch (atomic_read(&base_vha->loop_state)) {
1969 case LOOP_UPDATE:
1970 fc_host_port_state(shost) = FC_PORTSTATE_DIAGNOSTICS;
1971 break;
1972 case LOOP_DOWN:
1973 if (test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags))
1974 fc_host_port_state(shost) = FC_PORTSTATE_DIAGNOSTICS;
1975 else
1976 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
1977 break;
1978 case LOOP_DEAD:
1979 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
1980 break;
1981 case LOOP_READY:
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001982 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
Saurav Kashyap49e85c22011-11-18 09:02:20 -08001983 break;
1984 default:
1985 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1986 break;
1987 }
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001988}
1989
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001990static int
1991qla24xx_vport_create(struct fc_vport *fc_vport, bool disable)
1992{
1993 int ret = 0;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001994 uint8_t qos = 0;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001995 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
1996 scsi_qla_host_t *vha = NULL;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001997 struct qla_hw_data *ha = base_vha->hw;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001998 int cnt;
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07001999 struct req_que *req = ha->req_q_map[0];
Michael Hernandezd7459522016-12-12 14:40:07 -08002000 struct qla_qpair *qpair;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002001
2002 ret = qla24xx_vport_create_req_sanity_check(fc_vport);
2003 if (ret) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002004 ql_log(ql_log_warn, vha, 0x707e,
2005 "Vport sanity check failed, status %x\n", ret);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002006 return (ret);
2007 }
2008
2009 vha = qla24xx_create_vhost(fc_vport);
2010 if (vha == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002011 ql_log(ql_log_warn, vha, 0x707f, "Vport create host failed.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002012 return FC_VPORT_FAILED;
2013 }
2014 if (disable) {
2015 atomic_set(&vha->vp_state, VP_OFFLINE);
2016 fc_vport_set_state(fc_vport, FC_VPORT_DISABLED);
2017 } else
2018 atomic_set(&vha->vp_state, VP_FAILED);
2019
2020 /* ready to create vport */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002021 ql_log(ql_log_info, vha, 0x7080,
2022 "VP entry id %d assigned.\n", vha->vp_idx);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002023
2024 /* initialized vport states */
2025 atomic_set(&vha->loop_state, LOOP_DOWN);
2026 vha->vp_err_state= VP_ERR_PORTDWN;
2027 vha->vp_prev_err_state= VP_ERR_UNKWN;
2028 /* Check if physical ha port is Up */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002029 if (atomic_read(&base_vha->loop_state) == LOOP_DOWN ||
2030 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002031 /* Don't retry or attempt login of this virtual port */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002032 ql_dbg(ql_dbg_user, vha, 0x7081,
2033 "Vport loop state is not UP.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002034 atomic_set(&vha->loop_state, LOOP_DEAD);
2035 if (!disable)
2036 fc_vport_set_state(fc_vport, FC_VPORT_LINKDOWN);
2037 }
2038
Arun Easie02587d2011-08-16 11:29:23 -07002039 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) {
Arun Easibad75002010-05-04 15:01:30 -07002040 if (ha->fw_attributes & BIT_4) {
Arun Easi9e522cd2012-08-22 14:21:31 -04002041 int prot = 0, guard;
Arun Easibad75002010-05-04 15:01:30 -07002042 vha->flags.difdix_supported = 1;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002043 ql_dbg(ql_dbg_user, vha, 0x7082,
2044 "Registered for DIF/DIX type 1 and 3 protection.\n");
Arun Easi8cb20492011-08-16 11:29:22 -07002045 if (ql2xenabledif == 1)
2046 prot = SHOST_DIX_TYPE0_PROTECTION;
Arun Easibad75002010-05-04 15:01:30 -07002047 scsi_host_set_prot(vha->host,
Arun Easi8cb20492011-08-16 11:29:22 -07002048 prot | SHOST_DIF_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05002049 | SHOST_DIF_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07002050 | SHOST_DIF_TYPE3_PROTECTION
2051 | SHOST_DIX_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05002052 | SHOST_DIX_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07002053 | SHOST_DIX_TYPE3_PROTECTION);
Arun Easi9e522cd2012-08-22 14:21:31 -04002054
2055 guard = SHOST_DIX_GUARD_CRC;
2056
2057 if (IS_PI_IPGUARD_CAPABLE(ha) &&
2058 (ql2xenabledif > 1 || IS_PI_DIFB_DIX0_CAPABLE(ha)))
2059 guard |= SHOST_DIX_GUARD_IP;
2060
2061 scsi_host_set_guard(vha->host, guard);
Arun Easibad75002010-05-04 15:01:30 -07002062 } else
2063 vha->flags.difdix_supported = 0;
2064 }
2065
James Bottomleyd139b9b2009-11-05 13:33:12 -06002066 if (scsi_add_host_with_dma(vha->host, &fc_vport->dev,
2067 &ha->pdev->dev)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002068 ql_dbg(ql_dbg_user, vha, 0x7083,
2069 "scsi_add_host failure for VP[%d].\n", vha->vp_idx);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002070 goto vport_create_failed_2;
2071 }
2072
2073 /* initialize attributes */
Mike Christied2b5f102010-09-15 16:52:30 -05002074 fc_host_dev_loss_tmo(vha->host) = ha->port_down_retry_count;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002075 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
2076 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
2077 fc_host_supported_classes(vha->host) =
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002078 fc_host_supported_classes(base_vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002079 fc_host_supported_speeds(vha->host) =
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002080 fc_host_supported_speeds(base_vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002081
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002082 qlt_vport_create(vha, ha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002083 qla24xx_vport_disable(fc_vport, disable);
2084
Michael Hernandezd7459522016-12-12 14:40:07 -08002085 if (!ql2xmqsupport || !ha->npiv_info)
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002086 goto vport_queue;
Michael Hernandezd7459522016-12-12 14:40:07 -08002087
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002088 /* Create a request queue in QoS mode for the vport */
Anirban Chakraborty40859ae2009-06-03 09:55:16 -07002089 for (cnt = 0; cnt < ha->nvram_npiv_size; cnt++) {
2090 if (memcmp(ha->npiv_info[cnt].port_name, vha->port_name, 8) == 0
2091 && memcmp(ha->npiv_info[cnt].node_name, vha->node_name,
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002092 8) == 0) {
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002093 qos = ha->npiv_info[cnt].q_qos;
2094 break;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002095 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002096 }
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002097
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002098 if (qos) {
Michael Hernandezd7459522016-12-12 14:40:07 -08002099 qpair = qla2xxx_create_qpair(vha, qos, vha->vp_idx);
2100 if (!qpair)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002101 ql_log(ql_log_warn, vha, 0x7084,
Michael Hernandezd7459522016-12-12 14:40:07 -08002102 "Can't create qpair for VP[%d]\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002103 vha->vp_idx);
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002104 else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002105 ql_dbg(ql_dbg_multiq, vha, 0xc001,
Michael Hernandezd7459522016-12-12 14:40:07 -08002106 "Queue pair: %d Qos: %d) created for VP[%d]\n",
2107 qpair->id, qos, vha->vp_idx);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002108 ql_dbg(ql_dbg_user, vha, 0x7085,
Michael Hernandezd7459522016-12-12 14:40:07 -08002109 "Queue Pair: %d Qos: %d) created for VP[%d]\n",
2110 qpair->id, qos, vha->vp_idx);
2111 req = qpair->req;
2112 vha->qpair = qpair;
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002113 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002114 }
2115
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002116vport_queue:
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07002117 vha->req = req;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002118 return 0;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07002119
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002120vport_create_failed_2:
2121 qla24xx_disable_vp(vha);
2122 qla24xx_deallocate_vp_id(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002123 scsi_host_put(vha->host);
2124 return FC_VPORT_FAILED;
2125}
2126
Adrian Bunka824ebb2008-01-17 09:02:15 -08002127static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002128qla24xx_vport_delete(struct fc_vport *fc_vport)
2129{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002130 scsi_qla_host_t *vha = fc_vport->dd_data;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08002131 struct qla_hw_data *ha = vha->hw;
2132 uint16_t id = vha->vp_idx;
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07002133
2134 while (test_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags) ||
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002135 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags))
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07002136 msleep(1000);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002137
2138 qla24xx_disable_vp(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002139
Arun Easifeafb7b2010-09-03 14:57:00 -07002140 vha->flags.delete_progress = 1;
2141
Saurav Kashyap0e8cd712014-01-14 20:40:38 -08002142 qlt_remove_target(ha, vha);
2143
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002144 fc_remove_host(vha->host);
2145
2146 scsi_remove_host(vha->host);
2147
Arun Easi9f406822011-05-10 11:18:17 -07002148 /* Allow timer to run to drain queued items, when removing vp */
2149 qla24xx_deallocate_vp_id(vha);
2150
Arun Easifeafb7b2010-09-03 14:57:00 -07002151 if (vha->timer_active) {
2152 qla2x00_vp_stop_timer(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002153 ql_dbg(ql_dbg_user, vha, 0x7086,
2154 "Timer for the VP[%d] has stopped\n", vha->vp_idx);
Arun Easifeafb7b2010-09-03 14:57:00 -07002155 }
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002156
Arun Easifeafb7b2010-09-03 14:57:00 -07002157 qla2x00_free_fcports(vha);
2158
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07002159 mutex_lock(&ha->vport_lock);
2160 ha->cur_vport_count--;
2161 clear_bit(vha->vp_idx, ha->vp_idx_map);
2162 mutex_unlock(&ha->vport_lock);
2163
Quinn Tran726b8542017-01-19 22:28:00 -08002164 dma_free_coherent(&ha->pdev->dev, vha->gnl.size, vha->gnl.l,
2165 vha->gnl.ldma);
2166
Joe Carnuccioc4a9b532017-03-15 09:48:43 -07002167 if (vha->qpair && vha->qpair->vp_idx == vha->vp_idx) {
Michael Hernandezd7459522016-12-12 14:40:07 -08002168 if (qla2xxx_delete_qpair(vha, vha->qpair) != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002169 ql_log(ql_log_warn, vha, 0x7087,
Michael Hernandezd7459522016-12-12 14:40:07 -08002170 "Queue Pair delete failed.\n");
Anirban Chakrabortycf5a1632009-02-08 20:50:13 -08002171 }
2172
Saurav Kashyap7c3df132011-07-14 12:00:13 -07002173 ql_log(ql_log_info, vha, 0x7088, "VP[%d] deleted.\n", id);
Chad Dupuiscfb09192011-11-18 09:03:07 -08002174 scsi_host_put(vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002175 return 0;
2176}
2177
Adrian Bunka824ebb2008-01-17 09:02:15 -08002178static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002179qla24xx_vport_disable(struct fc_vport *fc_vport, bool disable)
2180{
2181 scsi_qla_host_t *vha = fc_vport->dd_data;
2182
2183 if (disable)
2184 qla24xx_disable_vp(vha);
2185 else
2186 qla24xx_enable_vp(vha);
2187
2188 return 0;
2189}
2190
Andrew Vasquez1c97a122005-04-21 16:13:36 -04002191struct fc_function_template qla2xxx_transport_functions = {
8482e1182005-04-17 15:04:54 -05002192
2193 .show_host_node_name = 1,
2194 .show_host_port_name = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002195 .show_host_supported_classes = 1,
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002196 .show_host_supported_speeds = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002197
8482e1182005-04-17 15:04:54 -05002198 .get_host_port_id = qla2x00_get_host_port_id,
2199 .show_host_port_id = 1,
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08002200 .get_host_speed = qla2x00_get_host_speed,
2201 .show_host_speed = 1,
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08002202 .get_host_port_type = qla2x00_get_host_port_type,
2203 .show_host_port_type = 1,
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07002204 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
2205 .show_host_symbolic_name = 1,
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07002206 .set_host_system_hostname = qla2x00_set_host_system_hostname,
2207 .show_host_system_hostname = 1,
Andrew Vasquez90991c82006-10-02 12:00:46 -07002208 .get_host_fabric_name = qla2x00_get_host_fabric_name,
2209 .show_host_fabric_name = 1,
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07002210 .get_host_port_state = qla2x00_get_host_port_state,
2211 .show_host_port_state = 1,
8482e1182005-04-17 15:04:54 -05002212
bdf79622005-04-17 15:06:53 -05002213 .dd_fcrport_size = sizeof(struct fc_port *),
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07002214 .show_rport_supported_classes = 1,
8482e1182005-04-17 15:04:54 -05002215
2216 .get_starget_node_name = qla2x00_get_starget_node_name,
2217 .show_starget_node_name = 1,
2218 .get_starget_port_name = qla2x00_get_starget_port_name,
2219 .show_starget_port_name = 1,
2220 .get_starget_port_id = qla2x00_get_starget_port_id,
2221 .show_starget_port_id = 1,
2222
8482e1182005-04-17 15:04:54 -05002223 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
2224 .show_rport_dev_loss_tmo = 1,
2225
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07002226 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07002227 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
2228 .terminate_rport_io = qla2x00_terminate_rport_io,
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08002229 .get_fc_host_stats = qla2x00_get_fc_host_stats,
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04002230 .reset_fc_host_stats = qla2x00_reset_host_stats,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002231
2232 .vport_create = qla24xx_vport_create,
2233 .vport_disable = qla24xx_vport_disable,
2234 .vport_delete = qla24xx_vport_delete,
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002235 .bsg_request = qla24xx_bsg_request,
2236 .bsg_timeout = qla24xx_bsg_timeout,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002237};
2238
2239struct fc_function_template qla2xxx_transport_vport_functions = {
2240
2241 .show_host_node_name = 1,
2242 .show_host_port_name = 1,
2243 .show_host_supported_classes = 1,
2244
2245 .get_host_port_id = qla2x00_get_host_port_id,
2246 .show_host_port_id = 1,
2247 .get_host_speed = qla2x00_get_host_speed,
2248 .show_host_speed = 1,
2249 .get_host_port_type = qla2x00_get_host_port_type,
2250 .show_host_port_type = 1,
2251 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
2252 .show_host_symbolic_name = 1,
2253 .set_host_system_hostname = qla2x00_set_host_system_hostname,
2254 .show_host_system_hostname = 1,
2255 .get_host_fabric_name = qla2x00_get_host_fabric_name,
2256 .show_host_fabric_name = 1,
2257 .get_host_port_state = qla2x00_get_host_port_state,
2258 .show_host_port_state = 1,
2259
2260 .dd_fcrport_size = sizeof(struct fc_port *),
2261 .show_rport_supported_classes = 1,
2262
2263 .get_starget_node_name = qla2x00_get_starget_node_name,
2264 .show_starget_node_name = 1,
2265 .get_starget_port_name = qla2x00_get_starget_port_name,
2266 .show_starget_port_name = 1,
2267 .get_starget_port_id = qla2x00_get_starget_port_id,
2268 .show_starget_port_id = 1,
2269
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002270 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
2271 .show_rport_dev_loss_tmo = 1,
2272
2273 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07002274 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
2275 .terminate_rport_io = qla2x00_terminate_rport_io,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002276 .get_fc_host_stats = qla2x00_get_fc_host_stats,
Joe Carnucciofabbb8d2013-08-27 01:37:40 -04002277 .reset_fc_host_stats = qla2x00_reset_host_stats,
2278
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002279 .bsg_request = qla24xx_bsg_request,
2280 .bsg_timeout = qla24xx_bsg_timeout,
8482e1182005-04-17 15:04:54 -05002281};
2282
8482e1182005-04-17 15:04:54 -05002283void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002284qla2x00_init_host_attr(scsi_qla_host_t *vha)
8482e1182005-04-17 15:04:54 -05002285{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002286 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002287 u32 speed = FC_PORTSPEED_UNKNOWN;
2288
Mike Christied2b5f102010-09-15 16:52:30 -05002289 fc_host_dev_loss_tmo(vha->host) = ha->port_down_retry_count;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002290 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
2291 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002292 fc_host_supported_classes(vha->host) = ha->tgt.enable_class_2 ?
2293 (FC_COS_CLASS2|FC_COS_CLASS3) : FC_COS_CLASS3;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002294 fc_host_max_npiv_vports(vha->host) = ha->max_npiv_vports;
2295 fc_host_npiv_vports_inuse(vha->host) = ha->cur_vport_count;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002296
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002297 if (IS_CNA_CAPABLE(ha))
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002298 speed = FC_PORTSPEED_10GBIT;
Giridhar Malavali6f606d22012-05-15 14:34:18 -04002299 else if (IS_QLA2031(ha))
2300 speed = FC_PORTSPEED_16GBIT | FC_PORTSPEED_8GBIT |
2301 FC_PORTSPEED_4GBIT;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002302 else if (IS_QLA25XX(ha))
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002303 speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT |
2304 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002305 else if (IS_QLA24XX_TYPE(ha))
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002306 speed = FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
2307 FC_PORTSPEED_1GBIT;
2308 else if (IS_QLA23XX(ha))
2309 speed = FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
Giridhar Malavali8ae6d9c2013-03-28 08:21:23 -04002310 else if (IS_QLAFX00(ha))
2311 speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT |
2312 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
Chad Dupuisf73cb692014-02-26 04:15:06 -05002313 else if (IS_QLA27XX(ha))
2314 speed = FC_PORTSPEED_32GBIT | FC_PORTSPEED_16GBIT |
2315 FC_PORTSPEED_8GBIT;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002316 else
2317 speed = FC_PORTSPEED_1GBIT;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002318 fc_host_supported_speeds(vha->host) = speed;
8482e1182005-04-17 15:04:54 -05002319}