diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2017-12-30 11:06:54 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2018-07-22 16:14:59 +0000 |
commit | b7ff886f0ecdc84d0deb8e795e8ffd26516f09c4 (patch) | |
tree | 7bd70256b3ccb875ced9547926682dec9bf410dd /src/mainboard/asrock/g41c-gs/Kconfig | |
parent | e98f305abd5056da54e31ee23765eef98f56abc1 (diff) | |
download | coreboot-b7ff886f0ecdc84d0deb8e795e8ffd26516f09c4.tar.xz |
mb/asrock/g41c-gs: Add g41m-gs variant
This board is quite similar to the other ones in this dir an can be
supported with little code changes.
TODO what works:
* DDR2 dual channel PC2-6400;
* SATA;
* USB;
* Ethernet;
* Audio;
* Native graphic init;
* SuperIO Sensors;
* Reboot, poweroff, S3 resume;
* Flashrom (vendor and coreboot);
TODO how tested:
Tests were run with SeaBIOS and Debian stretch, using Linux 4.9.65.
Change-Id: I6844efacaae109cf1e0894201852fddd8043a706
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/23043
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/asrock/g41c-gs/Kconfig')
-rw-r--r-- | src/mainboard/asrock/g41c-gs/Kconfig | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mainboard/asrock/g41c-gs/Kconfig b/src/mainboard/asrock/g41c-gs/Kconfig index 1139be6093..ad2fe22a0e 100644 --- a/src/mainboard/asrock/g41c-gs/Kconfig +++ b/src/mainboard/asrock/g41c-gs/Kconfig @@ -14,7 +14,7 @@ # GNU General Public License for more details. # -if BOARD_ASROCK_G41C_GS_R2_0 || BOARD_ASROCK_G41C_GS +if BOARD_ASROCK_G41C_GS_R2_0 || BOARD_ASROCK_G41C_GS || BOARD_ASROCK_G41M_GS config BOARD_SPECIFIC_OPTIONS def_bool y @@ -23,7 +23,8 @@ config BOARD_SPECIFIC_OPTIONS select NORTHBRIDGE_INTEL_X4X select SOUTHBRIDGE_INTEL_I82801GX select SUPERIO_NUVOTON_NCT6776 if BOARD_ASROCK_G41C_GS_R2_0 - select SUPERIO_WINBOND_W83627DHG if BOARD_ASROCK_G41C_GS + select SUPERIO_WINBOND_W83627DHG if BOARD_ASROCK_G41C_GS \ + || BOARD_ASROCK_G41M_GS select HAVE_ACPI_TABLES select BOARD_ROMSIZE_KB_1024 select PCIEXP_ASPM @@ -44,11 +45,13 @@ config MAINBOARD_PART_NUMBER string default "G41C-GS R2.0" if BOARD_ASROCK_G41C_GS_R2_0 default "G41C-GS" if BOARD_ASROCK_G41C_GS + default "G41M-GS" if BOARD_ASROCK_G41M_GS config DEVICETREE string default "variants/g41c-gs-r2/devicetree.cb" if BOARD_ASROCK_G41C_GS_R2_0 default "variants/g41c-gs/devicetree.cb" if BOARD_ASROCK_G41C_GS + default "variants/g41m-gs/devicetree.cb" if BOARD_ASROCK_G41M_GS config MAX_CPUS int |