blob: fbcf845e87ddbf4684eb508ae3ad15c233c9ffeb [file] [log] [blame]
Simon Glass8fbf9922019-01-21 14:53:36 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2018 Google
4 */
5
6#include <common.h>
Alper Nebi Yasakf55f3882020-10-28 00:15:11 +03007#include <dm.h>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Alper Nebi Yasak437fa8d2021-12-24 16:43:43 +03009#include <syscon.h>
10#include <asm/io.h>
11#include <asm/arch-rockchip/clock.h>
12#include <asm/arch-rockchip/grf_rk3399.h>
13#include <asm/arch-rockchip/hardware.h>
14#include <asm/arch-rockchip/misc.h>
15
16#define GRF_IO_VSEL_BT656_SHIFT 0
17#define GRF_IO_VSEL_AUDIO_SHIFT 1
18#define PMUGRF_CON0_VSEL_SHIFT 8
19#define PMUGRF_CON0_VOL_SHIFT 9
Simon Glass8fbf9922019-01-21 14:53:36 -070020
Kever Yangb22e9fd2019-07-22 19:59:41 +080021#ifdef CONFIG_SPL_BUILD
Simon Glass8fbf9922019-01-21 14:53:36 -070022/* provided to defeat compiler optimisation in board_init_f() */
23void gru_dummy_function(int i)
24{
25}
Kever Yangb22e9fd2019-07-22 19:59:41 +080026
27int board_early_init_f(void)
28{
Marty E. Plummerb20a8dac2021-12-24 16:43:46 +030029# if defined(CONFIG_TARGET_CHROMEBOOK_BOB) || defined(CONFIG_TARGET_CHROMEBOOK_KEVIN)
Kever Yangb22e9fd2019-07-22 19:59:41 +080030 int sum, i;
31
32 /*
33 * Add a delay and ensure that the compiler does not optimise this out.
34 * This is needed since the power rails tail a while to turn on, and
35 * we get garbage serial output otherwise.
36 */
37 sum = 0;
38 for (i = 0; i < 150000; i++)
39 sum += i;
40 gru_dummy_function(sum);
41#endif /* CONFIG_TARGET_CHROMEBOOK_BOB */
42
43 return 0;
44}
45#endif
Alper Nebi Yasakf55f3882020-10-28 00:15:11 +030046
47#ifndef CONFIG_SPL_BUILD
48int board_early_init_r(void)
49{
50 struct udevice *clk;
51 int ret;
52
53 /*
54 * This init is done in SPL, but when chain-loading U-Boot SPL will
55 * have been skipped. Allow the clock driver to check if it needs
56 * setting up.
57 */
58 ret = uclass_get_device_by_driver(UCLASS_CLK,
Simon Glass65130cd2020-12-28 20:34:56 -070059 DM_DRIVER_GET(clk_rk3399), &clk);
Alper Nebi Yasakf55f3882020-10-28 00:15:11 +030060 if (ret) {
61 debug("%s: CLK init failed: %d\n", __func__, ret);
62 return ret;
63 }
64
65 return 0;
66}
67#endif
Alper Nebi Yasak437fa8d2021-12-24 16:43:43 +030068
69static void setup_iodomain(void)
70{
71 struct rk3399_grf_regs *grf =
72 syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
73 struct rk3399_pmugrf_regs *pmugrf =
74 syscon_get_first_range(ROCKCHIP_SYSCON_PMUGRF);
75
76 /* BT656 and audio is in 1.8v domain */
77 rk_setreg(&grf->io_vsel, (1 << GRF_IO_VSEL_BT656_SHIFT |
78 1 << GRF_IO_VSEL_AUDIO_SHIFT));
79
80 /*
81 * Set GPIO1 1.8v/3.0v source select to PMU1830_VOL
82 * and explicitly configure that PMU1830_VOL to be 1.8V
83 */
84 rk_setreg(&pmugrf->soc_con0, (1 << PMUGRF_CON0_VSEL_SHIFT |
85 1 << PMUGRF_CON0_VOL_SHIFT));
86}
87
88int misc_init_r(void)
89{
90 const u32 cpuid_offset = 0x7;
91 const u32 cpuid_length = 0x10;
92 u8 cpuid[cpuid_length];
93 int ret;
94
95 setup_iodomain();
96
97 ret = rockchip_cpuid_from_efuse(cpuid_offset, cpuid_length, cpuid);
98 if (ret)
99 return ret;
100
101 ret = rockchip_cpuid_set(cpuid, cpuid_length);
102 if (ret)
103 return ret;
104
105 ret = rockchip_setup_macaddr();
106
107 return ret;
108}