diff options
author | Sven Schnelle <svens@stackframe.org> | 2012-07-11 21:47:11 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2012-07-14 17:34:57 +0200 |
commit | 2d0d83c3dd41a95f5c27a2c7ecf0a3a8cdd5d0be (patch) | |
tree | c6b6b427c89127e7be18fce28f38abf4a9691b3d /src/mainboard/asus/dsbf/Kconfig | |
parent | 6fa1d3a218332230826a5a5ebd676017b30b5930 (diff) |
Add ASUS DSBF mainboard
Change-Id: Iad38b92ca3a582e5aec07b92c994bfbe78b09855
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Reviewed-on: http://review.coreboot.org/1223
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/mainboard/asus/dsbf/Kconfig')
-rw-r--r-- | src/mainboard/asus/dsbf/Kconfig | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/mainboard/asus/dsbf/Kconfig b/src/mainboard/asus/dsbf/Kconfig new file mode 100644 index 0000000000..436ef0cf49 --- /dev/null +++ b/src/mainboard/asus/dsbf/Kconfig @@ -0,0 +1,45 @@ +if BOARD_ASUS_DSBF + +config BOARD_SPECIFIC_OPTIONS # dummy + def_bool y + select ARCH_X86 + select CPU_INTEL_SOCKET_LGA771 + select SOUTHBRIDGE_INTEL_I3100 + select NORTHBRIDGE_INTEL_I5000 + select SUPERIO_WINBOND_W83627HF + select MMCONF_SUPPORT + select BOARD_ROMSIZE_KB_512 + select HAVE_MP_TABLE + select HAVE_PIRQ_TABLE + select DRIVERS_I2C_W83793 + select DRIVERS_GENERIC_IOAPIC + +config MAINBOARD_DIR + string + default asus/dsbf + +config DCACHE_RAM_BASE + hex + default 0xffdf8000 + +config DCACHE_RAM_SIZE + hex + default 0x8000 + +config MAINBOARD_PART_NUMBER + string + default "DSBF" + +config MMCONF_BASE_ADDRESS + hex + default 0xe0000000 + +config IRQ_SLOT_COUNT + int + default 48 + +config MAX_CPUS + int + default 8 + +endif |