aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/compressed
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2020-08-27 23:28:56 +0100
committerRussell King <rmk+kernel@armlinux.org.uk>2020-09-15 14:35:28 +0100
commit4df24fef09615d8f7dd2120f5072486addfd3eb9 (patch)
tree83a392d879ccb5dc6556ce3e6595b43b38dba597 /arch/arm/boot/compressed
parentARM: 9004/1: debug: Split waituart to CTS and TXRDY (diff)
downloadlinux-dev-4df24fef09615d8f7dd2120f5072486addfd3eb9.tar.xz
linux-dev-4df24fef09615d8f7dd2120f5072486addfd3eb9.zip
ARM: 9005/1: debug: Select flow control for all debug UARTs
Instead of a flow control selection mechanism specifically for 8250, make this available for all debug UARTs. If the debug UART supports waiting for CTS to be asserted, then this code can be activated for terminals that need it. We keep the defaults for EBSA110, Footbridge, Gemini and RPC so that this still works as expected for these older platforms: they assume that flow control shall be enabled for debug prints. I switch the location of the check for ifdef CONFIG_DEBUG_UART_FLOW_CONTROL from the actual debug UART drivers: the code would get compiled-out for 8250 and Tegra unless their custom config (or passing -DFLOW_CONTROL in the Tegra case) was not set. Instead this is conditional at the three places where we print debug messages. The idea is that debug UARTs can be implemented without this ifdef boilerplate so they look cleaner, alas the ifdef has to be somewhere. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/boot/compressed')
-rw-r--r--arch/arm/boot/compressed/debug.S2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/boot/compressed/debug.S b/arch/arm/boot/compressed/debug.S
index 97f4e74692e8..fac40a717fcf 100644
--- a/arch/arm/boot/compressed/debug.S
+++ b/arch/arm/boot/compressed/debug.S
@@ -8,7 +8,9 @@
ENTRY(putc)
addruart r1, r2, r3
+#ifdef CONFIG_DEBUG_UART_FLOW_CONTROL
waituartcts r3, r1
+#endif
waituarttxrdy r3, r1
senduart r0, r1
busyuart r3, r1