2 #include "config-host.h"
9 #include <sys/utsname.h>
14 int kvm_arch_qemu_create_context(void)
19 void kvm_arch_load_regs(CPUState
*env
)
24 void kvm_arch_save_regs(CPUState
*env
)
28 int kvm_arch_init_vcpu(CPUState
*cenv
)
33 int kvm_arch_halt(kvm_vcpu_context_t vcpu
)
35 CPUState
*env
= cpu_single_env
;
36 env
->hflags
|= HF_HALTED_MASK
;
40 void kvm_arch_pre_kvm_run(void *opaque
, CPUState
*env
)
44 void kvm_arch_post_kvm_run(void *opaque
, CPUState
*env
)
48 int kvm_arch_has_work(CPUState
*env
)
53 int kvm_arch_try_push_interrupts(void *opaque
)
58 int kvm_arch_insert_sw_breakpoint(CPUState
*current_env
,
59 struct kvm_sw_breakpoint
*bp
)
64 int kvm_arch_remove_sw_breakpoint(CPUState
*current_env
,
65 struct kvm_sw_breakpoint
*bp
)
70 int kvm_arch_insert_hw_breakpoint(target_ulong addr
,
71 target_ulong len
, int type
)
76 int kvm_arch_remove_hw_breakpoint(target_ulong addr
,
77 target_ulong len
, int type
)
82 void kvm_arch_remove_all_hw_breakpoints(void)
86 int kvm_arch_debug(struct kvm_debug_exit_arch
*arch_info
)
91 void kvm_arch_update_guest_debug(CPUState
*env
, struct kvm_guest_debug
*dbg
)
95 void kvm_arch_save_mpstate(CPUState
*env
)
97 #ifdef KVM_CAP_MP_STATE
99 struct kvm_mp_state mp_state
;
101 r
= kvm_get_mpstate(env
->kvm_cpu_state
.vcpu_ctx
, &mp_state
);
105 env
->mp_state
= mp_state
.mp_state
;
109 void kvm_arch_load_mpstate(CPUState
*env
)
111 #ifdef KVM_CAP_MP_STATE
112 struct kvm_mp_state mp_state
= { .mp_state
= env
->mp_state
};
115 * -1 indicates that the host did not support GET_MP_STATE ioctl,
118 if (env
->mp_state
!= -1)
119 kvm_set_mpstate(env
->kvm_cpu_state
.vcpu_ctx
, &mp_state
);
123 void kvm_arch_cpu_reset(CPUState
*env
)
125 if (kvm_irqchip_in_kernel(kvm_context
)) {
126 #ifdef KVM_CAP_MP_STATE
127 kvm_reset_mpstate(env
->kvm_cpu_state
.vcpu_ctx
);
130 env
->interrupt_request
&= ~CPU_INTERRUPT_HARD
;
135 void kvm_arch_do_ioperm(void *_data
)
137 struct ioperm_data
*data
= _data
;
138 ioperm(data
->start_port
, data
->num
, data
->turn_on
);
141 void kvm_arch_process_irqchip_events(CPUState
*env
)