Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * (C) Copyright 2019 Rockchip Electronics Co., Ltd |
| 4 | */ |
| 5 | |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 6 | #include <debug_uart.h> |
| 7 | #include <dm.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 8 | #include <init.h> |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 9 | #include <ram.h> |
| 10 | #include <spl.h> |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 11 | #include <asm/io.h> |
| 12 | #include <asm/arch-rockchip/bootrom.h> |
| 13 | #include <asm/arch-rockchip/sdram_px30.h> |
| 14 | |
| 15 | #define TIMER_LOAD_COUNT0 0x00 |
| 16 | #define TIMER_LOAD_COUNT1 0x04 |
| 17 | #define TIMER_CUR_VALUE0 0x08 |
| 18 | #define TIMER_CUR_VALUE1 0x0c |
| 19 | #define TIMER_CONTROL_REG 0x10 |
| 20 | |
| 21 | #define TIMER_EN 0x1 |
| 22 | #define TIMER_FMODE (0 << 1) |
| 23 | #define TIMER_RMODE (1 << 1) |
| 24 | |
| 25 | void secure_timer_init(void) |
| 26 | { |
| 27 | writel(0, CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG); |
| 28 | writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE + TIMER_LOAD_COUNT0); |
| 29 | writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE + TIMER_LOAD_COUNT1); |
| 30 | writel(TIMER_EN | TIMER_FMODE, |
| 31 | CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG); |
| 32 | } |
| 33 | |
| 34 | void board_init_f(ulong dummy) |
| 35 | { |
| 36 | int ret; |
| 37 | |
Lukasz Czechowski | 6460a70 | 2024-04-17 13:21:28 +0200 | [diff] [blame] | 38 | #if defined(CONFIG_DEBUG_UART) && defined(CONFIG_TPL_SERIAL) |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 39 | debug_uart_init(); |
| 40 | /* |
| 41 | * Debug UART can be used from here if required: |
| 42 | * |
| 43 | * debug_uart_init(); |
| 44 | * printch('a'); |
| 45 | * printhex8(0x1234); |
| 46 | * printascii("string"); |
| 47 | */ |
Lukasz Czechowski | 6460a70 | 2024-04-17 13:21:28 +0200 | [diff] [blame] | 48 | #if CONFIG_TPL_BANNER_PRINT |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 49 | printascii("U-Boot TPL board init\n"); |
| 50 | #endif |
Lukasz Czechowski | 6460a70 | 2024-04-17 13:21:28 +0200 | [diff] [blame] | 51 | #endif |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 52 | |
| 53 | secure_timer_init(); |
| 54 | ret = sdram_init(); |
| 55 | if (ret) |
| 56 | printascii("sdram_init failed\n"); |
| 57 | |
| 58 | /* return to maskrom */ |
| 59 | back_to_bootrom(BROM_BOOT_NEXTSTAGE); |
| 60 | } |