blob: d123b21b72251a402a0e36bcf0fbc073b4d721f7 [file] [log] [blame]
Peng Fancbe5d382021-08-07 16:01:13 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2021 NXP
4 */
5
Peng Fancbe5d382021-08-07 16:01:13 +08006#include <init.h>
7#include <spl.h>
8#include <asm/io.h>
9#include <errno.h>
10#include <asm/arch/sys_proto.h>
11#include <asm/arch/clock.h>
12#include <asm/arch/imx8ulp-pins.h>
13#include <dm/uclass.h>
14#include <dm/device.h>
15#include <dm/uclass-internal.h>
16#include <dm/device-internal.h>
17#include <dm/lists.h>
18#include <asm/arch/ddr.h>
19#include <asm/arch/rdc.h>
20#include <asm/arch/upower.h>
Peng Fand5c31832023-06-15 18:09:05 +080021#include <asm/mach-imx/ele_api.h>
Shiji Yangbb112342023-08-03 09:47:16 +080022#include <asm/sections.h>
Peng Fancbe5d382021-08-07 16:01:13 +080023
24DECLARE_GLOBAL_DATA_PTR;
25
26void spl_dram_init(void)
27{
Ye Li8c0c8d02022-04-06 14:30:13 +080028 /* Reboot in dual boot setting no need to init ddr again */
29 bool ddr_enable = pcc_clock_is_enable(5, LPDDR4_PCC5_SLOT);
30
31 if (!ddr_enable) {
32 init_clk_ddr();
33 ddr_init(&dram_timing);
34 } else {
35 /* reinit pfd/pfddiv and lpavnic except pll4*/
36 cgc2_pll4_init(false);
37 }
Peng Fancbe5d382021-08-07 16:01:13 +080038}
39
40u32 spl_boot_device(void)
41{
42 return BOOT_DEVICE_BOOTROM;
43}
44
45int power_init_board(void)
46{
Peng Fan4cdb3a32022-04-06 14:30:12 +080047 if (IS_ENABLED(CONFIG_IMX8ULP_LD_MODE)) {
48 /* Set buck3 to 0.9v LD */
49 upower_pmic_i2c_write(0x22, 0x18);
50 } else if (IS_ENABLED(CONFIG_IMX8ULP_ND_MODE)) {
51 /* Set buck3 to 1.0v ND */
52 upower_pmic_i2c_write(0x22, 0x20);
53 } else {
54 /* Set buck3 to 1.1v OD */
55 upower_pmic_i2c_write(0x22, 0x28);
56 }
57
Peng Fancbe5d382021-08-07 16:01:13 +080058 return 0;
59}
60
Gaurav Jain580cc7b2022-05-11 14:07:55 +053061void display_ele_fw_version(void)
62{
63 u32 fw_version, sha1, res;
64 int ret;
65
Peng Fand5c31832023-06-15 18:09:05 +080066 ret = ele_get_fw_version(&fw_version, &sha1, &res);
Gaurav Jain580cc7b2022-05-11 14:07:55 +053067 if (ret) {
Peng Fand5c31832023-06-15 18:09:05 +080068 printf("ele get firmware version failed %d, 0x%x\n", ret, res);
Gaurav Jain580cc7b2022-05-11 14:07:55 +053069 } else {
70 printf("ELE firmware version %u.%u.%u-%x",
71 (fw_version & (0x00ff0000)) >> 16,
72 (fw_version & (0x0000ff00)) >> 8,
73 (fw_version & (0x000000ff)), sha1);
74 ((fw_version & (0x80000000)) >> 31) == 1 ? puts("-dirty\n") : puts("\n");
75 }
76}
77
Peng Fancbe5d382021-08-07 16:01:13 +080078void spl_board_init(void)
79{
Clement Faure40bcdf92022-04-06 14:30:21 +080080 u32 res;
81 int ret;
Peng Fancbe5d382021-08-07 16:01:13 +080082
Ye Lid5ffe552023-01-31 16:42:13 +080083 ret = imx8ulp_dm_post_init();
84 if (ret)
85 return;
Peng Fancbe5d382021-08-07 16:01:13 +080086
87 board_early_init_f();
88
89 preloader_console_init();
90
91 puts("Normal Boot\n");
92
Gaurav Jain580cc7b2022-05-11 14:07:55 +053093 display_ele_fw_version();
94
Peng Fancbe5d382021-08-07 16:01:13 +080095 /* After AP set iomuxc0, the i2c can't work, Need M33 to set it now */
96
Ye Lifb82b772022-04-06 14:30:18 +080097 /* Load the lposc fuse to work around ROM issue. The fuse depends on S400 to read. */
98 if (is_soc_rev(CHIP_REV_1_0))
Ye Li133f8b82021-10-29 09:46:25 +080099 load_lposc_fuse();
100
Peng Fancbe5d382021-08-07 16:01:13 +0800101 upower_init();
102
103 power_init_board();
104
Peng Fan4cdb3a32022-04-06 14:30:12 +0800105 clock_init_late();
106
Peng Fancbe5d382021-08-07 16:01:13 +0800107 /* This must place after upower init, so access to MDA and MRC are valid */
108 /* Init XRDC MDA */
109 xrdc_init_mda();
110
111 /* Init XRDC MRC for VIDEO, DSP domains */
112 xrdc_init_mrc();
Ye Li715cfa02021-10-29 09:46:23 +0800113
Ye Li7edb3622023-01-31 16:42:24 +0800114 xrdc_init_pdac_msc();
115
116 /* DDR initialization */
117 spl_dram_init();
118
Ye Li715cfa02021-10-29 09:46:23 +0800119 /* Call it after PS16 power up */
120 set_lpav_qos();
Clement Faure40bcdf92022-04-06 14:30:21 +0800121
122 /* Enable A35 access to the CAAM */
Peng Fand5c31832023-06-15 18:09:05 +0800123 ret = ele_release_caam(0x7, &res);
Clement Faure40bcdf92022-04-06 14:30:21 +0800124 if (ret)
Peng Fand5c31832023-06-15 18:09:05 +0800125 printf("ele release caam failed %d, 0x%x\n", ret, res);
Peng Fanaa70b852023-06-15 18:09:14 +0800126
127 /*
128 * RNG start only available on the A1 soc revision.
129 * Check some JTAG register for the SoC revision.
130 */
131 if (!is_soc_rev(CHIP_REV_1_0)) {
132 ret = ele_start_rng();
133 if (ret)
134 printf("Fail to start RNG: %d\n", ret);
135 }
Peng Fancbe5d382021-08-07 16:01:13 +0800136}
137
138void board_init_f(ulong dummy)
139{
140 /* Clear the BSS. */
141 memset(__bss_start, 0, __bss_end - __bss_start);
142
143 timer_init();
144
145 arch_cpu_init();
146
147 board_init_r(NULL, 0);
148}