2018-12-16 17:17:13 +01:00
|
|
|
#
|
|
|
|
# This file is part of the coreboot project.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; version 2 of the License.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
|
2018-06-13 14:13:15 +02:00
|
|
|
if BOARD_ASUS_P5QPL_AM || BOARD_ASUS_P5G41T_M_LX
|
2018-12-16 17:17:13 +01:00
|
|
|
|
|
|
|
config BOARD_SPECIFIC_OPTIONS
|
|
|
|
def_bool y
|
|
|
|
select CPU_INTEL_SOCKET_LGA775
|
|
|
|
select NORTHBRIDGE_INTEL_X4X
|
|
|
|
select SOUTHBRIDGE_INTEL_I82801GX
|
|
|
|
select SUPERIO_WINBOND_W83627DHG
|
|
|
|
select HAVE_ACPI_TABLES
|
|
|
|
select BOARD_ROMSIZE_KB_1024
|
|
|
|
select HAVE_OPTION_TABLE
|
|
|
|
select HAVE_CMOS_DEFAULT
|
|
|
|
select HAVE_ACPI_RESUME
|
|
|
|
select INTEL_GMA_HAVE_VBT
|
|
|
|
select MAINBOARD_HAS_LIBGFXINIT
|
2018-06-13 14:13:15 +02:00
|
|
|
|
|
|
|
# P5G41T-M LX has ATL1C which works fine
|
|
|
|
select ATHEROS_ATL1E_SETMAC if BOARD_ASUS_P5QPL_AM
|
2018-12-16 17:17:13 +01:00
|
|
|
|
|
|
|
config MAINBOARD_DIR
|
|
|
|
string
|
|
|
|
default "asus/p5qpl-am"
|
|
|
|
|
2018-06-13 14:13:15 +02:00
|
|
|
config VARIANT_DIR
|
|
|
|
string
|
|
|
|
default "p5qpl-am" if BOARD_ASUS_P5QPL_AM
|
|
|
|
default "p5g41t-m_lx" if BOARD_ASUS_P5G41T_M_LX
|
|
|
|
|
2018-12-16 17:17:13 +01:00
|
|
|
config MAINBOARD_PART_NUMBER
|
|
|
|
string
|
2018-06-13 14:13:15 +02:00
|
|
|
default "P5QPL-AM" if BOARD_ASUS_P5QPL_AM
|
|
|
|
default "P5G41T-M LX" if BOARD_ASUS_P5G41T_M_LX
|
|
|
|
|
|
|
|
config OVERRIDE_DEVICETREE
|
|
|
|
string
|
|
|
|
default "variants/$(CONFIG_VARIANT_DIR)/overridetree.cb"
|
2018-12-16 17:17:13 +01:00
|
|
|
|
|
|
|
config MAX_CPUS
|
|
|
|
int
|
|
|
|
default 4
|
|
|
|
|
2018-06-13 14:13:15 +02:00
|
|
|
# Override the default variant behavior, since the data.vbt is the same
|
|
|
|
config INTEL_GMA_VBT_FILE
|
|
|
|
default "src/mainboard/$(MAINBOARDDIR)/data.vbt"
|
|
|
|
|
|
|
|
endif # BOARD_ASUS_P5QPL_AM || BOARD_ASUS_P5G41T_M_LX
|