diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-12-04 11:04:13 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-05-19 16:42:28 +0200 |
commit | d613f8cc336ffc81cad4898c50e7ac1997a6eef1 (patch) | |
tree | a9d66dee7367d64ae95cfaa835e9322c59a5a381 /target-i386 | |
parent | e81096b1c84cc5f8bcf6189f7758a0643fd75107 (diff) | |
download | qemu-d613f8cc336ffc81cad4898c50e7ac1997a6eef1.tar.gz qemu-d613f8cc336ffc81cad4898c50e7ac1997a6eef1.tar.bz2 qemu-d613f8cc336ffc81cad4898c50e7ac1997a6eef1.zip |
apic: move target-dependent definitions to cpu.h
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-i386')
-rw-r--r-- | target-i386/cpu.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 93b5cd0e05..bc8c3fbcbf 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -1455,7 +1455,11 @@ void do_interrupt_x86_hardirq(CPUX86State *env, int intno, int is_hw); void do_smm_enter(X86CPU *cpu); void cpu_smm_update(X86CPU *cpu); +/* apic.c */ void cpu_report_tpr_access(CPUX86State *env, TPRAccess access); +void apic_handle_tpr_access_report(DeviceState *d, target_ulong ip, + TPRAccess access); + /* Change the value of a KVM-specific default * @@ -1481,4 +1485,7 @@ void enable_compat_apic_id_mode(void); void x86_cpu_dump_local_apic_state(CPUState *cs, FILE *f, fprintf_function cpu_fprintf, int flags); +/* cpu.c */ +bool cpu_is_bsp(X86CPU *cpu); + #endif /* CPU_I386_H */ |