diff options
author | Myles Watson <mylesgw@gmail.com> | 2009-10-12 22:39:08 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-10-12 22:39:08 +0000 |
commit | 3db199c00a4c0b7986da98f2bc5504526c3a1cf2 (patch) | |
tree | b524d2d1b4fc9253c99dd55fca97c5894e867c8a /src/cpu/amd/socket_F_1207 | |
parent | b106f9bdbd02a7aafd7db0c198fc6a1112f1e412 (diff) |
Make fam10 build (but not boot due to bootblock size problems.)
Signed-off-by: Myles Watson <mylesgw@gmail.com>
Acked-by: Marc Jones <marcj303@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4762 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd/socket_F_1207')
-rw-r--r-- | src/cpu/amd/socket_F_1207/Kconfig | 14 | ||||
-rw-r--r-- | src/cpu/amd/socket_F_1207/Makefile.inc | 1 |
2 files changed, 13 insertions, 2 deletions
diff --git a/src/cpu/amd/socket_F_1207/Kconfig b/src/cpu/amd/socket_F_1207/Kconfig index 7a381724fb..19b5b20ceb 100644 --- a/src/cpu/amd/socket_F_1207/Kconfig +++ b/src/cpu/amd/socket_F_1207/Kconfig @@ -35,10 +35,20 @@ config CAR_FAM10 config CBB hex - default 0xff + default 0x0 depends on CPU_AMD_SOCKET_F_1207 config CDB hex - default 0x0 + default 0x18 + depends on CPU_AMD_SOCKET_F_1207 + +config XIP_ROM_BASE + hex + default 0xfff80000 + depends on CPU_AMD_SOCKET_F_1207 + +config XIP_ROM_SIZE + hex + default 0x80000 depends on CPU_AMD_SOCKET_F_1207 diff --git a/src/cpu/amd/socket_F_1207/Makefile.inc b/src/cpu/amd/socket_F_1207/Makefile.inc index f7e13e0328..382634e12f 100644 --- a/src/cpu/amd/socket_F_1207/Makefile.inc +++ b/src/cpu/amd/socket_F_1207/Makefile.inc @@ -10,5 +10,6 @@ subdirs-y += ../../x86/mmx subdirs-y += ../../x86/sse subdirs-y += ../../x86/lapic subdirs-y += ../../x86/cache +subdirs-y += ../../x86/mtrr subdirs-y += ../../x86/pae subdirs-y += ../../x86/smm |