1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Copyright IBM Corp. 2002, 2009
5 * Author(s): Arnd Bergmann <arndb@de.ibm.com>
7 * Interface for CCW device drivers
9 #ifndef _S390_CCWDEV_H_
10 #define _S390_CCWDEV_H_
12 #include <linux/device.h>
13 #include <linux/mod_devicetable.h>
16 #include <asm/schid.h>
18 /* structs from asm/cio.h */
23 /* simplified initializers for struct ccw_device:
24 * CCW_DEVICE and CCW_DEVICE_DEVTYPE initialize one
25 * entry in your MODULE_DEVICE_TABLE and set the match_flag correctly */
26 #define CCW_DEVICE(cu, cum) \
27 .cu_type=(cu), .cu_model=(cum), \
28 .match_flags=(CCW_DEVICE_ID_MATCH_CU_TYPE \
29 | (cum ? CCW_DEVICE_ID_MATCH_CU_MODEL : 0))
31 #define CCW_DEVICE_DEVTYPE(cu, cum, dev, devm) \
32 .cu_type=(cu), .cu_model=(cum), .dev_type=(dev), .dev_model=(devm),\
33 .match_flags=CCW_DEVICE_ID_MATCH_CU_TYPE \
34 | ((cum) ? CCW_DEVICE_ID_MATCH_CU_MODEL : 0) \
35 | CCW_DEVICE_ID_MATCH_DEVICE_TYPE \
36 | ((devm) ? CCW_DEVICE_ID_MATCH_DEVICE_MODEL : 0)
38 /* scan through an array of device ids and return the first
39 * entry that matches the device.
41 * the array must end with an entry containing zero match_flags
43 static inline const struct ccw_device_id
*
44 ccw_device_id_match(const struct ccw_device_id
*array
,
45 const struct ccw_device_id
*match
)
47 const struct ccw_device_id
*id
= array
;
49 for (id
= array
; id
->match_flags
; id
++) {
50 if ((id
->match_flags
& CCW_DEVICE_ID_MATCH_CU_TYPE
)
51 && (id
->cu_type
!= match
->cu_type
))
54 if ((id
->match_flags
& CCW_DEVICE_ID_MATCH_CU_MODEL
)
55 && (id
->cu_model
!= match
->cu_model
))
58 if ((id
->match_flags
& CCW_DEVICE_ID_MATCH_DEVICE_TYPE
)
59 && (id
->dev_type
!= match
->dev_type
))
62 if ((id
->match_flags
& CCW_DEVICE_ID_MATCH_DEVICE_MODEL
)
63 && (id
->dev_model
!= match
->dev_model
))
73 * struct ccw_device - channel attached device
74 * @ccwlock: pointer to device lock
75 * @id: id of this device
76 * @drv: ccw driver for this device
77 * @dev: embedded device structure
78 * @online: online status of device
79 * @handler: interrupt handler
81 * @handler is a member of the device rather than the driver since a driver
82 * can have different interrupt handlers for different ccw devices
83 * (multi-subchannel drivers).
88 struct ccw_device_private
*private; /* cio private information */
90 struct ccw_device_id id
;
91 struct ccw_driver
*drv
;
94 void (*handler
) (struct ccw_device
*, unsigned long, struct irb
*);
98 * Possible events used by the path_event notifier.
101 #define PE_PATH_GONE 0x1 /* A path is no longer available. */
102 #define PE_PATH_AVAILABLE 0x2 /* A path has become available and
103 was successfully verified. */
104 #define PE_PATHGROUP_ESTABLISHED 0x4 /* A pathgroup was reset and had
105 to be established again. */
108 * Possible CIO actions triggered by the unit check handler.
112 UC_TODO_RETRY_ON_NEW_PATH
,
117 * struct ccw driver - device driver for channel attached devices
118 * @ids: ids supported by this driver
119 * @probe: function called on probe
120 * @remove: function called on remove
121 * @set_online: called when setting device online
122 * @set_offline: called when setting device offline
123 * @notify: notify driver of device state changes
124 * @path_event: notify driver of channel path events
125 * @shutdown: called at device shutdown
126 * @prepare: prepare for pm state transition
127 * @complete: undo work done in @prepare
128 * @freeze: callback for freezing during hibernation snapshotting
129 * @thaw: undo work done in @freeze
130 * @restore: callback for restoring after hibernation
131 * @uc_handler: callback for unit check handler
132 * @driver: embedded device driver structure
133 * @int_class: interruption class to use for accounting interrupts
136 struct ccw_device_id
*ids
;
137 int (*probe
) (struct ccw_device
*);
138 void (*remove
) (struct ccw_device
*);
139 int (*set_online
) (struct ccw_device
*);
140 int (*set_offline
) (struct ccw_device
*);
141 int (*notify
) (struct ccw_device
*, int);
142 void (*path_event
) (struct ccw_device
*, int *);
143 void (*shutdown
) (struct ccw_device
*);
144 int (*prepare
) (struct ccw_device
*);
145 void (*complete
) (struct ccw_device
*);
146 int (*freeze
)(struct ccw_device
*);
147 int (*thaw
) (struct ccw_device
*);
148 int (*restore
)(struct ccw_device
*);
149 enum uc_todo (*uc_handler
) (struct ccw_device
*, struct irb
*);
150 struct device_driver driver
;
151 enum interruption_class int_class
;
154 extern struct ccw_device
*get_ccwdev_by_busid(struct ccw_driver
*cdrv
,
157 /* devices drivers call these during module load and unload.
158 * When a driver is registered, its probe method is called
159 * when new devices for its type pop up */
160 extern int ccw_driver_register (struct ccw_driver
*driver
);
161 extern void ccw_driver_unregister (struct ccw_driver
*driver
);
165 extern int ccw_device_set_options_mask(struct ccw_device
*, unsigned long);
166 extern int ccw_device_set_options(struct ccw_device
*, unsigned long);
167 extern void ccw_device_clear_options(struct ccw_device
*, unsigned long);
168 int ccw_device_is_pathgroup(struct ccw_device
*cdev
);
169 int ccw_device_is_multipath(struct ccw_device
*cdev
);
171 /* Allow for i/o completion notification after primary interrupt status. */
172 #define CCWDEV_EARLY_NOTIFICATION 0x0001
173 /* Report all interrupt conditions. */
174 #define CCWDEV_REPORT_ALL 0x0002
175 /* Try to perform path grouping. */
176 #define CCWDEV_DO_PATHGROUP 0x0004
177 /* Allow forced onlining of boxed devices. */
178 #define CCWDEV_ALLOW_FORCE 0x0008
179 /* Try to use multipath mode. */
180 #define CCWDEV_DO_MULTIPATH 0x0010
182 extern int ccw_device_start(struct ccw_device
*, struct ccw1
*,
183 unsigned long, __u8
, unsigned long);
184 extern int ccw_device_start_timeout(struct ccw_device
*, struct ccw1
*,
185 unsigned long, __u8
, unsigned long, int);
186 extern int ccw_device_start_key(struct ccw_device
*, struct ccw1
*,
187 unsigned long, __u8
, __u8
, unsigned long);
188 extern int ccw_device_start_timeout_key(struct ccw_device
*, struct ccw1
*,
189 unsigned long, __u8
, __u8
,
193 extern int ccw_device_resume(struct ccw_device
*);
194 extern int ccw_device_halt(struct ccw_device
*, unsigned long);
195 extern int ccw_device_clear(struct ccw_device
*, unsigned long);
196 int ccw_device_tm_start_key(struct ccw_device
*cdev
, struct tcw
*tcw
,
197 unsigned long intparm
, u8 lpm
, u8 key
);
198 int ccw_device_tm_start_key(struct ccw_device
*, struct tcw
*,
199 unsigned long, u8
, u8
);
200 int ccw_device_tm_start_timeout_key(struct ccw_device
*, struct tcw
*,
201 unsigned long, u8
, u8
, int);
202 int ccw_device_tm_start(struct ccw_device
*, struct tcw
*,
204 int ccw_device_tm_start_timeout(struct ccw_device
*, struct tcw
*,
205 unsigned long, u8
, int);
206 int ccw_device_tm_intrg(struct ccw_device
*cdev
);
208 int ccw_device_get_mdc(struct ccw_device
*cdev
, u8 mask
);
210 extern int ccw_device_set_online(struct ccw_device
*cdev
);
211 extern int ccw_device_set_offline(struct ccw_device
*cdev
);
214 extern struct ciw
*ccw_device_get_ciw(struct ccw_device
*, __u32 cmd
);
215 extern __u8
ccw_device_get_path_mask(struct ccw_device
*);
216 extern void ccw_device_get_id(struct ccw_device
*, struct ccw_dev_id
*);
218 #define get_ccwdev_lock(x) (x)->ccwlock
220 #define to_ccwdev(n) container_of(n, struct ccw_device, dev)
221 #define to_ccwdrv(n) container_of(n, struct ccw_driver, driver)
223 extern struct ccw_device
*ccw_device_create_console(struct ccw_driver
*);
224 extern void ccw_device_destroy_console(struct ccw_device
*);
225 extern int ccw_device_enable_console(struct ccw_device
*);
226 extern void ccw_device_wait_idle(struct ccw_device
*);
227 extern int ccw_device_force_console(struct ccw_device
*);
229 extern void *ccw_device_dma_zalloc(struct ccw_device
*cdev
, size_t size
);
230 extern void ccw_device_dma_free(struct ccw_device
*cdev
,
231 void *cpu_addr
, size_t size
);
233 int ccw_device_siosl(struct ccw_device
*);
235 extern void ccw_device_get_schid(struct ccw_device
*, struct subchannel_id
*);
237 struct channel_path_desc_fmt0
*ccw_device_get_chp_desc(struct ccw_device
*, int);
238 u8
*ccw_device_get_util_str(struct ccw_device
*cdev
, int chp_idx
);
239 #endif /* _S390_CCWDEV_H_ */