blob: 1af3555c096d3f27a6948d43d707443d6ccb9309 [file] [log] [blame]
Michael Holzheue657d8f2013-11-13 10:38:27 +01001/*
2 * SCLP early driver
3 *
4 * Copyright IBM Corp. 2013
5 */
6
7#define KMSG_COMPONENT "sclp_early"
8#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
9
Michael Holzheuacf6a002013-11-13 10:38:27 +010010#include <asm/ctl_reg.h>
Michael Holzheue657d8f2013-11-13 10:38:27 +010011#include <asm/sclp.h>
12#include <asm/ipl.h>
13#include "sclp_sdias.h"
14#include "sclp.h"
15
Michael Holzheuacf6a002013-11-13 10:38:27 +010016#define SCLP_CMDW_READ_SCP_INFO 0x00020001
17#define SCLP_CMDW_READ_SCP_INFO_FORCED 0x00120001
18
19struct read_info_sccb {
20 struct sccb_header header; /* 0-7 */
21 u16 rnmax; /* 8-9 */
22 u8 rnsize; /* 10 */
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 */
28 u8 fac84; /* 84 */
29 u8 fac85; /* 85 */
30 u8 _reserved3[91 - 86]; /* 86-90 */
31 u8 flags; /* 91 */
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);
37
Hendrik Brueckner56e57a82013-12-05 19:03:50 +010038static char sccb_early[PAGE_SIZE] __aligned(PAGE_SIZE) __initdata;
Michael Holzheue657d8f2013-11-13 10:38:27 +010039static unsigned long sclp_hsa_size;
Hendrik Brueckner333cce92013-12-05 18:46:51 +010040static struct sclp_ipl_info sclp_ipl_info;
Michael Holzheue657d8f2013-11-13 10:38:27 +010041
Michael Holzheuacf6a002013-11-13 10:38:27 +010042u64 sclp_facilities;
43u8 sclp_fac84;
44unsigned long long sclp_rzm;
45unsigned long long sclp_rnmax;
46
47static int __init sclp_cmd_sync_early(sclp_cmdw_t cmd, void *sccb)
48{
49 int rc;
50
51 __ctl_set_bit(0, 9);
52 rc = sclp_service_call(cmd, sccb);
53 if (rc)
54 goto out;
55 __load_psw_mask(PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_EA |
56 PSW_MASK_BA | PSW_MASK_EXT | PSW_MASK_WAIT);
57 local_irq_disable();
58out:
59 /* Contents of the sccb might have changed. */
60 barrier();
61 __ctl_clear_bit(0, 9);
62 return rc;
63}
64
Hendrik Brueckner56e57a82013-12-05 19:03:50 +010065static int __init sclp_read_info_early(struct read_info_sccb *sccb)
Michael Holzheuacf6a002013-11-13 10:38:27 +010066{
Hendrik Brueckner333cce92013-12-05 18:46:51 +010067 int rc, i;
Michael Holzheuacf6a002013-11-13 10:38:27 +010068 sclp_cmdw_t commands[] = {SCLP_CMDW_READ_SCP_INFO_FORCED,
69 SCLP_CMDW_READ_SCP_INFO};
70
Michael Holzheuacf6a002013-11-13 10:38:27 +010071 for (i = 0; i < ARRAY_SIZE(commands); i++) {
72 do {
73 memset(sccb, 0, sizeof(*sccb));
74 sccb->header.length = sizeof(*sccb);
75 sccb->header.function_code = 0x80;
76 sccb->header.control_mask[2] = 0x80;
77 rc = sclp_cmd_sync_early(commands[i], sccb);
78 } while (rc == -EBUSY);
79
80 if (rc)
81 break;
Hendrik Brueckner333cce92013-12-05 18:46:51 +010082 if (sccb->header.response_code == 0x10)
83 return 0;
Michael Holzheuacf6a002013-11-13 10:38:27 +010084 if (sccb->header.response_code != 0x1f0)
85 break;
86 }
Hendrik Brueckner333cce92013-12-05 18:46:51 +010087 return -EIO;
Michael Holzheuacf6a002013-11-13 10:38:27 +010088}
89
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +010090static void __init sclp_facilities_detect(struct read_info_sccb *sccb)
Michael Holzheuacf6a002013-11-13 10:38:27 +010091{
Hendrik Brueckner56e57a82013-12-05 19:03:50 +010092 if (sclp_read_info_early(sccb))
Michael Holzheuacf6a002013-11-13 10:38:27 +010093 return;
94
Michael Holzheuacf6a002013-11-13 10:38:27 +010095 sclp_facilities = sccb->facilities;
96 sclp_fac84 = sccb->fac84;
97 if (sccb->fac85 & 0x02)
98 S390_lowcore.machine_flags |= MACHINE_FLAG_ESOP;
99 sclp_rnmax = sccb->rnmax ? sccb->rnmax : sccb->rnmax2;
100 sclp_rzm = sccb->rnsize ? sccb->rnsize : sccb->rnsize2;
101 sclp_rzm <<= 20;
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100102
103 /* Save IPL information */
104 sclp_ipl_info.is_valid = 1;
105 if (sccb->flags & 0x2)
106 sclp_ipl_info.has_dump = 1;
107 memcpy(&sclp_ipl_info.loadparm, &sccb->loadparm, LOADPARM_LEN);
Michael Holzheuacf6a002013-11-13 10:38:27 +0100108}
109
110bool __init sclp_has_linemode(void)
111{
Hendrik Brueckner9e3ea192013-11-29 17:29:20 +0100112 struct init_sccb *sccb = (void *) &sccb_early;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100113
114 if (sccb->header.response_code != 0x20)
115 return 0;
116 if (!(sccb->sclp_send_mask & (EVTYP_OPCMD_MASK | EVTYP_PMSGCMD_MASK)))
117 return 0;
118 if (!(sccb->sclp_receive_mask & (EVTYP_MSG_MASK | EVTYP_PMSGCMD_MASK)))
119 return 0;
120 return 1;
121}
122
123bool __init sclp_has_vt220(void)
124{
Hendrik Brueckner9e3ea192013-11-29 17:29:20 +0100125 struct init_sccb *sccb = (void *) &sccb_early;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100126
127 if (sccb->header.response_code != 0x20)
128 return 0;
129 if (sccb->sclp_send_mask & EVTYP_VT220MSG_MASK)
130 return 1;
131 return 0;
132}
133
134unsigned long long sclp_get_rnmax(void)
135{
136 return sclp_rnmax;
137}
138
139unsigned long long sclp_get_rzm(void)
140{
141 return sclp_rzm;
142}
143
144/*
145 * This function will be called after sclp_facilities_detect(), which gets
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100146 * called from early.c code. The sclp_facilities_detect() function retrieves
147 * and saves the IPL information.
Michael Holzheuacf6a002013-11-13 10:38:27 +0100148 */
149void __init sclp_get_ipl_info(struct sclp_ipl_info *info)
150{
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100151 *info = sclp_ipl_info;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100152}
153
Michael Holzheue657d8f2013-11-13 10:38:27 +0100154static int __init sclp_cmd_early(sclp_cmdw_t cmd, void *sccb)
155{
156 int rc;
157
158 do {
159 rc = sclp_cmd_sync_early(cmd, sccb);
160 } while (rc == -EBUSY);
161
162 if (rc)
163 return -EIO;
164 if (((struct sccb_header *) sccb)->response_code != 0x0020)
165 return -EIO;
166 return 0;
167}
168
169static void __init sccb_init_eq_size(struct sdias_sccb *sccb)
170{
171 memset(sccb, 0, sizeof(*sccb));
172
173 sccb->hdr.length = sizeof(*sccb);
174 sccb->evbuf.hdr.length = sizeof(struct sdias_evbuf);
175 sccb->evbuf.hdr.type = EVTYP_SDIAS;
176 sccb->evbuf.event_qual = SDIAS_EQ_SIZE;
177 sccb->evbuf.data_id = SDIAS_DI_FCP_DUMP;
178 sccb->evbuf.event_id = 4712;
179 sccb->evbuf.dbs = 1;
180}
181
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100182static int __init sclp_set_event_mask(struct init_sccb *sccb,
183 unsigned long receive_mask,
Michael Holzheue657d8f2013-11-13 10:38:27 +0100184 unsigned long send_mask)
185{
Michael Holzheue657d8f2013-11-13 10:38:27 +0100186 memset(sccb, 0, sizeof(*sccb));
187 sccb->header.length = sizeof(*sccb);
188 sccb->mask_length = sizeof(sccb_mask_t);
189 sccb->receive_mask = receive_mask;
190 sccb->send_mask = send_mask;
191 return sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_MASK, sccb);
192}
193
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100194static long __init sclp_hsa_size_init(struct sdias_sccb *sccb)
Michael Holzheue657d8f2013-11-13 10:38:27 +0100195{
Michael Holzheue657d8f2013-11-13 10:38:27 +0100196 sccb_init_eq_size(sccb);
197 if (sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_DATA, sccb))
198 return -EIO;
199 if (sccb->evbuf.blk_cnt != 0)
200 return (sccb->evbuf.blk_cnt - 1) * PAGE_SIZE;
201 return 0;
202}
203
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100204static long __init sclp_hsa_copy_wait(struct sccb_header *sccb)
Michael Holzheue657d8f2013-11-13 10:38:27 +0100205{
Michael Holzheue657d8f2013-11-13 10:38:27 +0100206 memset(sccb, 0, PAGE_SIZE);
207 sccb->length = PAGE_SIZE;
208 if (sclp_cmd_early(SCLP_CMDW_READ_EVENT_DATA, sccb))
209 return -EIO;
210 return (((struct sdias_sccb *) sccb)->evbuf.blk_cnt - 1) * PAGE_SIZE;
211}
212
213unsigned long sclp_get_hsa_size(void)
214{
215 return sclp_hsa_size;
216}
217
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100218static void __init sclp_hsa_size_detect(void *sccb)
Michael Holzheue657d8f2013-11-13 10:38:27 +0100219{
220 long size;
221
222 /* First try synchronous interface (LPAR) */
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100223 if (sclp_set_event_mask(sccb, 0, 0x40000010))
Michael Holzheue657d8f2013-11-13 10:38:27 +0100224 return;
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100225 size = sclp_hsa_size_init(sccb);
Michael Holzheue657d8f2013-11-13 10:38:27 +0100226 if (size < 0)
227 return;
228 if (size != 0)
229 goto out;
230 /* Then try asynchronous interface (z/VM) */
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100231 if (sclp_set_event_mask(sccb, 0x00000010, 0x40000010))
Michael Holzheue657d8f2013-11-13 10:38:27 +0100232 return;
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100233 size = sclp_hsa_size_init(sccb);
Michael Holzheue657d8f2013-11-13 10:38:27 +0100234 if (size < 0)
235 return;
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100236 size = sclp_hsa_copy_wait(sccb);
Michael Holzheue657d8f2013-11-13 10:38:27 +0100237 if (size < 0)
238 return;
239out:
Michael Holzheue657d8f2013-11-13 10:38:27 +0100240 sclp_hsa_size = size;
241}
Michael Holzheu7b50da52013-11-13 10:38:27 +0100242
243void __init sclp_early_detect(void)
244{
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100245 void *sccb = &sccb_early;
246
247 sclp_facilities_detect(sccb);
248 sclp_hsa_size_detect(sccb);
249 sclp_set_event_mask(sccb, 0, 0);
Michael Holzheu7b50da52013-11-13 10:38:27 +0100250}