blob: b897ffeae25eb92fa585330d6c91709313101292 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
huang lin1115b642015-11-17 14:20:27 +08002/*
3 * (C) Copyright 2015 Rockchip Electronics Co., Ltd
huang lin1115b642015-11-17 14:20:27 +08004 */
5
6#include <common.h>
Simon Glasse0f177b2015-12-13 21:37:00 -07007#include <debug_uart.h>
huang lin1115b642015-11-17 14:20:27 +08008#include <asm/io.h>
Kever Yang9fbe17c2019-03-28 11:01:23 +08009#include <asm/arch-rockchip/bootrom.h>
10#include <asm/arch-rockchip/grf_rk3036.h>
11#include <asm/arch-rockchip/hardware.h>
12#include <asm/arch-rockchip/sdram_rk3036.h>
13#include <asm/arch-rockchip/timer.h>
14#include <asm/arch-rockchip/uart.h>
huang lin1115b642015-11-17 14:20:27 +080015
huang lin1115b642015-11-17 14:20:27 +080016#define GRF_BASE 0x20008000
huang lin1115b642015-11-17 14:20:27 +080017
18#define DEBUG_UART_BASE 0x20068000
19
huang lin1115b642015-11-17 14:20:27 +080020void board_init_f(ulong dummy)
21{
22#ifdef EARLY_DEBUG
Tom Rini92408762017-05-08 22:14:20 -040023 struct rk3036_grf * const grf = (void *)GRF_BASE;
huang lin1115b642015-11-17 14:20:27 +080024 /*
25 * NOTE: sd card and debug uart use same iomux in rk3036,
26 * so if you enable uart,
27 * you can not boot from sdcard
28 */
29 rk_clrsetreg(&grf->gpio1c_iomux,
30 GPIO1C3_MASK << GPIO1C3_SHIFT |
31 GPIO1C2_MASK << GPIO1C2_SHIFT,
32 GPIO1C3_UART2_SOUT << GPIO1C3_SHIFT |
33 GPIO1C2_UART2_SIN << GPIO1C2_SHIFT);
Simon Glasse0f177b2015-12-13 21:37:00 -070034 debug_uart_init();
huang lin1115b642015-11-17 14:20:27 +080035#endif
36 rockchip_timer_init();
37 sdram_init();
38
39 /* return to maskrom */
Philipp Tomsich7234c732017-10-10 16:21:16 +020040 back_to_bootrom(BROM_BOOT_NEXTSTAGE);
huang lin1115b642015-11-17 14:20:27 +080041}
42
43/* Place Holders */
44void board_init_r(gd_t *id, ulong dest_addr)
45{
46 /*
47 * Function attribute is no-return
48 * This Function never executes
49 */
50 while (1)
51 ;
52}