ccwgroup.h 2.0 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 38 39
/**
 * struct ccwgroup_driver - driver for ccw group devices
 * @owner: driver owner
 * @name: driver name
 * @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
40
 * @shutdown: function called when device is shut down
C
Cornelia Huck 已提交
41 42
 * @driver: embedded driver structure
 */
L
Linus Torvalds 已提交
43 44 45 46 47 48 49 50 51 52
struct ccwgroup_driver {
	struct module *owner;
	char *name;
	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 *);
53
	void (*shutdown)(struct ccwgroup_device *);
L
Linus Torvalds 已提交
54

C
Cornelia Huck 已提交
55
	struct device_driver driver;
L
Linus Torvalds 已提交
56 57 58 59
};

extern int  ccwgroup_driver_register   (struct ccwgroup_driver *cdriver);
extern void ccwgroup_driver_unregister (struct ccwgroup_driver *cdriver);
60 61 62
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 已提交
63 64 65 66 67 68 69

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