Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef S390_CCWGROUP_H |
| 2 | #define S390_CCWGROUP_H |
| 3 | |
| 4 | struct ccw_device; |
| 5 | struct ccw_driver; |
| 6 | |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 7 | /** |
| 8 | * struct ccwgroup_device - ccw group device |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 9 | * @state: online/offline state |
| 10 | * @count: number of attached slave devices |
| 11 | * @dev: embedded device structure |
| 12 | * @cdev: variable number of slave devices, allocated as needed |
| 13 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | struct ccwgroup_device { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | enum { |
| 16 | CCWGROUP_OFFLINE, |
| 17 | CCWGROUP_ONLINE, |
| 18 | } state; |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 19 | /* private: */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | atomic_t onoff; |
Cornelia Huck | d76123e | 2007-04-27 16:01:37 +0200 | [diff] [blame] | 21 | struct mutex reg_mutex; |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 22 | /* public: */ |
| 23 | unsigned int count; |
| 24 | struct device dev; |
| 25 | struct ccw_device *cdev[0]; |
Tejun Heo | 0b60f9e | 2014-02-03 14:03:04 -0500 | [diff] [blame] | 26 | struct work_struct ungroup_work; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | }; |
| 28 | |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 29 | /** |
| 30 | * struct ccwgroup_driver - driver for ccw group devices |
Sebastian Ott | f2962da | 2012-05-15 17:49:12 +0200 | [diff] [blame] | 31 | * @setup: function called during device creation to setup the device |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 32 | * @remove: function called on remove |
| 33 | * @set_online: function called when device is set online |
| 34 | * @set_offline: function called when device is set offline |
Cornelia Huck | 01bc8ad | 2008-02-05 16:50:36 +0100 | [diff] [blame] | 35 | * @shutdown: function called when device is shut down |
Sebastian Ott | 7e597a2 | 2009-06-16 10:30:21 +0200 | [diff] [blame] | 36 | * @prepare: prepare for pm state transition |
| 37 | * @complete: undo work done in @prepare |
| 38 | * @freeze: callback for freezing during hibernation snapshotting |
| 39 | * @thaw: undo work done in @freeze |
| 40 | * @restore: callback for restoring after hibernation |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 41 | * @driver: embedded driver structure |
| 42 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | struct ccwgroup_driver { |
Sebastian Ott | f2962da | 2012-05-15 17:49:12 +0200 | [diff] [blame] | 44 | int (*setup) (struct ccwgroup_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | void (*remove) (struct ccwgroup_device *); |
| 46 | int (*set_online) (struct ccwgroup_device *); |
| 47 | int (*set_offline) (struct ccwgroup_device *); |
Cornelia Huck | 01bc8ad | 2008-02-05 16:50:36 +0100 | [diff] [blame] | 48 | void (*shutdown)(struct ccwgroup_device *); |
Sebastian Ott | 7e597a2 | 2009-06-16 10:30:21 +0200 | [diff] [blame] | 49 | int (*prepare) (struct ccwgroup_device *); |
| 50 | void (*complete) (struct ccwgroup_device *); |
| 51 | int (*freeze)(struct ccwgroup_device *); |
| 52 | int (*thaw) (struct ccwgroup_device *); |
| 53 | int (*restore)(struct ccwgroup_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Cornelia Huck | b2ffd8e | 2007-10-12 16:11:17 +0200 | [diff] [blame] | 55 | struct device_driver driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | extern int ccwgroup_driver_register (struct ccwgroup_driver *cdriver); |
| 59 | extern void ccwgroup_driver_unregister (struct ccwgroup_driver *cdriver); |
Sebastian Ott | 9814fdf | 2012-05-15 18:03:46 +0200 | [diff] [blame] | 60 | int ccwgroup_create_dev(struct device *root, struct ccwgroup_driver *gdrv, |
| 61 | int num_devices, const char *buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
Sebastian Ott | 683c3dc | 2012-11-22 15:56:39 +0100 | [diff] [blame] | 63 | extern int ccwgroup_set_online(struct ccwgroup_device *gdev); |
| 64 | extern int ccwgroup_set_offline(struct ccwgroup_device *gdev); |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | extern int ccwgroup_probe_ccwdev(struct ccw_device *cdev); |
| 67 | extern void ccwgroup_remove_ccwdev(struct ccw_device *cdev); |
| 68 | |
| 69 | #define to_ccwgroupdev(x) container_of((x), struct ccwgroup_device, dev) |
| 70 | #define to_ccwgroupdrv(x) container_of((x), struct ccwgroup_driver, driver) |
| 71 | #endif |