Specify the type of the `MAINBOARD_PART_NUMBER` Kconfig symbol once instead of doing so on each and every mainboard. Change-Id: I3692f9e82fe90af4d0da1d037018a20aa1b45793 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56554 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Frans Hendriks <fhendriks@eltan.com> Reviewed-by: Felix Singer <felixsinger@posteo.net> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
47 lines
755 B
Plaintext
47 lines
755 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
if BOARD_AMD_UNIONSTATION
|
|
|
|
config BOARD_SPECIFIC_OPTIONS
|
|
def_bool y
|
|
select CPU_AMD_AGESA_FAMILY14
|
|
select NORTHBRIDGE_AMD_AGESA_FAMILY14
|
|
select SOUTHBRIDGE_AMD_CIMX_SB800
|
|
select HAVE_OPTION_TABLE
|
|
select HAVE_PIRQ_TABLE
|
|
select HAVE_ACPI_TABLES
|
|
select BOARD_ROMSIZE_KB_2048
|
|
select GFXUMA
|
|
|
|
config MAINBOARD_DIR
|
|
default "amd/union_station"
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
default "Unionstation"
|
|
|
|
config HW_MEM_HOLE_SIZEK
|
|
hex
|
|
default 0x200000
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 4
|
|
|
|
config IRQ_SLOT_COUNT
|
|
int
|
|
default 11
|
|
|
|
config ONBOARD_VGA_IS_PRIMARY
|
|
bool
|
|
default y
|
|
|
|
config VGA_BIOS_FILE
|
|
string
|
|
default "site-local/vgabios.bin"
|
|
|
|
config VGA_BIOS_ID
|
|
string
|
|
default "1002,9802"
|
|
|
|
endif # BOARD_AMD_UNIONSTATION
|