blob: 9587d4859f8af37d37cf4c57227c7f0a1514063a [file] [log] [blame]
Hadi Asyrafi616da772019-06-27 11:34:03 +08001/*
2 * Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
3 * Copyright (c) 2019, Intel Corporation. All rights reserved.
4 *
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
18#include "agilex_clock_manager.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080019#include "agilex_memory_controller.h"
20#include "agilex_pinmux.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080021#include "ccu/ncore_ccu.h"
22#include "qspi/cadence_qspi.h"
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080023#include "socfpga_handoff.h"
Hadi Asyrafi6f8a2b22019-10-23 18:34:14 +080024#include "socfpga_mailbox.h"
Hadi Asyrafif0fa8072019-10-23 17:02:55 +080025#include "socfpga_private.h"
Hadi Asyrafi67cb0ea2019-12-23 13:25:33 +080026#include "socfpga_reset_manager.h"
Hadi Asyrafi8ebd2372019-12-23 17:58:04 +080027#include "socfpga_system_manager.h"
Hadi Asyrafi616da772019-06-27 11:34:03 +080028#include "wdt/watchdog.h"
29
30
31const mmap_region_t agilex_plat_mmap[] = {
32 MAP_REGION_FLAT(DRAM_BASE, DRAM_SIZE,
33 MT_MEMORY | MT_RW | MT_NS),
34 MAP_REGION_FLAT(DEVICE1_BASE, DEVICE1_SIZE,
35 MT_DEVICE | MT_RW | MT_NS),
36 MAP_REGION_FLAT(DEVICE2_BASE, DEVICE2_SIZE,
37 MT_DEVICE | MT_RW | MT_SECURE),
38 MAP_REGION_FLAT(OCRAM_BASE, OCRAM_SIZE,
39 MT_NON_CACHEABLE | MT_RW | MT_SECURE),
40 MAP_REGION_FLAT(DEVICE3_BASE, DEVICE3_SIZE,
41 MT_DEVICE | MT_RW | MT_SECURE),
42 MAP_REGION_FLAT(MEM64_BASE, MEM64_SIZE,
43 MT_DEVICE | MT_RW | MT_NS),
44 MAP_REGION_FLAT(DEVICE4_BASE, DEVICE4_SIZE,
45 MT_DEVICE | MT_RW | MT_NS),
46 {0},
47};
48
49boot_source_type boot_source;
50
51void bl2_el3_early_platform_setup(u_register_t x0, u_register_t x1,
52 u_register_t x2, u_register_t x4)
53{
54 static console_16550_t console;
55 handoff reverse_handoff_ptr;
56
57 generic_delay_timer_init();
58
Hadi Asyrafi9f5dfc92019-10-23 16:26:53 +080059 if (socfpga_get_handoff(&reverse_handoff_ptr))
Hadi Asyrafi616da772019-06-27 11:34:03 +080060 return;
61 config_pinmux(&reverse_handoff_ptr);
62 boot_source = reverse_handoff_ptr.boot_source;
63 config_clkmgr_handoff(&reverse_handoff_ptr);
64
65 enable_nonsecure_access();
66 deassert_peripheral_reset();
67 config_hps_hs_before_warm_reset();
68
Hadi Asyrafia813fed2019-08-14 13:49:00 +080069 watchdog_init(get_wdt_clk());
Hadi Asyrafi616da772019-06-27 11:34:03 +080070
Hadi Asyrafia813fed2019-08-14 13:49:00 +080071 console_16550_register(PLAT_UART0_BASE, get_uart_clk(), PLAT_BAUDRATE,
Hadi Asyrafi616da772019-06-27 11:34:03 +080072 &console);
73
74 socfpga_delay_timer_init();
75 init_ncore_ccu();
76 init_hard_memory_controller();
Hadi Asyrafie73c5112019-10-21 16:35:08 +080077 mailbox_init();
Hadi Asyrafi6aeb55d2019-12-24 14:43:22 +080078
79 if (!intel_mailbox_is_fpga_not_ready())
80 socfpga_bridges_enable();
Hadi Asyrafi616da772019-06-27 11:34:03 +080081}
82
83
84void bl2_el3_plat_arch_setup(void)
85{
86
87 struct mmc_device_info info;
88 const mmap_region_t bl_regions[] = {
89 MAP_REGION_FLAT(BL2_BASE, BL2_END - BL2_BASE,
90 MT_MEMORY | MT_RW | MT_SECURE),
91 MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
92 MT_CODE | MT_SECURE),
93 MAP_REGION_FLAT(BL_RO_DATA_BASE,
94 BL_RO_DATA_END - BL_RO_DATA_BASE,
95 MT_RO_DATA | MT_SECURE),
96#if USE_COHERENT_MEM_BAR
97 MAP_REGION_FLAT(BL_COHERENT_RAM_BASE,
98 BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE,
99 MT_DEVICE | MT_RW | MT_SECURE),
100#endif
101 {0},
102 };
103
104 setup_page_tables(bl_regions, agilex_plat_mmap);
105
106 enable_mmu_el3(0);
107
Hadi Asyrafia813fed2019-08-14 13:49:00 +0800108 dw_mmc_params_t params = EMMC_INIT_PARAMS(0x100000, get_mmc_clk());
Hadi Asyrafi616da772019-06-27 11:34:03 +0800109
110 info.mmc_dev_type = MMC_IS_SD;
111 info.ocr_voltage = OCR_3_3_3_4 | OCR_3_2_3_3;
112
Hadi Asyrafi616da772019-06-27 11:34:03 +0800113 switch (boot_source) {
114 case BOOT_SOURCE_SDMMC:
115 dw_mmc_init(&params, &info);
116 socfpga_io_setup(boot_source);
117 break;
118
119 case BOOT_SOURCE_QSPI:
120 mailbox_set_qspi_open();
121 mailbox_set_qspi_direct();
122 cad_qspi_init(0, QSPI_CONFIG_CPHA, QSPI_CONFIG_CPOL,
123 QSPI_CONFIG_CSDA, QSPI_CONFIG_CSDADS,
124 QSPI_CONFIG_CSEOT, QSPI_CONFIG_CSSOT, 0);
125 socfpga_io_setup(boot_source);
126 break;
127
128 default:
129 ERROR("Unsupported boot source\n");
130 panic();
131 break;
132 }
133}
134
135uint32_t get_spsr_for_bl33_entry(void)
136{
137 unsigned long el_status;
138 unsigned int mode;
139 uint32_t spsr;
140
141 /* Figure out what mode we enter the non-secure world in */
142 el_status = read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL2_SHIFT;
143 el_status &= ID_AA64PFR0_ELX_MASK;
144
145 mode = (el_status) ? MODE_EL2 : MODE_EL1;
146
147 /*
148 * TODO: Consider the possibility of specifying the SPSR in
149 * the FIP ToC and allowing the platform to have a say as
150 * well.
151 */
152 spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
153 return spsr;
154}
155
156
157int bl2_plat_handle_post_image_load(unsigned int image_id)
158{
159 bl_mem_params_node_t *bl_mem_params = get_bl_mem_params_node(image_id);
160
161 switch (image_id) {
162 case BL33_IMAGE_ID:
163 bl_mem_params->ep_info.args.arg0 = 0xffff & read_mpidr();
164 bl_mem_params->ep_info.spsr = get_spsr_for_bl33_entry();
165 break;
166 default:
167 break;
168 }
169
170 return 0;
171}
172
173/*******************************************************************************
174 * Perform any BL3-1 platform setup code
175 ******************************************************************************/
176void bl2_platform_setup(void)
177{
178}
179