aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/asus/m4a78-em/Kconfig
diff options
context:
space:
mode:
authorJuhana Helovuo <juhe@iki.fi>2010-12-06 01:11:12 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2010-12-06 01:11:12 +0000
commita8c8490c114f97462a3060ce77777ea546d0bbc4 (patch)
treedd9f6e34354bc1646a42152f520af1fff0f18653 /src/mainboard/asus/m4a78-em/Kconfig
parent3a4ed157dcd93f845b92fcea272368bdc41d7a11 (diff)
Add initial support for the ASUS M4A78-EM.
Signed-off-by: Juhana Helovuo <juhe@iki.fi> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6141 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/asus/m4a78-em/Kconfig')
-rw-r--r--src/mainboard/asus/m4a78-em/Kconfig99
1 files changed, 99 insertions, 0 deletions
diff --git a/src/mainboard/asus/m4a78-em/Kconfig b/src/mainboard/asus/m4a78-em/Kconfig
new file mode 100644
index 0000000000..4543002685
--- /dev/null
+++ b/src/mainboard/asus/m4a78-em/Kconfig
@@ -0,0 +1,99 @@
+if BOARD_ASUS_M4A78_EM
+
+config BOARD_SPECIFIC_OPTIONS # dummy
+ def_bool y
+ select ARCH_X86
+ select CPU_AMD_SOCKET_AM3
+ select DIMM_DDR2
+ select NORTHBRIDGE_AMD_AMDFAM10
+ select SOUTHBRIDGE_AMD_RS780
+ select SOUTHBRIDGE_AMD_SB700
+ select SUPERIO_ITE_IT8712F
+ select BOARD_HAS_FADT
+ select HAVE_BUS_CONFIG
+ select HAVE_OPTION_TABLE
+ select HAVE_PIRQ_TABLE
+ select HAVE_MP_TABLE
+ select CACHE_AS_RAM
+ select HAVE_HARD_RESET
+ select SB_HT_CHAIN_UNITID_OFFSET_ONLY
+ select LIFT_BSP_APIC_ID
+ select SERIAL_CPU_INIT
+ select AMDMCT
+ select HAVE_ACPI_TABLES
+ select BOARD_ROMSIZE_KB_1024
+ select RAMINIT_SYSINFO
+ select ENABLE_APIC_EXT_ID
+ select TINY_BOOTBLOCK
+ select GFXUMA
+ select QRANK_DIMM_SUPPORT
+
+config MAINBOARD_DIR
+ string
+ default asus/m4a78-em
+
+config APIC_ID_OFFSET
+ hex
+ default 0x0
+
+config MAINBOARD_PART_NUMBER
+ string
+ default "M4A78-EM"
+
+config MAX_CPUS
+ int
+ default 8
+
+config MAX_PHYSICAL_CPUS
+ int
+ default 2
+
+config MEM_TRAIN_SEQ
+ int
+ default 2
+
+config SB_HT_CHAIN_ON_BUS0
+ int
+ default 1
+
+config HT_CHAIN_END_UNITID_BASE
+ hex
+ default 0x1
+
+config HT_CHAIN_UNITID_BASE
+ hex
+ default 0x0
+
+config IRQ_SLOT_COUNT
+ int
+ default 18
+
+config AMD_UCODE_PATCH_FILE
+ string
+ default "mc_patch_010000b6.h"
+
+config RAMTOP
+ hex
+ default 0x2000000
+
+config HEAP_SIZE
+ hex
+ default 0xc0000
+
+config MAINBOARD_PCI_SUBSYSTEM_DEVICE_ID
+ hex
+ default 0x83f1
+
+config MAINBOARD_PCI_SUBSYSTEM_VENDOR_ID
+ hex
+ default 0x1043
+
+config RAMBASE
+ hex
+ default 0x200000
+
+config COMPRESS
+ hex
+ default 0
+
+endif