blob: 0f8588ba0c63584045c4c1701caa528e933ab132 [file] [log] [blame]
Ley Foon Tan975e4962018-05-24 00:17:28 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2016-2018 Intel Corporation <www.intel.com>
4 *
5 */
6
Simon Glassf11478f2019-12-28 10:45:07 -07007#include <hang.h>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Ley Foon Tan975e4962018-05-24 00:17:28 +08009#include <asm/io.h>
10#include <asm/u-boot.h>
11#include <asm/utils.h>
12#include <common.h>
Ley Foon Tan2667ddd2018-07-12 21:44:24 +080013#include <debug_uart.h>
Ley Foon Tan975e4962018-05-24 00:17:28 +080014#include <image.h>
15#include <spl.h>
16#include <asm/arch/clock_manager.h>
Ley Foon Tanf1c4bd52019-11-27 15:55:15 +080017#include <asm/arch/firewall.h>
Ley Foon Tan975e4962018-05-24 00:17:28 +080018#include <asm/arch/mailbox_s10.h>
Ley Foon Tanfed4c952019-11-08 10:38:19 +080019#include <asm/arch/misc.h>
Ley Foon Tan975e4962018-05-24 00:17:28 +080020#include <asm/arch/reset_manager.h>
Ley Foon Tan975e4962018-05-24 00:17:28 +080021#include <asm/arch/system_manager.h>
22#include <watchdog.h>
Ley Foon Tan3fdf4362019-05-06 09:56:01 +080023#include <dm/uclass.h>
Ley Foon Tan975e4962018-05-24 00:17:28 +080024
25DECLARE_GLOBAL_DATA_PTR;
26
Ley Foon Tan975e4962018-05-24 00:17:28 +080027u32 spl_boot_device(void)
28{
29 /* TODO: Get from SDM or handoff */
30 return BOOT_DEVICE_MMC1;
31}
32
33#ifdef CONFIG_SPL_MMC_SUPPORT
Harald Seiler0bf7ab12020-04-15 11:33:30 +020034u32 spl_mmc_boot_mode(const u32 boot_device)
Ley Foon Tan975e4962018-05-24 00:17:28 +080035{
Tien Fong Chee6091dd12019-01-23 14:20:05 +080036#if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4)
Ley Foon Tan975e4962018-05-24 00:17:28 +080037 return MMCSD_MODE_FS;
38#else
39 return MMCSD_MODE_RAW;
40#endif
41}
42#endif
43
Ley Foon Tan975e4962018-05-24 00:17:28 +080044void board_init_f(ulong dummy)
45{
46 const struct cm_config *cm_default_cfg = cm_get_default_config();
47 int ret;
48
Ley Foon Tanfed4c952019-11-08 10:38:19 +080049 ret = spl_early_init();
50 if (ret)
51 hang();
52
53 socfpga_get_managers_addr();
54
Ley Foon Tan975e4962018-05-24 00:17:28 +080055#ifdef CONFIG_HW_WATCHDOG
56 /* Ensure watchdog is paused when debugging is happening */
Ley Foon Tan3d3a8602019-11-08 10:38:20 +080057 writel(SYSMGR_WDDBG_PAUSE_ALL_CPU,
Ley Foon Tan0b1680e2019-11-27 15:55:18 +080058 socfpga_get_sysmgr_addr() + SYSMGR_SOC64_WDDBG);
Ley Foon Tan975e4962018-05-24 00:17:28 +080059
60 /* Enable watchdog before initializing the HW */
61 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
62 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
63 hw_watchdog_init();
64#endif
65
66 /* ensure all processors are not released prior Linux boot */
67 writeq(0, CPU_RELEASE_ADDR);
68
69 socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0);
70 timer_init();
71
Ley Foon Tan0968d4e2018-08-17 16:22:02 +080072 sysmgr_pinmux_init();
Ley Foon Tan975e4962018-05-24 00:17:28 +080073
74 /* configuring the HPS clocks */
75 cm_basic_init(cm_default_cfg);
76
77#ifdef CONFIG_DEBUG_UART
78 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
79 debug_uart_init();
80#endif
Ley Foon Tan975e4962018-05-24 00:17:28 +080081
82 preloader_console_init();
83 cm_print_clock_quick_summary();
84
Ley Foon Tanf1c4bd52019-11-27 15:55:15 +080085 firewall_setup();
Ley Foon Tan975e4962018-05-24 00:17:28 +080086
87 /* disable ocram security at CCU for non secure access */
88 clrbits_le32(CCU_REG_ADDR(CCU_CPU0_MPRT_ADMASK_MEM_RAM0),
89 CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK);
90 clrbits_le32(CCU_REG_ADDR(CCU_IOM_MPRT_ADMASK_MEM_RAM0),
91 CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK);
92
Ley Foon Tan3fdf4362019-05-06 09:56:01 +080093#if CONFIG_IS_ENABLED(ALTERA_SDRAM)
94 struct udevice *dev;
95
96 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
97 if (ret) {
98 debug("DRAM init failed: %d\n", ret);
99 hang();
100 }
101#endif
Ley Foon Tan975e4962018-05-24 00:17:28 +0800102
Ley Foon Tan975e4962018-05-24 00:17:28 +0800103 mbox_init();
104
105#ifdef CONFIG_CADENCE_QSPI
106 mbox_qspi_open();
107#endif
108}