SVM enabled processor should provide cpuid Fn8000_000A (Bernhard Kauer).

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3844 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
balrog 2007-12-24 13:36:00 +00:00
parent 71c3558ed2
commit 45d242b65b
2 changed files with 7 additions and 1 deletions

View File

@ -1751,6 +1751,12 @@ void helper_cpuid(void)
ECX = 0;
EDX = 0;
break;
case 0x8000000A:
EAX = 0x00000001;
EBX = 0;
ECX = 0;
EDX = 0;
break;
default:
/* reserved values: zero */
EAX = 0;

View File

@ -150,7 +150,7 @@ static x86_def_t x86_defs[] = {
.ext2_features = (PPRO_FEATURES & 0x0183F3FF) |
CPUID_EXT2_LM | CPUID_EXT2_SYSCALL | CPUID_EXT2_NX,
.ext3_features = CPUID_EXT3_SVM,
.xlevel = 0x80000008,
.xlevel = 0x8000000A,
},
#endif
{