pc: Support firmware configuration with -blockdev
[qemu.git] / target / s390x / helper.c
blob8e9573221cdb05e85658b3ad35a8be1178063dbf
1 /*
2 * S/390 helpers
4 * Copyright (c) 2009 Ulrich Hecht
5 * Copyright (c) 2011 Alexander Graf
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "cpu.h"
23 #include "internal.h"
24 #include "exec/gdbstub.h"
25 #include "qemu/timer.h"
26 #include "hw/s390x/ioinst.h"
27 #include "sysemu/hw_accel.h"
28 #ifndef CONFIG_USER_ONLY
29 #include "sysemu/sysemu.h"
30 #endif
32 #ifndef CONFIG_USER_ONLY
33 void s390x_tod_timer(void *opaque)
35 cpu_inject_clock_comparator((S390CPU *) opaque);
38 void s390x_cpu_timer(void *opaque)
40 cpu_inject_cpu_timer((S390CPU *) opaque);
42 #endif
44 #ifndef CONFIG_USER_ONLY
46 hwaddr s390_cpu_get_phys_page_debug(CPUState *cs, vaddr vaddr)
48 S390CPU *cpu = S390_CPU(cs);
49 CPUS390XState *env = &cpu->env;
50 target_ulong raddr;
51 int prot;
52 uint64_t asc = env->psw.mask & PSW_MASK_ASC;
54 /* 31-Bit mode */
55 if (!(env->psw.mask & PSW_MASK_64)) {
56 vaddr &= 0x7fffffff;
59 if (mmu_translate(env, vaddr, MMU_INST_FETCH, asc, &raddr, &prot, false)) {
60 return -1;
62 return raddr;
65 hwaddr s390_cpu_get_phys_addr_debug(CPUState *cs, vaddr vaddr)
67 hwaddr phys_addr;
68 target_ulong page;
70 page = vaddr & TARGET_PAGE_MASK;
71 phys_addr = cpu_get_phys_page_debug(cs, page);
72 phys_addr += (vaddr & ~TARGET_PAGE_MASK);
74 return phys_addr;
77 static inline bool is_special_wait_psw(uint64_t psw_addr)
79 /* signal quiesce */
80 return psw_addr == 0xfffUL;
83 void s390_handle_wait(S390CPU *cpu)
85 CPUState *cs = CPU(cpu);
87 if (s390_cpu_halt(cpu) == 0) {
88 #ifndef CONFIG_USER_ONLY
89 if (is_special_wait_psw(cpu->env.psw.addr)) {
90 qemu_system_shutdown_request(SHUTDOWN_CAUSE_GUEST_SHUTDOWN);
91 } else {
92 cpu->env.crash_reason = S390_CRASH_REASON_DISABLED_WAIT;
93 qemu_system_guest_panicked(cpu_get_crash_info(cs));
95 #endif
99 void load_psw(CPUS390XState *env, uint64_t mask, uint64_t addr)
101 uint64_t old_mask = env->psw.mask;
103 env->psw.addr = addr;
104 env->psw.mask = mask;
106 /* KVM will handle all WAITs and trigger a WAIT exit on disabled_wait */
107 if (!tcg_enabled()) {
108 return;
110 env->cc_op = (mask >> 44) & 3;
112 if ((old_mask ^ mask) & PSW_MASK_PER) {
113 s390_cpu_recompute_watchpoints(CPU(s390_env_get_cpu(env)));
116 if (mask & PSW_MASK_WAIT) {
117 s390_handle_wait(s390_env_get_cpu(env));
121 uint64_t get_psw_mask(CPUS390XState *env)
123 uint64_t r = env->psw.mask;
125 if (tcg_enabled()) {
126 env->cc_op = calc_cc(env, env->cc_op, env->cc_src, env->cc_dst,
127 env->cc_vr);
129 r &= ~PSW_MASK_CC;
130 assert(!(env->cc_op & ~3));
131 r |= (uint64_t)env->cc_op << 44;
134 return r;
137 LowCore *cpu_map_lowcore(CPUS390XState *env)
139 S390CPU *cpu = s390_env_get_cpu(env);
140 LowCore *lowcore;
141 hwaddr len = sizeof(LowCore);
143 lowcore = cpu_physical_memory_map(env->psa, &len, 1);
145 if (len < sizeof(LowCore)) {
146 cpu_abort(CPU(cpu), "Could not map lowcore\n");
149 return lowcore;
152 void cpu_unmap_lowcore(LowCore *lowcore)
154 cpu_physical_memory_unmap(lowcore, sizeof(LowCore), 1, sizeof(LowCore));
157 void do_restart_interrupt(CPUS390XState *env)
159 uint64_t mask, addr;
160 LowCore *lowcore;
162 lowcore = cpu_map_lowcore(env);
164 lowcore->restart_old_psw.mask = cpu_to_be64(get_psw_mask(env));
165 lowcore->restart_old_psw.addr = cpu_to_be64(env->psw.addr);
166 mask = be64_to_cpu(lowcore->restart_new_psw.mask);
167 addr = be64_to_cpu(lowcore->restart_new_psw.addr);
169 cpu_unmap_lowcore(lowcore);
170 env->pending_int &= ~INTERRUPT_RESTART;
172 load_psw(env, mask, addr);
175 void s390_cpu_recompute_watchpoints(CPUState *cs)
177 const int wp_flags = BP_CPU | BP_MEM_WRITE | BP_STOP_BEFORE_ACCESS;
178 S390CPU *cpu = S390_CPU(cs);
179 CPUS390XState *env = &cpu->env;
181 /* We are called when the watchpoints have changed. First
182 remove them all. */
183 cpu_watchpoint_remove_all(cs, BP_CPU);
185 /* Return if PER is not enabled */
186 if (!(env->psw.mask & PSW_MASK_PER)) {
187 return;
190 /* Return if storage-alteration event is not enabled. */
191 if (!(env->cregs[9] & PER_CR9_EVENT_STORE)) {
192 return;
195 if (env->cregs[10] == 0 && env->cregs[11] == -1LL) {
196 /* We can't create a watchoint spanning the whole memory range, so
197 split it in two parts. */
198 cpu_watchpoint_insert(cs, 0, 1ULL << 63, wp_flags, NULL);
199 cpu_watchpoint_insert(cs, 1ULL << 63, 1ULL << 63, wp_flags, NULL);
200 } else if (env->cregs[10] > env->cregs[11]) {
201 /* The address range loops, create two watchpoints. */
202 cpu_watchpoint_insert(cs, env->cregs[10], -env->cregs[10],
203 wp_flags, NULL);
204 cpu_watchpoint_insert(cs, 0, env->cregs[11] + 1, wp_flags, NULL);
206 } else {
207 /* Default case, create a single watchpoint. */
208 cpu_watchpoint_insert(cs, env->cregs[10],
209 env->cregs[11] - env->cregs[10] + 1,
210 wp_flags, NULL);
214 typedef struct SigpSaveArea {
215 uint64_t fprs[16]; /* 0x0000 */
216 uint64_t grs[16]; /* 0x0080 */
217 PSW psw; /* 0x0100 */
218 uint8_t pad_0x0110[0x0118 - 0x0110]; /* 0x0110 */
219 uint32_t prefix; /* 0x0118 */
220 uint32_t fpc; /* 0x011c */
221 uint8_t pad_0x0120[0x0124 - 0x0120]; /* 0x0120 */
222 uint32_t todpr; /* 0x0124 */
223 uint64_t cputm; /* 0x0128 */
224 uint64_t ckc; /* 0x0130 */
225 uint8_t pad_0x0138[0x0140 - 0x0138]; /* 0x0138 */
226 uint32_t ars[16]; /* 0x0140 */
227 uint64_t crs[16]; /* 0x0384 */
228 } SigpSaveArea;
229 QEMU_BUILD_BUG_ON(sizeof(SigpSaveArea) != 512);
231 int s390_store_status(S390CPU *cpu, hwaddr addr, bool store_arch)
233 static const uint8_t ar_id = 1;
234 SigpSaveArea *sa;
235 hwaddr len = sizeof(*sa);
236 int i;
238 sa = cpu_physical_memory_map(addr, &len, 1);
239 if (!sa) {
240 return -EFAULT;
242 if (len != sizeof(*sa)) {
243 cpu_physical_memory_unmap(sa, len, 1, 0);
244 return -EFAULT;
247 if (store_arch) {
248 cpu_physical_memory_write(offsetof(LowCore, ar_access_id), &ar_id, 1);
250 for (i = 0; i < 16; ++i) {
251 sa->fprs[i] = cpu_to_be64(get_freg(&cpu->env, i)->ll);
253 for (i = 0; i < 16; ++i) {
254 sa->grs[i] = cpu_to_be64(cpu->env.regs[i]);
256 sa->psw.addr = cpu_to_be64(cpu->env.psw.addr);
257 sa->psw.mask = cpu_to_be64(get_psw_mask(&cpu->env));
258 sa->prefix = cpu_to_be32(cpu->env.psa);
259 sa->fpc = cpu_to_be32(cpu->env.fpc);
260 sa->todpr = cpu_to_be32(cpu->env.todpr);
261 sa->cputm = cpu_to_be64(cpu->env.cputm);
262 sa->ckc = cpu_to_be64(cpu->env.ckc >> 8);
263 for (i = 0; i < 16; ++i) {
264 sa->ars[i] = cpu_to_be32(cpu->env.aregs[i]);
266 for (i = 0; i < 16; ++i) {
267 sa->crs[i] = cpu_to_be64(cpu->env.cregs[i]);
270 cpu_physical_memory_unmap(sa, len, 1, len);
272 return 0;
275 typedef struct SigpAdtlSaveArea {
276 uint64_t vregs[32][2]; /* 0x0000 */
277 uint8_t pad_0x0200[0x0400 - 0x0200]; /* 0x0200 */
278 uint64_t gscb[4]; /* 0x0400 */
279 uint8_t pad_0x0420[0x1000 - 0x0420]; /* 0x0420 */
280 } SigpAdtlSaveArea;
281 QEMU_BUILD_BUG_ON(sizeof(SigpAdtlSaveArea) != 4096);
283 #define ADTL_GS_MIN_SIZE 2048 /* minimal size of adtl save area for GS */
284 int s390_store_adtl_status(S390CPU *cpu, hwaddr addr, hwaddr len)
286 SigpAdtlSaveArea *sa;
287 hwaddr save = len;
288 int i;
290 sa = cpu_physical_memory_map(addr, &save, 1);
291 if (!sa) {
292 return -EFAULT;
294 if (save != len) {
295 cpu_physical_memory_unmap(sa, len, 1, 0);
296 return -EFAULT;
299 if (s390_has_feat(S390_FEAT_VECTOR)) {
300 for (i = 0; i < 32; i++) {
301 sa->vregs[i][0] = cpu_to_be64(cpu->env.vregs[i][0].ll);
302 sa->vregs[i][1] = cpu_to_be64(cpu->env.vregs[i][1].ll);
305 if (s390_has_feat(S390_FEAT_GUARDED_STORAGE) && len >= ADTL_GS_MIN_SIZE) {
306 for (i = 0; i < 4; i++) {
307 sa->gscb[i] = cpu_to_be64(cpu->env.gscb[i]);
311 cpu_physical_memory_unmap(sa, len, 1, len);
312 return 0;
314 #endif /* CONFIG_USER_ONLY */
316 void s390_cpu_dump_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf,
317 int flags)
319 S390CPU *cpu = S390_CPU(cs);
320 CPUS390XState *env = &cpu->env;
321 int i;
323 if (env->cc_op > 3) {
324 cpu_fprintf(f, "PSW=mask %016" PRIx64 " addr %016" PRIx64 " cc %15s\n",
325 env->psw.mask, env->psw.addr, cc_name(env->cc_op));
326 } else {
327 cpu_fprintf(f, "PSW=mask %016" PRIx64 " addr %016" PRIx64 " cc %02x\n",
328 env->psw.mask, env->psw.addr, env->cc_op);
331 for (i = 0; i < 16; i++) {
332 cpu_fprintf(f, "R%02d=%016" PRIx64, i, env->regs[i]);
333 if ((i % 4) == 3) {
334 cpu_fprintf(f, "\n");
335 } else {
336 cpu_fprintf(f, " ");
340 if (flags & CPU_DUMP_FPU) {
341 if (s390_has_feat(S390_FEAT_VECTOR)) {
342 for (i = 0; i < 32; i++) {
343 cpu_fprintf(f, "V%02d=%016" PRIx64 "%016" PRIx64 "%c",
344 i, env->vregs[i][0].ll, env->vregs[i][1].ll,
345 i % 2 ? '\n' : ' ');
347 } else {
348 for (i = 0; i < 16; i++) {
349 cpu_fprintf(f, "F%02d=%016" PRIx64 "%c",
350 i, get_freg(env, i)->ll,
351 (i % 4) == 3 ? '\n' : ' ');
356 #ifndef CONFIG_USER_ONLY
357 for (i = 0; i < 16; i++) {
358 cpu_fprintf(f, "C%02d=%016" PRIx64, i, env->cregs[i]);
359 if ((i % 4) == 3) {
360 cpu_fprintf(f, "\n");
361 } else {
362 cpu_fprintf(f, " ");
365 #endif
367 #ifdef DEBUG_INLINE_BRANCHES
368 for (i = 0; i < CC_OP_MAX; i++) {
369 cpu_fprintf(f, " %15s = %10ld\t%10ld\n", cc_name(i),
370 inline_branch_miss[i], inline_branch_hit[i]);
372 #endif
374 cpu_fprintf(f, "\n");
377 const char *cc_name(enum cc_op cc_op)
379 static const char * const cc_names[] = {
380 [CC_OP_CONST0] = "CC_OP_CONST0",
381 [CC_OP_CONST1] = "CC_OP_CONST1",
382 [CC_OP_CONST2] = "CC_OP_CONST2",
383 [CC_OP_CONST3] = "CC_OP_CONST3",
384 [CC_OP_DYNAMIC] = "CC_OP_DYNAMIC",
385 [CC_OP_STATIC] = "CC_OP_STATIC",
386 [CC_OP_NZ] = "CC_OP_NZ",
387 [CC_OP_LTGT_32] = "CC_OP_LTGT_32",
388 [CC_OP_LTGT_64] = "CC_OP_LTGT_64",
389 [CC_OP_LTUGTU_32] = "CC_OP_LTUGTU_32",
390 [CC_OP_LTUGTU_64] = "CC_OP_LTUGTU_64",
391 [CC_OP_LTGT0_32] = "CC_OP_LTGT0_32",
392 [CC_OP_LTGT0_64] = "CC_OP_LTGT0_64",
393 [CC_OP_ADD_64] = "CC_OP_ADD_64",
394 [CC_OP_ADDU_64] = "CC_OP_ADDU_64",
395 [CC_OP_ADDC_64] = "CC_OP_ADDC_64",
396 [CC_OP_SUB_64] = "CC_OP_SUB_64",
397 [CC_OP_SUBU_64] = "CC_OP_SUBU_64",
398 [CC_OP_SUBB_64] = "CC_OP_SUBB_64",
399 [CC_OP_ABS_64] = "CC_OP_ABS_64",
400 [CC_OP_NABS_64] = "CC_OP_NABS_64",
401 [CC_OP_ADD_32] = "CC_OP_ADD_32",
402 [CC_OP_ADDU_32] = "CC_OP_ADDU_32",
403 [CC_OP_ADDC_32] = "CC_OP_ADDC_32",
404 [CC_OP_SUB_32] = "CC_OP_SUB_32",
405 [CC_OP_SUBU_32] = "CC_OP_SUBU_32",
406 [CC_OP_SUBB_32] = "CC_OP_SUBB_32",
407 [CC_OP_ABS_32] = "CC_OP_ABS_32",
408 [CC_OP_NABS_32] = "CC_OP_NABS_32",
409 [CC_OP_COMP_32] = "CC_OP_COMP_32",
410 [CC_OP_COMP_64] = "CC_OP_COMP_64",
411 [CC_OP_TM_32] = "CC_OP_TM_32",
412 [CC_OP_TM_64] = "CC_OP_TM_64",
413 [CC_OP_NZ_F32] = "CC_OP_NZ_F32",
414 [CC_OP_NZ_F64] = "CC_OP_NZ_F64",
415 [CC_OP_NZ_F128] = "CC_OP_NZ_F128",
416 [CC_OP_ICM] = "CC_OP_ICM",
417 [CC_OP_SLA_32] = "CC_OP_SLA_32",
418 [CC_OP_SLA_64] = "CC_OP_SLA_64",
419 [CC_OP_FLOGR] = "CC_OP_FLOGR",
420 [CC_OP_LCBB] = "CC_OP_LCBB",
423 return cc_names[cc_op];