diff options
author | Julia Kittlinger <launchpad.vineyard395@passinbox.com> | 2024-08-18 10:56:29 +0200 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-08-18 10:55:38 +0000 |
commit | 957b6982f637c11db70f2b8d2831941ca5c7a444 (patch) | |
tree | 43473264e9de096c1391b4d0c855dbb8d8ee72f1 /src/mainboard/acer/g43t-am3/Kconfig | |
parent | 26b1a5f62bb25babfb2a8313db0defd84da681ab (diff) |
mb/acer/g43t-am3: Add Acer Q45T-AM as a variant
This adds a new board as a variant of the Acer G43T-AM3 with the
following prominent changes:
* Intel Q45 northbridge (GMCH) instead of a G43
* 4 MiB of flash instead of 2 MiB
* Two serial ports (one external, one internal)
* A parallel port connector (internal)
* An FDD connector
* DVI-D instead of HDMI
* No Firewire
The port was done based on logs and info received via private email. It
was only tested on the Acer G43T-AM3 so far, which still builds and works.
Change-Id: Ic2654ca4b198bfea409992be14e89702cf67ea50
Signed-off-by: Julia Kittlinger <launchpad.vineyard395@passinbox.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83968
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'src/mainboard/acer/g43t-am3/Kconfig')
-rw-r--r-- | src/mainboard/acer/g43t-am3/Kconfig | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mainboard/acer/g43t-am3/Kconfig b/src/mainboard/acer/g43t-am3/Kconfig index 34d191f4d5..77ce9d4ca1 100644 --- a/src/mainboard/acer/g43t-am3/Kconfig +++ b/src/mainboard/acer/g43t-am3/Kconfig @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-only -if BOARD_ACER_G43T_AM3 +if BOARD_ACER_G43T_AM3 || BOARD_ACER_Q45T_AM config BOARD_SPECIFIC_OPTIONS def_bool y @@ -10,6 +10,7 @@ config BOARD_SPECIFIC_OPTIONS select SUPERIO_ITE_IT8720F select HAVE_ACPI_TABLES select BOARD_ROMSIZE_KB_2048 if BOARD_ACER_G43T_AM3 + select BOARD_ROMSIZE_KB_4096 if BOARD_ACER_Q45T_AM select PCIEXP_ASPM select PCIEXP_CLK_PM select HAVE_OPTION_TABLE @@ -23,18 +24,21 @@ config BOARD_SPECIFIC_OPTIONS config VGA_BIOS_ID string default "8086,2e22" if BOARD_ACER_G43T_AM3 + default "8086,2e12" if BOARD_ACER_Q45T_AM config MAINBOARD_DIR default "acer/g43t-am3" config VARIANT_DIR default "g43t-am3" if BOARD_ACER_G43T_AM3 + default "q45t-am" if BOARD_ACER_Q45T_AM config MAINBOARD_PART_NUMBER default "G43T-AM3" if BOARD_ACER_G43T_AM3 + default "Q45T-AM" if BOARD_ACER_Q45T_AM config OVERRIDE_DEVICETREE string default "variants/\$(CONFIG_VARIANT_DIR)/overridetree.cb" -endif # BOARD_ACER_G43T_AM3 +endif # BOARD_ACER_G43T_AM3 || BOARD_ACER_Q45T_AM |