blob: 66bfc2bd0ca516c3baf52cee3ba59c0a8fbb9cce [file] [log] [blame]
Peng Fancbe5d382021-08-07 16:01:13 +08001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2021 NXP
4 */
5
6#include <common.h>
7#include <init.h>
8#include <spl.h>
9#include <asm/io.h>
10#include <errno.h>
11#include <asm/arch/sys_proto.h>
12#include <asm/arch/clock.h>
13#include <asm/arch/imx8ulp-pins.h>
14#include <dm/uclass.h>
15#include <dm/device.h>
16#include <dm/uclass-internal.h>
17#include <dm/device-internal.h>
18#include <dm/lists.h>
19#include <asm/arch/ddr.h>
20#include <asm/arch/rdc.h>
21#include <asm/arch/upower.h>
Clement Faure40bcdf92022-04-06 14:30:21 +080022#include <asm/arch/s400_api.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
61void spl_board_init(void)
62{
63 struct udevice *dev;
Clement Faure40bcdf92022-04-06 14:30:21 +080064 u32 res;
65 int ret;
Peng Fancbe5d382021-08-07 16:01:13 +080066
67 uclass_find_first_device(UCLASS_MISC, &dev);
68
69 for (; dev; uclass_find_next_device(&dev)) {
70 if (device_probe(dev))
71 continue;
72 }
73
74 board_early_init_f();
75
76 preloader_console_init();
77
78 puts("Normal Boot\n");
79
80 /* After AP set iomuxc0, the i2c can't work, Need M33 to set it now */
81
Ye Lifb82b772022-04-06 14:30:18 +080082 /* Load the lposc fuse to work around ROM issue. The fuse depends on S400 to read. */
83 if (is_soc_rev(CHIP_REV_1_0))
Ye Li133f8b82021-10-29 09:46:25 +080084 load_lposc_fuse();
85
Peng Fancbe5d382021-08-07 16:01:13 +080086 upower_init();
87
88 power_init_board();
89
Peng Fan4cdb3a32022-04-06 14:30:12 +080090 clock_init_late();
91
Peng Fancbe5d382021-08-07 16:01:13 +080092 /* DDR initialization */
93 spl_dram_init();
94
95 /* This must place after upower init, so access to MDA and MRC are valid */
96 /* Init XRDC MDA */
97 xrdc_init_mda();
98
99 /* Init XRDC MRC for VIDEO, DSP domains */
100 xrdc_init_mrc();
Ye Li715cfa02021-10-29 09:46:23 +0800101
102 /* Call it after PS16 power up */
103 set_lpav_qos();
Clement Faure40bcdf92022-04-06 14:30:21 +0800104
105 /* Enable A35 access to the CAAM */
106 ret = ahab_release_caam(0x7, &res);
107 if (ret)
108 printf("ahab release caam failed %d, 0x%x\n", ret, res);
Peng Fancbe5d382021-08-07 16:01:13 +0800109}
110
111void board_init_f(ulong dummy)
112{
113 /* Clear the BSS. */
114 memset(__bss_start, 0, __bss_end - __bss_start);
115
116 timer_init();
117
118 arch_cpu_init();
119
120 board_init_r(NULL, 0);
121}