patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / drivers / s390 / scsi / zfcp_sysfs_port.c
1 /*
2  * linux/drivers/s390/scsi/zfcp_sysfs_port.c
3  *
4  * FCP adapter driver for IBM eServer zSeries
5  *
6  * sysfs port related routines
7  *
8  * (C) Copyright IBM Corp. 2003, 2004
9  *
10  * Authors:
11  *      Martin Peschke <mpeschke@de.ibm.com>
12  *      Heiko Carstens <heiko.carstens@de.ibm.com>
13  *
14  * This program is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation; either version 2, or (at your option)
17  * any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program; if not, write to the Free Software
26  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27  */
28
29 #define ZFCP_SYSFS_PORT_C_REVISION "$Revision: 1.40 $"
30
31 #include "zfcp_ext.h"
32
33 #define ZFCP_LOG_AREA                   ZFCP_LOG_AREA_CONFIG
34
35 /**
36  * zfcp_sysfs_port_release - gets called when a struct device port is released
37  * @dev: pointer to belonging device
38  */
39 void
40 zfcp_sysfs_port_release(struct device *dev)
41 {
42         kfree(dev);
43 }
44
45 /**
46  * ZFCP_DEFINE_PORT_ATTR
47  * @_name:   name of show attribute
48  * @_format: format string
49  * @_value:  value to print
50  *
51  * Generates attributes for a port.
52  */
53 #define ZFCP_DEFINE_PORT_ATTR(_name, _format, _value)                    \
54 static ssize_t zfcp_sysfs_port_##_name##_show(struct device *dev,        \
55                                               char *buf)                 \
56 {                                                                        \
57         struct zfcp_port *port;                                          \
58                                                                          \
59         port = dev_get_drvdata(dev);                                     \
60         return sprintf(buf, _format, _value);                            \
61 }                                                                        \
62                                                                          \
63 static DEVICE_ATTR(_name, S_IRUGO, zfcp_sysfs_port_##_name##_show, NULL);
64
65 ZFCP_DEFINE_PORT_ATTR(status, "0x%08x\n", atomic_read(&port->status));
66 ZFCP_DEFINE_PORT_ATTR(wwnn, "0x%016llx\n", port->wwnn);
67 ZFCP_DEFINE_PORT_ATTR(d_id, "0x%06x\n", port->d_id);
68 ZFCP_DEFINE_PORT_ATTR(scsi_id, "0x%x\n", port->scsi_id);
69
70 /**
71  * zfcp_sysfs_unit_add_store - add a unit to sysfs tree
72  * @dev: pointer to belonging device
73  * @buf: pointer to input buffer
74  * @count: number of bytes in buffer
75  *
76  * Store function of the "unit_add" attribute of a port.
77  */
78 static ssize_t
79 zfcp_sysfs_unit_add_store(struct device *dev, const char *buf, size_t count)
80 {
81         fcp_lun_t fcp_lun;
82         char *endp;
83         struct zfcp_port *port;
84         struct zfcp_unit *unit;
85         int retval = -EINVAL;
86
87         down(&zfcp_data.config_sema);
88
89         port = dev_get_drvdata(dev);
90         if (atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status)) {
91                 retval = -EBUSY;
92                 goto out;
93         }
94
95         fcp_lun = simple_strtoull(buf, &endp, 0);
96         if ((endp + 1) < (buf + count))
97                 goto out;
98
99         unit = zfcp_unit_enqueue(port, fcp_lun);
100         if (!unit)
101                 goto out;
102
103         retval = 0;
104
105         zfcp_erp_unit_reopen(unit, 0);
106         zfcp_erp_wait(unit->port->adapter);
107         zfcp_unit_put(unit);
108  out:
109         up(&zfcp_data.config_sema);
110         return retval ? retval : count;
111 }
112
113 static DEVICE_ATTR(unit_add, S_IWUSR, NULL, zfcp_sysfs_unit_add_store);
114
115 /**
116  * zfcp_sysfs_unit_remove_store - remove a unit from sysfs tree
117  * @dev: pointer to belonging device
118  * @buf: pointer to input buffer
119  * @count: number of bytes in buffer
120  */
121 static ssize_t
122 zfcp_sysfs_unit_remove_store(struct device *dev, const char *buf, size_t count)
123 {
124         struct zfcp_port *port;
125         struct zfcp_unit *unit;
126         fcp_lun_t fcp_lun;
127         char *endp;
128         int retval = -EINVAL;
129
130         down(&zfcp_data.config_sema);
131
132         port = dev_get_drvdata(dev);
133         if (atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status)) {
134                 retval = -EBUSY;
135                 goto out;
136         }
137
138         fcp_lun = simple_strtoull(buf, &endp, 0);
139         if ((endp + 1) < (buf + count))
140                 goto out;
141
142         write_lock_irq(&zfcp_data.config_lock);
143         unit = zfcp_get_unit_by_lun(port, fcp_lun);
144         if (unit && (atomic_read(&unit->refcount) == 0)) {
145                 zfcp_unit_get(unit);
146                 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
147                 list_move(&unit->list, &port->unit_remove_lh);
148         }
149         else {
150                 unit = NULL;
151         }
152         write_unlock_irq(&zfcp_data.config_lock);
153
154         if (!unit) {
155                 retval = -ENXIO;
156                 goto out;
157         }
158
159         zfcp_erp_unit_shutdown(unit, 0);
160         zfcp_erp_wait(unit->port->adapter);
161         zfcp_unit_put(unit);
162         zfcp_unit_dequeue(unit);
163  out:
164         up(&zfcp_data.config_sema);
165         return retval ? retval : count;
166 }
167
168 static DEVICE_ATTR(unit_remove, S_IWUSR, NULL, zfcp_sysfs_unit_remove_store);
169
170 /**
171  * zfcp_sysfs_port_failed_store - failed state of port
172  * @dev: pointer to belonging device
173  * @buf: pointer to input buffer
174  * @count: number of bytes in buffer
175  *
176  * Store function of the "failed" attribute of a port.
177  * If a "0" gets written to "failed", error recovery will be
178  * started for the belonging port.
179  */
180 static ssize_t
181 zfcp_sysfs_port_failed_store(struct device *dev, const char *buf, size_t count)
182 {
183         struct zfcp_port *port;
184         unsigned int val;
185         char *endp;
186         int retval = 0;
187
188         down(&zfcp_data.config_sema);
189
190         port = dev_get_drvdata(dev);
191         if (atomic_test_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status)) {
192                 retval = -EBUSY;
193                 goto out;
194         }
195
196         val = simple_strtoul(buf, &endp, 0);
197         if (((endp + 1) < (buf + count)) || (val != 0)) {
198                 retval = -EINVAL;
199                 goto out;
200         }
201
202         zfcp_erp_modify_port_status(port, ZFCP_STATUS_COMMON_RUNNING, ZFCP_SET);
203         zfcp_erp_port_reopen(port, ZFCP_STATUS_COMMON_ERP_FAILED);
204         zfcp_erp_wait(port->adapter);
205  out:
206         up(&zfcp_data.config_sema);
207         return retval ? retval : count;
208 }
209
210 /**
211  * zfcp_sysfs_port_failed_show - failed state of port
212  * @dev: pointer to belonging device
213  * @buf: pointer to input buffer
214  *
215  * Show function of "failed" attribute of port. Will be
216  * "0" if port is working, otherwise "1".
217  */
218 static ssize_t
219 zfcp_sysfs_port_failed_show(struct device *dev, char *buf)
220 {
221         struct zfcp_port *port;
222
223         port = dev_get_drvdata(dev);
224         if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_FAILED, &port->status))
225                 return sprintf(buf, "1\n");
226         else
227                 return sprintf(buf, "0\n");
228 }
229
230 static DEVICE_ATTR(failed, S_IWUSR | S_IRUGO, zfcp_sysfs_port_failed_show,
231                    zfcp_sysfs_port_failed_store);
232
233 /**
234  * zfcp_sysfs_port_in_recovery_show - recovery state of port
235  * @dev: pointer to belonging device
236  * @buf: pointer to input buffer
237  * 
238  * Show function of "in_recovery" attribute of port. Will be
239  * "0" if no error recovery is pending for port, otherwise "1".
240  */
241 static ssize_t
242 zfcp_sysfs_port_in_recovery_show(struct device *dev, char *buf)
243 {
244         struct zfcp_port *port;
245
246         port = dev_get_drvdata(dev);
247         if (atomic_test_mask(ZFCP_STATUS_COMMON_ERP_INUSE, &port->status))
248                 return sprintf(buf, "1\n");
249         else
250                 return sprintf(buf, "0\n");
251 }
252
253 static DEVICE_ATTR(in_recovery, S_IRUGO, zfcp_sysfs_port_in_recovery_show,
254                    NULL);
255
256 /**
257  * zfcp_port_common_attrs
258  * sysfs attributes that are common for all kind of fc ports.
259  */
260 static struct attribute *zfcp_port_common_attrs[] = {
261         &dev_attr_failed.attr,
262         &dev_attr_in_recovery.attr,
263         &dev_attr_status.attr,
264         &dev_attr_wwnn.attr,
265         &dev_attr_d_id.attr,
266         NULL
267 };
268
269 static struct attribute_group zfcp_port_common_attr_group = {
270         .attrs = zfcp_port_common_attrs,
271 };
272
273 /**
274  * zfcp_port_no_ns_attrs
275  * sysfs attributes not to be used for nameserver ports.
276  */
277 static struct attribute *zfcp_port_no_ns_attrs[] = {
278         &dev_attr_unit_add.attr,
279         &dev_attr_unit_remove.attr,
280         &dev_attr_scsi_id.attr,
281         NULL
282 };
283
284 static struct attribute_group zfcp_port_no_ns_attr_group = {
285         .attrs = zfcp_port_no_ns_attrs,
286 };
287
288 /**
289  * zfcp_sysfs_port_create_files - create sysfs port files
290  * @dev: pointer to belonging device
291  *
292  * Create all attributes of the sysfs representation of a port.
293  */
294 int
295 zfcp_sysfs_port_create_files(struct device *dev, u32 flags)
296 {
297         int retval;
298
299         retval = sysfs_create_group(&dev->kobj, &zfcp_port_common_attr_group);
300
301         if ((flags & ZFCP_STATUS_PORT_NAMESERVER) || retval)
302                 return retval;
303
304         retval = sysfs_create_group(&dev->kobj, &zfcp_port_no_ns_attr_group);
305         if (retval)
306                 sysfs_remove_group(&dev->kobj, &zfcp_port_common_attr_group);
307
308         return retval;
309 }
310
311 /**
312  * zfcp_sysfs_port_remove_files - remove sysfs port files
313  * @dev: pointer to belonging device
314  *
315  * Remove all attributes of the sysfs representation of a port.
316  */
317 void
318 zfcp_sysfs_port_remove_files(struct device *dev, u32 flags)
319 {
320         sysfs_remove_group(&dev->kobj, &zfcp_port_common_attr_group);
321         if (!(flags & ZFCP_STATUS_PORT_NAMESERVER))
322                 sysfs_remove_group(&dev->kobj, &zfcp_port_no_ns_attr_group);
323 }
324
325 #undef ZFCP_LOG_AREA