2009-12-05 12:44:21 +01:00
|
|
|
/*
|
2012-09-02 09:33:35 +02:00
|
|
|
* S/390 misc helper routines
|
2009-12-05 12:44:21 +01:00
|
|
|
*
|
2011-03-23 10:58:07 +01:00
|
|
|
* Copyright (c) 2009 Ulrich Hecht
|
2009-12-05 12:44:21 +01:00
|
|
|
* Copyright (c) 2009 Alexander Graf
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2010-03-07 16:48:43 +01:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2009-12-05 12:44:21 +01:00
|
|
|
*/
|
|
|
|
|
2011-07-13 14:44:15 +02:00
|
|
|
#include "cpu.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/memory.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/host-utils.h"
|
2012-02-13 06:33:45 +01:00
|
|
|
#include "helper.h"
|
2011-03-23 10:58:07 +01:00
|
|
|
#include <string.h>
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/kvm.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
2011-06-23 10:05:12 +02:00
|
|
|
#ifdef CONFIG_KVM
|
|
|
|
#include <linux/kvm.h>
|
|
|
|
#endif
|
2009-12-05 12:44:21 +01:00
|
|
|
|
2012-09-02 09:33:30 +02:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/softmmu_exec.h"
|
2013-07-25 16:57:45 +02:00
|
|
|
#include "sysemu/cpus.h"
|
2012-12-17 18:20:04 +01:00
|
|
|
#include "sysemu/sysemu.h"
|
2013-05-21 17:04:58 +02:00
|
|
|
#include "hw/s390x/ebcdic.h"
|
2009-12-05 12:44:21 +01:00
|
|
|
#endif
|
2011-03-23 10:58:07 +01:00
|
|
|
|
2011-03-23 10:58:07 +01:00
|
|
|
/* #define DEBUG_HELPER */
|
|
|
|
#ifdef DEBUG_HELPER
|
|
|
|
#define HELPER_LOG(x...) qemu_log(x)
|
|
|
|
#else
|
|
|
|
#define HELPER_LOG(x...)
|
|
|
|
#endif
|
|
|
|
|
2012-09-06 02:27:40 +02:00
|
|
|
/* Raise an exception dynamically from a helper function. */
|
|
|
|
void QEMU_NORETURN runtime_exception(CPUS390XState *env, int excp,
|
|
|
|
uintptr_t retaddr)
|
|
|
|
{
|
|
|
|
int t;
|
|
|
|
|
|
|
|
env->exception_index = EXCP_PGM;
|
|
|
|
env->int_pgm_code = excp;
|
|
|
|
|
|
|
|
/* Use the (ultimate) callers address to find the insn that trapped. */
|
|
|
|
cpu_restore_state(env, retaddr);
|
|
|
|
|
|
|
|
/* Advance past the insn. */
|
|
|
|
t = cpu_ldub_code(env, env->psw.addr);
|
|
|
|
env->int_pgm_ilen = t = get_ilen(t);
|
|
|
|
env->psw.addr += 2 * t;
|
|
|
|
|
|
|
|
cpu_loop_exit(env);
|
|
|
|
}
|
|
|
|
|
2012-09-15 04:31:57 +02:00
|
|
|
/* Raise an exception statically from a TB. */
|
2012-09-02 09:33:39 +02:00
|
|
|
void HELPER(exception)(CPUS390XState *env, uint32_t excp)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
2012-09-02 09:33:30 +02:00
|
|
|
HELPER_LOG("%s: exception %d\n", __func__, excp);
|
2011-03-23 10:58:07 +01:00
|
|
|
env->exception_index = excp;
|
2011-05-14 14:52:35 +02:00
|
|
|
cpu_loop_exit(env);
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2013-01-01 09:24:55 +01:00
|
|
|
|
2012-09-15 04:31:57 +02:00
|
|
|
void program_interrupt(CPUS390XState *env, uint32_t code, int ilen)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
2012-09-24 23:55:51 +02:00
|
|
|
qemu_log_mask(CPU_LOG_INT, "program interrupt at %#" PRIx64 "\n",
|
|
|
|
env->psw.addr);
|
2011-03-23 10:58:07 +01:00
|
|
|
|
|
|
|
if (kvm_enabled()) {
|
2011-06-23 10:05:12 +02:00
|
|
|
#ifdef CONFIG_KVM
|
2012-10-31 06:06:49 +01:00
|
|
|
kvm_s390_interrupt(s390_env_get_cpu(env), KVM_S390_PROGRAM_INT, code);
|
2011-06-23 10:05:12 +02:00
|
|
|
#endif
|
2011-03-23 10:58:07 +01:00
|
|
|
} else {
|
|
|
|
env->int_pgm_code = code;
|
2012-09-15 04:31:57 +02:00
|
|
|
env->int_pgm_ilen = ilen;
|
2011-03-23 10:58:07 +01:00
|
|
|
env->exception_index = EXCP_PGM;
|
2011-05-14 14:52:35 +02:00
|
|
|
cpu_loop_exit(env);
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SCLP service call */
|
2012-08-27 20:12:40 +02:00
|
|
|
uint32_t HELPER(servc)(CPUS390XState *env, uint64_t r1, uint64_t r2)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
2012-08-27 20:12:40 +02:00
|
|
|
int r = sclp_service_call(r1, r2);
|
2012-07-23 23:37:04 +02:00
|
|
|
if (r < 0) {
|
|
|
|
program_interrupt(env, -r, 4);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return r;
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
|
2013-06-19 17:27:15 +02:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2013-07-25 16:57:45 +02:00
|
|
|
static void cpu_reset_all(void)
|
|
|
|
{
|
2013-06-24 23:50:24 +02:00
|
|
|
CPUState *cs;
|
2013-07-25 16:57:45 +02:00
|
|
|
S390CPUClass *scc;
|
|
|
|
|
2013-06-24 23:50:24 +02:00
|
|
|
CPU_FOREACH(cs) {
|
|
|
|
scc = S390_CPU_GET_CLASS(cs);
|
|
|
|
scc->cpu_reset(cs);
|
2013-07-25 16:57:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 09:32:03 +02:00
|
|
|
static void cpu_full_reset_all(void)
|
|
|
|
{
|
|
|
|
CPUState *cpu;
|
|
|
|
|
|
|
|
CPU_FOREACH(cpu) {
|
|
|
|
cpu_reset(cpu);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int modified_clear_reset(S390CPU *cpu)
|
|
|
|
{
|
|
|
|
S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
|
|
|
|
|
|
|
|
pause_all_vcpus();
|
|
|
|
cpu_synchronize_all_states();
|
|
|
|
cpu_full_reset_all();
|
|
|
|
io_subsystem_reset();
|
|
|
|
scc->load_normal(CPU(cpu));
|
|
|
|
cpu_synchronize_all_post_reset();
|
|
|
|
resume_all_vcpus();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-25 16:57:45 +02:00
|
|
|
static int load_normal_reset(S390CPU *cpu)
|
|
|
|
{
|
|
|
|
S390CPUClass *scc = S390_CPU_GET_CLASS(cpu);
|
|
|
|
|
|
|
|
pause_all_vcpus();
|
|
|
|
cpu_synchronize_all_states();
|
|
|
|
cpu_reset_all();
|
|
|
|
io_subsystem_reset();
|
|
|
|
scc->initial_cpu_reset(CPU(cpu));
|
|
|
|
scc->load_normal(CPU(cpu));
|
|
|
|
cpu_synchronize_all_post_reset();
|
|
|
|
resume_all_vcpus();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-06-19 17:27:15 +02:00
|
|
|
#define DIAG_308_RC_NO_CONF 0x0102
|
|
|
|
#define DIAG_308_RC_INVALID 0x0402
|
|
|
|
void handle_diag_308(CPUS390XState *env, uint64_t r1, uint64_t r3)
|
|
|
|
{
|
|
|
|
uint64_t addr = env->regs[r1];
|
|
|
|
uint64_t subcode = env->regs[r3];
|
|
|
|
|
|
|
|
if (env->psw.mask & PSW_MASK_PSTATE) {
|
|
|
|
program_interrupt(env, PGM_PRIVILEGED, ILEN_LATER_INC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((subcode & ~0x0ffffULL) || (subcode > 6)) {
|
|
|
|
program_interrupt(env, PGM_SPECIFICATION, ILEN_LATER_INC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (subcode) {
|
2013-09-19 09:32:03 +02:00
|
|
|
case 0:
|
|
|
|
modified_clear_reset(s390_env_get_cpu(env));
|
|
|
|
break;
|
2013-07-25 16:57:45 +02:00
|
|
|
case 1:
|
|
|
|
load_normal_reset(s390_env_get_cpu(env));
|
|
|
|
break;
|
2013-06-19 17:27:15 +02:00
|
|
|
case 5:
|
|
|
|
if ((r1 & 1) || (addr & 0x0fffULL)) {
|
|
|
|
program_interrupt(env, PGM_SPECIFICATION, ILEN_LATER_INC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
env->regs[r1+1] = DIAG_308_RC_INVALID;
|
|
|
|
return;
|
|
|
|
case 6:
|
|
|
|
if ((r1 & 1) || (addr & 0x0fffULL)) {
|
|
|
|
program_interrupt(env, PGM_SPECIFICATION, ILEN_LATER_INC);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
env->regs[r1+1] = DIAG_308_RC_NO_CONF;
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
hw_error("Unhandled diag308 subcode %" PRIx64, subcode);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-03-23 10:58:07 +01:00
|
|
|
/* DIAG */
|
2012-09-02 09:33:39 +02:00
|
|
|
uint64_t HELPER(diag)(CPUS390XState *env, uint32_t num, uint64_t mem,
|
|
|
|
uint64_t code)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
|
|
|
uint64_t r;
|
|
|
|
|
|
|
|
switch (num) {
|
|
|
|
case 0x500:
|
|
|
|
/* KVM hypercall */
|
2013-01-17 05:23:46 +01:00
|
|
|
r = s390_virtio_hypercall(env);
|
2011-03-23 10:58:07 +01:00
|
|
|
break;
|
|
|
|
case 0x44:
|
|
|
|
/* yield */
|
|
|
|
r = 0;
|
|
|
|
break;
|
|
|
|
case 0x308:
|
|
|
|
/* ipl */
|
|
|
|
r = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r = -1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (r) {
|
2012-09-15 04:31:57 +02:00
|
|
|
program_interrupt(env, PGM_OPERATION, ILEN_LATER_INC);
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set Prefix */
|
2012-09-02 09:33:39 +02:00
|
|
|
void HELPER(spx)(CPUS390XState *env, uint64_t a1)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
2012-08-25 01:11:32 +02:00
|
|
|
uint32_t prefix = a1 & 0x7fffe000;
|
|
|
|
env->psa = prefix;
|
2011-03-23 10:58:07 +01:00
|
|
|
qemu_log("prefix: %#x\n", prefix);
|
|
|
|
tlb_flush_page(env, 0);
|
|
|
|
tlb_flush_page(env, TARGET_PAGE_SIZE);
|
|
|
|
}
|
|
|
|
|
2012-03-14 01:38:22 +01:00
|
|
|
static inline uint64_t clock_value(CPUS390XState *env)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
|
|
|
uint64_t time;
|
|
|
|
|
|
|
|
time = env->tod_offset +
|
2013-08-21 17:03:08 +02:00
|
|
|
time2tod(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) - env->tod_basetime);
|
2011-03-23 10:58:07 +01:00
|
|
|
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Store Clock */
|
2012-08-25 00:31:07 +02:00
|
|
|
uint64_t HELPER(stck)(CPUS390XState *env)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
2012-08-25 00:31:07 +02:00
|
|
|
return clock_value(env);
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set Clock Comparator */
|
2012-08-25 00:36:58 +02:00
|
|
|
void HELPER(sckc)(CPUS390XState *env, uint64_t time)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
|
|
|
if (time == -1ULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* difference between now and then */
|
|
|
|
time -= clock_value(env);
|
|
|
|
/* nanoseconds */
|
|
|
|
time = (time * 125) >> 9;
|
|
|
|
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_mod(env->tod_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + time);
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Store Clock Comparator */
|
2012-08-25 00:36:58 +02:00
|
|
|
uint64_t HELPER(stckc)(CPUS390XState *env)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
|
|
|
/* XXX implement */
|
2012-08-25 00:36:58 +02:00
|
|
|
return 0;
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set CPU Timer */
|
2012-08-25 00:47:26 +02:00
|
|
|
void HELPER(spt)(CPUS390XState *env, uint64_t time)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
|
|
|
if (time == -1ULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* nanoseconds */
|
|
|
|
time = (time * 125) >> 9;
|
|
|
|
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_mod(env->cpu_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + time);
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Store CPU Timer */
|
2012-08-25 00:47:26 +02:00
|
|
|
uint64_t HELPER(stpt)(CPUS390XState *env)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
|
|
|
/* XXX implement */
|
2012-08-25 00:47:26 +02:00
|
|
|
return 0;
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Store System Information */
|
2012-08-27 19:43:38 +02:00
|
|
|
uint32_t HELPER(stsi)(CPUS390XState *env, uint64_t a0,
|
|
|
|
uint64_t r0, uint64_t r1)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
|
|
|
int cc = 0;
|
|
|
|
int sel1, sel2;
|
|
|
|
|
|
|
|
if ((r0 & STSI_LEVEL_MASK) <= STSI_LEVEL_3 &&
|
|
|
|
((r0 & STSI_R0_RESERVED_MASK) || (r1 & STSI_R1_RESERVED_MASK))) {
|
|
|
|
/* valid function code, invalid reserved bits */
|
|
|
|
program_interrupt(env, PGM_SPECIFICATION, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
sel1 = r0 & STSI_R0_SEL1_MASK;
|
|
|
|
sel2 = r1 & STSI_R1_SEL2_MASK;
|
|
|
|
|
|
|
|
/* XXX: spec exception if sysib is not 4k-aligned */
|
|
|
|
|
|
|
|
switch (r0 & STSI_LEVEL_MASK) {
|
|
|
|
case STSI_LEVEL_1:
|
|
|
|
if ((sel1 == 1) && (sel2 == 1)) {
|
|
|
|
/* Basic Machine Configuration */
|
|
|
|
struct sysib_111 sysib;
|
|
|
|
|
|
|
|
memset(&sysib, 0, sizeof(sysib));
|
|
|
|
ebcdic_put(sysib.manuf, "QEMU ", 16);
|
|
|
|
/* same as machine type number in STORE CPU ID */
|
|
|
|
ebcdic_put(sysib.type, "QEMU", 4);
|
|
|
|
/* same as model number in STORE CPU ID */
|
|
|
|
ebcdic_put(sysib.model, "QEMU ", 16);
|
|
|
|
ebcdic_put(sysib.sequence, "QEMU ", 16);
|
|
|
|
ebcdic_put(sysib.plant, "QEMU", 4);
|
2012-09-02 09:33:30 +02:00
|
|
|
cpu_physical_memory_rw(a0, (uint8_t *)&sysib, sizeof(sysib), 1);
|
2011-03-23 10:58:07 +01:00
|
|
|
} else if ((sel1 == 2) && (sel2 == 1)) {
|
|
|
|
/* Basic Machine CPU */
|
|
|
|
struct sysib_121 sysib;
|
|
|
|
|
|
|
|
memset(&sysib, 0, sizeof(sysib));
|
|
|
|
/* XXX make different for different CPUs? */
|
|
|
|
ebcdic_put(sysib.sequence, "QEMUQEMUQEMUQEMU", 16);
|
|
|
|
ebcdic_put(sysib.plant, "QEMU", 4);
|
|
|
|
stw_p(&sysib.cpu_addr, env->cpu_num);
|
2012-09-02 09:33:30 +02:00
|
|
|
cpu_physical_memory_rw(a0, (uint8_t *)&sysib, sizeof(sysib), 1);
|
2011-03-23 10:58:07 +01:00
|
|
|
} else if ((sel1 == 2) && (sel2 == 2)) {
|
|
|
|
/* Basic Machine CPUs */
|
|
|
|
struct sysib_122 sysib;
|
|
|
|
|
|
|
|
memset(&sysib, 0, sizeof(sysib));
|
|
|
|
stl_p(&sysib.capability, 0x443afc29);
|
|
|
|
/* XXX change when SMP comes */
|
|
|
|
stw_p(&sysib.total_cpus, 1);
|
|
|
|
stw_p(&sysib.active_cpus, 1);
|
|
|
|
stw_p(&sysib.standby_cpus, 0);
|
|
|
|
stw_p(&sysib.reserved_cpus, 0);
|
2012-09-02 09:33:30 +02:00
|
|
|
cpu_physical_memory_rw(a0, (uint8_t *)&sysib, sizeof(sysib), 1);
|
2011-03-23 10:58:07 +01:00
|
|
|
} else {
|
|
|
|
cc = 3;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case STSI_LEVEL_2:
|
2012-09-02 09:33:30 +02:00
|
|
|
{
|
|
|
|
if ((sel1 == 2) && (sel2 == 1)) {
|
|
|
|
/* LPAR CPU */
|
|
|
|
struct sysib_221 sysib;
|
|
|
|
|
|
|
|
memset(&sysib, 0, sizeof(sysib));
|
|
|
|
/* XXX make different for different CPUs? */
|
|
|
|
ebcdic_put(sysib.sequence, "QEMUQEMUQEMUQEMU", 16);
|
|
|
|
ebcdic_put(sysib.plant, "QEMU", 4);
|
|
|
|
stw_p(&sysib.cpu_addr, env->cpu_num);
|
|
|
|
stw_p(&sysib.cpu_id, 0);
|
|
|
|
cpu_physical_memory_rw(a0, (uint8_t *)&sysib, sizeof(sysib), 1);
|
|
|
|
} else if ((sel1 == 2) && (sel2 == 2)) {
|
|
|
|
/* LPAR CPUs */
|
|
|
|
struct sysib_222 sysib;
|
|
|
|
|
|
|
|
memset(&sysib, 0, sizeof(sysib));
|
|
|
|
stw_p(&sysib.lpar_num, 0);
|
|
|
|
sysib.lcpuc = 0;
|
|
|
|
/* XXX change when SMP comes */
|
|
|
|
stw_p(&sysib.total_cpus, 1);
|
|
|
|
stw_p(&sysib.conf_cpus, 1);
|
|
|
|
stw_p(&sysib.standby_cpus, 0);
|
|
|
|
stw_p(&sysib.reserved_cpus, 0);
|
|
|
|
ebcdic_put(sysib.name, "QEMU ", 8);
|
|
|
|
stl_p(&sysib.caf, 1000);
|
|
|
|
stw_p(&sysib.dedicated_cpus, 0);
|
|
|
|
stw_p(&sysib.shared_cpus, 0);
|
|
|
|
cpu_physical_memory_rw(a0, (uint8_t *)&sysib, sizeof(sysib), 1);
|
|
|
|
} else {
|
|
|
|
cc = 3;
|
|
|
|
}
|
|
|
|
break;
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
case STSI_LEVEL_3:
|
2012-09-02 09:33:30 +02:00
|
|
|
{
|
|
|
|
if ((sel1 == 2) && (sel2 == 2)) {
|
|
|
|
/* VM CPUs */
|
|
|
|
struct sysib_322 sysib;
|
|
|
|
|
|
|
|
memset(&sysib, 0, sizeof(sysib));
|
|
|
|
sysib.count = 1;
|
|
|
|
/* XXX change when SMP comes */
|
|
|
|
stw_p(&sysib.vm[0].total_cpus, 1);
|
|
|
|
stw_p(&sysib.vm[0].conf_cpus, 1);
|
|
|
|
stw_p(&sysib.vm[0].standby_cpus, 0);
|
|
|
|
stw_p(&sysib.vm[0].reserved_cpus, 0);
|
|
|
|
ebcdic_put(sysib.vm[0].name, "KVMguest", 8);
|
|
|
|
stl_p(&sysib.vm[0].caf, 1000);
|
|
|
|
ebcdic_put(sysib.vm[0].cpi, "KVM/Linux ", 16);
|
|
|
|
cpu_physical_memory_rw(a0, (uint8_t *)&sysib, sizeof(sysib), 1);
|
|
|
|
} else {
|
|
|
|
cc = 3;
|
|
|
|
}
|
|
|
|
break;
|
2011-03-23 10:58:07 +01:00
|
|
|
}
|
|
|
|
case STSI_LEVEL_CURRENT:
|
|
|
|
env->regs[0] = STSI_LEVEL_3;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cc = 3;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
2012-09-02 09:33:39 +02:00
|
|
|
uint32_t HELPER(sigp)(CPUS390XState *env, uint64_t order_code, uint32_t r1,
|
|
|
|
uint64_t cpu_addr)
|
2011-03-23 10:58:07 +01:00
|
|
|
{
|
|
|
|
int cc = 0;
|
|
|
|
|
|
|
|
HELPER_LOG("%s: %016" PRIx64 " %08x %016" PRIx64 "\n",
|
2012-09-02 09:33:30 +02:00
|
|
|
__func__, order_code, r1, cpu_addr);
|
2011-03-23 10:58:07 +01:00
|
|
|
|
2012-09-02 09:33:30 +02:00
|
|
|
/* Remember: Use "R1 or R1 + 1, whichever is the odd-numbered register"
|
2011-03-23 10:58:07 +01:00
|
|
|
as parameter (input). Status (output) is always R1. */
|
|
|
|
|
|
|
|
switch (order_code) {
|
|
|
|
case SIGP_SET_ARCH:
|
|
|
|
/* switch arch */
|
|
|
|
break;
|
|
|
|
case SIGP_SENSE:
|
|
|
|
/* enumerate CPU status */
|
|
|
|
if (cpu_addr) {
|
|
|
|
/* XXX implement when SMP comes */
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
env->regs[r1] &= 0xffffffff00000000ULL;
|
|
|
|
cc = 1;
|
|
|
|
break;
|
2012-09-02 09:33:30 +02:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2011-07-14 11:52:08 +02:00
|
|
|
case SIGP_RESTART:
|
|
|
|
qemu_system_reset_request();
|
|
|
|
cpu_loop_exit(env);
|
|
|
|
break;
|
|
|
|
case SIGP_STOP:
|
|
|
|
qemu_system_shutdown_request();
|
|
|
|
cpu_loop_exit(env);
|
|
|
|
break;
|
|
|
|
#endif
|
2011-03-23 10:58:07 +01:00
|
|
|
default:
|
|
|
|
/* unknown sigp */
|
|
|
|
fprintf(stderr, "XXX unknown sigp: 0x%" PRIx64 "\n", order_code);
|
|
|
|
cc = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
#endif
|