blob: 6804354c42bd29214463fc62d87fe13c3f92e775 [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
Sebastian Otta313bdc2015-06-25 09:32:22 +020010#include <linux/errno.h>
Michael Holzheuacf6a002013-11-13 10:38:27 +010011#include <asm/ctl_reg.h>
Michael Holzheue657d8f2013-11-13 10:38:27 +010012#include <asm/sclp.h>
13#include <asm/ipl.h>
14#include "sclp_sdias.h"
15#include "sclp.h"
16
Michael Holzheuacf6a002013-11-13 10:38:27 +010017#define SCLP_CMDW_READ_SCP_INFO 0x00020001
18#define SCLP_CMDW_READ_SCP_INFO_FORCED 0x00120001
19
20struct read_info_sccb {
21 struct sccb_header header; /* 0-7 */
22 u16 rnmax; /* 8-9 */
23 u8 rnsize; /* 10 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010024 u8 _pad_11[16 - 11]; /* 11-15 */
Heiko Carstenscf813db2014-03-10 14:50:16 +010025 u16 ncpurl; /* 16-17 */
Heiko Carstens217a4402013-12-30 12:54:14 +010026 u16 cpuoff; /* 18-19 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010027 u8 _pad_20[24 - 20]; /* 20-23 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010028 u8 loadparm[8]; /* 24-31 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010029 u8 _pad_32[42 - 32]; /* 32-41 */
30 u8 fac42; /* 42 */
31 u8 fac43; /* 43 */
32 u8 _pad_44[48 - 44]; /* 44-47 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010033 u64 facilities; /* 48-55 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010034 u8 _pad_56[66 - 56]; /* 56-65 */
35 u8 fac66; /* 66 */
36 u8 _pad_67[76 - 67]; /* 67-83 */
Michael Mueller570126d2014-03-15 18:16:26 +010037 u32 ibc; /* 76-79 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010038 u8 _pad80[84 - 80]; /* 80-83 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010039 u8 fac84; /* 84 */
40 u8 fac85; /* 85 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010041 u8 _pad_86[91 - 86]; /* 86-90 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010042 u8 flags; /* 91 */
Guenther Hutzl32e6b232014-12-01 17:24:42 +010043 u8 _pad_92[99 - 92]; /* 92-98 */
44 u8 hamaxpow; /* 99 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010045 u32 rnsize2; /* 100-103 */
46 u64 rnmax2; /* 104-111 */
Eugene (jno) Dvurechenskif7ba1d32014-10-09 16:04:48 +020047 u8 _pad_112[116 - 112]; /* 112-115 */
48 u8 fac116; /* 116 */
49 u8 _pad_117[119 - 117]; /* 117-118 */
50 u8 fac119; /* 119 */
Heiko Carstenscf813db2014-03-10 14:50:16 +010051 u16 hcpua; /* 120-121 */
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010052 u8 _pad_122[4096 - 122]; /* 122-4095 */
Michael Holzheuacf6a002013-11-13 10:38:27 +010053} __packed __aligned(PAGE_SIZE);
54
Hendrik Brueckner56e57a82013-12-05 19:03:50 +010055static char sccb_early[PAGE_SIZE] __aligned(PAGE_SIZE) __initdata;
Hendrik Brueckner333cce92013-12-05 18:46:51 +010056static struct sclp_ipl_info sclp_ipl_info;
Michael Holzheue657d8f2013-11-13 10:38:27 +010057
David Hildenbrand37c5f6c2015-05-06 13:18:59 +020058struct sclp_info sclp;
59EXPORT_SYMBOL(sclp);
Michael Holzheuacf6a002013-11-13 10:38:27 +010060
61static int __init sclp_cmd_sync_early(sclp_cmdw_t cmd, void *sccb)
62{
63 int rc;
64
65 __ctl_set_bit(0, 9);
66 rc = sclp_service_call(cmd, sccb);
67 if (rc)
68 goto out;
69 __load_psw_mask(PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_EA |
70 PSW_MASK_BA | PSW_MASK_EXT | PSW_MASK_WAIT);
71 local_irq_disable();
72out:
73 /* Contents of the sccb might have changed. */
74 barrier();
75 __ctl_clear_bit(0, 9);
76 return rc;
77}
78
Hendrik Brueckner56e57a82013-12-05 19:03:50 +010079static int __init sclp_read_info_early(struct read_info_sccb *sccb)
Michael Holzheuacf6a002013-11-13 10:38:27 +010080{
Hendrik Brueckner333cce92013-12-05 18:46:51 +010081 int rc, i;
Michael Holzheuacf6a002013-11-13 10:38:27 +010082 sclp_cmdw_t commands[] = {SCLP_CMDW_READ_SCP_INFO_FORCED,
83 SCLP_CMDW_READ_SCP_INFO};
84
Michael Holzheuacf6a002013-11-13 10:38:27 +010085 for (i = 0; i < ARRAY_SIZE(commands); i++) {
86 do {
87 memset(sccb, 0, sizeof(*sccb));
88 sccb->header.length = sizeof(*sccb);
89 sccb->header.function_code = 0x80;
90 sccb->header.control_mask[2] = 0x80;
91 rc = sclp_cmd_sync_early(commands[i], sccb);
92 } while (rc == -EBUSY);
93
94 if (rc)
95 break;
Hendrik Brueckner333cce92013-12-05 18:46:51 +010096 if (sccb->header.response_code == 0x10)
97 return 0;
Michael Holzheuacf6a002013-11-13 10:38:27 +010098 if (sccb->header.response_code != 0x1f0)
99 break;
100 }
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100101 return -EIO;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100102}
103
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100104static void __init sclp_facilities_detect(struct read_info_sccb *sccb)
Michael Holzheuacf6a002013-11-13 10:38:27 +0100105{
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200106 struct sclp_core_entry *cpue;
Heiko Carstens217a4402013-12-30 12:54:14 +0100107 u16 boot_cpu_address, cpu;
108
Hendrik Brueckner56e57a82013-12-05 19:03:50 +0100109 if (sclp_read_info_early(sccb))
Michael Holzheuacf6a002013-11-13 10:38:27 +0100110 return;
111
David Hildenbrand78335a32015-05-06 09:17:51 +0200112 sclp.facilities = sccb->facilities;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200113 sclp.has_sprp = !!(sccb->fac84 & 0x02);
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200114 sclp.has_core_type = !!(sccb->fac84 & 0x01);
Eugene (jno) Dvurechenskif7ba1d32014-10-09 16:04:48 +0200115 sclp.has_esca = !!(sccb->fac116 & 0x08);
116 sclp.has_hvs = !!(sccb->fac119 & 0x80);
Michael Holzheuacf6a002013-11-13 10:38:27 +0100117 if (sccb->fac85 & 0x02)
118 S390_lowcore.machine_flags |= MACHINE_FLAG_ESOP;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200119 sclp.rnmax = sccb->rnmax ? sccb->rnmax : sccb->rnmax2;
120 sclp.rzm = sccb->rnsize ? sccb->rnsize : sccb->rnsize2;
121 sclp.rzm <<= 20;
122 sclp.ibc = sccb->ibc;
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100123
Guenther Hutzl32e6b232014-12-01 17:24:42 +0100124 if (sccb->hamaxpow && sccb->hamaxpow < 64)
125 sclp.hamax = (1UL << sccb->hamaxpow) - 1;
126 else
127 sclp.hamax = U64_MAX;
128
Heiko Carstenscf813db2014-03-10 14:50:16 +0100129 if (!sccb->hcpua) {
130 if (MACHINE_IS_VM)
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200131 sclp.max_cores = 64;
Heiko Carstenscf813db2014-03-10 14:50:16 +0100132 else
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200133 sclp.max_cores = sccb->ncpurl;
Heiko Carstenscf813db2014-03-10 14:50:16 +0100134 } else {
Martin Schwidefskyd08d9432015-06-18 14:23:00 +0200135 sclp.max_cores = sccb->hcpua + 1;
Heiko Carstenscf813db2014-03-10 14:50:16 +0100136 }
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;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200143 sclp.has_siif = cpue->siif;
144 sclp.has_sigpif = cpue->sigpif;
David Hildenbrand8dfd5232015-02-24 15:51:55 +0100145 sclp.has_sief2 = cpue->sief2;
Heiko Carstens217a4402013-12-30 12:54:14 +0100146 break;
147 }
148
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100149 /* Save IPL information */
150 sclp_ipl_info.is_valid = 1;
151 if (sccb->flags & 0x2)
152 sclp_ipl_info.has_dump = 1;
153 memcpy(&sclp_ipl_info.loadparm, &sccb->loadparm, LOADPARM_LEN);
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +0100154
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200155 sclp.mtid = (sccb->fac42 & 0x80) ? (sccb->fac42 & 31) : 0;
156 sclp.mtid_cp = (sccb->fac42 & 0x80) ? (sccb->fac43 & 31) : 0;
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200157 sclp.mtid_prev = (sccb->fac42 & 0x80) ? (sccb->fac66 & 31) : 0;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100158}
159
Michael Holzheuacf6a002013-11-13 10:38:27 +0100160/*
161 * This function will be called after sclp_facilities_detect(), which gets
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100162 * called from early.c code. The sclp_facilities_detect() function retrieves
163 * and saves the IPL information.
Michael Holzheuacf6a002013-11-13 10:38:27 +0100164 */
165void __init sclp_get_ipl_info(struct sclp_ipl_info *info)
166{
Hendrik Brueckner333cce92013-12-05 18:46:51 +0100167 *info = sclp_ipl_info;
Michael Holzheuacf6a002013-11-13 10:38:27 +0100168}
169
Michael Holzheue657d8f2013-11-13 10:38:27 +0100170static int __init sclp_cmd_early(sclp_cmdw_t cmd, void *sccb)
171{
172 int rc;
173
174 do {
175 rc = sclp_cmd_sync_early(cmd, sccb);
176 } while (rc == -EBUSY);
177
178 if (rc)
179 return -EIO;
180 if (((struct sccb_header *) sccb)->response_code != 0x0020)
181 return -EIO;
182 return 0;
183}
184
185static void __init sccb_init_eq_size(struct sdias_sccb *sccb)
186{
187 memset(sccb, 0, sizeof(*sccb));
188
189 sccb->hdr.length = sizeof(*sccb);
190 sccb->evbuf.hdr.length = sizeof(struct sdias_evbuf);
191 sccb->evbuf.hdr.type = EVTYP_SDIAS;
192 sccb->evbuf.event_qual = SDIAS_EQ_SIZE;
193 sccb->evbuf.data_id = SDIAS_DI_FCP_DUMP;
194 sccb->evbuf.event_id = 4712;
195 sccb->evbuf.dbs = 1;
196}
197
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100198static int __init sclp_set_event_mask(struct init_sccb *sccb,
199 unsigned long receive_mask,
Michael Holzheue657d8f2013-11-13 10:38:27 +0100200 unsigned long send_mask)
201{
Michael Holzheue657d8f2013-11-13 10:38:27 +0100202 memset(sccb, 0, sizeof(*sccb));
203 sccb->header.length = sizeof(*sccb);
204 sccb->mask_length = sizeof(sccb_mask_t);
205 sccb->receive_mask = receive_mask;
206 sccb->send_mask = send_mask;
207 return sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_MASK, sccb);
208}
209
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100210static long __init sclp_hsa_size_init(struct sdias_sccb *sccb)
Michael Holzheue657d8f2013-11-13 10:38:27 +0100211{
Michael Holzheue657d8f2013-11-13 10:38:27 +0100212 sccb_init_eq_size(sccb);
213 if (sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_DATA, sccb))
214 return -EIO;
Michael Holzheu94999342014-02-24 14:30:00 +0100215 if (sccb->evbuf.blk_cnt == 0)
216 return 0;
217 return (sccb->evbuf.blk_cnt - 1) * PAGE_SIZE;
Michael Holzheue657d8f2013-11-13 10:38:27 +0100218}
219
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100220static long __init sclp_hsa_copy_wait(struct sccb_header *sccb)
Michael Holzheue657d8f2013-11-13 10:38:27 +0100221{
Michael Holzheue657d8f2013-11-13 10:38:27 +0100222 memset(sccb, 0, PAGE_SIZE);
223 sccb->length = PAGE_SIZE;
224 if (sclp_cmd_early(SCLP_CMDW_READ_EVENT_DATA, sccb))
225 return -EIO;
Michael Holzheu94999342014-02-24 14:30:00 +0100226 if (((struct sdias_sccb *) sccb)->evbuf.blk_cnt == 0)
227 return 0;
Michael Holzheue657d8f2013-11-13 10:38:27 +0100228 return (((struct sdias_sccb *) sccb)->evbuf.blk_cnt - 1) * PAGE_SIZE;
229}
230
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100231static void __init sclp_hsa_size_detect(void *sccb)
Michael Holzheue657d8f2013-11-13 10:38:27 +0100232{
233 long size;
234
235 /* First try synchronous interface (LPAR) */
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100236 if (sclp_set_event_mask(sccb, 0, 0x40000010))
Michael Holzheue657d8f2013-11-13 10:38:27 +0100237 return;
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100238 size = sclp_hsa_size_init(sccb);
Michael Holzheue657d8f2013-11-13 10:38:27 +0100239 if (size < 0)
240 return;
241 if (size != 0)
242 goto out;
243 /* Then try asynchronous interface (z/VM) */
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100244 if (sclp_set_event_mask(sccb, 0x00000010, 0x40000010))
Michael Holzheue657d8f2013-11-13 10:38:27 +0100245 return;
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100246 size = sclp_hsa_size_init(sccb);
Michael Holzheue657d8f2013-11-13 10:38:27 +0100247 if (size < 0)
248 return;
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100249 size = sclp_hsa_copy_wait(sccb);
Michael Holzheue657d8f2013-11-13 10:38:27 +0100250 if (size < 0)
251 return;
252out:
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200253 sclp.hsa_size = size;
Michael Holzheue657d8f2013-11-13 10:38:27 +0100254}
Michael Holzheu7b50da52013-11-13 10:38:27 +0100255
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100256static unsigned int __init sclp_con_check_linemode(struct init_sccb *sccb)
257{
Martin Schwidefskyea61a572014-09-09 12:53:12 +0200258 if (!(sccb->sclp_send_mask & EVTYP_OPCMD_MASK))
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100259 return 0;
260 if (!(sccb->sclp_receive_mask & (EVTYP_MSG_MASK | EVTYP_PMSGCMD_MASK)))
261 return 0;
262 return 1;
263}
264
265static void __init sclp_console_detect(struct init_sccb *sccb)
266{
267 if (sccb->header.response_code != 0x20)
268 return;
269
270 if (sccb->sclp_send_mask & EVTYP_VT220MSG_MASK)
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200271 sclp.has_vt220 = 1;
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100272
273 if (sclp_con_check_linemode(sccb))
David Hildenbrand37c5f6c2015-05-06 13:18:59 +0200274 sclp.has_linemode = 1;
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100275}
276
Michael Holzheu7b50da52013-11-13 10:38:27 +0100277void __init sclp_early_detect(void)
278{
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100279 void *sccb = &sccb_early;
280
281 sclp_facilities_detect(sccb);
282 sclp_hsa_size_detect(sccb);
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100283
284 /* Turn off SCLP event notifications. Also save remote masks in the
285 * sccb. These are sufficient to detect sclp console capabilities.
286 */
Hendrik Brueckner5d5de1a2013-12-05 19:13:36 +0100287 sclp_set_event_mask(sccb, 0, 0);
Hendrik Brueckner52733e02013-12-05 19:28:39 +0100288 sclp_console_detect(sccb);
Michael Holzheu7b50da52013-11-13 10:38:27 +0100289}