blob: f76424ef05b094ac42f012cf6191367caaa41c6a [file] [log] [blame]
8482e1182005-04-17 15:04:54 -05001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Andrew Vasquez07e264b2011-03-30 11:46:23 -07003 * Copyright (c) 2003-2011 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
29 if (ha->fw_dump_reading == 0)
30 return 0;
8482e1182005-04-17 15:04:54 -050031
Giridhar Malavali08de2842011-08-16 11:31:44 -070032 if (IS_QLA82XX(ha)) {
33 if (off < ha->md_template_size) {
34 rval = memory_read_from_buffer(buf, count,
35 &off, ha->md_tmplt_hdr, ha->md_template_size);
36 return rval;
37 }
38 off -= ha->md_template_size;
39 rval = memory_read_from_buffer(buf, count,
40 &off, ha->md_dump, ha->md_dump_size);
41 return rval;
42 } else
43 return memory_read_from_buffer(buf, count, &off, ha->fw_dump,
Akinobu Mitab3dc9082008-07-24 08:31:47 -070044 ha->fw_dump_len);
8482e1182005-04-17 15:04:54 -050045}
46
47static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -070048qla2x00_sysfs_write_fw_dump(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +080049 struct bin_attribute *bin_attr,
50 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -050051{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080052 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -050053 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080054 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -050055 int reading;
8482e1182005-04-17 15:04:54 -050056
57 if (off != 0)
58 return (0);
59
60 reading = simple_strtol(buf, NULL, 10);
61 switch (reading) {
62 case 0:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070063 if (!ha->fw_dump_reading)
64 break;
8482e1182005-04-17 15:04:54 -050065
Saurav Kashyap7c3df132011-07-14 12:00:13 -070066 ql_log(ql_log_info, vha, 0x705d,
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080067 "Firmware dump cleared on (%ld).\n", vha->host_no);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070068
Giridhar Malavali08de2842011-08-16 11:31:44 -070069 if (IS_QLA82XX(vha->hw)) {
70 qla82xx_md_free(vha);
71 qla82xx_md_prep(vha);
72 }
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070073 ha->fw_dump_reading = 0;
74 ha->fw_dumped = 0;
8482e1182005-04-17 15:04:54 -050075 break;
76 case 1:
Andrew Vasquezd4e3e042006-05-17 15:09:50 -070077 if (ha->fw_dumped && !ha->fw_dump_reading) {
8482e1182005-04-17 15:04:54 -050078 ha->fw_dump_reading = 1;
79
Saurav Kashyap7c3df132011-07-14 12:00:13 -070080 ql_log(ql_log_info, vha, 0x705e,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070081 "Raw firmware dump ready for read on (%ld).\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080082 vha->host_no);
8482e1182005-04-17 15:04:54 -050083 }
84 break;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070085 case 2:
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080086 qla2x00_alloc_fw_dump(vha);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070087 break;
Andrew Vasquez68af0812008-05-12 22:21:13 -070088 case 3:
Giridhar Malavali08de2842011-08-16 11:31:44 -070089 if (IS_QLA82XX(ha)) {
90 qla82xx_idc_lock(ha);
91 qla82xx_set_reset_owner(vha);
92 qla82xx_idc_unlock(ha);
93 } else
94 qla2x00_system_error(vha);
95 break;
96 case 4:
97 if (IS_QLA82XX(ha)) {
98 if (ha->md_tmplt_hdr)
99 ql_dbg(ql_dbg_user, vha, 0x705b,
100 "MiniDump supported with this firmware.\n");
101 else
102 ql_dbg(ql_dbg_user, vha, 0x709d,
103 "MiniDump not supported with this firmware.\n");
104 }
105 break;
106 case 5:
107 if (IS_QLA82XX(ha))
108 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Andrew Vasquez68af0812008-05-12 22:21:13 -0700109 break;
8482e1182005-04-17 15:04:54 -0500110 }
Joe Carnuccio71dfe9e2011-11-18 09:03:13 -0800111 return count;
8482e1182005-04-17 15:04:54 -0500112}
113
114static struct bin_attribute sysfs_fw_dump_attr = {
115 .attr = {
116 .name = "fw_dump",
117 .mode = S_IRUSR | S_IWUSR,
8482e1182005-04-17 15:04:54 -0500118 },
119 .size = 0,
120 .read = qla2x00_sysfs_read_fw_dump,
121 .write = qla2x00_sysfs_write_fw_dump,
122};
123
124static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700125qla2x00_sysfs_read_nvram(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800126 struct bin_attribute *bin_attr,
127 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -0500128{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800129 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -0500130 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800131 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -0500132
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700133 if (!capable(CAP_SYS_ADMIN))
8482e1182005-04-17 15:04:54 -0500134 return 0;
135
Andrew Vasquez6749ce32009-03-24 09:08:17 -0700136 if (IS_NOCACHE_VPD_TYPE(ha))
Andrew Vasquez8f979752009-04-06 22:33:43 -0700137 ha->isp_ops->read_optrom(vha, ha->nvram, ha->flt_region_nvram << 2,
Andrew Vasquez6749ce32009-03-24 09:08:17 -0700138 ha->nvram_size);
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700139 return memory_read_from_buffer(buf, count, &off, ha->nvram,
140 ha->nvram_size);
8482e1182005-04-17 15:04:54 -0500141}
142
143static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700144qla2x00_sysfs_write_nvram(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800145 struct bin_attribute *bin_attr,
146 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -0500147{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800148 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -0500149 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800150 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -0500151 uint16_t cnt;
8482e1182005-04-17 15:04:54 -0500152
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700153 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size ||
154 !ha->isp_ops->write_nvram)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700155 return -EINVAL;
8482e1182005-04-17 15:04:54 -0500156
157 /* Checksum NVRAM. */
Andrew Vasqueze4289242007-07-19 15:05:56 -0700158 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez459c5372005-07-06 10:31:07 -0700159 uint32_t *iter;
160 uint32_t chksum;
161
162 iter = (uint32_t *)buf;
163 chksum = 0;
164 for (cnt = 0; cnt < ((count >> 2) - 1); cnt++)
165 chksum += le32_to_cpu(*iter++);
166 chksum = ~chksum + 1;
167 *iter = cpu_to_le32(chksum);
168 } else {
169 uint8_t *iter;
170 uint8_t chksum;
171
172 iter = (uint8_t *)buf;
173 chksum = 0;
174 for (cnt = 0; cnt < count - 1; cnt++)
175 chksum += *iter++;
176 chksum = ~chksum + 1;
177 *iter = chksum;
178 }
8482e1182005-04-17 15:04:54 -0500179
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700180 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700181 ql_log(ql_log_warn, vha, 0x705f,
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700182 "HBA not online, failing NVRAM update.\n");
183 return -EAGAIN;
184 }
185
8482e1182005-04-17 15:04:54 -0500186 /* Write NVRAM. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800187 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->nvram_base, count);
188 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->nvram, ha->nvram_base,
Seokmann Ju281afe12007-07-26 13:43:34 -0700189 count);
8482e1182005-04-17 15:04:54 -0500190
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700191 ql_dbg(ql_dbg_user, vha, 0x7060,
192 "Setting ISP_ABORT_NEEDED\n");
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700193 /* NVRAM settings take effect immediately. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800194 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700195 qla2xxx_wake_dpc(vha);
196 qla2x00_wait_for_chip_reset(vha);
Andrew Vasquez26b8d3482007-01-29 10:22:28 -0800197
Joe Carnucciob668ae32011-08-16 11:31:53 -0700198 return count;
8482e1182005-04-17 15:04:54 -0500199}
200
201static struct bin_attribute sysfs_nvram_attr = {
202 .attr = {
203 .name = "nvram",
204 .mode = S_IRUSR | S_IWUSR,
8482e1182005-04-17 15:04:54 -0500205 },
andrew.vasquez@qlogic.com1b3f6362006-01-31 16:05:12 -0800206 .size = 512,
8482e1182005-04-17 15:04:54 -0500207 .read = qla2x00_sysfs_read_nvram,
208 .write = qla2x00_sysfs_write_nvram,
209};
210
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800211static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700212qla2x00_sysfs_read_optrom(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800213 struct bin_attribute *bin_attr,
214 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800215{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800216 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800217 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800218 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800219
220 if (ha->optrom_state != QLA_SREADING)
221 return 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800222
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700223 return memory_read_from_buffer(buf, count, &off, ha->optrom_buffer,
224 ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800225}
226
227static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700228qla2x00_sysfs_write_optrom(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800229 struct bin_attribute *bin_attr,
230 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800231{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800232 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800233 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800234 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800235
236 if (ha->optrom_state != QLA_SWRITING)
237 return -EINVAL;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700238 if (off > ha->optrom_region_size)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800239 return -ERANGE;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700240 if (off + count > ha->optrom_region_size)
241 count = ha->optrom_region_size - off;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800242
243 memcpy(&ha->optrom_buffer[off], buf, count);
244
245 return count;
246}
247
248static struct bin_attribute sysfs_optrom_attr = {
249 .attr = {
250 .name = "optrom",
251 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800252 },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700253 .size = 0,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800254 .read = qla2x00_sysfs_read_optrom,
255 .write = qla2x00_sysfs_write_optrom,
256};
257
258static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700259qla2x00_sysfs_write_optrom_ctl(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800260 struct bin_attribute *bin_attr,
261 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800262{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800263 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800264 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800265 struct qla_hw_data *ha = vha->hw;
266
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700267 uint32_t start = 0;
268 uint32_t size = ha->optrom_size;
269 int val, valid;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800270
271 if (off)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700272 return -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800273
Andrew Vasquez85880802009-12-15 21:29:46 -0800274 if (unlikely(pci_channel_offline(ha->pdev)))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700275 return -EAGAIN;
Andrew Vasquez85880802009-12-15 21:29:46 -0800276
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700277 if (sscanf(buf, "%d:%x:%x", &val, &start, &size) < 1)
278 return -EINVAL;
279 if (start > ha->optrom_size)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800280 return -EINVAL;
281
282 switch (val) {
283 case 0:
284 if (ha->optrom_state != QLA_SREADING &&
285 ha->optrom_state != QLA_SWRITING)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700286 return -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800287
288 ha->optrom_state = QLA_SWAITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700289
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700290 ql_dbg(ql_dbg_user, vha, 0x7061,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700291 "Freeing flash region allocation -- 0x%x bytes.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700292 ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700293
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800294 vfree(ha->optrom_buffer);
295 ha->optrom_buffer = NULL;
296 break;
297 case 1:
298 if (ha->optrom_state != QLA_SWAITING)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700299 return -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800300
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700301 ha->optrom_region_start = start;
302 ha->optrom_region_size = start + size > ha->optrom_size ?
303 ha->optrom_size - start : size;
304
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800305 ha->optrom_state = QLA_SREADING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700306 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800307 if (ha->optrom_buffer == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700308 ql_log(ql_log_warn, vha, 0x7062,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800309 "Unable to allocate memory for optrom retrieval "
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700310 "(%x).\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800311
312 ha->optrom_state = QLA_SWAITING;
Joe Carnucciob668ae32011-08-16 11:31:53 -0700313 return -ENOMEM;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800314 }
315
Lalit Chandivade86fbee82010-05-04 15:01:32 -0700316 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700317 ql_log(ql_log_warn, vha, 0x7063,
318 "HBA not online, failing NVRAM update.\n");
Lalit Chandivade86fbee82010-05-04 15:01:32 -0700319 return -EAGAIN;
320 }
321
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700322 ql_dbg(ql_dbg_user, vha, 0x7064,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700323 "Reading flash region -- 0x%x/0x%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700324 ha->optrom_region_start, ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700325
326 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800327 ha->isp_ops->read_optrom(vha, ha->optrom_buffer,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700328 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800329 break;
330 case 2:
331 if (ha->optrom_state != QLA_SWAITING)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700332 return -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800333
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700334 /*
335 * We need to be more restrictive on which FLASH regions are
336 * allowed to be updated via user-space. Regions accessible
337 * via this method include:
338 *
339 * ISP21xx/ISP22xx/ISP23xx type boards:
340 *
341 * 0x000000 -> 0x020000 -- Boot code.
342 *
343 * ISP2322/ISP24xx type boards:
344 *
345 * 0x000000 -> 0x07ffff -- Boot code.
346 * 0x080000 -> 0x0fffff -- Firmware.
347 *
348 * ISP25xx type boards:
349 *
350 * 0x000000 -> 0x07ffff -- Boot code.
351 * 0x080000 -> 0x0fffff -- Firmware.
352 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
353 */
354 valid = 0;
355 if (ha->optrom_size == OPTROM_SIZE_2300 && start == 0)
356 valid = 1;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700357 else if (start == (ha->flt_region_boot * 4) ||
358 start == (ha->flt_region_fw * 4))
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700359 valid = 1;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800360 else if (IS_QLA24XX_TYPE(ha) || IS_QLA25XX(ha)
361 || IS_CNA_CAPABLE(ha) || IS_QLA2031(ha))
Giridhar Malavalia9083012010-04-12 17:59:55 -0700362 valid = 1;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700363 if (!valid) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700364 ql_log(ql_log_warn, vha, 0x7065,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700365 "Invalid start region 0x%x/0x%x.\n", start, size);
366 return -EINVAL;
367 }
368
369 ha->optrom_region_start = start;
370 ha->optrom_region_size = start + size > ha->optrom_size ?
371 ha->optrom_size - start : size;
372
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800373 ha->optrom_state = QLA_SWRITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700374 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800375 if (ha->optrom_buffer == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700376 ql_log(ql_log_warn, vha, 0x7066,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800377 "Unable to allocate memory for optrom update "
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700378 "(%x)\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800379
380 ha->optrom_state = QLA_SWAITING;
Joe Carnucciob668ae32011-08-16 11:31:53 -0700381 return -ENOMEM;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800382 }
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700383
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700384 ql_dbg(ql_dbg_user, vha, 0x7067,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700385 "Staging flash region write -- 0x%x/0x%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700386 ha->optrom_region_start, ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700387
388 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800389 break;
390 case 3:
391 if (ha->optrom_state != QLA_SWRITING)
Joe Carnuccio71dfe9e2011-11-18 09:03:13 -0800392 return -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800393
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700394 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700395 ql_log(ql_log_warn, vha, 0x7068,
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700396 "HBA not online, failing flash update.\n");
397 return -EAGAIN;
398 }
399
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700400 ql_dbg(ql_dbg_user, vha, 0x7069,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700401 "Writing flash region -- 0x%x/0x%x.\n",
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700402 ha->optrom_region_start, ha->optrom_region_size);
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700403
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800404 ha->isp_ops->write_optrom(vha, ha->optrom_buffer,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700405 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800406 break;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700407 default:
Joe Carnucciob668ae32011-08-16 11:31:53 -0700408 return -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800409 }
410 return count;
411}
412
413static struct bin_attribute sysfs_optrom_ctl_attr = {
414 .attr = {
415 .name = "optrom_ctl",
416 .mode = S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800417 },
418 .size = 0,
419 .write = qla2x00_sysfs_write_optrom_ctl,
420};
421
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800422static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700423qla2x00_sysfs_read_vpd(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800424 struct bin_attribute *bin_attr,
425 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800426{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800427 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800428 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800429 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800430
Andrew Vasquez85880802009-12-15 21:29:46 -0800431 if (unlikely(pci_channel_offline(ha->pdev)))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700432 return -EAGAIN;
Andrew Vasquez85880802009-12-15 21:29:46 -0800433
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700434 if (!capable(CAP_SYS_ADMIN))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700435 return -EINVAL;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800436
Andrew Vasquez6749ce32009-03-24 09:08:17 -0700437 if (IS_NOCACHE_VPD_TYPE(ha))
438 ha->isp_ops->read_optrom(vha, ha->vpd, ha->flt_region_vpd << 2,
439 ha->vpd_size);
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700440 return memory_read_from_buffer(buf, count, &off, ha->vpd, ha->vpd_size);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800441}
442
443static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700444qla2x00_sysfs_write_vpd(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800445 struct bin_attribute *bin_attr,
446 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800447{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800448 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800449 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800450 struct qla_hw_data *ha = vha->hw;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700451 uint8_t *tmp_data;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800452
Andrew Vasquez85880802009-12-15 21:29:46 -0800453 if (unlikely(pci_channel_offline(ha->pdev)))
454 return 0;
455
Andrew Vasquez3d79038f2009-03-24 09:08:14 -0700456 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size ||
457 !ha->isp_ops->write_nvram)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800458 return 0;
459
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700460 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700461 ql_log(ql_log_warn, vha, 0x706a,
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700462 "HBA not online, failing VPD update.\n");
463 return -EAGAIN;
464 }
465
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800466 /* Write NVRAM. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800467 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->vpd_base, count);
468 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd, ha->vpd_base, count);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800469
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700470 /* Update flash version information for 4Gb & above. */
471 if (!IS_FWI2_CAPABLE(ha))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700472 return -EINVAL;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700473
474 tmp_data = vmalloc(256);
475 if (!tmp_data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700476 ql_log(ql_log_warn, vha, 0x706b,
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700477 "Unable to allocate memory for VPD information update.\n");
Joe Carnucciob668ae32011-08-16 11:31:53 -0700478 return -ENOMEM;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700479 }
480 ha->isp_ops->get_flash_version(vha, tmp_data);
481 vfree(tmp_data);
Joe Carnucciob668ae32011-08-16 11:31:53 -0700482
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800483 return count;
484}
485
486static struct bin_attribute sysfs_vpd_attr = {
487 .attr = {
488 .name = "vpd",
489 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800490 },
491 .size = 0,
492 .read = qla2x00_sysfs_read_vpd,
493 .write = qla2x00_sysfs_write_vpd,
494};
495
Andrew Vasquez88729e52006-06-23 16:10:50 -0700496static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700497qla2x00_sysfs_read_sfp(struct file *filp, struct kobject *kobj,
Zhang Rui91a69022007-06-09 13:57:22 +0800498 struct bin_attribute *bin_attr,
499 char *buf, loff_t off, size_t count)
Andrew Vasquez88729e52006-06-23 16:10:50 -0700500{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800501 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700502 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800503 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez88729e52006-06-23 16:10:50 -0700504 uint16_t iter, addr, offset;
505 int rval;
506
507 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != SFP_DEV_SIZE * 2)
508 return 0;
509
Andrew Vasqueze8711082008-01-31 12:33:48 -0800510 if (ha->sfp_data)
511 goto do_read;
512
513 ha->sfp_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
514 &ha->sfp_data_dma);
515 if (!ha->sfp_data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700516 ql_log(ql_log_warn, vha, 0x706c,
Andrew Vasqueze8711082008-01-31 12:33:48 -0800517 "Unable to allocate memory for SFP read-data.\n");
518 return 0;
519 }
520
521do_read:
522 memset(ha->sfp_data, 0, SFP_BLOCK_SIZE);
Andrew Vasquez88729e52006-06-23 16:10:50 -0700523 addr = 0xa0;
524 for (iter = 0, offset = 0; iter < (SFP_DEV_SIZE * 2) / SFP_BLOCK_SIZE;
525 iter++, offset += SFP_BLOCK_SIZE) {
526 if (iter == 4) {
527 /* Skip to next device address. */
528 addr = 0xa2;
529 offset = 0;
530 }
531
Joe Carnuccio6766df92011-05-10 11:30:15 -0700532 rval = qla2x00_read_sfp(vha, ha->sfp_data_dma, ha->sfp_data,
533 addr, offset, SFP_BLOCK_SIZE, 0);
Andrew Vasquez88729e52006-06-23 16:10:50 -0700534 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700535 ql_log(ql_log_warn, vha, 0x706d,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700536 "Unable to read SFP data (%x/%x/%x).\n", rval,
537 addr, offset);
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700538
Joe Carnucciob668ae32011-08-16 11:31:53 -0700539 return -EIO;
Andrew Vasquez88729e52006-06-23 16:10:50 -0700540 }
541 memcpy(buf, ha->sfp_data, SFP_BLOCK_SIZE);
542 buf += SFP_BLOCK_SIZE;
543 }
544
545 return count;
546}
547
548static struct bin_attribute sysfs_sfp_attr = {
549 .attr = {
550 .name = "sfp",
551 .mode = S_IRUSR | S_IWUSR,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700552 },
553 .size = SFP_DEV_SIZE * 2,
554 .read = qla2x00_sysfs_read_sfp,
555};
556
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700557static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700558qla2x00_sysfs_write_reset(struct file *filp, struct kobject *kobj,
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700559 struct bin_attribute *bin_attr,
560 char *buf, loff_t off, size_t count)
561{
562 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
563 struct device, kobj)));
564 struct qla_hw_data *ha = vha->hw;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700565 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700566 int type;
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400567 uint32_t idc_control;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700568
569 if (off != 0)
Joe Carnucciob668ae32011-08-16 11:31:53 -0700570 return -EINVAL;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700571
572 type = simple_strtol(buf, NULL, 10);
573 switch (type) {
574 case 0x2025c:
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700575 ql_log(ql_log_info, vha, 0x706e,
576 "Issuing ISP reset.\n");
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700577
578 scsi_block_requests(vha->host);
579 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Giridhar Malavali08de2842011-08-16 11:31:44 -0700580 if (IS_QLA82XX(ha)) {
Giridhar Malavalib6d0d9d2012-05-15 14:34:25 -0400581 ha->flags.isp82xx_no_md_cap = 1;
Giridhar Malavali08de2842011-08-16 11:31:44 -0700582 qla82xx_idc_lock(ha);
583 qla82xx_set_reset_owner(vha);
584 qla82xx_idc_unlock(ha);
585 }
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700586 qla2xxx_wake_dpc(vha);
587 qla2x00_wait_for_chip_reset(vha);
588 scsi_unblock_requests(vha->host);
589 break;
590 case 0x2025d:
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400591 if (!IS_QLA81XX(ha) && !IS_QLA83XX(ha))
Joe Carnucciob668ae32011-08-16 11:31:53 -0700592 return -EPERM;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700593
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700594 ql_log(ql_log_info, vha, 0x706f,
595 "Issuing MPI reset.\n");
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700596
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400597 if (IS_QLA83XX(ha)) {
598 uint32_t idc_control;
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700599
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400600 qla83xx_idc_lock(vha, 0);
601 __qla83xx_get_idc_control(vha, &idc_control);
602 idc_control |= QLA83XX_IDC_GRACEFUL_RESET;
603 __qla83xx_set_idc_control(vha, idc_control);
604 qla83xx_wr_reg(vha, QLA83XX_IDC_DEV_STATE,
605 QLA8XXX_DEV_NEED_RESET);
606 qla83xx_idc_audit(vha, IDC_AUDIT_TIMESTAMP);
607 qla83xx_idc_unlock(vha, 0);
608 break;
609 } else {
610 /* Make sure FC side is not in reset */
611 qla2x00_wait_for_hba_online(vha);
612
613 /* Issue MPI reset */
614 scsi_block_requests(vha->host);
615 if (qla81xx_restart_mpi_firmware(vha) != QLA_SUCCESS)
616 ql_log(ql_log_warn, vha, 0x7070,
617 "MPI reset failed.\n");
618 scsi_unblock_requests(vha->host);
619 break;
620 }
Giridhar Malavalia9083012010-04-12 17:59:55 -0700621 case 0x2025e:
622 if (!IS_QLA82XX(ha) || vha != base_vha) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700623 ql_log(ql_log_info, vha, 0x7071,
624 "FCoE ctx reset no supported.\n");
Joe Carnucciob668ae32011-08-16 11:31:53 -0700625 return -EPERM;
Giridhar Malavalia9083012010-04-12 17:59:55 -0700626 }
627
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700628 ql_log(ql_log_info, vha, 0x7072,
629 "Issuing FCoE ctx reset.\n");
Giridhar Malavalia9083012010-04-12 17:59:55 -0700630 set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
631 qla2xxx_wake_dpc(vha);
632 qla2x00_wait_for_fcoe_ctx_reset(vha);
633 break;
Santosh Vernekar7d613ac2012-08-22 14:21:03 -0400634 case 0x2025f:
635 if (!IS_QLA8031(ha))
636 return -EPERM;
637 ql_log(ql_log_info, vha, 0x70bc,
638 "Disabling Reset by IDC control\n");
639 qla83xx_idc_lock(vha, 0);
640 __qla83xx_get_idc_control(vha, &idc_control);
641 idc_control |= QLA83XX_IDC_RESET_DISABLED;
642 __qla83xx_set_idc_control(vha, idc_control);
643 qla83xx_idc_unlock(vha, 0);
644 break;
645 case 0x20260:
646 if (!IS_QLA8031(ha))
647 return -EPERM;
648 ql_log(ql_log_info, vha, 0x70bd,
649 "Enabling Reset by IDC control\n");
650 qla83xx_idc_lock(vha, 0);
651 __qla83xx_get_idc_control(vha, &idc_control);
652 idc_control &= ~QLA83XX_IDC_RESET_DISABLED;
653 __qla83xx_set_idc_control(vha, idc_control);
654 qla83xx_idc_unlock(vha, 0);
655 break;
656
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700657 }
658 return count;
659}
660
661static struct bin_attribute sysfs_reset_attr = {
662 .attr = {
663 .name = "reset",
664 .mode = S_IWUSR,
665 },
666 .size = 0,
667 .write = qla2x00_sysfs_write_reset,
668};
669
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700670static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700671qla2x00_sysfs_read_xgmac_stats(struct file *filp, struct kobject *kobj,
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700672 struct bin_attribute *bin_attr,
673 char *buf, loff_t off, size_t count)
674{
675 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
676 struct device, kobj)));
677 struct qla_hw_data *ha = vha->hw;
678 int rval;
679 uint16_t actual_size;
680
681 if (!capable(CAP_SYS_ADMIN) || off != 0 || count > XGMAC_DATA_SIZE)
682 return 0;
683
684 if (ha->xgmac_data)
685 goto do_read;
686
687 ha->xgmac_data = dma_alloc_coherent(&ha->pdev->dev, XGMAC_DATA_SIZE,
688 &ha->xgmac_data_dma, GFP_KERNEL);
689 if (!ha->xgmac_data) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700690 ql_log(ql_log_warn, vha, 0x7076,
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700691 "Unable to allocate memory for XGMAC read-data.\n");
692 return 0;
693 }
694
695do_read:
696 actual_size = 0;
697 memset(ha->xgmac_data, 0, XGMAC_DATA_SIZE);
698
699 rval = qla2x00_get_xgmac_stats(vha, ha->xgmac_data_dma,
700 XGMAC_DATA_SIZE, &actual_size);
701 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700702 ql_log(ql_log_warn, vha, 0x7077,
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700703 "Unable to read XGMAC data (%x).\n", rval);
704 count = 0;
705 }
706
707 count = actual_size > count ? count: actual_size;
708 memcpy(buf, ha->xgmac_data, count);
709
710 return count;
711}
712
713static struct bin_attribute sysfs_xgmac_stats_attr = {
714 .attr = {
715 .name = "xgmac_stats",
716 .mode = S_IRUSR,
717 },
718 .size = 0,
719 .read = qla2x00_sysfs_read_xgmac_stats,
720};
721
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700722static ssize_t
Chris Wright2c3c8be2010-05-12 18:28:57 -0700723qla2x00_sysfs_read_dcbx_tlv(struct file *filp, struct kobject *kobj,
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700724 struct bin_attribute *bin_attr,
725 char *buf, loff_t off, size_t count)
726{
727 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
728 struct device, kobj)));
729 struct qla_hw_data *ha = vha->hw;
730 int rval;
731 uint16_t actual_size;
732
733 if (!capable(CAP_SYS_ADMIN) || off != 0 || count > DCBX_TLV_DATA_SIZE)
734 return 0;
735
736 if (ha->dcbx_tlv)
737 goto do_read;
738
739 ha->dcbx_tlv = dma_alloc_coherent(&ha->pdev->dev, DCBX_TLV_DATA_SIZE,
740 &ha->dcbx_tlv_dma, GFP_KERNEL);
741 if (!ha->dcbx_tlv) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700742 ql_log(ql_log_warn, vha, 0x7078,
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700743 "Unable to allocate memory for DCBX TLV read-data.\n");
Joe Carnucciob668ae32011-08-16 11:31:53 -0700744 return -ENOMEM;
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700745 }
746
747do_read:
748 actual_size = 0;
749 memset(ha->dcbx_tlv, 0, DCBX_TLV_DATA_SIZE);
750
751 rval = qla2x00_get_dcbx_params(vha, ha->dcbx_tlv_dma,
752 DCBX_TLV_DATA_SIZE);
753 if (rval != QLA_SUCCESS) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700754 ql_log(ql_log_warn, vha, 0x7079,
755 "Unable to read DCBX TLV (%x).\n", rval);
Joe Carnucciob668ae32011-08-16 11:31:53 -0700756 return -EIO;
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700757 }
758
759 memcpy(buf, ha->dcbx_tlv, count);
760
761 return count;
762}
763
764static struct bin_attribute sysfs_dcbx_tlv_attr = {
765 .attr = {
766 .name = "dcbx_tlv",
767 .mode = S_IRUSR,
768 },
769 .size = 0,
770 .read = qla2x00_sysfs_read_dcbx_tlv,
771};
772
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700773static struct sysfs_entry {
774 char *name;
775 struct bin_attribute *attr;
776 int is4GBp_only;
777} bin_file_entries[] = {
778 { "fw_dump", &sysfs_fw_dump_attr, },
779 { "nvram", &sysfs_nvram_attr, },
780 { "optrom", &sysfs_optrom_attr, },
781 { "optrom_ctl", &sysfs_optrom_ctl_attr, },
782 { "vpd", &sysfs_vpd_attr, 1 },
783 { "sfp", &sysfs_sfp_attr, 1 },
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700784 { "reset", &sysfs_reset_attr, },
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700785 { "xgmac_stats", &sysfs_xgmac_stats_attr, 3 },
Andrew Vasquez11bbc1d2009-06-03 09:55:14 -0700786 { "dcbx_tlv", &sysfs_dcbx_tlv_attr, 3 },
Randy Dunlap46ddab72006-11-27 09:35:42 -0800787 { NULL },
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700788};
789
8482e1182005-04-17 15:04:54 -0500790void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800791qla2x00_alloc_sysfs_attr(scsi_qla_host_t *vha)
8482e1182005-04-17 15:04:54 -0500792{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800793 struct Scsi_Host *host = vha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700794 struct sysfs_entry *iter;
795 int ret;
8482e1182005-04-17 15:04:54 -0500796
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700797 for (iter = bin_file_entries; iter->name; iter++) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800798 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(vha->hw))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700799 continue;
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700800 if (iter->is4GBp_only == 2 && !IS_QLA25XX(vha->hw))
801 continue;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800802 if (iter->is4GBp_only == 3 && !(IS_CNA_CAPABLE(vha->hw)))
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700803 continue;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700804
805 ret = sysfs_create_bin_file(&host->shost_gendev.kobj,
806 iter->attr);
807 if (ret)
Saurav Kashyap7c3df132011-07-14 12:00:13 -0700808 ql_log(ql_log_warn, vha, 0x00f3,
809 "Unable to create sysfs %s binary attribute (%d).\n",
810 iter->name, ret);
811 else
812 ql_dbg(ql_dbg_init, vha, 0x00f4,
813 "Successfully created sysfs %s binary attribure.\n",
814 iter->name);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700815 }
8482e1182005-04-17 15:04:54 -0500816}
817
818void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800819qla2x00_free_sysfs_attr(scsi_qla_host_t *vha)
8482e1182005-04-17 15:04:54 -0500820{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800821 struct Scsi_Host *host = vha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700822 struct sysfs_entry *iter;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800823 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -0500824
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700825 for (iter = bin_file_entries; iter->name; iter++) {
Andrew Vasqueze4289242007-07-19 15:05:56 -0700826 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(ha))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700827 continue;
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700828 if (iter->is4GBp_only == 2 && !IS_QLA25XX(ha))
829 continue;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -0800830 if (iter->is4GBp_only == 3 && !(IS_CNA_CAPABLE(vha->hw)))
Andrew Vasquezce0423f2009-06-03 09:55:13 -0700831 continue;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700832
Andrew Vasquez7914d002006-06-23 16:10:55 -0700833 sysfs_remove_bin_file(&host->shost_gendev.kobj,
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700834 iter->attr);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700835 }
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800836
837 if (ha->beacon_blink_led == 1)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800838 ha->isp_ops->beacon_off(vha);
8482e1182005-04-17 15:04:54 -0500839}
840
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700841/* Scsi_Host attributes. */
842
843static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100844qla2x00_drvr_version_show(struct device *dev,
845 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700846{
847 return snprintf(buf, PAGE_SIZE, "%s\n", qla2x00_version_str);
848}
849
850static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100851qla2x00_fw_version_show(struct device *dev,
852 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700853{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800854 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
855 struct qla_hw_data *ha = vha->hw;
856 char fw_str[128];
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700857
858 return snprintf(buf, PAGE_SIZE, "%s\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800859 ha->isp_ops->fw_version_str(vha, fw_str));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700860}
861
862static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100863qla2x00_serial_num_show(struct device *dev, struct device_attribute *attr,
864 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700865{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800866 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
867 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700868 uint32_t sn;
869
Joe Carnuccio1ee27142008-07-10 16:55:53 -0700870 if (IS_FWI2_CAPABLE(ha)) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800871 qla2xxx_get_vpd_field(vha, "SN", buf, PAGE_SIZE);
Joe Carnuccio1ee27142008-07-10 16:55:53 -0700872 return snprintf(buf, PAGE_SIZE, "%s\n", buf);
873 }
Andrew Vasquez8b7afc22007-10-19 15:59:19 -0700874
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700875 sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1;
876 return snprintf(buf, PAGE_SIZE, "%c%05d\n", 'A' + sn / 100000,
877 sn % 100000);
878}
879
880static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100881qla2x00_isp_name_show(struct device *dev, struct device_attribute *attr,
882 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700883{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800884 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
885 return snprintf(buf, PAGE_SIZE, "ISP%04X\n", vha->hw->pdev->device);
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700886}
887
888static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100889qla2x00_isp_id_show(struct device *dev, struct device_attribute *attr,
890 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700891{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800892 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
893 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700894 return snprintf(buf, PAGE_SIZE, "%04x %04x %04x %04x\n",
895 ha->product_id[0], ha->product_id[1], ha->product_id[2],
896 ha->product_id[3]);
897}
898
899static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100900qla2x00_model_name_show(struct device *dev, struct device_attribute *attr,
901 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700902{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800903 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
904 return snprintf(buf, PAGE_SIZE, "%s\n", vha->hw->model_number);
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700905}
906
907static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100908qla2x00_model_desc_show(struct device *dev, struct device_attribute *attr,
909 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700910{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800911 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700912 return snprintf(buf, PAGE_SIZE, "%s\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800913 vha->hw->model_desc ? vha->hw->model_desc : "");
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700914}
915
916static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100917qla2x00_pci_info_show(struct device *dev, struct device_attribute *attr,
918 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700919{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800920 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700921 char pci_info[30];
922
923 return snprintf(buf, PAGE_SIZE, "%s\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800924 vha->hw->isp_ops->pci_info_str(vha, pci_info));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700925}
926
927static ssize_t
Hannes Reineckebbd1ae42008-03-18 14:32:28 +0100928qla2x00_link_state_show(struct device *dev, struct device_attribute *attr,
929 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700930{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800931 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
932 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700933 int len = 0;
934
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800935 if (atomic_read(&vha->loop_state) == LOOP_DOWN ||
Andrew Vasquez62542f42010-05-04 15:01:22 -0700936 atomic_read(&vha->loop_state) == LOOP_DEAD ||
937 vha->device_flags & DFLG_NO_CABLE)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700938 len = snprintf(buf, PAGE_SIZE, "Link Down\n");
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800939 else if (atomic_read(&vha->loop_state) != LOOP_READY ||
Andrew Vasquezd051a5aa2012-02-09 11:14:05 -0800940 qla2x00_reset_active(vha))
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700941 len = snprintf(buf, PAGE_SIZE, "Unknown Link State\n");
942 else {
943 len = snprintf(buf, PAGE_SIZE, "Link Up - ");
944
945 switch (ha->current_topology) {
946 case ISP_CFG_NL:
947 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
948 break;
949 case ISP_CFG_FL:
950 len += snprintf(buf + len, PAGE_SIZE-len, "FL_Port\n");
951 break;
952 case ISP_CFG_N:
953 len += snprintf(buf + len, PAGE_SIZE-len,
954 "N_Port to N_Port\n");
955 break;
956 case ISP_CFG_F:
957 len += snprintf(buf + len, PAGE_SIZE-len, "F_Port\n");
958 break;
959 default:
960 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
961 break;
962 }
963 }
964 return len;
965}
966
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700967static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100968qla2x00_zio_show(struct device *dev, struct device_attribute *attr,
969 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700970{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800971 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700972 int len = 0;
973
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800974 switch (vha->hw->zio_mode) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700975 case QLA_ZIO_MODE_6:
976 len += snprintf(buf + len, PAGE_SIZE-len, "Mode 6\n");
977 break;
978 case QLA_ZIO_DISABLED:
979 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
980 break;
981 }
982 return len;
983}
984
985static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100986qla2x00_zio_store(struct device *dev, struct device_attribute *attr,
987 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700988{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800989 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
990 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700991 int val = 0;
992 uint16_t zio_mode;
993
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -0800994 if (!IS_ZIO_SUPPORTED(ha))
995 return -ENOTSUPP;
996
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700997 if (sscanf(buf, "%d", &val) != 1)
998 return -EINVAL;
999
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001000 if (val)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001001 zio_mode = QLA_ZIO_MODE_6;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001002 else
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001003 zio_mode = QLA_ZIO_DISABLED;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001004
1005 /* Update per-hba values and queue a reset. */
1006 if (zio_mode != QLA_ZIO_DISABLED || ha->zio_mode != QLA_ZIO_DISABLED) {
1007 ha->zio_mode = zio_mode;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001008 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001009 }
1010 return strlen(buf);
1011}
1012
1013static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001014qla2x00_zio_timer_show(struct device *dev, struct device_attribute *attr,
1015 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001016{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001017 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001018
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001019 return snprintf(buf, PAGE_SIZE, "%d us\n", vha->hw->zio_timer * 100);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001020}
1021
1022static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001023qla2x00_zio_timer_store(struct device *dev, struct device_attribute *attr,
1024 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001025{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001026 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001027 int val = 0;
1028 uint16_t zio_timer;
1029
1030 if (sscanf(buf, "%d", &val) != 1)
1031 return -EINVAL;
1032 if (val > 25500 || val < 100)
1033 return -ERANGE;
1034
1035 zio_timer = (uint16_t)(val / 100);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001036 vha->hw->zio_timer = zio_timer;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -07001037
1038 return strlen(buf);
1039}
1040
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001041static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001042qla2x00_beacon_show(struct device *dev, struct device_attribute *attr,
1043 char *buf)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001044{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001045 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001046 int len = 0;
1047
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001048 if (vha->hw->beacon_blink_led)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001049 len += snprintf(buf + len, PAGE_SIZE-len, "Enabled\n");
1050 else
1051 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
1052 return len;
1053}
1054
1055static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001056qla2x00_beacon_store(struct device *dev, struct device_attribute *attr,
1057 const char *buf, size_t count)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001058{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001059 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1060 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001061 int val = 0;
1062 int rval;
1063
1064 if (IS_QLA2100(ha) || IS_QLA2200(ha))
1065 return -EPERM;
1066
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001067 if (test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001068 ql_log(ql_log_warn, vha, 0x707a,
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001069 "Abort ISP active -- ignoring beacon request.\n");
1070 return -EBUSY;
1071 }
1072
1073 if (sscanf(buf, "%d", &val) != 1)
1074 return -EINVAL;
1075
1076 if (val)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001077 rval = ha->isp_ops->beacon_on(vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001078 else
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001079 rval = ha->isp_ops->beacon_off(vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08001080
1081 if (rval != QLA_SUCCESS)
1082 count = 0;
1083
1084 return count;
1085}
1086
Andrew Vasquez30c47662007-01-29 10:22:21 -08001087static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001088qla2x00_optrom_bios_version_show(struct device *dev,
1089 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001090{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001091 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1092 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08001093 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->bios_revision[1],
1094 ha->bios_revision[0]);
1095}
1096
1097static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001098qla2x00_optrom_efi_version_show(struct device *dev,
1099 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001100{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001101 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1102 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08001103 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->efi_revision[1],
1104 ha->efi_revision[0]);
1105}
1106
1107static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001108qla2x00_optrom_fcode_version_show(struct device *dev,
1109 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001110{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001111 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1112 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08001113 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->fcode_revision[1],
1114 ha->fcode_revision[0]);
1115}
1116
1117static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001118qla2x00_optrom_fw_version_show(struct device *dev,
1119 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001120{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001121 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1122 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08001123 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d %d\n",
1124 ha->fw_revision[0], ha->fw_revision[1], ha->fw_revision[2],
1125 ha->fw_revision[3]);
1126}
1127
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001128static ssize_t
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001129qla2x00_optrom_gold_fw_version_show(struct device *dev,
1130 struct device_attribute *attr, char *buf)
1131{
1132 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1133 struct qla_hw_data *ha = vha->hw;
1134
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001135 if (!IS_QLA81XX(ha) && !IS_QLA83XX(ha))
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001136 return snprintf(buf, PAGE_SIZE, "\n");
1137
1138 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%d)\n",
1139 ha->gold_fw_version[0], ha->gold_fw_version[1],
1140 ha->gold_fw_version[2], ha->gold_fw_version[3]);
1141}
1142
1143static ssize_t
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001144qla2x00_total_isp_aborts_show(struct device *dev,
1145 struct device_attribute *attr, char *buf)
1146{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001147 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001148 return snprintf(buf, PAGE_SIZE, "%d\n",
Saurav Kashyap2be21fa2012-05-15 14:34:16 -04001149 vha->qla_stats.total_isp_aborts);
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001150}
1151
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001152static ssize_t
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001153qla24xx_84xx_fw_version_show(struct device *dev,
1154 struct device_attribute *attr, char *buf)
1155{
1156 int rval = QLA_SUCCESS;
1157 uint16_t status[2] = {0, 0};
1158 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1159 struct qla_hw_data *ha = vha->hw;
1160
Andrew Vasquez0b9dae62010-05-04 15:01:21 -07001161 if (!IS_QLA84XX(ha))
1162 return snprintf(buf, PAGE_SIZE, "\n");
1163
Giridhar Malavali6c7ccf72010-05-28 15:08:29 -07001164 if (ha->cs84xx->op_fw_version == 0)
Andrew Vasquez0b9dae62010-05-04 15:01:21 -07001165 rval = qla84xx_verify_chip(vha, status);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001166
1167 if ((rval == QLA_SUCCESS) && (status[0] == 0))
1168 return snprintf(buf, PAGE_SIZE, "%u\n",
1169 (uint32_t)ha->cs84xx->op_fw_version);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001170
1171 return snprintf(buf, PAGE_SIZE, "\n");
1172}
1173
1174static ssize_t
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001175qla2x00_mpi_version_show(struct device *dev, struct device_attribute *attr,
1176 char *buf)
1177{
1178 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1179 struct qla_hw_data *ha = vha->hw;
1180
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001181 if (!IS_QLA81XX(ha) && !IS_QLA8031(ha))
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001182 return snprintf(buf, PAGE_SIZE, "\n");
1183
Andrew Vasquez55a96152009-03-24 09:08:03 -07001184 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%x)\n",
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001185 ha->mpi_version[0], ha->mpi_version[1], ha->mpi_version[2],
Andrew Vasquez55a96152009-03-24 09:08:03 -07001186 ha->mpi_capabilities);
1187}
1188
1189static ssize_t
1190qla2x00_phy_version_show(struct device *dev, struct device_attribute *attr,
1191 char *buf)
1192{
1193 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1194 struct qla_hw_data *ha = vha->hw;
1195
Nigel Kirklandf863f602012-05-15 14:34:19 -04001196 if (!IS_QLA81XX(ha) && !IS_QLA8031(ha))
Andrew Vasquez55a96152009-03-24 09:08:03 -07001197 return snprintf(buf, PAGE_SIZE, "\n");
1198
1199 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d\n",
1200 ha->phy_version[0], ha->phy_version[1], ha->phy_version[2]);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001201}
1202
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001203static ssize_t
1204qla2x00_flash_block_size_show(struct device *dev,
1205 struct device_attribute *attr, char *buf)
1206{
1207 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1208 struct qla_hw_data *ha = vha->hw;
1209
1210 return snprintf(buf, PAGE_SIZE, "0x%x\n", ha->fdt_block_size);
1211}
1212
Andrew Vasquezbad70012009-04-06 22:33:38 -07001213static ssize_t
1214qla2x00_vlan_id_show(struct device *dev, struct device_attribute *attr,
1215 char *buf)
1216{
1217 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1218
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001219 if (!IS_CNA_CAPABLE(vha->hw))
Andrew Vasquezbad70012009-04-06 22:33:38 -07001220 return snprintf(buf, PAGE_SIZE, "\n");
1221
1222 return snprintf(buf, PAGE_SIZE, "%d\n", vha->fcoe_vlan_id);
1223}
1224
1225static ssize_t
1226qla2x00_vn_port_mac_address_show(struct device *dev,
1227 struct device_attribute *attr, char *buf)
1228{
1229 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1230
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001231 if (!IS_CNA_CAPABLE(vha->hw))
Andrew Vasquezbad70012009-04-06 22:33:38 -07001232 return snprintf(buf, PAGE_SIZE, "\n");
1233
1234 return snprintf(buf, PAGE_SIZE, "%02x:%02x:%02x:%02x:%02x:%02x\n",
1235 vha->fcoe_vn_port_mac[5], vha->fcoe_vn_port_mac[4],
1236 vha->fcoe_vn_port_mac[3], vha->fcoe_vn_port_mac[2],
1237 vha->fcoe_vn_port_mac[1], vha->fcoe_vn_port_mac[0]);
1238}
1239
Andrew Vasquez7f774022009-06-03 09:55:12 -07001240static ssize_t
1241qla2x00_fabric_param_show(struct device *dev, struct device_attribute *attr,
1242 char *buf)
1243{
1244 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1245
1246 return snprintf(buf, PAGE_SIZE, "%d\n", vha->hw->switch_cap);
1247}
1248
Andrew Vasquez656e8912009-06-03 09:55:29 -07001249static ssize_t
Andrew Vasquez794a5692010-12-21 16:00:21 -08001250qla2x00_thermal_temp_show(struct device *dev,
1251 struct device_attribute *attr, char *buf)
1252{
1253 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1254 int rval = QLA_FUNCTION_FAILED;
1255 uint16_t temp, frac;
1256
1257 if (!vha->hw->flags.thermal_supported)
1258 return snprintf(buf, PAGE_SIZE, "\n");
1259
1260 temp = frac = 0;
Andrew Vasquezd051a5aa2012-02-09 11:14:05 -08001261 if (qla2x00_reset_active(vha))
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001262 ql_log(ql_log_warn, vha, 0x707b,
1263 "ISP reset active.\n");
Andrew Vasquez794a5692010-12-21 16:00:21 -08001264 else if (!vha->hw->flags.eeh_busy)
1265 rval = qla2x00_get_thermal_temp(vha, &temp, &frac);
1266 if (rval != QLA_SUCCESS)
Joe Carnuccioaa615562012-02-09 11:15:40 -08001267 return snprintf(buf, PAGE_SIZE, "\n");
Andrew Vasquez794a5692010-12-21 16:00:21 -08001268
1269 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", temp, frac);
1270}
1271
1272static ssize_t
Andrew Vasquez656e8912009-06-03 09:55:29 -07001273qla2x00_fw_state_show(struct device *dev, struct device_attribute *attr,
1274 char *buf)
1275{
1276 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez85880802009-12-15 21:29:46 -08001277 int rval = QLA_FUNCTION_FAILED;
Andrew Vasquez656e8912009-06-03 09:55:29 -07001278 uint16_t state[5];
1279
Andrew Vasquezd051a5aa2012-02-09 11:14:05 -08001280 if (qla2x00_reset_active(vha))
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001281 ql_log(ql_log_warn, vha, 0x707c,
1282 "ISP reset active.\n");
Santosh Vernekard6136f32010-03-19 16:59:20 -07001283 else if (!vha->hw->flags.eeh_busy)
Andrew Vasquez85880802009-12-15 21:29:46 -08001284 rval = qla2x00_get_firmware_state(vha, state);
Andrew Vasquez656e8912009-06-03 09:55:29 -07001285 if (rval != QLA_SUCCESS)
1286 memset(state, -1, sizeof(state));
1287
1288 return snprintf(buf, PAGE_SIZE, "0x%x 0x%x 0x%x 0x%x 0x%x\n", state[0],
1289 state[1], state[2], state[3], state[4]);
1290}
1291
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001292static ssize_t
1293qla2x00_diag_requests_show(struct device *dev,
1294 struct device_attribute *attr, char *buf)
1295{
1296 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1297
1298 if (!IS_BIDI_CAPABLE(vha->hw))
1299 return snprintf(buf, PAGE_SIZE, "\n");
1300
1301 return snprintf(buf, PAGE_SIZE, "%llu\n", vha->bidi_stats.io_count);
1302}
1303
1304static ssize_t
1305qla2x00_diag_megabytes_show(struct device *dev,
1306 struct device_attribute *attr, char *buf)
1307{
1308 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1309
1310 if (!IS_BIDI_CAPABLE(vha->hw))
1311 return snprintf(buf, PAGE_SIZE, "\n");
1312
1313 return snprintf(buf, PAGE_SIZE, "%llu\n",
1314 vha->bidi_stats.transfer_bytes >> 20);
1315}
1316
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001317static ssize_t
1318qla2x00_fw_dump_size_show(struct device *dev, struct device_attribute *attr,
1319 char *buf)
1320{
1321 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1322 struct qla_hw_data *ha = vha->hw;
1323 uint32_t size;
1324
1325 if (!ha->fw_dumped)
1326 size = 0;
1327 else if (IS_QLA82XX(ha))
1328 size = ha->md_template_size + ha->md_dump_size;
1329 else
1330 size = ha->fw_dump_len;
1331
1332 return snprintf(buf, PAGE_SIZE, "%d\n", size);
1333}
1334
Tony Jonesee959b02008-02-22 00:13:36 +01001335static DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, NULL);
1336static DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL);
1337static DEVICE_ATTR(serial_num, S_IRUGO, qla2x00_serial_num_show, NULL);
1338static DEVICE_ATTR(isp_name, S_IRUGO, qla2x00_isp_name_show, NULL);
1339static DEVICE_ATTR(isp_id, S_IRUGO, qla2x00_isp_id_show, NULL);
1340static DEVICE_ATTR(model_name, S_IRUGO, qla2x00_model_name_show, NULL);
1341static DEVICE_ATTR(model_desc, S_IRUGO, qla2x00_model_desc_show, NULL);
1342static DEVICE_ATTR(pci_info, S_IRUGO, qla2x00_pci_info_show, NULL);
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001343static DEVICE_ATTR(link_state, S_IRUGO, qla2x00_link_state_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001344static DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show, qla2x00_zio_store);
1345static DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show,
1346 qla2x00_zio_timer_store);
1347static DEVICE_ATTR(beacon, S_IRUGO | S_IWUSR, qla2x00_beacon_show,
1348 qla2x00_beacon_store);
1349static DEVICE_ATTR(optrom_bios_version, S_IRUGO,
1350 qla2x00_optrom_bios_version_show, NULL);
1351static DEVICE_ATTR(optrom_efi_version, S_IRUGO,
1352 qla2x00_optrom_efi_version_show, NULL);
1353static DEVICE_ATTR(optrom_fcode_version, S_IRUGO,
1354 qla2x00_optrom_fcode_version_show, NULL);
1355static DEVICE_ATTR(optrom_fw_version, S_IRUGO, qla2x00_optrom_fw_version_show,
1356 NULL);
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001357static DEVICE_ATTR(optrom_gold_fw_version, S_IRUGO,
1358 qla2x00_optrom_gold_fw_version_show, NULL);
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001359static DEVICE_ATTR(84xx_fw_version, S_IRUGO, qla24xx_84xx_fw_version_show,
1360 NULL);
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001361static DEVICE_ATTR(total_isp_aborts, S_IRUGO, qla2x00_total_isp_aborts_show,
1362 NULL);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001363static DEVICE_ATTR(mpi_version, S_IRUGO, qla2x00_mpi_version_show, NULL);
Andrew Vasquez55a96152009-03-24 09:08:03 -07001364static DEVICE_ATTR(phy_version, S_IRUGO, qla2x00_phy_version_show, NULL);
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001365static DEVICE_ATTR(flash_block_size, S_IRUGO, qla2x00_flash_block_size_show,
1366 NULL);
Andrew Vasquezbad70012009-04-06 22:33:38 -07001367static DEVICE_ATTR(vlan_id, S_IRUGO, qla2x00_vlan_id_show, NULL);
1368static DEVICE_ATTR(vn_port_mac_address, S_IRUGO,
1369 qla2x00_vn_port_mac_address_show, NULL);
Andrew Vasquez7f774022009-06-03 09:55:12 -07001370static DEVICE_ATTR(fabric_param, S_IRUGO, qla2x00_fabric_param_show, NULL);
Andrew Vasquez656e8912009-06-03 09:55:29 -07001371static DEVICE_ATTR(fw_state, S_IRUGO, qla2x00_fw_state_show, NULL);
Andrew Vasquez794a5692010-12-21 16:00:21 -08001372static DEVICE_ATTR(thermal_temp, S_IRUGO, qla2x00_thermal_temp_show, NULL);
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001373static DEVICE_ATTR(diag_requests, S_IRUGO, qla2x00_diag_requests_show, NULL);
1374static DEVICE_ATTR(diag_megabytes, S_IRUGO, qla2x00_diag_megabytes_show, NULL);
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001375static DEVICE_ATTR(fw_dump_size, S_IRUGO, qla2x00_fw_dump_size_show, NULL);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001376
Tony Jonesee959b02008-02-22 00:13:36 +01001377struct device_attribute *qla2x00_host_attrs[] = {
1378 &dev_attr_driver_version,
1379 &dev_attr_fw_version,
1380 &dev_attr_serial_num,
1381 &dev_attr_isp_name,
1382 &dev_attr_isp_id,
1383 &dev_attr_model_name,
1384 &dev_attr_model_desc,
1385 &dev_attr_pci_info,
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001386 &dev_attr_link_state,
Tony Jonesee959b02008-02-22 00:13:36 +01001387 &dev_attr_zio,
1388 &dev_attr_zio_timer,
1389 &dev_attr_beacon,
1390 &dev_attr_optrom_bios_version,
1391 &dev_attr_optrom_efi_version,
1392 &dev_attr_optrom_fcode_version,
1393 &dev_attr_optrom_fw_version,
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001394 &dev_attr_84xx_fw_version,
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001395 &dev_attr_total_isp_aborts,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001396 &dev_attr_mpi_version,
Andrew Vasquez55a96152009-03-24 09:08:03 -07001397 &dev_attr_phy_version,
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001398 &dev_attr_flash_block_size,
Andrew Vasquezbad70012009-04-06 22:33:38 -07001399 &dev_attr_vlan_id,
1400 &dev_attr_vn_port_mac_address,
Andrew Vasquez7f774022009-06-03 09:55:12 -07001401 &dev_attr_fabric_param,
Andrew Vasquez656e8912009-06-03 09:55:29 -07001402 &dev_attr_fw_state,
Madhuranath Iyengar0f2d9622010-07-23 15:28:26 +05001403 &dev_attr_optrom_gold_fw_version,
Andrew Vasquez794a5692010-12-21 16:00:21 -08001404 &dev_attr_thermal_temp,
Saurav Kashyapa9b6f722012-08-22 14:21:01 -04001405 &dev_attr_diag_requests,
1406 &dev_attr_diag_megabytes,
Harish Zunjarrao40129a42012-08-22 14:21:02 -04001407 &dev_attr_fw_dump_size,
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001408 NULL,
1409};
1410
8482e1182005-04-17 15:04:54 -05001411/* Host attributes. */
1412
1413static void
1414qla2x00_get_host_port_id(struct Scsi_Host *shost)
1415{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001416 scsi_qla_host_t *vha = shost_priv(shost);
8482e1182005-04-17 15:04:54 -05001417
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001418 fc_host_port_id(shost) = vha->d_id.b.domain << 16 |
1419 vha->d_id.b.area << 8 | vha->d_id.b.al_pa;
8482e1182005-04-17 15:04:54 -05001420}
1421
1422static void
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001423qla2x00_get_host_speed(struct Scsi_Host *shost)
1424{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001425 struct qla_hw_data *ha = ((struct scsi_qla_host *)
1426 (shost_priv(shost)))->hw;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001427 u32 speed = FC_PORTSPEED_UNKNOWN;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001428
1429 switch (ha->link_data_rate) {
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001430 case PORT_SPEED_1GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001431 speed = FC_PORTSPEED_1GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001432 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001433 case PORT_SPEED_2GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001434 speed = FC_PORTSPEED_2GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001435 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001436 case PORT_SPEED_4GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001437 speed = FC_PORTSPEED_4GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001438 break;
Seokmann Juda4541b2008-01-31 12:33:52 -08001439 case PORT_SPEED_8GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001440 speed = FC_PORTSPEED_8GBIT;
Seokmann Juda4541b2008-01-31 12:33:52 -08001441 break;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001442 case PORT_SPEED_10GB:
1443 speed = FC_PORTSPEED_10GBIT;
1444 break;
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001445 case PORT_SPEED_16GB:
1446 speed = FC_PORTSPEED_16GBIT;
1447 break;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001448 }
1449 fc_host_speed(shost) = speed;
1450}
1451
1452static void
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001453qla2x00_get_host_port_type(struct Scsi_Host *shost)
1454{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001455 scsi_qla_host_t *vha = shost_priv(shost);
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001456 uint32_t port_type = FC_PORTTYPE_UNKNOWN;
1457
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001458 if (vha->vp_idx) {
Shyam Sundar2f2fa132008-05-12 22:21:07 -07001459 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
1460 return;
1461 }
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001462 switch (vha->hw->current_topology) {
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001463 case ISP_CFG_NL:
1464 port_type = FC_PORTTYPE_LPORT;
1465 break;
1466 case ISP_CFG_FL:
1467 port_type = FC_PORTTYPE_NLPORT;
1468 break;
1469 case ISP_CFG_N:
1470 port_type = FC_PORTTYPE_PTP;
1471 break;
1472 case ISP_CFG_F:
1473 port_type = FC_PORTTYPE_NPORT;
1474 break;
1475 }
1476 fc_host_port_type(shost) = port_type;
1477}
1478
1479static void
8482e1182005-04-17 15:04:54 -05001480qla2x00_get_starget_node_name(struct scsi_target *starget)
1481{
1482 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001483 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001484 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001485 u64 node_name = 0;
8482e1182005-04-17 15:04:54 -05001486
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001487 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001488 if (fcport->rport &&
1489 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001490 node_name = wwn_to_u64(fcport->node_name);
bdf79622005-04-17 15:06:53 -05001491 break;
1492 }
1493 }
1494
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001495 fc_starget_node_name(starget) = node_name;
8482e1182005-04-17 15:04:54 -05001496}
1497
1498static void
1499qla2x00_get_starget_port_name(struct scsi_target *starget)
1500{
1501 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001502 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001503 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001504 u64 port_name = 0;
8482e1182005-04-17 15:04:54 -05001505
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001506 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001507 if (fcport->rport &&
1508 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001509 port_name = wwn_to_u64(fcport->port_name);
bdf79622005-04-17 15:06:53 -05001510 break;
1511 }
1512 }
1513
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001514 fc_starget_port_name(starget) = port_name;
8482e1182005-04-17 15:04:54 -05001515}
1516
1517static void
1518qla2x00_get_starget_port_id(struct scsi_target *starget)
1519{
1520 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001521 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001522 fc_port_t *fcport;
1523 uint32_t port_id = ~0U;
8482e1182005-04-17 15:04:54 -05001524
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001525 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001526 if (fcport->rport &&
1527 starget->id == fcport->rport->scsi_target_id) {
bdf79622005-04-17 15:06:53 -05001528 port_id = fcport->d_id.b.domain << 16 |
1529 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
1530 break;
1531 }
1532 }
1533
8482e1182005-04-17 15:04:54 -05001534 fc_starget_port_id(starget) = port_id;
1535}
1536
1537static void
8482e1182005-04-17 15:04:54 -05001538qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
1539{
8482e1182005-04-17 15:04:54 -05001540 if (timeout)
Andrew Vasquez85821c92008-07-10 16:55:48 -07001541 rport->dev_loss_tmo = timeout;
8482e1182005-04-17 15:04:54 -05001542 else
Andrew Vasquez85821c92008-07-10 16:55:48 -07001543 rport->dev_loss_tmo = 1;
8482e1182005-04-17 15:04:54 -05001544}
1545
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001546static void
1547qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport)
1548{
1549 struct Scsi_Host *host = rport_to_shost(rport);
1550 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08001551 unsigned long flags;
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001552
Seokmann Ju3c01b4f2009-01-22 09:45:38 -08001553 if (!fcport)
1554 return;
1555
Giridhar Malavali38170fa2010-10-15 11:27:49 -07001556 /* Now that the rport has been deleted, set the fcport state to
1557 FCS_DEVICE_DEAD */
Chad Dupuisec426e12011-03-30 11:46:32 -07001558 qla2x00_set_fcport_state(fcport, FCS_DEVICE_DEAD);
Giridhar Malavali38170fa2010-10-15 11:27:49 -07001559
Giridhar Malavali3fadb80b2010-09-03 15:20:55 -07001560 /*
1561 * Transport has effectively 'deleted' the rport, clear
1562 * all local references.
1563 */
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08001564 spin_lock_irqsave(host->host_lock, flags);
Giridhar Malavali3fadb80b2010-09-03 15:20:55 -07001565 fcport->rport = fcport->drport = NULL;
1566 *((fc_port_t **)rport->dd_data) = NULL;
Madhuranath Iyengar044d78e2011-01-28 15:17:56 -08001567 spin_unlock_irqrestore(host->host_lock, flags);
Giridhar Malavali3fadb80b2010-09-03 15:20:55 -07001568
Andrew Vasquez85880802009-12-15 21:29:46 -08001569 if (test_bit(ABORT_ISP_ACTIVE, &fcport->vha->dpc_flags))
1570 return;
1571
1572 if (unlikely(pci_channel_offline(fcport->vha->hw->pdev))) {
Seokmann Jub9b12f72009-03-24 09:08:18 -07001573 qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16);
Andrew Vasquez85880802009-12-15 21:29:46 -08001574 return;
1575 }
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001576}
1577
1578static void
1579qla2x00_terminate_rport_io(struct fc_rport *rport)
1580{
1581 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1582
Seokmann Ju3c01b4f2009-01-22 09:45:38 -08001583 if (!fcport)
1584 return;
1585
Andrew Vasquez85880802009-12-15 21:29:46 -08001586 if (test_bit(ABORT_ISP_ACTIVE, &fcport->vha->dpc_flags))
1587 return;
1588
Seokmann Jub9b12f72009-03-24 09:08:18 -07001589 if (unlikely(pci_channel_offline(fcport->vha->hw->pdev))) {
1590 qla2x00_abort_all_cmds(fcport->vha, DID_NO_CONNECT << 16);
1591 return;
1592 }
Andrew Vasquez6390d1f2008-08-13 21:36:56 -07001593 /*
1594 * At this point all fcport's software-states are cleared. Perform any
1595 * final cleanup of firmware resources (PCBs and XCBs).
1596 */
Andrew Vasquez6805c152009-06-03 09:55:27 -07001597 if (fcport->loop_id != FC_NO_LOOP_ID &&
Andrew Vasquezaf11f642012-02-09 11:15:43 -08001598 !test_bit(UNLOADING, &fcport->vha->dpc_flags)) {
1599 if (IS_FWI2_CAPABLE(fcport->vha->hw))
1600 fcport->vha->hw->isp_ops->fabric_logout(fcport->vha,
1601 fcport->loop_id, fcport->d_id.b.domain,
1602 fcport->d_id.b.area, fcport->d_id.b.al_pa);
1603 else
1604 qla2x00_port_logout(fcport->vha, fcport);
1605 }
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001606}
1607
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001608static int
1609qla2x00_issue_lip(struct Scsi_Host *shost)
1610{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001611 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001612
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001613 qla2x00_loop_reset(vha);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001614 return 0;
1615}
1616
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001617static struct fc_host_statistics *
1618qla2x00_get_fc_host_stats(struct Scsi_Host *shost)
1619{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001620 scsi_qla_host_t *vha = shost_priv(shost);
1621 struct qla_hw_data *ha = vha->hw;
1622 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001623 int rval;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001624 struct link_statistics *stats;
1625 dma_addr_t stats_dma;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001626 struct fc_host_statistics *pfc_host_stat;
1627
Saurav Kashyap2be21fa2012-05-15 14:34:16 -04001628 pfc_host_stat = &vha->fc_host_stat;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001629 memset(pfc_host_stat, -1, sizeof(struct fc_host_statistics));
1630
Andrew Vasquez85880802009-12-15 21:29:46 -08001631 if (test_bit(UNLOADING, &vha->dpc_flags))
1632 goto done;
1633
1634 if (unlikely(pci_channel_offline(ha->pdev)))
1635 goto done;
1636
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001637 stats = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &stats_dma);
1638 if (stats == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001639 ql_log(ql_log_warn, vha, 0x707d,
1640 "Failed to allocate memory for stats.\n");
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001641 goto done;
1642 }
1643 memset(stats, 0, DMA_POOL_SIZE);
1644
1645 rval = QLA_FUNCTION_FAILED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001646 if (IS_FWI2_CAPABLE(ha)) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001647 rval = qla24xx_get_isp_stats(base_vha, stats, stats_dma);
1648 } else if (atomic_read(&base_vha->loop_state) == LOOP_READY &&
Andrew Vasquezd051a5aa2012-02-09 11:14:05 -08001649 !qla2x00_reset_active(vha) && !ha->dpc_active) {
Andrew Vasquez178779a2007-01-29 10:22:25 -08001650 /* Must be in a 'READY' state for statistics retrieval. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001651 rval = qla2x00_get_link_status(base_vha, base_vha->loop_id,
1652 stats, stats_dma);
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001653 }
Andrew Vasquez178779a2007-01-29 10:22:25 -08001654
1655 if (rval != QLA_SUCCESS)
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001656 goto done_free;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001657
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001658 pfc_host_stat->link_failure_count = stats->link_fail_cnt;
1659 pfc_host_stat->loss_of_sync_count = stats->loss_sync_cnt;
1660 pfc_host_stat->loss_of_signal_count = stats->loss_sig_cnt;
1661 pfc_host_stat->prim_seq_protocol_err_count = stats->prim_seq_err_cnt;
1662 pfc_host_stat->invalid_tx_word_count = stats->inval_xmit_word_cnt;
1663 pfc_host_stat->invalid_crc_count = stats->inval_crc_cnt;
1664 if (IS_FWI2_CAPABLE(ha)) {
Harish Zunjarrao032d8dd2008-07-10 16:55:50 -07001665 pfc_host_stat->lip_count = stats->lip_cnt;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001666 pfc_host_stat->tx_frames = stats->tx_frames;
1667 pfc_host_stat->rx_frames = stats->rx_frames;
1668 pfc_host_stat->dumped_frames = stats->dumped_frames;
1669 pfc_host_stat->nos_count = stats->nos_rcvd;
1670 }
Saurav Kashyap2be21fa2012-05-15 14:34:16 -04001671 pfc_host_stat->fcp_input_megabytes = vha->qla_stats.input_bytes >> 20;
1672 pfc_host_stat->fcp_output_megabytes = vha->qla_stats.output_bytes >> 20;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001673
1674done_free:
1675 dma_pool_free(ha->s_dma_pool, stats, stats_dma);
Andrew Vasquez178779a2007-01-29 10:22:25 -08001676done:
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001677 return pfc_host_stat;
1678}
1679
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001680static void
1681qla2x00_get_host_symbolic_name(struct Scsi_Host *shost)
1682{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001683 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001684
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001685 qla2x00_get_sym_node_name(vha, fc_host_symbolic_name(shost));
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001686}
1687
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001688static void
1689qla2x00_set_host_system_hostname(struct Scsi_Host *shost)
1690{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001691 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001692
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001693 set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags);
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001694}
1695
Andrew Vasquez90991c82006-10-02 12:00:46 -07001696static void
1697qla2x00_get_host_fabric_name(struct Scsi_Host *shost)
1698{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001699 scsi_qla_host_t *vha = shost_priv(shost);
Giridhar Malavali35e0cbd2010-09-03 15:20:51 -07001700 uint8_t node_name[WWN_SIZE] = { 0xFF, 0xFF, 0xFF, 0xFF, \
1701 0xFF, 0xFF, 0xFF, 0xFF};
1702 u64 fabric_name = wwn_to_u64(node_name);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001703
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001704 if (vha->device_flags & SWITCH_FOUND)
Giridhar Malavali35e0cbd2010-09-03 15:20:51 -07001705 fabric_name = wwn_to_u64(vha->fabric_node_name);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001706
Giridhar Malavali35e0cbd2010-09-03 15:20:51 -07001707 fc_host_fabric_name(shost) = fabric_name;
Andrew Vasquez90991c82006-10-02 12:00:46 -07001708}
1709
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001710static void
1711qla2x00_get_host_port_state(struct Scsi_Host *shost)
1712{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001713 scsi_qla_host_t *vha = shost_priv(shost);
1714 struct scsi_qla_host *base_vha = pci_get_drvdata(vha->hw->pdev);
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001715
Saurav Kashyap49e85c22011-11-18 09:02:20 -08001716 if (!base_vha->flags.online) {
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001717 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
Saurav Kashyap49e85c22011-11-18 09:02:20 -08001718 return;
1719 }
1720
1721 switch (atomic_read(&base_vha->loop_state)) {
1722 case LOOP_UPDATE:
1723 fc_host_port_state(shost) = FC_PORTSTATE_DIAGNOSTICS;
1724 break;
1725 case LOOP_DOWN:
1726 if (test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags))
1727 fc_host_port_state(shost) = FC_PORTSTATE_DIAGNOSTICS;
1728 else
1729 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
1730 break;
1731 case LOOP_DEAD:
1732 fc_host_port_state(shost) = FC_PORTSTATE_LINKDOWN;
1733 break;
1734 case LOOP_READY:
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001735 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
Saurav Kashyap49e85c22011-11-18 09:02:20 -08001736 break;
1737 default:
1738 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1739 break;
1740 }
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001741}
1742
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001743static int
1744qla24xx_vport_create(struct fc_vport *fc_vport, bool disable)
1745{
1746 int ret = 0;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001747 uint8_t qos = 0;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001748 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
1749 scsi_qla_host_t *vha = NULL;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001750 struct qla_hw_data *ha = base_vha->hw;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001751 uint16_t options = 0;
1752 int cnt;
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07001753 struct req_que *req = ha->req_q_map[0];
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001754
1755 ret = qla24xx_vport_create_req_sanity_check(fc_vport);
1756 if (ret) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001757 ql_log(ql_log_warn, vha, 0x707e,
1758 "Vport sanity check failed, status %x\n", ret);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001759 return (ret);
1760 }
1761
1762 vha = qla24xx_create_vhost(fc_vport);
1763 if (vha == NULL) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001764 ql_log(ql_log_warn, vha, 0x707f, "Vport create host failed.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001765 return FC_VPORT_FAILED;
1766 }
1767 if (disable) {
1768 atomic_set(&vha->vp_state, VP_OFFLINE);
1769 fc_vport_set_state(fc_vport, FC_VPORT_DISABLED);
1770 } else
1771 atomic_set(&vha->vp_state, VP_FAILED);
1772
1773 /* ready to create vport */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001774 ql_log(ql_log_info, vha, 0x7080,
1775 "VP entry id %d assigned.\n", vha->vp_idx);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001776
1777 /* initialized vport states */
1778 atomic_set(&vha->loop_state, LOOP_DOWN);
1779 vha->vp_err_state= VP_ERR_PORTDWN;
1780 vha->vp_prev_err_state= VP_ERR_UNKWN;
1781 /* Check if physical ha port is Up */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001782 if (atomic_read(&base_vha->loop_state) == LOOP_DOWN ||
1783 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001784 /* Don't retry or attempt login of this virtual port */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001785 ql_dbg(ql_dbg_user, vha, 0x7081,
1786 "Vport loop state is not UP.\n");
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001787 atomic_set(&vha->loop_state, LOOP_DEAD);
1788 if (!disable)
1789 fc_vport_set_state(fc_vport, FC_VPORT_LINKDOWN);
1790 }
1791
Arun Easie02587d2011-08-16 11:29:23 -07001792 if (IS_T10_PI_CAPABLE(ha) && ql2xenabledif) {
Arun Easibad75002010-05-04 15:01:30 -07001793 if (ha->fw_attributes & BIT_4) {
Arun Easi8cb20492011-08-16 11:29:22 -07001794 int prot = 0;
Arun Easibad75002010-05-04 15:01:30 -07001795 vha->flags.difdix_supported = 1;
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001796 ql_dbg(ql_dbg_user, vha, 0x7082,
1797 "Registered for DIF/DIX type 1 and 3 protection.\n");
Arun Easi8cb20492011-08-16 11:29:22 -07001798 if (ql2xenabledif == 1)
1799 prot = SHOST_DIX_TYPE0_PROTECTION;
Arun Easibad75002010-05-04 15:01:30 -07001800 scsi_host_set_prot(vha->host,
Arun Easi8cb20492011-08-16 11:29:22 -07001801 prot | SHOST_DIF_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05001802 | SHOST_DIF_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07001803 | SHOST_DIF_TYPE3_PROTECTION
1804 | SHOST_DIX_TYPE1_PROTECTION
Arun Easi0c470872010-07-23 15:28:38 +05001805 | SHOST_DIX_TYPE2_PROTECTION
Arun Easibad75002010-05-04 15:01:30 -07001806 | SHOST_DIX_TYPE3_PROTECTION);
1807 scsi_host_set_guard(vha->host, SHOST_DIX_GUARD_CRC);
1808 } else
1809 vha->flags.difdix_supported = 0;
1810 }
1811
James Bottomleyd139b9b2009-11-05 13:33:12 -06001812 if (scsi_add_host_with_dma(vha->host, &fc_vport->dev,
1813 &ha->pdev->dev)) {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001814 ql_dbg(ql_dbg_user, vha, 0x7083,
1815 "scsi_add_host failure for VP[%d].\n", vha->vp_idx);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001816 goto vport_create_failed_2;
1817 }
1818
1819 /* initialize attributes */
Mike Christied2b5f102010-09-15 16:52:30 -05001820 fc_host_dev_loss_tmo(vha->host) = ha->port_down_retry_count;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001821 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
1822 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
1823 fc_host_supported_classes(vha->host) =
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001824 fc_host_supported_classes(base_vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001825 fc_host_supported_speeds(vha->host) =
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001826 fc_host_supported_speeds(base_vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001827
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04001828 qlt_vport_create(vha, ha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001829 qla24xx_vport_disable(fc_vport, disable);
1830
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07001831 if (ha->flags.cpu_affinity_enabled) {
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07001832 req = ha->req_q_map[1];
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001833 ql_dbg(ql_dbg_multiq, vha, 0xc000,
1834 "Request queue %p attached with "
1835 "VP[%d], cpu affinity =%d\n",
1836 req, vha->vp_idx, ha->flags.cpu_affinity_enabled);
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07001837 goto vport_queue;
1838 } else if (ql2xmaxqueues == 1 || !ha->npiv_info)
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001839 goto vport_queue;
1840 /* Create a request queue in QoS mode for the vport */
Anirban Chakraborty40859ae2009-06-03 09:55:16 -07001841 for (cnt = 0; cnt < ha->nvram_npiv_size; cnt++) {
1842 if (memcmp(ha->npiv_info[cnt].port_name, vha->port_name, 8) == 0
1843 && memcmp(ha->npiv_info[cnt].node_name, vha->node_name,
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07001844 8) == 0) {
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001845 qos = ha->npiv_info[cnt].q_qos;
1846 break;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001847 }
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001848 }
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08001849
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001850 if (qos) {
1851 ret = qla25xx_create_req_que(ha, options, vha->vp_idx, 0, 0,
1852 qos);
1853 if (!ret)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001854 ql_log(ql_log_warn, vha, 0x7084,
1855 "Can't create request queue for VP[%d]\n",
1856 vha->vp_idx);
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07001857 else {
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001858 ql_dbg(ql_dbg_multiq, vha, 0xc001,
1859 "Request Que:%d Q0s: %d) created for VP[%d]\n",
1860 ret, qos, vha->vp_idx);
1861 ql_dbg(ql_dbg_user, vha, 0x7085,
1862 "Request Que:%d Q0s: %d) created for VP[%d]\n",
1863 ret, qos, vha->vp_idx);
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07001864 req = ha->req_q_map[ret];
1865 }
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001866 }
1867
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001868vport_queue:
Anirban Chakraborty59e0b8b2009-06-03 09:55:19 -07001869 vha->req = req;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001870 return 0;
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001871
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001872vport_create_failed_2:
1873 qla24xx_disable_vp(vha);
1874 qla24xx_deallocate_vp_id(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001875 scsi_host_put(vha->host);
1876 return FC_VPORT_FAILED;
1877}
1878
Adrian Bunka824ebb2008-01-17 09:02:15 -08001879static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001880qla24xx_vport_delete(struct fc_vport *fc_vport)
1881{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001882 scsi_qla_host_t *vha = fc_vport->dd_data;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001883 struct qla_hw_data *ha = vha->hw;
1884 uint16_t id = vha->vp_idx;
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07001885
1886 while (test_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags) ||
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001887 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags))
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07001888 msleep(1000);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001889
1890 qla24xx_disable_vp(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001891
Arun Easifeafb7b2010-09-03 14:57:00 -07001892 vha->flags.delete_progress = 1;
1893
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001894 fc_remove_host(vha->host);
1895
1896 scsi_remove_host(vha->host);
1897
Arun Easi9f406822011-05-10 11:18:17 -07001898 /* Allow timer to run to drain queued items, when removing vp */
1899 qla24xx_deallocate_vp_id(vha);
1900
Arun Easifeafb7b2010-09-03 14:57:00 -07001901 if (vha->timer_active) {
1902 qla2x00_vp_stop_timer(vha);
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001903 ql_dbg(ql_dbg_user, vha, 0x7086,
1904 "Timer for the VP[%d] has stopped\n", vha->vp_idx);
Arun Easifeafb7b2010-09-03 14:57:00 -07001905 }
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001906
Arun Easifeafb7b2010-09-03 14:57:00 -07001907 /* No pending activities shall be there on the vha now */
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001908 if (ql2xextended_error_logging & ql_dbg_user)
1909 msleep(random32()%10); /* Just to see if something falls on
Arun Easifeafb7b2010-09-03 14:57:00 -07001910 * the net we have placed below */
1911
1912 BUG_ON(atomic_read(&vha->vref_count));
1913
1914 qla2x00_free_fcports(vha);
1915
Andrew Vasquez0d6e61b2009-08-25 11:36:19 -07001916 mutex_lock(&ha->vport_lock);
1917 ha->cur_vport_count--;
1918 clear_bit(vha->vp_idx, ha->vp_idx_map);
1919 mutex_unlock(&ha->vport_lock);
1920
Anirban Chakraborty7163ea82009-08-05 09:18:40 -07001921 if (vha->req->id && !ha->flags.cpu_affinity_enabled) {
Anirban Chakraborty2afa19a2009-04-06 22:33:40 -07001922 if (qla25xx_delete_req_que(vha, vha->req) != QLA_SUCCESS)
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001923 ql_log(ql_log_warn, vha, 0x7087,
1924 "Queue delete failed.\n");
Anirban Chakrabortycf5a1632009-02-08 20:50:13 -08001925 }
1926
Saurav Kashyap7c3df132011-07-14 12:00:13 -07001927 ql_log(ql_log_info, vha, 0x7088, "VP[%d] deleted.\n", id);
Chad Dupuiscfb09192011-11-18 09:03:07 -08001928 scsi_host_put(vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001929 return 0;
1930}
1931
Adrian Bunka824ebb2008-01-17 09:02:15 -08001932static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001933qla24xx_vport_disable(struct fc_vport *fc_vport, bool disable)
1934{
1935 scsi_qla_host_t *vha = fc_vport->dd_data;
1936
1937 if (disable)
1938 qla24xx_disable_vp(vha);
1939 else
1940 qla24xx_enable_vp(vha);
1941
1942 return 0;
1943}
1944
Andrew Vasquez1c97a122005-04-21 16:13:36 -04001945struct fc_function_template qla2xxx_transport_functions = {
8482e1182005-04-17 15:04:54 -05001946
1947 .show_host_node_name = 1,
1948 .show_host_port_name = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001949 .show_host_supported_classes = 1,
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001950 .show_host_supported_speeds = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001951
8482e1182005-04-17 15:04:54 -05001952 .get_host_port_id = qla2x00_get_host_port_id,
1953 .show_host_port_id = 1,
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001954 .get_host_speed = qla2x00_get_host_speed,
1955 .show_host_speed = 1,
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001956 .get_host_port_type = qla2x00_get_host_port_type,
1957 .show_host_port_type = 1,
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001958 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
1959 .show_host_symbolic_name = 1,
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001960 .set_host_system_hostname = qla2x00_set_host_system_hostname,
1961 .show_host_system_hostname = 1,
Andrew Vasquez90991c82006-10-02 12:00:46 -07001962 .get_host_fabric_name = qla2x00_get_host_fabric_name,
1963 .show_host_fabric_name = 1,
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001964 .get_host_port_state = qla2x00_get_host_port_state,
1965 .show_host_port_state = 1,
8482e1182005-04-17 15:04:54 -05001966
bdf79622005-04-17 15:06:53 -05001967 .dd_fcrport_size = sizeof(struct fc_port *),
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001968 .show_rport_supported_classes = 1,
8482e1182005-04-17 15:04:54 -05001969
1970 .get_starget_node_name = qla2x00_get_starget_node_name,
1971 .show_starget_node_name = 1,
1972 .get_starget_port_name = qla2x00_get_starget_port_name,
1973 .show_starget_port_name = 1,
1974 .get_starget_port_id = qla2x00_get_starget_port_id,
1975 .show_starget_port_id = 1,
1976
8482e1182005-04-17 15:04:54 -05001977 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
1978 .show_rport_dev_loss_tmo = 1,
1979
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001980 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001981 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
1982 .terminate_rport_io = qla2x00_terminate_rport_io,
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001983 .get_fc_host_stats = qla2x00_get_fc_host_stats,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001984
1985 .vport_create = qla24xx_vport_create,
1986 .vport_disable = qla24xx_vport_disable,
1987 .vport_delete = qla24xx_vport_delete,
Giridhar Malavali9a069e12010-01-12 13:02:47 -08001988 .bsg_request = qla24xx_bsg_request,
1989 .bsg_timeout = qla24xx_bsg_timeout,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001990};
1991
1992struct fc_function_template qla2xxx_transport_vport_functions = {
1993
1994 .show_host_node_name = 1,
1995 .show_host_port_name = 1,
1996 .show_host_supported_classes = 1,
1997
1998 .get_host_port_id = qla2x00_get_host_port_id,
1999 .show_host_port_id = 1,
2000 .get_host_speed = qla2x00_get_host_speed,
2001 .show_host_speed = 1,
2002 .get_host_port_type = qla2x00_get_host_port_type,
2003 .show_host_port_type = 1,
2004 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
2005 .show_host_symbolic_name = 1,
2006 .set_host_system_hostname = qla2x00_set_host_system_hostname,
2007 .show_host_system_hostname = 1,
2008 .get_host_fabric_name = qla2x00_get_host_fabric_name,
2009 .show_host_fabric_name = 1,
2010 .get_host_port_state = qla2x00_get_host_port_state,
2011 .show_host_port_state = 1,
2012
2013 .dd_fcrport_size = sizeof(struct fc_port *),
2014 .show_rport_supported_classes = 1,
2015
2016 .get_starget_node_name = qla2x00_get_starget_node_name,
2017 .show_starget_node_name = 1,
2018 .get_starget_port_name = qla2x00_get_starget_port_name,
2019 .show_starget_port_name = 1,
2020 .get_starget_port_id = qla2x00_get_starget_port_id,
2021 .show_starget_port_id = 1,
2022
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002023 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
2024 .show_rport_dev_loss_tmo = 1,
2025
2026 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07002027 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
2028 .terminate_rport_io = qla2x00_terminate_rport_io,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002029 .get_fc_host_stats = qla2x00_get_fc_host_stats,
Giridhar Malavali9a069e12010-01-12 13:02:47 -08002030 .bsg_request = qla24xx_bsg_request,
2031 .bsg_timeout = qla24xx_bsg_timeout,
8482e1182005-04-17 15:04:54 -05002032};
2033
8482e1182005-04-17 15:04:54 -05002034void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002035qla2x00_init_host_attr(scsi_qla_host_t *vha)
8482e1182005-04-17 15:04:54 -05002036{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002037 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002038 u32 speed = FC_PORTSPEED_UNKNOWN;
2039
Mike Christied2b5f102010-09-15 16:52:30 -05002040 fc_host_dev_loss_tmo(vha->host) = ha->port_down_retry_count;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002041 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
2042 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
Nicholas Bellinger2d70c102012-05-15 14:34:28 -04002043 fc_host_supported_classes(vha->host) = ha->tgt.enable_class_2 ?
2044 (FC_COS_CLASS2|FC_COS_CLASS3) : FC_COS_CLASS3;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002045 fc_host_max_npiv_vports(vha->host) = ha->max_npiv_vports;
2046 fc_host_npiv_vports_inuse(vha->host) = ha->cur_vport_count;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002047
Giridhar Malavali6246b8a2012-02-09 11:15:34 -08002048 if (IS_CNA_CAPABLE(ha))
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002049 speed = FC_PORTSPEED_10GBIT;
Giridhar Malavali6f606d22012-05-15 14:34:18 -04002050 else if (IS_QLA2031(ha))
2051 speed = FC_PORTSPEED_16GBIT | FC_PORTSPEED_8GBIT |
2052 FC_PORTSPEED_4GBIT;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08002053 else if (IS_QLA25XX(ha))
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002054 speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT |
2055 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002056 else if (IS_QLA24XX_TYPE(ha))
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07002057 speed = FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
2058 FC_PORTSPEED_1GBIT;
2059 else if (IS_QLA23XX(ha))
2060 speed = FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
2061 else
2062 speed = FC_PORTSPEED_1GBIT;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08002063 fc_host_supported_speeds(vha->host) = speed;
8482e1182005-04-17 15:04:54 -05002064}