blob: 2864581d8ecb88a9d9ce362e6fbb170a57a49f46 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * bus driver for ccwgroup
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Sebastian Ott7e597a22009-06-16 10:30:21 +02004 * Copyright IBM Corp. 2002, 2009
5 *
6 * Author(s): Arnd Bergmann (arndb@de.ibm.com)
7 * Cornelia Huck (cornelia.huck@de.ibm.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9#include <linux/module.h>
10#include <linux/errno.h>
11#include <linux/slab.h>
12#include <linux/list.h>
13#include <linux/device.h>
14#include <linux/init.h>
15#include <linux/ctype.h>
16#include <linux/dcache.h>
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/ccwdev.h>
19#include <asm/ccwgroup.h>
20
Kay Sievers98df67b2008-12-25 13:38:55 +010021#define CCW_BUS_ID_SIZE 20
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/* In Linux 2.4, we had a channel device layer called "chandev"
24 * that did all sorts of obscure stuff for networking devices.
25 * This is another driver that serves as a replacement for just
26 * one of its functions, namely the translation of single subchannels
27 * to devices that use multiple subchannels.
28 */
29
30/* a device matches a driver if all its slave devices match the same
31 * entry of the driver */
32static int
33ccwgroup_bus_match (struct device * dev, struct device_driver * drv)
34{
35 struct ccwgroup_device *gdev;
36 struct ccwgroup_driver *gdrv;
37
Cornelia Huck084325d2008-01-26 14:10:38 +010038 gdev = to_ccwgroupdev(dev);
39 gdrv = to_ccwgroupdrv(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41 if (gdev->creator_id == gdrv->driver_id)
42 return 1;
43
44 return 0;
45}
46static int
Kay Sievers7eff2e72007-08-14 15:15:12 +020047ccwgroup_uevent (struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 /* TODO */
50 return 0;
51}
52
Russell Kingf9ccf452006-01-05 14:42:09 +000053static struct bus_type ccwgroup_bus_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Heiko Carstens4d284ca2007-02-05 21:18:53 +010055static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070056__ccwgroup_remove_symlinks(struct ccwgroup_device *gdev)
57{
58 int i;
59 char str[8];
60
61 for (i = 0; i < gdev->count; i++) {
62 sprintf(str, "cdev%d", i);
63 sysfs_remove_link(&gdev->dev.kobj, str);
64 sysfs_remove_link(&gdev->cdev[i]->dev.kobj, "group_device");
65 }
66
67}
68
69/*
Peter Oberparleiterc0301752011-01-05 12:48:13 +010070 * Remove references from ccw devices to ccw group device and from
71 * ccw group device to ccw devices.
72 */
73static void __ccwgroup_remove_cdev_refs(struct ccwgroup_device *gdev)
74{
75 struct ccw_device *cdev;
76 int i;
77
78 for (i = 0; i < gdev->count; i++) {
79 cdev = gdev->cdev[i];
80 if (!cdev)
81 continue;
82 spin_lock_irq(cdev->ccwlock);
83 dev_set_drvdata(&cdev->dev, NULL);
84 spin_unlock_irq(cdev->ccwlock);
85 gdev->cdev[i] = NULL;
86 put_device(&cdev->dev);
87 }
88}
89
90/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * Provide an 'ungroup' attribute so the user can remove group devices no
92 * longer needed or accidentially created. Saves memory :)
93 */
Alan Sternd9a9cdf2007-03-15 15:50:34 -040094static void ccwgroup_ungroup_callback(struct device *dev)
95{
96 struct ccwgroup_device *gdev = to_ccwgroupdev(dev);
97
Cornelia Huckd76123e2007-04-27 16:01:37 +020098 mutex_lock(&gdev->reg_mutex);
Cornelia Huck1a908c72008-01-26 14:10:50 +010099 if (device_is_registered(&gdev->dev)) {
100 __ccwgroup_remove_symlinks(gdev);
101 device_unregister(dev);
Peter Oberparleiterc0301752011-01-05 12:48:13 +0100102 __ccwgroup_remove_cdev_refs(gdev);
Cornelia Huck1a908c72008-01-26 14:10:50 +0100103 }
Cornelia Huckd76123e2007-04-27 16:01:37 +0200104 mutex_unlock(&gdev->reg_mutex);
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400105}
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400108ccwgroup_ungroup_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 struct ccwgroup_device *gdev;
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400111 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113 gdev = to_ccwgroupdev(dev);
114
Peter Oberparleiterc619d422008-12-25 13:39:04 +0100115 /* Prevent concurrent online/offline processing and ungrouping. */
116 if (atomic_cmpxchg(&gdev->onoff, 0, 1) != 0)
117 return -EAGAIN;
118 if (gdev->state != CCWGROUP_OFFLINE) {
119 rc = -EINVAL;
120 goto out;
121 }
Alan Sternd9a9cdf2007-03-15 15:50:34 -0400122 /* Note that we cannot unregister the device from one of its
123 * attribute methods, so we have to use this roundabout approach.
124 */
125 rc = device_schedule_callback(dev, ccwgroup_ungroup_callback);
Peter Oberparleiterc619d422008-12-25 13:39:04 +0100126out:
127 if (rc) {
Alex Chiang66942062009-03-13 12:07:36 -0600128 if (rc != -EAGAIN)
129 /* Release onoff "lock" when ungrouping failed. */
130 atomic_set(&gdev->onoff, 0);
Peter Oberparleiterc619d422008-12-25 13:39:04 +0100131 return rc;
132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return count;
134}
135
136static DEVICE_ATTR(ungroup, 0200, NULL, ccwgroup_ungroup_store);
137
138static void
139ccwgroup_release (struct device *dev)
140{
Peter Oberparleiterc0301752011-01-05 12:48:13 +0100141 kfree(to_ccwgroupdev(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
Heiko Carstens4d284ca2007-02-05 21:18:53 +0100144static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145__ccwgroup_create_symlinks(struct ccwgroup_device *gdev)
146{
147 char str[8];
148 int i, rc;
149
150 for (i = 0; i < gdev->count; i++) {
151 rc = sysfs_create_link(&gdev->cdev[i]->dev.kobj, &gdev->dev.kobj,
152 "group_device");
153 if (rc) {
154 for (--i; i >= 0; i--)
155 sysfs_remove_link(&gdev->cdev[i]->dev.kobj,
156 "group_device");
157 return rc;
158 }
159 }
160 for (i = 0; i < gdev->count; i++) {
161 sprintf(str, "cdev%d", i);
162 rc = sysfs_create_link(&gdev->dev.kobj, &gdev->cdev[i]->dev.kobj,
163 str);
164 if (rc) {
165 for (--i; i >= 0; i--) {
166 sprintf(str, "cdev%d", i);
167 sysfs_remove_link(&gdev->dev.kobj, str);
168 }
169 for (i = 0; i < gdev->count; i++)
170 sysfs_remove_link(&gdev->cdev[i]->dev.kobj,
171 "group_device");
172 return rc;
173 }
174 }
175 return 0;
176}
177
Ursula Braun022b6602008-04-24 10:15:20 +0200178static int __get_next_bus_id(const char **buf, char *bus_id)
179{
180 int rc, len;
181 char *start, *end;
182
183 start = (char *)*buf;
184 end = strchr(start, ',');
185 if (!end) {
186 /* Last entry. Strip trailing newline, if applicable. */
187 end = strchr(start, '\n');
188 if (end)
189 *end = '\0';
190 len = strlen(start) + 1;
191 } else {
192 len = end - start + 1;
193 end++;
194 }
Kay Sievers98df67b2008-12-25 13:38:55 +0100195 if (len < CCW_BUS_ID_SIZE) {
Ursula Braun022b6602008-04-24 10:15:20 +0200196 strlcpy(bus_id, start, len);
197 rc = 0;
198 } else
199 rc = -EINVAL;
200 *buf = end;
201 return rc;
202}
203
Kay Sievers98df67b2008-12-25 13:38:55 +0100204static int __is_valid_bus_id(char bus_id[CCW_BUS_ID_SIZE])
Ursula Braun022b6602008-04-24 10:15:20 +0200205{
206 int cssid, ssid, devno;
207
208 /* Must be of form %x.%x.%04x */
209 if (sscanf(bus_id, "%x.%1x.%04x", &cssid, &ssid, &devno) != 3)
210 return 0;
211 return 1;
212}
213
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200214/**
Ursula Braun022b6602008-04-24 10:15:20 +0200215 * ccwgroup_create_from_string() - create and register a ccw group device
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200216 * @root: parent device for the new device
217 * @creator_id: identifier of creating driver
218 * @cdrv: ccw driver of slave devices
Ursula Braun022b6602008-04-24 10:15:20 +0200219 * @num_devices: number of slave devices
220 * @buf: buffer containing comma separated bus ids of slave devices
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200221 *
222 * Create and register a new ccw group device as a child of @root. Slave
Ursula Braun022b6602008-04-24 10:15:20 +0200223 * devices are obtained from the list of bus ids given in @buf and must all
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200224 * belong to @cdrv.
225 * Returns:
226 * %0 on success and an error code on failure.
227 * Context:
228 * non-atomic
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 */
Ursula Braun022b6602008-04-24 10:15:20 +0200230int ccwgroup_create_from_string(struct device *root, unsigned int creator_id,
231 struct ccw_driver *cdrv, int num_devices,
232 const char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct ccwgroup_device *gdev;
Ursula Braun022b6602008-04-24 10:15:20 +0200235 int rc, i;
Kay Sievers98df67b2008-12-25 13:38:55 +0100236 char tmp_bus_id[CCW_BUS_ID_SIZE];
Ursula Braun022b6602008-04-24 10:15:20 +0200237 const char *curr_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Ursula Braun022b6602008-04-24 10:15:20 +0200239 gdev = kzalloc(sizeof(*gdev) + num_devices * sizeof(gdev->cdev[0]),
240 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!gdev)
242 return -ENOMEM;
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 atomic_set(&gdev->onoff, 0);
Cornelia Huckd76123e2007-04-27 16:01:37 +0200245 mutex_init(&gdev->reg_mutex);
246 mutex_lock(&gdev->reg_mutex);
Peter Oberparleiter16f7f952008-08-21 19:46:36 +0200247 gdev->creator_id = creator_id;
248 gdev->count = num_devices;
249 gdev->dev.bus = &ccwgroup_bus_type;
250 gdev->dev.parent = root;
251 gdev->dev.release = ccwgroup_release;
252 device_initialize(&gdev->dev);
253
Ursula Braun022b6602008-04-24 10:15:20 +0200254 curr_buf = buf;
255 for (i = 0; i < num_devices && curr_buf; i++) {
256 rc = __get_next_bus_id(&curr_buf, tmp_bus_id);
257 if (rc != 0)
258 goto error;
259 if (!__is_valid_bus_id(tmp_bus_id)) {
260 rc = -EINVAL;
261 goto error;
262 }
263 gdev->cdev[i] = get_ccwdev_by_busid(cdrv, tmp_bus_id);
264 /*
265 * All devices have to be of the same type in
266 * order to be grouped.
267 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 if (!gdev->cdev[i]
269 || gdev->cdev[i]->id.driver_info !=
270 gdev->cdev[0]->id.driver_info) {
271 rc = -EINVAL;
Cornelia Huckd76123e2007-04-27 16:01:37 +0200272 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274 /* Don't allow a device to belong to more than one group. */
Sebastian Ottc560d102010-05-26 23:27:07 +0200275 spin_lock_irq(gdev->cdev[i]->ccwlock);
Cornelia Huckdb6a6422008-01-26 14:10:46 +0100276 if (dev_get_drvdata(&gdev->cdev[i]->dev)) {
Sebastian Ottc560d102010-05-26 23:27:07 +0200277 spin_unlock_irq(gdev->cdev[i]->ccwlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 rc = -EINVAL;
Cornelia Huckd76123e2007-04-27 16:01:37 +0200279 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 }
Cornelia Huckdb6a6422008-01-26 14:10:46 +0100281 dev_set_drvdata(&gdev->cdev[i]->dev, gdev);
Sebastian Ottc560d102010-05-26 23:27:07 +0200282 spin_unlock_irq(gdev->cdev[i]->ccwlock);
Cornelia Huck17088222006-07-27 14:00:33 +0200283 }
Ursula Braun022b6602008-04-24 10:15:20 +0200284 /* Check for sufficient number of bus ids. */
285 if (i < num_devices && !curr_buf) {
286 rc = -EINVAL;
287 goto error;
288 }
289 /* Check for trailing stuff. */
290 if (i == num_devices && strlen(curr_buf) > 0) {
291 rc = -EINVAL;
292 goto error;
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200295 dev_set_name(&gdev->dev, "%s", dev_name(&gdev->cdev[0]->dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Peter Oberparleiter16f7f952008-08-21 19:46:36 +0200297 rc = device_add(&gdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (rc)
Cornelia Huckd76123e2007-04-27 16:01:37 +0200299 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 get_device(&gdev->dev);
301 rc = device_create_file(&gdev->dev, &dev_attr_ungroup);
302
303 if (rc) {
304 device_unregister(&gdev->dev);
305 goto error;
306 }
307
308 rc = __ccwgroup_create_symlinks(gdev);
309 if (!rc) {
Cornelia Huckd76123e2007-04-27 16:01:37 +0200310 mutex_unlock(&gdev->reg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 put_device(&gdev->dev);
312 return 0;
313 }
314 device_remove_file(&gdev->dev, &dev_attr_ungroup);
315 device_unregister(&gdev->dev);
316error:
Ursula Braun022b6602008-04-24 10:15:20 +0200317 for (i = 0; i < num_devices; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 if (gdev->cdev[i]) {
Sebastian Ottc560d102010-05-26 23:27:07 +0200319 spin_lock_irq(gdev->cdev[i]->ccwlock);
Cornelia Huckdb6a6422008-01-26 14:10:46 +0100320 if (dev_get_drvdata(&gdev->cdev[i]->dev) == gdev)
321 dev_set_drvdata(&gdev->cdev[i]->dev, NULL);
Sebastian Ottc560d102010-05-26 23:27:07 +0200322 spin_unlock_irq(gdev->cdev[i]->ccwlock);
Cornelia Huck17088222006-07-27 14:00:33 +0200323 put_device(&gdev->cdev[i]->dev);
Cornelia Huckf26fd5d2008-09-16 09:32:18 -0700324 gdev->cdev[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Cornelia Huckd76123e2007-04-27 16:01:37 +0200326 mutex_unlock(&gdev->reg_mutex);
327 put_device(&gdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return rc;
329}
Ursula Braun022b6602008-04-24 10:15:20 +0200330EXPORT_SYMBOL(ccwgroup_create_from_string);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Sebastian Otte9090742009-03-26 15:24:15 +0100332static int ccwgroup_notifier(struct notifier_block *nb, unsigned long action,
333 void *data);
334
335static struct notifier_block ccwgroup_nb = {
336 .notifier_call = ccwgroup_notifier
337};
338
339static int __init init_ccwgroup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Sebastian Otte9090742009-03-26 15:24:15 +0100341 int ret;
342
343 ret = bus_register(&ccwgroup_bus_type);
344 if (ret)
345 return ret;
346
347 ret = bus_register_notifier(&ccwgroup_bus_type, &ccwgroup_nb);
348 if (ret)
349 bus_unregister(&ccwgroup_bus_type);
350
351 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353
Sebastian Otte9090742009-03-26 15:24:15 +0100354static void __exit cleanup_ccwgroup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Sebastian Otte9090742009-03-26 15:24:15 +0100356 bus_unregister_notifier(&ccwgroup_bus_type, &ccwgroup_nb);
357 bus_unregister(&ccwgroup_bus_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
360module_init(init_ccwgroup);
361module_exit(cleanup_ccwgroup);
362
363/************************** driver stuff ******************************/
364
365static int
366ccwgroup_set_online(struct ccwgroup_device *gdev)
367{
368 struct ccwgroup_driver *gdrv;
369 int ret;
370
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800371 if (atomic_cmpxchg(&gdev->onoff, 0, 1) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return -EAGAIN;
373 if (gdev->state == CCWGROUP_ONLINE) {
374 ret = 0;
375 goto out;
376 }
377 if (!gdev->dev.driver) {
378 ret = -EINVAL;
379 goto out;
380 }
381 gdrv = to_ccwgroupdrv (gdev->dev.driver);
Cornelia Hucka0016402005-11-07 00:59:05 -0800382 if ((ret = gdrv->set_online ? gdrv->set_online(gdev) : 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto out;
384
385 gdev->state = CCWGROUP_ONLINE;
386 out:
387 atomic_set(&gdev->onoff, 0);
388 return ret;
389}
390
391static int
392ccwgroup_set_offline(struct ccwgroup_device *gdev)
393{
394 struct ccwgroup_driver *gdrv;
395 int ret;
396
Martin Schwidefsky973bd992006-01-06 00:19:07 -0800397 if (atomic_cmpxchg(&gdev->onoff, 0, 1) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return -EAGAIN;
399 if (gdev->state == CCWGROUP_OFFLINE) {
400 ret = 0;
401 goto out;
402 }
403 if (!gdev->dev.driver) {
404 ret = -EINVAL;
405 goto out;
406 }
407 gdrv = to_ccwgroupdrv (gdev->dev.driver);
Cornelia Hucka0016402005-11-07 00:59:05 -0800408 if ((ret = gdrv->set_offline ? gdrv->set_offline(gdev) : 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 goto out;
410
411 gdev->state = CCWGROUP_OFFLINE;
412 out:
413 atomic_set(&gdev->onoff, 0);
414 return ret;
415}
416
417static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400418ccwgroup_online_store (struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 struct ccwgroup_device *gdev;
421 struct ccwgroup_driver *gdrv;
Cornelia Huck2f972202008-04-30 13:38:33 +0200422 unsigned long value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 int ret;
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (!dev->driver)
Sebastian Ott40c9f992009-03-26 15:24:13 +0100426 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Sebastian Ott40c9f992009-03-26 15:24:13 +0100428 gdev = to_ccwgroupdev(dev);
429 gdrv = to_ccwgroupdrv(dev->driver);
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (!try_module_get(gdrv->owner))
432 return -EINVAL;
433
Cornelia Huck2f972202008-04-30 13:38:33 +0200434 ret = strict_strtoul(buf, 0, &value);
435 if (ret)
436 goto out;
Sebastian Ott40c9f992009-03-26 15:24:13 +0100437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (value == 1)
Sebastian Ott40c9f992009-03-26 15:24:13 +0100439 ret = ccwgroup_set_online(gdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 else if (value == 0)
Sebastian Ott40c9f992009-03-26 15:24:13 +0100441 ret = ccwgroup_set_offline(gdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 else
443 ret = -EINVAL;
Cornelia Huck2f972202008-04-30 13:38:33 +0200444out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 module_put(gdrv->owner);
Sebastian Ott40c9f992009-03-26 15:24:13 +0100446 return (ret == 0) ? count : ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449static ssize_t
Yani Ioannou3fd3c0a2005-05-17 06:43:27 -0400450ccwgroup_online_show (struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 int online;
453
454 online = (to_ccwgroupdev(dev)->state == CCWGROUP_ONLINE);
455
456 return sprintf(buf, online ? "1\n" : "0\n");
457}
458
459static DEVICE_ATTR(online, 0644, ccwgroup_online_show, ccwgroup_online_store);
460
461static int
462ccwgroup_probe (struct device *dev)
463{
464 struct ccwgroup_device *gdev;
465 struct ccwgroup_driver *gdrv;
466
467 int ret;
468
469 gdev = to_ccwgroupdev(dev);
470 gdrv = to_ccwgroupdrv(dev->driver);
471
472 if ((ret = device_create_file(dev, &dev_attr_online)))
473 return ret;
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 ret = gdrv->probe ? gdrv->probe(gdev) : -ENODEV;
476 if (ret)
477 device_remove_file(dev, &dev_attr_online);
478
479 return ret;
480}
481
482static int
483ccwgroup_remove (struct device *dev)
484{
485 struct ccwgroup_device *gdev;
486 struct ccwgroup_driver *gdrv;
487
Sebastian Ott50f15482009-03-26 15:24:14 +0100488 device_remove_file(dev, &dev_attr_online);
Sebastian Otte9090742009-03-26 15:24:15 +0100489 device_remove_file(dev, &dev_attr_ungroup);
Sebastian Ott50f15482009-03-26 15:24:14 +0100490
491 if (!dev->driver)
492 return 0;
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 gdev = to_ccwgroupdev(dev);
495 gdrv = to_ccwgroupdrv(dev->driver);
496
Sebastian Ott50f15482009-03-26 15:24:14 +0100497 if (gdrv->remove)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 gdrv->remove(gdev);
Sebastian Ott50f15482009-03-26 15:24:14 +0100499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return 0;
501}
502
Cornelia Huck01bc8ad2008-02-05 16:50:36 +0100503static void ccwgroup_shutdown(struct device *dev)
504{
505 struct ccwgroup_device *gdev;
506 struct ccwgroup_driver *gdrv;
507
Sebastian Ott50f15482009-03-26 15:24:14 +0100508 if (!dev->driver)
509 return;
510
Cornelia Huck01bc8ad2008-02-05 16:50:36 +0100511 gdev = to_ccwgroupdev(dev);
512 gdrv = to_ccwgroupdrv(dev->driver);
Sebastian Ott50f15482009-03-26 15:24:14 +0100513
514 if (gdrv->shutdown)
Cornelia Huck01bc8ad2008-02-05 16:50:36 +0100515 gdrv->shutdown(gdev);
516}
517
Sebastian Ott7e597a22009-06-16 10:30:21 +0200518static int ccwgroup_pm_prepare(struct device *dev)
519{
520 struct ccwgroup_device *gdev = to_ccwgroupdev(dev);
521 struct ccwgroup_driver *gdrv = to_ccwgroupdrv(gdev->dev.driver);
522
523 /* Fail while device is being set online/offline. */
524 if (atomic_read(&gdev->onoff))
525 return -EAGAIN;
526
527 if (!gdev->dev.driver || gdev->state != CCWGROUP_ONLINE)
528 return 0;
529
530 return gdrv->prepare ? gdrv->prepare(gdev) : 0;
531}
532
533static void ccwgroup_pm_complete(struct device *dev)
534{
535 struct ccwgroup_device *gdev = to_ccwgroupdev(dev);
536 struct ccwgroup_driver *gdrv = to_ccwgroupdrv(dev->driver);
537
538 if (!gdev->dev.driver || gdev->state != CCWGROUP_ONLINE)
539 return;
540
541 if (gdrv->complete)
542 gdrv->complete(gdev);
543}
544
545static int ccwgroup_pm_freeze(struct device *dev)
546{
547 struct ccwgroup_device *gdev = to_ccwgroupdev(dev);
548 struct ccwgroup_driver *gdrv = to_ccwgroupdrv(gdev->dev.driver);
549
550 if (!gdev->dev.driver || gdev->state != CCWGROUP_ONLINE)
551 return 0;
552
553 return gdrv->freeze ? gdrv->freeze(gdev) : 0;
554}
555
556static int ccwgroup_pm_thaw(struct device *dev)
557{
558 struct ccwgroup_device *gdev = to_ccwgroupdev(dev);
559 struct ccwgroup_driver *gdrv = to_ccwgroupdrv(gdev->dev.driver);
560
561 if (!gdev->dev.driver || gdev->state != CCWGROUP_ONLINE)
562 return 0;
563
564 return gdrv->thaw ? gdrv->thaw(gdev) : 0;
565}
566
567static int ccwgroup_pm_restore(struct device *dev)
568{
569 struct ccwgroup_device *gdev = to_ccwgroupdev(dev);
570 struct ccwgroup_driver *gdrv = to_ccwgroupdrv(gdev->dev.driver);
571
572 if (!gdev->dev.driver || gdev->state != CCWGROUP_ONLINE)
573 return 0;
574
575 return gdrv->restore ? gdrv->restore(gdev) : 0;
576}
577
Alexey Dobriyan47145212009-12-14 18:00:08 -0800578static const struct dev_pm_ops ccwgroup_pm_ops = {
Sebastian Ott7e597a22009-06-16 10:30:21 +0200579 .prepare = ccwgroup_pm_prepare,
580 .complete = ccwgroup_pm_complete,
581 .freeze = ccwgroup_pm_freeze,
582 .thaw = ccwgroup_pm_thaw,
583 .restore = ccwgroup_pm_restore,
584};
585
Russell Kingf9ccf452006-01-05 14:42:09 +0000586static struct bus_type ccwgroup_bus_type = {
587 .name = "ccwgroup",
588 .match = ccwgroup_bus_match,
589 .uevent = ccwgroup_uevent,
590 .probe = ccwgroup_probe,
591 .remove = ccwgroup_remove,
Cornelia Huck01bc8ad2008-02-05 16:50:36 +0100592 .shutdown = ccwgroup_shutdown,
Sebastian Ott7e597a22009-06-16 10:30:21 +0200593 .pm = &ccwgroup_pm_ops,
Russell Kingf9ccf452006-01-05 14:42:09 +0000594};
595
Sebastian Otte9090742009-03-26 15:24:15 +0100596
597static int ccwgroup_notifier(struct notifier_block *nb, unsigned long action,
598 void *data)
599{
600 struct device *dev = data;
601
602 if (action == BUS_NOTIFY_UNBIND_DRIVER)
603 device_schedule_callback(dev, ccwgroup_ungroup_callback);
604
605 return NOTIFY_OK;
606}
607
608
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200609/**
610 * ccwgroup_driver_register() - register a ccw group driver
611 * @cdriver: driver to be registered
612 *
613 * This function is mainly a wrapper around driver_register().
614 */
615int ccwgroup_driver_register(struct ccwgroup_driver *cdriver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
617 /* register our new driver with the core */
Heiko Carstens292888c2006-08-30 14:33:35 +0200618 cdriver->driver.bus = &ccwgroup_bus_type;
619 cdriver->driver.name = cdriver->name;
Cornelia Huck4beee642008-01-26 14:10:47 +0100620 cdriver->driver.owner = cdriver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 return driver_register(&cdriver->driver);
623}
624
Cornelia Huckb0744bd2005-06-25 14:55:27 -0700625static int
Cornelia Huck887ab592006-06-29 14:56:52 +0200626__ccwgroup_match_all(struct device *dev, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Cornelia Huck887ab592006-06-29 14:56:52 +0200628 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200631/**
632 * ccwgroup_driver_unregister() - deregister a ccw group driver
633 * @cdriver: driver to be deregistered
634 *
635 * This function is mainly a wrapper around driver_unregister().
636 */
637void ccwgroup_driver_unregister(struct ccwgroup_driver *cdriver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Cornelia Huck887ab592006-06-29 14:56:52 +0200639 struct device *dev;
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /* We don't want ccwgroup devices to live longer than their driver. */
642 get_driver(&cdriver->driver);
Cornelia Huck887ab592006-06-29 14:56:52 +0200643 while ((dev = driver_find_device(&cdriver->driver, NULL, NULL,
644 __ccwgroup_match_all))) {
Cornelia Huckd76123e2007-04-27 16:01:37 +0200645 struct ccwgroup_device *gdev = to_ccwgroupdev(dev);
646
647 mutex_lock(&gdev->reg_mutex);
648 __ccwgroup_remove_symlinks(gdev);
Cornelia Huck887ab592006-06-29 14:56:52 +0200649 device_unregister(dev);
Peter Oberparleiterc0301752011-01-05 12:48:13 +0100650 __ccwgroup_remove_cdev_refs(gdev);
Cornelia Huckd76123e2007-04-27 16:01:37 +0200651 mutex_unlock(&gdev->reg_mutex);
Cornelia Huck887ab592006-06-29 14:56:52 +0200652 put_device(dev);
653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 put_driver(&cdriver->driver);
655 driver_unregister(&cdriver->driver);
656}
657
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200658/**
659 * ccwgroup_probe_ccwdev() - probe function for slave devices
660 * @cdev: ccw device to be probed
661 *
662 * This is a dummy probe function for ccw devices that are slave devices in
663 * a ccw group device.
664 * Returns:
665 * always %0
666 */
667int ccwgroup_probe_ccwdev(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 return 0;
670}
671
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200672/**
673 * ccwgroup_remove_ccwdev() - remove function for slave devices
674 * @cdev: ccw device to be removed
675 *
676 * This is a remove function for ccw devices that are slave devices in a ccw
677 * group device. It sets the ccw device offline and also deregisters the
678 * embedding ccw group device.
679 */
680void ccwgroup_remove_ccwdev(struct ccw_device *cdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 struct ccwgroup_device *gdev;
683
684 /* Ignore offlining errors, device is gone anyway. */
685 ccw_device_set_offline(cdev);
686 /* If one of its devices is gone, the whole group is done for. */
Peter Oberparleiterc0301752011-01-05 12:48:13 +0100687 spin_lock_irq(cdev->ccwlock);
688 gdev = dev_get_drvdata(&cdev->dev);
689 if (!gdev) {
690 spin_unlock_irq(cdev->ccwlock);
691 return;
692 }
693 /* Get ccwgroup device reference for local processing. */
694 get_device(&gdev->dev);
695 spin_unlock_irq(cdev->ccwlock);
696 /* Unregister group device. */
697 mutex_lock(&gdev->reg_mutex);
698 if (device_is_registered(&gdev->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 __ccwgroup_remove_symlinks(gdev);
700 device_unregister(&gdev->dev);
Peter Oberparleiterc0301752011-01-05 12:48:13 +0100701 __ccwgroup_remove_cdev_refs(gdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Peter Oberparleiterc0301752011-01-05 12:48:13 +0100703 mutex_unlock(&gdev->reg_mutex);
704 /* Release ccwgroup device reference for local processing. */
705 put_device(&gdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
708MODULE_LICENSE("GPL");
709EXPORT_SYMBOL(ccwgroup_driver_register);
710EXPORT_SYMBOL(ccwgroup_driver_unregister);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711EXPORT_SYMBOL(ccwgroup_probe_ccwdev);
712EXPORT_SYMBOL(ccwgroup_remove_ccwdev);