blob: 9ad79f7f1accc57d8a96c90b3bde52eecad2d844 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02002 * Copyright IBM Corp. 2002, 2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Sebastian Ott823d4942009-06-16 10:30:20 +02004 * Author(s): Arnd Bergmann <arndb@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Sebastian Ott823d4942009-06-16 10:30:20 +02006 * Interface for CCW device drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8#ifndef _S390_CCWDEV_H_
9#define _S390_CCWDEV_H_
10
11#include <linux/device.h>
12#include <linux/mod_devicetable.h>
Peter Oberparleiter83262d62008-07-14 09:58:51 +020013#include <asm/fcx.h>
Peter Oberparleiterde400d62011-10-30 15:16:04 +010014#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
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
Cornelia Huck9368dac2012-05-30 16:03:22 +020021/* from asm/schid.h */
22struct subchannel_id;
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024/* simplified initializers for struct ccw_device:
25 * CCW_DEVICE and CCW_DEVICE_DEVTYPE initialize one
26 * entry in your MODULE_DEVICE_TABLE and set the match_flag correctly */
27#define CCW_DEVICE(cu, cum) \
28 .cu_type=(cu), .cu_model=(cum), \
29 .match_flags=(CCW_DEVICE_ID_MATCH_CU_TYPE \
30 | (cum ? CCW_DEVICE_ID_MATCH_CU_MODEL : 0))
31
32#define CCW_DEVICE_DEVTYPE(cu, cum, dev, devm) \
33 .cu_type=(cu), .cu_model=(cum), .dev_type=(dev), .dev_model=(devm),\
34 .match_flags=CCW_DEVICE_ID_MATCH_CU_TYPE \
35 | ((cum) ? CCW_DEVICE_ID_MATCH_CU_MODEL : 0) \
36 | CCW_DEVICE_ID_MATCH_DEVICE_TYPE \
37 | ((devm) ? CCW_DEVICE_ID_MATCH_DEVICE_MODEL : 0)
38
39/* scan through an array of device ids and return the first
40 * entry that matches the device.
41 *
42 * the array must end with an entry containing zero match_flags
43 */
44static inline const struct ccw_device_id *
45ccw_device_id_match(const struct ccw_device_id *array,
46 const struct ccw_device_id *match)
47{
48 const struct ccw_device_id *id = array;
49
50 for (id = array; id->match_flags; id++) {
51 if ((id->match_flags & CCW_DEVICE_ID_MATCH_CU_TYPE)
52 && (id->cu_type != match->cu_type))
53 continue;
54
55 if ((id->match_flags & CCW_DEVICE_ID_MATCH_CU_MODEL)
56 && (id->cu_model != match->cu_model))
57 continue;
58
59 if ((id->match_flags & CCW_DEVICE_ID_MATCH_DEVICE_TYPE)
60 && (id->dev_type != match->dev_type))
61 continue;
62
63 if ((id->match_flags & CCW_DEVICE_ID_MATCH_DEVICE_MODEL)
64 && (id->dev_model != match->dev_model))
65 continue;
66
67 return id;
68 }
69
Heiko Carstensd2c993d2006-07-12 16:41:55 +020070 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020073/**
74 * struct ccw_device - channel attached device
75 * @ccwlock: pointer to device lock
76 * @id: id of this device
77 * @drv: ccw driver for this device
78 * @dev: embedded device structure
79 * @online: online status of device
80 * @handler: interrupt handler
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 *
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020082 * @handler is a member of the device rather than the driver since a driver
83 * can have different interrupt handlers for different ccw devices
84 * (multi-subchannel drivers).
85 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086struct ccw_device {
87 spinlock_t *ccwlock;
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020088/* private: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 struct ccw_device_private *private; /* cio private information */
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020090/* public: */
91 struct ccw_device_id id;
92 struct ccw_driver *drv;
93 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 void (*handler) (struct ccw_device *, unsigned long, struct irb *);
96};
97
Michael Ernst094f2102010-05-26 23:27:08 +020098/*
Sebastian Ott585b9542010-10-25 16:10:34 +020099 * Possible events used by the path_event notifier.
100 */
101#define PE_NONE 0x0
102#define PE_PATH_GONE 0x1 /* A path is no longer available. */
103#define PE_PATH_AVAILABLE 0x2 /* A path has become available and
104 was successfully verified. */
105#define PE_PATHGROUP_ESTABLISHED 0x4 /* A pathgroup was reset and had
106 to be established again. */
107
108/*
Michael Ernst094f2102010-05-26 23:27:08 +0200109 * Possible CIO actions triggered by the unit check handler.
110 */
111enum uc_todo {
112 UC_TODO_RETRY,
113 UC_TODO_RETRY_ON_NEW_PATH,
114 UC_TODO_STOP
115};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200117/**
118 * struct ccw driver - device driver for channel attached devices
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200119 * @ids: ids supported by this driver
120 * @probe: function called on probe
121 * @remove: function called on remove
122 * @set_online: called when setting device online
123 * @set_offline: called when setting device offline
124 * @notify: notify driver of device state changes
Sebastian Ott585b9542010-10-25 16:10:34 +0200125 * @path_event: notify driver of channel path events
Cornelia Huck958974fb2007-10-12 16:11:21 +0200126 * @shutdown: called at device shutdown
Sebastian Ott823d4942009-06-16 10:30:20 +0200127 * @prepare: prepare for pm state transition
128 * @complete: undo work done in @prepare
129 * @freeze: callback for freezing during hibernation snapshotting
130 * @thaw: undo work done in @freeze
131 * @restore: callback for restoring after hibernation
Michael Ernst094f2102010-05-26 23:27:08 +0200132 * @uc_handler: callback for unit check handler
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200133 * @driver: embedded device driver structure
Peter Oberparleiterde400d62011-10-30 15:16:04 +0100134 * @int_class: interruption class to use for accounting interrupts
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136struct ccw_driver {
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200137 struct ccw_device_id *ids;
138 int (*probe) (struct ccw_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 void (*remove) (struct ccw_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int (*set_online) (struct ccw_device *);
141 int (*set_offline) (struct ccw_device *);
142 int (*notify) (struct ccw_device *, int);
Sebastian Ott585b9542010-10-25 16:10:34 +0200143 void (*path_event) (struct ccw_device *, int *);
Cornelia Huck958974fb2007-10-12 16:11:21 +0200144 void (*shutdown) (struct ccw_device *);
Sebastian Ott823d4942009-06-16 10:30:20 +0200145 int (*prepare) (struct ccw_device *);
146 void (*complete) (struct ccw_device *);
147 int (*freeze)(struct ccw_device *);
148 int (*thaw) (struct ccw_device *);
149 int (*restore)(struct ccw_device *);
Michael Ernst094f2102010-05-26 23:27:08 +0200150 enum uc_todo (*uc_handler) (struct ccw_device *, struct irb *);
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200151 struct device_driver driver;
Peter Oberparleiterde400d62011-10-30 15:16:04 +0100152 enum interruption_class int_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153};
154
155extern struct ccw_device *get_ccwdev_by_busid(struct ccw_driver *cdrv,
156 const char *bus_id);
157
158/* devices drivers call these during module load and unload.
159 * When a driver is registered, its probe method is called
160 * when new devices for its type pop up */
161extern int ccw_driver_register (struct ccw_driver *driver);
162extern void ccw_driver_unregister (struct ccw_driver *driver);
163
164struct ccw1;
165
Cornelia Huck4dd3cc52007-02-12 15:47:18 +0100166extern int ccw_device_set_options_mask(struct ccw_device *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167extern int ccw_device_set_options(struct ccw_device *, unsigned long);
Cornelia Huck4dd3cc52007-02-12 15:47:18 +0100168extern void ccw_device_clear_options(struct ccw_device *, unsigned long);
Peter Oberparleiter454e1fa2009-12-07 12:51:30 +0100169int ccw_device_is_pathgroup(struct ccw_device *cdev);
170int ccw_device_is_multipath(struct ccw_device *cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
172/* Allow for i/o completion notification after primary interrupt status. */
173#define CCWDEV_EARLY_NOTIFICATION 0x0001
174/* Report all interrupt conditions. */
175#define CCWDEV_REPORT_ALL 0x0002
176/* Try to perform path grouping. */
177#define CCWDEV_DO_PATHGROUP 0x0004
178/* Allow forced onlining of boxed devices. */
179#define CCWDEV_ALLOW_FORCE 0x0008
Peter Oberparleiter454e1fa2009-12-07 12:51:30 +0100180/* Try to use multipath mode. */
181#define CCWDEV_DO_MULTIPATH 0x0010
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183extern int ccw_device_start(struct ccw_device *, struct ccw1 *,
184 unsigned long, __u8, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185extern int ccw_device_start_timeout(struct ccw_device *, struct ccw1 *,
186 unsigned long, __u8, unsigned long, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187extern int ccw_device_start_key(struct ccw_device *, struct ccw1 *,
188 unsigned long, __u8, __u8, unsigned long);
189extern int ccw_device_start_timeout_key(struct ccw_device *, struct ccw1 *,
190 unsigned long, __u8, __u8,
191 unsigned long, int);
192
193
194extern int ccw_device_resume(struct ccw_device *);
195extern int ccw_device_halt(struct ccw_device *, unsigned long);
196extern int ccw_device_clear(struct ccw_device *, unsigned long);
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200197int ccw_device_tm_start_key(struct ccw_device *cdev, struct tcw *tcw,
198 unsigned long intparm, u8 lpm, u8 key);
199int ccw_device_tm_start_key(struct ccw_device *, struct tcw *,
200 unsigned long, u8, u8);
201int ccw_device_tm_start_timeout_key(struct ccw_device *, struct tcw *,
202 unsigned long, u8, u8, int);
203int ccw_device_tm_start(struct ccw_device *, struct tcw *,
204 unsigned long, u8);
205int ccw_device_tm_start_timeout(struct ccw_device *, struct tcw *,
206 unsigned long, u8, int);
207int ccw_device_tm_intrg(struct ccw_device *cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Sebastian Ottce322cc2011-01-05 12:47:56 +0100209int ccw_device_get_mdc(struct ccw_device *cdev, u8 mask);
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211extern int ccw_device_set_online(struct ccw_device *cdev);
212extern int ccw_device_set_offline(struct ccw_device *cdev);
213
214
215extern struct ciw *ccw_device_get_ciw(struct ccw_device *, __u32 cmd);
216extern __u8 ccw_device_get_path_mask(struct ccw_device *);
Cornelia Huck9a92fe42007-05-10 15:45:42 +0200217extern void ccw_device_get_id(struct ccw_device *, struct ccw_dev_id *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219#define get_ccwdev_lock(x) (x)->ccwlock
220
221#define to_ccwdev(n) container_of(n, struct ccw_device, dev)
222#define to_ccwdrv(n) container_of(n, struct ccw_driver, driver)
223
224extern struct ccw_device *ccw_device_probe_console(void);
Martin Schwidefsky66648452009-06-16 10:30:28 +0200225extern int ccw_device_force_console(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Michael Ernstfd0457a2010-08-09 18:12:50 +0200227int ccw_device_siosl(struct ccw_device *);
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229// FIXME: these have to go
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230extern int _ccw_device_get_subchannel_number(struct ccw_device *);
231
Cornelia Huck9368dac2012-05-30 16:03:22 +0200232extern void ccw_device_get_schid(struct ccw_device *, struct subchannel_id *);
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234extern void *ccw_device_get_chp_desc(struct ccw_device *, int);
235#endif /* _S390_CCWDEV_H_ */