diff options
author | Michał Żygowski <michal.zygowski@3mdeb.com> | 2018-09-24 13:17:40 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-09-26 15:37:55 +0000 |
commit | cc16ec13ef17cd216df44ab7fccd786238a0ea20 (patch) | |
tree | 0123c11ecad90d19366b1559e900745e9e979bae /src/mainboard/pcengines | |
parent | dfaff4d18a711f764c9198f488435fdc553dcea2 (diff) |
src/mainboard/pcengines/apu2/Kconfig: Clean up PINMUX settings
Configuration of pins exposed by superIO are inconsistent between board
variants. Each platform should have UARTs enabled, this is expected
behaviour of these pins. Given that APU2_PINMUX_UART_x can be set for
all boards as default.
Change-Id: Ifb7dfe23a95ba0e572adc38212333d9fdd234d53
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
Reviewed-on: https://review.coreboot.org/28720
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Piotr Król <piotr.krol@3mdeb.com>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/mainboard/pcengines')
-rw-r--r-- | src/mainboard/pcengines/apu2/Kconfig | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/mainboard/pcengines/apu2/Kconfig b/src/mainboard/pcengines/apu2/Kconfig index 0d3ef51aae..fe74bcc1f6 100644 --- a/src/mainboard/pcengines/apu2/Kconfig +++ b/src/mainboard/pcengines/apu2/Kconfig @@ -78,9 +78,7 @@ config AGESA_BINARY_PI_FILE choice prompt "J19 pins 1-10" - default APU2_PINMUX_OFF_C if BOARD_PCENGINES_APU2 || \ - BOARD_PCENGINES_APU3 || BOARD_PCENGINES_APU4 - default APU2_PINMUX_UART_C if BOARD_PCENGINES_APU5 + default APU2_PINMUX_UART_C config APU2_PINMUX_OFF_C bool "disable" @@ -97,9 +95,7 @@ endchoice choice prompt "J19 pins 11-20" - default APU2_PINMUX_OFF_D if BOARD_PCENGINES_APU2 || \ - BOARD_PCENGINES_APU3 || BOARD_PCENGINES_APU4 - default APU2_PINMUX_UART_D if BOARD_PCENGINES_APU5 + default APU2_PINMUX_UART_D config APU2_PINMUX_OFF_D bool "disable" |