s390x: Add missing vcpu reset functions
[qemu/ar7.git] / target / s390x / kvm-stub.c
blobc4cd497f850eb9c7a859932b0f1f8ac482cee00e
1 /*
2 * QEMU KVM support -- s390x specific function stubs.
4 * Copyright (c) 2009 Ulrich Hecht
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
8 */
10 #include "qemu/osdep.h"
11 #include "cpu.h"
12 #include "kvm_s390x.h"
14 void kvm_s390_access_exception(S390CPU *cpu, uint16_t code, uint64_t te_code)
18 int kvm_s390_mem_op(S390CPU *cpu, vaddr addr, uint8_t ar, void *hostbuf,
19 int len, bool is_write)
21 return -ENOSYS;
24 void kvm_s390_program_interrupt(S390CPU *cpu, uint16_t code)
28 int kvm_s390_set_cpu_state(S390CPU *cpu, uint8_t cpu_state)
30 return -ENOSYS;
33 void kvm_s390_vcpu_interrupt_pre_save(S390CPU *cpu)
37 int kvm_s390_vcpu_interrupt_post_load(S390CPU *cpu)
39 return 0;
42 int kvm_s390_get_ri(void)
44 return 0;
47 int kvm_s390_get_gs(void)
49 return 0;
52 int kvm_s390_get_clock(uint8_t *tod_high, uint64_t *tod_low)
54 return -ENOSYS;
57 int kvm_s390_get_clock_ext(uint8_t *tod_high, uint64_t *tod_low)
59 return -ENOSYS;
62 int kvm_s390_set_clock(uint8_t tod_high, uint64_t tod_low)
64 return -ENOSYS;
67 int kvm_s390_set_clock_ext(uint8_t tod_high, uint64_t tod_low)
69 return -ENOSYS;
72 void kvm_s390_enable_css_support(S390CPU *cpu)
76 int kvm_s390_assign_subch_ioeventfd(EventNotifier *notifier, uint32_t sch,
77 int vq, bool assign)
79 return -ENOSYS;
82 void kvm_s390_cmma_reset(void)
86 void kvm_s390_reset_vcpu_initial(S390CPU *cpu)
90 void kvm_s390_reset_vcpu_clear(S390CPU *cpu)
94 void kvm_s390_reset_vcpu_normal(S390CPU *cpu)
98 int kvm_s390_set_mem_limit(uint64_t new_limit, uint64_t *hw_limit)
100 return 0;
103 void kvm_s390_set_max_pagesize(uint64_t pagesize, Error **errp)
107 void kvm_s390_crypto_reset(void)
111 void kvm_s390_stop_interrupt(S390CPU *cpu)
115 void kvm_s390_restart_interrupt(S390CPU *cpu)