Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Copyright (C) 2016-2018 Intel Corporation <www.intel.com> |
| 4 | * |
| 5 | */ |
| 6 | |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 7 | #include <hang.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 8 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 10 | #include <asm/global_data.h> |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 11 | #include <asm/io.h> |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 12 | #include <asm/utils.h> |
Ley Foon Tan | 2667ddd | 2018-07-12 21:44:24 +0800 | [diff] [blame] | 13 | #include <debug_uart.h> |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 14 | #include <image.h> |
| 15 | #include <spl.h> |
| 16 | #include <asm/arch/clock_manager.h> |
Ley Foon Tan | f1c4bd5 | 2019-11-27 15:55:15 +0800 | [diff] [blame] | 17 | #include <asm/arch/firewall.h> |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 18 | #include <asm/arch/mailbox_s10.h> |
Ley Foon Tan | fed4c95 | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 19 | #include <asm/arch/misc.h> |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 20 | #include <asm/arch/reset_manager.h> |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 21 | #include <asm/arch/system_manager.h> |
| 22 | #include <watchdog.h> |
Ley Foon Tan | 3fdf436 | 2019-05-06 09:56:01 +0800 | [diff] [blame] | 23 | #include <dm/uclass.h> |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 27 | void board_init_f(ulong dummy) |
| 28 | { |
| 29 | const struct cm_config *cm_default_cfg = cm_get_default_config(); |
| 30 | int ret; |
| 31 | |
Ley Foon Tan | fed4c95 | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 32 | ret = spl_early_init(); |
| 33 | if (ret) |
| 34 | hang(); |
| 35 | |
| 36 | socfpga_get_managers_addr(); |
| 37 | |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 38 | /* Ensure watchdog is paused when debugging is happening */ |
Ley Foon Tan | 3d3a860 | 2019-11-08 10:38:20 +0800 | [diff] [blame] | 39 | writel(SYSMGR_WDDBG_PAUSE_ALL_CPU, |
Ley Foon Tan | 0b1680e | 2019-11-27 15:55:18 +0800 | [diff] [blame] | 40 | socfpga_get_sysmgr_addr() + SYSMGR_SOC64_WDDBG); |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 41 | |
Chee Hong Ang | 346431c | 2020-08-06 12:15:33 +0800 | [diff] [blame] | 42 | #ifdef CONFIG_HW_WATCHDOG |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 43 | /* 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 | socfpga_per_reset(SOCFPGA_RESET(OSC1TIMER0), 0); |
| 53 | timer_init(); |
| 54 | |
Ley Foon Tan | 0968d4e | 2018-08-17 16:22:02 +0800 | [diff] [blame] | 55 | sysmgr_pinmux_init(); |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 56 | |
| 57 | /* configuring the HPS clocks */ |
| 58 | cm_basic_init(cm_default_cfg); |
| 59 | |
| 60 | #ifdef CONFIG_DEBUG_UART |
| 61 | socfpga_per_reset(SOCFPGA_RESET(UART0), 0); |
| 62 | debug_uart_init(); |
| 63 | #endif |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 64 | |
| 65 | preloader_console_init(); |
Chee Hong Ang | 6cf193c | 2020-08-05 21:15:57 +0800 | [diff] [blame] | 66 | print_reset_info(); |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 67 | cm_print_clock_quick_summary(); |
| 68 | |
Ley Foon Tan | f1c4bd5 | 2019-11-27 15:55:15 +0800 | [diff] [blame] | 69 | firewall_setup(); |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 70 | |
| 71 | /* disable ocram security at CCU for non secure access */ |
| 72 | clrbits_le32(CCU_REG_ADDR(CCU_CPU0_MPRT_ADMASK_MEM_RAM0), |
| 73 | CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK); |
| 74 | clrbits_le32(CCU_REG_ADDR(CCU_IOM_MPRT_ADMASK_MEM_RAM0), |
| 75 | CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK); |
| 76 | |
Ley Foon Tan | 3fdf436 | 2019-05-06 09:56:01 +0800 | [diff] [blame] | 77 | #if CONFIG_IS_ENABLED(ALTERA_SDRAM) |
| 78 | struct udevice *dev; |
| 79 | |
| 80 | ret = uclass_get_device(UCLASS_RAM, 0, &dev); |
| 81 | if (ret) { |
| 82 | debug("DRAM init failed: %d\n", ret); |
| 83 | hang(); |
| 84 | } |
| 85 | #endif |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 86 | |
Ley Foon Tan | 975e496 | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 87 | mbox_init(); |
| 88 | |
| 89 | #ifdef CONFIG_CADENCE_QSPI |
| 90 | mbox_qspi_open(); |
| 91 | #endif |
| 92 | } |