[SCSI] Add an 'Issue LIP' device attribute in fc_transport class
[usb.git] / drivers / scsi / qla2xxx / qla_attr.c
blob48e460eef05a8818bd5003323b9d242cde141a6e
1 /*
2 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2005 QLogic Corporation
5 * See LICENSE.qla2xxx for copyright and licensing details.
6 */
7 #include "qla_def.h"
9 #include <linux/vmalloc.h>
10 #include <scsi/scsi_transport_fc.h>
12 /* SYSFS attributes --------------------------------------------------------- */
14 static ssize_t
15 qla2x00_sysfs_read_fw_dump(struct kobject *kobj, char *buf, loff_t off,
16 size_t count)
18 struct scsi_qla_host *ha = to_qla_host(dev_to_shost(container_of(kobj,
19 struct device, kobj)));
21 if (ha->fw_dump_reading == 0)
22 return 0;
23 if (off > ha->fw_dump_buffer_len)
24 return 0;
25 if (off + count > ha->fw_dump_buffer_len)
26 count = ha->fw_dump_buffer_len - off;
28 memcpy(buf, &ha->fw_dump_buffer[off], count);
30 return (count);
33 static ssize_t
34 qla2x00_sysfs_write_fw_dump(struct kobject *kobj, char *buf, loff_t off,
35 size_t count)
37 struct scsi_qla_host *ha = to_qla_host(dev_to_shost(container_of(kobj,
38 struct device, kobj)));
39 int reading;
40 uint32_t dump_size;
42 if (off != 0)
43 return (0);
45 reading = simple_strtol(buf, NULL, 10);
46 switch (reading) {
47 case 0:
48 if (ha->fw_dump_reading == 1) {
49 qla_printk(KERN_INFO, ha,
50 "Firmware dump cleared on (%ld).\n",
51 ha->host_no);
53 vfree(ha->fw_dump_buffer);
54 if (!IS_QLA24XX(ha) && !IS_QLA25XX(ha))
55 free_pages((unsigned long)ha->fw_dump,
56 ha->fw_dump_order);
58 ha->fw_dump_reading = 0;
59 ha->fw_dump_buffer = NULL;
60 ha->fw_dump = NULL;
61 ha->fw_dumped = 0;
63 break;
64 case 1:
65 if ((ha->fw_dump || ha->fw_dumped) && !ha->fw_dump_reading) {
66 ha->fw_dump_reading = 1;
68 if (IS_QLA24XX(ha) || IS_QLA25XX(ha))
69 dump_size = FW_DUMP_SIZE_24XX;
70 else {
71 dump_size = FW_DUMP_SIZE_1M;
72 if (ha->fw_memory_size < 0x20000)
73 dump_size = FW_DUMP_SIZE_128K;
74 else if (ha->fw_memory_size < 0x80000)
75 dump_size = FW_DUMP_SIZE_512K;
77 ha->fw_dump_buffer = (char *)vmalloc(dump_size);
78 if (ha->fw_dump_buffer == NULL) {
79 qla_printk(KERN_WARNING, ha,
80 "Unable to allocate memory for firmware "
81 "dump buffer (%d).\n", dump_size);
83 ha->fw_dump_reading = 0;
84 return (count);
86 qla_printk(KERN_INFO, ha,
87 "Firmware dump ready for read on (%ld).\n",
88 ha->host_no);
89 memset(ha->fw_dump_buffer, 0, dump_size);
90 ha->isp_ops.ascii_fw_dump(ha);
91 ha->fw_dump_buffer_len = strlen(ha->fw_dump_buffer);
93 break;
95 return (count);
98 static struct bin_attribute sysfs_fw_dump_attr = {
99 .attr = {
100 .name = "fw_dump",
101 .mode = S_IRUSR | S_IWUSR,
102 .owner = THIS_MODULE,
104 .size = 0,
105 .read = qla2x00_sysfs_read_fw_dump,
106 .write = qla2x00_sysfs_write_fw_dump,
109 static ssize_t
110 qla2x00_sysfs_read_nvram(struct kobject *kobj, char *buf, loff_t off,
111 size_t count)
113 struct scsi_qla_host *ha = to_qla_host(dev_to_shost(container_of(kobj,
114 struct device, kobj)));
115 unsigned long flags;
117 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size)
118 return 0;
120 /* Read NVRAM. */
121 spin_lock_irqsave(&ha->hardware_lock, flags);
122 ha->isp_ops.read_nvram(ha, (uint8_t *)buf, ha->nvram_base,
123 ha->nvram_size);
124 spin_unlock_irqrestore(&ha->hardware_lock, flags);
126 return (count);
129 static ssize_t
130 qla2x00_sysfs_write_nvram(struct kobject *kobj, char *buf, loff_t off,
131 size_t count)
133 struct scsi_qla_host *ha = to_qla_host(dev_to_shost(container_of(kobj,
134 struct device, kobj)));
135 unsigned long flags;
136 uint16_t cnt;
138 if (!capable(CAP_SYS_ADMIN) || off != 0 || count != ha->nvram_size)
139 return 0;
141 /* Checksum NVRAM. */
142 if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) {
143 uint32_t *iter;
144 uint32_t chksum;
146 iter = (uint32_t *)buf;
147 chksum = 0;
148 for (cnt = 0; cnt < ((count >> 2) - 1); cnt++)
149 chksum += le32_to_cpu(*iter++);
150 chksum = ~chksum + 1;
151 *iter = cpu_to_le32(chksum);
152 } else {
153 uint8_t *iter;
154 uint8_t chksum;
156 iter = (uint8_t *)buf;
157 chksum = 0;
158 for (cnt = 0; cnt < count - 1; cnt++)
159 chksum += *iter++;
160 chksum = ~chksum + 1;
161 *iter = chksum;
164 /* Write NVRAM. */
165 spin_lock_irqsave(&ha->hardware_lock, flags);
166 ha->isp_ops.write_nvram(ha, (uint8_t *)buf, ha->nvram_base, count);
167 spin_unlock_irqrestore(&ha->hardware_lock, flags);
169 return (count);
172 static struct bin_attribute sysfs_nvram_attr = {
173 .attr = {
174 .name = "nvram",
175 .mode = S_IRUSR | S_IWUSR,
176 .owner = THIS_MODULE,
178 .size = 0,
179 .read = qla2x00_sysfs_read_nvram,
180 .write = qla2x00_sysfs_write_nvram,
183 void
184 qla2x00_alloc_sysfs_attr(scsi_qla_host_t *ha)
186 struct Scsi_Host *host = ha->host;
188 sysfs_create_bin_file(&host->shost_gendev.kobj, &sysfs_fw_dump_attr);
189 sysfs_nvram_attr.size = ha->nvram_size;
190 sysfs_create_bin_file(&host->shost_gendev.kobj, &sysfs_nvram_attr);
193 void
194 qla2x00_free_sysfs_attr(scsi_qla_host_t *ha)
196 struct Scsi_Host *host = ha->host;
198 sysfs_remove_bin_file(&host->shost_gendev.kobj, &sysfs_fw_dump_attr);
199 sysfs_remove_bin_file(&host->shost_gendev.kobj, &sysfs_nvram_attr);
202 /* Scsi_Host attributes. */
204 static ssize_t
205 qla2x00_drvr_version_show(struct class_device *cdev, char *buf)
207 return snprintf(buf, PAGE_SIZE, "%s\n", qla2x00_version_str);
210 static ssize_t
211 qla2x00_fw_version_show(struct class_device *cdev, char *buf)
213 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
214 char fw_str[30];
216 return snprintf(buf, PAGE_SIZE, "%s\n",
217 ha->isp_ops.fw_version_str(ha, fw_str));
220 static ssize_t
221 qla2x00_serial_num_show(struct class_device *cdev, char *buf)
223 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
224 uint32_t sn;
226 sn = ((ha->serial0 & 0x1f) << 16) | (ha->serial2 << 8) | ha->serial1;
227 return snprintf(buf, PAGE_SIZE, "%c%05d\n", 'A' + sn / 100000,
228 sn % 100000);
231 static ssize_t
232 qla2x00_isp_name_show(struct class_device *cdev, char *buf)
234 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
235 return snprintf(buf, PAGE_SIZE, "%s\n", ha->brd_info->isp_name);
238 static ssize_t
239 qla2x00_isp_id_show(struct class_device *cdev, char *buf)
241 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
242 return snprintf(buf, PAGE_SIZE, "%04x %04x %04x %04x\n",
243 ha->product_id[0], ha->product_id[1], ha->product_id[2],
244 ha->product_id[3]);
247 static ssize_t
248 qla2x00_model_name_show(struct class_device *cdev, char *buf)
250 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
251 return snprintf(buf, PAGE_SIZE, "%s\n", ha->model_number);
254 static ssize_t
255 qla2x00_model_desc_show(struct class_device *cdev, char *buf)
257 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
258 return snprintf(buf, PAGE_SIZE, "%s\n",
259 ha->model_desc ? ha->model_desc: "");
262 static ssize_t
263 qla2x00_pci_info_show(struct class_device *cdev, char *buf)
265 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
266 char pci_info[30];
268 return snprintf(buf, PAGE_SIZE, "%s\n",
269 ha->isp_ops.pci_info_str(ha, pci_info));
272 static ssize_t
273 qla2x00_state_show(struct class_device *cdev, char *buf)
275 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
276 int len = 0;
278 if (atomic_read(&ha->loop_state) == LOOP_DOWN ||
279 atomic_read(&ha->loop_state) == LOOP_DEAD)
280 len = snprintf(buf, PAGE_SIZE, "Link Down\n");
281 else if (atomic_read(&ha->loop_state) != LOOP_READY ||
282 test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags) ||
283 test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags))
284 len = snprintf(buf, PAGE_SIZE, "Unknown Link State\n");
285 else {
286 len = snprintf(buf, PAGE_SIZE, "Link Up - ");
288 switch (ha->current_topology) {
289 case ISP_CFG_NL:
290 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
291 break;
292 case ISP_CFG_FL:
293 len += snprintf(buf + len, PAGE_SIZE-len, "FL_Port\n");
294 break;
295 case ISP_CFG_N:
296 len += snprintf(buf + len, PAGE_SIZE-len,
297 "N_Port to N_Port\n");
298 break;
299 case ISP_CFG_F:
300 len += snprintf(buf + len, PAGE_SIZE-len, "F_Port\n");
301 break;
302 default:
303 len += snprintf(buf + len, PAGE_SIZE-len, "Loop\n");
304 break;
307 return len;
310 static ssize_t
311 qla2x00_zio_show(struct class_device *cdev, char *buf)
313 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
314 int len = 0;
316 switch (ha->zio_mode) {
317 case QLA_ZIO_MODE_5:
318 len += snprintf(buf + len, PAGE_SIZE-len, "Mode 5\n");
319 break;
320 case QLA_ZIO_MODE_6:
321 len += snprintf(buf + len, PAGE_SIZE-len, "Mode 6\n");
322 break;
323 case QLA_ZIO_DISABLED:
324 len += snprintf(buf + len, PAGE_SIZE-len, "Disabled\n");
325 break;
327 return len;
330 static ssize_t
331 qla2x00_zio_store(struct class_device *cdev, const char *buf, size_t count)
333 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
334 int val = 0;
335 uint16_t zio_mode;
337 if (sscanf(buf, "%d", &val) != 1)
338 return -EINVAL;
340 switch (val) {
341 case 1:
342 zio_mode = QLA_ZIO_MODE_5;
343 break;
344 case 2:
345 zio_mode = QLA_ZIO_MODE_6;
346 break;
347 default:
348 zio_mode = QLA_ZIO_DISABLED;
349 break;
352 /* Update per-hba values and queue a reset. */
353 if (zio_mode != QLA_ZIO_DISABLED || ha->zio_mode != QLA_ZIO_DISABLED) {
354 ha->zio_mode = zio_mode;
355 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
357 return strlen(buf);
360 static ssize_t
361 qla2x00_zio_timer_show(struct class_device *cdev, char *buf)
363 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
365 return snprintf(buf, PAGE_SIZE, "%d us\n", ha->zio_timer * 100);
368 static ssize_t
369 qla2x00_zio_timer_store(struct class_device *cdev, const char *buf,
370 size_t count)
372 scsi_qla_host_t *ha = to_qla_host(class_to_shost(cdev));
373 int val = 0;
374 uint16_t zio_timer;
376 if (sscanf(buf, "%d", &val) != 1)
377 return -EINVAL;
378 if (val > 25500 || val < 100)
379 return -ERANGE;
381 zio_timer = (uint16_t)(val / 100);
382 ha->zio_timer = zio_timer;
384 return strlen(buf);
387 static CLASS_DEVICE_ATTR(driver_version, S_IRUGO, qla2x00_drvr_version_show,
388 NULL);
389 static CLASS_DEVICE_ATTR(fw_version, S_IRUGO, qla2x00_fw_version_show, NULL);
390 static CLASS_DEVICE_ATTR(serial_num, S_IRUGO, qla2x00_serial_num_show, NULL);
391 static CLASS_DEVICE_ATTR(isp_name, S_IRUGO, qla2x00_isp_name_show, NULL);
392 static CLASS_DEVICE_ATTR(isp_id, S_IRUGO, qla2x00_isp_id_show, NULL);
393 static CLASS_DEVICE_ATTR(model_name, S_IRUGO, qla2x00_model_name_show, NULL);
394 static CLASS_DEVICE_ATTR(model_desc, S_IRUGO, qla2x00_model_desc_show, NULL);
395 static CLASS_DEVICE_ATTR(pci_info, S_IRUGO, qla2x00_pci_info_show, NULL);
396 static CLASS_DEVICE_ATTR(state, S_IRUGO, qla2x00_state_show, NULL);
397 static CLASS_DEVICE_ATTR(zio, S_IRUGO | S_IWUSR, qla2x00_zio_show,
398 qla2x00_zio_store);
399 static CLASS_DEVICE_ATTR(zio_timer, S_IRUGO | S_IWUSR, qla2x00_zio_timer_show,
400 qla2x00_zio_timer_store);
402 struct class_device_attribute *qla2x00_host_attrs[] = {
403 &class_device_attr_driver_version,
404 &class_device_attr_fw_version,
405 &class_device_attr_serial_num,
406 &class_device_attr_isp_name,
407 &class_device_attr_isp_id,
408 &class_device_attr_model_name,
409 &class_device_attr_model_desc,
410 &class_device_attr_pci_info,
411 &class_device_attr_state,
412 &class_device_attr_zio,
413 &class_device_attr_zio_timer,
414 NULL,
417 /* Host attributes. */
419 static void
420 qla2x00_get_host_port_id(struct Scsi_Host *shost)
422 scsi_qla_host_t *ha = to_qla_host(shost);
424 fc_host_port_id(shost) = ha->d_id.b.domain << 16 |
425 ha->d_id.b.area << 8 | ha->d_id.b.al_pa;
428 static void
429 qla2x00_get_starget_node_name(struct scsi_target *starget)
431 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
432 scsi_qla_host_t *ha = to_qla_host(host);
433 fc_port_t *fcport;
434 u64 node_name = 0;
436 list_for_each_entry(fcport, &ha->fcports, list) {
437 if (starget->id == fcport->os_target_id) {
438 node_name = wwn_to_u64(fcport->node_name);
439 break;
443 fc_starget_node_name(starget) = node_name;
446 static void
447 qla2x00_get_starget_port_name(struct scsi_target *starget)
449 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
450 scsi_qla_host_t *ha = to_qla_host(host);
451 fc_port_t *fcport;
452 u64 port_name = 0;
454 list_for_each_entry(fcport, &ha->fcports, list) {
455 if (starget->id == fcport->os_target_id) {
456 port_name = wwn_to_u64(fcport->port_name);
457 break;
461 fc_starget_port_name(starget) = port_name;
464 static void
465 qla2x00_get_starget_port_id(struct scsi_target *starget)
467 struct Scsi_Host *host = dev_to_shost(starget->dev.parent);
468 scsi_qla_host_t *ha = to_qla_host(host);
469 fc_port_t *fcport;
470 uint32_t port_id = ~0U;
472 list_for_each_entry(fcport, &ha->fcports, list) {
473 if (starget->id == fcport->os_target_id) {
474 port_id = fcport->d_id.b.domain << 16 |
475 fcport->d_id.b.area << 8 | fcport->d_id.b.al_pa;
476 break;
480 fc_starget_port_id(starget) = port_id;
483 static void
484 qla2x00_get_rport_loss_tmo(struct fc_rport *rport)
486 struct Scsi_Host *host = rport_to_shost(rport);
487 scsi_qla_host_t *ha = to_qla_host(host);
489 rport->dev_loss_tmo = ha->port_down_retry_count + 5;
492 static void
493 qla2x00_set_rport_loss_tmo(struct fc_rport *rport, uint32_t timeout)
495 struct Scsi_Host *host = rport_to_shost(rport);
496 scsi_qla_host_t *ha = to_qla_host(host);
498 if (timeout)
499 ha->port_down_retry_count = timeout;
500 else
501 ha->port_down_retry_count = 1;
503 rport->dev_loss_tmo = ha->port_down_retry_count + 5;
506 static int
507 qla2x00_issue_lip(struct Scsi_Host *shost)
509 scsi_qla_host_t *ha = to_qla_host(shost);
511 set_bit(LOOP_RESET_NEEDED, &ha->dpc_flags);
512 return 0;
515 struct fc_function_template qla2xxx_transport_functions = {
517 .show_host_node_name = 1,
518 .show_host_port_name = 1,
519 .show_host_supported_classes = 1,
521 .get_host_port_id = qla2x00_get_host_port_id,
522 .show_host_port_id = 1,
524 .dd_fcrport_size = sizeof(struct fc_port *),
525 .show_rport_supported_classes = 1,
527 .get_starget_node_name = qla2x00_get_starget_node_name,
528 .show_starget_node_name = 1,
529 .get_starget_port_name = qla2x00_get_starget_port_name,
530 .show_starget_port_name = 1,
531 .get_starget_port_id = qla2x00_get_starget_port_id,
532 .show_starget_port_id = 1,
534 .get_rport_dev_loss_tmo = qla2x00_get_rport_loss_tmo,
535 .set_rport_dev_loss_tmo = qla2x00_set_rport_loss_tmo,
536 .show_rport_dev_loss_tmo = 1,
538 .issue_fc_host_lip = qla2x00_issue_lip,
541 void
542 qla2x00_init_host_attr(scsi_qla_host_t *ha)
544 fc_host_node_name(ha->host) = wwn_to_u64(ha->init_cb->node_name);
545 fc_host_port_name(ha->host) = wwn_to_u64(ha->init_cb->port_name);
546 fc_host_supported_classes(ha->host) = FC_COS_CLASS3;