diff options
| author | Jung-uk Kim <jkim@FreeBSD.org> | 2006-07-12 06:04:12 +0000 |
|---|---|---|
| committer | Jung-uk Kim <jkim@FreeBSD.org> | 2006-07-12 06:04:12 +0000 |
| commit | 444576c0c4db136c03dad1b1886c4bc2e561d5be (patch) | |
| tree | cbad3428f0d4beef862f5a9e06f7245742ddc9f6 /sys/amd64 | |
| parent | c3ab507fcdea5b792c734f14e17ec4d6ef888268 (diff) | |
Notes
Diffstat (limited to 'sys/amd64')
| -rw-r--r-- | sys/amd64/amd64/identcpu.c | 4 | ||||
| -rw-r--r-- | sys/amd64/include/specialreg.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/amd64/amd64/identcpu.c b/sys/amd64/amd64/identcpu.c index a8ad392caa93..f413fb5691a6 100644 --- a/sys/amd64/amd64/identcpu.c +++ b/sys/amd64/amd64/identcpu.c @@ -306,8 +306,8 @@ printcpuinfo(void) "\020" "\001LAHF" /* LAHF/SAHF in long mode */ "\002CMP" /* CMP legacy */ - "\003<b2>" - "\004<b3>" + "\003SVM" /* Secure Virtual Mode */ + "\004ExtAPIC" /* Extended APIC register */ "\005CR8" /* CR8 in legacy mode */ "\006<b5>" "\007<b6>" diff --git a/sys/amd64/include/specialreg.h b/sys/amd64/include/specialreg.h index 24db7daead38..7adc83d0b49f 100644 --- a/sys/amd64/include/specialreg.h +++ b/sys/amd64/include/specialreg.h @@ -135,6 +135,8 @@ #define AMDID2_LAHF 0x00000001 #define AMDID2_CMP 0x00000002 +#define AMDID2_SVM 0x00000004 +#define AMDID2_EXT_APIC 0x00000008 #define AMDID2_CR8 0x00000010 /* |
