blob: b6b3e16622ac0461a8260e95d179b53048f56665 [file] [log] [blame]
Hadi Asyrafi616da772019-06-27 11:34:03 +08001/*
Yann Gautiercf931582021-03-22 14:21:54 +01002 * Copyright (c) 2019-2021, ARM Limited and Contributors. All rights reserved.
3 * Copyright (c) 2019-2021, 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>
10#include <common/bl_common.h>
11#include <common/debug.h>
12#include <common/desc_image_load.h>
13#include <drivers/generic_delay_timer.h>
14#include <drivers/synopsys/dw_mmc.h>
15#include <drivers/ti/uart/uart_16550.h>
16#include <lib/xlat_tables/xlat_tables.h>
Hadi Asyrafi616da772019-06-27 11:34:03 +080017
Tien Hock Lohfcbc33d2020-05-11 01:11:39 -070018#include "agilex_mmc.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080019#include "agilex_clock_manager.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080020#include "agilex_memory_controller.h"
21#include "agilex_pinmux.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080022#include "ccu/ncore_ccu.h"
23#include "qspi/cadence_qspi.h"
Tien Hock, Loh8d9e8912019-10-02 13:49:25 +080024#include "socfpga_emac.h"
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080025#include "socfpga_handoff.h"
Hadi Asyrafi6f8a2b22019-10-23 18:34:14 +080026#include "socfpga_mailbox.h"
Hadi Asyrafif0fa8072019-10-23 17:02:55 +080027#include "socfpga_private.h"
Hadi Asyrafi67cb0ea2019-12-23 13:25:33 +080028#include "socfpga_reset_manager.h"
Hadi Asyrafi8ebd2372019-12-23 17:58:04 +080029#include "socfpga_system_manager.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080030#include "wdt/watchdog.h"
31
Yann Gautiercf931582021-03-22 14:21:54 +010032static struct mmc_device_info mmc_info;
Hadi Asyrafi616da772019-06-27 11:34:03 +080033
34const mmap_region_t agilex_plat_mmap[] = {
35 MAP_REGION_FLAT(DRAM_BASE, DRAM_SIZE,
36 MT_MEMORY | MT_RW | MT_NS),
37 MAP_REGION_FLAT(DEVICE1_BASE, DEVICE1_SIZE,
38 MT_DEVICE | MT_RW | MT_NS),
39 MAP_REGION_FLAT(DEVICE2_BASE, DEVICE2_SIZE,
40 MT_DEVICE | MT_RW | MT_SECURE),
41 MAP_REGION_FLAT(OCRAM_BASE, OCRAM_SIZE,
42 MT_NON_CACHEABLE | MT_RW | MT_SECURE),
43 MAP_REGION_FLAT(DEVICE3_BASE, DEVICE3_SIZE,
44 MT_DEVICE | MT_RW | MT_SECURE),
45 MAP_REGION_FLAT(MEM64_BASE, MEM64_SIZE,
46 MT_DEVICE | MT_RW | MT_NS),
47 MAP_REGION_FLAT(DEVICE4_BASE, DEVICE4_SIZE,
48 MT_DEVICE | MT_RW | MT_NS),
49 {0},
50};
51
Hadi Asyrafi786db4d2019-12-30 16:00:30 +080052boot_source_type boot_source = BOOT_SOURCE;
Hadi Asyrafi616da772019-06-27 11:34:03 +080053
54void bl2_el3_early_platform_setup(u_register_t x0, u_register_t x1,
55 u_register_t x2, u_register_t x4)
56{
Andre Przywara98b5a112020-01-25 00:58:35 +000057 static console_t console;
Hadi Asyrafi616da772019-06-27 11:34:03 +080058 handoff reverse_handoff_ptr;
59
60 generic_delay_timer_init();
61
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080062 if (socfpga_get_handoff(&reverse_handoff_ptr))
Hadi Asyrafi616da772019-06-27 11:34:03 +080063 return;
64 config_pinmux(&reverse_handoff_ptr);
Hadi Asyrafi616da772019-06-27 11:34:03 +080065 config_clkmgr_handoff(&reverse_handoff_ptr);
66
67 enable_nonsecure_access();
68 deassert_peripheral_reset();
69 config_hps_hs_before_warm_reset();
70
Hadi Asyrafia813fed2019-08-14 13:49:00 +080071 watchdog_init(get_wdt_clk());
Hadi Asyrafi616da772019-06-27 11:34:03 +080072
Hadi Asyrafia813fed2019-08-14 13:49:00 +080073 console_16550_register(PLAT_UART0_BASE, get_uart_clk(), PLAT_BAUDRATE,
Hadi Asyrafi616da772019-06-27 11:34:03 +080074 &console);
75
76 socfpga_delay_timer_init();
77 init_ncore_ccu();
Tien Hock, Loh8d9e8912019-10-02 13:49:25 +080078 socfpga_emac_init();
Hadi Asyrafi616da772019-06-27 11:34:03 +080079 init_hard_memory_controller();
Hadi Asyrafie73c5112019-10-21 16:35:08 +080080 mailbox_init();
Tien Hock Lohfcbc33d2020-05-11 01:11:39 -070081 agx_mmc_init();
Hadi Asyrafi6aeb55d2019-12-24 14:43:22 +080082
83 if (!intel_mailbox_is_fpga_not_ready())
84 socfpga_bridges_enable();
Hadi Asyrafi616da772019-06-27 11:34:03 +080085}
86
87
88void bl2_el3_plat_arch_setup(void)
89{
90
Hadi Asyrafi616da772019-06-27 11:34:03 +080091 const mmap_region_t bl_regions[] = {
92 MAP_REGION_FLAT(BL2_BASE, BL2_END - BL2_BASE,
93 MT_MEMORY | MT_RW | MT_SECURE),
94 MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
95 MT_CODE | MT_SECURE),
96 MAP_REGION_FLAT(BL_RO_DATA_BASE,
97 BL_RO_DATA_END - BL_RO_DATA_BASE,
98 MT_RO_DATA | MT_SECURE),
99#if USE_COHERENT_MEM_BAR
100 MAP_REGION_FLAT(BL_COHERENT_RAM_BASE,
101 BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE,
102 MT_DEVICE | MT_RW | MT_SECURE),
103#endif
104 {0},
105 };
106
107 setup_page_tables(bl_regions, agilex_plat_mmap);
108
109 enable_mmu_el3(0);
110
Hadi Asyrafia813fed2019-08-14 13:49:00 +0800111 dw_mmc_params_t params = EMMC_INIT_PARAMS(0x100000, get_mmc_clk());
Hadi Asyrafi616da772019-06-27 11:34:03 +0800112
Yann Gautiercf931582021-03-22 14:21:54 +0100113 mmc_info.mmc_dev_type = MMC_IS_SD;
114 mmc_info.ocr_voltage = OCR_3_3_3_4 | OCR_3_2_3_3;
Hadi Asyrafi616da772019-06-27 11:34:03 +0800115
Hadi Asyrafi616da772019-06-27 11:34:03 +0800116 switch (boot_source) {
117 case BOOT_SOURCE_SDMMC:
Yann Gautiercf931582021-03-22 14:21:54 +0100118 dw_mmc_init(&params, &mmc_info);
Hadi Asyrafi616da772019-06-27 11:34:03 +0800119 socfpga_io_setup(boot_source);
120 break;
121
122 case BOOT_SOURCE_QSPI:
123 mailbox_set_qspi_open();
124 mailbox_set_qspi_direct();
125 cad_qspi_init(0, QSPI_CONFIG_CPHA, QSPI_CONFIG_CPOL,
126 QSPI_CONFIG_CSDA, QSPI_CONFIG_CSDADS,
127 QSPI_CONFIG_CSEOT, QSPI_CONFIG_CSSOT, 0);
128 socfpga_io_setup(boot_source);
129 break;
130
131 default:
132 ERROR("Unsupported boot source\n");
133 panic();
134 break;
135 }
136}
137
138uint32_t get_spsr_for_bl33_entry(void)
139{
140 unsigned long el_status;
141 unsigned int mode;
142 uint32_t spsr;
143
144 /* Figure out what mode we enter the non-secure world in */
145 el_status = read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL2_SHIFT;
146 el_status &= ID_AA64PFR0_ELX_MASK;
147
148 mode = (el_status) ? MODE_EL2 : MODE_EL1;
149
150 /*
151 * TODO: Consider the possibility of specifying the SPSR in
152 * the FIP ToC and allowing the platform to have a say as
153 * well.
154 */
155 spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
156 return spsr;
157}
158
159
160int bl2_plat_handle_post_image_load(unsigned int image_id)
161{
162 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
163
164 switch (image_id) {
165 case BL33_IMAGE_ID:
166 bl_mem_params->ep_info.args.arg0 = 0xffff & read_mpidr();
167 bl_mem_params->ep_info.spsr = get_spsr_for_bl33_entry();
168 break;
169 default:
170 break;
171 }
172
173 return 0;
174}
175
176/*******************************************************************************
177 * Perform any BL3-1 platform setup code
178 ******************************************************************************/
179void bl2_platform_setup(void)
180{
181}
182