[coreboot-gerrit] Patch set updated for coreboot: [WIP] console/Kconfig: Calculate COM port base addresses only on x86

Jonathan Neuschäfer (j.neuschaefer@gmx.net) gerrit at coreboot.org
Tue Oct 11 23:40:03 CEST 2016


Jonathan Neuschäfer (j.neuschaefer at gmx.net) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16982

-gerrit

commit d4b17c95e0e96c63bd6c6167b0a2688489a255f1
Author: Jonathan Neuschäfer <j.neuschaefer at gmx.net>
Date:   Tue Oct 11 18:28:26 2016 +0200

    [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.
    
    Change-Id: Ia1de545325a53607f62d08e76b2f61b25edbe6ef
    Signed-off-by: Jonathan Neuschäfer <j.neuschaefer at gmx.net>
---
 src/console/Kconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/console/Kconfig b/src/console/Kconfig
index 8f74613..278d193 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"



More information about the coreboot-gerrit mailing list