diff options
author | ksadhukh <none@none> | 2007-10-12 11:22:11 -0700 |
---|---|---|
committer | ksadhukh <none@none> | 2007-10-12 11:22:11 -0700 |
commit | 31725658122a7f6e95babe903bb82bbd8fb98be5 (patch) | |
tree | e99fc71fafb7df62333a86cc922cbe86ff55ee79 /usr/src/uts/intel/sys | |
parent | c5a946bac9ff4ebd4d874e1c94d41a5ffcbad287 (diff) | |
download | illumos-joyent-31725658122a7f6e95babe903bb82bbd8fb98be5.tar.gz |
6567332 Support for CPC on greyhound/barcelona processors
Diffstat (limited to 'usr/src/uts/intel/sys')
-rw-r--r-- | usr/src/uts/intel/sys/x86_archext.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr/src/uts/intel/sys/x86_archext.h b/usr/src/uts/intel/sys/x86_archext.h index 73952d1aad..90cec07b3a 100644 --- a/usr/src/uts/intel/sys/x86_archext.h +++ b/usr/src/uts/intel/sys/x86_archext.h @@ -412,8 +412,8 @@ extern "C" { #define X86_CHIPREV_UNKNOWN 0x0 /* - * Definitions for AMD Family 0xf. Minor revisions C0 and CG are - * sufficiently different that we will distinguish them; in all other + * Definitions for AMD Family 0xf and AMD Family 0x10. Minor revisions C0 and + * CG are sufficiently different that we will distinguish them; in all other * case we will identify the major revision. */ #define X86_CHIPREV_AMD_F_REV_B _X86_CHIPREV_MKREV(X86_VENDOR_AMD, 0xf, 0x0001) @@ -423,6 +423,8 @@ extern "C" { #define X86_CHIPREV_AMD_F_REV_E _X86_CHIPREV_MKREV(X86_VENDOR_AMD, 0xf, 0x0010) #define X86_CHIPREV_AMD_F_REV_F _X86_CHIPREV_MKREV(X86_VENDOR_AMD, 0xf, 0x0020) #define X86_CHIPREV_AMD_F_REV_G _X86_CHIPREV_MKREV(X86_VENDOR_AMD, 0xf, 0x0040) +#define X86_CHIPREV_AMD_10_REV_B \ + _X86_CHIPREV_MKREV(X86_VENDOR_AMD, 0x10, 0x0001) /* * Various socket/package types, extended as the need to distinguish |