2 * S/390 misc helper routines
4 * Copyright (c) 2009 Ulrich Hecht
5 * Copyright (c) 2009 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 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/>.
22 #include "exec/memory.h"
23 #include "qemu/host-utils.h"
26 #include "sysemu/kvm.h"
27 #include "qemu/timer.h"
29 #include <linux/kvm.h>
32 #if !defined(CONFIG_USER_ONLY)
33 #include "exec/softmmu_exec.h"
34 #include "sysemu/sysemu.h"
37 /* #define DEBUG_HELPER */
39 #define HELPER_LOG(x...) qemu_log(x)
41 #define HELPER_LOG(x...)
44 /* Raise an exception dynamically from a helper function. */
45 void QEMU_NORETURN
runtime_exception(CPUS390XState
*env
, int excp
,
50 env
->exception_index
= EXCP_PGM
;
51 env
->int_pgm_code
= excp
;
53 /* Use the (ultimate) callers address to find the insn that trapped. */
54 cpu_restore_state(env
, retaddr
);
56 /* Advance past the insn. */
57 t
= cpu_ldub_code(env
, env
->psw
.addr
);
58 env
->int_pgm_ilen
= t
= get_ilen(t
);
59 env
->psw
.addr
+= 2 * t
;
64 /* Raise an exception statically from a TB. */
65 void HELPER(exception
)(CPUS390XState
*env
, uint32_t excp
)
67 HELPER_LOG("%s: exception %d\n", __func__
, excp
);
68 env
->exception_index
= excp
;
72 #ifndef CONFIG_USER_ONLY
73 void program_interrupt(CPUS390XState
*env
, uint32_t code
, int ilen
)
75 qemu_log_mask(CPU_LOG_INT
, "program interrupt at %#" PRIx64
"\n",
80 kvm_s390_interrupt(s390_env_get_cpu(env
), KVM_S390_PROGRAM_INT
, code
);
83 env
->int_pgm_code
= code
;
84 env
->int_pgm_ilen
= ilen
;
85 env
->exception_index
= EXCP_PGM
;
90 /* SCLP service call */
91 uint32_t HELPER(servc
)(CPUS390XState
*env
, uint32_t r1
, uint64_t r2
)
95 r
= sclp_service_call(r1
, r2
);
97 program_interrupt(env
, -r
, 4);
104 uint64_t HELPER(diag
)(CPUS390XState
*env
, uint32_t num
, uint64_t mem
,
112 r
= s390_virtio_hypercall(env
, mem
, code
);
128 program_interrupt(env
, PGM_OPERATION
, ILEN_LATER_INC
);
135 void HELPER(spx
)(CPUS390XState
*env
, uint64_t a1
)
139 prefix
= cpu_ldl_data(env
, a1
);
140 env
->psa
= prefix
& 0xfffff000;
141 qemu_log("prefix: %#x\n", prefix
);
142 tlb_flush_page(env
, 0);
143 tlb_flush_page(env
, TARGET_PAGE_SIZE
);
146 static inline uint64_t clock_value(CPUS390XState
*env
)
150 time
= env
->tod_offset
+
151 time2tod(qemu_get_clock_ns(vm_clock
) - env
->tod_basetime
);
157 uint32_t HELPER(stck
)(CPUS390XState
*env
, uint64_t a1
)
159 cpu_stq_data(env
, a1
, clock_value(env
));
164 /* Store Clock Extended */
165 uint32_t HELPER(stcke
)(CPUS390XState
*env
, uint64_t a1
)
167 cpu_stb_data(env
, a1
, 0);
168 /* basically the same value as stck */
169 cpu_stq_data(env
, a1
+ 1, clock_value(env
) | env
->cpu_num
);
170 /* more fine grained than stck */
171 cpu_stq_data(env
, a1
+ 9, 0);
172 /* XXX programmable fields */
173 cpu_stw_data(env
, a1
+ 17, 0);
178 /* Set Clock Comparator */
179 void HELPER(sckc
)(CPUS390XState
*env
, uint64_t a1
)
181 uint64_t time
= cpu_ldq_data(env
, a1
);
187 /* difference between now and then */
188 time
-= clock_value(env
);
190 time
= (time
* 125) >> 9;
192 qemu_mod_timer(env
->tod_timer
, qemu_get_clock_ns(vm_clock
) + time
);
195 /* Store Clock Comparator */
196 void HELPER(stckc
)(CPUS390XState
*env
, uint64_t a1
)
199 cpu_stq_data(env
, a1
, 0);
203 void HELPER(spt
)(CPUS390XState
*env
, uint64_t a1
)
205 uint64_t time
= cpu_ldq_data(env
, a1
);
212 time
= (time
* 125) >> 9;
214 qemu_mod_timer(env
->cpu_timer
, qemu_get_clock_ns(vm_clock
) + time
);
217 /* Store CPU Timer */
218 void HELPER(stpt
)(CPUS390XState
*env
, uint64_t a1
)
221 cpu_stq_data(env
, a1
, 0);
224 /* Store System Information */
225 uint32_t HELPER(stsi
)(CPUS390XState
*env
, uint64_t a0
, uint32_t r0
,
231 if ((r0
& STSI_LEVEL_MASK
) <= STSI_LEVEL_3
&&
232 ((r0
& STSI_R0_RESERVED_MASK
) || (r1
& STSI_R1_RESERVED_MASK
))) {
233 /* valid function code, invalid reserved bits */
234 program_interrupt(env
, PGM_SPECIFICATION
, 2);
237 sel1
= r0
& STSI_R0_SEL1_MASK
;
238 sel2
= r1
& STSI_R1_SEL2_MASK
;
240 /* XXX: spec exception if sysib is not 4k-aligned */
242 switch (r0
& STSI_LEVEL_MASK
) {
244 if ((sel1
== 1) && (sel2
== 1)) {
245 /* Basic Machine Configuration */
246 struct sysib_111 sysib
;
248 memset(&sysib
, 0, sizeof(sysib
));
249 ebcdic_put(sysib
.manuf
, "QEMU ", 16);
250 /* same as machine type number in STORE CPU ID */
251 ebcdic_put(sysib
.type
, "QEMU", 4);
252 /* same as model number in STORE CPU ID */
253 ebcdic_put(sysib
.model
, "QEMU ", 16);
254 ebcdic_put(sysib
.sequence
, "QEMU ", 16);
255 ebcdic_put(sysib
.plant
, "QEMU", 4);
256 cpu_physical_memory_rw(a0
, (uint8_t *)&sysib
, sizeof(sysib
), 1);
257 } else if ((sel1
== 2) && (sel2
== 1)) {
258 /* Basic Machine CPU */
259 struct sysib_121 sysib
;
261 memset(&sysib
, 0, sizeof(sysib
));
262 /* XXX make different for different CPUs? */
263 ebcdic_put(sysib
.sequence
, "QEMUQEMUQEMUQEMU", 16);
264 ebcdic_put(sysib
.plant
, "QEMU", 4);
265 stw_p(&sysib
.cpu_addr
, env
->cpu_num
);
266 cpu_physical_memory_rw(a0
, (uint8_t *)&sysib
, sizeof(sysib
), 1);
267 } else if ((sel1
== 2) && (sel2
== 2)) {
268 /* Basic Machine CPUs */
269 struct sysib_122 sysib
;
271 memset(&sysib
, 0, sizeof(sysib
));
272 stl_p(&sysib
.capability
, 0x443afc29);
273 /* XXX change when SMP comes */
274 stw_p(&sysib
.total_cpus
, 1);
275 stw_p(&sysib
.active_cpus
, 1);
276 stw_p(&sysib
.standby_cpus
, 0);
277 stw_p(&sysib
.reserved_cpus
, 0);
278 cpu_physical_memory_rw(a0
, (uint8_t *)&sysib
, sizeof(sysib
), 1);
285 if ((sel1
== 2) && (sel2
== 1)) {
287 struct sysib_221 sysib
;
289 memset(&sysib
, 0, sizeof(sysib
));
290 /* XXX make different for different CPUs? */
291 ebcdic_put(sysib
.sequence
, "QEMUQEMUQEMUQEMU", 16);
292 ebcdic_put(sysib
.plant
, "QEMU", 4);
293 stw_p(&sysib
.cpu_addr
, env
->cpu_num
);
294 stw_p(&sysib
.cpu_id
, 0);
295 cpu_physical_memory_rw(a0
, (uint8_t *)&sysib
, sizeof(sysib
), 1);
296 } else if ((sel1
== 2) && (sel2
== 2)) {
298 struct sysib_222 sysib
;
300 memset(&sysib
, 0, sizeof(sysib
));
301 stw_p(&sysib
.lpar_num
, 0);
303 /* XXX change when SMP comes */
304 stw_p(&sysib
.total_cpus
, 1);
305 stw_p(&sysib
.conf_cpus
, 1);
306 stw_p(&sysib
.standby_cpus
, 0);
307 stw_p(&sysib
.reserved_cpus
, 0);
308 ebcdic_put(sysib
.name
, "QEMU ", 8);
309 stl_p(&sysib
.caf
, 1000);
310 stw_p(&sysib
.dedicated_cpus
, 0);
311 stw_p(&sysib
.shared_cpus
, 0);
312 cpu_physical_memory_rw(a0
, (uint8_t *)&sysib
, sizeof(sysib
), 1);
320 if ((sel1
== 2) && (sel2
== 2)) {
322 struct sysib_322 sysib
;
324 memset(&sysib
, 0, sizeof(sysib
));
326 /* XXX change when SMP comes */
327 stw_p(&sysib
.vm
[0].total_cpus
, 1);
328 stw_p(&sysib
.vm
[0].conf_cpus
, 1);
329 stw_p(&sysib
.vm
[0].standby_cpus
, 0);
330 stw_p(&sysib
.vm
[0].reserved_cpus
, 0);
331 ebcdic_put(sysib
.vm
[0].name
, "KVMguest", 8);
332 stl_p(&sysib
.vm
[0].caf
, 1000);
333 ebcdic_put(sysib
.vm
[0].cpi
, "KVM/Linux ", 16);
334 cpu_physical_memory_rw(a0
, (uint8_t *)&sysib
, sizeof(sysib
), 1);
340 case STSI_LEVEL_CURRENT
:
341 env
->regs
[0] = STSI_LEVEL_3
;
351 uint32_t HELPER(sigp
)(CPUS390XState
*env
, uint64_t order_code
, uint32_t r1
,
356 HELPER_LOG("%s: %016" PRIx64
" %08x %016" PRIx64
"\n",
357 __func__
, order_code
, r1
, cpu_addr
);
359 /* Remember: Use "R1 or R1 + 1, whichever is the odd-numbered register"
360 as parameter (input). Status (output) is always R1. */
362 switch (order_code
) {
367 /* enumerate CPU status */
369 /* XXX implement when SMP comes */
372 env
->regs
[r1
] &= 0xffffffff00000000ULL
;
375 #if !defined(CONFIG_USER_ONLY)
377 qemu_system_reset_request();
381 qemu_system_shutdown_request();
387 fprintf(stderr
, "XXX unknown sigp: 0x%" PRIx64
"\n", order_code
);