Added support for the AMD S1G1 socket in kconfig

Signed-off-by: Cristi Magherusan <cristi.magherusan@net.utcluj.ro>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4602 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Cristi Magherusan 2009-08-27 22:19:23 +00:00 committed by Cristi Magherusan
parent ea906b0e4e
commit 7ec3f67294
4 changed files with 41 additions and 1 deletions

View File

@ -5,6 +5,6 @@ source src/cpu/amd/socket_AM2/Kconfig
#source src/cpu/amd/socket_AM2r2/Kconfig
source src/cpu/amd/socket_F/Kconfig
#source src/cpu/amd/socket_F_1207/Kconfig
#source src/cpu/amd/socket_S1G1/Kconfig
source src/cpu/amd/socket_S1G1/Kconfig
source src/cpu/amd/model_fxx/Kconfig

View File

@ -1,3 +1,4 @@
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += socket_F
subdirs-$(CONFIG_CPU_AMD_SOCKET_940) += socket_940
subdirs-$(CONFIG_CPU_AMD_SOCKET_AM2) += socket_AM2
subdirs-$(CONFIG_CPU_AMD_SOCKET_S1G1) += socket_S1G1

View File

@ -0,0 +1,25 @@
config CPU_AMD_SOCKET_S1G1
bool
default false
config K8_REV_F_SUPPORT
int
default 1
depends on CPU_AMD_SOCKET_S1G1
config CPU_SOCKET_TYPE
hex
default 0x12
depends on CPU_AMD_SOCKET_S1G1
config K8_HT_FREQ_1G_SUPPORT
hex
default 1
depends on CPU_AMD_SOCKET_S1G1
#DDR2 and REG, S1G1
config DIMM_SUPPORT
hex
default 0x0204
depends on CPU_AMD_SOCKET_S1G1

View File

@ -0,0 +1,14 @@
obj-y += socket_S1G1.o
subdirs-y += ../model_fxx
subdirs-y += ../dualcore
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