blob: cd1bf48d83245670c01b05de2e135e141ca7d935 [file] [log] [blame]
Ley Foon Tan600c7312019-11-27 15:55:29 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2019 Intel Corporation <www.intel.com>
4 *
5 */
6
Simon Glass97589732020-05-10 11:40:02 -06007#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -06008#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -06009#include <asm/global_data.h>
Ley Foon Tan600c7312019-11-27 15:55:29 +080010#include <asm/io.h>
11#include <asm/u-boot.h>
12#include <asm/utils.h>
Simon Glassf11478f2019-12-28 10:45:07 -070013#include <hang.h>
Ley Foon Tan600c7312019-11-27 15:55:29 +080014#include <image.h>
15#include <spl.h>
16#include <asm/arch/clock_manager.h>
17#include <asm/arch/firewall.h>
18#include <asm/arch/mailbox_s10.h>
19#include <asm/arch/misc.h>
20#include <asm/arch/reset_manager.h>
21#include <asm/arch/system_manager.h>
22#include <watchdog.h>
23#include <dm/uclass.h>
24
25DECLARE_GLOBAL_DATA_PTR;
26
Ley Foon Tan600c7312019-11-27 15:55:29 +080027void board_init_f(ulong dummy)
28{
29 int ret;
30 struct udevice *dev;
31
32 ret = spl_early_init();
33 if (ret)
34 hang();
35
36 socfpga_get_managers_addr();
37
Ley Foon Tan600c7312019-11-27 15:55:29 +080038 /* Ensure watchdog is paused when debugging is happening */
39 writel(SYSMGR_WDDBG_PAUSE_ALL_CPU,
40 socfpga_get_sysmgr_addr() + SYSMGR_SOC64_WDDBG);
41
Chee Hong Ang346431c2020-08-06 12:15:33 +080042#ifdef CONFIG_HW_WATCHDOG
Ley Foon Tan600c7312019-11-27 15:55:29 +080043 /* Enable watchdog before initializing the HW */
44 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
45 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
46 hw_watchdog_init();
47#endif
48
49 /* ensure all processors are not released prior Linux boot */
50 writeq(0, CPU_RELEASE_ADDR);
51
52 timer_init();
53
54 sysmgr_pinmux_init();
55
56 ret = uclass_get_device(UCLASS_CLK, 0, &dev);
57 if (ret) {
58 debug("Clock init failed: %d\n", ret);
59 hang();
60 }
61
62 preloader_console_init();
Chee Hong Ang6cf193c2020-08-05 21:15:57 +080063 print_reset_info();
Ley Foon Tan600c7312019-11-27 15:55:29 +080064 cm_print_clock_quick_summary();
65
66 firewall_setup();
67 ret = uclass_get_device(UCLASS_CACHE, 0, &dev);
68 if (ret) {
69 debug("CCU init failed: %d\n", ret);
70 hang();
71 }
72
73#if CONFIG_IS_ENABLED(ALTERA_SDRAM)
74 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
75 if (ret) {
76 debug("DRAM init failed: %d\n", ret);
77 hang();
78 }
79#endif
80
81 mbox_init();
82
83#ifdef CONFIG_CADENCE_QSPI
84 mbox_qspi_open();
85#endif
86}