summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorMichael Pratt <mcpratt@pm.me>2023-12-05 18:36:42 -0500
committerHauke Mehrtens <hauke@hauke-m.de>2024-01-02 22:10:34 +0100
commit4c1e9bd8581e01793b26f3bc964975311450ece0 (patch)
tree0347fcea2061379e9f8261f0516c90c10b178a1d /target
parentf393ffcac163926bf9dbbda47c25cc7809952609 (diff)
downloadopenwrt-4c1e9bd8581e01793b26f3bc964975311450ece0.tar.gz
openwrt-4c1e9bd8581e01793b26f3bc964975311450ece0.tar.bz2
openwrt-4c1e9bd8581e01793b26f3bc964975311450ece0.zip
ramips: lzma-loader: use virtual memory segments for uart base address
The native bus address for UART was entered for rt305x UART_BASE, but the bootloaders have memory space remapped with the same virtual memory map the kernel uses for program addressing at boot time. In UBoot, the remapped address is often defined as TEXT_BASE. In the kernel, for rt305x this remapped address is RT305X_SYSC_BASE. (arch/mips/include/asm/mach-ralink/rt305x.h) Because the ralink I/O busses begin at a low address of 0x10000000, they are remapped using KSEG0 or KSEG1, which for all 32-bit MIPS SOCs (arch/mips/include/asm/addrspace.h) are offsets of 0x80000000 and 0xa0000000 respectively. This is consistent with the other UART_BASE macros here and with MIPS memory map documentation. Before the recent rework of the lzma-loader for ramips, the original board-$(PLATFORM).c files also did not use KSEG1ADDR for UART_BASE despite being defined, which made this mistake easier to occur. Fix this by defining KSEG1ADDR again and actually use it. Copy and paste from the kernel's macros for consistency. Link: https://training.mips.com/basic_mips/PDF/Memory_Map.pdf Fixes: c31319b66 ("ramips: lzma-loader: Refactor loader") Reported-by: Lech Perczak <lech.perczak@gmail.com> Signed-off-by: Michael Pratt <mcpratt@pm.me>
Diffstat (limited to 'target')
-rw-r--r--target/linux/ramips/image/lzma-loader/src/board.c20
1 files changed, 17 insertions, 3 deletions
diff --git a/target/linux/ramips/image/lzma-loader/src/board.c b/target/linux/ramips/image/lzma-loader/src/board.c
index ae9da38073..050ef695f9 100644
--- a/target/linux/ramips/image/lzma-loader/src/board.c
+++ b/target/linux/ramips/image/lzma-loader/src/board.c
@@ -11,19 +11,33 @@
*/
#include <stdint.h>
+#include <stddef.h>
+
+#define KSEG0 0x80000000
+#define KSEG1 0xa0000000
+
+#define _ATYPE_ __PTRDIFF_TYPE__
+#define _ATYPE32_ int
+
+#define _ACAST32_ (_ATYPE_)(_ATYPE32_)
+
+#define CPHYSADDR(a) ((_ACAST32_(a)) & 0x1fffffff)
+
+#define KSEG0ADDR(a) (CPHYSADDR(a) | KSEG0)
+#define KSEG1ADDR(a) (CPHYSADDR(a) | KSEG1)
#if defined(SOC_MT7620) || defined(SOC_RT3883)
-#define UART_BASE 0xb0000c00
+#define UART_BASE KSEG1ADDR(0x10000c00)
#define UART_THR (UART_BASE + 0x04)
#define UART_LSR (UART_BASE + 0x1c)
#define UART_LSR_THRE_MASK 0x40
#elif defined(SOC_MT7621)
-#define UART_BASE 0xbe000c00
+#define UART_BASE KSEG1ADDR(0x1e000c00)
#define UART_THR (UART_BASE + 0x00)
#define UART_LSR (UART_BASE + 0x14)
#define UART_LSR_THRE_MASK 0x20
#elif defined(SOC_RT305X)
-#define UART_BASE 0x10000500
+#define UART_BASE KSEG1ADDR(0x10000500)
#define UART_THR (UART_BASE + 0x04)
#define UART_LSR (UART_BASE + 0x1c)
#define UART_LSR_THRE_MASK 0x20