blob: 550e3a1521424ccbb15b5d344c0dd069245f8dc1 [file] [log] [blame]
huang linbe1d5e02015-11-17 14:20:27 +08001/*
2 * (C) Copyright 2015 Rockchip Electronics Co., Ltd
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Simon Glass9b205192015-12-13 21:37:00 -07008#include <debug_uart.h>
huang linbe1d5e02015-11-17 14:20:27 +08009#include <asm/io.h>
Heiko Stübneraade0772017-02-18 19:46:26 +010010#include <asm/arch/bootrom.h>
huang linbe1d5e02015-11-17 14:20:27 +080011#include <asm/arch/grf_rk3036.h>
12#include <asm/arch/hardware.h>
13#include <asm/arch/sdram_rk3036.h>
14#include <asm/arch/timer.h>
15#include <asm/arch/uart.h>
16
17DECLARE_GLOBAL_DATA_PTR;
18
19#define GRF_BASE 0x20008000
huang linbe1d5e02015-11-17 14:20:27 +080020
21#define DEBUG_UART_BASE 0x20068000
22
huang linbe1d5e02015-11-17 14:20:27 +080023void board_init_f(ulong dummy)
24{
25#ifdef EARLY_DEBUG
Tom Rini80403aa2017-05-08 22:14:20 -040026 struct rk3036_grf * const grf = (void *)GRF_BASE;
huang linbe1d5e02015-11-17 14:20:27 +080027 /*
28 * NOTE: sd card and debug uart use same iomux in rk3036,
29 * so if you enable uart,
30 * you can not boot from sdcard
31 */
32 rk_clrsetreg(&grf->gpio1c_iomux,
33 GPIO1C3_MASK << GPIO1C3_SHIFT |
34 GPIO1C2_MASK << GPIO1C2_SHIFT,
35 GPIO1C3_UART2_SOUT << GPIO1C3_SHIFT |
36 GPIO1C2_UART2_SIN << GPIO1C2_SHIFT);
Simon Glass9b205192015-12-13 21:37:00 -070037 debug_uart_init();
huang linbe1d5e02015-11-17 14:20:27 +080038#endif
39 rockchip_timer_init();
40 sdram_init();
41
42 /* return to maskrom */
Philipp Tomsichb82bd1f2017-10-10 16:21:16 +020043 back_to_bootrom(BROM_BOOT_NEXTSTAGE);
huang linbe1d5e02015-11-17 14:20:27 +080044}
45
46/* Place Holders */
47void board_init_r(gd_t *id, ulong dest_addr)
48{
49 /*
50 * Function attribute is no-return
51 * This Function never executes
52 */
53 while (1)
54 ;
55}