blob: daed05653ad11f4a02f4076045234375a7c3ccfc [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
Simon Glassdb41d652019-12-28 10:45:07 -07007#include <hang.h>
Simon Glass691d7192020-05-10 11:40:02 -06008#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080010#include <asm/io.h>
11#include <asm/u-boot.h>
12#include <asm/utils.h>
13#include <common.h>
Ley Foon Tanaa529662018-07-12 21:44:24 +080014#include <debug_uart.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080015#include <image.h>
16#include <spl.h>
17#include <asm/arch/clock_manager.h>
Ley Foon Tan8b7962a2019-11-27 15:55:15 +080018#include <asm/arch/firewall.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080019#include <asm/arch/mailbox_s10.h>
Ley Foon Tanbb25aca2019-11-08 10:38:19 +080020#include <asm/arch/misc.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080021#include <asm/arch/reset_manager.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080022#include <asm/arch/system_manager.h>
23#include <watchdog.h>
Ley Foon Tan6bf238a2019-05-06 09:56:01 +080024#include <dm/uclass.h>
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080025
26DECLARE_GLOBAL_DATA_PTR;
27
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080028u32 spl_boot_device(void)
29{
30 /* TODO: Get from SDM or handoff */
31 return BOOT_DEVICE_MMC1;
32}
33
34#ifdef CONFIG_SPL_MMC_SUPPORT
Harald Seilere9759062020-04-15 11:33:30 +020035u32 spl_mmc_boot_mode(const u32 boot_device)
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080036{
Tien Fong Cheef4b40922019-01-23 14:20:05 +080037#if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4)
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080038 return MMCSD_MODE_FS;
39#else
40 return MMCSD_MODE_RAW;
41#endif
42}
43#endif
44
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080045void board_init_f(ulong dummy)
46{
47 const struct cm_config *cm_default_cfg = cm_get_default_config();
48 int ret;
49
Ley Foon Tanbb25aca2019-11-08 10:38:19 +080050 ret = spl_early_init();
51 if (ret)
52 hang();
53
54 socfpga_get_managers_addr();
55
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080056 /* Ensure watchdog is paused when debugging is happening */
Ley Foon Tandb5741f2019-11-08 10:38:20 +080057 writel(SYSMGR_WDDBG_PAUSE_ALL_CPU,
Ley Foon Tan2fd1dc52019-11-27 15:55:18 +080058 socfpga_get_sysmgr_addr() + SYSMGR_SOC64_WDDBG);
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080059
Chee Hong Ang2473e132020-08-06 12:15:33 +080060#ifdef CONFIG_HW_WATCHDOG
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080061 /* Enable watchdog before initializing the HW */
62 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
63 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
64 hw_watchdog_init();
65#endif
66
67 /* ensure all processors are not released prior Linux boot */
68 writeq(0, CPU_RELEASE_ADDR);
69
70 socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0);
71 timer_init();
72
Ley Foon Tandb3b5e92018-08-17 16:22:02 +080073 sysmgr_pinmux_init();
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080074
75 /* configuring the HPS clocks */
76 cm_basic_init(cm_default_cfg);
77
78#ifdef CONFIG_DEBUG_UART
79 socfpga_per_reset(SOCFPGA_RESET(UART0), 0);
80 debug_uart_init();
81#endif
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080082
83 preloader_console_init();
Chee Hong Angb3e2d9f2020-08-05 21:15:57 +080084 print_reset_info();
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080085 cm_print_clock_quick_summary();
86
Ley Foon Tan8b7962a2019-11-27 15:55:15 +080087 firewall_setup();
Ley Foon Tan4765ddb2018-05-24 00:17:28 +080088
89 /* disable ocram security at CCU for non secure access */
90 clrbits_le32(CCU_REG_ADDR(CCU_CPU0_MPRT_ADMASK_MEM_RAM0),
91 CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK);
92 clrbits_le32(CCU_REG_ADDR(CCU_IOM_MPRT_ADMASK_MEM_RAM0),
93 CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK);
94
Ley Foon Tan6bf238a2019-05-06 09:56:01 +080095#if CONFIG_IS_ENABLED(ALTERA_SDRAM)
96 struct udevice *dev;
97
98 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
99 if (ret) {
100 debug("DRAM init failed: %d\n", ret);
101 hang();
102 }
103#endif
Ley Foon Tan4765ddb2018-05-24 00:17:28 +0800104
Ley Foon Tan4765ddb2018-05-24 00:17:28 +0800105 mbox_init();
106
107#ifdef CONFIG_CADENCE_QSPI
108 mbox_qspi_open();
109#endif
110}