blob: 35e920b4fd8acb43ffe738c0bc482a2f7bb59d1c [file] [log] [blame]
Swen Schillig60221922008-07-02 10:56:38 +02001/*
2 * zfcp device driver
3 *
4 * sysfs attributes.
5 *
Swen Schilligf3450c72009-11-24 16:53:59 +01006 * Copyright IBM Corporation 2008, 2009
Swen Schillig60221922008-07-02 10:56:38 +02007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Swen Schillig60221922008-07-02 10:56:38 +020012#include "zfcp_ext.h"
13
14#define ZFCP_DEV_ATTR(_feat, _name, _mode, _show, _store) \
15struct device_attribute dev_attr_##_feat##_##_name = __ATTR(_name, _mode,\
16 _show, _store)
17#define ZFCP_DEFINE_ATTR(_feat_def, _feat, _name, _format, _value) \
18static ssize_t zfcp_sysfs_##_feat##_##_name##_show(struct device *dev, \
19 struct device_attribute *at,\
20 char *buf) \
21{ \
Christof Schmitt25458eb2009-11-24 16:54:02 +010022 struct _feat_def *_feat = container_of(dev, struct _feat_def, \
23 sysfs_device); \
Swen Schillig60221922008-07-02 10:56:38 +020024 \
25 return sprintf(buf, _format, _value); \
26} \
27static ZFCP_DEV_ATTR(_feat, _name, S_IRUGO, \
28 zfcp_sysfs_##_feat##_##_name##_show, NULL);
29
Swen Schilligde3dc572009-11-24 16:54:00 +010030#define ZFCP_DEFINE_A_ATTR(_name, _format, _value) \
31static ssize_t zfcp_sysfs_adapter_##_name##_show(struct device *dev, \
32 struct device_attribute *at,\
33 char *buf) \
34{ \
35 struct ccw_device *cdev = to_ccwdev(dev); \
36 struct zfcp_adapter *adapter = zfcp_ccw_adapter_by_cdev(cdev); \
37 int i; \
38 \
39 if (!adapter) \
40 return -ENODEV; \
41 \
42 i = sprintf(buf, _format, _value); \
43 zfcp_ccw_adapter_put(adapter); \
44 return i; \
45} \
46static ZFCP_DEV_ATTR(adapter, _name, S_IRUGO, \
47 zfcp_sysfs_adapter_##_name##_show, NULL);
48
49ZFCP_DEFINE_A_ATTR(status, "0x%08x\n", atomic_read(&adapter->status));
50ZFCP_DEFINE_A_ATTR(peer_wwnn, "0x%016llx\n",
51 (unsigned long long) adapter->peer_wwnn);
52ZFCP_DEFINE_A_ATTR(peer_wwpn, "0x%016llx\n",
53 (unsigned long long) adapter->peer_wwpn);
54ZFCP_DEFINE_A_ATTR(peer_d_id, "0x%06x\n", adapter->peer_d_id);
55ZFCP_DEFINE_A_ATTR(card_version, "0x%04x\n", adapter->hydra_version);
56ZFCP_DEFINE_A_ATTR(lic_version, "0x%08x\n", adapter->fsf_lic_version);
57ZFCP_DEFINE_A_ATTR(hardware_version, "0x%08x\n", adapter->hardware_version);
58ZFCP_DEFINE_A_ATTR(in_recovery, "%d\n", (atomic_read(&adapter->status) &
59 ZFCP_STATUS_COMMON_ERP_INUSE) != 0);
Swen Schillig60221922008-07-02 10:56:38 +020060
61ZFCP_DEFINE_ATTR(zfcp_port, port, status, "0x%08x\n",
62 atomic_read(&port->status));
63ZFCP_DEFINE_ATTR(zfcp_port, port, in_recovery, "%d\n",
64 (atomic_read(&port->status) &
65 ZFCP_STATUS_COMMON_ERP_INUSE) != 0);
66ZFCP_DEFINE_ATTR(zfcp_port, port, access_denied, "%d\n",
67 (atomic_read(&port->status) &
68 ZFCP_STATUS_COMMON_ACCESS_DENIED) != 0);
69
70ZFCP_DEFINE_ATTR(zfcp_unit, unit, status, "0x%08x\n",
71 atomic_read(&unit->status));
72ZFCP_DEFINE_ATTR(zfcp_unit, unit, in_recovery, "%d\n",
73 (atomic_read(&unit->status) &
74 ZFCP_STATUS_COMMON_ERP_INUSE) != 0);
75ZFCP_DEFINE_ATTR(zfcp_unit, unit, access_denied, "%d\n",
76 (atomic_read(&unit->status) &
77 ZFCP_STATUS_COMMON_ACCESS_DENIED) != 0);
78ZFCP_DEFINE_ATTR(zfcp_unit, unit, access_shared, "%d\n",
79 (atomic_read(&unit->status) &
80 ZFCP_STATUS_UNIT_SHARED) != 0);
81ZFCP_DEFINE_ATTR(zfcp_unit, unit, access_readonly, "%d\n",
82 (atomic_read(&unit->status) &
83 ZFCP_STATUS_UNIT_READONLY) != 0);
84
85#define ZFCP_SYSFS_FAILED(_feat_def, _feat, _adapter, _mod_id, _reopen_id) \
86static ssize_t zfcp_sysfs_##_feat##_failed_show(struct device *dev, \
87 struct device_attribute *attr, \
88 char *buf) \
89{ \
Christof Schmitt25458eb2009-11-24 16:54:02 +010090 struct _feat_def *_feat = container_of(dev, struct _feat_def, \
91 sysfs_device); \
Swen Schillig60221922008-07-02 10:56:38 +020092 \
93 if (atomic_read(&_feat->status) & ZFCP_STATUS_COMMON_ERP_FAILED) \
94 return sprintf(buf, "1\n"); \
95 else \
96 return sprintf(buf, "0\n"); \
97} \
98static ssize_t zfcp_sysfs_##_feat##_failed_store(struct device *dev, \
99 struct device_attribute *attr,\
100 const char *buf, size_t count)\
101{ \
Christof Schmitt25458eb2009-11-24 16:54:02 +0100102 struct _feat_def *_feat = container_of(dev, struct _feat_def, \
103 sysfs_device); \
Swen Schillig60221922008-07-02 10:56:38 +0200104 unsigned long val; \
105 int retval = 0; \
106 \
Swen Schillig6b183332009-11-24 16:54:05 +0100107 if (!(_feat && get_device(&_feat->sysfs_device))) \
108 return -EBUSY; \
Swen Schillig60221922008-07-02 10:56:38 +0200109 \
110 if (strict_strtoul(buf, 0, &val) || val != 0) { \
111 retval = -EINVAL; \
112 goto out; \
113 } \
114 \
115 zfcp_erp_modify_##_feat##_status(_feat, _mod_id, NULL, \
116 ZFCP_STATUS_COMMON_RUNNING, ZFCP_SET);\
117 zfcp_erp_##_feat##_reopen(_feat, ZFCP_STATUS_COMMON_ERP_FAILED, \
118 _reopen_id, NULL); \
119 zfcp_erp_wait(_adapter); \
120out: \
Swen Schillig6b183332009-11-24 16:54:05 +0100121 put_device(&_feat->sysfs_device); \
Swen Schillig60221922008-07-02 10:56:38 +0200122 return retval ? retval : (ssize_t) count; \
123} \
124static ZFCP_DEV_ATTR(_feat, failed, S_IWUSR | S_IRUGO, \
125 zfcp_sysfs_##_feat##_failed_show, \
126 zfcp_sysfs_##_feat##_failed_store);
127
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100128ZFCP_SYSFS_FAILED(zfcp_port, port, port->adapter, "sypfai1", "sypfai2");
129ZFCP_SYSFS_FAILED(zfcp_unit, unit, unit->port->adapter, "syufai1", "syufai2");
Swen Schillig60221922008-07-02 10:56:38 +0200130
Swen Schilligde3dc572009-11-24 16:54:00 +0100131static ssize_t zfcp_sysfs_adapter_failed_show(struct device *dev,
132 struct device_attribute *attr,
133 char *buf)
134{
135 struct ccw_device *cdev = to_ccwdev(dev);
136 struct zfcp_adapter *adapter = zfcp_ccw_adapter_by_cdev(cdev);
137 int i;
138
139 if (!adapter)
140 return -ENODEV;
141
142 if (atomic_read(&adapter->status) & ZFCP_STATUS_COMMON_ERP_FAILED)
143 i = sprintf(buf, "1\n");
144 else
145 i = sprintf(buf, "0\n");
146
147 zfcp_ccw_adapter_put(adapter);
148 return i;
149}
150
151static ssize_t zfcp_sysfs_adapter_failed_store(struct device *dev,
152 struct device_attribute *attr,
153 const char *buf, size_t count)
154{
155 struct ccw_device *cdev = to_ccwdev(dev);
156 struct zfcp_adapter *adapter = zfcp_ccw_adapter_by_cdev(cdev);
157 unsigned long val;
158 int retval = 0;
159
160 if (!adapter)
161 return -ENODEV;
162
Swen Schilligde3dc572009-11-24 16:54:00 +0100163 if (strict_strtoul(buf, 0, &val) || val != 0) {
164 retval = -EINVAL;
165 goto out;
166 }
167
168 zfcp_erp_modify_adapter_status(adapter, "syafai1", NULL,
169 ZFCP_STATUS_COMMON_RUNNING, ZFCP_SET);
170 zfcp_erp_adapter_reopen(adapter, ZFCP_STATUS_COMMON_ERP_FAILED,
171 "syafai2", NULL);
172 zfcp_erp_wait(adapter);
173out:
174 zfcp_ccw_adapter_put(adapter);
175 return retval ? retval : (ssize_t) count;
176}
177static ZFCP_DEV_ATTR(adapter, failed, S_IWUSR | S_IRUGO,
178 zfcp_sysfs_adapter_failed_show,
179 zfcp_sysfs_adapter_failed_store);
180
Swen Schillig60221922008-07-02 10:56:38 +0200181static ssize_t zfcp_sysfs_port_rescan_store(struct device *dev,
182 struct device_attribute *attr,
183 const char *buf, size_t count)
184{
Swen Schilligde3dc572009-11-24 16:54:00 +0100185 struct ccw_device *cdev = to_ccwdev(dev);
186 struct zfcp_adapter *adapter = zfcp_ccw_adapter_by_cdev(cdev);
Swen Schillig60221922008-07-02 10:56:38 +0200187 int ret;
188
Swen Schilligde3dc572009-11-24 16:54:00 +0100189 if (!adapter)
190 return -ENODEV;
191
Swen Schillig6f53a2d2009-08-18 15:43:23 +0200192 ret = zfcp_fc_scan_ports(adapter);
Swen Schilligde3dc572009-11-24 16:54:00 +0100193 zfcp_ccw_adapter_put(adapter);
Swen Schillig6b183332009-11-24 16:54:05 +0100194
Swen Schillig60221922008-07-02 10:56:38 +0200195 return ret ? ret : (ssize_t) count;
196}
197static ZFCP_DEV_ATTR(adapter, port_rescan, S_IWUSR, NULL,
198 zfcp_sysfs_port_rescan_store);
199
200static ssize_t zfcp_sysfs_port_remove_store(struct device *dev,
201 struct device_attribute *attr,
202 const char *buf, size_t count)
203{
Swen Schilligde3dc572009-11-24 16:54:00 +0100204 struct ccw_device *cdev = to_ccwdev(dev);
205 struct zfcp_adapter *adapter = zfcp_ccw_adapter_by_cdev(cdev);
Swen Schillig60221922008-07-02 10:56:38 +0200206 struct zfcp_port *port;
Swen Schillig7ba58c92008-10-01 12:42:18 +0200207 u64 wwpn;
Swen Schillig6b183332009-11-24 16:54:05 +0100208 int retval = -EINVAL;
Swen Schillig60221922008-07-02 10:56:38 +0200209
Swen Schilligde3dc572009-11-24 16:54:00 +0100210 if (!adapter)
211 return -ENODEV;
212
Swen Schillig6b183332009-11-24 16:54:05 +0100213 if (strict_strtoull(buf, 0, (unsigned long long *) &wwpn))
Swen Schillig60221922008-07-02 10:56:38 +0200214 goto out;
Swen Schillig60221922008-07-02 10:56:38 +0200215
Swen Schillig60221922008-07-02 10:56:38 +0200216 port = zfcp_get_port_by_wwpn(adapter, wwpn);
Swen Schillig6b183332009-11-24 16:54:05 +0100217 if (!port)
Swen Schillig60221922008-07-02 10:56:38 +0200218 goto out;
Swen Schillig6b183332009-11-24 16:54:05 +0100219 else
220 retval = 0;
Swen Schilligf3450c72009-11-24 16:53:59 +0100221
222 write_lock_irq(&adapter->port_list_lock);
223 list_del(&port->list);
224 write_unlock_irq(&adapter->port_list_lock);
225
226 put_device(&port->sysfs_device);
227
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100228 zfcp_erp_port_shutdown(port, 0, "syprs_1", NULL);
Swen Schilligf3450c72009-11-24 16:53:59 +0100229 zfcp_device_unregister(&port->sysfs_device, &zfcp_sysfs_port_attrs);
Swen Schillig60221922008-07-02 10:56:38 +0200230 out:
Swen Schilligde3dc572009-11-24 16:54:00 +0100231 zfcp_ccw_adapter_put(adapter);
Swen Schillig60221922008-07-02 10:56:38 +0200232 return retval ? retval : (ssize_t) count;
233}
234static ZFCP_DEV_ATTR(adapter, port_remove, S_IWUSR, NULL,
235 zfcp_sysfs_port_remove_store);
236
237static struct attribute *zfcp_adapter_attrs[] = {
238 &dev_attr_adapter_failed.attr,
239 &dev_attr_adapter_in_recovery.attr,
240 &dev_attr_adapter_port_remove.attr,
241 &dev_attr_adapter_port_rescan.attr,
242 &dev_attr_adapter_peer_wwnn.attr,
243 &dev_attr_adapter_peer_wwpn.attr,
244 &dev_attr_adapter_peer_d_id.attr,
245 &dev_attr_adapter_card_version.attr,
246 &dev_attr_adapter_lic_version.attr,
247 &dev_attr_adapter_status.attr,
248 &dev_attr_adapter_hardware_version.attr,
249 NULL
250};
251
252struct attribute_group zfcp_sysfs_adapter_attrs = {
253 .attrs = zfcp_adapter_attrs,
254};
255
256static ssize_t zfcp_sysfs_unit_add_store(struct device *dev,
257 struct device_attribute *attr,
258 const char *buf, size_t count)
259{
Christof Schmitt25458eb2009-11-24 16:54:02 +0100260 struct zfcp_port *port = container_of(dev, struct zfcp_port,
261 sysfs_device);
Swen Schillig60221922008-07-02 10:56:38 +0200262 struct zfcp_unit *unit;
Swen Schillig7ba58c92008-10-01 12:42:18 +0200263 u64 fcp_lun;
Swen Schillig60221922008-07-02 10:56:38 +0200264 int retval = -EINVAL;
265
Swen Schillig6b183332009-11-24 16:54:05 +0100266 if (!(port && get_device(&port->sysfs_device)))
267 return -EBUSY;
Swen Schillig60221922008-07-02 10:56:38 +0200268
Swen Schillig7ba58c92008-10-01 12:42:18 +0200269 if (strict_strtoull(buf, 0, (unsigned long long *) &fcp_lun))
Swen Schillig60221922008-07-02 10:56:38 +0200270 goto out;
271
272 unit = zfcp_unit_enqueue(port, fcp_lun);
273 if (IS_ERR(unit))
274 goto out;
Swen Schillig6b183332009-11-24 16:54:05 +0100275 else
276 retval = 0;
Swen Schillig60221922008-07-02 10:56:38 +0200277
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100278 zfcp_erp_unit_reopen(unit, 0, "syuas_1", NULL);
Swen Schillig60221922008-07-02 10:56:38 +0200279 zfcp_erp_wait(unit->port->adapter);
Christof Schmitt9e820af2009-10-13 10:44:11 +0200280 flush_work(&unit->scsi_work);
Swen Schillig60221922008-07-02 10:56:38 +0200281out:
Swen Schillig6b183332009-11-24 16:54:05 +0100282 put_device(&port->sysfs_device);
Swen Schillig60221922008-07-02 10:56:38 +0200283 return retval ? retval : (ssize_t) count;
284}
285static DEVICE_ATTR(unit_add, S_IWUSR, NULL, zfcp_sysfs_unit_add_store);
286
287static ssize_t zfcp_sysfs_unit_remove_store(struct device *dev,
288 struct device_attribute *attr,
289 const char *buf, size_t count)
290{
Christof Schmitt25458eb2009-11-24 16:54:02 +0100291 struct zfcp_port *port = container_of(dev, struct zfcp_port,
292 sysfs_device);
Swen Schillig60221922008-07-02 10:56:38 +0200293 struct zfcp_unit *unit;
Swen Schillig7ba58c92008-10-01 12:42:18 +0200294 u64 fcp_lun;
Swen Schillig6b183332009-11-24 16:54:05 +0100295 int retval = -EINVAL;
Swen Schillig60221922008-07-02 10:56:38 +0200296
Swen Schillig6b183332009-11-24 16:54:05 +0100297 if (!(port && get_device(&port->sysfs_device)))
298 return -EBUSY;
Swen Schillig60221922008-07-02 10:56:38 +0200299
Swen Schillig6b183332009-11-24 16:54:05 +0100300 if (strict_strtoull(buf, 0, (unsigned long long *) &fcp_lun))
Swen Schillig60221922008-07-02 10:56:38 +0200301 goto out;
Swen Schillig60221922008-07-02 10:56:38 +0200302
Swen Schillig60221922008-07-02 10:56:38 +0200303 unit = zfcp_get_unit_by_lun(port, fcp_lun);
Swen Schillig6b183332009-11-24 16:54:05 +0100304 if (!unit)
Swen Schillig60221922008-07-02 10:56:38 +0200305 goto out;
Swen Schillig6b183332009-11-24 16:54:05 +0100306 else
307 retval = 0;
Swen Schillig60221922008-07-02 10:56:38 +0200308
Swen Schilligecf0c772009-11-24 16:53:58 +0100309 /* wait for possible timeout during SCSI probe */
310 flush_work(&unit->scsi_work);
311
Swen Schilligf3450c72009-11-24 16:53:59 +0100312 write_lock_irq(&port->unit_list_lock);
313 list_del(&unit->list);
314 write_unlock_irq(&port->unit_list_lock);
Swen Schilligecf0c772009-11-24 16:53:58 +0100315
Swen Schilligf3450c72009-11-24 16:53:59 +0100316 put_device(&unit->sysfs_device);
317
318 zfcp_erp_unit_shutdown(unit, 0, "syurs_1", NULL);
319 zfcp_device_unregister(&unit->sysfs_device, &zfcp_sysfs_unit_attrs);
Swen Schillig60221922008-07-02 10:56:38 +0200320out:
Swen Schillig6b183332009-11-24 16:54:05 +0100321 put_device(&port->sysfs_device);
Swen Schillig60221922008-07-02 10:56:38 +0200322 return retval ? retval : (ssize_t) count;
323}
324static DEVICE_ATTR(unit_remove, S_IWUSR, NULL, zfcp_sysfs_unit_remove_store);
325
Swen Schillig5ab944f2008-10-01 12:42:17 +0200326static struct attribute *zfcp_port_attrs[] = {
Swen Schillig60221922008-07-02 10:56:38 +0200327 &dev_attr_unit_add.attr,
328 &dev_attr_unit_remove.attr,
329 &dev_attr_port_failed.attr,
330 &dev_attr_port_in_recovery.attr,
331 &dev_attr_port_status.attr,
332 &dev_attr_port_access_denied.attr,
333 NULL
334};
335
336/**
337 * zfcp_sysfs_port_attrs - sysfs attributes for all other ports
338 */
339struct attribute_group zfcp_sysfs_port_attrs = {
Swen Schillig5ab944f2008-10-01 12:42:17 +0200340 .attrs = zfcp_port_attrs,
Swen Schillig60221922008-07-02 10:56:38 +0200341};
342
343static struct attribute *zfcp_unit_attrs[] = {
344 &dev_attr_unit_failed.attr,
345 &dev_attr_unit_in_recovery.attr,
346 &dev_attr_unit_status.attr,
347 &dev_attr_unit_access_denied.attr,
348 &dev_attr_unit_access_shared.attr,
349 &dev_attr_unit_access_readonly.attr,
350 NULL
351};
352
353struct attribute_group zfcp_sysfs_unit_attrs = {
354 .attrs = zfcp_unit_attrs,
355};
356
357#define ZFCP_DEFINE_LATENCY_ATTR(_name) \
358static ssize_t \
359zfcp_sysfs_unit_##_name##_latency_show(struct device *dev, \
360 struct device_attribute *attr, \
361 char *buf) { \
362 struct scsi_device *sdev = to_scsi_device(dev); \
363 struct zfcp_unit *unit = sdev->hostdata; \
364 struct zfcp_latencies *lat = &unit->latencies; \
365 struct zfcp_adapter *adapter = unit->port->adapter; \
Swen Schillig60221922008-07-02 10:56:38 +0200366 unsigned long long fsum, fmin, fmax, csum, cmin, cmax, cc; \
367 \
Christof Schmitt49f0f012009-03-02 13:08:57 +0100368 spin_lock_bh(&lat->lock); \
Swen Schillig60221922008-07-02 10:56:38 +0200369 fsum = lat->_name.fabric.sum * adapter->timer_ticks; \
370 fmin = lat->_name.fabric.min * adapter->timer_ticks; \
371 fmax = lat->_name.fabric.max * adapter->timer_ticks; \
372 csum = lat->_name.channel.sum * adapter->timer_ticks; \
373 cmin = lat->_name.channel.min * adapter->timer_ticks; \
374 cmax = lat->_name.channel.max * adapter->timer_ticks; \
375 cc = lat->_name.counter; \
Christof Schmitt49f0f012009-03-02 13:08:57 +0100376 spin_unlock_bh(&lat->lock); \
Swen Schillig60221922008-07-02 10:56:38 +0200377 \
378 do_div(fsum, 1000); \
379 do_div(fmin, 1000); \
380 do_div(fmax, 1000); \
381 do_div(csum, 1000); \
382 do_div(cmin, 1000); \
383 do_div(cmax, 1000); \
384 \
385 return sprintf(buf, "%llu %llu %llu %llu %llu %llu %llu\n", \
386 fmin, fmax, fsum, cmin, cmax, csum, cc); \
387} \
388static ssize_t \
389zfcp_sysfs_unit_##_name##_latency_store(struct device *dev, \
390 struct device_attribute *attr, \
391 const char *buf, size_t count) \
392{ \
393 struct scsi_device *sdev = to_scsi_device(dev); \
394 struct zfcp_unit *unit = sdev->hostdata; \
395 struct zfcp_latencies *lat = &unit->latencies; \
396 unsigned long flags; \
397 \
398 spin_lock_irqsave(&lat->lock, flags); \
399 lat->_name.fabric.sum = 0; \
400 lat->_name.fabric.min = 0xFFFFFFFF; \
401 lat->_name.fabric.max = 0; \
402 lat->_name.channel.sum = 0; \
403 lat->_name.channel.min = 0xFFFFFFFF; \
404 lat->_name.channel.max = 0; \
405 lat->_name.counter = 0; \
406 spin_unlock_irqrestore(&lat->lock, flags); \
407 \
408 return (ssize_t) count; \
409} \
410static DEVICE_ATTR(_name##_latency, S_IWUSR | S_IRUGO, \
411 zfcp_sysfs_unit_##_name##_latency_show, \
412 zfcp_sysfs_unit_##_name##_latency_store);
413
414ZFCP_DEFINE_LATENCY_ATTR(read);
415ZFCP_DEFINE_LATENCY_ATTR(write);
416ZFCP_DEFINE_LATENCY_ATTR(cmd);
417
418#define ZFCP_DEFINE_SCSI_ATTR(_name, _format, _value) \
419static ssize_t zfcp_sysfs_scsi_##_name##_show(struct device *dev, \
420 struct device_attribute *attr,\
421 char *buf) \
422{ \
423 struct scsi_device *sdev = to_scsi_device(dev); \
424 struct zfcp_unit *unit = sdev->hostdata; \
425 \
426 return sprintf(buf, _format, _value); \
427} \
428static DEVICE_ATTR(_name, S_IRUGO, zfcp_sysfs_scsi_##_name##_show, NULL);
429
430ZFCP_DEFINE_SCSI_ATTR(hba_id, "%s\n",
Cornelia Huckb9d3aed2008-10-10 21:33:11 +0200431 dev_name(&unit->port->adapter->ccw_device->dev));
Swen Schillig7ba58c92008-10-01 12:42:18 +0200432ZFCP_DEFINE_SCSI_ATTR(wwpn, "0x%016llx\n",
433 (unsigned long long) unit->port->wwpn);
434ZFCP_DEFINE_SCSI_ATTR(fcp_lun, "0x%016llx\n",
435 (unsigned long long) unit->fcp_lun);
Swen Schillig60221922008-07-02 10:56:38 +0200436
437struct device_attribute *zfcp_sysfs_sdev_attrs[] = {
438 &dev_attr_fcp_lun,
439 &dev_attr_wwpn,
440 &dev_attr_hba_id,
441 &dev_attr_read_latency,
442 &dev_attr_write_latency,
443 &dev_attr_cmd_latency,
444 NULL
445};
446
447static ssize_t zfcp_sysfs_adapter_util_show(struct device *dev,
448 struct device_attribute *attr,
449 char *buf)
450{
451 struct Scsi_Host *scsi_host = dev_to_shost(dev);
452 struct fsf_qtcb_bottom_port *qtcb_port;
453 struct zfcp_adapter *adapter;
454 int retval;
455
456 adapter = (struct zfcp_adapter *) scsi_host->hostdata[0];
457 if (!(adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA))
458 return -EOPNOTSUPP;
459
460 qtcb_port = kzalloc(sizeof(struct fsf_qtcb_bottom_port), GFP_KERNEL);
461 if (!qtcb_port)
462 return -ENOMEM;
463
Swen Schillig564e1c82009-08-18 15:43:19 +0200464 retval = zfcp_fsf_exchange_port_data_sync(adapter->qdio, qtcb_port);
Swen Schillig60221922008-07-02 10:56:38 +0200465 if (!retval)
466 retval = sprintf(buf, "%u %u %u\n", qtcb_port->cp_util,
467 qtcb_port->cb_util, qtcb_port->a_util);
468 kfree(qtcb_port);
469 return retval;
470}
471static DEVICE_ATTR(utilization, S_IRUGO, zfcp_sysfs_adapter_util_show, NULL);
472
473static int zfcp_sysfs_adapter_ex_config(struct device *dev,
474 struct fsf_statistics_info *stat_inf)
475{
476 struct Scsi_Host *scsi_host = dev_to_shost(dev);
477 struct fsf_qtcb_bottom_config *qtcb_config;
478 struct zfcp_adapter *adapter;
479 int retval;
480
481 adapter = (struct zfcp_adapter *) scsi_host->hostdata[0];
482 if (!(adapter->adapter_features & FSF_FEATURE_MEASUREMENT_DATA))
483 return -EOPNOTSUPP;
484
485 qtcb_config = kzalloc(sizeof(struct fsf_qtcb_bottom_config),
486 GFP_KERNEL);
487 if (!qtcb_config)
488 return -ENOMEM;
489
Swen Schillig564e1c82009-08-18 15:43:19 +0200490 retval = zfcp_fsf_exchange_config_data_sync(adapter->qdio, qtcb_config);
Swen Schillig60221922008-07-02 10:56:38 +0200491 if (!retval)
492 *stat_inf = qtcb_config->stat_info;
493
494 kfree(qtcb_config);
495 return retval;
496}
497
498#define ZFCP_SHOST_ATTR(_name, _format, _arg...) \
499static ssize_t zfcp_sysfs_adapter_##_name##_show(struct device *dev, \
500 struct device_attribute *attr,\
501 char *buf) \
502{ \
503 struct fsf_statistics_info stat_info; \
504 int retval; \
505 \
506 retval = zfcp_sysfs_adapter_ex_config(dev, &stat_info); \
507 if (retval) \
508 return retval; \
509 \
510 return sprintf(buf, _format, ## _arg); \
511} \
512static DEVICE_ATTR(_name, S_IRUGO, zfcp_sysfs_adapter_##_name##_show, NULL);
513
514ZFCP_SHOST_ATTR(requests, "%llu %llu %llu\n",
515 (unsigned long long) stat_info.input_req,
516 (unsigned long long) stat_info.output_req,
517 (unsigned long long) stat_info.control_req);
518
519ZFCP_SHOST_ATTR(megabytes, "%llu %llu\n",
520 (unsigned long long) stat_info.input_mb,
521 (unsigned long long) stat_info.output_mb);
522
523ZFCP_SHOST_ATTR(seconds_active, "%llu\n",
524 (unsigned long long) stat_info.seconds_act);
525
Stefan Raspl2450d3e2008-10-01 12:42:14 +0200526static ssize_t zfcp_sysfs_adapter_q_full_show(struct device *dev,
527 struct device_attribute *attr,
528 char *buf)
529{
530 struct Scsi_Host *scsi_host = class_to_shost(dev);
Swen Schillig564e1c82009-08-18 15:43:19 +0200531 struct zfcp_qdio *qdio =
532 ((struct zfcp_adapter *) scsi_host->hostdata[0])->qdio;
Christof Schmittacf7b862009-07-13 15:06:03 +0200533 u64 util;
534
Swen Schillig564e1c82009-08-18 15:43:19 +0200535 spin_lock_bh(&qdio->stat_lock);
536 util = qdio->req_q_util;
537 spin_unlock_bh(&qdio->stat_lock);
Stefan Raspl2450d3e2008-10-01 12:42:14 +0200538
Swen Schillig564e1c82009-08-18 15:43:19 +0200539 return sprintf(buf, "%d %llu\n", atomic_read(&qdio->req_q_full),
Christof Schmittacf7b862009-07-13 15:06:03 +0200540 (unsigned long long)util);
Stefan Raspl2450d3e2008-10-01 12:42:14 +0200541}
542static DEVICE_ATTR(queue_full, S_IRUGO, zfcp_sysfs_adapter_q_full_show, NULL);
543
Swen Schillig60221922008-07-02 10:56:38 +0200544struct device_attribute *zfcp_sysfs_shost_attrs[] = {
545 &dev_attr_utilization,
546 &dev_attr_requests,
547 &dev_attr_megabytes,
548 &dev_attr_seconds_active,
Stefan Raspl2450d3e2008-10-01 12:42:14 +0200549 &dev_attr_queue_full,
Swen Schillig60221922008-07-02 10:56:38 +0200550 NULL
551};