diff options
author | Ward Vandewege <ward@gnu.org> | 2009-07-17 15:13:54 +0000 |
---|---|---|
committer | Ward Vandewege <ward@gnu.org> | 2009-07-17 15:13:54 +0000 |
commit | 36e8ff4c161a4d9177f6057d4299610d5d0170b0 (patch) | |
tree | 015703c6fb6c0df5090c35f51a66d1c3c3846a30 /src/cpu/amd | |
parent | fcee8fee3fc42260ae6f4e629f3f18ab53309b0f (diff) |
Bring Socket F cpu names up to date with the official
Revision Guide for AMD NPT Family 0Fh Processors
Rev. 3.42 March 2009, found at
http://support.amd.com/us/Processor_TechDocs/33610_PUB_Rev3%2042v3.pdf
This patch takes its data from Table 7.
Build tested.
Signed-off-by: Ward Vandewege <ward@gnu.org>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4433 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd')
-rw-r--r-- | src/cpu/amd/model_fxx/processor_name.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cpu/amd/model_fxx/processor_name.c b/src/cpu/amd/model_fxx/processor_name.c index ebca39a99e..a5de6b7b6d 100644 --- a/src/cpu/amd/model_fxx/processor_name.c +++ b/src/cpu/amd/model_fxx/processor_name.c @@ -207,6 +207,10 @@ int init_processor_name(void) switch ((Socket << 16) | (CmpCap << 12) | (BrandTableIndex << 4) | PwrLmt) { /* Socket F */ + case 0x10012: + processor_name_string = + "AMD Opteron(tm) Processor 22RR EE"; + break; case 0x11002: processor_name_string = "Dual-Core AMD Opteron(tm) Processor 12RR EE"; |