blob: 52617a39ccaf96b1a655906f41b0083d597e9b3a [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>
Ley Foon Tan600c7312019-11-27 15:55:29 +080011#include <asm/utils.h>
Simon Glassf11478f2019-12-28 10:45:07 -070012#include <hang.h>
Ley Foon Tan600c7312019-11-27 15:55:29 +080013#include <image.h>
14#include <spl.h>
15#include <asm/arch/clock_manager.h>
16#include <asm/arch/firewall.h>
17#include <asm/arch/mailbox_s10.h>
18#include <asm/arch/misc.h>
19#include <asm/arch/reset_manager.h>
20#include <asm/arch/system_manager.h>
21#include <watchdog.h>
22#include <dm/uclass.h>
23
24DECLARE_GLOBAL_DATA_PTR;
25
Ley Foon Tan600c7312019-11-27 15:55:29 +080026void board_init_f(ulong dummy)
27{
28 int ret;
29 struct udevice *dev;
30
31 ret = spl_early_init();
32 if (ret)
33 hang();
34
35 socfpga_get_managers_addr();
36
Ley Foon Tan600c7312019-11-27 15:55:29 +080037 /* Ensure watchdog is paused when debugging is happening */
38 writel(SYSMGR_WDDBG_PAUSE_ALL_CPU,
39 socfpga_get_sysmgr_addr() + SYSMGR_SOC64_WDDBG);
40
Chee Hong Ang346431c2020-08-06 12:15:33 +080041#ifdef CONFIG_HW_WATCHDOG
Ley Foon Tan600c7312019-11-27 15:55:29 +080042 /* Enable watchdog before initializing the HW */
43 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
44 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
45 hw_watchdog_init();
46#endif
47
48 /* ensure all processors are not released prior Linux boot */
49 writeq(0, CPU_RELEASE_ADDR);
50
51 timer_init();
52
53 sysmgr_pinmux_init();
54
55 ret = uclass_get_device(UCLASS_CLK, 0, &dev);
56 if (ret) {
57 debug("Clock init failed: %d\n", ret);
58 hang();
59 }
60
61 preloader_console_init();
Chee Hong Ang6cf193c2020-08-05 21:15:57 +080062 print_reset_info();
Ley Foon Tan600c7312019-11-27 15:55:29 +080063 cm_print_clock_quick_summary();
64
65 firewall_setup();
66 ret = uclass_get_device(UCLASS_CACHE, 0, &dev);
67 if (ret) {
68 debug("CCU init failed: %d\n", ret);
69 hang();
70 }
71
72#if CONFIG_IS_ENABLED(ALTERA_SDRAM)
73 ret = uclass_get_device(UCLASS_RAM, 0, &dev);
74 if (ret) {
75 debug("DRAM init failed: %d\n", ret);
76 hang();
77 }
78#endif
79
80 mbox_init();
81
82#ifdef CONFIG_CADENCE_QSPI
83 mbox_qspi_open();
84#endif
85}