ramips: lzma-loader: use default uart for rt305x
authorMichael Pratt <mcpratt@pm.me>
Wed, 6 Dec 2023 19:29:26 +0000 (14:29 -0500)
committerHauke Mehrtens <hauke@hauke-m.de>
Tue, 2 Jan 2024 21:10:34 +0000 (22:10 +0100)
The rt305x series SOC have two UART devices,
and the one at bus address 0x500 is disabled by default.
Some boards do not even have a pinout for the first one,
so use the same one that the kernel uses at 0xc00 instead.

This allows the lzma-loader printing to be visible
alongside the kernel log in the same console.

Tested-by: Lech Perczak <lech.perczak@gmail.com> # zte,mf283plus
Signed-off-by: Michael Pratt <mcpratt@pm.me>
target/linux/ramips/image/lzma-loader/src/board.c

index 9f87cddec71ad396d82d997212d6b1a9385b48db..de02f58b9f4813df143077ebe13674f7edbbbee3 100644 (file)
@@ -40,7 +40,7 @@
 #define UART_LSR                       (UART_BASE + 0x14)
 #define UART_LSR_MASK                  UART_LSR_THRE
 #elif defined(SOC_RT305X)
-#define UART_BASE                      KSEG1ADDR(0x10000500)
+#define UART_BASE                      KSEG1ADDR(0x10000c00)
 #define UART_THR                       (UART_BASE + 0x04)
 #define UART_LSR                       (UART_BASE + 0x1c)
 #define UART_LSR_MASK                  UART_LSR_THRE