s390x/flic: cache the common flic class in a central function
[qemu.git] / target / s390x / interrupt.c
blob25cfb3eef8c265214af08a3e9c3707c2398d387d
1 /*
2 * QEMU S/390 Interrupt support
4 * Copyright IBM Corp. 2012, 2014
6 * This work is licensed under the terms of the GNU GPL, version 2 or (at your
7 * option) any later version. See the COPYING file in the top-level directory.
8 */
10 #include "qemu/osdep.h"
11 #include "qemu/log.h"
12 #include "cpu.h"
13 #include "kvm_s390x.h"
14 #include "internal.h"
15 #include "exec/exec-all.h"
16 #include "sysemu/kvm.h"
17 #include "hw/s390x/ioinst.h"
18 #if !defined(CONFIG_USER_ONLY)
19 #include "hw/s390x/s390_flic.h"
20 #endif
22 /* Ensure to exit the TB after this call! */
23 void trigger_pgm_exception(CPUS390XState *env, uint32_t code, uint32_t ilen)
25 CPUState *cs = CPU(s390_env_get_cpu(env));
27 cs->exception_index = EXCP_PGM;
28 env->int_pgm_code = code;
29 env->int_pgm_ilen = ilen;
32 static void tcg_s390_program_interrupt(CPUS390XState *env, uint32_t code,
33 int ilen, uintptr_t ra)
35 #ifdef CONFIG_TCG
36 trigger_pgm_exception(env, code, ilen);
37 cpu_loop_exit_restore(CPU(s390_env_get_cpu(env)), ra);
38 #else
39 g_assert_not_reached();
40 #endif
43 void s390_program_interrupt(CPUS390XState *env, uint32_t code, int ilen,
44 uintptr_t ra)
46 S390CPU *cpu = s390_env_get_cpu(env);
48 qemu_log_mask(CPU_LOG_INT, "program interrupt at %#" PRIx64 "\n",
49 env->psw.addr);
51 if (kvm_enabled()) {
52 kvm_s390_program_interrupt(cpu, code);
53 } else if (tcg_enabled()) {
54 tcg_s390_program_interrupt(env, code, ilen, ra);
55 } else {
56 g_assert_not_reached();
60 #if !defined(CONFIG_USER_ONLY)
61 void cpu_inject_clock_comparator(S390CPU *cpu)
63 CPUS390XState *env = &cpu->env;
65 env->pending_int |= INTERRUPT_EXT_CLOCK_COMPARATOR;
66 cpu_interrupt(CPU(cpu), CPU_INTERRUPT_HARD);
69 void cpu_inject_cpu_timer(S390CPU *cpu)
71 CPUS390XState *env = &cpu->env;
73 env->pending_int |= INTERRUPT_EXT_CPU_TIMER;
74 cpu_interrupt(CPU(cpu), CPU_INTERRUPT_HARD);
77 void cpu_inject_emergency_signal(S390CPU *cpu, uint16_t src_cpu_addr)
79 CPUS390XState *env = &cpu->env;
81 g_assert(src_cpu_addr < S390_MAX_CPUS);
82 set_bit(src_cpu_addr, env->emergency_signals);
84 env->pending_int |= INTERRUPT_EMERGENCY_SIGNAL;
85 cpu_interrupt(CPU(cpu), CPU_INTERRUPT_HARD);
88 int cpu_inject_external_call(S390CPU *cpu, uint16_t src_cpu_addr)
90 CPUS390XState *env = &cpu->env;
92 g_assert(src_cpu_addr < S390_MAX_CPUS);
93 if (env->pending_int & INTERRUPT_EXTERNAL_CALL) {
94 return -EBUSY;
96 env->external_call_addr = src_cpu_addr;
98 env->pending_int |= INTERRUPT_EXTERNAL_CALL;
99 cpu_interrupt(CPU(cpu), CPU_INTERRUPT_HARD);
100 return 0;
103 void cpu_inject_restart(S390CPU *cpu)
105 CPUS390XState *env = &cpu->env;
107 if (kvm_enabled()) {
108 kvm_s390_restart_interrupt(cpu);
109 return;
112 env->pending_int |= INTERRUPT_RESTART;
113 cpu_interrupt(CPU(cpu), CPU_INTERRUPT_HARD);
116 void cpu_inject_stop(S390CPU *cpu)
118 CPUS390XState *env = &cpu->env;
120 if (kvm_enabled()) {
121 kvm_s390_stop_interrupt(cpu);
122 return;
125 env->pending_int |= INTERRUPT_STOP;
126 cpu_interrupt(CPU(cpu), CPU_INTERRUPT_HARD);
130 * All of the following interrupts are floating, i.e. not per-vcpu.
131 * We just need a dummy cpustate in order to be able to inject in the
132 * non-kvm case.
134 void s390_sclp_extint(uint32_t parm)
136 S390FLICState *fs = s390_get_flic();
137 S390FLICStateClass *fsc = s390_get_flic_class(fs);
139 fsc->inject_service(fs, parm);
142 void s390_io_interrupt(uint16_t subchannel_id, uint16_t subchannel_nr,
143 uint32_t io_int_parm, uint32_t io_int_word)
145 S390FLICState *fs = s390_get_flic();
146 S390FLICStateClass *fsc = s390_get_flic_class(fs);
148 fsc->inject_io(fs, subchannel_id, subchannel_nr, io_int_parm, io_int_word);
151 void s390_crw_mchk(void)
153 S390FLICState *fs = s390_get_flic();
154 S390FLICStateClass *fsc = s390_get_flic_class(fs);
156 fsc->inject_crw_mchk(fs);
159 bool s390_cpu_has_mcck_int(S390CPU *cpu)
161 QEMUS390FLICState *flic = s390_get_qemu_flic(s390_get_flic());
162 CPUS390XState *env = &cpu->env;
164 if (!(env->psw.mask & PSW_MASK_MCHECK)) {
165 return false;
168 /* for now we only support channel report machine checks (floating) */
169 if (qemu_s390_flic_has_crw_mchk(flic) &&
170 (env->cregs[14] & CR14_CHANNEL_REPORT_SC)) {
171 return true;
174 return false;
177 bool s390_cpu_has_ext_int(S390CPU *cpu)
179 QEMUS390FLICState *flic = s390_get_qemu_flic(s390_get_flic());
180 CPUS390XState *env = &cpu->env;
182 if (!(env->psw.mask & PSW_MASK_EXT)) {
183 return false;
186 if ((env->pending_int & INTERRUPT_EMERGENCY_SIGNAL) &&
187 (env->cregs[0] & CR0_EMERGENCY_SIGNAL_SC)) {
188 return true;
191 if ((env->pending_int & INTERRUPT_EXTERNAL_CALL) &&
192 (env->cregs[0] & CR0_EXTERNAL_CALL_SC)) {
193 return true;
196 if ((env->pending_int & INTERRUPT_EXTERNAL_CALL) &&
197 (env->cregs[0] & CR0_EXTERNAL_CALL_SC)) {
198 return true;
201 if ((env->pending_int & INTERRUPT_EXT_CLOCK_COMPARATOR) &&
202 (env->cregs[0] & CR0_CKC_SC)) {
203 return true;
206 if ((env->pending_int & INTERRUPT_EXT_CPU_TIMER) &&
207 (env->cregs[0] & CR0_CPU_TIMER_SC)) {
208 return true;
211 if (qemu_s390_flic_has_service(flic) &&
212 (env->cregs[0] & CR0_SERVICE_SC)) {
213 return true;
216 return false;
219 bool s390_cpu_has_io_int(S390CPU *cpu)
221 QEMUS390FLICState *flic = s390_get_qemu_flic(s390_get_flic());
222 CPUS390XState *env = &cpu->env;
224 if (!(env->psw.mask & PSW_MASK_IO)) {
225 return false;
228 return qemu_s390_flic_has_io(flic, env->cregs[6]);
231 bool s390_cpu_has_restart_int(S390CPU *cpu)
233 CPUS390XState *env = &cpu->env;
235 return env->pending_int & INTERRUPT_RESTART;
238 bool s390_cpu_has_stop_int(S390CPU *cpu)
240 CPUS390XState *env = &cpu->env;
242 return env->pending_int & INTERRUPT_STOP;
244 #endif
246 bool s390_cpu_has_int(S390CPU *cpu)
248 #ifndef CONFIG_USER_ONLY
249 if (!tcg_enabled()) {
250 return false;
252 return s390_cpu_has_mcck_int(cpu) ||
253 s390_cpu_has_ext_int(cpu) ||
254 s390_cpu_has_io_int(cpu) ||
255 s390_cpu_has_restart_int(cpu) ||
256 s390_cpu_has_stop_int(cpu);
257 #else
258 return false;
259 #endif