- Add AMD Socket 754,
- Fix MCP55 boards (romstrap)
- Implement remaining MSI boards

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Myles Watson <mylesgw@gmail.com>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4732 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi
2009-10-07 15:30:58 +00:00
parent 31f81a6de1
commit 66b74047d6
15 changed files with 757 additions and 5 deletions

View File

@@ -2,7 +2,7 @@ config K8_REV_F_SUPPORT
bool
default n
#source src/cpu/amd/socket_754/Kconfig
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_AM2/Kconfig

View File

@@ -1,4 +1,5 @@
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += socket_F
subdirs-$(CONFIG_CPU_AMD_SOCKET_754) += socket_754
subdirs-$(CONFIG_CPU_AMD_SOCKET_940) += socket_940
subdirs-$(CONFIG_CPU_AMD_SOCKET_AM2) += socket_AM2
subdirs-$(CONFIG_CPU_AMD_GX1) += model_gx1

View File

@@ -0,0 +1,9 @@
config CPU_AMD_SOCKET_754
bool
default n
select CPU_AMD_MODEL_FXX
config CPU_SOCKET_TYPE
hex
default 0x10
depends on CPU_AMD_SOCKET_754

View File

@@ -0,0 +1,14 @@
obj-y += socket_754.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