4 * Copyright IBM Corp. 2013
7 #define KMSG_COMPONENT "sclp_early"
8 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
10 #include <asm/ctl_reg.h>
13 #include "sclp_sdias.h"
16 #define SCLP_CMDW_READ_SCP_INFO 0x00020001
17 #define SCLP_CMDW_READ_SCP_INFO_FORCED 0x00120001
19 struct read_info_sccb
{
20 struct sccb_header header
; /* 0-7 */
23 u8 _reserved0
[24 - 11]; /* 11-15 */
24 u8 loadparm
[8]; /* 24-31 */
25 u8 _reserved1
[48 - 32]; /* 32-47 */
26 u64 facilities
; /* 48-55 */
27 u8 _reserved2
[84 - 56]; /* 56-83 */
30 u8 _reserved3
[91 - 86]; /* 86-90 */
32 u8 _reserved4
[100 - 92]; /* 92-99 */
33 u32 rnsize2
; /* 100-103 */
34 u64 rnmax2
; /* 104-111 */
35 u8 _reserved5
[4096 - 112]; /* 112-4095 */
36 } __packed
__aligned(PAGE_SIZE
);
38 static char sccb_early
[PAGE_SIZE
] __aligned(PAGE_SIZE
) __initdata
;
39 static unsigned int sclp_con_has_vt220 __initdata
;
40 static unsigned int sclp_con_has_linemode __initdata
;
41 static unsigned long sclp_hsa_size
;
42 static struct sclp_ipl_info sclp_ipl_info
;
46 unsigned long long sclp_rzm
;
47 unsigned long long sclp_rnmax
;
49 static int __init
sclp_cmd_sync_early(sclp_cmdw_t cmd
, void *sccb
)
54 rc
= sclp_service_call(cmd
, sccb
);
57 __load_psw_mask(PSW_DEFAULT_KEY
| PSW_MASK_BASE
| PSW_MASK_EA
|
58 PSW_MASK_BA
| PSW_MASK_EXT
| PSW_MASK_WAIT
);
61 /* Contents of the sccb might have changed. */
63 __ctl_clear_bit(0, 9);
67 static int __init
sclp_read_info_early(struct read_info_sccb
*sccb
)
70 sclp_cmdw_t commands
[] = {SCLP_CMDW_READ_SCP_INFO_FORCED
,
71 SCLP_CMDW_READ_SCP_INFO
};
73 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
75 memset(sccb
, 0, sizeof(*sccb
));
76 sccb
->header
.length
= sizeof(*sccb
);
77 sccb
->header
.function_code
= 0x80;
78 sccb
->header
.control_mask
[2] = 0x80;
79 rc
= sclp_cmd_sync_early(commands
[i
], sccb
);
80 } while (rc
== -EBUSY
);
84 if (sccb
->header
.response_code
== 0x10)
86 if (sccb
->header
.response_code
!= 0x1f0)
92 static void __init
sclp_facilities_detect(struct read_info_sccb
*sccb
)
94 if (sclp_read_info_early(sccb
))
97 sclp_facilities
= sccb
->facilities
;
98 sclp_fac84
= sccb
->fac84
;
99 if (sccb
->fac85
& 0x02)
100 S390_lowcore
.machine_flags
|= MACHINE_FLAG_ESOP
;
101 sclp_rnmax
= sccb
->rnmax
? sccb
->rnmax
: sccb
->rnmax2
;
102 sclp_rzm
= sccb
->rnsize
? sccb
->rnsize
: sccb
->rnsize2
;
105 /* Save IPL information */
106 sclp_ipl_info
.is_valid
= 1;
107 if (sccb
->flags
& 0x2)
108 sclp_ipl_info
.has_dump
= 1;
109 memcpy(&sclp_ipl_info
.loadparm
, &sccb
->loadparm
, LOADPARM_LEN
);
112 bool __init
sclp_has_linemode(void)
114 return !!sclp_con_has_linemode
;
117 bool __init
sclp_has_vt220(void)
119 return !!sclp_con_has_vt220
;
122 unsigned long long sclp_get_rnmax(void)
127 unsigned long long sclp_get_rzm(void)
133 * This function will be called after sclp_facilities_detect(), which gets
134 * called from early.c code. The sclp_facilities_detect() function retrieves
135 * and saves the IPL information.
137 void __init
sclp_get_ipl_info(struct sclp_ipl_info
*info
)
139 *info
= sclp_ipl_info
;
142 static int __init
sclp_cmd_early(sclp_cmdw_t cmd
, void *sccb
)
147 rc
= sclp_cmd_sync_early(cmd
, sccb
);
148 } while (rc
== -EBUSY
);
152 if (((struct sccb_header
*) sccb
)->response_code
!= 0x0020)
157 static void __init
sccb_init_eq_size(struct sdias_sccb
*sccb
)
159 memset(sccb
, 0, sizeof(*sccb
));
161 sccb
->hdr
.length
= sizeof(*sccb
);
162 sccb
->evbuf
.hdr
.length
= sizeof(struct sdias_evbuf
);
163 sccb
->evbuf
.hdr
.type
= EVTYP_SDIAS
;
164 sccb
->evbuf
.event_qual
= SDIAS_EQ_SIZE
;
165 sccb
->evbuf
.data_id
= SDIAS_DI_FCP_DUMP
;
166 sccb
->evbuf
.event_id
= 4712;
170 static int __init
sclp_set_event_mask(struct init_sccb
*sccb
,
171 unsigned long receive_mask
,
172 unsigned long send_mask
)
174 memset(sccb
, 0, sizeof(*sccb
));
175 sccb
->header
.length
= sizeof(*sccb
);
176 sccb
->mask_length
= sizeof(sccb_mask_t
);
177 sccb
->receive_mask
= receive_mask
;
178 sccb
->send_mask
= send_mask
;
179 return sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_MASK
, sccb
);
182 static long __init
sclp_hsa_size_init(struct sdias_sccb
*sccb
)
184 sccb_init_eq_size(sccb
);
185 if (sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_DATA
, sccb
))
187 if (sccb
->evbuf
.blk_cnt
!= 0)
188 return (sccb
->evbuf
.blk_cnt
- 1) * PAGE_SIZE
;
192 static long __init
sclp_hsa_copy_wait(struct sccb_header
*sccb
)
194 memset(sccb
, 0, PAGE_SIZE
);
195 sccb
->length
= PAGE_SIZE
;
196 if (sclp_cmd_early(SCLP_CMDW_READ_EVENT_DATA
, sccb
))
198 return (((struct sdias_sccb
*) sccb
)->evbuf
.blk_cnt
- 1) * PAGE_SIZE
;
201 unsigned long sclp_get_hsa_size(void)
203 return sclp_hsa_size
;
206 static void __init
sclp_hsa_size_detect(void *sccb
)
210 /* First try synchronous interface (LPAR) */
211 if (sclp_set_event_mask(sccb
, 0, 0x40000010))
213 size
= sclp_hsa_size_init(sccb
);
218 /* Then try asynchronous interface (z/VM) */
219 if (sclp_set_event_mask(sccb
, 0x00000010, 0x40000010))
221 size
= sclp_hsa_size_init(sccb
);
224 size
= sclp_hsa_copy_wait(sccb
);
228 sclp_hsa_size
= size
;
231 static unsigned int __init
sclp_con_check_linemode(struct init_sccb
*sccb
)
233 if (!(sccb
->sclp_send_mask
& (EVTYP_OPCMD_MASK
| EVTYP_PMSGCMD_MASK
)))
235 if (!(sccb
->sclp_receive_mask
& (EVTYP_MSG_MASK
| EVTYP_PMSGCMD_MASK
)))
240 static void __init
sclp_console_detect(struct init_sccb
*sccb
)
242 if (sccb
->header
.response_code
!= 0x20)
245 if (sccb
->sclp_send_mask
& EVTYP_VT220MSG_MASK
)
246 sclp_con_has_vt220
= 1;
248 if (sclp_con_check_linemode(sccb
))
249 sclp_con_has_linemode
= 1;
252 void __init
sclp_early_detect(void)
254 void *sccb
= &sccb_early
;
256 sclp_facilities_detect(sccb
);
257 sclp_hsa_size_detect(sccb
);
259 /* Turn off SCLP event notifications. Also save remote masks in the
260 * sccb. These are sufficient to detect sclp console capabilities.
262 sclp_set_event_mask(sccb
, 0, 0);
263 sclp_console_detect(sccb
);