blob: 8fc357a7888cfb92cc8bdd782aee3c3821135193 [file] [log] [blame]
Antonio Nino Diazae6779e2017-11-06 14:49:04 +00001/*
Andre Przywara4ea3bd32019-07-09 14:32:11 +01002 * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
Antonio Nino Diazae6779e2017-11-06 14:49:04 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz9abd78d2018-07-11 21:00:32 +01007#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
Antonio Nino Diazae6779e2017-11-06 14:49:04 +00009#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010
11#include <arch_helpers.h>
12#include <common/bl_common.h>
13#include <common/debug.h>
14#include <bl31/interrupt_mgmt.h>
15#include <drivers/console.h>
16#include <drivers/ti/uart/uart_16550.h>
Andre Przywara9ba6bb02020-03-10 12:34:56 +000017#include <drivers/arm/pl011.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000018#include <lib/xlat_tables/xlat_tables_v2.h>
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000019
Andre Przywarabb6ef152019-07-09 11:44:14 +010020#include <rpi_hw.h>
Andre Przywara4ea3bd32019-07-09 14:32:11 +010021#include <rpi_shared.h>
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000022
23#define MAP_DEVICE0 MAP_REGION_FLAT(DEVICE0_BASE, \
24 DEVICE0_SIZE, \
25 MT_DEVICE | MT_RW | MT_SECURE)
26
Andre Przywara0467ce92019-07-15 08:58:23 +010027#ifdef SHARED_RAM_BASE
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000028#define MAP_SHARED_RAM MAP_REGION_FLAT(SHARED_RAM_BASE, \
29 SHARED_RAM_SIZE, \
Antonio Nino Diazf96582a2018-10-19 00:57:16 +010030 MT_DEVICE | MT_RW | MT_SECURE)
Andre Przywara0467ce92019-07-15 08:58:23 +010031#endif
Antonio Nino Diazf96582a2018-10-19 00:57:16 +010032
33#ifdef RPI3_PRELOADED_DTB_BASE
34#define MAP_NS_DTB MAP_REGION_FLAT(RPI3_PRELOADED_DTB_BASE, 0x10000, \
35 MT_MEMORY | MT_RW | MT_NS)
36#endif
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000037
38#define MAP_NS_DRAM0 MAP_REGION_FLAT(NS_DRAM0_BASE, NS_DRAM0_SIZE, \
39 MT_MEMORY | MT_RW | MT_NS)
40
41#define MAP_FIP MAP_REGION_FLAT(PLAT_RPI3_FIP_BASE, \
42 PLAT_RPI3_FIP_MAX_SIZE, \
43 MT_MEMORY | MT_RO | MT_NS)
44
45#define MAP_BL32_MEM MAP_REGION_FLAT(BL32_MEM_BASE, BL32_MEM_SIZE, \
46 MT_MEMORY | MT_RW | MT_SECURE)
47
Ying-Chun Liu (PaulLiu)d9f76e62018-06-10 02:00:27 +080048#ifdef SPD_opteed
49#define MAP_OPTEE_PAGEABLE MAP_REGION_FLAT( \
50 RPI3_OPTEE_PAGEABLE_LOAD_BASE, \
51 RPI3_OPTEE_PAGEABLE_LOAD_SIZE, \
52 MT_MEMORY | MT_RW | MT_SECURE)
53#endif
54
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000055/*
56 * Table of regions for various BL stages to map using the MMU.
57 */
58#ifdef IMAGE_BL1
59static const mmap_region_t plat_rpi3_mmap[] = {
Andre Przywara0467ce92019-07-15 08:58:23 +010060#ifdef MAP_SHARED_RAM
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000061 MAP_SHARED_RAM,
Andre Przywara0467ce92019-07-15 08:58:23 +010062#endif
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000063 MAP_DEVICE0,
64 MAP_FIP,
Ying-Chun Liu (PaulLiu)d9f76e62018-06-10 02:00:27 +080065#ifdef SPD_opteed
66 MAP_OPTEE_PAGEABLE,
67#endif
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000068 {0}
69};
70#endif
71
72#ifdef IMAGE_BL2
73static const mmap_region_t plat_rpi3_mmap[] = {
Andre Przywara0467ce92019-07-15 08:58:23 +010074#ifdef MAP_SHARED_RAM
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000075 MAP_SHARED_RAM,
Andre Przywara0467ce92019-07-15 08:58:23 +010076#endif
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000077 MAP_DEVICE0,
78 MAP_FIP,
79 MAP_NS_DRAM0,
80#ifdef BL32_BASE
81 MAP_BL32_MEM,
82#endif
83 {0}
84};
85#endif
86
87#ifdef IMAGE_BL31
88static const mmap_region_t plat_rpi3_mmap[] = {
Andre Przywara0467ce92019-07-15 08:58:23 +010089#ifdef MAP_SHARED_RAM
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000090 MAP_SHARED_RAM,
Andre Przywara0467ce92019-07-15 08:58:23 +010091#endif
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000092 MAP_DEVICE0,
Antonio Nino Diazf96582a2018-10-19 00:57:16 +010093#ifdef RPI3_PRELOADED_DTB_BASE
94 MAP_NS_DTB,
95#endif
Antonio Nino Diazae6779e2017-11-06 14:49:04 +000096#ifdef BL32_BASE
97 MAP_BL32_MEM,
98#endif
99 {0}
100};
101#endif
102
103/*******************************************************************************
Antonio Nino Diaz1f470022018-03-27 09:39:47 +0100104 * Function that sets up the console
105 ******************************************************************************/
Andre Przywara98b5a112020-01-25 00:58:35 +0000106static console_t rpi3_console;
Antonio Nino Diaz1f470022018-03-27 09:39:47 +0100107
Andre Przywara9ba6bb02020-03-10 12:34:56 +0000108static bool rpi3_use_mini_uart(void)
109{
110 return true;
111}
112
Andre Przywara57ccecc2020-03-10 12:33:16 +0000113void rpi3_console_init(void)
Antonio Nino Diaz1f470022018-03-27 09:39:47 +0100114{
Pete Batardc9acd6c2018-11-13 13:14:26 +0000115 int console_scope = CONSOLE_FLAG_BOOT;
Andre Przywara57ccecc2020-03-10 12:33:16 +0000116 int rc;
117
118 if (RPI3_RUNTIME_UART != -1)
119 console_scope |= CONSOLE_FLAG_RUNTIME;
120
Andre Przywara9ba6bb02020-03-10 12:34:56 +0000121 if (rpi3_use_mini_uart())
122 rc = console_16550_register(PLAT_RPI_MINI_UART_BASE,
123 0,
124 PLAT_RPI_UART_BAUDRATE,
125 &rpi3_console);
126 else
127 rc = console_pl011_register(PLAT_RPI_PL011_UART_BASE,
128 PLAT_RPI_PL011_UART_CLOCK,
129 PLAT_RPI_UART_BAUDRATE,
130 &rpi3_console);
Andre Przywara57ccecc2020-03-10 12:33:16 +0000131
Antonio Nino Diaz1f470022018-03-27 09:39:47 +0100132 if (rc == 0) {
133 /*
134 * The crash console doesn't use the multi console API, it uses
135 * the core console functions directly. It is safe to call panic
136 * and let it print debug information.
137 */
138 panic();
139 }
140
Andre Przywara98b5a112020-01-25 00:58:35 +0000141 console_set_scope(&rpi3_console, console_scope);
Antonio Nino Diaz1f470022018-03-27 09:39:47 +0100142}
143
144/*******************************************************************************
Antonio Nino Diazae6779e2017-11-06 14:49:04 +0000145 * Function that sets up the translation tables.
146 ******************************************************************************/
147void rpi3_setup_page_tables(uintptr_t total_base, size_t total_size,
148 uintptr_t code_start, uintptr_t code_limit,
149 uintptr_t rodata_start, uintptr_t rodata_limit
150#if USE_COHERENT_MEM
151 , uintptr_t coh_start, uintptr_t coh_limit
152#endif
153 )
154{
155 /*
156 * Map the Trusted SRAM with appropriate memory attributes.
157 * Subsequent mappings will adjust the attributes for specific regions.
158 */
159 VERBOSE("Trusted SRAM seen by this BL image: %p - %p\n",
160 (void *) total_base, (void *) (total_base + total_size));
161 mmap_add_region(total_base, total_base,
162 total_size,
163 MT_MEMORY | MT_RW | MT_SECURE);
164
165 /* Re-map the code section */
166 VERBOSE("Code region: %p - %p\n",
167 (void *) code_start, (void *) code_limit);
168 mmap_add_region(code_start, code_start,
169 code_limit - code_start,
170 MT_CODE | MT_SECURE);
171
172 /* Re-map the read-only data section */
173 VERBOSE("Read-only data region: %p - %p\n",
174 (void *) rodata_start, (void *) rodata_limit);
175 mmap_add_region(rodata_start, rodata_start,
176 rodata_limit - rodata_start,
177 MT_RO_DATA | MT_SECURE);
178
179#if USE_COHERENT_MEM
180 /* Re-map the coherent memory region */
181 VERBOSE("Coherent region: %p - %p\n",
182 (void *) coh_start, (void *) coh_limit);
183 mmap_add_region(coh_start, coh_start,
184 coh_limit - coh_start,
185 MT_DEVICE | MT_RW | MT_SECURE);
186#endif
187
188 mmap_add(plat_rpi3_mmap);
189
190 init_xlat_tables();
191}
192
193/*******************************************************************************
Antonio Nino Diazae6779e2017-11-06 14:49:04 +0000194 * Gets SPSR for BL32 entry
195 ******************************************************************************/
196uint32_t rpi3_get_spsr_for_bl32_entry(void)
197{
198 /*
199 * The Secure Payload Dispatcher service is responsible for
200 * setting the SPSR prior to entry into the BL32 image.
201 */
202 return 0;
203}
204
205/*******************************************************************************
206 * Gets SPSR for BL33 entry
207 ******************************************************************************/
208uint32_t rpi3_get_spsr_for_bl33_entry(void)
209{
210#if RPI3_BL33_IN_AARCH32
211 INFO("BL33 will boot in Non-secure AArch32 Hypervisor mode\n");
212 return SPSR_MODE32(MODE32_hyp, SPSR_T_ARM, SPSR_E_LITTLE,
213 DISABLE_ALL_EXCEPTIONS);
214#else
215 return SPSR_64(MODE_EL2, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
216#endif
217}
218
219unsigned int plat_get_syscnt_freq2(void)
220{
221 return SYS_COUNTER_FREQ_IN_TICKS;
222}
223
224uint32_t plat_ic_get_pending_interrupt_type(void)
225{
Antonio Nino Diaz9abd78d2018-07-11 21:00:32 +0100226 ERROR("rpi3: Interrupt routed to EL3.\n");
Antonio Nino Diazae6779e2017-11-06 14:49:04 +0000227 return INTR_TYPE_INVAL;
228}
Ying-Chun Liu (PaulLiu)d9f76e62018-06-10 02:00:27 +0800229
Antonio Nino Diaz9abd78d2018-07-11 21:00:32 +0100230uint32_t plat_interrupt_type_to_line(uint32_t type, uint32_t security_state)
Ying-Chun Liu (PaulLiu)d9f76e62018-06-10 02:00:27 +0800231{
Antonio Nino Diaz9abd78d2018-07-11 21:00:32 +0100232 assert((type == INTR_TYPE_S_EL1) || (type == INTR_TYPE_EL3) ||
233 (type == INTR_TYPE_NS));
234
235 assert(sec_state_is_valid(security_state));
236
237 /* Non-secure interrupts are signalled on the IRQ line always. */
238 if (type == INTR_TYPE_NS)
239 return __builtin_ctz(SCR_IRQ_BIT);
240
241 /* Secure interrupts are signalled on the FIQ line always. */
242 return __builtin_ctz(SCR_FIQ_BIT);
Ying-Chun Liu (PaulLiu)d9f76e62018-06-10 02:00:27 +0800243}