[Qemu-devel] QEMU APIC version ID bug?

2014-04-16 Thread Neil McGill
Seems there is a bug in qemu where the APIC version is being checked as value 3. However, it should be 1. static uint32_t apic_mem_readl(void *opaque, hwaddr addr) { ... switch(index) { case 0x03: /* version */ val = 0x11 | ((APIC_LVT_NB - 1) 16); /* version 0x11 */

Re: [Qemu-devel] QEMU APIC version ID bug?

2014-04-16 Thread Neil McGill
APIC ver register is 1 but *IO*APIC ver register is 3... sorry for the confusion/noise, qemu looks fine neil On 4/16/14 10:16 AM, Neil McGill wrote: Seems there is a bug in qemu where the APIC version is being checked as value 3. However, it should be 1. static uint32_t apic_mem_readl(void