a271b1d13d
The romstage for CS5536 platforms were including early_smbus.c and early_setup.c. Build these into romstage from the makefile, and remove the #includes. Add a Kconfig option for platforms that do not use the early smbus code. Change-Id: I2e6a9cd859292b4dd4720b547d1ff0bbb6c319cf Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/20607 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
30 lines
580 B
Text
30 lines
580 B
Text
if BOARD_PCENGINES_ALIX1C
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select CPU_AMD_GEODE_LX
|
|
select NORTHBRIDGE_AMD_LX
|
|
select SOUTHBRIDGE_AMD_CS5536
|
|
select SUPERIO_WINBOND_W83627HF
|
|
select HAVE_PIRQ_TABLE
|
|
select PIRQ_ROUTE
|
|
select UDELAY_TSC
|
|
select BOARD_ROMSIZE_KB_512
|
|
select POWER_BUTTON_DEFAULT_DISABLE
|
|
select HAVE_OPTION_TABLE
|
|
select HAVE_CMOS_DEFAULT
|
|
select NO_EARLY_SMBUS
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default pcengines/alix1c
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "ALIX.1C"
|
|
|
|
config IRQ_SLOT_COUNT
|
|
int
|
|
default 5
|
|
|
|
endif # BOARD_PCENGINES_ALIX1C
|