blob: 61c0ef2b57549092cf6b981378e6da0691903a46 [file] [log] [blame]
Hadi Asyrafi616da772019-06-27 11:34:03 +08001/*
Sieu Mun Tang82cf5df2022-05-05 17:07:21 +08002 * Copyright (c) 2019-2022, ARM Limited and Contributors. All rights reserved.
3 * Copyright (c) 2019-2022, Intel Corporation. All rights reserved.
Hadi Asyrafi616da772019-06-27 11:34:03 +08004 *
5 * SPDX-License-Identifier: BSD-3-Clause
6 */
7
8#include <arch.h>
9#include <arch_helpers.h>
Siew Chin Lim380924d2021-06-12 13:25:05 +080010#include <assert.h>
Hadi Asyrafi616da772019-06-27 11:34:03 +080011#include <common/bl_common.h>
12#include <common/debug.h>
13#include <common/desc_image_load.h>
14#include <drivers/generic_delay_timer.h>
15#include <drivers/synopsys/dw_mmc.h>
16#include <drivers/ti/uart/uart_16550.h>
17#include <lib/xlat_tables/xlat_tables.h>
Hadi Asyrafi616da772019-06-27 11:34:03 +080018
Tien Hock Lohfcbc33d2020-05-11 01:11:39 -070019#include "agilex_mmc.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080020#include "agilex_clock_manager.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080021#include "agilex_memory_controller.h"
22#include "agilex_pinmux.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080023#include "ccu/ncore_ccu.h"
24#include "qspi/cadence_qspi.h"
Tien Hock, Loh8d9e8912019-10-02 13:49:25 +080025#include "socfpga_emac.h"
Sieu Mun Tang82cf5df2022-05-05 17:07:21 +080026#include "socfpga_f2sdram_manager.h"
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080027#include "socfpga_handoff.h"
Hadi Asyrafi6f8a2b22019-10-23 18:34:14 +080028#include "socfpga_mailbox.h"
Hadi Asyrafif0fa8072019-10-23 17:02:55 +080029#include "socfpga_private.h"
Hadi Asyrafi67cb0ea2019-12-23 13:25:33 +080030#include "socfpga_reset_manager.h"
Mahesh Raoc2715992023-08-22 17:26:23 +080031#include "socfpga_ros.h"
Hadi Asyrafi8ebd2372019-12-23 17:58:04 +080032#include "socfpga_system_manager.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080033#include "wdt/watchdog.h"
34
Yann Gautiercf931582021-03-22 14:21:54 +010035static struct mmc_device_info mmc_info;
Hadi Asyrafi616da772019-06-27 11:34:03 +080036
37const mmap_region_t agilex_plat_mmap[] = {
38 MAP_REGION_FLAT(DRAM_BASE, DRAM_SIZE,
39 MT_MEMORY | MT_RW | MT_NS),
40 MAP_REGION_FLAT(DEVICE1_BASE, DEVICE1_SIZE,
41 MT_DEVICE | MT_RW | MT_NS),
42 MAP_REGION_FLAT(DEVICE2_BASE, DEVICE2_SIZE,
43 MT_DEVICE | MT_RW | MT_SECURE),
44 MAP_REGION_FLAT(OCRAM_BASE, OCRAM_SIZE,
45 MT_NON_CACHEABLE | MT_RW | MT_SECURE),
46 MAP_REGION_FLAT(DEVICE3_BASE, DEVICE3_SIZE,
47 MT_DEVICE | MT_RW | MT_SECURE),
48 MAP_REGION_FLAT(MEM64_BASE, MEM64_SIZE,
49 MT_DEVICE | MT_RW | MT_NS),
50 MAP_REGION_FLAT(DEVICE4_BASE, DEVICE4_SIZE,
51 MT_DEVICE | MT_RW | MT_NS),
52 {0},
53};
54
Hadi Asyrafi786db4d2019-12-30 16:00:30 +080055boot_source_type boot_source = BOOT_SOURCE;
Hadi Asyrafi616da772019-06-27 11:34:03 +080056
57void bl2_el3_early_platform_setup(u_register_t x0, u_register_t x1,
58 u_register_t x2, u_register_t x4)
59{
Andre Przywara98b5a112020-01-25 00:58:35 +000060 static console_t console;
Hadi Asyrafi616da772019-06-27 11:34:03 +080061 handoff reverse_handoff_ptr;
62
63 generic_delay_timer_init();
64
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080065 if (socfpga_get_handoff(&reverse_handoff_ptr))
Hadi Asyrafi616da772019-06-27 11:34:03 +080066 return;
67 config_pinmux(&reverse_handoff_ptr);
Hadi Asyrafi616da772019-06-27 11:34:03 +080068 config_clkmgr_handoff(&reverse_handoff_ptr);
69
70 enable_nonsecure_access();
71 deassert_peripheral_reset();
72 config_hps_hs_before_warm_reset();
73
Hadi Asyrafia813fed2019-08-14 13:49:00 +080074 watchdog_init(get_wdt_clk());
Hadi Asyrafi616da772019-06-27 11:34:03 +080075
Boon Khai Ngb19ac612021-08-06 01:16:46 +080076 console_16550_register(PLAT_INTEL_UART_BASE, get_uart_clk(),
77 PLAT_BAUDRATE, &console);
Hadi Asyrafi616da772019-06-27 11:34:03 +080078
79 socfpga_delay_timer_init();
80 init_ncore_ccu();
Tien Hock, Loh8d9e8912019-10-02 13:49:25 +080081 socfpga_emac_init();
Hadi Asyrafi616da772019-06-27 11:34:03 +080082 init_hard_memory_controller();
Hadi Asyrafie73c5112019-10-21 16:35:08 +080083 mailbox_init();
Tien Hock Lohfcbc33d2020-05-11 01:11:39 -070084 agx_mmc_init();
Hadi Asyrafi6aeb55d2019-12-24 14:43:22 +080085
Sieu Mun Tang82cf5df2022-05-05 17:07:21 +080086 if (!intel_mailbox_is_fpga_not_ready()) {
87 socfpga_bridges_enable(SOC2FPGA_MASK | LWHPS2FPGA_MASK |
Sieu Mun Tang044ed482022-05-11 10:45:19 +080088 FPGA2SOC_MASK);
Sieu Mun Tang82cf5df2022-05-05 17:07:21 +080089 }
Hadi Asyrafi616da772019-06-27 11:34:03 +080090}
91
92
93void bl2_el3_plat_arch_setup(void)
94{
95
Mahesh Raoc2715992023-08-22 17:26:23 +080096 unsigned long offset = 0;
Hadi Asyrafi616da772019-06-27 11:34:03 +080097 const mmap_region_t bl_regions[] = {
98 MAP_REGION_FLAT(BL2_BASE, BL2_END - BL2_BASE,
99 MT_MEMORY | MT_RW | MT_SECURE),
100 MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
101 MT_CODE | MT_SECURE),
102 MAP_REGION_FLAT(BL_RO_DATA_BASE,
103 BL_RO_DATA_END - BL_RO_DATA_BASE,
104 MT_RO_DATA | MT_SECURE),
105#if USE_COHERENT_MEM_BAR
106 MAP_REGION_FLAT(BL_COHERENT_RAM_BASE,
107 BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE,
108 MT_DEVICE | MT_RW | MT_SECURE),
109#endif
110 {0},
111 };
112
113 setup_page_tables(bl_regions, agilex_plat_mmap);
114
115 enable_mmu_el3(0);
116
Hadi Asyrafia813fed2019-08-14 13:49:00 +0800117 dw_mmc_params_t params = EMMC_INIT_PARAMS(0x100000, get_mmc_clk());
Hadi Asyrafi616da772019-06-27 11:34:03 +0800118
Yann Gautiercf931582021-03-22 14:21:54 +0100119 mmc_info.mmc_dev_type = MMC_IS_SD;
120 mmc_info.ocr_voltage = OCR_3_3_3_4 | OCR_3_2_3_3;
Hadi Asyrafi616da772019-06-27 11:34:03 +0800121
Abdul Halim, Muhammad Hadi Asyrafiae4cd3a2020-10-06 20:09:53 +0800122 /* Request ownership and direct access to QSPI */
123 mailbox_hps_qspi_enable();
124
Hadi Asyrafi616da772019-06-27 11:34:03 +0800125 switch (boot_source) {
126 case BOOT_SOURCE_SDMMC:
Yann Gautiercf931582021-03-22 14:21:54 +0100127 dw_mmc_init(&params, &mmc_info);
Mahesh Raoc2715992023-08-22 17:26:23 +0800128 socfpga_io_setup(boot_source, PLAT_SDMMC_DATA_BASE);
Hadi Asyrafi616da772019-06-27 11:34:03 +0800129 break;
130
131 case BOOT_SOURCE_QSPI:
Hadi Asyrafi616da772019-06-27 11:34:03 +0800132 cad_qspi_init(0, QSPI_CONFIG_CPHA, QSPI_CONFIG_CPOL,
133 QSPI_CONFIG_CSDA, QSPI_CONFIG_CSDADS,
134 QSPI_CONFIG_CSEOT, QSPI_CONFIG_CSSOT, 0);
Mahesh Raoc2715992023-08-22 17:26:23 +0800135 if (ros_qspi_get_ssbl_offset(&offset) != ROS_RET_OK) {
136 offset = PLAT_QSPI_DATA_BASE;
137 }
138 socfpga_io_setup(boot_source, offset);
Hadi Asyrafi616da772019-06-27 11:34:03 +0800139 break;
140
141 default:
142 ERROR("Unsupported boot source\n");
143 panic();
144 break;
145 }
146}
147
148uint32_t get_spsr_for_bl33_entry(void)
149{
150 unsigned long el_status;
151 unsigned int mode;
152 uint32_t spsr;
153
154 /* Figure out what mode we enter the non-secure world in */
155 el_status = read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL2_SHIFT;
156 el_status &= ID_AA64PFR0_ELX_MASK;
157
158 mode = (el_status) ? MODE_EL2 : MODE_EL1;
159
160 /*
161 * TODO: Consider the possibility of specifying the SPSR in
162 * the FIP ToC and allowing the platform to have a say as
163 * well.
164 */
165 spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
166 return spsr;
167}
168
169
170int bl2_plat_handle_post_image_load(unsigned int image_id)
171{
172 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
173
Siew Chin Lim380924d2021-06-12 13:25:05 +0800174 assert(bl_mem_params);
175
Hadi Asyrafi616da772019-06-27 11:34:03 +0800176 switch (image_id) {
177 case BL33_IMAGE_ID:
178 bl_mem_params->ep_info.args.arg0 = 0xffff & read_mpidr();
179 bl_mem_params->ep_info.spsr = get_spsr_for_bl33_entry();
180 break;
181 default:
182 break;
183 }
184
185 return 0;
186}
187
188/*******************************************************************************
189 * Perform any BL3-1 platform setup code
190 ******************************************************************************/
191void bl2_platform_setup(void)
192{
193}
194