blob: a319a20ed440748da301b5a268941d5e57d00294 [file] [log] [blame]
8482e1182005-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
8482e1182005-04-17 15:04:54 -05004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
8482e1182005-04-17 15:04:54 -05006 */
7#include "qla_def.h"
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>
8482e1182005-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
8482e1182005-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)
8482e1182005-04-17 15:04:54 -050021{
Andrew Vasquezf363b942007-09-20 14:07:45 -070022 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -050023 struct device, kobj)));
24
25 if (ha->fw_dump_reading == 0)
26 return 0;
8482e1182005-04-17 15:04:54 -050027
Akinobu Mitab3dc9082008-07-24 08:31:47 -070028 return memory_read_from_buffer(buf, count, &off, ha->fw_dump,
29 ha->fw_dump_len);
8482e1182005-04-17 15:04:54 -050030}
31
32static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +080033qla2x00_sysfs_write_fw_dump(struct kobject *kobj,
34 struct bin_attribute *bin_attr,
35 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -050036{
Andrew Vasquezf363b942007-09-20 14:07:45 -070037 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -050038 struct device, kobj)));
39 int reading;
8482e1182005-04-17 15:04:54 -050040
41 if (off != 0)
42 return (0);
43
44 reading = simple_strtol(buf, NULL, 10);
45 switch (reading) {
46 case 0:
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070047 if (!ha->fw_dump_reading)
48 break;
8482e1182005-04-17 15:04:54 -050049
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070050 qla_printk(KERN_INFO, ha,
51 "Firmware dump cleared on (%ld).\n", ha->host_no);
52
53 ha->fw_dump_reading = 0;
54 ha->fw_dumped = 0;
8482e1182005-04-17 15:04:54 -050055 break;
56 case 1:
Andrew Vasquezd4e3e042006-05-17 15:09:50 -070057 if (ha->fw_dumped && !ha->fw_dump_reading) {
8482e1182005-04-17 15:04:54 -050058 ha->fw_dump_reading = 1;
59
8482e1182005-04-17 15:04:54 -050060 qla_printk(KERN_INFO, ha,
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070061 "Raw firmware dump ready for read on (%ld).\n",
8482e1182005-04-17 15:04:54 -050062 ha->host_no);
8482e1182005-04-17 15:04:54 -050063 }
64 break;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070065 case 2:
66 qla2x00_alloc_fw_dump(ha);
67 break;
Andrew Vasquez68af0812008-05-12 22:21:13 -070068 case 3:
69 qla2x00_system_error(ha);
70 break;
8482e1182005-04-17 15:04:54 -050071 }
72 return (count);
73}
74
75static struct bin_attribute sysfs_fw_dump_attr = {
76 .attr = {
77 .name = "fw_dump",
78 .mode = S_IRUSR | S_IWUSR,
8482e1182005-04-17 15:04:54 -050079 },
80 .size = 0,
81 .read = qla2x00_sysfs_read_fw_dump,
82 .write = qla2x00_sysfs_write_fw_dump,
83};
84
85static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +080086qla2x00_sysfs_read_nvram(struct kobject *kobj,
87 struct bin_attribute *bin_attr,
88 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -050089{
Andrew Vasquezf363b942007-09-20 14:07:45 -070090 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -050091 struct device, kobj)));
8482e1182005-04-17 15:04:54 -050092
Akinobu Mitab3dc9082008-07-24 08:31:47 -070093 if (!capable(CAP_SYS_ADMIN))
8482e1182005-04-17 15:04:54 -050094 return 0;
95
Seokmann Ju281afe12007-07-26 13:43:34 -070096 /* Read NVRAM data from cache. */
Akinobu Mitab3dc9082008-07-24 08:31:47 -070097 return memory_read_from_buffer(buf, count, &off, ha->nvram,
98 ha->nvram_size);
8482e1182005-04-17 15:04:54 -050099}
100
101static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800102qla2x00_sysfs_write_nvram(struct kobject *kobj,
103 struct bin_attribute *bin_attr,
104 char *buf, loff_t off, size_t count)
8482e1182005-04-17 15:04:54 -0500105{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700106 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
8482e1182005-04-17 15:04:54 -0500107 struct device, kobj)));
8482e1182005-04-17 15:04:54 -0500108 uint16_t cnt;
8482e1182005-04-17 15:04:54 -0500109
Andrew Vasquez459c5372005-07-06 10:31:07 -0700110 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size)
8482e1182005-04-17 15:04:54 -0500111 return 0;
112
113 /* Checksum NVRAM. */
Andrew Vasqueze4289242007-07-19 15:05:56 -0700114 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez459c5372005-07-06 10:31:07 -0700115 uint32_t *iter;
116 uint32_t chksum;
117
118 iter = (uint32_t *)buf;
119 chksum = 0;
120 for (cnt = 0; cnt < ((count >> 2) - 1); cnt++)
121 chksum += le32_to_cpu(*iter++);
122 chksum = ~chksum + 1;
123 *iter = cpu_to_le32(chksum);
124 } else {
125 uint8_t *iter;
126 uint8_t chksum;
127
128 iter = (uint8_t *)buf;
129 chksum = 0;
130 for (cnt = 0; cnt < count - 1; cnt++)
131 chksum += *iter++;
132 chksum = ~chksum + 1;
133 *iter = chksum;
134 }
8482e1182005-04-17 15:04:54 -0500135
136 /* Write NVRAM. */
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700137 ha->isp_ops->write_nvram(ha, (uint8_t *)buf, ha->nvram_base, count);
Andrew Vasquezc45bcc82007-09-20 14:07:42 -0700138 ha->isp_ops->read_nvram(ha, (uint8_t *)ha->nvram, ha->nvram_base,
Seokmann Ju281afe12007-07-26 13:43:34 -0700139 count);
8482e1182005-04-17 15:04:54 -0500140
Andrew Vasquez26b8d3482007-01-29 10:22:28 -0800141 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
142
8482e1182005-04-17 15:04:54 -0500143 return (count);
144}
145
146static struct bin_attribute sysfs_nvram_attr = {
147 .attr = {
148 .name = "nvram",
149 .mode = S_IRUSR | S_IWUSR,
8482e1182005-04-17 15:04:54 -0500150 },
andrew.vasquez@qlogic.com1b3f6362006-01-31 16:05:12 -0800151 .size = 512,
8482e1182005-04-17 15:04:54 -0500152 .read = qla2x00_sysfs_read_nvram,
153 .write = qla2x00_sysfs_write_nvram,
154};
155
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800156static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800157qla2x00_sysfs_read_optrom(struct kobject *kobj,
158 struct bin_attribute *bin_attr,
159 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800160{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700161 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800162 struct device, kobj)));
163
164 if (ha->optrom_state != QLA_SREADING)
165 return 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800166
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700167 return memory_read_from_buffer(buf, count, &off, ha->optrom_buffer,
168 ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800169}
170
171static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800172qla2x00_sysfs_write_optrom(struct kobject *kobj,
173 struct bin_attribute *bin_attr,
174 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800175{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700176 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800177 struct device, kobj)));
178
179 if (ha->optrom_state != QLA_SWRITING)
180 return -EINVAL;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700181 if (off > ha->optrom_region_size)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800182 return -ERANGE;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700183 if (off + count > ha->optrom_region_size)
184 count = ha->optrom_region_size - off;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800185
186 memcpy(&ha->optrom_buffer[off], buf, count);
187
188 return count;
189}
190
191static struct bin_attribute sysfs_optrom_attr = {
192 .attr = {
193 .name = "optrom",
194 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800195 },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700196 .size = 0,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800197 .read = qla2x00_sysfs_read_optrom,
198 .write = qla2x00_sysfs_write_optrom,
199};
200
201static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800202qla2x00_sysfs_write_optrom_ctl(struct kobject *kobj,
203 struct bin_attribute *bin_attr,
204 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800205{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700206 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800207 struct device, kobj)));
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700208 uint32_t start = 0;
209 uint32_t size = ha->optrom_size;
210 int val, valid;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800211
212 if (off)
213 return 0;
214
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700215 if (sscanf(buf, "%d:%x:%x", &val, &start, &size) < 1)
216 return -EINVAL;
217 if (start > ha->optrom_size)
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800218 return -EINVAL;
219
220 switch (val) {
221 case 0:
222 if (ha->optrom_state != QLA_SREADING &&
223 ha->optrom_state != QLA_SWRITING)
224 break;
225
226 ha->optrom_state = QLA_SWAITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700227
228 DEBUG2(qla_printk(KERN_INFO, ha,
229 "Freeing flash region allocation -- 0x%x bytes.\n",
230 ha->optrom_region_size));
231
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800232 vfree(ha->optrom_buffer);
233 ha->optrom_buffer = NULL;
234 break;
235 case 1:
236 if (ha->optrom_state != QLA_SWAITING)
237 break;
238
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700239 if (start & 0xfff) {
240 qla_printk(KERN_WARNING, ha,
241 "Invalid start region 0x%x/0x%x.\n", start, size);
242 return -EINVAL;
243 }
244
245 ha->optrom_region_start = start;
246 ha->optrom_region_size = start + size > ha->optrom_size ?
247 ha->optrom_size - start : size;
248
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800249 ha->optrom_state = QLA_SREADING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700250 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800251 if (ha->optrom_buffer == NULL) {
252 qla_printk(KERN_WARNING, ha,
253 "Unable to allocate memory for optrom retrieval "
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700254 "(%x).\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800255
256 ha->optrom_state = QLA_SWAITING;
257 return count;
258 }
259
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700260 DEBUG2(qla_printk(KERN_INFO, ha,
261 "Reading flash region -- 0x%x/0x%x.\n",
262 ha->optrom_region_start, ha->optrom_region_size));
263
264 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
265 ha->isp_ops->read_optrom(ha, ha->optrom_buffer,
266 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800267 break;
268 case 2:
269 if (ha->optrom_state != QLA_SWAITING)
270 break;
271
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700272 /*
273 * We need to be more restrictive on which FLASH regions are
274 * allowed to be updated via user-space. Regions accessible
275 * via this method include:
276 *
277 * ISP21xx/ISP22xx/ISP23xx type boards:
278 *
279 * 0x000000 -> 0x020000 -- Boot code.
280 *
281 * ISP2322/ISP24xx type boards:
282 *
283 * 0x000000 -> 0x07ffff -- Boot code.
284 * 0x080000 -> 0x0fffff -- Firmware.
285 *
286 * ISP25xx type boards:
287 *
288 * 0x000000 -> 0x07ffff -- Boot code.
289 * 0x080000 -> 0x0fffff -- Firmware.
290 * 0x120000 -> 0x12ffff -- VPD and HBA parameters.
291 */
292 valid = 0;
293 if (ha->optrom_size == OPTROM_SIZE_2300 && start == 0)
294 valid = 1;
295 else if (start == (FA_BOOT_CODE_ADDR*4) ||
296 start == (FA_RISC_CODE_ADDR*4))
297 valid = 1;
298 else if (IS_QLA25XX(ha) && start == (FA_VPD_NVRAM_ADDR*4))
299 valid = 1;
300 if (!valid) {
301 qla_printk(KERN_WARNING, ha,
302 "Invalid start region 0x%x/0x%x.\n", start, size);
303 return -EINVAL;
304 }
305
306 ha->optrom_region_start = start;
307 ha->optrom_region_size = start + size > ha->optrom_size ?
308 ha->optrom_size - start : size;
309
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800310 ha->optrom_state = QLA_SWRITING;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700311 ha->optrom_buffer = vmalloc(ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800312 if (ha->optrom_buffer == NULL) {
313 qla_printk(KERN_WARNING, ha,
314 "Unable to allocate memory for optrom update "
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700315 "(%x).\n", ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800316
317 ha->optrom_state = QLA_SWAITING;
318 return count;
319 }
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700320
321 DEBUG2(qla_printk(KERN_INFO, ha,
322 "Staging flash region write -- 0x%x/0x%x.\n",
323 ha->optrom_region_start, ha->optrom_region_size));
324
325 memset(ha->optrom_buffer, 0, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800326 break;
327 case 3:
328 if (ha->optrom_state != QLA_SWRITING)
329 break;
330
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700331 DEBUG2(qla_printk(KERN_INFO, ha,
332 "Writing flash region -- 0x%x/0x%x.\n",
333 ha->optrom_region_start, ha->optrom_region_size));
334
335 ha->isp_ops->write_optrom(ha, ha->optrom_buffer,
336 ha->optrom_region_start, ha->optrom_region_size);
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800337 break;
Joe Carnucciob7cc1762007-09-20 14:07:35 -0700338 default:
339 count = -EINVAL;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800340 }
341 return count;
342}
343
344static struct bin_attribute sysfs_optrom_ctl_attr = {
345 .attr = {
346 .name = "optrom_ctl",
347 .mode = S_IWUSR,
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800348 },
349 .size = 0,
350 .write = qla2x00_sysfs_write_optrom_ctl,
351};
352
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800353static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800354qla2x00_sysfs_read_vpd(struct kobject *kobj,
355 struct bin_attribute *bin_attr,
356 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800357{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700358 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800359 struct device, kobj)));
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800360
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700361 if (!capable(CAP_SYS_ADMIN))
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800362 return 0;
363
Seokmann Ju281afe12007-07-26 13:43:34 -0700364 /* Read NVRAM data from cache. */
Akinobu Mitab3dc9082008-07-24 08:31:47 -0700365 return memory_read_from_buffer(buf, count, &off, ha->vpd, ha->vpd_size);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800366}
367
368static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800369qla2x00_sysfs_write_vpd(struct kobject *kobj,
370 struct bin_attribute *bin_attr,
371 char *buf, loff_t off, size_t count)
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800372{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700373 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800374 struct device, kobj)));
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800375
376 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->vpd_size)
377 return 0;
378
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800379 /* Write NVRAM. */
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700380 ha->isp_ops->write_nvram(ha, (uint8_t *)buf, ha->vpd_base, count);
Seokmann Ju281afe12007-07-26 13:43:34 -0700381 ha->isp_ops->read_nvram(ha, (uint8_t *)ha->vpd, ha->vpd_base, count);
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800382
383 return count;
384}
385
386static struct bin_attribute sysfs_vpd_attr = {
387 .attr = {
388 .name = "vpd",
389 .mode = S_IRUSR | S_IWUSR,
andrew.vasquez@qlogic.com6f641792006-03-09 14:27:34 -0800390 },
391 .size = 0,
392 .read = qla2x00_sysfs_read_vpd,
393 .write = qla2x00_sysfs_write_vpd,
394};
395
Andrew Vasquez88729e52006-06-23 16:10:50 -0700396static ssize_t
Zhang Rui91a69022007-06-09 13:57:22 +0800397qla2x00_sysfs_read_sfp(struct kobject *kobj,
398 struct bin_attribute *bin_attr,
399 char *buf, loff_t off, size_t count)
Andrew Vasquez88729e52006-06-23 16:10:50 -0700400{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700401 struct scsi_qla_host *ha = shost_priv(dev_to_shost(container_of(kobj,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700402 struct device, kobj)));
403 uint16_t iter, addr, offset;
404 int rval;
405
406 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != SFP_DEV_SIZE * 2)
407 return 0;
408
Andrew Vasqueze8711082008-01-31 12:33:48 -0800409 if (ha->sfp_data)
410 goto do_read;
411
412 ha->sfp_data = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
413 &ha->sfp_data_dma);
414 if (!ha->sfp_data) {
415 qla_printk(KERN_WARNING, ha,
416 "Unable to allocate memory for SFP read-data.\n");
417 return 0;
418 }
419
420do_read:
421 memset(ha->sfp_data, 0, SFP_BLOCK_SIZE);
Andrew Vasquez88729e52006-06-23 16:10:50 -0700422 addr = 0xa0;
423 for (iter = 0, offset = 0; iter < (SFP_DEV_SIZE * 2) / SFP_BLOCK_SIZE;
424 iter++, offset += SFP_BLOCK_SIZE) {
425 if (iter == 4) {
426 /* Skip to next device address. */
427 addr = 0xa2;
428 offset = 0;
429 }
430
431 rval = qla2x00_read_sfp(ha, ha->sfp_data_dma, addr, offset,
432 SFP_BLOCK_SIZE);
433 if (rval != QLA_SUCCESS) {
434 qla_printk(KERN_WARNING, ha,
435 "Unable to read SFP data (%x/%x/%x).\n", rval,
436 addr, offset);
437 count = 0;
438 break;
439 }
440 memcpy(buf, ha->sfp_data, SFP_BLOCK_SIZE);
441 buf += SFP_BLOCK_SIZE;
442 }
443
444 return count;
445}
446
447static struct bin_attribute sysfs_sfp_attr = {
448 .attr = {
449 .name = "sfp",
450 .mode = S_IRUSR | S_IWUSR,
Andrew Vasquez88729e52006-06-23 16:10:50 -0700451 },
452 .size = SFP_DEV_SIZE * 2,
453 .read = qla2x00_sysfs_read_sfp,
454};
455
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700456static struct sysfs_entry {
457 char *name;
458 struct bin_attribute *attr;
459 int is4GBp_only;
460} bin_file_entries[] = {
461 { "fw_dump", &sysfs_fw_dump_attr, },
462 { "nvram", &sysfs_nvram_attr, },
463 { "optrom", &sysfs_optrom_attr, },
464 { "optrom_ctl", &sysfs_optrom_ctl_attr, },
465 { "vpd", &sysfs_vpd_attr, 1 },
466 { "sfp", &sysfs_sfp_attr, 1 },
Randy Dunlap46ddab72006-11-27 09:35:42 -0800467 { NULL },
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700468};
469
8482e1182005-04-17 15:04:54 -0500470void
471qla2x00_alloc_sysfs_attr(scsi_qla_host_t *ha)
472{
473 struct Scsi_Host *host = ha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700474 struct sysfs_entry *iter;
475 int ret;
8482e1182005-04-17 15:04:54 -0500476
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700477 for (iter = bin_file_entries; iter->name; iter++) {
Andrew Vasqueze4289242007-07-19 15:05:56 -0700478 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(ha))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700479 continue;
480
481 ret = sysfs_create_bin_file(&host->shost_gendev.kobj,
482 iter->attr);
483 if (ret)
484 qla_printk(KERN_INFO, ha,
485 "Unable to create sysfs %s binary attribute "
486 "(%d).\n", iter->name, ret);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700487 }
8482e1182005-04-17 15:04:54 -0500488}
489
490void
491qla2x00_free_sysfs_attr(scsi_qla_host_t *ha)
492{
493 struct Scsi_Host *host = ha->host;
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700494 struct sysfs_entry *iter;
8482e1182005-04-17 15:04:54 -0500495
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700496 for (iter = bin_file_entries; iter->name; iter++) {
Andrew Vasqueze4289242007-07-19 15:05:56 -0700497 if (iter->is4GBp_only && !IS_FWI2_CAPABLE(ha))
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700498 continue;
499
Andrew Vasquez7914d002006-06-23 16:10:55 -0700500 sysfs_remove_bin_file(&host->shost_gendev.kobj,
Andrew Vasquezf1663ad2006-10-13 09:33:37 -0700501 iter->attr);
Andrew Vasquez7914d002006-06-23 16:10:55 -0700502 }
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800503
504 if (ha->beacon_blink_led == 1)
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700505 ha->isp_ops->beacon_off(ha);
8482e1182005-04-17 15:04:54 -0500506}
507
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700508/* Scsi_Host attributes. */
509
510static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100511qla2x00_drvr_version_show(struct device *dev,
512 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700513{
514 return snprintf(buf, PAGE_SIZE, "%s\n", qla2x00_version_str);
515}
516
517static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100518qla2x00_fw_version_show(struct device *dev,
519 struct device_attribute *attr, char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700520{
Tony Jonesee959b02008-02-22 00:13:36 +0100521 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700522 char fw_str[30];
523
524 return snprintf(buf, PAGE_SIZE, "%s\n",
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700525 ha->isp_ops->fw_version_str(ha, fw_str));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700526}
527
528static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100529qla2x00_serial_num_show(struct device *dev, struct device_attribute *attr,
530 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700531{
Tony Jonesee959b02008-02-22 00:13:36 +0100532 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700533 uint32_t sn;
534
Joe Carnuccio1ee27142008-07-10 16:55:53 -0700535 if (IS_FWI2_CAPABLE(ha)) {
536 qla2xxx_get_vpd_field(ha, "SN", buf, PAGE_SIZE);
537 return snprintf(buf, PAGE_SIZE, "%s\n", buf);
538 }
Andrew Vasquez8b7afc22007-10-19 15:59:19 -0700539
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700540 sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1;
541 return snprintf(buf, PAGE_SIZE, "%c%05d\n", 'A' + sn / 100000,
542 sn % 100000);
543}
544
545static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100546qla2x00_isp_name_show(struct device *dev, struct device_attribute *attr,
547 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700548{
Tony Jonesee959b02008-02-22 00:13:36 +0100549 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquez54333832005-11-09 15:49:04 -0800550 return snprintf(buf, PAGE_SIZE, "ISP%04X\n", ha->pdev->device);
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700551}
552
553static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100554qla2x00_isp_id_show(struct device *dev, struct device_attribute *attr,
555 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700556{
Tony Jonesee959b02008-02-22 00:13:36 +0100557 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700558 return snprintf(buf, PAGE_SIZE, "%04x %04x %04x %04x\n",
559 ha->product_id[0], ha->product_id[1], ha->product_id[2],
560 ha->product_id[3]);
561}
562
563static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100564qla2x00_model_name_show(struct device *dev, struct device_attribute *attr,
565 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700566{
Tony Jonesee959b02008-02-22 00:13:36 +0100567 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700568 return snprintf(buf, PAGE_SIZE, "%s\n", ha->model_number);
569}
570
571static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100572qla2x00_model_desc_show(struct device *dev, struct device_attribute *attr,
573 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700574{
Tony Jonesee959b02008-02-22 00:13:36 +0100575 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700576 return snprintf(buf, PAGE_SIZE, "%s\n",
577 ha->model_desc ? ha->model_desc: "");
578}
579
580static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100581qla2x00_pci_info_show(struct device *dev, struct device_attribute *attr,
582 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700583{
Tony Jonesee959b02008-02-22 00:13:36 +0100584 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700585 char pci_info[30];
586
587 return snprintf(buf, PAGE_SIZE, "%s\n",
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700588 ha->isp_ops->pci_info_str(ha, pci_info));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700589}
590
591static ssize_t
Hannes Reineckebbd1ae42008-03-18 14:32:28 +0100592qla2x00_link_state_show(struct device *dev, struct device_attribute *attr,
593 char *buf)
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700594{
Tony Jonesee959b02008-02-22 00:13:36 +0100595 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700596 int len = 0;
597
598 if (atomic_read(&ha->loop_state) == LOOP_DOWN ||
599 atomic_read(&ha->loop_state) == LOOP_DEAD)
600 len = snprintf(buf, PAGE_SIZE, "Link Down\n");
601 else if (atomic_read(&ha->loop_state) != LOOP_READY ||
602 test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags) ||
603 test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags))
604 len = snprintf(buf, PAGE_SIZE, "Unknown Link State\n");
605 else {
606 len = snprintf(buf, PAGE_SIZE, "Link Up - ");
607
608 switch (ha->current_topology) {
609 case ISP_CFG_NL:
610 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
611 break;
612 case ISP_CFG_FL:
613 len += snprintf(buf + len, PAGE_SIZE-len, "FL_Port\n");
614 break;
615 case ISP_CFG_N:
616 len += snprintf(buf + len, PAGE_SIZE-len,
617 "N_Port to N_Port\n");
618 break;
619 case ISP_CFG_F:
620 len += snprintf(buf + len, PAGE_SIZE-len, "F_Port\n");
621 break;
622 default:
623 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
624 break;
625 }
626 }
627 return len;
628}
629
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700630static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100631qla2x00_zio_show(struct device *dev, struct device_attribute *attr,
632 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700633{
Tony Jonesee959b02008-02-22 00:13:36 +0100634 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700635 int len = 0;
636
637 switch (ha->zio_mode) {
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700638 case QLA_ZIO_MODE_6:
639 len += snprintf(buf + len, PAGE_SIZE-len, "Mode 6\n");
640 break;
641 case QLA_ZIO_DISABLED:
642 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
643 break;
644 }
645 return len;
646}
647
648static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100649qla2x00_zio_store(struct device *dev, struct device_attribute *attr,
650 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700651{
Tony Jonesee959b02008-02-22 00:13:36 +0100652 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700653 int val = 0;
654 uint16_t zio_mode;
655
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -0800656 if (!IS_ZIO_SUPPORTED(ha))
657 return -ENOTSUPP;
658
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700659 if (sscanf(buf, "%d", &val) != 1)
660 return -EINVAL;
661
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -0800662 if (val)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700663 zio_mode = QLA_ZIO_MODE_6;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -0800664 else
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700665 zio_mode = QLA_ZIO_DISABLED;
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700666
667 /* Update per-hba values and queue a reset. */
668 if (zio_mode != QLA_ZIO_DISABLED || ha->zio_mode != QLA_ZIO_DISABLED) {
669 ha->zio_mode = zio_mode;
670 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
671 }
672 return strlen(buf);
673}
674
675static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100676qla2x00_zio_timer_show(struct device *dev, struct device_attribute *attr,
677 char *buf)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700678{
Tony Jonesee959b02008-02-22 00:13:36 +0100679 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700680
681 return snprintf(buf, PAGE_SIZE, "%d us\n", ha->zio_timer * 100);
682}
683
684static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100685qla2x00_zio_timer_store(struct device *dev, struct device_attribute *attr,
686 const char *buf, size_t count)
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700687{
Tony Jonesee959b02008-02-22 00:13:36 +0100688 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquez4fdfefe2005-10-27 11:09:48 -0700689 int val = 0;
690 uint16_t zio_timer;
691
692 if (sscanf(buf, "%d", &val) != 1)
693 return -EINVAL;
694 if (val > 25500 || val < 100)
695 return -ERANGE;
696
697 zio_timer = (uint16_t)(val / 100);
698 ha->zio_timer = zio_timer;
699
700 return strlen(buf);
701}
702
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800703static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100704qla2x00_beacon_show(struct device *dev, struct device_attribute *attr,
705 char *buf)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800706{
Tony Jonesee959b02008-02-22 00:13:36 +0100707 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800708 int len = 0;
709
710 if (ha->beacon_blink_led)
711 len += snprintf(buf + len, PAGE_SIZE-len, "Enabled\n");
712 else
713 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
714 return len;
715}
716
717static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100718qla2x00_beacon_store(struct device *dev, struct device_attribute *attr,
719 const char *buf, size_t count)
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800720{
Tony Jonesee959b02008-02-22 00:13:36 +0100721 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800722 int val = 0;
723 int rval;
724
725 if (IS_QLA2100(ha) || IS_QLA2200(ha))
726 return -EPERM;
727
728 if (test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) {
729 qla_printk(KERN_WARNING, ha,
730 "Abort ISP active -- ignoring beacon request.\n");
731 return -EBUSY;
732 }
733
734 if (sscanf(buf, "%d", &val) != 1)
735 return -EINVAL;
736
737 if (val)
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700738 rval = ha->isp_ops->beacon_on(ha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800739 else
Andrew Vasquezfd34f552007-07-19 15:06:00 -0700740 rval = ha->isp_ops->beacon_off(ha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -0800741
742 if (rval != QLA_SUCCESS)
743 count = 0;
744
745 return count;
746}
747
Andrew Vasquez30c47662007-01-29 10:22:21 -0800748static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100749qla2x00_optrom_bios_version_show(struct device *dev,
750 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -0800751{
Tony Jonesee959b02008-02-22 00:13:36 +0100752 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquez30c47662007-01-29 10:22:21 -0800753
754 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->bios_revision[1],
755 ha->bios_revision[0]);
756}
757
758static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100759qla2x00_optrom_efi_version_show(struct device *dev,
760 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -0800761{
Tony Jonesee959b02008-02-22 00:13:36 +0100762 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquez30c47662007-01-29 10:22:21 -0800763
764 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->efi_revision[1],
765 ha->efi_revision[0]);
766}
767
768static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100769qla2x00_optrom_fcode_version_show(struct device *dev,
770 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -0800771{
Tony Jonesee959b02008-02-22 00:13:36 +0100772 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquez30c47662007-01-29 10:22:21 -0800773
774 return snprintf(buf, PAGE_SIZE, "%d.%02d\n", ha->fcode_revision[1],
775 ha->fcode_revision[0]);
776}
777
778static ssize_t
Tony Jonesee959b02008-02-22 00:13:36 +0100779qla2x00_optrom_fw_version_show(struct device *dev,
780 struct device_attribute *attr, char *buf)
Andrew Vasquez30c47662007-01-29 10:22:21 -0800781{
Tony Jonesee959b02008-02-22 00:13:36 +0100782 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
Andrew Vasquez30c47662007-01-29 10:22:21 -0800783
784 return snprintf(buf, PAGE_SIZE, "%d.%02d.%02d %d\n",
785 ha->fw_revision[0], ha->fw_revision[1], ha->fw_revision[2],
786 ha->fw_revision[3]);
787}
788
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -0700789static ssize_t
790qla2x00_total_isp_aborts_show(struct device *dev,
791 struct device_attribute *attr, char *buf)
792{
793 scsi_qla_host_t *ha = shost_priv(class_to_shost(dev));
794
795 return snprintf(buf, PAGE_SIZE, "%d\n",
796 ha->qla_stats.total_isp_aborts);
797}
798
Tony Jonesee959b02008-02-22 00:13:36 +0100799static DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show, NULL);
800static DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL);
801static DEVICE_ATTR(serial_num, S_IRUGO, qla2x00_serial_num_show, NULL);
802static DEVICE_ATTR(isp_name, S_IRUGO, qla2x00_isp_name_show, NULL);
803static DEVICE_ATTR(isp_id, S_IRUGO, qla2x00_isp_id_show, NULL);
804static DEVICE_ATTR(model_name, S_IRUGO, qla2x00_model_name_show, NULL);
805static DEVICE_ATTR(model_desc, S_IRUGO, qla2x00_model_desc_show, NULL);
806static DEVICE_ATTR(pci_info, S_IRUGO, qla2x00_pci_info_show, NULL);
Hannes Reineckebbd1ae42008-03-18 14:32:28 +0100807static DEVICE_ATTR(link_state, S_IRUGO, qla2x00_link_state_show, NULL);
Tony Jonesee959b02008-02-22 00:13:36 +0100808static DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show, qla2x00_zio_store);
809static DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show,
810 qla2x00_zio_timer_store);
811static DEVICE_ATTR(beacon, S_IRUGO | S_IWUSR, qla2x00_beacon_show,
812 qla2x00_beacon_store);
813static DEVICE_ATTR(optrom_bios_version, S_IRUGO,
814 qla2x00_optrom_bios_version_show, NULL);
815static DEVICE_ATTR(optrom_efi_version, S_IRUGO,
816 qla2x00_optrom_efi_version_show, NULL);
817static DEVICE_ATTR(optrom_fcode_version, S_IRUGO,
818 qla2x00_optrom_fcode_version_show, NULL);
819static DEVICE_ATTR(optrom_fw_version, S_IRUGO, qla2x00_optrom_fw_version_show,
820 NULL);
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -0700821static DEVICE_ATTR(total_isp_aborts, S_IRUGO, qla2x00_total_isp_aborts_show,
822 NULL);
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700823
Tony Jonesee959b02008-02-22 00:13:36 +0100824struct device_attribute *qla2x00_host_attrs[] = {
825 &dev_attr_driver_version,
826 &dev_attr_fw_version,
827 &dev_attr_serial_num,
828 &dev_attr_isp_name,
829 &dev_attr_isp_id,
830 &dev_attr_model_name,
831 &dev_attr_model_desc,
832 &dev_attr_pci_info,
Hannes Reineckebbd1ae42008-03-18 14:32:28 +0100833 &dev_attr_link_state,
Tony Jonesee959b02008-02-22 00:13:36 +0100834 &dev_attr_zio,
835 &dev_attr_zio_timer,
836 &dev_attr_beacon,
837 &dev_attr_optrom_bios_version,
838 &dev_attr_optrom_efi_version,
839 &dev_attr_optrom_fcode_version,
840 &dev_attr_optrom_fw_version,
Harish Zunjarraoe5f5f6f2008-07-10 16:55:49 -0700841 &dev_attr_total_isp_aborts,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700842 NULL,
843};
844
8482e1182005-04-17 15:04:54 -0500845/* Host attributes. */
846
847static void
848qla2x00_get_host_port_id(struct Scsi_Host *shost)
849{
Andrew Vasquezf363b942007-09-20 14:07:45 -0700850 scsi_qla_host_t *ha = shost_priv(shost);
8482e1182005-04-17 15:04:54 -0500851
852 fc_host_port_id(shost) = ha->d_id.b.domain << 16 |
853 ha->d_id.b.area << 8 | ha->d_id.b.al_pa;
854}
855
856static void
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -0800857qla2x00_get_host_speed(struct Scsi_Host *shost)
858{
Seokmann Juda4541b2008-01-31 12:33:52 -0800859 scsi_qla_host_t *ha = to_qla_parent(shost_priv(shost));
Andrew Vasquez2ae2b372008-04-03 13:13:14 -0700860 u32 speed = FC_PORTSPEED_UNKNOWN;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -0800861
862 switch (ha->link_data_rate) {
Andrew Vasquezd8b45212006-10-02 12:00:43 -0700863 case PORT_SPEED_1GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -0700864 speed = FC_PORTSPEED_1GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -0800865 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -0700866 case PORT_SPEED_2GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -0700867 speed = FC_PORTSPEED_2GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -0800868 break;
Andrew Vasquezd8b45212006-10-02 12:00:43 -0700869 case PORT_SPEED_4GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -0700870 speed = FC_PORTSPEED_4GBIT;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -0800871 break;
Seokmann Juda4541b2008-01-31 12:33:52 -0800872 case PORT_SPEED_8GB:
Andrew Vasquez2ae2b372008-04-03 13:13:14 -0700873 speed = FC_PORTSPEED_8GBIT;
Seokmann Juda4541b2008-01-31 12:33:52 -0800874 break;
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -0800875 }
876 fc_host_speed(shost) = speed;
877}
878
879static void
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -0800880qla2x00_get_host_port_type(struct Scsi_Host *shost)
881{
Shyam Sundar2f2fa132008-05-12 22:21:07 -0700882 scsi_qla_host_t *ha = shost_priv(shost);
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -0800883 uint32_t port_type = FC_PORTTYPE_UNKNOWN;
884
Shyam Sundar2f2fa132008-05-12 22:21:07 -0700885 if (ha->parent) {
886 fc_host_port_type(shost) = FC_PORTTYPE_NPIV;
887 return;
888 }
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -0800889 switch (ha->current_topology) {
890 case ISP_CFG_NL:
891 port_type = FC_PORTTYPE_LPORT;
892 break;
893 case ISP_CFG_FL:
894 port_type = FC_PORTTYPE_NLPORT;
895 break;
896 case ISP_CFG_N:
897 port_type = FC_PORTTYPE_PTP;
898 break;
899 case ISP_CFG_F:
900 port_type = FC_PORTTYPE_NPORT;
901 break;
902 }
903 fc_host_port_type(shost) = port_type;
904}
905
906static void
8482e1182005-04-17 15:04:54 -0500907qla2x00_get_starget_node_name(struct scsi_target *starget)
908{
909 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Andrew Vasquezf363b942007-09-20 14:07:45 -0700910 scsi_qla_host_t *ha = shost_priv(host);
bdf79622005-04-17 15:06:53 -0500911 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -0700912 u64 node_name = 0;
8482e1182005-04-17 15:04:54 -0500913
bdf79622005-04-17 15:06:53 -0500914 list_for_each_entry(fcport, &ha->fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -0700915 if (fcport->rport &&
916 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -0700917 node_name = wwn_to_u64(fcport->node_name);
bdf79622005-04-17 15:06:53 -0500918 break;
919 }
920 }
921
Andrew Vasquezf8b02a82005-08-31 15:21:20 -0700922 fc_starget_node_name(starget) = node_name;
8482e1182005-04-17 15:04:54 -0500923}
924
925static void
926qla2x00_get_starget_port_name(struct scsi_target *starget)
927{
928 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Andrew Vasquezf363b942007-09-20 14:07:45 -0700929 scsi_qla_host_t *ha = shost_priv(host);
bdf79622005-04-17 15:06:53 -0500930 fc_port_t *fcport;
Andrew Vasquezf8b02a82005-08-31 15:21:20 -0700931 u64 port_name = 0;
8482e1182005-04-17 15:04:54 -0500932
bdf79622005-04-17 15:06:53 -0500933 list_for_each_entry(fcport, &ha->fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -0700934 if (fcport->rport &&
935 starget->id == fcport->rport->scsi_target_id) {
Andrew Vasquezf8b02a82005-08-31 15:21:20 -0700936 port_name = wwn_to_u64(fcport->port_name);
bdf79622005-04-17 15:06:53 -0500937 break;
938 }
939 }
940
Andrew Vasquezf8b02a82005-08-31 15:21:20 -0700941 fc_starget_port_name(starget) = port_name;
8482e1182005-04-17 15:04:54 -0500942}
943
944static void
945qla2x00_get_starget_port_id(struct scsi_target *starget)
946{
947 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
Andrew Vasquezf363b942007-09-20 14:07:45 -0700948 scsi_qla_host_t *ha = shost_priv(host);
bdf79622005-04-17 15:06:53 -0500949 fc_port_t *fcport;
950 uint32_t port_id = ~0U;
8482e1182005-04-17 15:04:54 -0500951
bdf79622005-04-17 15:06:53 -0500952 list_for_each_entry(fcport, &ha->fcports, list) {
Andrew Vasquez5ab5a4d2008-04-03 13:13:16 -0700953 if (fcport->rport &&
954 starget->id == fcport->rport->scsi_target_id) {
bdf79622005-04-17 15:06:53 -0500955 port_id = fcport->d_id.b.domain << 16 |
956 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
957 break;
958 }
959 }
960
8482e1182005-04-17 15:04:54 -0500961 fc_starget_port_id(starget) = port_id;
962}
963
964static void
8482e1182005-04-17 15:04:54 -0500965qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
966{
8482e1182005-04-17 15:04:54 -0500967 if (timeout)
Andrew Vasquez85821c92008-07-10 16:55:48 -0700968 rport->dev_loss_tmo = timeout;
8482e1182005-04-17 15:04:54 -0500969 else
Andrew Vasquez85821c92008-07-10 16:55:48 -0700970 rport->dev_loss_tmo = 1;
8482e1182005-04-17 15:04:54 -0500971}
972
Seokmann Ju5f3a9a22008-07-10 16:55:47 -0700973static void
974qla2x00_dev_loss_tmo_callbk(struct fc_rport *rport)
975{
976 struct Scsi_Host *host = rport_to_shost(rport);
977 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
978
979 qla2x00_abort_fcport_cmds(fcport);
980
981 /*
982 * Transport has effectively 'deleted' the rport, clear
983 * all local references.
984 */
985 spin_lock_irq(host->host_lock);
986 fcport->rport = NULL;
987 *((fc_port_t **)rport->dd_data) = NULL;
988 spin_unlock_irq(host->host_lock);
989}
990
991static void
992qla2x00_terminate_rport_io(struct fc_rport *rport)
993{
994 fc_port_t *fcport = *(fc_port_t **)rport->dd_data;
995
996 qla2x00_abort_fcport_cmds(fcport);
997 scsi_target_unblock(&rport->dev);
998}
999
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001000static int
1001qla2x00_issue_lip(struct Scsi_Host *shost)
1002{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001003 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001004
Andrew Vasqueza4722cf2008-01-17 09:02:12 -08001005 qla2x00_loop_reset(ha);
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001006 return 0;
1007}
1008
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001009static struct fc_host_statistics *
1010qla2x00_get_fc_host_stats(struct Scsi_Host *shost)
1011{
Seokmann Juda4541b2008-01-31 12:33:52 -08001012 scsi_qla_host_t *ha = to_qla_parent(shost_priv(shost));
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001013 int rval;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001014 struct link_statistics *stats;
1015 dma_addr_t stats_dma;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001016 struct fc_host_statistics *pfc_host_stat;
1017
1018 pfc_host_stat = &ha->fc_host_stat;
1019 memset(pfc_host_stat, -1, sizeof(struct fc_host_statistics));
1020
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001021 stats = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL, &stats_dma);
1022 if (stats == NULL) {
1023 DEBUG2_3_11(printk("%s(%ld): Failed to allocate memory.\n",
1024 __func__, ha->host_no));
1025 goto done;
1026 }
1027 memset(stats, 0, DMA_POOL_SIZE);
1028
1029 rval = QLA_FUNCTION_FAILED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001030 if (IS_FWI2_CAPABLE(ha)) {
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001031 rval = qla24xx_get_isp_stats(ha, stats, stats_dma);
Andrew Vasquez178779a2007-01-29 10:22:25 -08001032 } else if (atomic_read(&ha->loop_state) == LOOP_READY &&
1033 !test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags) &&
1034 !test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) &&
1035 !ha->dpc_active) {
1036 /* Must be in a 'READY' state for statistics retrieval. */
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001037 rval = qla2x00_get_link_status(ha, ha->loop_id, stats,
1038 stats_dma);
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001039 }
Andrew Vasquez178779a2007-01-29 10:22:25 -08001040
1041 if (rval != QLA_SUCCESS)
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001042 goto done_free;
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001043
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001044 pfc_host_stat->link_failure_count = stats->link_fail_cnt;
1045 pfc_host_stat->loss_of_sync_count = stats->loss_sync_cnt;
1046 pfc_host_stat->loss_of_signal_count = stats->loss_sig_cnt;
1047 pfc_host_stat->prim_seq_protocol_err_count = stats->prim_seq_err_cnt;
1048 pfc_host_stat->invalid_tx_word_count = stats->inval_xmit_word_cnt;
1049 pfc_host_stat->invalid_crc_count = stats->inval_crc_cnt;
1050 if (IS_FWI2_CAPABLE(ha)) {
Harish Zunjarrao032d8dd2008-07-10 16:55:50 -07001051 pfc_host_stat->lip_count = stats->lip_cnt;
Andrew Vasquez43ef0582008-01-17 09:02:08 -08001052 pfc_host_stat->tx_frames = stats->tx_frames;
1053 pfc_host_stat->rx_frames = stats->rx_frames;
1054 pfc_host_stat->dumped_frames = stats->dumped_frames;
1055 pfc_host_stat->nos_count = stats->nos_rcvd;
1056 }
1057
1058done_free:
1059 dma_pool_free(ha->s_dma_pool, stats, stats_dma);
Andrew Vasquez178779a2007-01-29 10:22:25 -08001060done:
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001061 return pfc_host_stat;
1062}
1063
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001064static void
1065qla2x00_get_host_symbolic_name(struct Scsi_Host *shost)
1066{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001067 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001068
1069 qla2x00_get_sym_node_name(ha, fc_host_symbolic_name(shost));
1070}
1071
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001072static void
1073qla2x00_set_host_system_hostname(struct Scsi_Host *shost)
1074{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001075 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001076
1077 set_bit(REGISTER_FDMI_NEEDED, &ha->dpc_flags);
1078}
1079
Andrew Vasquez90991c82006-10-02 12:00:46 -07001080static void
1081qla2x00_get_host_fabric_name(struct Scsi_Host *shost)
1082{
Andrew Vasquezf363b942007-09-20 14:07:45 -07001083 scsi_qla_host_t *ha = shost_priv(shost);
Andrew Vasquez90991c82006-10-02 12:00:46 -07001084 u64 node_name;
1085
1086 if (ha->device_flags & SWITCH_FOUND)
1087 node_name = wwn_to_u64(ha->fabric_node_name);
1088 else
1089 node_name = wwn_to_u64(ha->node_name);
1090
1091 fc_host_fabric_name(shost) = node_name;
1092}
1093
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001094static void
1095qla2x00_get_host_port_state(struct Scsi_Host *shost)
1096{
Seokmann Juda4541b2008-01-31 12:33:52 -08001097 scsi_qla_host_t *ha = to_qla_parent(shost_priv(shost));
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001098
1099 if (!ha->flags.online)
1100 fc_host_port_state(shost) = FC_PORTSTATE_OFFLINE;
1101 else if (atomic_read(&ha->loop_state) == LOOP_TIMEOUT)
1102 fc_host_port_state(shost) = FC_PORTSTATE_UNKNOWN;
1103 else
1104 fc_host_port_state(shost) = FC_PORTSTATE_ONLINE;
1105}
1106
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001107static int
1108qla24xx_vport_create(struct fc_vport *fc_vport, bool disable)
1109{
1110 int ret = 0;
Andrew Vasquezf363b942007-09-20 14:07:45 -07001111 scsi_qla_host_t *ha = shost_priv(fc_vport->shost);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001112 scsi_qla_host_t *vha;
1113
1114 ret = qla24xx_vport_create_req_sanity_check(fc_vport);
1115 if (ret) {
1116 DEBUG15(printk("qla24xx_vport_create_req_sanity_check failed, "
1117 "status %x\n", ret));
1118 return (ret);
1119 }
1120
1121 vha = qla24xx_create_vhost(fc_vport);
1122 if (vha == NULL) {
1123 DEBUG15(printk ("qla24xx_create_vhost failed, vha = %p\n",
1124 vha));
1125 return FC_VPORT_FAILED;
1126 }
1127 if (disable) {
1128 atomic_set(&vha->vp_state, VP_OFFLINE);
1129 fc_vport_set_state(fc_vport, FC_VPORT_DISABLED);
1130 } else
1131 atomic_set(&vha->vp_state, VP_FAILED);
1132
1133 /* ready to create vport */
1134 qla_printk(KERN_INFO, vha, "VP entry id %d assigned.\n", vha->vp_idx);
1135
1136 /* initialized vport states */
1137 atomic_set(&vha->loop_state, LOOP_DOWN);
1138 vha->vp_err_state= VP_ERR_PORTDWN;
1139 vha->vp_prev_err_state= VP_ERR_UNKWN;
1140 /* Check if physical ha port is Up */
1141 if (atomic_read(&ha->loop_state) == LOOP_DOWN ||
1142 atomic_read(&ha->loop_state) == LOOP_DEAD) {
1143 /* Don't retry or attempt login of this virtual port */
1144 DEBUG15(printk ("scsi(%ld): pport loop_state is not UP.\n",
1145 vha->host_no));
1146 atomic_set(&vha->loop_state, LOOP_DEAD);
1147 if (!disable)
1148 fc_vport_set_state(fc_vport, FC_VPORT_LINKDOWN);
1149 }
1150
1151 if (scsi_add_host(vha->host, &fc_vport->dev)) {
1152 DEBUG15(printk("scsi(%ld): scsi_add_host failure for VP[%d].\n",
1153 vha->host_no, vha->vp_idx));
1154 goto vport_create_failed_2;
1155 }
1156
1157 /* initialize attributes */
1158 fc_host_node_name(vha->host) = wwn_to_u64(vha->node_name);
1159 fc_host_port_name(vha->host) = wwn_to_u64(vha->port_name);
1160 fc_host_supported_classes(vha->host) =
1161 fc_host_supported_classes(ha->host);
1162 fc_host_supported_speeds(vha->host) =
1163 fc_host_supported_speeds(ha->host);
1164
1165 qla24xx_vport_disable(fc_vport, disable);
1166
1167 return 0;
1168vport_create_failed_2:
1169 qla24xx_disable_vp(vha);
1170 qla24xx_deallocate_vp_id(vha);
1171 kfree(vha->port_name);
1172 kfree(vha->node_name);
1173 scsi_host_put(vha->host);
1174 return FC_VPORT_FAILED;
1175}
1176
Adrian Bunka824ebb2008-01-17 09:02:15 -08001177static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001178qla24xx_vport_delete(struct fc_vport *fc_vport)
1179{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001180 scsi_qla_host_t *vha = fc_vport->dd_data;
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07001181 scsi_qla_host_t *pha = to_qla_parent(vha);
1182
1183 while (test_bit(LOOP_RESYNC_ACTIVE, &vha->dpc_flags) ||
1184 test_bit(FCPORT_UPDATE_NEEDED, &pha->dpc_flags))
1185 msleep(1000);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001186
1187 qla24xx_disable_vp(vha);
1188 qla24xx_deallocate_vp_id(vha);
1189
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001190 kfree(vha->node_name);
1191 kfree(vha->port_name);
1192
1193 if (vha->timer_active) {
1194 qla2x00_vp_stop_timer(vha);
1195 DEBUG15(printk ("scsi(%ld): timer for the vport[%d] = %p "
1196 "has stopped\n",
1197 vha->host_no, vha->vp_idx, vha));
1198 }
1199
1200 fc_remove_host(vha->host);
1201
1202 scsi_remove_host(vha->host);
1203
1204 scsi_host_put(vha->host);
1205
1206 return 0;
1207}
1208
Adrian Bunka824ebb2008-01-17 09:02:15 -08001209static int
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001210qla24xx_vport_disable(struct fc_vport *fc_vport, bool disable)
1211{
1212 scsi_qla_host_t *vha = fc_vport->dd_data;
1213
1214 if (disable)
1215 qla24xx_disable_vp(vha);
1216 else
1217 qla24xx_enable_vp(vha);
1218
1219 return 0;
1220}
1221
Andrew Vasquez1c97a122005-04-21 16:13:36 -04001222struct fc_function_template qla2xxx_transport_functions = {
8482e1182005-04-17 15:04:54 -05001223
1224 .show_host_node_name = 1,
1225 .show_host_port_name = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001226 .show_host_supported_classes = 1,
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001227 .show_host_supported_speeds = 1,
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001228
8482e1182005-04-17 15:04:54 -05001229 .get_host_port_id = qla2x00_get_host_port_id,
1230 .show_host_port_id = 1,
andrew.vasquez@qlogic.com04414012006-01-31 16:04:51 -08001231 .get_host_speed = qla2x00_get_host_speed,
1232 .show_host_speed = 1,
andrew.vasquez@qlogic.com8d067622006-01-31 16:04:56 -08001233 .get_host_port_type = qla2x00_get_host_port_type,
1234 .show_host_port_type = 1,
Andrew Vasquez1620f7c2006-10-02 12:00:44 -07001235 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
1236 .show_host_symbolic_name = 1,
Andrew Vasqueza740a3f2006-10-02 12:00:45 -07001237 .set_host_system_hostname = qla2x00_set_host_system_hostname,
1238 .show_host_system_hostname = 1,
Andrew Vasquez90991c82006-10-02 12:00:46 -07001239 .get_host_fabric_name = qla2x00_get_host_fabric_name,
1240 .show_host_fabric_name = 1,
Andrew Vasquez7047fcd2006-10-02 12:00:47 -07001241 .get_host_port_state = qla2x00_get_host_port_state,
1242 .show_host_port_state = 1,
8482e1182005-04-17 15:04:54 -05001243
bdf79622005-04-17 15:06:53 -05001244 .dd_fcrport_size = sizeof(struct fc_port *),
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001245 .show_rport_supported_classes = 1,
8482e1182005-04-17 15:04:54 -05001246
1247 .get_starget_node_name = qla2x00_get_starget_node_name,
1248 .show_starget_node_name = 1,
1249 .get_starget_port_name = qla2x00_get_starget_port_name,
1250 .show_starget_port_name = 1,
1251 .get_starget_port_id = qla2x00_get_starget_port_id,
1252 .show_starget_port_id = 1,
1253
8482e1182005-04-17 15:04:54 -05001254 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
1255 .show_rport_dev_loss_tmo = 1,
1256
Andrew Vasquez91ca7b02005-10-27 16:03:37 -07001257 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001258 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
1259 .terminate_rport_io = qla2x00_terminate_rport_io,
andrew.vasquez@qlogic.com392e2f62006-01-31 16:05:02 -08001260 .get_fc_host_stats = qla2x00_get_fc_host_stats,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001261
1262 .vport_create = qla24xx_vport_create,
1263 .vport_disable = qla24xx_vport_disable,
1264 .vport_delete = qla24xx_vport_delete,
1265};
1266
1267struct fc_function_template qla2xxx_transport_vport_functions = {
1268
1269 .show_host_node_name = 1,
1270 .show_host_port_name = 1,
1271 .show_host_supported_classes = 1,
1272
1273 .get_host_port_id = qla2x00_get_host_port_id,
1274 .show_host_port_id = 1,
1275 .get_host_speed = qla2x00_get_host_speed,
1276 .show_host_speed = 1,
1277 .get_host_port_type = qla2x00_get_host_port_type,
1278 .show_host_port_type = 1,
1279 .get_host_symbolic_name = qla2x00_get_host_symbolic_name,
1280 .show_host_symbolic_name = 1,
1281 .set_host_system_hostname = qla2x00_set_host_system_hostname,
1282 .show_host_system_hostname = 1,
1283 .get_host_fabric_name = qla2x00_get_host_fabric_name,
1284 .show_host_fabric_name = 1,
1285 .get_host_port_state = qla2x00_get_host_port_state,
1286 .show_host_port_state = 1,
1287
1288 .dd_fcrport_size = sizeof(struct fc_port *),
1289 .show_rport_supported_classes = 1,
1290
1291 .get_starget_node_name = qla2x00_get_starget_node_name,
1292 .show_starget_node_name = 1,
1293 .get_starget_port_name = qla2x00_get_starget_port_name,
1294 .show_starget_port_name = 1,
1295 .get_starget_port_id = qla2x00_get_starget_port_id,
1296 .show_starget_port_id = 1,
1297
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001298 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
1299 .show_rport_dev_loss_tmo = 1,
1300
1301 .issue_fc_host_lip = qla2x00_issue_lip,
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001302 .dev_loss_tmo_callbk = qla2x00_dev_loss_tmo_callbk,
1303 .terminate_rport_io = qla2x00_terminate_rport_io,
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001304 .get_fc_host_stats = qla2x00_get_fc_host_stats,
8482e1182005-04-17 15:04:54 -05001305};
1306
8482e1182005-04-17 15:04:54 -05001307void
1308qla2x00_init_host_attr(scsi_qla_host_t *ha)
1309{
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001310 u32 speed = FC_PORTSPEED_UNKNOWN;
1311
andrew.vasquez@qlogic.comdad9c8c2006-01-13 17:04:49 -08001312 fc_host_node_name(ha->host) = wwn_to_u64(ha->node_name);
1313 fc_host_port_name(ha->host) = wwn_to_u64(ha->port_name);
Andrew Vasquezad3e0ed2005-08-26 19:08:10 -07001314 fc_host_supported_classes(ha->host) = FC_COS_CLASS3;
Seokmann Ju4d0ea242007-09-20 14:07:43 -07001315 fc_host_max_npiv_vports(ha->host) = ha->max_npiv_vports;;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001316 fc_host_npiv_vports_inuse(ha->host) = ha->cur_vport_count;
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001317
1318 if (IS_QLA25XX(ha))
1319 speed = FC_PORTSPEED_8GBIT | FC_PORTSPEED_4GBIT |
1320 FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001321 else if (IS_QLA24XX_TYPE(ha))
Andrew Vasquez2ae2b372008-04-03 13:13:14 -07001322 speed = FC_PORTSPEED_4GBIT | FC_PORTSPEED_2GBIT |
1323 FC_PORTSPEED_1GBIT;
1324 else if (IS_QLA23XX(ha))
1325 speed = FC_PORTSPEED_2GBIT | FC_PORTSPEED_1GBIT;
1326 else
1327 speed = FC_PORTSPEED_1GBIT;
1328 fc_host_supported_speeds(ha->host) = speed;
8482e1182005-04-17 15:04:54 -05001329}