[SCSI] qla2xxx: Use byte-address while reading FC boot code versions from flash.
[deliverable/linux.git] / drivers / scsi / qla2xxx / qla_attr.c
CommitLineData
8482e118 1/*
fa90c54f 2 * QLogic Fibre Channel HBA Driver
01e58d8e 3 * Copyright (c) 2003-2008 QLogic Corporation
8482e118 4 *
fa90c54f 5 * See LICENSE.qla2xxx for copyright and licensing details.
8482e118 6 */
7#include "qla_def.h"
8
2c3dfe3f 9#include <linux/kthread.h>
7aaef27b 10#include <linux/vmalloc.h>
00eabe7c 11#include <linux/delay.h>
8482e118 12
a824ebb3 13static int qla24xx_vport_disable(struct fc_vport *, bool);
2c3dfe3f 14
8482e118 15/* SYSFS attributes --------------------------------------------------------- */
16
17static ssize_t
91a69029
ZR
18qla2x00_sysfs_read_fw_dump(struct kobject *kobj,
19 struct bin_attribute *bin_attr,
20 char *buf, loff_t off, size_t count)
8482e118 21{
7b867cf7 22 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e118 23 struct device, kobj)));
7b867cf7 24 struct qla_hw_data *ha = vha->hw;
8482e118 25
26 if (ha->fw_dump_reading == 0)
27 return 0;
8482e118 28
b3dc9088
AM
29 return memory_read_from_buffer(buf, count, &off, ha->fw_dump,
30 ha->fw_dump_len);
8482e118 31}
32
33static ssize_t
91a69029
ZR
34qla2x00_sysfs_write_fw_dump(struct kobject *kobj,
35 struct bin_attribute *bin_attr,
36 char *buf, loff_t off, size_t count)
8482e118 37{
7b867cf7 38 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e118 39 struct device, kobj)));
7b867cf7 40 struct qla_hw_data *ha = vha->hw;
8482e118 41 int reading;
8482e118 42
43 if (off != 0)
44 return (0);
45
46 reading = simple_strtol(buf, NULL, 10);
47 switch (reading) {
48 case 0:
a7a167bf
AV
49 if (!ha->fw_dump_reading)
50 break;
8482e118 51
a7a167bf 52 qla_printk(KERN_INFO, ha,
7b867cf7 53 "Firmware dump cleared on (%ld).\n", vha->host_no);
a7a167bf
AV
54
55 ha->fw_dump_reading = 0;
56 ha->fw_dumped = 0;
8482e118 57 break;
58 case 1:
d4e3e04d 59 if (ha->fw_dumped && !ha->fw_dump_reading) {
8482e118 60 ha->fw_dump_reading = 1;
61
8482e118 62 qla_printk(KERN_INFO, ha,
a7a167bf 63 "Raw firmware dump ready for read on (%ld).\n",
7b867cf7 64 vha->host_no);
8482e118 65 }
66 break;
a7a167bf 67 case 2:
7b867cf7 68 qla2x00_alloc_fw_dump(vha);
a7a167bf 69 break;
68af0811 70 case 3:
7b867cf7 71 qla2x00_system_error(vha);
68af0811 72 break;
8482e118 73 }
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,
8482e118 81 },
82 .size = 0,
83 .read = qla2x00_sysfs_read_fw_dump,
84 .write = qla2x00_sysfs_write_fw_dump,
85};
86
87static ssize_t
91a69029
ZR
88qla2x00_sysfs_read_nvram(struct kobject *kobj,
89 struct bin_attribute *bin_attr,
90 char *buf, loff_t off, size_t count)
8482e118 91{
7b867cf7 92 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e118 93 struct device, kobj)));
7b867cf7 94 struct qla_hw_data *ha = vha->hw;
8482e118 95
b3dc9088 96 if (!capable(CAP_SYS_ADMIN))
8482e118 97 return 0;
98
281afe19 99 /* Read NVRAM data from cache. */
b3dc9088
AM
100 return memory_read_from_buffer(buf, count, &off, ha->nvram,
101 ha->nvram_size);
8482e118 102}
103
104static ssize_t
91a69029
ZR
105qla2x00_sysfs_write_nvram(struct kobject *kobj,
106 struct bin_attribute *bin_attr,
107 char *buf, loff_t off, size_t count)
8482e118 108{
7b867cf7 109 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
8482e118 110 struct device, kobj)));
7b867cf7 111 struct qla_hw_data *ha = vha->hw;
8482e118 112 uint16_t cnt;
8482e118 113
459c5378 114 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size)
8482e118 115 return 0;
116
117 /* Checksum NVRAM. */
e428924c 118 if (IS_FWI2_CAPABLE(ha)) {
459c5378
AV
119 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 }
8482e118 139
140 /* Write NVRAM. */
7b867cf7
AC
141 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->nvram_base, count);
142 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->nvram, ha->nvram_base,
281afe19 143 count);
8482e118 144
7b867cf7 145 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
26b8d348 146
8482e118 147 return (count);
148}
149
150static struct bin_attribute sysfs_nvram_attr = {
151 .attr = {
152 .name = "nvram",
153 .mode = S_IRUSR | S_IWUSR,
8482e118 154 },
1b3f6365 155 .size = 512,
8482e118 156 .read = qla2x00_sysfs_read_nvram,
157 .write = qla2x00_sysfs_write_nvram,
158};
159
854165f4 160static ssize_t
91a69029
ZR
161qla2x00_sysfs_read_optrom(struct kobject *kobj,
162 struct bin_attribute *bin_attr,
163 char *buf, loff_t off, size_t count)
854165f4 164{
7b867cf7 165 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
854165f4 166 struct device, kobj)));
7b867cf7 167 struct qla_hw_data *ha = vha->hw;
854165f4 168
169 if (ha->optrom_state != QLA_SREADING)
170 return 0;
854165f4 171
b3dc9088
AM
172 return memory_read_from_buffer(buf, count, &off, ha->optrom_buffer,
173 ha->optrom_region_size);
854165f4 174}
175
176static ssize_t
91a69029
ZR
177qla2x00_sysfs_write_optrom(struct kobject *kobj,
178 struct bin_attribute *bin_attr,
179 char *buf, loff_t off, size_t count)
854165f4 180{
7b867cf7 181 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
854165f4 182 struct device, kobj)));
7b867cf7 183 struct qla_hw_data *ha = vha->hw;
854165f4 184
185 if (ha->optrom_state != QLA_SWRITING)
186 return -EINVAL;
b7cc176c 187 if (off > ha->optrom_region_size)
854165f4 188 return -ERANGE;
b7cc176c
JC
189 if (off + count > ha->optrom_region_size)
190 count = ha->optrom_region_size - off;
854165f4 191
192 memcpy(&ha->optrom_buffer[off], buf, count);
193
194 return count;
195}
196
197static struct bin_attribute sysfs_optrom_attr = {
198 .attr = {
199 .name = "optrom",
200 .mode = S_IRUSR | S_IWUSR,
854165f4 201 },
c3a2f0df 202 .size = 0,
854165f4 203 .read = qla2x00_sysfs_read_optrom,
204 .write = qla2x00_sysfs_write_optrom,
205};
206
207static ssize_t
91a69029
ZR
208qla2x00_sysfs_write_optrom_ctl(struct kobject *kobj,
209 struct bin_attribute *bin_attr,
210 char *buf, loff_t off, size_t count)
854165f4 211{
7b867cf7 212 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
854165f4 213 struct device, kobj)));
7b867cf7
AC
214 struct qla_hw_data *ha = vha->hw;
215
b7cc176c
JC
216 uint32_t start = 0;
217 uint32_t size = ha->optrom_size;
218 int val, valid;
854165f4 219
220 if (off)
221 return 0;
222
b7cc176c
JC
223 if (sscanf(buf, "%d:%x:%x", &val, &start, &size) < 1)
224 return -EINVAL;
225 if (start > ha->optrom_size)
854165f4 226 return -EINVAL;
227
228 switch (val) {
229 case 0:
230 if (ha->optrom_state != QLA_SREADING &&
231 ha->optrom_state != QLA_SWRITING)
232 break;
233
234 ha->optrom_state = QLA_SWAITING;
b7cc176c
JC
235
236 DEBUG2(qla_printk(KERN_INFO, ha,
237 "Freeing flash region allocation -- 0x%x bytes.\n",
238 ha->optrom_region_size));
239
854165f4 240 vfree(ha->optrom_buffer);
241 ha->optrom_buffer = NULL;
242 break;
243 case 1:
244 if (ha->optrom_state != QLA_SWAITING)
245 break;
246
b7cc176c
JC
247 ha->optrom_region_start = start;
248 ha->optrom_region_size = start + size > ha->optrom_size ?
249 ha->optrom_size - start : size;
250
854165f4 251 ha->optrom_state = QLA_SREADING;
b7cc176c 252 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
854165f4 253 if (ha->optrom_buffer == NULL) {
254 qla_printk(KERN_WARNING, ha,
255 "Unable to allocate memory for optrom retrieval "
b7cc176c 256 "(%x).\n", ha->optrom_region_size);
854165f4 257
258 ha->optrom_state = QLA_SWAITING;
259 return count;
260 }
261
b7cc176c
JC
262 DEBUG2(qla_printk(KERN_INFO, ha,
263 "Reading flash region -- 0x%x/0x%x.\n",
264 ha->optrom_region_start, ha->optrom_region_size));
265
266 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
7b867cf7 267 ha->isp_ops->read_optrom(vha, ha->optrom_buffer,
b7cc176c 268 ha->optrom_region_start, ha->optrom_region_size);
854165f4 269 break;
270 case 2:
271 if (ha->optrom_state != QLA_SWAITING)
272 break;
273
b7cc176c
JC
274 /*
275 * We need to be more restrictive on which FLASH regions are
276 * allowed to be updated via user-space. Regions accessible
277 * via this method include:
278 *
279 * ISP21xx/ISP22xx/ISP23xx type boards:
280 *
281 * 0x000000 -> 0x020000 -- Boot code.
282 *
283 * ISP2322/ISP24xx type boards:
284 *
285 * 0x000000 -> 0x07ffff -- Boot code.
286 * 0x080000 -> 0x0fffff -- Firmware.
287 *
288 * ISP25xx type boards:
289 *
290 * 0x000000 -> 0x07ffff -- Boot code.
291 * 0x080000 -> 0x0fffff -- Firmware.
292 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
293 */
294 valid = 0;
295 if (ha->optrom_size == OPTROM_SIZE_2300 && start == 0)
296 valid = 1;
c00d8994
AV
297 else if (start == (ha->flt_region_boot * 4) ||
298 start == (ha->flt_region_fw * 4))
b7cc176c 299 valid = 1;
6431c5dc 300 else if (IS_QLA25XX(ha) || IS_QLA81XX(ha))
b7cc176c
JC
301 valid = 1;
302 if (!valid) {
303 qla_printk(KERN_WARNING, ha,
304 "Invalid start region 0x%x/0x%x.\n", start, size);
305 return -EINVAL;
306 }
307
308 ha->optrom_region_start = start;
309 ha->optrom_region_size = start + size > ha->optrom_size ?
310 ha->optrom_size - start : size;
311
854165f4 312 ha->optrom_state = QLA_SWRITING;
b7cc176c 313 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
854165f4 314 if (ha->optrom_buffer == NULL) {
315 qla_printk(KERN_WARNING, ha,
316 "Unable to allocate memory for optrom update "
b7cc176c 317 "(%x).\n", ha->optrom_region_size);
854165f4 318
319 ha->optrom_state = QLA_SWAITING;
320 return count;
321 }
b7cc176c
JC
322
323 DEBUG2(qla_printk(KERN_INFO, ha,
324 "Staging flash region write -- 0x%x/0x%x.\n",
325 ha->optrom_region_start, ha->optrom_region_size));
326
327 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
854165f4 328 break;
329 case 3:
330 if (ha->optrom_state != QLA_SWRITING)
331 break;
332
b7cc176c
JC
333 DEBUG2(qla_printk(KERN_INFO, ha,
334 "Writing flash region -- 0x%x/0x%x.\n",
335 ha->optrom_region_start, ha->optrom_region_size));
336
7b867cf7 337 ha->isp_ops->write_optrom(vha, ha->optrom_buffer,
b7cc176c 338 ha->optrom_region_start, ha->optrom_region_size);
854165f4 339 break;
b7cc176c
JC
340 default:
341 count = -EINVAL;
854165f4 342 }
343 return count;
344}
345
346static struct bin_attribute sysfs_optrom_ctl_attr = {
347 .attr = {
348 .name = "optrom_ctl",
349 .mode = S_IWUSR,
854165f4 350 },
351 .size = 0,
352 .write = qla2x00_sysfs_write_optrom_ctl,
353};
354
6f641790 355static ssize_t
91a69029
ZR
356qla2x00_sysfs_read_vpd(struct kobject *kobj,
357 struct bin_attribute *bin_attr,
358 char *buf, loff_t off, size_t count)
6f641790 359{
7b867cf7 360 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
6f641790 361 struct device, kobj)));
7b867cf7 362 struct qla_hw_data *ha = vha->hw;
6f641790 363
b3dc9088 364 if (!capable(CAP_SYS_ADMIN))
6f641790 365 return 0;
366
281afe19 367 /* Read NVRAM data from cache. */
b3dc9088 368 return memory_read_from_buffer(buf, count, &off, ha->vpd, ha->vpd_size);
6f641790 369}
370
371static ssize_t
91a69029
ZR
372qla2x00_sysfs_write_vpd(struct kobject *kobj,
373 struct bin_attribute *bin_attr,
374 char *buf, loff_t off, size_t count)
6f641790 375{
7b867cf7 376 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
6f641790 377 struct device, kobj)));
7b867cf7 378 struct qla_hw_data *ha = vha->hw;
6f641790 379
380 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size)
381 return 0;
382
6f641790 383 /* Write NVRAM. */
7b867cf7
AC
384 ha->isp_ops->write_nvram(vha, (uint8_t *)buf, ha->vpd_base, count);
385 ha->isp_ops->read_nvram(vha, (uint8_t *)ha->vpd, ha->vpd_base, count);
6f641790 386
387 return count;
388}
389
390static struct bin_attribute sysfs_vpd_attr = {
391 .attr = {
392 .name = "vpd",
393 .mode = S_IRUSR | S_IWUSR,
6f641790 394 },
395 .size = 0,
396 .read = qla2x00_sysfs_read_vpd,
397 .write = qla2x00_sysfs_write_vpd,
398};
399
88729e53 400static ssize_t
91a69029
ZR
401qla2x00_sysfs_read_sfp(struct kobject *kobj,
402 struct bin_attribute *bin_attr,
403 char *buf, loff_t off, size_t count)
88729e53 404{
7b867cf7 405 struct scsi_qla_host *vha = shost_priv(dev_to_shost(container_of(kobj,
88729e53 406 struct device, kobj)));
7b867cf7 407 struct qla_hw_data *ha = vha->hw;
88729e53
AV
408 uint16_t iter, addr, offset;
409 int rval;
410
411 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != SFP_DEV_SIZE * 2)
412 return 0;
413
e8711085
AV
414 if (ha->sfp_data)
415 goto do_read;
416
417 ha->sfp_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
418 &ha->sfp_data_dma);
419 if (!ha->sfp_data) {
420 qla_printk(KERN_WARNING, ha,
421 "Unable to allocate memory for SFP read-data.\n");
422 return 0;
423 }
424
425do_read:
426 memset(ha->sfp_data, 0, SFP_BLOCK_SIZE);
88729e53
AV
427 addr = 0xa0;
428 for (iter = 0, offset = 0; iter < (SFP_DEV_SIZE * 2) / SFP_BLOCK_SIZE;
429 iter++, offset += SFP_BLOCK_SIZE) {
430 if (iter == 4) {
431 /* Skip to next device address. */
432 addr = 0xa2;
433 offset = 0;
434 }
435
7b867cf7 436 rval = qla2x00_read_sfp(vha, ha->sfp_data_dma, addr, offset,
88729e53
AV
437 SFP_BLOCK_SIZE);
438 if (rval != QLA_SUCCESS) {
439 qla_printk(KERN_WARNING, ha,
440 "Unable to read SFP data (%x/%x/%x).\n", rval,
441 addr, offset);
442 count = 0;
443 break;
444 }
445 memcpy(buf, ha->sfp_data, SFP_BLOCK_SIZE);
446 buf += SFP_BLOCK_SIZE;
447 }
448
449 return count;
450}
451
452static struct bin_attribute sysfs_sfp_attr = {
453 .attr = {
454 .name = "sfp",
455 .mode = S_IRUSR | S_IWUSR,
88729e53
AV
456 },
457 .size = SFP_DEV_SIZE * 2,
458 .read = qla2x00_sysfs_read_sfp,
459};
460
f1663ad5
AV
461static struct sysfs_entry {
462 char *name;
463 struct bin_attribute *attr;
464 int is4GBp_only;
465} bin_file_entries[] = {
466 { "fw_dump", &sysfs_fw_dump_attr, },
467 { "nvram", &sysfs_nvram_attr, },
468 { "optrom", &sysfs_optrom_attr, },
469 { "optrom_ctl", &sysfs_optrom_ctl_attr, },
470 { "vpd", &sysfs_vpd_attr, 1 },
471 { "sfp", &sysfs_sfp_attr, 1 },
46ddab7b 472 { NULL },
f1663ad5
AV
473};
474
8482e118 475void
7b867cf7 476qla2x00_alloc_sysfs_attr(scsi_qla_host_t *vha)
8482e118 477{
7b867cf7 478 struct Scsi_Host *host = vha->host;
f1663ad5
AV
479 struct sysfs_entry *iter;
480 int ret;
8482e118 481
f1663ad5 482 for (iter = bin_file_entries; iter->name; iter++) {
7b867cf7 483 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(vha->hw))
f1663ad5
AV
484 continue;
485
486 ret = sysfs_create_bin_file(&host->shost_gendev.kobj,
487 iter->attr);
488 if (ret)
7b867cf7 489 qla_printk(KERN_INFO, vha->hw,
f1663ad5
AV
490 "Unable to create sysfs %s binary attribute "
491 "(%d).\n", iter->name, ret);
7914d004 492 }
8482e118 493}
494
495void
7b867cf7 496qla2x00_free_sysfs_attr(scsi_qla_host_t *vha)
8482e118 497{
7b867cf7 498 struct Scsi_Host *host = vha->host;
f1663ad5 499 struct sysfs_entry *iter;
7b867cf7 500 struct qla_hw_data *ha = vha->hw;
f1663ad5
AV
501
502 for (iter = bin_file_entries; iter->name; iter++) {
e428924c 503 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(ha))
f1663ad5 504 continue;
8482e118 505
88729e53 506 sysfs_remove_bin_file(&host->shost_gendev.kobj,
f1663ad5 507 iter->attr);
7914d004 508 }
f6df144c 509
510 if (ha->beacon_blink_led == 1)
7b867cf7 511 ha->isp_ops->beacon_off(vha);
8482e118 512}
513
afb046e2
AV
514/* Scsi_Host attributes. */
515
516static ssize_t
ee959b00
TJ
517qla2x00_drvr_version_show(struct device *dev,
518 struct device_attribute *attr, char *buf)
afb046e2
AV
519{
520 return snprintf(buf, PAGE_SIZE, "%s\n", qla2x00_version_str);
521}
522
523static ssize_t
ee959b00
TJ
524qla2x00_fw_version_show(struct device *dev,
525 struct device_attribute *attr, char *buf)
afb046e2 526{
7b867cf7
AC
527 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
528 struct qla_hw_data *ha = vha->hw;
529 char fw_str[128];
afb046e2
AV
530
531 return snprintf(buf, PAGE_SIZE, "%s\n",
7b867cf7 532 ha->isp_ops->fw_version_str(vha, fw_str));
afb046e2
AV
533}
534
535static ssize_t
ee959b00
TJ
536qla2x00_serial_num_show(struct device *dev, struct device_attribute *attr,
537 char *buf)
afb046e2 538{
7b867cf7
AC
539 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
540 struct qla_hw_data *ha = vha->hw;
afb046e2
AV
541 uint32_t sn;
542
1ee27146 543 if (IS_FWI2_CAPABLE(ha)) {
7b867cf7 544 qla2xxx_get_vpd_field(vha, "SN", buf, PAGE_SIZE);
1ee27146
JC
545 return snprintf(buf, PAGE_SIZE, "%s\n", buf);
546 }
8b7afc2a 547
afb046e2
AV
548 sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1;
549 return snprintf(buf, PAGE_SIZE, "%c%05d\n", 'A' + sn / 100000,
550 sn % 100000);
551}
552
553static ssize_t
ee959b00
TJ
554qla2x00_isp_name_show(struct device *dev, struct device_attribute *attr,
555 char *buf)
afb046e2 556{
7b867cf7
AC
557 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
558 return snprintf(buf, PAGE_SIZE, "ISP%04X\n", vha->hw->pdev->device);
afb046e2
AV
559}
560
561static ssize_t
ee959b00
TJ
562qla2x00_isp_id_show(struct device *dev, struct device_attribute *attr,
563 char *buf)
afb046e2 564{
7b867cf7
AC
565 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
566 struct qla_hw_data *ha = vha->hw;
afb046e2
AV
567 return snprintf(buf, PAGE_SIZE, "%04x %04x %04x %04x\n",
568 ha->product_id[0], ha->product_id[1], ha->product_id[2],
569 ha->product_id[3]);
570}
571
572static ssize_t
ee959b00
TJ
573qla2x00_model_name_show(struct device *dev, struct device_attribute *attr,
574 char *buf)
afb046e2 575{
7b867cf7
AC
576 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
577 return snprintf(buf, PAGE_SIZE, "%s\n", vha->hw->model_number);
afb046e2
AV
578}
579
580static ssize_t
ee959b00
TJ
581qla2x00_model_desc_show(struct device *dev, struct device_attribute *attr,
582 char *buf)
afb046e2 583{
7b867cf7 584 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
afb046e2 585 return snprintf(buf, PAGE_SIZE, "%s\n",
7b867cf7 586 vha->hw->model_desc ? vha->hw->model_desc : "");
afb046e2
AV
587}
588
589static ssize_t
ee959b00
TJ
590qla2x00_pci_info_show(struct device *dev, struct device_attribute *attr,
591 char *buf)
afb046e2 592{
7b867cf7 593 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
afb046e2
AV
594 char pci_info[30];
595
596 return snprintf(buf, PAGE_SIZE, "%s\n",
7b867cf7 597 vha->hw->isp_ops->pci_info_str(vha, pci_info));
afb046e2
AV
598}
599
600static ssize_t
bbd1ae41
HR
601qla2x00_link_state_show(struct device *dev, struct device_attribute *attr,
602 char *buf)
afb046e2 603{
7b867cf7
AC
604 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
605 struct qla_hw_data *ha = vha->hw;
afb046e2
AV
606 int len = 0;
607
7b867cf7
AC
608 if (atomic_read(&vha->loop_state) == LOOP_DOWN ||
609 atomic_read(&vha->loop_state) == LOOP_DEAD)
afb046e2 610 len = snprintf(buf, PAGE_SIZE, "Link Down\n");
7b867cf7
AC
611 else if (atomic_read(&vha->loop_state) != LOOP_READY ||
612 test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags) ||
613 test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags))
afb046e2
AV
614 len = snprintf(buf, PAGE_SIZE, "Unknown Link State\n");
615 else {
616 len = snprintf(buf, PAGE_SIZE, "Link Up - ");
617
618 switch (ha->current_topology) {
619 case ISP_CFG_NL:
620 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
621 break;
622 case ISP_CFG_FL:
623 len += snprintf(buf + len, PAGE_SIZE-len, "FL_Port\n");
624 break;
625 case ISP_CFG_N:
626 len += snprintf(buf + len, PAGE_SIZE-len,
627 "N_Port to N_Port\n");
628 break;
629 case ISP_CFG_F:
630 len += snprintf(buf + len, PAGE_SIZE-len, "F_Port\n");
631 break;
632 default:
633 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
634 break;
635 }
636 }
637 return len;
638}
639
4fdfefe5 640static ssize_t
ee959b00
TJ
641qla2x00_zio_show(struct device *dev, struct device_attribute *attr,
642 char *buf)
4fdfefe5 643{
7b867cf7 644 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
4fdfefe5
AV
645 int len = 0;
646
7b867cf7 647 switch (vha->hw->zio_mode) {
4fdfefe5
AV
648 case QLA_ZIO_MODE_6:
649 len += snprintf(buf + len, PAGE_SIZE-len, "Mode 6\n");
650 break;
651 case QLA_ZIO_DISABLED:
652 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
653 break;
654 }
655 return len;
656}
657
658static ssize_t
ee959b00
TJ
659qla2x00_zio_store(struct device *dev, struct device_attribute *attr,
660 const char *buf, size_t count)
4fdfefe5 661{
7b867cf7
AC
662 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
663 struct qla_hw_data *ha = vha->hw;
4fdfefe5
AV
664 int val = 0;
665 uint16_t zio_mode;
666
4a59f71d 667 if (!IS_ZIO_SUPPORTED(ha))
668 return -ENOTSUPP;
669
4fdfefe5
AV
670 if (sscanf(buf, "%d", &val) != 1)
671 return -EINVAL;
672
4a59f71d 673 if (val)
4fdfefe5 674 zio_mode = QLA_ZIO_MODE_6;
4a59f71d 675 else
4fdfefe5 676 zio_mode = QLA_ZIO_DISABLED;
4fdfefe5
AV
677
678 /* Update per-hba values and queue a reset. */
679 if (zio_mode != QLA_ZIO_DISABLED || ha->zio_mode != QLA_ZIO_DISABLED) {
680 ha->zio_mode = zio_mode;
7b867cf7 681 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
4fdfefe5
AV
682 }
683 return strlen(buf);
684}
685
686static ssize_t
ee959b00
TJ
687qla2x00_zio_timer_show(struct device *dev, struct device_attribute *attr,
688 char *buf)
4fdfefe5 689{
7b867cf7 690 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
4fdfefe5 691
7b867cf7 692 return snprintf(buf, PAGE_SIZE, "%d us\n", vha->hw->zio_timer * 100);
4fdfefe5
AV
693}
694
695static ssize_t
ee959b00
TJ
696qla2x00_zio_timer_store(struct device *dev, struct device_attribute *attr,
697 const char *buf, size_t count)
4fdfefe5 698{
7b867cf7 699 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
4fdfefe5
AV
700 int val = 0;
701 uint16_t zio_timer;
702
703 if (sscanf(buf, "%d", &val) != 1)
704 return -EINVAL;
705 if (val > 25500 || val < 100)
706 return -ERANGE;
707
708 zio_timer = (uint16_t)(val / 100);
7b867cf7 709 vha->hw->zio_timer = zio_timer;
4fdfefe5
AV
710
711 return strlen(buf);
712}
713
f6df144c 714static ssize_t
ee959b00
TJ
715qla2x00_beacon_show(struct device *dev, struct device_attribute *attr,
716 char *buf)
f6df144c 717{
7b867cf7 718 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
f6df144c 719 int len = 0;
720
7b867cf7 721 if (vha->hw->beacon_blink_led)
f6df144c 722 len += snprintf(buf + len, PAGE_SIZE-len, "Enabled\n");
723 else
724 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
725 return len;
726}
727
728static ssize_t
ee959b00
TJ
729qla2x00_beacon_store(struct device *dev, struct device_attribute *attr,
730 const char *buf, size_t count)
f6df144c 731{
7b867cf7
AC
732 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
733 struct qla_hw_data *ha = vha->hw;
f6df144c 734 int val = 0;
735 int rval;
736
737 if (IS_QLA2100(ha) || IS_QLA2200(ha))
738 return -EPERM;
739
7b867cf7 740 if (test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags)) {
f6df144c 741 qla_printk(KERN_WARNING, ha,
742 "Abort ISP active -- ignoring beacon request.\n");
743 return -EBUSY;
744 }
745
746 if (sscanf(buf, "%d", &val) != 1)
747 return -EINVAL;
748
749 if (val)
7b867cf7 750 rval = ha->isp_ops->beacon_on(vha);
f6df144c 751 else
7b867cf7 752 rval = ha->isp_ops->beacon_off(vha);
f6df144c 753
754 if (rval != QLA_SUCCESS)
755 count = 0;
756
757 return count;
758}
759
30c47662 760static ssize_t
ee959b00
TJ
761qla2x00_optrom_bios_version_show(struct device *dev,
762 struct device_attribute *attr, char *buf)
30c47662 763{
7b867cf7
AC
764 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
765 struct qla_hw_data *ha = vha->hw;
30c47662
AV
766 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->bios_revision[1],
767 ha->bios_revision[0]);
768}
769
770static ssize_t
ee959b00
TJ
771qla2x00_optrom_efi_version_show(struct device *dev,
772 struct device_attribute *attr, char *buf)
30c47662 773{
7b867cf7
AC
774 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
775 struct qla_hw_data *ha = vha->hw;
30c47662
AV
776 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->efi_revision[1],
777 ha->efi_revision[0]);
778}
779
780static ssize_t
ee959b00
TJ
781qla2x00_optrom_fcode_version_show(struct device *dev,
782 struct device_attribute *attr, char *buf)
30c47662 783{
7b867cf7
AC
784 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
785 struct qla_hw_data *ha = vha->hw;
30c47662
AV
786 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->fcode_revision[1],
787 ha->fcode_revision[0]);
788}
789
790static ssize_t
ee959b00
TJ
791qla2x00_optrom_fw_version_show(struct device *dev,
792 struct device_attribute *attr, char *buf)
30c47662 793{
7b867cf7
AC
794 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
795 struct qla_hw_data *ha = vha->hw;
30c47662
AV
796 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d %d\n",
797 ha->fw_revision[0], ha->fw_revision[1], ha->fw_revision[2],
798 ha->fw_revision[3]);
799}
800
e5f5f6f7
HZ
801static ssize_t
802qla2x00_total_isp_aborts_show(struct device *dev,
803 struct device_attribute *attr, char *buf)
804{
7b867cf7
AC
805 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
806 struct qla_hw_data *ha = vha->hw;
e5f5f6f7
HZ
807 return snprintf(buf, PAGE_SIZE, "%d\n",
808 ha->qla_stats.total_isp_aborts);
809}
810
3a03eb79
AV
811static ssize_t
812qla2x00_mpi_version_show(struct device *dev, struct device_attribute *attr,
813 char *buf)
814{
815 scsi_qla_host_t *vha = shost_priv(class_to_shost(dev));
816 struct qla_hw_data *ha = vha->hw;
817
818 if (!IS_QLA81XX(ha))
819 return snprintf(buf, PAGE_SIZE, "\n");
820
821 return snprintf(buf, PAGE_SIZE, "%02x.%02x.%02x.%02x (%x)\n",
822 ha->mpi_version[0], ha->mpi_version[1], ha->mpi_version[2],
823 ha->mpi_version[3], ha->mpi_capabilities);
824}
825
ee959b00
TJ
826static DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, NULL);
827static DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL);
828static DEVICE_ATTR(serial_num, S_IRUGO, qla2x00_serial_num_show, NULL);
829static DEVICE_ATTR(isp_name, S_IRUGO, qla2x00_isp_name_show, NULL);
830static DEVICE_ATTR(isp_id, S_IRUGO, qla2x00_isp_id_show, NULL);
831static DEVICE_ATTR(model_name, S_IRUGO, qla2x00_model_name_show, NULL);
832static DEVICE_ATTR(model_desc, S_IRUGO, qla2x00_model_desc_show, NULL);
833static DEVICE_ATTR(pci_info, S_IRUGO, qla2x00_pci_info_show, NULL);
bbd1ae41 834static DEVICE_ATTR(link_state, S_IRUGO, qla2x00_link_state_show, NULL);
ee959b00
TJ
835static DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show, qla2x00_zio_store);
836static DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show,
837 qla2x00_zio_timer_store);
838static DEVICE_ATTR(beacon, S_IRUGO | S_IWUSR, qla2x00_beacon_show,
839 qla2x00_beacon_store);
840static DEVICE_ATTR(optrom_bios_version, S_IRUGO,
841 qla2x00_optrom_bios_version_show, NULL);
842static DEVICE_ATTR(optrom_efi_version, S_IRUGO,
843 qla2x00_optrom_efi_version_show, NULL);
844static DEVICE_ATTR(optrom_fcode_version, S_IRUGO,
845 qla2x00_optrom_fcode_version_show, NULL);
846static DEVICE_ATTR(optrom_fw_version, S_IRUGO, qla2x00_optrom_fw_version_show,
847 NULL);
e5f5f6f7
HZ
848static DEVICE_ATTR(total_isp_aborts, S_IRUGO, qla2x00_total_isp_aborts_show,
849 NULL);
3a03eb79 850static DEVICE_ATTR(mpi_version, S_IRUGO, qla2x00_mpi_version_show, NULL);
ee959b00
TJ
851
852struct device_attribute *qla2x00_host_attrs[] = {
853 &dev_attr_driver_version,
854 &dev_attr_fw_version,
855 &dev_attr_serial_num,
856 &dev_attr_isp_name,
857 &dev_attr_isp_id,
858 &dev_attr_model_name,
859 &dev_attr_model_desc,
860 &dev_attr_pci_info,
bbd1ae41 861 &dev_attr_link_state,
ee959b00
TJ
862 &dev_attr_zio,
863 &dev_attr_zio_timer,
864 &dev_attr_beacon,
865 &dev_attr_optrom_bios_version,
866 &dev_attr_optrom_efi_version,
867 &dev_attr_optrom_fcode_version,
868 &dev_attr_optrom_fw_version,
e5f5f6f7 869 &dev_attr_total_isp_aborts,
3a03eb79 870 &dev_attr_mpi_version,
afb046e2
AV
871 NULL,
872};
873
8482e118 874/* Host attributes. */
875
876static void
877qla2x00_get_host_port_id(struct Scsi_Host *shost)
878{
7b867cf7 879 scsi_qla_host_t *vha = shost_priv(shost);
8482e118 880
7b867cf7
AC
881 fc_host_port_id(shost) = vha->d_id.b.domain << 16 |
882 vha->d_id.b.area << 8 | vha->d_id.b.al_pa;
8482e118 883}
884
04414013 885static void
886qla2x00_get_host_speed(struct Scsi_Host *shost)
887{
7b867cf7
AC
888 struct qla_hw_data *ha = ((struct scsi_qla_host *)
889 (shost_priv(shost)))->hw;
2ae2b370 890 u32 speed = FC_PORTSPEED_UNKNOWN;
04414013 891
892 switch (ha->link_data_rate) {
d8b45213 893 case PORT_SPEED_1GB:
2ae2b370 894 speed = FC_PORTSPEED_1GBIT;
04414013 895 break;
d8b45213 896 case PORT_SPEED_2GB:
2ae2b370 897 speed = FC_PORTSPEED_2GBIT;
04414013 898 break;
d8b45213 899 case PORT_SPEED_4GB:
2ae2b370 900 speed = FC_PORTSPEED_4GBIT;
04414013 901 break;
da4541b6 902 case PORT_SPEED_8GB:
2ae2b370 903 speed = FC_PORTSPEED_8GBIT;
da4541b6 904 break;
3a03eb79
AV
905 case PORT_SPEED_10GB:
906 speed = FC_PORTSPEED_10GBIT;
907 break;
04414013 908 }
909 fc_host_speed(shost) = speed;
910}
911
8d067623 912static void
913qla2x00_get_host_port_type(struct Scsi_Host *shost)
914{
7b867cf7 915 scsi_qla_host_t *vha = shost_priv(shost);
8d067623 916 uint32_t port_type = FC_PORTTYPE_UNKNOWN;
917
7b867cf7 918 if (vha->vp_idx) {
2f2fa13d
SS
919 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
920 return;
921 }
7b867cf7 922 switch (vha->hw->current_topology) {
8d067623 923 case ISP_CFG_NL:
924 port_type = FC_PORTTYPE_LPORT;
925 break;
926 case ISP_CFG_FL:
927 port_type = FC_PORTTYPE_NLPORT;
928 break;
929 case ISP_CFG_N:
930 port_type = FC_PORTTYPE_PTP;
931 break;
932 case ISP_CFG_F:
933 port_type = FC_PORTTYPE_NPORT;
934 break;
935 }
936 fc_host_port_type(shost) = port_type;
937}
938
8482e118 939static void
940qla2x00_get_starget_node_name(struct scsi_target *starget)
941{
942 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
7b867cf7 943 scsi_qla_host_t *vha = shost_priv(host);
bdf79621 944 fc_port_t *fcport;
f8b02a85 945 u64 node_name = 0;
8482e118 946
7b867cf7 947 list_for_each_entry(fcport, &vha->vp_fcports, list) {
5ab5a4dd
AV
948 if (fcport->rport &&
949 starget->id == fcport->rport->scsi_target_id) {
f8b02a85 950 node_name = wwn_to_u64(fcport->node_name);
bdf79621 951 break;
952 }
953 }
954
f8b02a85 955 fc_starget_node_name(starget) = node_name;
8482e118 956}
957
958static void
959qla2x00_get_starget_port_name(struct scsi_target *starget)
960{
961 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
7b867cf7 962 scsi_qla_host_t *vha = shost_priv(host);
bdf79621 963 fc_port_t *fcport;
f8b02a85 964 u64 port_name = 0;
8482e118 965
7b867cf7 966 list_for_each_entry(fcport, &vha->vp_fcports, list) {
5ab5a4dd
AV
967 if (fcport->rport &&
968 starget->id == fcport->rport->scsi_target_id) {
f8b02a85 969 port_name = wwn_to_u64(fcport->port_name);
bdf79621 970 break;
971 }
972 }
973
f8b02a85 974 fc_starget_port_name(starget) = port_name;
8482e118 975}
976
977static void
978qla2x00_get_starget_port_id(struct scsi_target *starget)
979{
980 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
7b867cf7 981 scsi_qla_host_t *vha = shost_priv(host);
bdf79621 982 fc_port_t *fcport;
983 uint32_t port_id = ~0U;
984
7b867cf7 985 list_for_each_entry(fcport, &vha->vp_fcports, list) {
5ab5a4dd
AV
986 if (fcport->rport &&
987 starget->id == fcport->rport->scsi_target_id) {
bdf79621 988 port_id = fcport->d_id.b.domain << 16 |
989 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
990 break;
991 }
992 }
8482e118 993
8482e118 994 fc_starget_port_id(starget) = port_id;
995}
996
8482e118 997static void
998qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
999{
8482e118 1000 if (timeout)
85821c90 1001 rport->dev_loss_tmo = timeout;
8482e118 1002 else
85821c90 1003 rport->dev_loss_tmo = 1;
8482e118 1004}
1005
5f3a9a20
SJ
1006static void
1007qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport)
1008{
1009 struct Scsi_Host *host = rport_to_shost(rport);
1010 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1011
3c01b4f9
SJ
1012 if (!fcport)
1013 return;
1014
5f3a9a20
SJ
1015 qla2x00_abort_fcport_cmds(fcport);
1016
1017 /*
1018 * Transport has effectively 'deleted' the rport, clear
1019 * all local references.
1020 */
1021 spin_lock_irq(host->host_lock);
1022 fcport->rport = NULL;
1023 *((fc_port_t **)rport->dd_data) = NULL;
1024 spin_unlock_irq(host->host_lock);
1025}
1026
1027static void
1028qla2x00_terminate_rport_io(struct fc_rport *rport)
1029{
1030 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
1031
3c01b4f9
SJ
1032 if (!fcport)
1033 return;
1034
6390d1f3
AV
1035 /*
1036 * At this point all fcport's software-states are cleared. Perform any
1037 * final cleanup of firmware resources (PCBs and XCBs).
1038 */
1039 if (fcport->loop_id != FC_NO_LOOP_ID) {
7b867cf7
AC
1040 fcport->vha->hw->isp_ops->fabric_logout(fcport->vha,
1041 fcport->loop_id, fcport->d_id.b.domain,
1042 fcport->d_id.b.area, fcport->d_id.b.al_pa);
6390d1f3
AV
1043 fcport->loop_id = FC_NO_LOOP_ID;
1044 }
1045
5f3a9a20 1046 qla2x00_abort_fcport_cmds(fcport);
5f3a9a20
SJ
1047}
1048
91ca7b01
AV
1049static int
1050qla2x00_issue_lip(struct Scsi_Host *shost)
1051{
7b867cf7 1052 scsi_qla_host_t *vha = shost_priv(shost);
91ca7b01 1053
7b867cf7 1054 qla2x00_loop_reset(vha);
91ca7b01
AV
1055 return 0;
1056}
1057
392e2f65 1058static struct fc_host_statistics *
1059qla2x00_get_fc_host_stats(struct Scsi_Host *shost)
1060{
7b867cf7
AC
1061 scsi_qla_host_t *vha = shost_priv(shost);
1062 struct qla_hw_data *ha = vha->hw;
1063 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
392e2f65 1064 int rval;
43ef0580
AV
1065 struct link_statistics *stats;
1066 dma_addr_t stats_dma;
392e2f65 1067 struct fc_host_statistics *pfc_host_stat;
1068
1069 pfc_host_stat = &ha->fc_host_stat;
1070 memset(pfc_host_stat, -1, sizeof(struct fc_host_statistics));
1071
43ef0580
AV
1072 stats = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &stats_dma);
1073 if (stats == NULL) {
1074 DEBUG2_3_11(printk("%s(%ld): Failed to allocate memory.\n",
7b867cf7 1075 __func__, base_vha->host_no));
43ef0580
AV
1076 goto done;
1077 }
1078 memset(stats, 0, DMA_POOL_SIZE);
1079
1080 rval = QLA_FUNCTION_FAILED;
e428924c 1081 if (IS_FWI2_CAPABLE(ha)) {
7b867cf7
AC
1082 rval = qla24xx_get_isp_stats(base_vha, stats, stats_dma);
1083 } else if (atomic_read(&base_vha->loop_state) == LOOP_READY &&
1084 !test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) &&
1085 !test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags) &&
178779a6
AV
1086 !ha->dpc_active) {
1087 /* Must be in a 'READY' state for statistics retrieval. */
7b867cf7
AC
1088 rval = qla2x00_get_link_status(base_vha, base_vha->loop_id,
1089 stats, stats_dma);
392e2f65 1090 }
178779a6
AV
1091
1092 if (rval != QLA_SUCCESS)
43ef0580
AV
1093 goto done_free;
1094
1095 pfc_host_stat->link_failure_count = stats->link_fail_cnt;
1096 pfc_host_stat->loss_of_sync_count = stats->loss_sync_cnt;
1097 pfc_host_stat->loss_of_signal_count = stats->loss_sig_cnt;
1098 pfc_host_stat->prim_seq_protocol_err_count = stats->prim_seq_err_cnt;
1099 pfc_host_stat->invalid_tx_word_count = stats->inval_xmit_word_cnt;
1100 pfc_host_stat->invalid_crc_count = stats->inval_crc_cnt;
1101 if (IS_FWI2_CAPABLE(ha)) {
032d8dd7 1102 pfc_host_stat->lip_count = stats->lip_cnt;
43ef0580
AV
1103 pfc_host_stat->tx_frames = stats->tx_frames;
1104 pfc_host_stat->rx_frames = stats->rx_frames;
1105 pfc_host_stat->dumped_frames = stats->dumped_frames;
1106 pfc_host_stat->nos_count = stats->nos_rcvd;
1107 }
49fd462a
HZ
1108 pfc_host_stat->fcp_input_megabytes = ha->qla_stats.input_bytes >> 20;
1109 pfc_host_stat->fcp_output_megabytes = ha->qla_stats.output_bytes >> 20;
392e2f65 1110
43ef0580
AV
1111done_free:
1112 dma_pool_free(ha->s_dma_pool, stats, stats_dma);
178779a6 1113done:
392e2f65 1114 return pfc_host_stat;
1115}
1116
1620f7c2
AV
1117static void
1118qla2x00_get_host_symbolic_name(struct Scsi_Host *shost)
1119{
7b867cf7 1120 scsi_qla_host_t *vha = shost_priv(shost);
1620f7c2 1121
7b867cf7 1122 qla2x00_get_sym_node_name(vha, fc_host_symbolic_name(shost));
1620f7c2
AV
1123}
1124
a740a3f0
AV
1125static void
1126qla2x00_set_host_system_hostname(struct Scsi_Host *shost)
1127{
7b867cf7 1128 scsi_qla_host_t *vha = shost_priv(shost);
a740a3f0 1129
7b867cf7 1130 set_bit(REGISTER_FDMI_NEEDED, &vha->dpc_flags);
a740a3f0
AV
1131}
1132
90991c85
AV
1133static void
1134qla2x00_get_host_fabric_name(struct Scsi_Host *shost)
1135{
7b867cf7 1136 scsi_qla_host_t *vha = shost_priv(shost);
90991c85
AV
1137 u64 node_name;
1138
7b867cf7
AC
1139 if (vha->device_flags & SWITCH_FOUND)
1140 node_name = wwn_to_u64(vha->fabric_node_name);
90991c85 1141 else
7b867cf7 1142 node_name = wwn_to_u64(vha->node_name);
90991c85
AV
1143
1144 fc_host_fabric_name(shost) = node_name;
1145}
1146
7047fcdd
AV
1147static void
1148qla2x00_get_host_port_state(struct Scsi_Host *shost)
1149{
7b867cf7
AC
1150 scsi_qla_host_t *vha = shost_priv(shost);
1151 struct scsi_qla_host *base_vha = pci_get_drvdata(vha->hw->pdev);
7047fcdd 1152
7b867cf7 1153 if (!base_vha->flags.online)
7047fcdd 1154 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
7b867cf7 1155 else if (atomic_read(&base_vha->loop_state) == LOOP_TIMEOUT)
7047fcdd
AV
1156 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1157 else
1158 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
1159}
1160
2c3dfe3f
SJ
1161static int
1162qla24xx_vport_create(struct fc_vport *fc_vport, bool disable)
1163{
1164 int ret = 0;
73208dfd
AC
1165 int cnt = 0;
1166 uint8_t qos = QLA_DEFAULT_QUE_QOS;
7b867cf7
AC
1167 scsi_qla_host_t *base_vha = shost_priv(fc_vport->shost);
1168 scsi_qla_host_t *vha = NULL;
73208dfd 1169 struct qla_hw_data *ha = base_vha->hw;
2c3dfe3f
SJ
1170
1171 ret = qla24xx_vport_create_req_sanity_check(fc_vport);
1172 if (ret) {
1173 DEBUG15(printk("qla24xx_vport_create_req_sanity_check failed, "
1174 "status %x\n", ret));
1175 return (ret);
1176 }
1177
1178 vha = qla24xx_create_vhost(fc_vport);
1179 if (vha == NULL) {
1180 DEBUG15(printk ("qla24xx_create_vhost failed, vha = %p\n",
1181 vha));
1182 return FC_VPORT_FAILED;
1183 }
1184 if (disable) {
1185 atomic_set(&vha->vp_state, VP_OFFLINE);
1186 fc_vport_set_state(fc_vport, FC_VPORT_DISABLED);
1187 } else
1188 atomic_set(&vha->vp_state, VP_FAILED);
1189
1190 /* ready to create vport */
7b867cf7
AC
1191 qla_printk(KERN_INFO, vha->hw, "VP entry id %d assigned.\n",
1192 vha->vp_idx);
2c3dfe3f
SJ
1193
1194 /* initialized vport states */
1195 atomic_set(&vha->loop_state, LOOP_DOWN);
1196 vha->vp_err_state= VP_ERR_PORTDWN;
1197 vha->vp_prev_err_state= VP_ERR_UNKWN;
1198 /* Check if physical ha port is Up */
7b867cf7
AC
1199 if (atomic_read(&base_vha->loop_state) == LOOP_DOWN ||
1200 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
2c3dfe3f
SJ
1201 /* Don't retry or attempt login of this virtual port */
1202 DEBUG15(printk ("scsi(%ld): pport loop_state is not UP.\n",
7b867cf7 1203 base_vha->host_no));
2c3dfe3f
SJ
1204 atomic_set(&vha->loop_state, LOOP_DEAD);
1205 if (!disable)
1206 fc_vport_set_state(fc_vport, FC_VPORT_LINKDOWN);
1207 }
1208
1209 if (scsi_add_host(vha->host, &fc_vport->dev)) {
1210 DEBUG15(printk("scsi(%ld): scsi_add_host failure for VP[%d].\n",
1211 vha->host_no, vha->vp_idx));
1212 goto vport_create_failed_2;
1213 }
1214
1215 /* initialize attributes */
1216 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
1217 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
1218 fc_host_supported_classes(vha->host) =
7b867cf7 1219 fc_host_supported_classes(base_vha->host);
2c3dfe3f 1220 fc_host_supported_speeds(vha->host) =
7b867cf7 1221 fc_host_supported_speeds(base_vha->host);
2c3dfe3f
SJ
1222
1223 qla24xx_vport_disable(fc_vport, disable);
1224
73208dfd
AC
1225 /* Create a queue pair for the vport */
1226 if (ha->mqenable) {
1227 if (ha->npiv_info) {
1228 for (; cnt < ha->nvram_npiv_size; cnt++) {
1229 if (ha->npiv_info[cnt].port_name ==
1230 vha->port_name &&
1231 ha->npiv_info[cnt].node_name ==
1232 vha->node_name) {
1233 qos = ha->npiv_info[cnt].q_qos;
1234 break;
1235 }
1236 }
1237 }
1238 qla25xx_create_queues(vha, qos);
1239 }
1240
2c3dfe3f
SJ
1241 return 0;
1242vport_create_failed_2:
1243 qla24xx_disable_vp(vha);
1244 qla24xx_deallocate_vp_id(vha);
2c3dfe3f
SJ
1245 scsi_host_put(vha->host);
1246 return FC_VPORT_FAILED;
1247}
1248
a824ebb3 1249static int
2c3dfe3f
SJ
1250qla24xx_vport_delete(struct fc_vport *fc_vport)
1251{
2c3dfe3f 1252 scsi_qla_host_t *vha = fc_vport->dd_data;
7b867cf7 1253 fc_port_t *fcport, *tfcport;
73208dfd
AC
1254 struct qla_hw_data *ha = vha->hw;
1255 uint16_t id = vha->vp_idx;
c9c5ced9
AV
1256
1257 while (test_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags) ||
7b867cf7 1258 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags))
c9c5ced9 1259 msleep(1000);
2c3dfe3f
SJ
1260
1261 qla24xx_disable_vp(vha);
2c3dfe3f 1262
7b867cf7
AC
1263 fc_remove_host(vha->host);
1264
1265 scsi_remove_host(vha->host);
1266
1267 list_for_each_entry_safe(fcport, tfcport, &vha->vp_fcports, list) {
1268 list_del(&fcport->list);
1269 kfree(fcport);
1270 fcport = NULL;
1271 }
1272
1273 qla24xx_deallocate_vp_id(vha);
2c3dfe3f
SJ
1274
1275 if (vha->timer_active) {
1276 qla2x00_vp_stop_timer(vha);
1277 DEBUG15(printk ("scsi(%ld): timer for the vport[%d] = %p "
1278 "has stopped\n",
1279 vha->host_no, vha->vp_idx, vha));
1280 }
1281
cf5a1631
AC
1282 if (ha->mqenable) {
1283 if (qla25xx_delete_queues(vha, 0) != QLA_SUCCESS)
1284 qla_printk(KERN_WARNING, ha,
1285 "Queue delete failed.\n");
1286 }
1287
2c3dfe3f 1288 scsi_host_put(vha->host);
73208dfd 1289 qla_printk(KERN_INFO, ha, "vport %d deleted\n", id);
2c3dfe3f
SJ
1290 return 0;
1291}
1292
a824ebb3 1293static int
2c3dfe3f
SJ
1294qla24xx_vport_disable(struct fc_vport *fc_vport, bool disable)
1295{
1296 scsi_qla_host_t *vha = fc_vport->dd_data;
1297
1298 if (disable)
1299 qla24xx_disable_vp(vha);
1300 else
1301 qla24xx_enable_vp(vha);
1302
1303 return 0;
1304}
1305
1c97a12a 1306struct fc_function_template qla2xxx_transport_functions = {
8482e118 1307
1308 .show_host_node_name = 1,
1309 .show_host_port_name = 1,
ad3e0eda 1310 .show_host_supported_classes = 1,
2ae2b370 1311 .show_host_supported_speeds = 1,
ad3e0eda 1312
8482e118 1313 .get_host_port_id = qla2x00_get_host_port_id,
1314 .show_host_port_id = 1,
04414013 1315 .get_host_speed = qla2x00_get_host_speed,
1316 .show_host_speed = 1,
8d067623 1317 .get_host_port_type = qla2x00_get_host_port_type,
1318 .show_host_port_type = 1,
1620f7c2
AV
1319 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
1320 .show_host_symbolic_name = 1,
a740a3f0
AV
1321 .set_host_system_hostname = qla2x00_set_host_system_hostname,
1322 .show_host_system_hostname = 1,
90991c85
AV
1323 .get_host_fabric_name = qla2x00_get_host_fabric_name,
1324 .show_host_fabric_name = 1,
7047fcdd
AV
1325 .get_host_port_state = qla2x00_get_host_port_state,
1326 .show_host_port_state = 1,
8482e118 1327
bdf79621 1328 .dd_fcrport_size = sizeof(struct fc_port *),
ad3e0eda 1329 .show_rport_supported_classes = 1,
8482e118 1330
1331 .get_starget_node_name = qla2x00_get_starget_node_name,
1332 .show_starget_node_name = 1,
1333 .get_starget_port_name = qla2x00_get_starget_port_name,
1334 .show_starget_port_name = 1,
1335 .get_starget_port_id = qla2x00_get_starget_port_id,
1336 .show_starget_port_id = 1,
1337
8482e118 1338 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
1339 .show_rport_dev_loss_tmo = 1,
1340
91ca7b01 1341 .issue_fc_host_lip = qla2x00_issue_lip,
5f3a9a20
SJ
1342 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
1343 .terminate_rport_io = qla2x00_terminate_rport_io,
392e2f65 1344 .get_fc_host_stats = qla2x00_get_fc_host_stats,
2c3dfe3f
SJ
1345
1346 .vport_create = qla24xx_vport_create,
1347 .vport_disable = qla24xx_vport_disable,
1348 .vport_delete = qla24xx_vport_delete,
1349};
1350
1351struct fc_function_template qla2xxx_transport_vport_functions = {
1352
1353 .show_host_node_name = 1,
1354 .show_host_port_name = 1,
1355 .show_host_supported_classes = 1,
1356
1357 .get_host_port_id = qla2x00_get_host_port_id,
1358 .show_host_port_id = 1,
1359 .get_host_speed = qla2x00_get_host_speed,
1360 .show_host_speed = 1,
1361 .get_host_port_type = qla2x00_get_host_port_type,
1362 .show_host_port_type = 1,
1363 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
1364 .show_host_symbolic_name = 1,
1365 .set_host_system_hostname = qla2x00_set_host_system_hostname,
1366 .show_host_system_hostname = 1,
1367 .get_host_fabric_name = qla2x00_get_host_fabric_name,
1368 .show_host_fabric_name = 1,
1369 .get_host_port_state = qla2x00_get_host_port_state,
1370 .show_host_port_state = 1,
1371
1372 .dd_fcrport_size = sizeof(struct fc_port *),
1373 .show_rport_supported_classes = 1,
1374
1375 .get_starget_node_name = qla2x00_get_starget_node_name,
1376 .show_starget_node_name = 1,
1377 .get_starget_port_name = qla2x00_get_starget_port_name,
1378 .show_starget_port_name = 1,
1379 .get_starget_port_id = qla2x00_get_starget_port_id,
1380 .show_starget_port_id = 1,
1381
2c3dfe3f
SJ
1382 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
1383 .show_rport_dev_loss_tmo = 1,
1384
1385 .issue_fc_host_lip = qla2x00_issue_lip,
5f3a9a20
SJ
1386 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
1387 .terminate_rport_io = qla2x00_terminate_rport_io,
2c3dfe3f 1388 .get_fc_host_stats = qla2x00_get_fc_host_stats,
8482e118 1389};
1390
8482e118 1391void
7b867cf7 1392qla2x00_init_host_attr(scsi_qla_host_t *vha)
8482e118 1393{
7b867cf7 1394 struct qla_hw_data *ha = vha->hw;
2ae2b370
AV
1395 u32 speed = FC_PORTSPEED_UNKNOWN;
1396
7b867cf7
AC
1397 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
1398 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
1399 fc_host_supported_classes(vha->host) = FC_COS_CLASS3;
1400 fc_host_max_npiv_vports(vha->host) = ha->max_npiv_vports;
1401 fc_host_npiv_vports_inuse(vha->host) = ha->cur_vport_count;
2ae2b370 1402
3a03eb79
AV
1403 if (IS_QLA81XX(ha))
1404 speed = FC_PORTSPEED_10GBIT;
1405 else if (IS_QLA25XX(ha))
2ae2b370
AV
1406 speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT |
1407 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
4d4df193 1408 else if (IS_QLA24XX_TYPE(ha))
2ae2b370
AV
1409 speed = FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
1410 FC_PORTSPEED_1GBIT;
1411 else if (IS_QLA23XX(ha))
1412 speed = FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
1413 else
1414 speed = FC_PORTSPEED_1GBIT;
7b867cf7 1415 fc_host_supported_speeds(vha->host) = speed;
8482e118 1416}
This page took 0.73857 seconds and 5 git commands to generate.