Merge tag 'u-boot-imx-20190719' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / arch / arm / mach-rockchip / rk3288 / rk3288.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2016 Rockchip Electronics Co., Ltd
4  */
5 #include <asm/armv7.h>
6 #include <asm/io.h>
7 #include <asm/arch-rockchip/hardware.h>
8 #include <asm/arch-rockchip/grf_rk3288.h>
9
10 #define GRF_BASE        0xff770000
11
12 #ifdef CONFIG_SPL_BUILD
13 static void configure_l2ctlr(void)
14 {
15         u32 l2ctlr;
16
17         l2ctlr = read_l2ctlr();
18         l2ctlr &= 0xfffc0000; /* clear bit0~bit17 */
19
20         /*
21          * Data RAM write latency: 2 cycles
22          * Data RAM read latency: 2 cycles
23          * Data RAM setup latency: 1 cycle
24          * Tag RAM write latency: 1 cycle
25          * Tag RAM read latency: 1 cycle
26          * Tag RAM setup latency: 1 cycle
27          */
28         l2ctlr |= (1 << 3 | 1 << 0);
29         write_l2ctlr(l2ctlr);
30 }
31 #endif
32
33 int arch_cpu_init(void)
34 {
35 #ifdef CONFIG_SPL_BUILD
36         configure_l2ctlr();
37 #else
38         /* We do some SoC one time setting here. */
39         struct rk3288_grf * const grf = (void *)GRF_BASE;
40
41         /* Use rkpwm by default */
42         rk_setreg(&grf->soc_con2, 1 << 0);
43 #endif
44
45         return 0;
46 }
47
48 #ifdef CONFIG_DEBUG_UART_BOARD_INIT
49 void board_debug_uart_init(void)
50 {
51         /* Enable early UART on the RK3288 */
52         struct rk3288_grf * const grf = (void *)GRF_BASE;
53
54         rk_clrsetreg(&grf->gpio7ch_iomux, GPIO7C7_MASK << GPIO7C7_SHIFT |
55                      GPIO7C6_MASK << GPIO7C6_SHIFT,
56                      GPIO7C7_UART2DBG_SOUT << GPIO7C7_SHIFT |
57                      GPIO7C6_UART2DBG_SIN << GPIO7C6_SHIFT);
58 }
59 #endif