diff options
author | Gabriel L. Somlo <gsomlo@gmail.com> | 2014-05-05 10:52:51 -0400 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-05-07 18:36:37 +0300 |
commit | aa93200b88fb1071eaf21bf766711762ed4630e2 (patch) | |
tree | a7963bbfbb776768ac2616950b1839b7becaf7fe /include/hw/i386/apic_internal.h | |
parent | 9df11c9f086e8329cdc06a67314ddce886841a5b (diff) | |
download | qemu-aa93200b88fb1071eaf21bf766711762ed4630e2.zip |
apic: use emulated lapic version 0x14 on pc machines >= 2.1
Add "version" property to local apic, and have it default to
0x14 for pc machines starting at 2.1. For compatibility with
previous releases, pc machines up to 2.0 will have their local
apic version set to 0x11.
Signed-off-by: Gabriel L. Somlo <somlo@cmu.edu>
Acked-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/hw/i386/apic_internal.h')
-rw-r--r-- | include/hw/i386/apic_internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/i386/apic_internal.h b/include/hw/i386/apic_internal.h index 70542a6f43..83e2a42cc1 100644 --- a/include/hw/i386/apic_internal.h +++ b/include/hw/i386/apic_internal.h @@ -98,6 +98,7 @@ struct APICCommonState { X86CPU *cpu; uint32_t apicbase; uint8_t id; + uint8_t version; uint8_t arb_id; uint8_t tpr; uint32_t spurious_vec; |