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