Kconfig hex values don't need to be in quotes, and should start with '0x'. If the default value isn't set this way, Kconfig will add the 0x to the start, and the entry can be added unnecessarily to the defconfig since it's "different" than what was set by the default. A check for this has been added to the Kconfig lint tool. Change-Id: I86f37340682771700011b6285e4b4af41b7e9968 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/16834 Tested-by: build bot (Jenkins) Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
61 lines
960 B
Plaintext
61 lines
960 B
Plaintext
if BOARD_ASUS_A8V_E_SE
|
|
|
|
config BOARD_SPECIFIC_OPTIONS # dummy
|
|
def_bool y
|
|
select CPU_AMD_SOCKET_939
|
|
select K8_HT_FREQ_1G_SUPPORT
|
|
select NORTHBRIDGE_AMD_AMDK8
|
|
select SOUTHBRIDGE_VIA_VT8237R
|
|
select SOUTHBRIDGE_VIA_K8T890
|
|
select SOUTHBRIDGE_VIA_SUBTYPE_K8T890
|
|
select SUPERIO_WINBOND_W83627EHG
|
|
select HAVE_OPTION_TABLE
|
|
select HAVE_ACPI_TABLES
|
|
select HAVE_MP_TABLE
|
|
select BOARD_ROMSIZE_KB_512
|
|
select RAMINIT_SYSINFO
|
|
select QRANK_DIMM_SUPPORT
|
|
select SET_FIDVID
|
|
|
|
config MAINBOARD_DIR
|
|
string
|
|
default asus/a8v-e_se
|
|
|
|
config DCACHE_RAM_BASE
|
|
hex
|
|
default 0xcc000
|
|
|
|
config DCACHE_RAM_SIZE
|
|
hex
|
|
default 0x4000
|
|
|
|
config APIC_ID_OFFSET
|
|
hex
|
|
default 0x10
|
|
|
|
config MAINBOARD_PART_NUMBER
|
|
string
|
|
default "A8V-E SE"
|
|
|
|
config HW_MEM_HOLE_SIZEK
|
|
hex
|
|
default 0x0
|
|
|
|
config MAX_CPUS
|
|
int
|
|
default 2
|
|
|
|
config MAX_PHYSICAL_CPUS
|
|
int
|
|
default 1
|
|
|
|
config HT_CHAIN_END_UNITID_BASE
|
|
hex
|
|
default 0x20
|
|
|
|
config HT_CHAIN_UNITID_BASE
|
|
hex
|
|
default 0x0
|
|
|
|
endif # BOARD_ASUS_A8V_E_SE
|