blob: 8d96918cb456b5c01bac606cb448368a54460126 [file] [log] [blame]
Ley Foon Tan4765ddb2018-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
7#include <asm/io.h>
8#include <asm/u-boot.h>
9#include <asm/utils.h>
10#include <common.h>
Ley Foon Tanaa529662018-07-12 21:44:24 +080011#include <debug_uart.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080012#include <image.h>
13#include <spl.h>
14#include <asm/arch/clock_manager.h>
Ley Foon Tan8b7962a2019-11-27 15:55:15 +080015#include <asm/arch/firewall.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080016#include <asm/arch/mailbox_s10.h>
Ley Foon Tanbb25aca2019-11-08 10:38:19 +080017#include <asm/arch/misc.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080018#include <asm/arch/reset_manager.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080019#include <asm/arch/system_manager.h>
20#include <watchdog.h>
Ley Foon Tan6bf238a2019-05-06 09:56:01 +080021#include <dm/uclass.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080022
23DECLARE_GLOBAL_DATA_PTR;
24
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080025u32 spl_boot_device(void)
26{
27 /* TODO: Get from SDM or handoff */
28 return BOOT_DEVICE_MMC1;
29}
30
31#ifdef CONFIG_SPL_MMC_SUPPORT
32u32 spl_boot_mode(const u32 boot_device)
33{
Tien Fong Cheef4b40922019-01-23 14:20:05 +080034#if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4)
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080035 return MMCSD_MODE_FS;
36#else
37 return MMCSD_MODE_RAW;
38#endif
39}
40#endif
41
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080042void board_init_f(ulong dummy)
43{
44 const struct cm_config *cm_default_cfg = cm_get_default_config();
45 int ret;
46
Ley Foon Tanbb25aca2019-11-08 10:38:19 +080047 ret = spl_early_init();
48 if (ret)
49 hang();
50
51 socfpga_get_managers_addr();
52
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080053#ifdef CONFIG_HW_WATCHDOG
54 /* Ensure watchdog is paused when debugging is happening */
Ley Foon Tandb5741f2019-11-08 10:38:20 +080055 writel(SYSMGR_WDDBG_PAUSE_ALL_CPU,
Ley Foon Tan2fd1dc52019-11-27 15:55:18 +080056 socfpga_get_sysmgr_addr() + SYSMGR_SOC64_WDDBG);
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080057
58 /* Enable watchdog before initializing the HW */
59 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
60 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
61 hw_watchdog_init();
62#endif
63
64 /* ensure all processors are not released prior Linux boot */
65 writeq(0, CPU_RELEASE_ADDR);
66
67 socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0);
68 timer_init();
69
Ley Foon Tandb3b5e92018-08-17 16:22:02 +080070 sysmgr_pinmux_init();
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080071
72 /* configuring the HPS clocks */
73 cm_basic_init(cm_default_cfg);
74
75#ifdef CONFIG_DEBUG_UART
76 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
77 debug_uart_init();
78#endif
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080079
80 preloader_console_init();
81 cm_print_clock_quick_summary();
82
Ley Foon Tan8b7962a2019-11-27 15:55:15 +080083 firewall_setup();
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080084
85 /* disable ocram security at CCU for non secure access */
86 clrbits_le32(CCU_REG_ADDR(CCU_CPU0_MPRT_ADMASK_MEM_RAM0),
87 CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK);
88 clrbits_le32(CCU_REG_ADDR(CCU_IOM_MPRT_ADMASK_MEM_RAM0),
89 CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK);
90
Ley Foon Tan6bf238a2019-05-06 09:56:01 +080091#if CONFIG_IS_ENABLED(ALTERA_SDRAM)
92 struct udevice *dev;
93
94 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
95 if (ret) {
96 debug("DRAM init failed: %d\n", ret);
97 hang();
98 }
99#endif
Ley Foon Tan4765ddb2018-05-24 00:17:28 +0800100
Ley Foon Tan4765ddb2018-05-24 00:17:28 +0800101 mbox_init();
102
103#ifdef CONFIG_CADENCE_QSPI
104 mbox_qspi_open();
105#endif
106}