Add support for AMD Socket 940. Move common files to model_fxx.
Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4574 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
ca5d9fb74a
commit
9f8ecf5eb9
|
@ -1,6 +1,6 @@
|
|||
#source src/cpu/amd/socket_754/Kconfig
|
||||
#source src/cpu/amd/socket_939/Kconfig
|
||||
#source src/cpu/amd/socket_940/Kconfig
|
||||
source src/cpu/amd/socket_940/Kconfig
|
||||
source src/cpu/amd/socket_AM2/Kconfig
|
||||
#source src/cpu/amd/socket_AM2r2/Kconfig
|
||||
source src/cpu/amd/socket_F/Kconfig
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += socket_F
|
||||
subdirs-$(CONFIG_CPU_AMD_SOCKET_940) += socket_940
|
||||
subdirs-$(CONFIG_CPU_AMD_SOCKET_AM2) += socket_AM2
|
||||
|
|
|
@ -4,3 +4,16 @@ obj-y += apic_timer.o
|
|||
obj-y += model_fxx_update_microcode.o
|
||||
obj-y += processor_name.o
|
||||
obj-y += powernow_acpi.o
|
||||
subdirs-y += ../dualcore
|
||||
subdirs-y += ../mtrr
|
||||
subdirs-y += ../microcode
|
||||
subdirs-y += ../../x86/tsc
|
||||
subdirs-y += ../../x86/mtrr
|
||||
subdirs-y += ../../x86/fpu
|
||||
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
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
config CPU_AMD_SOCKET_940
|
||||
bool
|
||||
default false
|
||||
|
||||
config K8_REV_F_SUPPORT
|
||||
bool
|
||||
default n
|
||||
depends on CPU_AMD_SOCKET_940
|
||||
|
||||
#Opteron K8 1G HT Support
|
||||
config K8_HT_FREQ_1G_SUPPORT
|
||||
hex
|
||||
default 1
|
||||
depends on CPU_AMD_SOCKET_940
|
|
@ -0,0 +1,2 @@
|
|||
obj-y += socket_940.o
|
||||
subdirs-y += ../model_fxx
|
|
@ -8,8 +8,8 @@ config CPU_SOCKET_TYPE
|
|||
depends on CPU_AMD_SOCKET_AM2
|
||||
|
||||
config K8_REV_F_SUPPORT
|
||||
hex
|
||||
default 1
|
||||
bool
|
||||
default y
|
||||
depends on CPU_AMD_SOCKET_AM2
|
||||
|
||||
# Opteron K8 1G HT support
|
||||
|
|
|
@ -1,15 +1,2 @@
|
|||
obj-y += socket_AM2.o
|
||||
subdirs-y += ../model_fxx
|
||||
subdirs-y += ../dualcore
|
||||
subdirs-y += ../mtrr
|
||||
subdirs-y += ../microcode
|
||||
subdirs-y += ../../x86/tsc
|
||||
subdirs-y += ../../x86/mtrr
|
||||
subdirs-y += ../../x86/fpu
|
||||
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
|
||||
|
|
|
@ -8,8 +8,8 @@ config CPU_SOCKET_TYPE
|
|||
depends on CPU_AMD_SOCKET_F
|
||||
|
||||
config K8_REV_F_SUPPORT
|
||||
hex
|
||||
default 1
|
||||
bool
|
||||
default y
|
||||
depends on CPU_AMD_SOCKET_F
|
||||
|
||||
# Opteron K8 1G HT support
|
||||
|
|
|
@ -1,14 +1,2 @@
|
|||
obj-y += socket_F.o
|
||||
subdirs-y += ../model_fxx
|
||||
subdirs-y += ../dualcore
|
||||
subdirs-y += ../mtrr
|
||||
subdirs-y += ../../x86/tsc
|
||||
subdirs-y += ../../x86/mtrr
|
||||
subdirs-y += ../../x86/fpu
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue