Ariel D'Alessandro | 93add53 | 2022-04-12 10:31:38 -0300 | [diff] [blame] | 1 | // 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 | |
| 19 | int spl_board_boot_device(enum boot_device boot_dev_spl) |
| 20 | { |
| 21 | return BOOT_DEVICE_BOOTROM; |
| 22 | } |
| 23 | |
| 24 | void spl_dram_init(void) |
| 25 | { |
| 26 | ddr_init(&dram_timing); |
| 27 | } |
| 28 | |
| 29 | void 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'Alessandro | 93add53 | 2022-04-12 10:31:38 -0300 | [diff] [blame] | 43 | int board_early_init_f(void) |
| 44 | { |
Ariel D'Alessandro | 93add53 | 2022-04-12 10:31:38 -0300 | [diff] [blame] | 45 | init_uart_clk(3); |
| 46 | |
| 47 | if (IS_ENABLED(CONFIG_NAND_MXS)) { |
| 48 | init_nand_clk(); |
| 49 | } |
| 50 | |
| 51 | return 0; |
| 52 | } |
| 53 | |
| 54 | void 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'Alessandro | 93add53 | 2022-04-12 10:31:38 -0300 | [diff] [blame] | 67 | ret = spl_init(); |
| 68 | if (ret) { |
| 69 | debug("spl_init() failed: %d\n", ret); |
| 70 | hang(); |
| 71 | } |
| 72 | |
Michael Trimarchi | 47cbd8e | 2022-04-18 08:53:36 +0200 | [diff] [blame] | 73 | preloader_console_init(); |
| 74 | |
Michael Trimarchi | b7568ae | 2022-05-15 11:41:09 +0200 | [diff] [blame] | 75 | enable_tzc380(); |
| 76 | |
Ariel D'Alessandro | 93add53 | 2022-04-12 10:31:38 -0300 | [diff] [blame] | 77 | /* DDR initialization */ |
| 78 | spl_dram_init(); |
| 79 | |
| 80 | board_init_r(NULL, 0); |
| 81 | } |