Ley Foon Tan | 4765ddb | 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 | db41d65 | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 7 | #include <hang.h> |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 8 | #include <init.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 9 | #include <log.h> |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 10 | #include <asm/io.h> |
| 11 | #include <asm/u-boot.h> |
| 12 | #include <asm/utils.h> |
| 13 | #include <common.h> |
Ley Foon Tan | aa52966 | 2018-07-12 21:44:24 +0800 | [diff] [blame] | 14 | #include <debug_uart.h> |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 15 | #include <image.h> |
| 16 | #include <spl.h> |
| 17 | #include <asm/arch/clock_manager.h> |
Ley Foon Tan | 8b7962a | 2019-11-27 15:55:15 +0800 | [diff] [blame] | 18 | #include <asm/arch/firewall.h> |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 19 | #include <asm/arch/mailbox_s10.h> |
Ley Foon Tan | bb25aca | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 20 | #include <asm/arch/misc.h> |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 21 | #include <asm/arch/reset_manager.h> |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 22 | #include <asm/arch/system_manager.h> |
| 23 | #include <watchdog.h> |
Ley Foon Tan | 6bf238a | 2019-05-06 09:56:01 +0800 | [diff] [blame] | 24 | #include <dm/uclass.h> |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 25 | |
| 26 | DECLARE_GLOBAL_DATA_PTR; |
| 27 | |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 28 | u32 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 Seiler | e975906 | 2020-04-15 11:33:30 +0200 | [diff] [blame] | 35 | u32 spl_mmc_boot_mode(const u32 boot_device) |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 36 | { |
Tien Fong Chee | f4b4092 | 2019-01-23 14:20:05 +0800 | [diff] [blame] | 37 | #if defined(CONFIG_SPL_FS_FAT) || defined(CONFIG_SPL_FS_EXT4) |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 38 | return MMCSD_MODE_FS; |
| 39 | #else |
| 40 | return MMCSD_MODE_RAW; |
| 41 | #endif |
| 42 | } |
| 43 | #endif |
| 44 | |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 45 | void board_init_f(ulong dummy) |
| 46 | { |
| 47 | const struct cm_config *cm_default_cfg = cm_get_default_config(); |
| 48 | int ret; |
| 49 | |
Ley Foon Tan | bb25aca | 2019-11-08 10:38:19 +0800 | [diff] [blame] | 50 | ret = spl_early_init(); |
| 51 | if (ret) |
| 52 | hang(); |
| 53 | |
| 54 | socfpga_get_managers_addr(); |
| 55 | |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 56 | #ifdef CONFIG_HW_WATCHDOG |
| 57 | /* Ensure watchdog is paused when debugging is happening */ |
Ley Foon Tan | db5741f | 2019-11-08 10:38:20 +0800 | [diff] [blame] | 58 | writel(SYSMGR_WDDBG_PAUSE_ALL_CPU, |
Ley Foon Tan | 2fd1dc5 | 2019-11-27 15:55:18 +0800 | [diff] [blame] | 59 | socfpga_get_sysmgr_addr() + SYSMGR_SOC64_WDDBG); |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 60 | |
| 61 | /* 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 Tan | db3b5e9 | 2018-08-17 16:22:02 +0800 | [diff] [blame] | 73 | sysmgr_pinmux_init(); |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 74 | |
| 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 Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 82 | |
| 83 | preloader_console_init(); |
| 84 | cm_print_clock_quick_summary(); |
| 85 | |
Ley Foon Tan | 8b7962a | 2019-11-27 15:55:15 +0800 | [diff] [blame] | 86 | firewall_setup(); |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 87 | |
| 88 | /* disable ocram security at CCU for non secure access */ |
| 89 | clrbits_le32(CCU_REG_ADDR(CCU_CPU0_MPRT_ADMASK_MEM_RAM0), |
| 90 | CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK); |
| 91 | clrbits_le32(CCU_REG_ADDR(CCU_IOM_MPRT_ADMASK_MEM_RAM0), |
| 92 | CCU_ADMASK_P_MASK | CCU_ADMASK_NS_MASK); |
| 93 | |
Ley Foon Tan | 6bf238a | 2019-05-06 09:56:01 +0800 | [diff] [blame] | 94 | #if CONFIG_IS_ENABLED(ALTERA_SDRAM) |
| 95 | struct udevice *dev; |
| 96 | |
| 97 | ret = uclass_get_device(UCLASS_RAM, 0, &dev); |
| 98 | if (ret) { |
| 99 | debug("DRAM init failed: %d\n", ret); |
| 100 | hang(); |
| 101 | } |
| 102 | #endif |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 103 | |
Ley Foon Tan | 4765ddb | 2018-05-24 00:17:28 +0800 | [diff] [blame] | 104 | mbox_init(); |
| 105 | |
| 106 | #ifdef CONFIG_CADENCE_QSPI |
| 107 | mbox_qspi_open(); |
| 108 | #endif |
| 109 | } |