summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWadim Egorov <w.egorov@phytec.de>2016-08-24 14:49:25 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2016-08-26 07:28:31 +0200
commit4372a3ed0656afb64c449797e6d2747a7e0e73ed (patch)
treeef6d3762950c9827f18766a04c92e149877e768f
parent413a35395aef648dd605f8c06dd7c481d588a815 (diff)
downloadbarebox-4372a3ed0656afb64c449797e6d2747a7e0e73ed.tar.gz
barebox-4372a3ed0656afb64c449797e6d2747a7e0e73ed.tar.xz
ARM: rockchip: Add early debug support for RK3288
Signed-off-by: Wadim Egorov <w.egorov@phytec.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--arch/arm/mach-rockchip/include/mach/debug_ll.h73
-rw-r--r--common/Kconfig6
2 files changed, 46 insertions, 33 deletions
diff --git a/arch/arm/mach-rockchip/include/mach/debug_ll.h b/arch/arm/mach-rockchip/include/mach/debug_ll.h
index c666b99e81..9fde2976f1 100644
--- a/arch/arm/mach-rockchip/include/mach/debug_ll.h
+++ b/arch/arm/mach-rockchip/include/mach/debug_ll.h
@@ -1,25 +1,31 @@
#ifndef __MACH_DEBUG_LL_H__
#define __MACH_DEBUG_LL_H__
+#include <common.h>
#include <io.h>
+#include <mach/rk3188-regs.h>
+#include <mach/rk3288-regs.h>
+
+#ifdef CONFIG_ARCH_RK3188
+
+#define UART_CLOCK 100000000
+#define RK_DEBUG_SOC RK3188
+#define serial_out(a, v) writeb(v, a)
+#define serial_in(a) readb(a)
+
+#elif defined CONFIG_ARCH_RK3288
+
+#define UART_CLOCK 24000000
+#define RK_DEBUG_SOC RK3288
+#define serial_out(a, v) writel(v, a)
+#define serial_in(a) readl(a)
-#if CONFIG_DEBUG_ROCKCHIP_UART_PORT == 0
-#define UART_BASE 0x10124000
-#endif
-#if CONFIG_DEBUG_ROCKCHIP_UART_PORT == 1
-#define UART_BASE 0x10126000
-#endif
-#if CONFIG_DEBUG_ROCKCHIP_UART_PORT == 2
-#define UART_BASE 0x20064000
-#endif
-#if CONFIG_DEBUG_ROCKCHIP_UART_PORT == 3
-#define UART_BASE 0x20068000
#endif
-#define LSR_THRE 0x20 /* Xmit holding register empty */
-#define LSR (5 << 2)
-#define THR (0 << 2)
+#define __RK_UART_BASE(soc, num) soc##_UART##num##_BASE
+#define RK_UART_BASE(soc, num) __RK_UART_BASE(soc, num)
+#define LSR_THRE 0x20 /* Xmit holding register empty */
#define LCR_BKSE 0x80 /* Bank select enable */
#define LSR (5 << 2)
#define THR (0 << 2)
@@ -33,28 +39,35 @@
static inline void INIT_LL(void)
{
- unsigned int clk = 100000000;
- unsigned int divisor = clk / 16 / 115200;
-
- writeb(0x00, UART_BASE + LCR);
- writeb(0x00, UART_BASE + IER);
- writeb(0x07, UART_BASE + MDR);
- writeb(LCR_BKSE, UART_BASE + LCR);
- writeb(divisor & 0xff, UART_BASE + DLL);
- writeb(divisor >> 8, UART_BASE + DLM);
- writeb(0x03, UART_BASE + LCR);
- writeb(0x03, UART_BASE + MCR);
- writeb(0x07, UART_BASE + FCR);
- writeb(0x00, UART_BASE + MDR);
+ void __iomem *base = IOMEM(RK_UART_BASE(RK_DEBUG_SOC,
+ CONFIG_DEBUG_ROCKCHIP_UART_PORT));
+ unsigned int divisor = DIV_ROUND_CLOSEST(UART_CLOCK,
+ 16 * CONFIG_BAUDRATE);
+
+ serial_out(base + LCR, 0x00);
+ serial_out(base + IER, 0x00);
+ serial_out(base + MDR, 0x07);
+ serial_out(base + LCR, LCR_BKSE);
+ serial_out(base + DLL, divisor & 0xff);
+ serial_out(base + DLM, divisor >> 8);
+ serial_out(base + LCR, 0x03);
+ serial_out(base + MCR, 0x03);
+ serial_out(base + FCR, 0x07);
+ serial_out(base + MDR, 0x00);
}
static inline void PUTC_LL(char c)
{
+ void __iomem *base = IOMEM(RK_UART_BASE(RK_DEBUG_SOC,
+ CONFIG_DEBUG_ROCKCHIP_UART_PORT));
+
/* Wait until there is space in the FIFO */
- while ((readb(UART_BASE + LSR) & LSR_THRE) == 0);
+ while ((serial_in(base + LSR) & LSR_THRE) == 0)
+ ;
/* Send the character */
- writeb(c, UART_BASE + THR);
+ serial_out(base + THR, c);
/* Wait to make sure it hits the line, in case we die too soon. */
- while ((readb(UART_BASE + LSR) & LSR_THRE) == 0);
+ while ((serial_in(base + LSR) & LSR_THRE) == 0)
+ ;
}
#endif
diff --git a/common/Kconfig b/common/Kconfig
index 38225ebe63..f06b267f20 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -1085,11 +1085,11 @@ config DEBUG_AM33XX_UART
on AM33XX.
config DEBUG_ROCKCHIP_UART
- bool "RK31xx Debug UART"
+ bool "RK3xxx Debug UART"
depends on ARCH_ROCKCHIP
help
Say Y here if you want kernel low-level debugging support
- on RK31XX.
+ on RK3XXX.
endchoice
@@ -1124,7 +1124,7 @@ config DEBUG_OMAP_UART_PORT
AM33XX: 0 - 2
config DEBUG_ROCKCHIP_UART_PORT
- int "RK31xx UART debug port" if DEBUG_ROCKCHIP_UART
+ int "RK3xxx UART debug port" if DEBUG_ROCKCHIP_UART
default 2
depends on ARCH_ROCKCHIP
help