blob: 23d072e70eb2f4e87e1a9dbefcd244c35a98b977 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef S390_CHSC_H
2#define S390_CHSC_H
3
Peter Oberparleiterf86635f2007-04-27 16:01:26 +02004#include <linux/types.h>
5#include <linux/device.h>
Sebastian Ott382b7362012-08-28 16:43:36 +02006#include <asm/css_chars.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +02007#include <asm/chpid.h>
Cornelia Huck9d92a7e2008-07-14 09:59:05 +02008#include <asm/chsc.h>
9#include <asm/schid.h>
Sebastian Ottda5b6cb2013-06-05 18:58:35 +020010#include <asm/qdio.h>
Peter Oberparleiterf86635f2007-04-27 16:01:26 +020011
Cornelia Huckfb6958a2006-01-06 00:19:25 -080012#define CHSC_SDA_OC_MSS 0x2
13
Cornelia Huck495a5b42006-03-24 03:15:14 -080014#define NR_MEASUREMENT_CHARS 5
15struct cmg_chars {
16 u32 values[NR_MEASUREMENT_CHARS];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +010017} __attribute__ ((packed));
Cornelia Huck495a5b42006-03-24 03:15:14 -080018
19#define NR_MEASUREMENT_ENTRIES 8
20struct cmg_entry {
21 u32 values[NR_MEASUREMENT_ENTRIES];
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +010022} __attribute__ ((packed));
Cornelia Huck495a5b42006-03-24 03:15:14 -080023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024struct channel_path_desc {
25 u8 flags;
26 u8 lsn;
27 u8 desc;
28 u8 chpid;
29 u8 swla;
30 u8 zeroes;
31 u8 chla;
32 u8 chpp;
Peter Oberparleiter0f008aa2007-02-05 21:17:40 +010033} __attribute__ ((packed));
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Sebastian Ottce322cc2011-01-05 12:47:56 +010035struct channel_path_desc_fmt1 {
36 u8 flags;
37 u8 lsn;
38 u8 desc;
39 u8 chpid;
40 u32:24;
41 u8 chpp;
Peter Oberparleiterba542292013-05-15 13:43:29 +020042 u32 unused[2];
43 u16 chid;
44 u32:16;
Sebastian Ottce322cc2011-01-05 12:47:56 +010045 u16 mdc;
46 u16:13;
47 u8 r:1;
48 u8 s:1;
49 u8 f:1;
50 u32 zeros[2];
51} __attribute__ ((packed));
52
Peter Oberparleitere6b6e102007-04-27 16:01:28 +020053struct channel_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055struct css_chsc_char {
56 u64 res;
Cornelia Huck495a5b42006-03-24 03:15:14 -080057 u64 : 20;
58 u32 secm : 1; /* bit 84 */
59 u32 : 1;
60 u32 scmc : 1; /* bit 86 */
61 u32 : 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 u32 scssc : 1; /* bit 107 */
63 u32 scsscf : 1; /* bit 108 */
64 u32 : 19;
65}__attribute__((packed));
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067extern struct css_chsc_char css_chsc_characteristics;
68
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020069struct chsc_ssd_info {
70 u8 path_mask;
71 u8 fla_valid_mask;
72 struct chp_id chpid[8];
73 u16 fla[8];
74};
Sebastian Ott906c9762010-10-25 16:10:30 +020075
Sebastian Ottda5b6cb2013-06-05 18:58:35 +020076struct chsc_ssqd_area {
77 struct chsc_header request;
78 u16:10;
79 u8 ssid:2;
80 u8 fmt:4;
81 u16 first_sch;
82 u16:16;
83 u16 last_sch;
84 u32:32;
85 struct chsc_header response;
86 u32:32;
87 struct qdio_ssqd_desc qdio_ssqd;
88} __packed;
89
Sebastian Ottca4ba152013-06-05 18:59:22 +020090struct chsc_scssc_area {
91 struct chsc_header request;
92 u16 operation_code;
93 u16:16;
94 u32:32;
95 u32:32;
96 u64 summary_indicator_addr;
97 u64 subchannel_indicator_addr;
98 u32 ks:4;
99 u32 kc:4;
100 u32:21;
101 u32 isc:3;
102 u32 word_with_d_bit;
103 u32:32;
104 struct subchannel_id schid;
105 u32 reserved[1004];
106 struct chsc_header response;
107 u32:32;
108} __packed;
109
Sebastian Ott906c9762010-10-25 16:10:30 +0200110struct chsc_scpd {
111 struct chsc_header request;
112 u32:2;
113 u32 m:1;
114 u32 c:1;
115 u32 fmt:4;
116 u32 cssid:8;
117 u32:4;
118 u32 rfmt:4;
119 u32 first_chpid:8;
120 u32:24;
121 u32 last_chpid:8;
122 u32 zeroes1;
123 struct chsc_header response;
124 u8 data[PAGE_SIZE - 20];
125} __attribute__ ((packed));
126
127
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +0200128extern int chsc_get_ssd_info(struct subchannel_id schid,
129 struct chsc_ssd_info *ssd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130extern int chsc_determine_css_characteristics(void);
Sebastian Ott34aec072010-10-25 16:10:28 +0200131extern int chsc_init(void);
132extern void chsc_init_cleanup(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800134extern int chsc_enable_facility(int);
Cornelia Huck495a5b42006-03-24 03:15:14 -0800135struct channel_subsystem;
136extern int chsc_secm(struct channel_subsystem *, int);
Sebastian Ott34196f82010-10-25 16:10:29 +0200137int __chsc_do_secm(struct channel_subsystem *css, int enable);
Cornelia Huckfb6958a2006-01-06 00:19:25 -0800138
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200139int chsc_chp_vary(struct chp_id chpid, int on);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200140int chsc_determine_channel_path_desc(struct chp_id chpid, int fmt, int rfmt,
Sebastian Ott906c9762010-10-25 16:10:30 +0200141 int c, int m, void *page);
Cornelia Huck9d92a7e2008-07-14 09:59:05 +0200142int chsc_determine_base_channel_path_desc(struct chp_id chpid,
143 struct channel_path_desc *desc);
Sebastian Ottce322cc2011-01-05 12:47:56 +0100144int chsc_determine_fmt1_channel_path_desc(struct chp_id chpid,
145 struct channel_path_desc_fmt1 *desc);
Peter Oberparleiter83b33702007-04-27 16:01:34 +0200146void chsc_chp_online(struct chp_id chpid);
Peter Oberparleitere6b6e102007-04-27 16:01:28 +0200147void chsc_chp_offline(struct chp_id chpid);
148int chsc_get_channel_measurement_chars(struct channel_path *chp);
Sebastian Ottda5b6cb2013-06-05 18:58:35 +0200149int chsc_ssqd(struct subchannel_id schid, struct chsc_ssqd_area *ssqd);
Sebastian Ottca4ba152013-06-05 18:59:22 +0200150int chsc_sadc(struct subchannel_id schid, struct chsc_scssc_area *scssc,
151 u64 summary_indicator_addr, u64 subchannel_indicator_addr);
Cornelia Huckdae39842008-07-17 17:16:47 +0200152int chsc_error_from_response(int response);
153
Michael Ernstfd0457a2010-08-09 18:12:50 +0200154int chsc_siosl(struct subchannel_id schid);
155
Sebastian Ott184b08a2012-08-28 16:45:42 +0200156/* Functions and definitions to query storage-class memory. */
157struct sale {
158 u64 sa;
159 u32 p:4;
160 u32 op_state:4;
161 u32 data_state:4;
162 u32 rank:4;
163 u32 r:1;
164 u32:7;
165 u32 rid:8;
166 u32:32;
167} __packed;
168
169struct chsc_scm_info {
170 struct chsc_header request;
171 u32:32;
172 u64 reqtok;
173 u32 reserved1[4];
174 struct chsc_header response;
175 u64:56;
176 u8 rq;
177 u32 mbc;
178 u64 msa;
179 u16 is;
180 u16 mmc;
181 u32 mci;
182 u64 nr_scm_ini;
183 u64 nr_scm_unini;
184 u32 reserved2[10];
185 u64 restok;
186 struct sale scmal[248];
187} __packed;
188
189int chsc_scm_info(struct chsc_scm_info *scm_area, u64 token);
190
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200191#ifdef CONFIG_SCM_BUS
192int scm_update_information(void);
Sebastian Ottaebfa662013-02-28 12:07:55 +0100193int scm_process_availability_information(void);
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200194#else /* CONFIG_SCM_BUS */
Sebastian Ott58fece72013-01-28 19:34:26 +0100195static inline int scm_update_information(void) { return 0; }
Sebastian Ottaebfa662013-02-28 12:07:55 +0100196static inline int scm_process_availability_information(void) { return 0; }
Sebastian Ott40ff4cc2012-08-28 16:47:02 +0200197#endif /* CONFIG_SCM_BUS */
198
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#endif