1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2019 Intel Corporation <www.intel.com>
8 #include <asm/u-boot.h>
13 #include <asm/arch/clock_manager.h>
14 #include <asm/arch/firewall.h>
15 #include <asm/arch/mailbox_s10.h>
16 #include <asm/arch/misc.h>
17 #include <asm/arch/reset_manager.h>
18 #include <asm/arch/system_manager.h>
20 #include <dm/uclass.h>
22 DECLARE_GLOBAL_DATA_PTR;
24 u32 spl_boot_device(void)
26 return BOOT_DEVICE_MMC1;
29 #ifdef CONFIG_SPL_MMC_SUPPORT
30 u32 spl_boot_mode(const u32 boot_device)
32 #if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4)
35 return MMCSD_MODE_RAW;
40 void board_init_f(ulong dummy)
45 ret = spl_early_init();
49 socfpga_get_managers_addr();
51 #ifdef CONFIG_HW_WATCHDOG
52 /* Ensure watchdog is paused when debugging is happening */
53 writel(SYSMGR_WDDBG_PAUSE_ALL_CPU,
54 socfpga_get_sysmgr_addr() + SYSMGR_SOC64_WDDBG);
56 /* Enable watchdog before initializing the HW */
57 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
58 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
62 /* ensure all processors are not released prior Linux boot */
63 writeq(0, CPU_RELEASE_ADDR);
69 ret = uclass_get_device(UCLASS_CLK, 0, &dev);
71 debug("Clock init failed: %d\n", ret);
75 preloader_console_init();
76 cm_print_clock_quick_summary();
79 ret = uclass_get_device(UCLASS_CACHE, 0, &dev);
81 debug("CCU init failed: %d\n", ret);
85 #if CONFIG_IS_ENABLED(ALTERA_SDRAM)
86 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
88 debug("DRAM init failed: %d\n", ret);
95 #ifdef CONFIG_CADENCE_QSPI