diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-09 12:32:52 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-09 12:32:52 +0000 |
commit | 91ff0df62777a9ec4a399ef899803c05e7caad60 (patch) | |
tree | 93bc6c2927195fe3e991172acb3c923d89ec6bec /src/cpu/amd/socket_AM2r2 | |
parent | 748475b800c552236aff16c1beffd55b70791ae6 (diff) |
More Kconfig-supported boards, and also kconfig support
for amd/socket_AM2R2, amd/socket_939, drivers/ati/ragexl
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4750 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd/socket_AM2r2')
-rw-r--r-- | src/cpu/amd/socket_AM2r2/Kconfig | 18 | ||||
-rw-r--r-- | src/cpu/amd/socket_AM2r2/Makefile.inc | 14 |
2 files changed, 32 insertions, 0 deletions
diff --git a/src/cpu/amd/socket_AM2r2/Kconfig b/src/cpu/amd/socket_AM2r2/Kconfig new file mode 100644 index 0000000000..1008401a83 --- /dev/null +++ b/src/cpu/amd/socket_AM2r2/Kconfig @@ -0,0 +1,18 @@ +config CPU_AMD_SOCKET_AM2R2 + bool + default n + select CPU_AMD_MODEL_10XXX + select HT3_SUPPORT + select CAR_FAM10 + +config CPU_SOCKET_TYPE + hex + default 0x11 + depends on CPU_AMD_SOCKET_AM2R2 + +# DDR2 and REG +config DIMM_SUPPORT + hex + default 0x0104 + depends on CPU_AMD_SOCKET_AM2R2 + diff --git a/src/cpu/amd/socket_AM2r2/Makefile.inc b/src/cpu/amd/socket_AM2r2/Makefile.inc new file mode 100644 index 0000000000..5ff9c582d9 --- /dev/null +++ b/src/cpu/amd/socket_AM2r2/Makefile.inc @@ -0,0 +1,14 @@ +obj-y += socket_AM2r2.o +subdirs-y += ../model_10xxx +subdirs-y += ../quadcore +subdirs-y += ../mtrr +subdirs-y += ../microcode +subdirs-y += ../../x86/tsc +subdirs-y += ../../x86/fpu +subdirs-y += ../../x86/mmx +subdirs-y += ../../x86/sse +subdirs-y += ../../x86/lapic +subdirs-y += ../../x86/cache +subdirs-y += ../../x86/pae +subdirs-y += ../../x86/smm +subdirs-y += ../../x86/mtrr |