blob: a29dd430fb405004ae3cf17230e8dccb81a520c7 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 2002, 2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Sebastian Ott823d4942009-06-16 10:30:20 +02005 * Author(s): Arnd Bergmann <arndb@de.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Sebastian Ott823d4942009-06-16 10:30:20 +02007 * Interface for CCW device drivers
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9#ifndef _S390_CCWDEV_H_
10#define _S390_CCWDEV_H_
11
12#include <linux/device.h>
13#include <linux/mod_devicetable.h>
Peter Oberparleiter83262d62008-07-14 09:58:51 +020014#include <asm/fcx.h>
Peter Oberparleiterde400d62011-10-30 15:16:04 +010015#include <asm/irq.h>
Cornelia Huck1f1c9612012-12-13 13:38:51 +010016#include <asm/schid.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/* structs from asm/cio.h */
19struct irb;
20struct ccw1;
Cornelia Huck9a92fe42007-05-10 15:45:42 +020021struct ccw_dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
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))
30
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)
37
38/* scan through an array of device ids and return the first
39 * entry that matches the device.
40 *
41 * the array must end with an entry containing zero match_flags
42 */
43static inline const struct ccw_device_id *
44ccw_device_id_match(const struct ccw_device_id *array,
45 const struct ccw_device_id *match)
46{
47 const struct ccw_device_id *id = array;
48
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))
52 continue;
53
54 if ((id->match_flags & CCW_DEVICE_ID_MATCH_CU_MODEL)
55 && (id->cu_model != match->cu_model))
56 continue;
57
58 if ((id->match_flags & CCW_DEVICE_ID_MATCH_DEVICE_TYPE)
59 && (id->dev_type != match->dev_type))
60 continue;
61
62 if ((id->match_flags & CCW_DEVICE_ID_MATCH_DEVICE_MODEL)
63 && (id->dev_model != match->dev_model))
64 continue;
65
66 return id;
67 }
68
Heiko Carstensd2c993d2006-07-12 16:41:55 +020069 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020072/**
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020081 * @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).
84 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085struct ccw_device {
86 spinlock_t *ccwlock;
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020087/* private: */
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 struct ccw_device_private *private; /* cio private information */
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +020089/* public: */
90 struct ccw_device_id id;
91 struct ccw_driver *drv;
92 struct device dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 int online;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 void (*handler) (struct ccw_device *, unsigned long, struct irb *);
95};
96
Michael Ernst094f2102010-05-26 23:27:08 +020097/*
Sebastian Ott585b9542010-10-25 16:10:34 +020098 * Possible events used by the path_event notifier.
99 */
100#define PE_NONE 0x0
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. */
106
107/*
Michael Ernst094f2102010-05-26 23:27:08 +0200108 * Possible CIO actions triggered by the unit check handler.
109 */
110enum uc_todo {
111 UC_TODO_RETRY,
112 UC_TODO_RETRY_ON_NEW_PATH,
113 UC_TODO_STOP
114};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200116/**
117 * struct ccw driver - device driver for channel attached devices
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200118 * @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
Sebastian Ott585b9542010-10-25 16:10:34 +0200124 * @path_event: notify driver of channel path events
Cornelia Huck958974fb2007-10-12 16:11:21 +0200125 * @shutdown: called at device shutdown
Sebastian Ott823d4942009-06-16 10:30:20 +0200126 * @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
Michael Ernst094f2102010-05-26 23:27:08 +0200131 * @uc_handler: callback for unit check handler
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200132 * @driver: embedded device driver structure
Peter Oberparleiterde400d62011-10-30 15:16:04 +0100133 * @int_class: interruption class to use for accounting interrupts
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135struct ccw_driver {
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200136 struct ccw_device_id *ids;
137 int (*probe) (struct ccw_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 void (*remove) (struct ccw_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 int (*set_online) (struct ccw_device *);
140 int (*set_offline) (struct ccw_device *);
141 int (*notify) (struct ccw_device *, int);
Sebastian Ott585b9542010-10-25 16:10:34 +0200142 void (*path_event) (struct ccw_device *, int *);
Cornelia Huck958974fb2007-10-12 16:11:21 +0200143 void (*shutdown) (struct ccw_device *);
Sebastian Ott823d4942009-06-16 10:30:20 +0200144 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 *);
Michael Ernst094f2102010-05-26 23:27:08 +0200149 enum uc_todo (*uc_handler) (struct ccw_device *, struct irb *);
Cornelia Huckb2ffd8e2007-10-12 16:11:17 +0200150 struct device_driver driver;
Peter Oberparleiterde400d62011-10-30 15:16:04 +0100151 enum interruption_class int_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152};
153
154extern struct ccw_device *get_ccwdev_by_busid(struct ccw_driver *cdrv,
155 const char *bus_id);
156
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 */
160extern int ccw_driver_register (struct ccw_driver *driver);
161extern void ccw_driver_unregister (struct ccw_driver *driver);
162
163struct ccw1;
164
Cornelia Huck4dd3cc52007-02-12 15:47:18 +0100165extern int ccw_device_set_options_mask(struct ccw_device *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166extern int ccw_device_set_options(struct ccw_device *, unsigned long);
Cornelia Huck4dd3cc52007-02-12 15:47:18 +0100167extern void ccw_device_clear_options(struct ccw_device *, unsigned long);
Peter Oberparleiter454e1fa2009-12-07 12:51:30 +0100168int ccw_device_is_pathgroup(struct ccw_device *cdev);
169int ccw_device_is_multipath(struct ccw_device *cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
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
Peter Oberparleiter454e1fa2009-12-07 12:51:30 +0100179/* Try to use multipath mode. */
180#define CCWDEV_DO_MULTIPATH 0x0010
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182extern int ccw_device_start(struct ccw_device *, struct ccw1 *,
183 unsigned long, __u8, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184extern int ccw_device_start_timeout(struct ccw_device *, struct ccw1 *,
185 unsigned long, __u8, unsigned long, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186extern int ccw_device_start_key(struct ccw_device *, struct ccw1 *,
187 unsigned long, __u8, __u8, unsigned long);
188extern int ccw_device_start_timeout_key(struct ccw_device *, struct ccw1 *,
189 unsigned long, __u8, __u8,
190 unsigned long, int);
191
192
193extern int ccw_device_resume(struct ccw_device *);
194extern int ccw_device_halt(struct ccw_device *, unsigned long);
195extern int ccw_device_clear(struct ccw_device *, unsigned long);
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200196int ccw_device_tm_start_key(struct ccw_device *cdev, struct tcw *tcw,
197 unsigned long intparm, u8 lpm, u8 key);
198int ccw_device_tm_start_key(struct ccw_device *, struct tcw *,
199 unsigned long, u8, u8);
200int ccw_device_tm_start_timeout_key(struct ccw_device *, struct tcw *,
201 unsigned long, u8, u8, int);
202int ccw_device_tm_start(struct ccw_device *, struct tcw *,
203 unsigned long, u8);
204int ccw_device_tm_start_timeout(struct ccw_device *, struct tcw *,
205 unsigned long, u8, int);
206int ccw_device_tm_intrg(struct ccw_device *cdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Sebastian Ottce322cc2011-01-05 12:47:56 +0100208int ccw_device_get_mdc(struct ccw_device *cdev, u8 mask);
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210extern int ccw_device_set_online(struct ccw_device *cdev);
211extern int ccw_device_set_offline(struct ccw_device *cdev);
212
213
214extern struct ciw *ccw_device_get_ciw(struct ccw_device *, __u32 cmd);
215extern __u8 ccw_device_get_path_mask(struct ccw_device *);
Cornelia Huck9a92fe42007-05-10 15:45:42 +0200216extern void ccw_device_get_id(struct ccw_device *, struct ccw_dev_id *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218#define get_ccwdev_lock(x) (x)->ccwlock
219
220#define to_ccwdev(n) container_of(n, struct ccw_device, dev)
221#define to_ccwdrv(n) container_of(n, struct ccw_driver, driver)
222
Sebastian Ott1e532092014-01-27 13:28:10 +0100223extern struct ccw_device *ccw_device_create_console(struct ccw_driver *);
224extern void ccw_device_destroy_console(struct ccw_device *);
225extern int ccw_device_enable_console(struct ccw_device *);
Sebastian Ott188561a2013-04-13 12:53:21 +0200226extern void ccw_device_wait_idle(struct ccw_device *);
Sebastian Ottf10ccca2013-04-13 12:56:51 +0200227extern int ccw_device_force_console(struct ccw_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Michael Ernstfd0457a2010-08-09 18:12:50 +0200229int ccw_device_siosl(struct ccw_device *);
230
Cornelia Huck9368dac2012-05-30 16:03:22 +0200231extern void ccw_device_get_schid(struct ccw_device *, struct subchannel_id *);
232
Sebastian Ottded27d82017-06-29 13:27:22 +0200233struct channel_path_desc_fmt0 *ccw_device_get_chp_desc(struct ccw_device *, int);
Sebastian Ott19965232016-06-23 10:58:15 +0200234u8 *ccw_device_get_util_str(struct ccw_device *cdev, int chp_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235#endif /* _S390_CCWDEV_H_ */