blob: 30be64042521df5a78024bf285260a943569c627 [file] [log] [blame]
Kever Yang49105fb2019-07-22 19:59:12 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2019 Rockchip Electronics Co., Ltd
4 */
5
6#include <common.h>
7#include <debug_uart.h>
8#include <dm.h>
Simon Glassdb41d652019-12-28 10:45:07 -07009#include <hang.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060010#include <image.h>
Simon Glass691d7192020-05-10 11:40:02 -060011#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Kever Yang49105fb2019-07-22 19:59:12 +080013#include <ram.h>
14#include <spl.h>
15#include <asm/arch-rockchip/bootrom.h>
Simon Glass401d1c42020-10-30 21:38:53 -060016#include <asm/global_data.h>
Kever Yang49105fb2019-07-22 19:59:12 +080017#include <asm/io.h>
Simon Glasscd93d622020-05-10 11:40:13 -060018#include <linux/bitops.h>
Kever Yang49105fb2019-07-22 19:59:12 +080019
20DECLARE_GLOBAL_DATA_PTR;
21
Peng Fancda789a2019-08-07 06:40:53 +000022int board_return_to_bootrom(struct spl_image_info *spl_image,
23 struct spl_boot_device *bootdev)
Kever Yang49105fb2019-07-22 19:59:12 +080024{
25 back_to_bootrom(BROM_BOOT_NEXTSTAGE);
Peng Fancda789a2019-08-07 06:40:53 +000026
27 return 0;
Kever Yang49105fb2019-07-22 19:59:12 +080028}
29
30__weak const char * const boot_devices[BROM_LAST_BOOTSOURCE + 1] = {
31};
32
33const char *board_spl_was_booted_from(void)
34{
35 u32 bootdevice_brom_id = readl(BROM_BOOTSOURCE_ID_ADDR);
36 const char *bootdevice_ofpath = NULL;
37
38 if (bootdevice_brom_id < ARRAY_SIZE(boot_devices))
39 bootdevice_ofpath = boot_devices[bootdevice_brom_id];
40
41 if (bootdevice_ofpath)
42 debug("%s: brom_bootdevice_id %x maps to '%s'\n",
43 __func__, bootdevice_brom_id, bootdevice_ofpath);
44 else
45 debug("%s: failed to resolve brom_bootdevice_id %x\n",
46 __func__, bootdevice_brom_id);
47
48 return bootdevice_ofpath;
49}
50
51u32 spl_boot_device(void)
52{
53 u32 boot_device = BOOT_DEVICE_MMC1;
54
55#if defined(CONFIG_TARGET_CHROMEBOOK_JERRY) || \
56 defined(CONFIG_TARGET_CHROMEBIT_MICKEY) || \
Urja Rannikko353ad952020-05-13 19:15:20 +000057 defined(CONFIG_TARGET_CHROMEBOOK_MINNIE) || \
Simon Glassfab4f322020-07-19 13:55:53 -060058 defined(CONFIG_TARGET_CHROMEBOOK_SPEEDY) || \
Marty E. Plummer6d36e922021-12-24 16:43:46 +030059 defined(CONFIG_TARGET_CHROMEBOOK_BOB) || \
60 defined(CONFIG_TARGET_CHROMEBOOK_KEVIN)
Kever Yang49105fb2019-07-22 19:59:12 +080061 return BOOT_DEVICE_SPI;
62#endif
63 if (CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM))
64 return BOOT_DEVICE_BOOTROM;
65
66 return boot_device;
67}
68
Andre Przywara59073572021-07-12 11:06:49 +010069u32 spl_mmc_boot_mode(struct mmc *mmc, const u32 boot_device)
Kever Yang49105fb2019-07-22 19:59:12 +080070{
71 return MMCSD_MODE_RAW;
72}
73
Kever Yang49105fb2019-07-22 19:59:12 +080074#define TIMER_LOAD_COUNT_L 0x00
75#define TIMER_LOAD_COUNT_H 0x04
76#define TIMER_CONTROL_REG 0x10
77#define TIMER_EN 0x1
78#define TIMER_FMODE BIT(0)
79#define TIMER_RMODE BIT(1)
80
81__weak void rockchip_stimer_init(void)
82{
Johan Jonker12a71642022-04-09 18:55:03 +020083#if defined(CONFIG_ROCKCHIP_STIMER_BASE)
Kever Yang49105fb2019-07-22 19:59:12 +080084 /* If Timer already enabled, don't re-init it */
85 u32 reg = readl(CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG);
86
87 if (reg & TIMER_EN)
88 return;
89#ifndef CONFIG_ARM64
90 asm volatile("mcr p15, 0, %0, c14, c0, 0"
Peng Fan151a0302022-04-13 17:47:22 +080091 : : "r"(CONFIG_COUNTER_FREQUENCY));
Kever Yang49105fb2019-07-22 19:59:12 +080092#endif
93 writel(0, CONFIG_ROCKCHIP_STIMER_BASE + TIMER_CONTROL_REG);
94 writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE);
95 writel(0xffffffff, CONFIG_ROCKCHIP_STIMER_BASE + 4);
96 writel(TIMER_EN | TIMER_FMODE, CONFIG_ROCKCHIP_STIMER_BASE +
97 TIMER_CONTROL_REG);
Kever Yang49105fb2019-07-22 19:59:12 +080098#endif
Johan Jonker12a71642022-04-09 18:55:03 +020099}
Kever Yang49105fb2019-07-22 19:59:12 +0800100
101__weak int board_early_init_f(void)
102{
103 return 0;
104}
105
106__weak int arch_cpu_init(void)
107{
108 return 0;
109}
110
111void board_init_f(ulong dummy)
112{
113 int ret;
Kever Yang49105fb2019-07-22 19:59:12 +0800114
115#ifdef CONFIG_DEBUG_UART
116 /*
117 * Debug UART can be used from here if required:
118 *
119 * debug_uart_init();
120 * printch('a');
121 * printhex8(0x1234);
122 * printascii("string");
123 */
124 debug_uart_init();
125 debug("\nspl:debug uart enabled in %s\n", __func__);
126#endif
127
128 board_early_init_f();
129
130 ret = spl_early_init();
131 if (ret) {
132 printf("spl_early_init() failed: %d\n", ret);
133 hang();
134 }
135 arch_cpu_init();
Johan Jonker12a71642022-04-09 18:55:03 +0200136
Thomas Hebb220697a2019-11-15 08:48:55 -0800137 rockchip_stimer_init();
Johan Jonker12a71642022-04-09 18:55:03 +0200138
Thomas Hebb220697a2019-11-15 08:48:55 -0800139#ifdef CONFIG_SYS_ARCH_TIMER
140 /* Init ARM arch timer in arch/arm/cpu/armv7/arch_timer.c */
141 timer_init();
142#endif
Heiko Stuebnerb6740fb2020-05-25 19:57:24 +0200143#if !defined(CONFIG_TPL) || defined(CONFIG_SPL_RAM)
Kever Yang49105fb2019-07-22 19:59:12 +0800144 debug("\nspl:init dram\n");
Heiko Stuebnerb6740fb2020-05-25 19:57:24 +0200145 ret = dram_init();
Kever Yang49105fb2019-07-22 19:59:12 +0800146 if (ret) {
147 printf("DRAM init failed: %d\n", ret);
148 return;
149 }
Heiko Stuebnerb6740fb2020-05-25 19:57:24 +0200150 gd->ram_top = gd->ram_base + get_effective_memsize();
151 gd->ram_top = board_get_usable_ram_top(gd->ram_size);
Kever Yang49105fb2019-07-22 19:59:12 +0800152#endif
Kever Yang49105fb2019-07-22 19:59:12 +0800153 preloader_console_init();
154}