blob: 877990115f5343d1208628a1853dbf28277b7080 [file] [log] [blame]
8482e112005-04-17 15:04:54 -05001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Andrew Vasquez01e58d82008-04-03 13:13:13 -07003 * Copyright (c) 2003-2008 QLogic Corporation
8482e112005-04-17 15:04:54 -05004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
8482e112005-04-17 15:04:54 -05006 */
7#include "qla_def.h"
8
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07009#include <linux/kthread.h>
7aaef272005-04-17 16:32:42 -050010#include <linux/vmalloc.h>
FUJITA Tomonori00eabe72008-07-28 11:59:20 +090011#include <linux/delay.h>
8482e112005-04-17 15:04:54 -050012
Adrian Bunka824ebb2008-01-17 09:02:15 -080013static int qla24xx_vport_disable(struct fc_vport *, bool);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -070014
8482e112005-04-17 15:04:54 -050015/* SYSFS attributes --------------------------------------------------------- */
16
17static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +080018qla2x00_sysfs_read_fw_dump(struct kobject *kobj,
19 struct bin_attribute *bin_attr,
20 char *buf, loff_t off, size_t count)
8482e112005-04-17 15:04:54 -050021{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080022 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e112005-04-17 15:04:54 -050023 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080024 struct qla_hw_data *ha = vha->hw;
8482e112005-04-17 15:04:54 -050025
26 if (ha->fw_dump_reading == 0)
27 return 0;
8482e112005-04-17 15:04:54 -050028
Akinobu Mitab3dc9082008-07-24 08:31:47 -070029 return memory_read_from_buffer(buf, count, &off, ha->fw_dump,
30 ha->fw_dump_len);
8482e112005-04-17 15:04:54 -050031}
32
33static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +080034qla2x00_sysfs_write_fw_dump(struct kobject *kobj,
35 struct bin_attribute *bin_attr,
36 char *buf, loff_t off, size_t count)
8482e112005-04-17 15:04:54 -050037{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080038 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e112005-04-17 15:04:54 -050039 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080040 struct qla_hw_data *ha = vha->hw;
8482e112005-04-17 15:04:54 -050041 int reading;
8482e112005-04-17 15:04:54 -050042
43 if (off != 0)
44 return (0);
45
46 reading = simple_strtol(buf, NULL, 10);
47 switch (reading) {
48 case 0:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070049 if (!ha->fw_dump_reading)
50 break;
8482e112005-04-17 15:04:54 -050051
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070052 qla_printk(KERN_INFO, ha,
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080053 "Firmware dump cleared on (%ld).\n", vha->host_no);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070054
55 ha->fw_dump_reading = 0;
56 ha->fw_dumped = 0;
8482e112005-04-17 15:04:54 -050057 break;
58 case 1:
Andrew Vasquezd4e3e042006-05-17 15:09:50 -070059 if (ha->fw_dumped && !ha->fw_dump_reading) {
8482e112005-04-17 15:04:54 -050060 ha->fw_dump_reading = 1;
61
8482e112005-04-17 15:04:54 -050062 qla_printk(KERN_INFO, ha,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070063 "Raw firmware dump ready for read on (%ld).\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080064 vha->host_no);
8482e112005-04-17 15:04:54 -050065 }
66 break;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070067 case 2:
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080068 qla2x00_alloc_fw_dump(vha);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070069 break;
Andrew Vasquez68af0812008-05-12 22:21:13 -070070 case 3:
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080071 qla2x00_system_error(vha);
Andrew Vasquez68af0812008-05-12 22:21:13 -070072 break;
8482e112005-04-17 15:04:54 -050073 }
74 return (count);
75}
76
77static struct bin_attribute sysfs_fw_dump_attr = {
78 .attr = {
79 .name = "fw_dump",
80 .mode = S_IRUSR | S_IWUSR,
8482e112005-04-17 15:04:54 -050081 },
82 .size = 0,
83 .read = qla2x00_sysfs_read_fw_dump,
84 .write = qla2x00_sysfs_write_fw_dump,
85};
86
87static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +080088qla2x00_sysfs_read_nvram(struct kobject *kobj,
89 struct bin_attribute *bin_attr,
90 char *buf, loff_t off, size_t count)
8482e112005-04-17 15:04:54 -050091{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080092 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e112005-04-17 15:04:54 -050093 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -080094 struct qla_hw_data *ha = vha->hw;
8482e112005-04-17 15:04:54 -050095
Akinobu Mitab3dc9082008-07-24 08:31:47 -070096 if (!capable(CAP_SYS_ADMIN))
8482e112005-04-17 15:04:54 -050097 return 0;
98
Seokmann Ju281afe12007-07-26 13:43:34 -070099 /* Read NVRAM data from cache. */
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700100 return memory_read_from_buffer(buf, count, &off, ha->nvram,
101 ha->nvram_size);
8482e112005-04-17 15:04:54 -0500102}
103
104static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800105qla2x00_sysfs_write_nvram(struct kobject *kobj,
106 struct bin_attribute *bin_attr,
107 char *buf, loff_t off, size_t count)
8482e112005-04-17 15:04:54 -0500108{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800109 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e112005-04-17 15:04:54 -0500110 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800111 struct qla_hw_data *ha = vha->hw;
8482e112005-04-17 15:04:54 -0500112 uint16_t cnt;
8482e112005-04-17 15:04:54 -0500113
Andrew Vasquez459c5372005-07-06 10:31:07 -0700114 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size)
8482e112005-04-17 15:04:54 -0500115 return 0;
116
117 /* Checksum NVRAM. */
Andrew Vasqueze4289242007-07-19 15:05:56 -0700118 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez459c5372005-07-06 10:31:07 -0700119 uint32_t *iter;
120 uint32_t chksum;
121
122 iter = (uint32_t *)buf;
123 chksum = 0;
124 for (cnt = 0; cnt < ((count >> 2) - 1); cnt++)
125 chksum += le32_to_cpu(*iter++);
126 chksum = ~chksum + 1;
127 *iter = cpu_to_le32(chksum);
128 } else {
129 uint8_t *iter;
130 uint8_t chksum;
131
132 iter = (uint8_t *)buf;
133 chksum = 0;
134 for (cnt = 0; cnt < count - 1; cnt++)
135 chksum += *iter++;
136 chksum = ~chksum + 1;
137 *iter = chksum;
138 }
8482e112005-04-17 15:04:54 -0500139
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700140 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
141 qla_printk(KERN_WARNING, ha,
142 "HBA not online, failing NVRAM update.\n");
143 return -EAGAIN;
144 }
145
8482e112005-04-17 15:04:54 -0500146 /* Write NVRAM. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800147 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->nvram_base, count);
148 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->nvram, ha->nvram_base,
Seokmann Ju281afe12007-07-26 13:43:34 -0700149 count);
8482e112005-04-17 15:04:54 -0500150
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700151 /* NVRAM settings take effect immediately. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800152 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700153 qla2xxx_wake_dpc(vha);
154 qla2x00_wait_for_chip_reset(vha);
Andrew Vasquez26b8d3482007-01-29 10:22:28 -0800155
8482e112005-04-17 15:04:54 -0500156 return (count);
157}
158
159static struct bin_attribute sysfs_nvram_attr = {
160 .attr = {
161 .name = "nvram",
162 .mode = S_IRUSR | S_IWUSR,
8482e112005-04-17 15:04:54 -0500163 },
andrew.vasquez@qlogic.com1b3f6362006-01-31 16:05:12 -0800164 .size = 512,
8482e112005-04-17 15:04:54 -0500165 .read = qla2x00_sysfs_read_nvram,
166 .write = qla2x00_sysfs_write_nvram,
167};
168
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800169static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800170qla2x00_sysfs_read_optrom(struct kobject *kobj,
171 struct bin_attribute *bin_attr,
172 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800173{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800174 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800175 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800176 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800177
178 if (ha->optrom_state != QLA_SREADING)
179 return 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800180
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700181 return memory_read_from_buffer(buf, count, &off, ha->optrom_buffer,
182 ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800183}
184
185static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800186qla2x00_sysfs_write_optrom(struct kobject *kobj,
187 struct bin_attribute *bin_attr,
188 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800189{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800190 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800191 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800192 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800193
194 if (ha->optrom_state != QLA_SWRITING)
195 return -EINVAL;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700196 if (off > ha->optrom_region_size)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800197 return -ERANGE;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700198 if (off + count > ha->optrom_region_size)
199 count = ha->optrom_region_size - off;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800200
201 memcpy(&ha->optrom_buffer[off], buf, count);
202
203 return count;
204}
205
206static struct bin_attribute sysfs_optrom_attr = {
207 .attr = {
208 .name = "optrom",
209 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800210 },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700211 .size = 0,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800212 .read = qla2x00_sysfs_read_optrom,
213 .write = qla2x00_sysfs_write_optrom,
214};
215
216static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800217qla2x00_sysfs_write_optrom_ctl(struct kobject *kobj,
218 struct bin_attribute *bin_attr,
219 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800220{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800221 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800222 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800223 struct qla_hw_data *ha = vha->hw;
224
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700225 uint32_t start = 0;
226 uint32_t size = ha->optrom_size;
227 int val, valid;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800228
229 if (off)
230 return 0;
231
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700232 if (sscanf(buf, "%d:%x:%x", &val, &start, &size) < 1)
233 return -EINVAL;
234 if (start > ha->optrom_size)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800235 return -EINVAL;
236
237 switch (val) {
238 case 0:
239 if (ha->optrom_state != QLA_SREADING &&
240 ha->optrom_state != QLA_SWRITING)
241 break;
242
243 ha->optrom_state = QLA_SWAITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700244
245 DEBUG2(qla_printk(KERN_INFO, ha,
246 "Freeing flash region allocation -- 0x%x bytes.\n",
247 ha->optrom_region_size));
248
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800249 vfree(ha->optrom_buffer);
250 ha->optrom_buffer = NULL;
251 break;
252 case 1:
253 if (ha->optrom_state != QLA_SWAITING)
254 break;
255
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700256 ha->optrom_region_start = start;
257 ha->optrom_region_size = start + size > ha->optrom_size ?
258 ha->optrom_size - start : size;
259
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800260 ha->optrom_state = QLA_SREADING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700261 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800262 if (ha->optrom_buffer == NULL) {
263 qla_printk(KERN_WARNING, ha,
264 "Unable to allocate memory for optrom retrieval "
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700265 "(%x).\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800266
267 ha->optrom_state = QLA_SWAITING;
268 return count;
269 }
270
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700271 DEBUG2(qla_printk(KERN_INFO, ha,
272 "Reading flash region -- 0x%x/0x%x.\n",
273 ha->optrom_region_start, ha->optrom_region_size));
274
275 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800276 ha->isp_ops->read_optrom(vha, ha->optrom_buffer,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700277 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800278 break;
279 case 2:
280 if (ha->optrom_state != QLA_SWAITING)
281 break;
282
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700283 /*
284 * We need to be more restrictive on which FLASH regions are
285 * allowed to be updated via user-space. Regions accessible
286 * via this method include:
287 *
288 * ISP21xx/ISP22xx/ISP23xx type boards:
289 *
290 * 0x000000 -> 0x020000 -- Boot code.
291 *
292 * ISP2322/ISP24xx type boards:
293 *
294 * 0x000000 -> 0x07ffff -- Boot code.
295 * 0x080000 -> 0x0fffff -- Firmware.
296 *
297 * ISP25xx type boards:
298 *
299 * 0x000000 -> 0x07ffff -- Boot code.
300 * 0x080000 -> 0x0fffff -- Firmware.
301 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
302 */
303 valid = 0;
304 if (ha->optrom_size == OPTROM_SIZE_2300 && start == 0)
305 valid = 1;
Andrew Vasquezc00d8992008-09-11 21:22:49 -0700306 else if (start == (ha->flt_region_boot * 4) ||
307 start == (ha->flt_region_fw * 4))
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700308 valid = 1;
Andrew Vasquez6431c5d2009-03-05 11:07:00 -0800309 else if (IS_QLA25XX(ha) || IS_QLA81XX(ha))
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700310 valid = 1;
311 if (!valid) {
312 qla_printk(KERN_WARNING, ha,
313 "Invalid start region 0x%x/0x%x.\n", start, size);
314 return -EINVAL;
315 }
316
317 ha->optrom_region_start = start;
318 ha->optrom_region_size = start + size > ha->optrom_size ?
319 ha->optrom_size - start : size;
320
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800321 ha->optrom_state = QLA_SWRITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700322 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800323 if (ha->optrom_buffer == NULL) {
324 qla_printk(KERN_WARNING, ha,
325 "Unable to allocate memory for optrom update "
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700326 "(%x).\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800327
328 ha->optrom_state = QLA_SWAITING;
329 return count;
330 }
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700331
332 DEBUG2(qla_printk(KERN_INFO, ha,
333 "Staging flash region write -- 0x%x/0x%x.\n",
334 ha->optrom_region_start, ha->optrom_region_size));
335
336 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800337 break;
338 case 3:
339 if (ha->optrom_state != QLA_SWRITING)
340 break;
341
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700342 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
343 qla_printk(KERN_WARNING, ha,
344 "HBA not online, failing flash update.\n");
345 return -EAGAIN;
346 }
347
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700348 DEBUG2(qla_printk(KERN_INFO, ha,
349 "Writing flash region -- 0x%x/0x%x.\n",
350 ha->optrom_region_start, ha->optrom_region_size));
351
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800352 ha->isp_ops->write_optrom(vha, ha->optrom_buffer,
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700353 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800354 break;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700355 default:
356 count = -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800357 }
358 return count;
359}
360
361static struct bin_attribute sysfs_optrom_ctl_attr = {
362 .attr = {
363 .name = "optrom_ctl",
364 .mode = S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800365 },
366 .size = 0,
367 .write = qla2x00_sysfs_write_optrom_ctl,
368};
369
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800370static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800371qla2x00_sysfs_read_vpd(struct kobject *kobj,
372 struct bin_attribute *bin_attr,
373 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800374{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800375 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800376 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800377 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800378
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700379 if (!capable(CAP_SYS_ADMIN))
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800380 return 0;
381
Seokmann Ju281afe12007-07-26 13:43:34 -0700382 /* Read NVRAM data from cache. */
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700383 return memory_read_from_buffer(buf, count, &off, ha->vpd, ha->vpd_size);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800384}
385
386static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800387qla2x00_sysfs_write_vpd(struct kobject *kobj,
388 struct bin_attribute *bin_attr,
389 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800390{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800391 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800392 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800393 struct qla_hw_data *ha = vha->hw;
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700394 uint8_t *tmp_data;
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800395
396 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size)
397 return 0;
398
Lalit Chandivade2533cf62009-03-24 09:08:07 -0700399 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
400 qla_printk(KERN_WARNING, ha,
401 "HBA not online, failing VPD update.\n");
402 return -EAGAIN;
403 }
404
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800405 /* Write NVRAM. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800406 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->vpd_base, count);
407 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd, ha->vpd_base, count);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800408
Lalit Chandivaded0c3eef2009-03-24 09:08:09 -0700409 /* Update flash version information for 4Gb & above. */
410 if (!IS_FWI2_CAPABLE(ha))
411 goto done;
412
413 tmp_data = vmalloc(256);
414 if (!tmp_data) {
415 qla_printk(KERN_WARNING, ha,
416 "Unable to allocate memory for VPD information update.\n");
417 goto done;
418 }
419 ha->isp_ops->get_flash_version(vha, tmp_data);
420 vfree(tmp_data);
421done:
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800422 return count;
423}
424
425static struct bin_attribute sysfs_vpd_attr = {
426 .attr = {
427 .name = "vpd",
428 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800429 },
430 .size = 0,
431 .read = qla2x00_sysfs_read_vpd,
432 .write = qla2x00_sysfs_write_vpd,
433};
434
Andrew Vasquez88729e52006-06-23 16:10:50 -0700435static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800436qla2x00_sysfs_read_sfp(struct kobject *kobj,
437 struct bin_attribute *bin_attr,
438 char *buf, loff_t off, size_t count)
Andrew Vasquez88729e52006-06-23 16:10:50 -0700439{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800440 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700441 struct device, kobj)));
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800442 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez88729e52006-06-23 16:10:50 -0700443 uint16_t iter, addr, offset;
444 int rval;
445
446 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != SFP_DEV_SIZE * 2)
447 return 0;
448
Andrew Vasqueze8711082008-01-31 12:33:48 -0800449 if (ha->sfp_data)
450 goto do_read;
451
452 ha->sfp_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
453 &ha->sfp_data_dma);
454 if (!ha->sfp_data) {
455 qla_printk(KERN_WARNING, ha,
456 "Unable to allocate memory for SFP read-data.\n");
457 return 0;
458 }
459
460do_read:
461 memset(ha->sfp_data, 0, SFP_BLOCK_SIZE);
Andrew Vasquez88729e52006-06-23 16:10:50 -0700462 addr = 0xa0;
463 for (iter = 0, offset = 0; iter < (SFP_DEV_SIZE * 2) / SFP_BLOCK_SIZE;
464 iter++, offset += SFP_BLOCK_SIZE) {
465 if (iter == 4) {
466 /* Skip to next device address. */
467 addr = 0xa2;
468 offset = 0;
469 }
470
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800471 rval = qla2x00_read_sfp(vha, ha->sfp_data_dma, addr, offset,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700472 SFP_BLOCK_SIZE);
473 if (rval != QLA_SUCCESS) {
474 qla_printk(KERN_WARNING, ha,
475 "Unable to read SFP data (%x/%x/%x).\n", rval,
476 addr, offset);
477 count = 0;
478 break;
479 }
480 memcpy(buf, ha->sfp_data, SFP_BLOCK_SIZE);
481 buf += SFP_BLOCK_SIZE;
482 }
483
484 return count;
485}
486
487static struct bin_attribute sysfs_sfp_attr = {
488 .attr = {
489 .name = "sfp",
490 .mode = S_IRUSR | S_IWUSR,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700491 },
492 .size = SFP_DEV_SIZE * 2,
493 .read = qla2x00_sysfs_read_sfp,
494};
495
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700496static ssize_t
497qla2x00_sysfs_write_reset(struct kobject *kobj,
498 struct bin_attribute *bin_attr,
499 char *buf, loff_t off, size_t count)
500{
501 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
502 struct device, kobj)));
503 struct qla_hw_data *ha = vha->hw;
504 int type;
505
506 if (off != 0)
507 return 0;
508
509 type = simple_strtol(buf, NULL, 10);
510 switch (type) {
511 case 0x2025c:
512 qla_printk(KERN_INFO, ha,
513 "Issuing ISP reset on (%ld).\n", vha->host_no);
514
515 scsi_block_requests(vha->host);
516 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
517 qla2xxx_wake_dpc(vha);
518 qla2x00_wait_for_chip_reset(vha);
519 scsi_unblock_requests(vha->host);
520 break;
521 case 0x2025d:
522 if (!IS_QLA81XX(ha))
523 break;
524
525 qla_printk(KERN_INFO, ha,
526 "Issuing MPI reset on (%ld).\n", vha->host_no);
527
528 /* Make sure FC side is not in reset */
529 qla2x00_wait_for_hba_online(vha);
530
531 /* Issue MPI reset */
532 scsi_block_requests(vha->host);
533 if (qla81xx_restart_mpi_firmware(vha) != QLA_SUCCESS)
534 qla_printk(KERN_WARNING, ha,
535 "MPI reset failed on (%ld).\n", vha->host_no);
536 scsi_unblock_requests(vha->host);
537 break;
538 }
539 return count;
540}
541
542static struct bin_attribute sysfs_reset_attr = {
543 .attr = {
544 .name = "reset",
545 .mode = S_IWUSR,
546 },
547 .size = 0,
548 .write = qla2x00_sysfs_write_reset,
549};
550
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700551static ssize_t
552qla2x00_sysfs_write_edc(struct kobject *kobj,
553 struct bin_attribute *bin_attr,
554 char *buf, loff_t off, size_t count)
555{
556 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
557 struct device, kobj)));
558 struct qla_hw_data *ha = vha->hw;
559 uint16_t dev, adr, opt, len;
560 int rval;
561
562 ha->edc_data_len = 0;
563
564 if (!capable(CAP_SYS_ADMIN) || off != 0 || count < 8)
565 return 0;
566
567 if (!ha->edc_data) {
568 ha->edc_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
569 &ha->edc_data_dma);
570 if (!ha->edc_data) {
571 DEBUG2(qla_printk(KERN_INFO, ha,
572 "Unable to allocate memory for EDC write.\n"));
573 return 0;
574 }
575 }
576
577 dev = le16_to_cpup((void *)&buf[0]);
578 adr = le16_to_cpup((void *)&buf[2]);
579 opt = le16_to_cpup((void *)&buf[4]);
580 len = le16_to_cpup((void *)&buf[6]);
581
582 if (!(opt & BIT_0))
583 if (len == 0 || len > DMA_POOL_SIZE || len > count - 8)
584 return -EINVAL;
585
586 memcpy(ha->edc_data, &buf[8], len);
587
588 rval = qla2x00_write_edc(vha, dev, adr, ha->edc_data_dma,
589 ha->edc_data, len, opt);
590 if (rval != QLA_SUCCESS) {
591 DEBUG2(qla_printk(KERN_INFO, ha,
592 "Unable to write EDC (%x) %02x:%02x:%04x:%02x:%02x.\n",
593 rval, dev, adr, opt, len, *buf));
594 return 0;
595 }
596
597 return count;
598}
599
600static struct bin_attribute sysfs_edc_attr = {
601 .attr = {
602 .name = "edc",
603 .mode = S_IWUSR,
604 },
605 .size = 0,
606 .write = qla2x00_sysfs_write_edc,
607};
608
609static ssize_t
610qla2x00_sysfs_write_edc_status(struct kobject *kobj,
611 struct bin_attribute *bin_attr,
612 char *buf, loff_t off, size_t count)
613{
614 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
615 struct device, kobj)));
616 struct qla_hw_data *ha = vha->hw;
617 uint16_t dev, adr, opt, len;
618 int rval;
619
620 ha->edc_data_len = 0;
621
622 if (!capable(CAP_SYS_ADMIN) || off != 0 || count < 8)
623 return 0;
624
625 if (!ha->edc_data) {
626 ha->edc_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
627 &ha->edc_data_dma);
628 if (!ha->edc_data) {
629 DEBUG2(qla_printk(KERN_INFO, ha,
630 "Unable to allocate memory for EDC status.\n"));
631 return 0;
632 }
633 }
634
635 dev = le16_to_cpup((void *)&buf[0]);
636 adr = le16_to_cpup((void *)&buf[2]);
637 opt = le16_to_cpup((void *)&buf[4]);
638 len = le16_to_cpup((void *)&buf[6]);
639
640 if (!(opt & BIT_0))
641 if (len == 0 || len > DMA_POOL_SIZE)
642 return -EINVAL;
643
644 memset(ha->edc_data, 0, len);
645 rval = qla2x00_read_edc(vha, dev, adr, ha->edc_data_dma,
646 ha->edc_data, len, opt);
647 if (rval != QLA_SUCCESS) {
648 DEBUG2(qla_printk(KERN_INFO, ha,
649 "Unable to write EDC status (%x) %02x:%02x:%04x:%02x.\n",
650 rval, dev, adr, opt, len));
651 return 0;
652 }
653
654 ha->edc_data_len = len;
655
656 return count;
657}
658
659static ssize_t
660qla2x00_sysfs_read_edc_status(struct kobject *kobj,
661 struct bin_attribute *bin_attr,
662 char *buf, loff_t off, size_t count)
663{
664 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
665 struct device, kobj)));
666 struct qla_hw_data *ha = vha->hw;
667
668 if (!capable(CAP_SYS_ADMIN) || off != 0 || count == 0)
669 return 0;
670
671 if (!ha->edc_data || ha->edc_data_len == 0 || ha->edc_data_len > count)
672 return -EINVAL;
673
674 memcpy(buf, ha->edc_data, ha->edc_data_len);
675
676 return ha->edc_data_len;
677}
678
679static struct bin_attribute sysfs_edc_status_attr = {
680 .attr = {
681 .name = "edc_status",
682 .mode = S_IRUSR | S_IWUSR,
683 },
684 .size = 0,
685 .write = qla2x00_sysfs_write_edc_status,
686 .read = qla2x00_sysfs_read_edc_status,
687};
688
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700689static struct sysfs_entry {
690 char *name;
691 struct bin_attribute *attr;
692 int is4GBp_only;
693} bin_file_entries[] = {
694 { "fw_dump", &sysfs_fw_dump_attr, },
695 { "nvram", &sysfs_nvram_attr, },
696 { "optrom", &sysfs_optrom_attr, },
697 { "optrom_ctl", &sysfs_optrom_ctl_attr, },
698 { "vpd", &sysfs_vpd_attr, 1 },
699 { "sfp", &sysfs_sfp_attr, 1 },
Lalit Chandivade6e181be2009-03-26 08:49:17 -0700700 { "reset", &sysfs_reset_attr, },
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700701 { "edc", &sysfs_edc_attr, 2 },
702 { "edc_status", &sysfs_edc_status_attr, 2 },
Randy Dunlap46ddab72006-11-27 09:35:42 -0800703 { NULL },
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700704};
705
8482e112005-04-17 15:04:54 -0500706void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800707qla2x00_alloc_sysfs_attr(scsi_qla_host_t *vha)
8482e112005-04-17 15:04:54 -0500708{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800709 struct Scsi_Host *host = vha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700710 struct sysfs_entry *iter;
711 int ret;
8482e112005-04-17 15:04:54 -0500712
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700713 for (iter = bin_file_entries; iter->name; iter++) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800714 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(vha->hw))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700715 continue;
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700716 if (iter->is4GBp_only == 2 && !IS_QLA25XX(vha->hw))
717 continue;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700718
719 ret = sysfs_create_bin_file(&host->shost_gendev.kobj,
720 iter->attr);
721 if (ret)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800722 qla_printk(KERN_INFO, vha->hw,
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700723 "Unable to create sysfs %s binary attribute "
724 "(%d).\n", iter->name, ret);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700725 }
8482e112005-04-17 15:04:54 -0500726}
727
728void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800729qla2x00_free_sysfs_attr(scsi_qla_host_t *vha)
8482e112005-04-17 15:04:54 -0500730{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800731 struct Scsi_Host *host = vha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700732 struct sysfs_entry *iter;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800733 struct qla_hw_data *ha = vha->hw;
8482e112005-04-17 15:04:54 -0500734
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700735 for (iter = bin_file_entries; iter->name; iter++) {
Andrew Vasqueze4289242007-07-19 15:05:56 -0700736 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(ha))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700737 continue;
Joe Carnuccioad0ecd62009-03-24 09:08:12 -0700738 if (iter->is4GBp_only == 2 && !IS_QLA25XX(ha))
739 continue;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700740
Andrew Vasquez7914d002006-06-23 16:10:55 -0700741 sysfs_remove_bin_file(&host->shost_gendev.kobj,
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700742 iter->attr);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700743 }
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800744
745 if (ha->beacon_blink_led == 1)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800746 ha->isp_ops->beacon_off(vha);
8482e112005-04-17 15:04:54 -0500747}
748
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700749/* Scsi_Host attributes. */
750
751static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100752qla2x00_drvr_version_show(struct device *dev,
753 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700754{
755 return snprintf(buf, PAGE_SIZE, "%s\n", qla2x00_version_str);
756}
757
758static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100759qla2x00_fw_version_show(struct device *dev,
760 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700761{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800762 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
763 struct qla_hw_data *ha = vha->hw;
764 char fw_str[128];
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700765
766 return snprintf(buf, PAGE_SIZE, "%s\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800767 ha->isp_ops->fw_version_str(vha, fw_str));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700768}
769
770static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100771qla2x00_serial_num_show(struct device *dev, struct device_attribute *attr,
772 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700773{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800774 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
775 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700776 uint32_t sn;
777
Joe Carnuccio1ee27142008-07-10 16:55:53 -0700778 if (IS_FWI2_CAPABLE(ha)) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800779 qla2xxx_get_vpd_field(vha, "SN", buf, PAGE_SIZE);
Joe Carnuccio1ee27142008-07-10 16:55:53 -0700780 return snprintf(buf, PAGE_SIZE, "%s\n", buf);
781 }
Andrew Vasquez8b7afc22007-10-19 15:59:19 -0700782
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700783 sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1;
784 return snprintf(buf, PAGE_SIZE, "%c%05d\n", 'A' + sn / 100000,
785 sn % 100000);
786}
787
788static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100789qla2x00_isp_name_show(struct device *dev, struct device_attribute *attr,
790 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700791{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800792 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
793 return snprintf(buf, PAGE_SIZE, "ISP%04X\n", vha->hw->pdev->device);
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700794}
795
796static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100797qla2x00_isp_id_show(struct device *dev, struct device_attribute *attr,
798 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700799{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800800 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
801 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700802 return snprintf(buf, PAGE_SIZE, "%04x %04x %04x %04x\n",
803 ha->product_id[0], ha->product_id[1], ha->product_id[2],
804 ha->product_id[3]);
805}
806
807static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100808qla2x00_model_name_show(struct device *dev, struct device_attribute *attr,
809 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700810{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800811 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
812 return snprintf(buf, PAGE_SIZE, "%s\n", vha->hw->model_number);
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700813}
814
815static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100816qla2x00_model_desc_show(struct device *dev, struct device_attribute *attr,
817 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700818{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800819 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700820 return snprintf(buf, PAGE_SIZE, "%s\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800821 vha->hw->model_desc ? vha->hw->model_desc : "");
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700822}
823
824static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100825qla2x00_pci_info_show(struct device *dev, struct device_attribute *attr,
826 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700827{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800828 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700829 char pci_info[30];
830
831 return snprintf(buf, PAGE_SIZE, "%s\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800832 vha->hw->isp_ops->pci_info_str(vha, pci_info));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700833}
834
835static ssize_t
Hannes Reineckebbd1ae42008-03-18 14:32:28 +0100836qla2x00_link_state_show(struct device *dev, struct device_attribute *attr,
837 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700838{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800839 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
840 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700841 int len = 0;
842
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800843 if (atomic_read(&vha->loop_state) == LOOP_DOWN ||
844 atomic_read(&vha->loop_state) == LOOP_DEAD)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700845 len = snprintf(buf, PAGE_SIZE, "Link Down\n");
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800846 else if (atomic_read(&vha->loop_state) != LOOP_READY ||
847 test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags) ||
848 test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700849 len = snprintf(buf, PAGE_SIZE, "Unknown Link State\n");
850 else {
851 len = snprintf(buf, PAGE_SIZE, "Link Up - ");
852
853 switch (ha->current_topology) {
854 case ISP_CFG_NL:
855 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
856 break;
857 case ISP_CFG_FL:
858 len += snprintf(buf + len, PAGE_SIZE-len, "FL_Port\n");
859 break;
860 case ISP_CFG_N:
861 len += snprintf(buf + len, PAGE_SIZE-len,
862 "N_Port to N_Port\n");
863 break;
864 case ISP_CFG_F:
865 len += snprintf(buf + len, PAGE_SIZE-len, "F_Port\n");
866 break;
867 default:
868 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
869 break;
870 }
871 }
872 return len;
873}
874
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700875static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100876qla2x00_zio_show(struct device *dev, struct device_attribute *attr,
877 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700878{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800879 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700880 int len = 0;
881
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800882 switch (vha->hw->zio_mode) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700883 case QLA_ZIO_MODE_6:
884 len += snprintf(buf + len, PAGE_SIZE-len, "Mode 6\n");
885 break;
886 case QLA_ZIO_DISABLED:
887 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
888 break;
889 }
890 return len;
891}
892
893static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100894qla2x00_zio_store(struct device *dev, struct device_attribute *attr,
895 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700896{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800897 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
898 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700899 int val = 0;
900 uint16_t zio_mode;
901
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -0800902 if (!IS_ZIO_SUPPORTED(ha))
903 return -ENOTSUPP;
904
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700905 if (sscanf(buf, "%d", &val) != 1)
906 return -EINVAL;
907
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -0800908 if (val)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700909 zio_mode = QLA_ZIO_MODE_6;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -0800910 else
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700911 zio_mode = QLA_ZIO_DISABLED;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700912
913 /* Update per-hba values and queue a reset. */
914 if (zio_mode != QLA_ZIO_DISABLED || ha->zio_mode != QLA_ZIO_DISABLED) {
915 ha->zio_mode = zio_mode;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800916 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700917 }
918 return strlen(buf);
919}
920
921static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100922qla2x00_zio_timer_show(struct device *dev, struct device_attribute *attr,
923 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700924{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800925 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700926
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800927 return snprintf(buf, PAGE_SIZE, "%d us\n", vha->hw->zio_timer * 100);
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700928}
929
930static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100931qla2x00_zio_timer_store(struct device *dev, struct device_attribute *attr,
932 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700933{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800934 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700935 int val = 0;
936 uint16_t zio_timer;
937
938 if (sscanf(buf, "%d", &val) != 1)
939 return -EINVAL;
940 if (val > 25500 || val < 100)
941 return -ERANGE;
942
943 zio_timer = (uint16_t)(val / 100);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800944 vha->hw->zio_timer = zio_timer;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700945
946 return strlen(buf);
947}
948
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800949static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100950qla2x00_beacon_show(struct device *dev, struct device_attribute *attr,
951 char *buf)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800952{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800953 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800954 int len = 0;
955
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800956 if (vha->hw->beacon_blink_led)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800957 len += snprintf(buf + len, PAGE_SIZE-len, "Enabled\n");
958 else
959 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
960 return len;
961}
962
963static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100964qla2x00_beacon_store(struct device *dev, struct device_attribute *attr,
965 const char *buf, size_t count)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800966{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800967 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
968 struct qla_hw_data *ha = vha->hw;
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800969 int val = 0;
970 int rval;
971
972 if (IS_QLA2100(ha) || IS_QLA2200(ha))
973 return -EPERM;
974
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800975 if (test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) {
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800976 qla_printk(KERN_WARNING, ha,
977 "Abort ISP active -- ignoring beacon request.\n");
978 return -EBUSY;
979 }
980
981 if (sscanf(buf, "%d", &val) != 1)
982 return -EINVAL;
983
984 if (val)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800985 rval = ha->isp_ops->beacon_on(vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800986 else
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800987 rval = ha->isp_ops->beacon_off(vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800988
989 if (rval != QLA_SUCCESS)
990 count = 0;
991
992 return count;
993}
994
Andrew Vasquez30c47662007-01-29 10:22:21 -0800995static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100996qla2x00_optrom_bios_version_show(struct device *dev,
997 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -0800998{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -0800999 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1000 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08001001 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->bios_revision[1],
1002 ha->bios_revision[0]);
1003}
1004
1005static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001006qla2x00_optrom_efi_version_show(struct device *dev,
1007 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001008{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001009 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1010 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08001011 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->efi_revision[1],
1012 ha->efi_revision[0]);
1013}
1014
1015static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001016qla2x00_optrom_fcode_version_show(struct device *dev,
1017 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001018{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001019 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1020 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08001021 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->fcode_revision[1],
1022 ha->fcode_revision[0]);
1023}
1024
1025static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +01001026qla2x00_optrom_fw_version_show(struct device *dev,
1027 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -08001028{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001029 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1030 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez30c47662007-01-29 10:22:21 -08001031 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d %d\n",
1032 ha->fw_revision[0], ha->fw_revision[1], ha->fw_revision[2],
1033 ha->fw_revision[3]);
1034}
1035
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001036static ssize_t
1037qla2x00_total_isp_aborts_show(struct device *dev,
1038 struct device_attribute *attr, char *buf)
1039{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001040 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1041 struct qla_hw_data *ha = vha->hw;
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001042 return snprintf(buf, PAGE_SIZE, "%d\n",
1043 ha->qla_stats.total_isp_aborts);
1044}
1045
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001046static ssize_t
1047qla2x00_mpi_version_show(struct device *dev, struct device_attribute *attr,
1048 char *buf)
1049{
1050 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1051 struct qla_hw_data *ha = vha->hw;
1052
1053 if (!IS_QLA81XX(ha))
1054 return snprintf(buf, PAGE_SIZE, "\n");
1055
Andrew Vasquez55a96152009-03-24 09:08:03 -07001056 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d (%x)\n",
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001057 ha->mpi_version[0], ha->mpi_version[1], ha->mpi_version[2],
Andrew Vasquez55a96152009-03-24 09:08:03 -07001058 ha->mpi_capabilities);
1059}
1060
1061static ssize_t
1062qla2x00_phy_version_show(struct device *dev, struct device_attribute *attr,
1063 char *buf)
1064{
1065 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1066 struct qla_hw_data *ha = vha->hw;
1067
1068 if (!IS_QLA81XX(ha))
1069 return snprintf(buf, PAGE_SIZE, "\n");
1070
1071 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d\n",
1072 ha->phy_version[0], ha->phy_version[1], ha->phy_version[2]);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001073}
1074
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001075static ssize_t
1076qla2x00_flash_block_size_show(struct device *dev,
1077 struct device_attribute *attr, char *buf)
1078{
1079 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
1080 struct qla_hw_data *ha = vha->hw;
1081
1082 return snprintf(buf, PAGE_SIZE, "0x%x\n", ha->fdt_block_size);
1083}
1084
Tony Jonesee959b02008-02-22 00:13:36 +01001085static DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, NULL);
1086static DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL);
1087static DEVICE_ATTR(serial_num, S_IRUGO, qla2x00_serial_num_show, NULL);
1088static DEVICE_ATTR(isp_name, S_IRUGO, qla2x00_isp_name_show, NULL);
1089static DEVICE_ATTR(isp_id, S_IRUGO, qla2x00_isp_id_show, NULL);
1090static DEVICE_ATTR(model_name, S_IRUGO, qla2x00_model_name_show, NULL);
1091static DEVICE_ATTR(model_desc, S_IRUGO, qla2x00_model_desc_show, NULL);
1092static DEVICE_ATTR(pci_info, S_IRUGO, qla2x00_pci_info_show, NULL);
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001093static DEVICE_ATTR(link_state, S_IRUGO, qla2x00_link_state_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +01001094static DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show, qla2x00_zio_store);
1095static DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show,
1096 qla2x00_zio_timer_store);
1097static DEVICE_ATTR(beacon, S_IRUGO | S_IWUSR, qla2x00_beacon_show,
1098 qla2x00_beacon_store);
1099static DEVICE_ATTR(optrom_bios_version, S_IRUGO,
1100 qla2x00_optrom_bios_version_show, NULL);
1101static DEVICE_ATTR(optrom_efi_version, S_IRUGO,
1102 qla2x00_optrom_efi_version_show, NULL);
1103static DEVICE_ATTR(optrom_fcode_version, S_IRUGO,
1104 qla2x00_optrom_fcode_version_show, NULL);
1105static DEVICE_ATTR(optrom_fw_version, S_IRUGO, qla2x00_optrom_fw_version_show,
1106 NULL);
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001107static DEVICE_ATTR(total_isp_aborts, S_IRUGO, qla2x00_total_isp_aborts_show,
1108 NULL);
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001109static DEVICE_ATTR(mpi_version, S_IRUGO, qla2x00_mpi_version_show, NULL);
Andrew Vasquez55a96152009-03-24 09:08:03 -07001110static DEVICE_ATTR(phy_version, S_IRUGO, qla2x00_phy_version_show, NULL);
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001111static DEVICE_ATTR(flash_block_size, S_IRUGO, qla2x00_flash_block_size_show,
1112 NULL);
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001113
Tony Jonesee959b02008-02-22 00:13:36 +01001114struct device_attribute *qla2x00_host_attrs[] = {
1115 &dev_attr_driver_version,
1116 &dev_attr_fw_version,
1117 &dev_attr_serial_num,
1118 &dev_attr_isp_name,
1119 &dev_attr_isp_id,
1120 &dev_attr_model_name,
1121 &dev_attr_model_desc,
1122 &dev_attr_pci_info,
Hannes Reineckebbd1ae42008-03-18 14:32:28 +01001123 &dev_attr_link_state,
Tony Jonesee959b02008-02-22 00:13:36 +01001124 &dev_attr_zio,
1125 &dev_attr_zio_timer,
1126 &dev_attr_beacon,
1127 &dev_attr_optrom_bios_version,
1128 &dev_attr_optrom_efi_version,
1129 &dev_attr_optrom_fcode_version,
1130 &dev_attr_optrom_fw_version,
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -07001131 &dev_attr_total_isp_aborts,
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001132 &dev_attr_mpi_version,
Andrew Vasquez55a96152009-03-24 09:08:03 -07001133 &dev_attr_phy_version,
Lalit Chandivadefbcbb5d2009-03-24 09:08:11 -07001134 &dev_attr_flash_block_size,
Andrew Vasquezafb046e2005-08-26 19:09:40 -07001135 NULL,
1136};
1137
8482e112005-04-17 15:04:54 -05001138/* Host attributes. */
1139
1140static void
1141qla2x00_get_host_port_id(struct Scsi_Host *shost)
1142{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001143 scsi_qla_host_t *vha = shost_priv(shost);
8482e112005-04-17 15:04:54 -05001144
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001145 fc_host_port_id(shost) = vha->d_id.b.domain << 16 |
1146 vha->d_id.b.area << 8 | vha->d_id.b.al_pa;
8482e112005-04-17 15:04:54 -05001147}
1148
1149static void
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001150qla2x00_get_host_speed(struct Scsi_Host *shost)
1151{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001152 struct qla_hw_data *ha = ((struct scsi_qla_host *)
1153 (shost_priv(shost)))->hw;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001154 u32 speed = FC_PORTSPEED_UNKNOWN;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001155
1156 switch (ha->link_data_rate) {
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001157 case PORT_SPEED_1GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001158 speed = FC_PORTSPEED_1GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001159 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001160 case PORT_SPEED_2GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001161 speed = FC_PORTSPEED_2GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001162 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001163 case PORT_SPEED_4GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001164 speed = FC_PORTSPEED_4GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001165 break;
Seokmann Juda4541b2008-01-31 12:33:52 -08001166 case PORT_SPEED_8GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001167 speed = FC_PORTSPEED_8GBIT;
Seokmann Juda4541b2008-01-31 12:33:52 -08001168 break;
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001169 case PORT_SPEED_10GB:
1170 speed = FC_PORTSPEED_10GBIT;
1171 break;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001172 }
1173 fc_host_speed(shost) = speed;
1174}
1175
1176static void
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001177qla2x00_get_host_port_type(struct Scsi_Host *shost)
1178{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001179 scsi_qla_host_t *vha = shost_priv(shost);
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001180 uint32_t port_type = FC_PORTTYPE_UNKNOWN;
1181
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001182 if (vha->vp_idx) {
Shyam Sundar2f2fa132008-05-12 22:21:07 -07001183 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
1184 return;
1185 }
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001186 switch (vha->hw->current_topology) {
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001187 case ISP_CFG_NL:
1188 port_type = FC_PORTTYPE_LPORT;
1189 break;
1190 case ISP_CFG_FL:
1191 port_type = FC_PORTTYPE_NLPORT;
1192 break;
1193 case ISP_CFG_N:
1194 port_type = FC_PORTTYPE_PTP;
1195 break;
1196 case ISP_CFG_F:
1197 port_type = FC_PORTTYPE_NPORT;
1198 break;
1199 }
1200 fc_host_port_type(shost) = port_type;
1201}
1202
1203static void
8482e112005-04-17 15:04:54 -05001204qla2x00_get_starget_node_name(struct scsi_target *starget)
1205{
1206 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001207 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001208 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001209 u64 node_name = 0;
8482e112005-04-17 15:04:54 -05001210
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001211 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001212 if (fcport->rport &&
1213 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001214 node_name = wwn_to_u64(fcport->node_name);
bdf79622005-04-17 15:06:53 -05001215 break;
1216 }
1217 }
1218
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001219 fc_starget_node_name(starget) = node_name;
8482e112005-04-17 15:04:54 -05001220}
1221
1222static void
1223qla2x00_get_starget_port_name(struct scsi_target *starget)
1224{
1225 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001226 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001227 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001228 u64 port_name = 0;
8482e112005-04-17 15:04:54 -05001229
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001230 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001231 if (fcport->rport &&
1232 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001233 port_name = wwn_to_u64(fcport->port_name);
bdf79622005-04-17 15:06:53 -05001234 break;
1235 }
1236 }
1237
Andrew Vasquezf8b02a82005-08-31 15:21:20 -07001238 fc_starget_port_name(starget) = port_name;
8482e112005-04-17 15:04:54 -05001239}
1240
1241static void
1242qla2x00_get_starget_port_id(struct scsi_target *starget)
1243{
1244 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001245 scsi_qla_host_t *vha = shost_priv(host);
bdf79622005-04-17 15:06:53 -05001246 fc_port_t *fcport;
1247 uint32_t port_id = ~0U;
8482e112005-04-17 15:04:54 -05001248
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001249 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -07001250 if (fcport->rport &&
1251 starget->id == fcport->rport->scsi_target_id) {
bdf79622005-04-17 15:06:53 -05001252 port_id = fcport->d_id.b.domain << 16 |
1253 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
1254 break;
1255 }
1256 }
1257
8482e112005-04-17 15:04:54 -05001258 fc_starget_port_id(starget) = port_id;
1259}
1260
1261static void
8482e112005-04-17 15:04:54 -05001262qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
1263{
8482e112005-04-17 15:04:54 -05001264 if (timeout)
Andrew Vasquez85821c92008-07-10 16:55:48 -07001265 rport->dev_loss_tmo = timeout;
8482e112005-04-17 15:04:54 -05001266 else
Andrew Vasquez85821c92008-07-10 16:55:48 -07001267 rport->dev_loss_tmo = 1;
8482e112005-04-17 15:04:54 -05001268}
1269
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001270static void
1271qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport)
1272{
1273 struct Scsi_Host *host = rport_to_shost(rport);
1274 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1275
Seokmann Ju3c01b4f2009-01-22 09:45:38 -08001276 if (!fcport)
1277 return;
1278
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001279 qla2x00_abort_fcport_cmds(fcport);
1280
1281 /*
1282 * Transport has effectively 'deleted' the rport, clear
1283 * all local references.
1284 */
1285 spin_lock_irq(host->host_lock);
1286 fcport->rport = NULL;
1287 *((fc_port_t **)rport->dd_data) = NULL;
1288 spin_unlock_irq(host->host_lock);
1289}
1290
1291static void
1292qla2x00_terminate_rport_io(struct fc_rport *rport)
1293{
1294 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1295
Seokmann Ju3c01b4f2009-01-22 09:45:38 -08001296 if (!fcport)
1297 return;
1298
Andrew Vasquez6390d1f2008-08-13 21:36:56 -07001299 /*
1300 * At this point all fcport's software-states are cleared. Perform any
1301 * final cleanup of firmware resources (PCBs and XCBs).
1302 */
Andrew Vasquezbe67e652009-03-24 09:08:02 -07001303 if (fcport->loop_id != FC_NO_LOOP_ID)
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001304 fcport->vha->hw->isp_ops->fabric_logout(fcport->vha,
1305 fcport->loop_id, fcport->d_id.b.domain,
1306 fcport->d_id.b.area, fcport->d_id.b.al_pa);
Andrew Vasquez6390d1f2008-08-13 21:36:56 -07001307
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001308 qla2x00_abort_fcport_cmds(fcport);
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001309}
1310
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001311static int
1312qla2x00_issue_lip(struct Scsi_Host *shost)
1313{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001314 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001315
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001316 qla2x00_loop_reset(vha);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001317 return 0;
1318}
1319
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001320static struct fc_host_statistics *
1321qla2x00_get_fc_host_stats(struct Scsi_Host *shost)
1322{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001323 scsi_qla_host_t *vha = shost_priv(shost);
1324 struct qla_hw_data *ha = vha->hw;
1325 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001326 int rval;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001327 struct link_statistics *stats;
1328 dma_addr_t stats_dma;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001329 struct fc_host_statistics *pfc_host_stat;
1330
1331 pfc_host_stat = &ha->fc_host_stat;
1332 memset(pfc_host_stat, -1, sizeof(struct fc_host_statistics));
1333
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001334 stats = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &stats_dma);
1335 if (stats == NULL) {
1336 DEBUG2_3_11(printk("%s(%ld): Failed to allocate memory.\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001337 __func__, base_vha->host_no));
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001338 goto done;
1339 }
1340 memset(stats, 0, DMA_POOL_SIZE);
1341
1342 rval = QLA_FUNCTION_FAILED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001343 if (IS_FWI2_CAPABLE(ha)) {
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001344 rval = qla24xx_get_isp_stats(base_vha, stats, stats_dma);
1345 } else if (atomic_read(&base_vha->loop_state) == LOOP_READY &&
1346 !test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) &&
1347 !test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
Andrew Vasquez178779a2007-01-29 10:22:25 -08001348 !ha->dpc_active) {
1349 /* Must be in a 'READY' state for statistics retrieval. */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001350 rval = qla2x00_get_link_status(base_vha, base_vha->loop_id,
1351 stats, stats_dma);
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001352 }
Andrew Vasquez178779a2007-01-29 10:22:25 -08001353
1354 if (rval != QLA_SUCCESS)
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001355 goto done_free;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001356
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001357 pfc_host_stat->link_failure_count = stats->link_fail_cnt;
1358 pfc_host_stat->loss_of_sync_count = stats->loss_sync_cnt;
1359 pfc_host_stat->loss_of_signal_count = stats->loss_sig_cnt;
1360 pfc_host_stat->prim_seq_protocol_err_count = stats->prim_seq_err_cnt;
1361 pfc_host_stat->invalid_tx_word_count = stats->inval_xmit_word_cnt;
1362 pfc_host_stat->invalid_crc_count = stats->inval_crc_cnt;
1363 if (IS_FWI2_CAPABLE(ha)) {
Harish Zunjarrao032d8dd2008-07-10 16:55:50 -07001364 pfc_host_stat->lip_count = stats->lip_cnt;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001365 pfc_host_stat->tx_frames = stats->tx_frames;
1366 pfc_host_stat->rx_frames = stats->rx_frames;
1367 pfc_host_stat->dumped_frames = stats->dumped_frames;
1368 pfc_host_stat->nos_count = stats->nos_rcvd;
1369 }
Harish Zunjarrao49fd4622008-09-11 21:22:47 -07001370 pfc_host_stat->fcp_input_megabytes = ha->qla_stats.input_bytes >> 20;
1371 pfc_host_stat->fcp_output_megabytes = ha->qla_stats.output_bytes >> 20;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001372
1373done_free:
1374 dma_pool_free(ha->s_dma_pool, stats, stats_dma);
Andrew Vasquez178779a2007-01-29 10:22:25 -08001375done:
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001376 return pfc_host_stat;
1377}
1378
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001379static void
1380qla2x00_get_host_symbolic_name(struct Scsi_Host *shost)
1381{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001382 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001383
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001384 qla2x00_get_sym_node_name(vha, fc_host_symbolic_name(shost));
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001385}
1386
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001387static void
1388qla2x00_set_host_system_hostname(struct Scsi_Host *shost)
1389{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001390 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001391
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001392 set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags);
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001393}
1394
Andrew Vasquez90991c82006-10-02 12:00:46 -07001395static void
1396qla2x00_get_host_fabric_name(struct Scsi_Host *shost)
1397{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001398 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001399 u64 node_name;
1400
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001401 if (vha->device_flags & SWITCH_FOUND)
1402 node_name = wwn_to_u64(vha->fabric_node_name);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001403 else
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001404 node_name = wwn_to_u64(vha->node_name);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001405
1406 fc_host_fabric_name(shost) = node_name;
1407}
1408
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001409static void
1410qla2x00_get_host_port_state(struct Scsi_Host *shost)
1411{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001412 scsi_qla_host_t *vha = shost_priv(shost);
1413 struct scsi_qla_host *base_vha = pci_get_drvdata(vha->hw->pdev);
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001414
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001415 if (!base_vha->flags.online)
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001416 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001417 else if (atomic_read(&base_vha->loop_state) == LOOP_TIMEOUT)
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001418 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1419 else
1420 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
1421}
1422
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001423static int
1424qla24xx_vport_create(struct fc_vport *fc_vport, bool disable)
1425{
1426 int ret = 0;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001427 int cnt = 0;
1428 uint8_t qos = QLA_DEFAULT_QUE_QOS;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001429 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
1430 scsi_qla_host_t *vha = NULL;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001431 struct qla_hw_data *ha = base_vha->hw;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001432
1433 ret = qla24xx_vport_create_req_sanity_check(fc_vport);
1434 if (ret) {
1435 DEBUG15(printk("qla24xx_vport_create_req_sanity_check failed, "
1436 "status %x\n", ret));
1437 return (ret);
1438 }
1439
1440 vha = qla24xx_create_vhost(fc_vport);
1441 if (vha == NULL) {
1442 DEBUG15(printk ("qla24xx_create_vhost failed, vha = %p\n",
1443 vha));
1444 return FC_VPORT_FAILED;
1445 }
1446 if (disable) {
1447 atomic_set(&vha->vp_state, VP_OFFLINE);
1448 fc_vport_set_state(fc_vport, FC_VPORT_DISABLED);
1449 } else
1450 atomic_set(&vha->vp_state, VP_FAILED);
1451
1452 /* ready to create vport */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001453 qla_printk(KERN_INFO, vha->hw, "VP entry id %d assigned.\n",
1454 vha->vp_idx);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001455
1456 /* initialized vport states */
1457 atomic_set(&vha->loop_state, LOOP_DOWN);
1458 vha->vp_err_state= VP_ERR_PORTDWN;
1459 vha->vp_prev_err_state= VP_ERR_UNKWN;
1460 /* Check if physical ha port is Up */
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001461 if (atomic_read(&base_vha->loop_state) == LOOP_DOWN ||
1462 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001463 /* Don't retry or attempt login of this virtual port */
1464 DEBUG15(printk ("scsi(%ld): pport loop_state is not UP.\n",
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001465 base_vha->host_no));
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001466 atomic_set(&vha->loop_state, LOOP_DEAD);
1467 if (!disable)
1468 fc_vport_set_state(fc_vport, FC_VPORT_LINKDOWN);
1469 }
1470
1471 if (scsi_add_host(vha->host, &fc_vport->dev)) {
1472 DEBUG15(printk("scsi(%ld): scsi_add_host failure for VP[%d].\n",
1473 vha->host_no, vha->vp_idx));
1474 goto vport_create_failed_2;
1475 }
1476
1477 /* initialize attributes */
1478 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
1479 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
1480 fc_host_supported_classes(vha->host) =
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001481 fc_host_supported_classes(base_vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001482 fc_host_supported_speeds(vha->host) =
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001483 fc_host_supported_speeds(base_vha->host);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001484
1485 qla24xx_vport_disable(fc_vport, disable);
1486
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001487 /* Create a queue pair for the vport */
1488 if (ha->mqenable) {
1489 if (ha->npiv_info) {
1490 for (; cnt < ha->nvram_npiv_size; cnt++) {
1491 if (ha->npiv_info[cnt].port_name ==
1492 vha->port_name &&
1493 ha->npiv_info[cnt].node_name ==
1494 vha->node_name) {
1495 qos = ha->npiv_info[cnt].q_qos;
1496 break;
1497 }
1498 }
1499 }
1500 qla25xx_create_queues(vha, qos);
1501 }
1502
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001503 return 0;
1504vport_create_failed_2:
1505 qla24xx_disable_vp(vha);
1506 qla24xx_deallocate_vp_id(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001507 scsi_host_put(vha->host);
1508 return FC_VPORT_FAILED;
1509}
1510
Adrian Bunka824ebb2008-01-17 09:02:15 -08001511static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001512qla24xx_vport_delete(struct fc_vport *fc_vport)
1513{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001514 scsi_qla_host_t *vha = fc_vport->dd_data;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001515 fc_port_t *fcport, *tfcport;
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001516 struct qla_hw_data *ha = vha->hw;
1517 uint16_t id = vha->vp_idx;
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07001518
1519 while (test_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags) ||
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001520 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags))
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07001521 msleep(1000);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001522
1523 qla24xx_disable_vp(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001524
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001525 fc_remove_host(vha->host);
1526
1527 scsi_remove_host(vha->host);
1528
1529 list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) {
1530 list_del(&fcport->list);
1531 kfree(fcport);
1532 fcport = NULL;
1533 }
1534
1535 qla24xx_deallocate_vp_id(vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001536
1537 if (vha->timer_active) {
1538 qla2x00_vp_stop_timer(vha);
1539 DEBUG15(printk ("scsi(%ld): timer for the vport[%d] = %p "
1540 "has stopped\n",
1541 vha->host_no, vha->vp_idx, vha));
1542 }
1543
Anirban Chakrabortycf5a1632009-02-08 20:50:13 -08001544 if (ha->mqenable) {
1545 if (qla25xx_delete_queues(vha, 0) != QLA_SUCCESS)
1546 qla_printk(KERN_WARNING, ha,
1547 "Queue delete failed.\n");
1548 }
1549
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001550 scsi_host_put(vha->host);
Anirban Chakraborty73208df2008-12-09 16:45:39 -08001551 qla_printk(KERN_INFO, ha, "vport %d deleted\n", id);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001552 return 0;
1553}
1554
Adrian Bunka824ebb2008-01-17 09:02:15 -08001555static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001556qla24xx_vport_disable(struct fc_vport *fc_vport, bool disable)
1557{
1558 scsi_qla_host_t *vha = fc_vport->dd_data;
1559
1560 if (disable)
1561 qla24xx_disable_vp(vha);
1562 else
1563 qla24xx_enable_vp(vha);
1564
1565 return 0;
1566}
1567
Andrew Vasquez1c97a122005-04-21 16:13:36 -04001568struct fc_function_template qla2xxx_transport_functions = {
8482e112005-04-17 15:04:54 -05001569
1570 .show_host_node_name = 1,
1571 .show_host_port_name = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001572 .show_host_supported_classes = 1,
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001573 .show_host_supported_speeds = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001574
8482e112005-04-17 15:04:54 -05001575 .get_host_port_id = qla2x00_get_host_port_id,
1576 .show_host_port_id = 1,
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001577 .get_host_speed = qla2x00_get_host_speed,
1578 .show_host_speed = 1,
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001579 .get_host_port_type = qla2x00_get_host_port_type,
1580 .show_host_port_type = 1,
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001581 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
1582 .show_host_symbolic_name = 1,
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001583 .set_host_system_hostname = qla2x00_set_host_system_hostname,
1584 .show_host_system_hostname = 1,
Andrew Vasquez90991c82006-10-02 12:00:46 -07001585 .get_host_fabric_name = qla2x00_get_host_fabric_name,
1586 .show_host_fabric_name = 1,
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001587 .get_host_port_state = qla2x00_get_host_port_state,
1588 .show_host_port_state = 1,
8482e112005-04-17 15:04:54 -05001589
bdf79622005-04-17 15:06:53 -05001590 .dd_fcrport_size = sizeof(struct fc_port *),
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001591 .show_rport_supported_classes = 1,
8482e112005-04-17 15:04:54 -05001592
1593 .get_starget_node_name = qla2x00_get_starget_node_name,
1594 .show_starget_node_name = 1,
1595 .get_starget_port_name = qla2x00_get_starget_port_name,
1596 .show_starget_port_name = 1,
1597 .get_starget_port_id = qla2x00_get_starget_port_id,
1598 .show_starget_port_id = 1,
1599
8482e112005-04-17 15:04:54 -05001600 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
1601 .show_rport_dev_loss_tmo = 1,
1602
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001603 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001604 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
1605 .terminate_rport_io = qla2x00_terminate_rport_io,
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001606 .get_fc_host_stats = qla2x00_get_fc_host_stats,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001607
1608 .vport_create = qla24xx_vport_create,
1609 .vport_disable = qla24xx_vport_disable,
1610 .vport_delete = qla24xx_vport_delete,
1611};
1612
1613struct fc_function_template qla2xxx_transport_vport_functions = {
1614
1615 .show_host_node_name = 1,
1616 .show_host_port_name = 1,
1617 .show_host_supported_classes = 1,
1618
1619 .get_host_port_id = qla2x00_get_host_port_id,
1620 .show_host_port_id = 1,
1621 .get_host_speed = qla2x00_get_host_speed,
1622 .show_host_speed = 1,
1623 .get_host_port_type = qla2x00_get_host_port_type,
1624 .show_host_port_type = 1,
1625 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
1626 .show_host_symbolic_name = 1,
1627 .set_host_system_hostname = qla2x00_set_host_system_hostname,
1628 .show_host_system_hostname = 1,
1629 .get_host_fabric_name = qla2x00_get_host_fabric_name,
1630 .show_host_fabric_name = 1,
1631 .get_host_port_state = qla2x00_get_host_port_state,
1632 .show_host_port_state = 1,
1633
1634 .dd_fcrport_size = sizeof(struct fc_port *),
1635 .show_rport_supported_classes = 1,
1636
1637 .get_starget_node_name = qla2x00_get_starget_node_name,
1638 .show_starget_node_name = 1,
1639 .get_starget_port_name = qla2x00_get_starget_port_name,
1640 .show_starget_port_name = 1,
1641 .get_starget_port_id = qla2x00_get_starget_port_id,
1642 .show_starget_port_id = 1,
1643
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001644 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
1645 .show_rport_dev_loss_tmo = 1,
1646
1647 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001648 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
1649 .terminate_rport_io = qla2x00_terminate_rport_io,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001650 .get_fc_host_stats = qla2x00_get_fc_host_stats,
8482e112005-04-17 15:04:54 -05001651};
1652
8482e112005-04-17 15:04:54 -05001653void
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001654qla2x00_init_host_attr(scsi_qla_host_t *vha)
8482e112005-04-17 15:04:54 -05001655{
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001656 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001657 u32 speed = FC_PORTSPEED_UNKNOWN;
1658
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001659 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
1660 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
1661 fc_host_supported_classes(vha->host) = FC_COS_CLASS3;
1662 fc_host_max_npiv_vports(vha->host) = ha->max_npiv_vports;
1663 fc_host_npiv_vports_inuse(vha->host) = ha->cur_vport_count;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001664
Andrew Vasquez3a03eb72009-01-05 11:18:11 -08001665 if (IS_QLA81XX(ha))
1666 speed = FC_PORTSPEED_10GBIT;
1667 else if (IS_QLA25XX(ha))
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001668 speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT |
1669 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001670 else if (IS_QLA24XX_TYPE(ha))
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001671 speed = FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
1672 FC_PORTSPEED_1GBIT;
1673 else if (IS_QLA23XX(ha))
1674 speed = FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
1675 else
1676 speed = FC_PORTSPEED_1GBIT;
Anirban Chakraborty7b867cf2008-11-06 10:40:19 -08001677 fc_host_supported_speeds(vha->host) = speed;
8482e112005-04-17 15:04:54 -05001678}