blob: 1efa4fdb7fe212daca1f6562366f2a0d25019a8e [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 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010023 u8 _pad_11[16 - 11]; /* 11-15 */
Heiko Carstenscf813db2014-03-10 14:50:16 +010024 u16 ncpurl; /* 16-17 */
Heiko Carstens217a4402013-12-30 12:54:14 +010025 u16 cpuoff; /* 18-19 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010026 u8 _pad_20[24 - 20]; /* 20-23 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010027 u8 loadparm[8]; /* 24-31 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010028 u8 _pad_32[42 - 32]; /* 32-41 */
29 u8 fac42; /* 42 */
30 u8 fac43; /* 43 */
31 u8 _pad_44[48 - 44]; /* 44-47 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010032 u64 facilities; /* 48-55 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010033 u8 _pad_56[66 - 56]; /* 56-65 */
34 u8 fac66; /* 66 */
35 u8 _pad_67[76 - 67]; /* 67-83 */
Michael Mueller570126d2014-03-15 18:16:26 +010036 u32 ibc; /* 76-79 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010037 u8 _pad80[84 - 80]; /* 80-83 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010038 u8 fac84; /* 84 */
39 u8 fac85; /* 85 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010040 u8 _pad_86[91 - 86]; /* 86-90 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010041 u8 flags; /* 91 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010042 u8 _pad_92[100 - 92]; /* 92-99 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010043 u32 rnsize2; /* 100-103 */
44 u64 rnmax2; /* 104-111 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010045 u8 _pad_112[120 - 112]; /* 112-119 */
Heiko Carstenscf813db2014-03-10 14:50:16 +010046 u16 hcpua; /* 120-121 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010047 u8 _pad_122[4096 - 122]; /* 122-4095 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010048} __packed __aligned(PAGE_SIZE);
49
Hendrik Brueckner56e57a82013-12-05 19:03:50 +010050static char sccb_early[PAGE_SIZE] __aligned(PAGE_SIZE) __initdata;
Hendrik Brueckner52733e02013-12-05 19:28:39 +010051static unsigned int sclp_con_has_vt220 __initdata;
52static unsigned int sclp_con_has_linemode __initdata;
Michael Holzheue657d8f2013-11-13 10:38:27 +010053static unsigned long sclp_hsa_size;
Heiko Carstenscf813db2014-03-10 14:50:16 +010054static unsigned int sclp_max_cpu;
Hendrik Brueckner333cce92013-12-05 18:46:51 +010055static struct sclp_ipl_info sclp_ipl_info;
Heiko Carstens217a4402013-12-30 12:54:14 +010056static unsigned char sclp_siif;
David Hildenbrandd614be02014-10-14 12:11:02 +020057static unsigned char sclp_sigpif;
Michael Mueller570126d2014-03-15 18:16:26 +010058static u32 sclp_ibc;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010059static unsigned int sclp_mtid;
60static unsigned int sclp_mtid_cp;
61static unsigned int sclp_mtid_max;
62static unsigned int sclp_mtid_prev;
Michael Holzheue657d8f2013-11-13 10:38:27 +010063
Michael Holzheuacf6a002013-11-13 10:38:27 +010064u64 sclp_facilities;
65u8 sclp_fac84;
66unsigned long long sclp_rzm;
67unsigned long long sclp_rnmax;
68
69static int __init sclp_cmd_sync_early(sclp_cmdw_t cmd, void *sccb)
70{
71 int rc;
72
73 __ctl_set_bit(0, 9);
74 rc = sclp_service_call(cmd, sccb);
75 if (rc)
76 goto out;
77 __load_psw_mask(PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_EA |
78 PSW_MASK_BA | PSW_MASK_EXT | PSW_MASK_WAIT);
79 local_irq_disable();
80out:
81 /* Contents of the sccb might have changed. */
82 barrier();
83 __ctl_clear_bit(0, 9);
84 return rc;
85}
86
Hendrik Brueckner56e57a82013-12-05 19:03:50 +010087static int __init sclp_read_info_early(struct read_info_sccb *sccb)
Michael Holzheuacf6a002013-11-13 10:38:27 +010088{
Hendrik Brueckner333cce92013-12-05 18:46:51 +010089 int rc, i;
Michael Holzheuacf6a002013-11-13 10:38:27 +010090 sclp_cmdw_t commands[] = {SCLP_CMDW_READ_SCP_INFO_FORCED,
91 SCLP_CMDW_READ_SCP_INFO};
92
Michael Holzheuacf6a002013-11-13 10:38:27 +010093 for (i = 0; i < ARRAY_SIZE(commands); i++) {
94 do {
95 memset(sccb, 0, sizeof(*sccb));
96 sccb->header.length = sizeof(*sccb);
97 sccb->header.function_code = 0x80;
98 sccb->header.control_mask[2] = 0x80;
99 rc = sclp_cmd_sync_early(commands[i], sccb);
100 } while (rc == -EBUSY);
101
102 if (rc)
103 break;
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100104 if (sccb->header.response_code == 0x10)
105 return 0;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100106 if (sccb->header.response_code != 0x1f0)
107 break;
108 }
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100109 return -EIO;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100110}
111
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100112static void __init sclp_facilities_detect(struct read_info_sccb *sccb)
Michael Holzheuacf6a002013-11-13 10:38:27 +0100113{
Heiko Carstens217a4402013-12-30 12:54:14 +0100114 struct sclp_cpu_entry *cpue;
115 u16 boot_cpu_address, cpu;
116
Hendrik Brueckner56e57a82013-12-05 19:03:50 +0100117 if (sclp_read_info_early(sccb))
Michael Holzheuacf6a002013-11-13 10:38:27 +0100118 return;
119
Michael Holzheuacf6a002013-11-13 10:38:27 +0100120 sclp_facilities = sccb->facilities;
121 sclp_fac84 = sccb->fac84;
122 if (sccb->fac85 & 0x02)
123 S390_lowcore.machine_flags |= MACHINE_FLAG_ESOP;
124 sclp_rnmax = sccb->rnmax ? sccb->rnmax : sccb->rnmax2;
125 sclp_rzm = sccb->rnsize ? sccb->rnsize : sccb->rnsize2;
126 sclp_rzm <<= 20;
Michael Mueller570126d2014-03-15 18:16:26 +0100127 sclp_ibc = sccb->ibc;
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100128
Heiko Carstenscf813db2014-03-10 14:50:16 +0100129 if (!sccb->hcpua) {
130 if (MACHINE_IS_VM)
131 sclp_max_cpu = 64;
132 else
133 sclp_max_cpu = sccb->ncpurl;
134 } else {
135 sclp_max_cpu = sccb->hcpua + 1;
136 }
137
Heiko Carstens217a4402013-12-30 12:54:14 +0100138 boot_cpu_address = stap();
139 cpue = (void *)sccb + sccb->cpuoff;
140 for (cpu = 0; cpu < sccb->ncpurl; cpue++, cpu++) {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100141 if (boot_cpu_address != cpue->core_id)
Heiko Carstens217a4402013-12-30 12:54:14 +0100142 continue;
143 sclp_siif = cpue->siif;
David Hildenbrandd614be02014-10-14 12:11:02 +0200144 sclp_sigpif = cpue->sigpif;
Heiko Carstens217a4402013-12-30 12:54:14 +0100145 break;
146 }
147
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100148 /* Save IPL information */
149 sclp_ipl_info.is_valid = 1;
150 if (sccb->flags & 0x2)
151 sclp_ipl_info.has_dump = 1;
152 memcpy(&sclp_ipl_info.loadparm, &sccb->loadparm, LOADPARM_LEN);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100153
154 sclp_mtid = (sccb->fac42 & 0x80) ? (sccb->fac42 & 31) : 0;
155 sclp_mtid_cp = (sccb->fac42 & 0x80) ? (sccb->fac43 & 31) : 0;
156 sclp_mtid_max = max(sclp_mtid, sclp_mtid_cp);
157 sclp_mtid_prev = (sccb->fac42 & 0x80) ? (sccb->fac66 & 31) : 0;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100158}
159
160bool __init sclp_has_linemode(void)
161{
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100162 return !!sclp_con_has_linemode;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100163}
164
165bool __init sclp_has_vt220(void)
166{
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100167 return !!sclp_con_has_vt220;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100168}
169
170unsigned long long sclp_get_rnmax(void)
171{
172 return sclp_rnmax;
173}
174
175unsigned long long sclp_get_rzm(void)
176{
177 return sclp_rzm;
178}
179
Heiko Carstenscf813db2014-03-10 14:50:16 +0100180unsigned int sclp_get_max_cpu(void)
181{
182 return sclp_max_cpu;
183}
184
Heiko Carstens217a4402013-12-30 12:54:14 +0100185int sclp_has_siif(void)
186{
187 return sclp_siif;
188}
189EXPORT_SYMBOL(sclp_has_siif);
190
David Hildenbrandd614be02014-10-14 12:11:02 +0200191int sclp_has_sigpif(void)
192{
193 return sclp_sigpif;
194}
195EXPORT_SYMBOL(sclp_has_sigpif);
196
Michael Mueller570126d2014-03-15 18:16:26 +0100197unsigned int sclp_get_ibc(void)
198{
199 return sclp_ibc;
200}
201EXPORT_SYMBOL(sclp_get_ibc);
202
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100203unsigned int sclp_get_mtid(u8 cpu_type)
204{
205 return cpu_type ? sclp_mtid : sclp_mtid_cp;
206}
207
208unsigned int sclp_get_mtid_max(void)
209{
210 return sclp_mtid_max;
211}
212
213unsigned int sclp_get_mtid_prev(void)
214{
215 return sclp_mtid_prev;
216}
217
Michael Holzheuacf6a002013-11-13 10:38:27 +0100218/*
219 * This function will be called after sclp_facilities_detect(), which gets
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100220 * called from early.c code. The sclp_facilities_detect() function retrieves
221 * and saves the IPL information.
Michael Holzheuacf6a002013-11-13 10:38:27 +0100222 */
223void __init sclp_get_ipl_info(struct sclp_ipl_info *info)
224{
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100225 *info = sclp_ipl_info;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100226}
227
Michael Holzheue657d8f2013-11-13 10:38:27 +0100228static int __init sclp_cmd_early(sclp_cmdw_t cmd, void *sccb)
229{
230 int rc;
231
232 do {
233 rc = sclp_cmd_sync_early(cmd, sccb);
234 } while (rc == -EBUSY);
235
236 if (rc)
237 return -EIO;
238 if (((struct sccb_header *) sccb)->response_code != 0x0020)
239 return -EIO;
240 return 0;
241}
242
243static void __init sccb_init_eq_size(struct sdias_sccb *sccb)
244{
245 memset(sccb, 0, sizeof(*sccb));
246
247 sccb->hdr.length = sizeof(*sccb);
248 sccb->evbuf.hdr.length = sizeof(struct sdias_evbuf);
249 sccb->evbuf.hdr.type = EVTYP_SDIAS;
250 sccb->evbuf.event_qual = SDIAS_EQ_SIZE;
251 sccb->evbuf.data_id = SDIAS_DI_FCP_DUMP;
252 sccb->evbuf.event_id = 4712;
253 sccb->evbuf.dbs = 1;
254}
255
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100256static int __init sclp_set_event_mask(struct init_sccb *sccb,
257 unsigned long receive_mask,
Michael Holzheue657d8f2013-11-13 10:38:27 +0100258 unsigned long send_mask)
259{
Michael Holzheue657d8f2013-11-13 10:38:27 +0100260 memset(sccb, 0, sizeof(*sccb));
261 sccb->header.length = sizeof(*sccb);
262 sccb->mask_length = sizeof(sccb_mask_t);
263 sccb->receive_mask = receive_mask;
264 sccb->send_mask = send_mask;
265 return sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_MASK, sccb);
266}
267
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100268static long __init sclp_hsa_size_init(struct sdias_sccb *sccb)
Michael Holzheue657d8f2013-11-13 10:38:27 +0100269{
Michael Holzheue657d8f2013-11-13 10:38:27 +0100270 sccb_init_eq_size(sccb);
271 if (sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_DATA, sccb))
272 return -EIO;
Michael Holzheu94999342014-02-24 14:30:00 +0100273 if (sccb->evbuf.blk_cnt == 0)
274 return 0;
275 return (sccb->evbuf.blk_cnt - 1) * PAGE_SIZE;
Michael Holzheue657d8f2013-11-13 10:38:27 +0100276}
277
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100278static long __init sclp_hsa_copy_wait(struct sccb_header *sccb)
Michael Holzheue657d8f2013-11-13 10:38:27 +0100279{
Michael Holzheue657d8f2013-11-13 10:38:27 +0100280 memset(sccb, 0, PAGE_SIZE);
281 sccb->length = PAGE_SIZE;
282 if (sclp_cmd_early(SCLP_CMDW_READ_EVENT_DATA, sccb))
283 return -EIO;
Michael Holzheu94999342014-02-24 14:30:00 +0100284 if (((struct sdias_sccb *) sccb)->evbuf.blk_cnt == 0)
285 return 0;
Michael Holzheue657d8f2013-11-13 10:38:27 +0100286 return (((struct sdias_sccb *) sccb)->evbuf.blk_cnt - 1) * PAGE_SIZE;
287}
288
289unsigned long sclp_get_hsa_size(void)
290{
291 return sclp_hsa_size;
292}
293
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100294static void __init sclp_hsa_size_detect(void *sccb)
Michael Holzheue657d8f2013-11-13 10:38:27 +0100295{
296 long size;
297
298 /* First try synchronous interface (LPAR) */
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100299 if (sclp_set_event_mask(sccb, 0, 0x40000010))
Michael Holzheue657d8f2013-11-13 10:38:27 +0100300 return;
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100301 size = sclp_hsa_size_init(sccb);
Michael Holzheue657d8f2013-11-13 10:38:27 +0100302 if (size < 0)
303 return;
304 if (size != 0)
305 goto out;
306 /* Then try asynchronous interface (z/VM) */
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100307 if (sclp_set_event_mask(sccb, 0x00000010, 0x40000010))
Michael Holzheue657d8f2013-11-13 10:38:27 +0100308 return;
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100309 size = sclp_hsa_size_init(sccb);
Michael Holzheue657d8f2013-11-13 10:38:27 +0100310 if (size < 0)
311 return;
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100312 size = sclp_hsa_copy_wait(sccb);
Michael Holzheue657d8f2013-11-13 10:38:27 +0100313 if (size < 0)
314 return;
315out:
Michael Holzheue657d8f2013-11-13 10:38:27 +0100316 sclp_hsa_size = size;
317}
Michael Holzheu7b50da52013-11-13 10:38:27 +0100318
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100319static unsigned int __init sclp_con_check_linemode(struct init_sccb *sccb)
320{
Martin Schwidefskyea61a572014-09-09 12:53:12 +0200321 if (!(sccb->sclp_send_mask & EVTYP_OPCMD_MASK))
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100322 return 0;
323 if (!(sccb->sclp_receive_mask & (EVTYP_MSG_MASK | EVTYP_PMSGCMD_MASK)))
324 return 0;
325 return 1;
326}
327
328static void __init sclp_console_detect(struct init_sccb *sccb)
329{
330 if (sccb->header.response_code != 0x20)
331 return;
332
333 if (sccb->sclp_send_mask & EVTYP_VT220MSG_MASK)
334 sclp_con_has_vt220 = 1;
335
336 if (sclp_con_check_linemode(sccb))
337 sclp_con_has_linemode = 1;
338}
339
Michael Holzheu7b50da52013-11-13 10:38:27 +0100340void __init sclp_early_detect(void)
341{
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100342 void *sccb = &sccb_early;
343
344 sclp_facilities_detect(sccb);
345 sclp_hsa_size_detect(sccb);
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100346
347 /* Turn off SCLP event notifications. Also save remote masks in the
348 * sccb. These are sufficient to detect sclp console capabilities.
349 */
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100350 sclp_set_event_mask(sccb, 0, 0);
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100351 sclp_console_detect(sccb);
Michael Holzheu7b50da52013-11-13 10:38:27 +0100352}