blob: 8e961aa4b39484e3e108b22f3b9d0c910185dd24 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * include/asm-s390/ccwdev.h
3 * include/asm-s390x/ccwdev.h
4 *
5 * Copyright (C) 2002 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Arnd Bergmann <arndb@de.ibm.com>
7 *
8 * Interface for CCW device drivers
9 */
10#ifndef _S390_CCWDEV_H_
11#define _S390_CCWDEV_H_
12
13#include <linux/device.h>
14#include <linux/mod_devicetable.h>
15
16/* structs from asm/cio.h */
17struct irb;
18struct ccw1;
Cornelia Huck9a92fe42007-05-10 15:45:42 +020019struct ccw_dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/* simplified initializers for struct ccw_device:
22 * CCW_DEVICE and CCW_DEVICE_DEVTYPE initialize one
23 * entry in your MODULE_DEVICE_TABLE and set the match_flag correctly */
24#define CCW_DEVICE(cu, cum) \
25 .cu_type=(cu), .cu_model=(cum), \
26 .match_flags=(CCW_DEVICE_ID_MATCH_CU_TYPE \
27 | (cum ? CCW_DEVICE_ID_MATCH_CU_MODEL : 0))
28
29#define CCW_DEVICE_DEVTYPE(cu, cum, dev, devm) \
30 .cu_type=(cu), .cu_model=(cum), .dev_type=(dev), .dev_model=(devm),\
31 .match_flags=CCW_DEVICE_ID_MATCH_CU_TYPE \
32 | ((cum) ? CCW_DEVICE_ID_MATCH_CU_MODEL : 0) \
33 | CCW_DEVICE_ID_MATCH_DEVICE_TYPE \
34 | ((devm) ? CCW_DEVICE_ID_MATCH_DEVICE_MODEL : 0)
35
36/* scan through an array of device ids and return the first
37 * entry that matches the device.
38 *
39 * the array must end with an entry containing zero match_flags
40 */
41static inline const struct ccw_device_id *
42ccw_device_id_match(const struct ccw_device_id *array,
43 const struct ccw_device_id *match)
44{
45 const struct ccw_device_id *id = array;
46
47 for (id = array; id->match_flags; id++) {
48 if ((id->match_flags & CCW_DEVICE_ID_MATCH_CU_TYPE)
49 && (id->cu_type != match->cu_type))
50 continue;
51
52 if ((id->match_flags & CCW_DEVICE_ID_MATCH_CU_MODEL)
53 && (id->cu_model != match->cu_model))
54 continue;
55
56 if ((id->match_flags & CCW_DEVICE_ID_MATCH_DEVICE_TYPE)
57 && (id->dev_type != match->dev_type))
58 continue;
59
60 if ((id->match_flags & CCW_DEVICE_ID_MATCH_DEVICE_MODEL)
61 && (id->dev_model != match->dev_model))
62 continue;
63
64 return id;
65 }
66
Heiko Carstensd2c993d2006-07-12 16:41:55 +020067 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020070/**
71 * struct ccw_device - channel attached device
72 * @ccwlock: pointer to device lock
73 * @id: id of this device
74 * @drv: ccw driver for this device
75 * @dev: embedded device structure
76 * @online: online status of device
77 * @handler: interrupt handler
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020079 * @handler is a member of the device rather than the driver since a driver
80 * can have different interrupt handlers for different ccw devices
81 * (multi-subchannel drivers).
82 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083struct ccw_device {
84 spinlock_t *ccwlock;
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020085/* private: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 struct ccw_device_private *private; /* cio private information */
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020087/* public: */
88 struct ccw_device_id id;
89 struct ccw_driver *drv;
90 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 void (*handler) (struct ccw_device *, unsigned long, struct irb *);
93};
94
95
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020096/**
97 * struct ccw driver - device driver for channel attached devices
98 * @owner: owning module
99 * @ids: ids supported by this driver
100 * @probe: function called on probe
101 * @remove: function called on remove
102 * @set_online: called when setting device online
103 * @set_offline: called when setting device offline
104 * @notify: notify driver of device state changes
105 * @driver: embedded device driver structure
106 * @name: device driver name
107 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108struct ccw_driver {
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200109 struct module *owner;
110 struct ccw_device_id *ids;
111 int (*probe) (struct ccw_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 void (*remove) (struct ccw_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 int (*set_online) (struct ccw_device *);
114 int (*set_offline) (struct ccw_device *);
115 int (*notify) (struct ccw_device *, int);
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200116 struct device_driver driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 char *name;
118};
119
120extern struct ccw_device *get_ccwdev_by_busid(struct ccw_driver *cdrv,
121 const char *bus_id);
122
123/* devices drivers call these during module load and unload.
124 * When a driver is registered, its probe method is called
125 * when new devices for its type pop up */
126extern int ccw_driver_register (struct ccw_driver *driver);
127extern void ccw_driver_unregister (struct ccw_driver *driver);
128
129struct ccw1;
130
Cornelia Huck4dd3cc52007-02-12 15:47:18 +0100131extern int ccw_device_set_options_mask(struct ccw_device *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132extern int ccw_device_set_options(struct ccw_device *, unsigned long);
Cornelia Huck4dd3cc52007-02-12 15:47:18 +0100133extern void ccw_device_clear_options(struct ccw_device *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135/* Allow for i/o completion notification after primary interrupt status. */
136#define CCWDEV_EARLY_NOTIFICATION 0x0001
137/* Report all interrupt conditions. */
138#define CCWDEV_REPORT_ALL 0x0002
139/* Try to perform path grouping. */
140#define CCWDEV_DO_PATHGROUP 0x0004
141/* Allow forced onlining of boxed devices. */
142#define CCWDEV_ALLOW_FORCE 0x0008
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144extern int ccw_device_start(struct ccw_device *, struct ccw1 *,
145 unsigned long, __u8, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146extern int ccw_device_start_timeout(struct ccw_device *, struct ccw1 *,
147 unsigned long, __u8, unsigned long, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148extern int ccw_device_start_key(struct ccw_device *, struct ccw1 *,
149 unsigned long, __u8, __u8, unsigned long);
150extern int ccw_device_start_timeout_key(struct ccw_device *, struct ccw1 *,
151 unsigned long, __u8, __u8,
152 unsigned long, int);
153
154
155extern int ccw_device_resume(struct ccw_device *);
156extern int ccw_device_halt(struct ccw_device *, unsigned long);
157extern int ccw_device_clear(struct ccw_device *, unsigned long);
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159extern int ccw_device_set_online(struct ccw_device *cdev);
160extern int ccw_device_set_offline(struct ccw_device *cdev);
161
162
163extern struct ciw *ccw_device_get_ciw(struct ccw_device *, __u32 cmd);
164extern __u8 ccw_device_get_path_mask(struct ccw_device *);
Cornelia Huck9a92fe42007-05-10 15:45:42 +0200165extern void ccw_device_get_id(struct ccw_device *, struct ccw_dev_id *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167#define get_ccwdev_lock(x) (x)->ccwlock
168
169#define to_ccwdev(n) container_of(n, struct ccw_device, dev)
170#define to_ccwdrv(n) container_of(n, struct ccw_driver, driver)
171
172extern struct ccw_device *ccw_device_probe_console(void);
173
174// FIXME: these have to go
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175extern int _ccw_device_get_subchannel_number(struct ccw_device *);
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177extern void *ccw_device_get_chp_desc(struct ccw_device *, int);
178#endif /* _S390_CCWDEV_H_ */