diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-07 14:13:36 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-10-07 14:13:36 +0000 |
commit | fdfaada706037287c74e2541a6151f16d93b9be1 (patch) | |
tree | 7d53238e40f3d15c204b8007a6afc56299b34139 /src/mainboard/bcom/winnetp680/Kconfig | |
parent | 99950c2192c93cdb19a5c49be09f8cba63ccf383 (diff) | |
download | coreboot-fdfaada706037287c74e2541a6151f16d93b9be1.tar.xz |
More boards in kconfig, and moved -O2 flag for romcc into
ROMCCFLAGS, so boards can override it where necessary.
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@4730 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/bcom/winnetp680/Kconfig')
-rw-r--r-- | src/mainboard/bcom/winnetp680/Kconfig | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/mainboard/bcom/winnetp680/Kconfig b/src/mainboard/bcom/winnetp680/Kconfig new file mode 100644 index 0000000000..52c41620f9 --- /dev/null +++ b/src/mainboard/bcom/winnetp680/Kconfig @@ -0,0 +1,36 @@ +config BOARD_BCOM_WINNETP680 + bool "WinNET P680" + select ARCH_X86 + select CPU_VIA_C7 + select NORTHBRIDGE_VIA_CN700 + select SOUTHBRIDGE_VIA_VT8237R + select SUPERIO_WINBOND_W83697HF + select HAVE_PIRQ_TABLE + select UDELAY_TSC + select TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 + +config MAINBOARD_DIR + string + default bcom/winnetp680 + depends on BOARD_BCOM_WINNETP680 + +config MAINBOARD_PART_NUMBER + string + default "WinNET P680" + depends on BOARD_BCOM_WINNETP680 + +config IRQ_SLOT_COUNT + int + default 10 + depends on BOARD_BCOM_WINNETP680 + +config VIDEO_MB + int + default 32 + depends on BOARD_BCOM_WINNETP680 + +config RAMBASE + hex + default 0x4000 + depends on BOARD_BCOM_WINNETP680 + |