summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorCorey Osgood <corey.osgood@gmail.com>2007-11-07 18:55:06 +0000
committerCorey Osgood <corey.osgood@gmail.com>2007-11-07 18:55:06 +0000
commitc9f8a67139e60cc0c36190b8801935698f3d00c8 (patch)
tree8412836523efc6b4401ff9f9d21d257e9763d37b /src/cpu
parentb294582a0fb988767b02fc00087429e3b51b8de0 (diff)
downloadcoreboot-c9f8a67139e60cc0c36190b8801935698f3d00c8.tar.xz
This patch adds the pci ids of c7 cpus to the existing model_centaur. c3
and c7 init are identical, according to the datasheets, so there's no need for another folder. As the comment says, some of these model IDs may never be produced, but they are reserved by Via for the c7. Signed-off-by: Corey Osgood <corey.osgood@gmail.com> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2948 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/via/model_centaur/model_centaur_init.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cpu/via/model_centaur/model_centaur_init.c b/src/cpu/via/model_centaur/model_centaur_init.c
index 9e354bceb6..37a709f75d 100644
--- a/src/cpu/via/model_centaur/model_centaur_init.c
+++ b/src/cpu/via/model_centaur/model_centaur_init.c
@@ -48,6 +48,16 @@ static struct cpu_device_id cpu_table[] = {
{ X86_VENDOR_CENTAUR, 0x0698 }, // VIA C3 Nehemiah
{ X86_VENDOR_CENTAUR, 0x0699 }, // VIA C3 Nehemiah
{ X86_VENDOR_CENTAUR, 0x069A }, // VIA C3 Nehemiah
+ /* Some of these may not actually exist */
+ { X86_VENDOR_CENTAUR, 0x06A0 }, // VIA C7 Esther
+ { X86_VENDOR_CENTAUR, 0x06A8 }, // VIA C7 Esther
+ { X86_VENDOR_CENTAUR, 0x06A9 }, // VIA C7 Esther
+ { X86_VENDOR_CENTAUR, 0x06AA }, // VIA C7 Esther
+ { X86_VENDOR_CENTAUR, 0x06AB }, // VIA C7 Esther
+ { X86_VENDOR_CENTAUR, 0x06AC }, // VIA C7 Esther
+ { X86_VENDOR_CENTAUR, 0x06AD }, // VIA C7 Esther
+ { X86_VENDOR_CENTAUR, 0x06AE }, // VIA C7 Esther
+ { X86_VENDOR_CENTAUR, 0x06AF }, // VIA C7 Esther
{ 0, 0 },
};