s390/sclp: detect intervention bypass facility
[cascardo/linux.git] / drivers / s390 / char / sclp_early.c
1 /*
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
10 #include <linux/errno.h>
11 #include <asm/ctl_reg.h>
12 #include <asm/sclp.h>
13 #include <asm/ipl.h>
14 #include "sclp_sdias.h"
15 #include "sclp.h"
16
17 #define SCLP_CMDW_READ_SCP_INFO         0x00020001
18 #define SCLP_CMDW_READ_SCP_INFO_FORCED  0x00120001
19
20 struct read_info_sccb {
21         struct  sccb_header header;     /* 0-7 */
22         u16     rnmax;                  /* 8-9 */
23         u8      rnsize;                 /* 10 */
24         u8      _pad_11[16 - 11];       /* 11-15 */
25         u16     ncpurl;                 /* 16-17 */
26         u16     cpuoff;                 /* 18-19 */
27         u8      _pad_20[24 - 20];       /* 20-23 */
28         u8      loadparm[8];            /* 24-31 */
29         u8      _pad_32[42 - 32];       /* 32-41 */
30         u8      fac42;                  /* 42 */
31         u8      fac43;                  /* 43 */
32         u8      _pad_44[48 - 44];       /* 44-47 */
33         u64     facilities;             /* 48-55 */
34         u8      _pad_56[66 - 56];       /* 56-65 */
35         u8      fac66;                  /* 66 */
36         u8      _pad_67[76 - 67];       /* 67-83 */
37         u32     ibc;                    /* 76-79 */
38         u8      _pad80[84 - 80];        /* 80-83 */
39         u8      fac84;                  /* 84 */
40         u8      fac85;                  /* 85 */
41         u8      _pad_86[91 - 86];       /* 86-90 */
42         u8      flags;                  /* 91 */
43         u8      _pad_92[99 - 92];       /* 92-98 */
44         u8      hamaxpow;               /* 99 */
45         u32     rnsize2;                /* 100-103 */
46         u64     rnmax2;                 /* 104-111 */
47         u8      _pad_112[116 - 112];    /* 112-115 */
48         u8      fac116;                 /* 116 */
49         u8      _pad_117[119 - 117];    /* 117-118 */
50         u8      fac119;                 /* 119 */
51         u16     hcpua;                  /* 120-121 */
52         u8      _pad_122[124 - 122];    /* 122-123 */
53         u32     hmfai;                  /* 124-127 */
54         u8      _pad_128[4096 - 128];   /* 128-4095 */
55 } __packed __aligned(PAGE_SIZE);
56
57 static char sccb_early[PAGE_SIZE] __aligned(PAGE_SIZE) __initdata;
58 static struct sclp_ipl_info sclp_ipl_info;
59
60 struct sclp_info sclp;
61 EXPORT_SYMBOL(sclp);
62
63 static int __init sclp_cmd_sync_early(sclp_cmdw_t cmd, void *sccb)
64 {
65         int rc;
66
67         __ctl_set_bit(0, 9);
68         rc = sclp_service_call(cmd, sccb);
69         if (rc)
70                 goto out;
71         __load_psw_mask(PSW_DEFAULT_KEY | PSW_MASK_BASE | PSW_MASK_EA |
72                         PSW_MASK_BA | PSW_MASK_EXT | PSW_MASK_WAIT);
73         local_irq_disable();
74 out:
75         /* Contents of the sccb might have changed. */
76         barrier();
77         __ctl_clear_bit(0, 9);
78         return rc;
79 }
80
81 static int __init sclp_read_info_early(struct read_info_sccb *sccb)
82 {
83         int rc, i;
84         sclp_cmdw_t commands[] = {SCLP_CMDW_READ_SCP_INFO_FORCED,
85                                   SCLP_CMDW_READ_SCP_INFO};
86
87         for (i = 0; i < ARRAY_SIZE(commands); i++) {
88                 do {
89                         memset(sccb, 0, sizeof(*sccb));
90                         sccb->header.length = sizeof(*sccb);
91                         sccb->header.function_code = 0x80;
92                         sccb->header.control_mask[2] = 0x80;
93                         rc = sclp_cmd_sync_early(commands[i], sccb);
94                 } while (rc == -EBUSY);
95
96                 if (rc)
97                         break;
98                 if (sccb->header.response_code == 0x10)
99                         return 0;
100                 if (sccb->header.response_code != 0x1f0)
101                         break;
102         }
103         return -EIO;
104 }
105
106 static void __init sclp_facilities_detect(struct read_info_sccb *sccb)
107 {
108         struct sclp_core_entry *cpue;
109         u16 boot_cpu_address, cpu;
110
111         if (sclp_read_info_early(sccb))
112                 return;
113
114         sclp.facilities = sccb->facilities;
115         sclp.has_sprp = !!(sccb->fac84 & 0x02);
116         sclp.has_core_type = !!(sccb->fac84 & 0x01);
117         sclp.has_gsls = !!(sccb->fac85 & 0x80);
118         sclp.has_64bscao = !!(sccb->fac116 & 0x80);
119         sclp.has_cmma = !!(sccb->fac116 & 0x40);
120         sclp.has_esca = !!(sccb->fac116 & 0x08);
121         sclp.has_hvs = !!(sccb->fac119 & 0x80);
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;
127         sclp.ibc = sccb->ibc;
128
129         if (sccb->hamaxpow && sccb->hamaxpow < 64)
130                 sclp.hamax = (1UL << sccb->hamaxpow) - 1;
131         else
132                 sclp.hamax = U64_MAX;
133
134         if (!sccb->hcpua) {
135                 if (MACHINE_IS_VM)
136                         sclp.max_cores = 64;
137                 else
138                         sclp.max_cores = sccb->ncpurl;
139         } else {
140                 sclp.max_cores = sccb->hcpua + 1;
141         }
142
143         boot_cpu_address = stap();
144         cpue = (void *)sccb + sccb->cpuoff;
145         for (cpu = 0; cpu < sccb->ncpurl; cpue++, cpu++) {
146                 if (boot_cpu_address != cpue->core_id)
147                         continue;
148                 sclp.has_siif = cpue->siif;
149                 sclp.has_sigpif = cpue->sigpif;
150                 sclp.has_sief2 = cpue->sief2;
151                 sclp.has_gpere = cpue->gpere;
152                 sclp.has_ib = cpue->ib;
153                 break;
154         }
155
156         /* Save IPL information */
157         sclp_ipl_info.is_valid = 1;
158         if (sccb->flags & 0x2)
159                 sclp_ipl_info.has_dump = 1;
160         memcpy(&sclp_ipl_info.loadparm, &sccb->loadparm, LOADPARM_LEN);
161
162         sclp.mtid = (sccb->fac42 & 0x80) ? (sccb->fac42 & 31) : 0;
163         sclp.mtid_cp = (sccb->fac42 & 0x80) ? (sccb->fac43 & 31) : 0;
164         sclp.mtid_prev = (sccb->fac42 & 0x80) ? (sccb->fac66 & 31) : 0;
165
166         sclp.hmfai = sccb->hmfai;
167 }
168
169 /*
170  * This function will be called after sclp_facilities_detect(), which gets
171  * called from early.c code. The sclp_facilities_detect() function retrieves
172  * and saves the IPL information.
173  */
174 void __init sclp_get_ipl_info(struct sclp_ipl_info *info)
175 {
176         *info = sclp_ipl_info;
177 }
178
179 static int __init sclp_cmd_early(sclp_cmdw_t cmd, void *sccb)
180 {
181         int rc;
182
183         do {
184                 rc = sclp_cmd_sync_early(cmd, sccb);
185         } while (rc == -EBUSY);
186
187         if (rc)
188                 return -EIO;
189         if (((struct sccb_header *) sccb)->response_code != 0x0020)
190                 return -EIO;
191         return 0;
192 }
193
194 static void __init sccb_init_eq_size(struct sdias_sccb *sccb)
195 {
196         memset(sccb, 0, sizeof(*sccb));
197
198         sccb->hdr.length = sizeof(*sccb);
199         sccb->evbuf.hdr.length = sizeof(struct sdias_evbuf);
200         sccb->evbuf.hdr.type = EVTYP_SDIAS;
201         sccb->evbuf.event_qual = SDIAS_EQ_SIZE;
202         sccb->evbuf.data_id = SDIAS_DI_FCP_DUMP;
203         sccb->evbuf.event_id = 4712;
204         sccb->evbuf.dbs = 1;
205 }
206
207 static int __init sclp_set_event_mask(struct init_sccb *sccb,
208                                       unsigned long receive_mask,
209                                       unsigned long send_mask)
210 {
211         memset(sccb, 0, sizeof(*sccb));
212         sccb->header.length = sizeof(*sccb);
213         sccb->mask_length = sizeof(sccb_mask_t);
214         sccb->receive_mask = receive_mask;
215         sccb->send_mask = send_mask;
216         return sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_MASK, sccb);
217 }
218
219 static long __init sclp_hsa_size_init(struct sdias_sccb *sccb)
220 {
221         sccb_init_eq_size(sccb);
222         if (sclp_cmd_early(SCLP_CMDW_WRITE_EVENT_DATA, sccb))
223                 return -EIO;
224         if (sccb->evbuf.blk_cnt == 0)
225                 return 0;
226         return (sccb->evbuf.blk_cnt - 1) * PAGE_SIZE;
227 }
228
229 static long __init sclp_hsa_copy_wait(struct sccb_header *sccb)
230 {
231         memset(sccb, 0, PAGE_SIZE);
232         sccb->length = PAGE_SIZE;
233         if (sclp_cmd_early(SCLP_CMDW_READ_EVENT_DATA, sccb))
234                 return -EIO;
235         if (((struct sdias_sccb *) sccb)->evbuf.blk_cnt == 0)
236                 return 0;
237         return (((struct sdias_sccb *) sccb)->evbuf.blk_cnt - 1) * PAGE_SIZE;
238 }
239
240 static void __init sclp_hsa_size_detect(void *sccb)
241 {
242         long size;
243
244         /* First try synchronous interface (LPAR) */
245         if (sclp_set_event_mask(sccb, 0, 0x40000010))
246                 return;
247         size = sclp_hsa_size_init(sccb);
248         if (size < 0)
249                 return;
250         if (size != 0)
251                 goto out;
252         /* Then try asynchronous interface (z/VM) */
253         if (sclp_set_event_mask(sccb, 0x00000010, 0x40000010))
254                 return;
255         size = sclp_hsa_size_init(sccb);
256         if (size < 0)
257                 return;
258         size = sclp_hsa_copy_wait(sccb);
259         if (size < 0)
260                 return;
261 out:
262         sclp.hsa_size = size;
263 }
264
265 static unsigned int __init sclp_con_check_linemode(struct init_sccb *sccb)
266 {
267         if (!(sccb->sclp_send_mask & EVTYP_OPCMD_MASK))
268                 return 0;
269         if (!(sccb->sclp_receive_mask & (EVTYP_MSG_MASK | EVTYP_PMSGCMD_MASK)))
270                 return 0;
271         return 1;
272 }
273
274 static void __init sclp_console_detect(struct init_sccb *sccb)
275 {
276         if (sccb->header.response_code != 0x20)
277                 return;
278
279         if (sccb->sclp_send_mask & EVTYP_VT220MSG_MASK)
280                 sclp.has_vt220 = 1;
281
282         if (sclp_con_check_linemode(sccb))
283                 sclp.has_linemode = 1;
284 }
285
286 void __init sclp_early_detect(void)
287 {
288         void *sccb = &sccb_early;
289
290         sclp_facilities_detect(sccb);
291         sclp_hsa_size_detect(sccb);
292
293         /* Turn off SCLP event notifications.  Also save remote masks in the
294          * sccb.  These are sufficient to detect sclp console capabilities.
295          */
296         sclp_set_event_mask(sccb, 0, 0);
297         sclp_console_detect(sccb);
298 }