2 #include "config-host.h"
10 #include <sys/utsname.h>
15 int kvm_arch_qemu_create_context(void)
20 void kvm_arch_load_regs(CPUState
*env
)
25 void kvm_arch_save_regs(CPUState
*env
)
29 int kvm_arch_qemu_init_env(CPUState
*cenv
)
34 int kvm_arch_halt(void *opaque
, int vcpu
)
36 CPUState
*env
= cpu_single_env
;
37 env
->hflags
|= HF_HALTED_MASK
;
38 env
->exception_index
= EXCP_HLT
;
42 void kvm_arch_pre_kvm_run(void *opaque
, CPUState
*env
)
46 void kvm_arch_post_kvm_run(void *opaque
, CPUState
*env
)
50 int kvm_arch_has_work(CPUState
*env
)
55 int kvm_arch_try_push_interrupts(void *opaque
)
60 void kvm_arch_update_regs_for_sipi(CPUState
*env
)
64 int kvm_arch_insert_sw_breakpoint(CPUState
*current_env
,
65 struct kvm_sw_breakpoint
*bp
)
70 int kvm_arch_remove_sw_breakpoint(CPUState
*current_env
,
71 struct kvm_sw_breakpoint
*bp
)
76 int kvm_arch_insert_hw_breakpoint(target_ulong addr
,
77 target_ulong len
, int type
)
82 int kvm_arch_remove_hw_breakpoint(target_ulong addr
,
83 target_ulong len
, int type
)
88 void kvm_arch_remove_all_hw_breakpoints(void)
92 int kvm_arch_debug(struct kvm_debug_exit_arch
*arch_info
)
97 void kvm_arch_update_guest_debug(CPUState
*env
, struct kvm_guest_debug
*dbg
)
101 void kvm_save_mpstate(CPUState
*env
)
103 #ifdef KVM_CAP_MP_STATE
105 struct kvm_mp_state mp_state
;
107 r
= kvm_get_mpstate(kvm_context
, env
->cpu_index
, &mp_state
);
111 env
->mp_state
= mp_state
.mp_state
;
115 void kvm_load_mpstate(CPUState
*env
)
117 #ifdef KVM_CAP_MP_STATE
118 struct kvm_mp_state mp_state
= { .mp_state
= env
->mp_state
};
121 * -1 indicates that the host did not support GET_MP_STATE ioctl,
124 if (env
->mp_state
!= -1)
125 kvm_set_mpstate(kvm_context
, env
->cpu_index
, &mp_state
);
129 void kvm_arch_cpu_reset(CPUState
*env
)
131 if (kvm_irqchip_in_kernel(kvm_context
)) {
132 #ifdef KVM_CAP_MP_STATE
133 kvm_reset_mpstate(kvm_context
, env
->cpu_index
);
136 env
->interrupt_request
&= ~CPU_INTERRUPT_HARD
;
138 env
->exception_index
= EXCP_HLT
;
142 void kvm_arch_do_ioperm(void *_data
)
144 struct ioperm_data
*data
= _data
;
145 ioperm(data
->start_port
, data
->num
, data
->turn_on
);