4 * Copyright IBM Corp. 2013
7 #define KMSG_COMPONENT "sclp_early"
8 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
10 #include <linux/errno.h>
11 #include <asm/ctl_reg.h>
14 #include "sclp_sdias.h"
17 #define SCLP_CMDW_READ_SCP_INFO 0x00020001
18 #define SCLP_CMDW_READ_SCP_INFO_FORCED 0x00120001
20 struct read_info_sccb
{
21 struct sccb_header header
; /* 0-7 */
24 u8 _reserved0
[16 - 11]; /* 11-15 */
25 u16 ncpurl
; /* 16-17 */
26 u16 cpuoff
; /* 18-19 */
27 u8 _reserved7
[24 - 20]; /* 20-23 */
28 u8 loadparm
[8]; /* 24-31 */
29 u8 _reserved1
[48 - 32]; /* 32-47 */
30 u64 facilities
; /* 48-55 */
31 u8 _reserved2a
[76 - 56]; /* 56-75 */
33 u8 _reserved2b
[84 - 80]; /* 80-83 */
36 u8 _reserved3
[91 - 86]; /* 86-90 */
38 u8 _reserved4
[100 - 92]; /* 92-99 */
39 u32 rnsize2
; /* 100-103 */
40 u64 rnmax2
; /* 104-111 */
41 u8 _reserved5
[120 - 112]; /* 112-119 */
42 u16 hcpua
; /* 120-121 */
43 u8 _reserved6
[4096 - 122]; /* 122-4095 */
44 } __packed
__aligned(PAGE_SIZE
);
46 static char sccb_early
[PAGE_SIZE
] __aligned(PAGE_SIZE
) __initdata
;
47 static unsigned int sclp_con_has_vt220 __initdata
;
48 static unsigned int sclp_con_has_linemode __initdata
;
49 static unsigned long sclp_hsa_size
;
50 static unsigned int sclp_max_cpu
;
51 static struct sclp_ipl_info sclp_ipl_info
;
52 static unsigned char sclp_siif
;
57 unsigned long long sclp_rzm
;
58 unsigned long long sclp_rnmax
;
60 static int __init
sclp_cmd_sync_early(sclp_cmdw_t cmd
, void *sccb
)
65 rc
= sclp_service_call(cmd
, sccb
);
68 __load_psw_mask(PSW_DEFAULT_KEY
| PSW_MASK_BASE
| PSW_MASK_EA
|
69 PSW_MASK_BA
| PSW_MASK_EXT
| PSW_MASK_WAIT
);
72 /* Contents of the sccb might have changed. */
74 __ctl_clear_bit(0, 9);
78 static int __init
sclp_read_info_early(struct read_info_sccb
*sccb
)
81 sclp_cmdw_t commands
[] = {SCLP_CMDW_READ_SCP_INFO_FORCED
,
82 SCLP_CMDW_READ_SCP_INFO
};
84 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
86 memset(sccb
, 0, sizeof(*sccb
));
87 sccb
->header
.length
= sizeof(*sccb
);
88 sccb
->header
.function_code
= 0x80;
89 sccb
->header
.control_mask
[2] = 0x80;
90 rc
= sclp_cmd_sync_early(commands
[i
], sccb
);
91 } while (rc
== -EBUSY
);
95 if (sccb
->header
.response_code
== 0x10)
97 if (sccb
->header
.response_code
!= 0x1f0)
103 static void __init
sclp_facilities_detect(struct read_info_sccb
*sccb
)
105 struct sclp_cpu_entry
*cpue
;
106 u16 boot_cpu_address
, cpu
;
108 if (sclp_read_info_early(sccb
))
111 sclp_facilities
= sccb
->facilities
;
112 sclp_fac84
= sccb
->fac84
;
113 if (sccb
->fac85
& 0x02)
114 S390_lowcore
.machine_flags
|= MACHINE_FLAG_ESOP
;
115 sclp_rnmax
= sccb
->rnmax
? sccb
->rnmax
: sccb
->rnmax2
;
116 sclp_rzm
= sccb
->rnsize
? sccb
->rnsize
: sccb
->rnsize2
;
118 sclp_ibc
= sccb
->ibc
;
124 sclp_max_cpu
= sccb
->ncpurl
;
126 sclp_max_cpu
= sccb
->hcpua
+ 1;
129 boot_cpu_address
= stap();
130 cpue
= (void *)sccb
+ sccb
->cpuoff
;
131 for (cpu
= 0; cpu
< sccb
->ncpurl
; cpue
++, cpu
++) {
132 if (boot_cpu_address
!= cpue
->address
)
134 sclp_siif
= cpue
->siif
;
138 /* Save IPL information */
139 sclp_ipl_info
.is_valid
= 1;
140 if (sccb
->flags
& 0x2)
141 sclp_ipl_info
.has_dump
= 1;
142 memcpy(&sclp_ipl_info
.loadparm
, &sccb
->loadparm
, LOADPARM_LEN
);
145 bool __init
sclp_has_linemode(void)
147 return !!sclp_con_has_linemode
;
150 bool __init
sclp_has_vt220(void)
152 return !!sclp_con_has_vt220
;
155 unsigned long long sclp_get_rnmax(void)
160 unsigned long long sclp_get_rzm(void)
165 unsigned int sclp_get_max_cpu(void)
170 int sclp_has_siif(void)
174 EXPORT_SYMBOL(sclp_has_siif
);
176 unsigned int sclp_get_ibc(void)
180 EXPORT_SYMBOL(sclp_get_ibc
);
183 * This function will be called after sclp_facilities_detect(), which gets
184 * called from early.c code. The sclp_facilities_detect() function retrieves
185 * and saves the IPL information.
187 void __init
sclp_get_ipl_info(struct sclp_ipl_info
*info
)
189 *info
= sclp_ipl_info
;
192 static int __init
sclp_cmd_early(sclp_cmdw_t cmd
, void *sccb
)
197 rc
= sclp_cmd_sync_early(cmd
, sccb
);
198 } while (rc
== -EBUSY
);
202 if (((struct sccb_header
*) sccb
)->response_code
!= 0x0020)
207 static void __init
sccb_init_eq_size(struct sdias_sccb
*sccb
)
209 memset(sccb
, 0, sizeof(*sccb
));
211 sccb
->hdr
.length
= sizeof(*sccb
);
212 sccb
->evbuf
.hdr
.length
= sizeof(struct sdias_evbuf
);
213 sccb
->evbuf
.hdr
.type
= EVTYP_SDIAS
;
214 sccb
->evbuf
.event_qual
= SDIAS_EQ_SIZE
;
215 sccb
->evbuf
.data_id
= SDIAS_DI_FCP_DUMP
;
216 sccb
->evbuf
.event_id
= 4712;
220 static int __init
sclp_set_event_mask(struct init_sccb
*sccb
,
221 unsigned long receive_mask
,
222 unsigned long send_mask
)
224 memset(sccb
, 0, sizeof(*sccb
));
225 sccb
->header
.length
= sizeof(*sccb
);
226 sccb
->mask_length
= sizeof(sccb_mask_t
);
227 sccb
->receive_mask
= receive_mask
;
228 sccb
->send_mask
= send_mask
;
229 return sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_MASK
, sccb
);
232 static long __init
sclp_hsa_size_init(struct sdias_sccb
*sccb
)
234 sccb_init_eq_size(sccb
);
235 if (sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_DATA
, sccb
))
237 if (sccb
->evbuf
.blk_cnt
== 0)
239 return (sccb
->evbuf
.blk_cnt
- 1) * PAGE_SIZE
;
242 static long __init
sclp_hsa_copy_wait(struct sccb_header
*sccb
)
244 memset(sccb
, 0, PAGE_SIZE
);
245 sccb
->length
= PAGE_SIZE
;
246 if (sclp_cmd_early(SCLP_CMDW_READ_EVENT_DATA
, sccb
))
248 if (((struct sdias_sccb
*) sccb
)->evbuf
.blk_cnt
== 0)
250 return (((struct sdias_sccb
*) sccb
)->evbuf
.blk_cnt
- 1) * PAGE_SIZE
;
253 unsigned long sclp_get_hsa_size(void)
255 return sclp_hsa_size
;
258 static void __init
sclp_hsa_size_detect(void *sccb
)
262 /* First try synchronous interface (LPAR) */
263 if (sclp_set_event_mask(sccb
, 0, 0x40000010))
265 size
= sclp_hsa_size_init(sccb
);
270 /* Then try asynchronous interface (z/VM) */
271 if (sclp_set_event_mask(sccb
, 0x00000010, 0x40000010))
273 size
= sclp_hsa_size_init(sccb
);
276 size
= sclp_hsa_copy_wait(sccb
);
280 sclp_hsa_size
= size
;
283 static unsigned int __init
sclp_con_check_linemode(struct init_sccb
*sccb
)
285 if (!(sccb
->sclp_send_mask
& (EVTYP_OPCMD_MASK
| EVTYP_PMSGCMD_MASK
)))
287 if (!(sccb
->sclp_receive_mask
& (EVTYP_MSG_MASK
| EVTYP_PMSGCMD_MASK
)))
292 static void __init
sclp_console_detect(struct init_sccb
*sccb
)
294 if (sccb
->header
.response_code
!= 0x20)
297 if (sccb
->sclp_send_mask
& EVTYP_VT220MSG_MASK
)
298 sclp_con_has_vt220
= 1;
300 if (sclp_con_check_linemode(sccb
))
301 sclp_con_has_linemode
= 1;
304 void __init
sclp_early_detect(void)
306 void *sccb
= &sccb_early
;
308 sclp_facilities_detect(sccb
);
309 sclp_hsa_size_detect(sccb
);
311 /* Turn off SCLP event notifications. Also save remote masks in the
312 * sccb. These are sufficient to detect sclp console capabilities.
314 sclp_set_event_mask(sccb
, 0, 0);
315 sclp_console_detect(sccb
);