ccwgroup.h 2.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6
#ifndef S390_CCWGROUP_H
#define S390_CCWGROUP_H

struct ccw_device;
struct ccw_driver;

C
Cornelia Huck 已提交
7 8 9 10 11 12 13 14
/**
 * struct ccwgroup_device - ccw group device
 * @creator_id: unique number of the driver
 * @state: online/offline state
 * @count: number of attached slave devices
 * @dev: embedded device structure
 * @cdev: variable number of slave devices, allocated as needed
 */
L
Linus Torvalds 已提交
15
struct ccwgroup_device {
C
Cornelia Huck 已提交
16
	unsigned long creator_id;
L
Linus Torvalds 已提交
17 18 19 20
	enum {
		CCWGROUP_OFFLINE,
		CCWGROUP_ONLINE,
	} state;
C
Cornelia Huck 已提交
21
/* private: */
L
Linus Torvalds 已提交
22
	atomic_t onoff;
23
	struct mutex reg_mutex;
C
Cornelia Huck 已提交
24 25 26 27
/* public: */
	unsigned int count;
	struct device	dev;
	struct ccw_device *cdev[0];
L
Linus Torvalds 已提交
28 29
};

C
Cornelia Huck 已提交
30 31 32 33 34 35 36 37
/**
 * struct ccwgroup_driver - driver for ccw group devices
 * @max_slaves: maximum number of slave devices
 * @driver_id: unique id
 * @probe: function called on probe
 * @remove: function called on remove
 * @set_online: function called when device is set online
 * @set_offline: function called when device is set offline
38
 * @shutdown: function called when device is shut down
39 40 41 42 43
 * @prepare: prepare for pm state transition
 * @complete: undo work done in @prepare
 * @freeze: callback for freezing during hibernation snapshotting
 * @thaw: undo work done in @freeze
 * @restore: callback for restoring after hibernation
C
Cornelia Huck 已提交
44 45
 * @driver: embedded driver structure
 */
L
Linus Torvalds 已提交
46 47 48 49 50 51 52 53
struct ccwgroup_driver {
	int max_slaves;
	unsigned long driver_id;

	int (*probe) (struct ccwgroup_device *);
	void (*remove) (struct ccwgroup_device *);
	int (*set_online) (struct ccwgroup_device *);
	int (*set_offline) (struct ccwgroup_device *);
54
	void (*shutdown)(struct ccwgroup_device *);
55 56 57 58 59
	int (*prepare) (struct ccwgroup_device *);
	void (*complete) (struct ccwgroup_device *);
	int (*freeze)(struct ccwgroup_device *);
	int (*thaw) (struct ccwgroup_device *);
	int (*restore)(struct ccwgroup_device *);
L
Linus Torvalds 已提交
60

C
Cornelia Huck 已提交
61
	struct device_driver driver;
L
Linus Torvalds 已提交
62 63 64 65
};

extern int  ccwgroup_driver_register   (struct ccwgroup_driver *cdriver);
extern void ccwgroup_driver_unregister (struct ccwgroup_driver *cdriver);
66 67 68
int ccwgroup_create_from_string(struct device *root, unsigned int creator_id,
				struct ccw_driver *cdrv, int num_devices,
				const char *buf);
L
Linus Torvalds 已提交
69 70 71 72 73 74 75

extern int ccwgroup_probe_ccwdev(struct ccw_device *cdev);
extern void ccwgroup_remove_ccwdev(struct ccw_device *cdev);

#define to_ccwgroupdev(x) container_of((x), struct ccwgroup_device, dev)
#define to_ccwgroupdrv(x) container_of((x), struct ccwgroup_driver, driver)
#endif