[S390] subchannel lock conversion.
[deliverable/linux.git] / drivers / s390 / cio / css.h
CommitLineData
1da177e4
LT
1#ifndef _CSS_H
2#define _CSS_H
3
495a5b45 4#include <linux/mutex.h>
1da177e4
LT
5#include <linux/wait.h>
6#include <linux/workqueue.h>
7
8#include <asm/cio.h>
9
a8237fc4
CH
10#include "schid.h"
11
1da177e4
LT
12/*
13 * path grouping stuff
14 */
15#define SPID_FUNC_SINGLE_PATH 0x00
16#define SPID_FUNC_MULTI_PATH 0x80
17#define SPID_FUNC_ESTABLISH 0x00
18#define SPID_FUNC_RESIGN 0x40
19#define SPID_FUNC_DISBAND 0x20
20
21#define SNID_STATE1_RESET 0
22#define SNID_STATE1_UNGROUPED 2
23#define SNID_STATE1_GROUPED 3
24
25#define SNID_STATE2_NOT_RESVD 0
26#define SNID_STATE2_RESVD_ELSE 2
27#define SNID_STATE2_RESVD_SELF 3
28
29#define SNID_STATE3_MULTI_PATH 1
30#define SNID_STATE3_SINGLE_PATH 0
31
32struct path_state {
33 __u8 state1 : 2; /* path state value 1 */
34 __u8 state2 : 2; /* path state value 2 */
35 __u8 state3 : 1; /* path state value 3 */
36 __u8 resvd : 3; /* reserved */
37} __attribute__ ((packed));
38
a28c6944
CH
39struct extended_cssid {
40 u8 version;
41 u8 cssid;
42} __attribute__ ((packed));
43
1da177e4
LT
44struct pgid {
45 union {
46 __u8 fc; /* SPID function code */
47 struct path_state ps; /* SNID path state */
4ae9538d 48 } __attribute__ ((packed)) inf;
a28c6944
CH
49 union {
50 __u32 cpu_addr : 16; /* CPU address */
51 struct extended_cssid ext_cssid;
4ae9538d 52 } __attribute__ ((packed)) pgid_high;
1da177e4
LT
53 __u32 cpu_id : 24; /* CPU identification */
54 __u32 cpu_model : 16; /* CPU model */
55 __u32 tod_high; /* high word TOD clock */
56} __attribute__ ((packed));
57
1da177e4
LT
58#define MAX_CIWS 8
59
60/*
61 * sense-id response buffer layout
62 */
63struct senseid {
64 /* common part */
65 __u8 reserved; /* always 0x'FF' */
66 __u16 cu_type; /* control unit type */
67 __u8 cu_model; /* control unit model */
68 __u16 dev_type; /* device type */
69 __u8 dev_model; /* device model */
70 __u8 unused; /* padding byte */
71 /* extended part */
72 struct ciw ciw[MAX_CIWS]; /* variable # of CIWs */
73} __attribute__ ((packed,aligned(4)));
74
75struct ccw_device_private {
c1637532
MS
76 struct ccw_device *cdev;
77 struct subchannel *sch;
1da177e4
LT
78 int state; /* device state */
79 atomic_t onoff;
80 unsigned long registered;
78964268
CH
81 struct ccw_dev_id dev_id; /* device id */
82 struct subchannel_id schid; /* subchannel number */
1da177e4
LT
83 __u8 imask; /* lpm mask for SNID/SID/SPGID */
84 int iretry; /* retry counter SNID/SID/SPGID */
85 struct {
86 unsigned int fast:1; /* post with "channel end" */
87 unsigned int repall:1; /* report every interrupt status */
88 unsigned int pgroup:1; /* do path grouping */
89 unsigned int force:1; /* allow forced online */
90 } __attribute__ ((packed)) options;
91 struct {
92 unsigned int pgid_single:1; /* use single path for Set PGID */
93 unsigned int esid:1; /* Ext. SenseID supported by HW */
94 unsigned int dosense:1; /* delayed SENSE required */
95 unsigned int doverify:1; /* delayed path verification */
96 unsigned int donotify:1; /* call notify function */
97 unsigned int recog_done:1; /* dev. recog. complete */
98 unsigned int fake_irb:1; /* deliver faked irb */
d23861ff 99 unsigned int intretry:1; /* retry internal operation */
1da177e4
LT
100 } __attribute__((packed)) flags;
101 unsigned long intparm; /* user interruption parameter */
102 struct qdio_irq *qdio_data;
103 struct irb irb; /* device status */
104 struct senseid senseid; /* SenseID info */
7e560814 105 struct pgid pgid[8]; /* path group IDs per chpid*/
1da177e4
LT
106 struct ccw1 iccws[2]; /* ccws for SNID/SID/SPGID commands */
107 struct work_struct kick_work;
108 wait_queue_head_t wait_q;
109 struct timer_list timer;
110 void *cmb; /* measurement information */
111 struct list_head cmb_list; /* list of measured devices */
112 u64 cmb_start_time; /* clock value of cmb reset */
113 void *cmb_wait; /* deferred cmb enable/disable */
114};
115
116/*
117 * A css driver handles all subchannels of one type.
118 * Currently, we only care about I/O subchannels (type 0), these
119 * have a ccw_device connected to them.
120 */
8bbace7e 121struct subchannel;
1da177e4
LT
122struct css_driver {
123 unsigned int subchannel_type;
124 struct device_driver drv;
125 void (*irq)(struct device *);
126 int (*notify)(struct device *, int);
127 void (*verify)(struct device *);
128 void (*termination)(struct device *);
8bbace7e
CH
129 int (*probe)(struct subchannel *);
130 int (*remove)(struct subchannel *);
131 void (*shutdown)(struct subchannel *);
1da177e4
LT
132};
133
134/*
135 * all css_drivers have the css_bus_type
136 */
137extern struct bus_type css_bus_type;
138extern struct css_driver io_subchannel_driver;
139
a8237fc4 140extern int css_probe_device(struct subchannel_id);
6ab4879a
CH
141extern int css_sch_device_register(struct subchannel *);
142extern void css_sch_device_unregister(struct subchannel *);
a8237fc4 143extern struct subchannel * get_subchannel_by_schid(struct subchannel_id);
1da177e4 144extern int css_init_done;
f97a56fb 145extern int for_each_subchannel(int(*fn)(struct subchannel_id, void *), void *);
1da177e4 146
a8237fc4 147#define __MAX_SUBCHANNEL 65535
fb6958a5 148#define __MAX_SSID 3
a28c6944
CH
149#define __MAX_CHPID 255
150#define __MAX_CSSID 0
151
152struct channel_subsystem {
153 u8 cssid;
154 int valid;
871931c1 155 struct channel_path *chps[__MAX_CHPID + 1];
a28c6944
CH
156 struct device device;
157 struct pgid global_pgid;
495a5b45
CH
158 struct mutex mutex;
159 /* channel measurement related */
160 int cm_enabled;
161 void *cub_addr1;
162 void *cub_addr2;
a28c6944
CH
163};
164#define to_css(dev) container_of(dev, struct channel_subsystem, device)
1da177e4
LT
165
166extern struct bus_type css_bus_type;
a28c6944 167extern struct channel_subsystem *css[];
1da177e4
LT
168
169/* Some helper functions for disconnected state. */
170int device_is_disconnected(struct subchannel *);
171void device_set_disconnected(struct subchannel *);
172void device_trigger_reprobe(struct subchannel *);
173
174/* Helper functions for vary on/off. */
175int device_is_online(struct subchannel *);
e7769b48 176void device_kill_io(struct subchannel *);
d23861ff 177void device_set_intretry(struct subchannel *sch);
24cb5b48 178int device_trigger_verify(struct subchannel *sch);
1da177e4
LT
179
180/* Machine check helper function. */
181void device_kill_pending_timer(struct subchannel *);
182
183/* Helper functions to build lists for the slow path. */
a8237fc4 184extern int css_enqueue_subchannel_slow(struct subchannel_id schid);
1da177e4
LT
185void css_walk_subchannel_slow_list(void (*fn)(unsigned long));
186void css_clear_subchannel_slow_list(void);
187int css_slow_subchannels_exist(void);
188extern int need_rescan;
189
190extern struct workqueue_struct *slow_path_wq;
191extern struct work_struct slow_path_work;
7674da77
CH
192
193int subchannel_add_files (struct device *);
1da177e4 194#endif
This page took 0.177705 seconds and 5 git commands to generate.