From d2c8826a58ca38ee33ee977b9b0c8183239d87ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Date: Wed, 12 Oct 2016 00:17:59 +0200 Subject: [PATCH] UPSTREAM: [WIP] console/Kconfig: Calculate COM port base addresses only on x86 On other architectures, the serial ports aren't mapped at 0x3f8. WIP: I'm not sure how exactly the dependency should be encoded in Kconfig. BUG=None BRANCH=None TEST=None Signed-off-by: Jonathan Neuschfer Reviewed-on: https://review.coreboot.org/16982 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich Change-Id: Ia1de545325a53607f62d08e76b2f61b25edbe6ef Reviewed-on: https://chromium-review.googlesource.com/400105 Commit-Ready: Furquan Shaikh Tested-by: Furquan Shaikh Reviewed-by: Aaron Durbin --- src/console/Kconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/console/Kconfig b/src/console/Kconfig index 8f74613847..278d193779 100644 --- a/src/console/Kconfig +++ b/src/console/Kconfig @@ -57,6 +57,7 @@ config UART_FOR_CONSOLE # FIXME: Early programming in romstage is incorrect as we should # program different LDN to actually change the physical port. +if ARCH_X86 config TTYS0_BASE hex depends on DRIVERS_UART @@ -75,6 +76,7 @@ comment "Serial port base address = 0x3e8" depends on UART_FOR_CONSOLE = 2 comment "Serial port base address = 0x2e8" depends on UART_FOR_CONSOLE = 3 +endif # ARCH_X86 choice prompt "Baud rate"