mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
i386 return APIC ID with cpuid, by Bernhard Kauer.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2591 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
af655b6d82
commit
eae7629bfd
3 changed files with 3 additions and 1 deletions
|
@ -530,6 +530,7 @@ typedef struct CPUX86State {
|
|||
uint32_t cpuid_xlevel;
|
||||
uint32_t cpuid_model[12];
|
||||
uint32_t cpuid_ext2_features;
|
||||
uint32_t cpuid_apic_id;
|
||||
|
||||
#ifdef USE_KQEMU
|
||||
int kqemu_enabled;
|
||||
|
|
|
@ -1653,7 +1653,7 @@ void helper_cpuid(void)
|
|||
break;
|
||||
case 1:
|
||||
EAX = env->cpuid_version;
|
||||
EBX = 8 << 8; /* CLFLUSH size in quad words, Linux wants it. */
|
||||
EBX = (env->cpuid_apic_id << 24) | 8 << 8; /* CLFLUSH size in quad words, Linux wants it. */
|
||||
ECX = env->cpuid_ext_features;
|
||||
EDX = env->cpuid_features;
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue