aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/k8/cpufixup.c
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2003-08-04 21:05:19 +0000
committerRonald G. Minnich <rminnich@gmail.com>2003-08-04 21:05:19 +0000
commita43048d371ad4bfaa7a53b3621770907b5d1879d (patch)
treebccf1717d1ffd37b214ed35c371d3bc2aff500f9 /src/cpu/k8/cpufixup.c
parentbbb6d1020f97b2694f496d87c1f49a0cb2e0bb96 (diff)
Commits for the new config static device design, to allow more than one static
cpu of a certain type and to eliminate the cpu p5 cpu p6 cpu k7 nonsense in the old config files. Next step is to hook into Eric's pci device stuff. git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1067 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/k8/cpufixup.c')
-rw-r--r--src/cpu/k8/cpufixup.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/cpu/k8/cpufixup.c b/src/cpu/k8/cpufixup.c
index fa9c1d2a52..4976bee578 100644
--- a/src/cpu/k8/cpufixup.c
+++ b/src/cpu/k8/cpufixup.c
@@ -4,6 +4,9 @@
#include <cpu/p6/msr.h>
#include <cpu/k8/mtrr.h>
#include <device/device.h>
+#include <device/chip.h>
+
+#include "chip.h"
void k8_cpufixup(struct mem_range *mem)
{
@@ -51,3 +54,27 @@ void k8_cpufixup(struct mem_range *mem)
msr.lo |= SYSCFG_MSR_MtrrVarDramEn | SYSCFG_MSR_TOM2En;
wrmsr(SYSCFG_MSR, msr);
}
+
+static
+void k8_enable(struct chip *chip, enum chip_pass pass)
+{
+
+ struct cpu_k8_config *conf = (struct cpu_k8_config *)chip->chip_info;
+
+ switch (pass) {
+ case CONF_PASS_PRE_CONSOLE:
+ break;
+ default:
+ /* nothing yet */
+ break;
+ }
+}
+
+struct chip_control cpu_k8_control = {
+ enable: k8_enable,
+ name: "AMD K8"
+};
+
+
+
+