blob: ce0504a011af68764d52cd8b4f4c1972b032e938 [file] [log] [blame]
Ariel D'Alessandro93add532022-04-12 10:31:38 -03001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2021 Collabora Ltd.
4 *
5 */
6
7#include <hang.h>
8#include <init.h>
9#include <spl.h>
10#include <asm/arch/clock.h>
11#include <asm/arch/ddr.h>
12#include <asm/arch/imx8mn_pins.h>
13#include <asm/arch/sys_proto.h>
14#include <asm/mach-imx/boot_mode.h>
15#include <asm/mach-imx/gpio.h>
16#include <dm/device.h>
17#include <dm/uclass.h>
18
19int spl_board_boot_device(enum boot_device boot_dev_spl)
20{
21 return BOOT_DEVICE_BOOTROM;
22}
23
24void spl_dram_init(void)
25{
26 ddr_init(&dram_timing);
27}
28
29void spl_board_init(void)
30{
31 struct udevice *dev;
32 int ret;
33
34 debug("Normal Boot\n");
35
36 ret = uclass_get_device_by_name(UCLASS_CLK,
37 "clock-controller@30380000",
38 &dev);
39 if (ret < 0)
40 puts("Failed to find clock node. Check device tree\n");
41}
42
Ariel D'Alessandro93add532022-04-12 10:31:38 -030043int board_early_init_f(void)
44{
Ariel D'Alessandro93add532022-04-12 10:31:38 -030045 init_uart_clk(3);
46
47 if (IS_ENABLED(CONFIG_NAND_MXS)) {
48 init_nand_clk();
49 }
50
51 return 0;
52}
53
54void board_init_f(ulong dummy)
55{
56 int ret;
57
58 /* Clear the BSS. */
59 memset(__bss_start, 0, __bss_end - __bss_start);
60
61 arch_cpu_init();
62
63 board_early_init_f();
64
65 timer_init();
66
Ariel D'Alessandro93add532022-04-12 10:31:38 -030067 ret = spl_init();
68 if (ret) {
69 debug("spl_init() failed: %d\n", ret);
70 hang();
71 }
72
Michael Trimarchi47cbd8e2022-04-18 08:53:36 +020073 preloader_console_init();
74
Michael Trimarchib7568ae2022-05-15 11:41:09 +020075 enable_tzc380();
76
Ariel D'Alessandro93add532022-04-12 10:31:38 -030077 /* DDR initialization */
78 spl_dram_init();
79
80 board_init_r(NULL, 0);
81}