diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-03-13 02:21:41 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-03-13 02:21:41 +0000 |
commit | 3182122c3bc8477be048106d85bf331499373e70 (patch) | |
tree | 8ee7882e4572ba5d5e45d9b39170b155ed737a56 /src/cpu | |
parent | b681570e7b0b2a67abd067715df118e7853a0b82 (diff) |
Update AMD CPU list based on Revision Guide for AMD NPT Family 0Fh Processors,
Publication #33610, Revision: 3.30, February 2008.
http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/33610.pdf
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3136 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/amd/model_fxx/model_fxx_init.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/cpu/amd/model_fxx/model_fxx_init.c b/src/cpu/amd/model_fxx/model_fxx_init.c index 3cbdd3e4a6..7c13d7fe67 100644 --- a/src/cpu/amd/model_fxx/model_fxx_init.c +++ b/src/cpu/amd/model_fxx/model_fxx_init.c @@ -605,6 +605,14 @@ static struct cpu_device_id cpu_table[] = { #endif #if K8_REV_F_SUPPORT == 1 + /* + * AMD F0 support. + * + * See Revision Guide for AMD NPT Family 0Fh Processors, + * Publication #33610, Revision: 3.30, February 2008. + * + * http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/33610.pdf + */ { X86_VENDOR_AMD, 0x40f50 }, /* SH-F0 (socket F/1207) */ { X86_VENDOR_AMD, 0x40f70 }, /* SH-F0 (socket AM2) */ { X86_VENDOR_AMD, 0x40f40 }, /* SH-F0 (socket S1g1) */ @@ -624,6 +632,13 @@ static struct cpu_device_id cpu_table[] = { { X86_VENDOR_AMD, 0xc0f13 }, /* JH-F3 (socket F/1207) */ { X86_VENDOR_AMD, 0x50ff3 }, /* DH-F3 (socket AM2) */ { X86_VENDOR_AMD, 0x60fb1 }, /* BH-G1 (socket AM2) */ + { X86_VENDOR_AMD, 0x60f81 }, /* BH-G1 (socket S1g1) */ + { X86_VENDOR_AMD, 0x60fb2 }, /* BH-G2 (socket AM2) */ + { X86_VENDOR_AMD, 0x60f82 }, /* BH-G2 (socket S1g1) */ + { X86_VENDOR_AMD, 0x70ff1 }, /* DH-G1 (socket AM2) */ + { X86_VENDOR_AMD, 0x60ff2 }, /* DH-G2 (socket AM2) */ + { X86_VENDOR_AMD, 0x60fc2 }, /* DH-G2 (socket S1g1) */ + { X86_VENDOR_AMD, 0x70fc2 }, /* DH-G2 (socket S1g1) */ #endif { 0, 0 }, |