blob: 3fa11b2318ec00c73a6707ced936aab8b0313942 [file] [log] [blame]
Nishanth Menon0192f892016-10-14 01:13:34 +00001/*
2 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <assert.h>
8#include <string.h>
9
10#include <platform_def.h>
11
Nishanth Menon0192f892016-10-14 01:13:34 +000012#include <arch.h>
13#include <arch_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014#include <common/bl_common.h>
15#include <common/debug.h>
16#include <lib/xlat_tables/xlat_tables_v2.h>
17
Nishanth Menonce976042016-10-14 01:13:44 +000018#include <k3_console.h>
Nishanth Menonf97ad372016-10-14 01:13:49 +000019#include <k3_gicv3.h>
Andrew F. Davisa513b2a2018-05-04 19:06:09 +000020#include <ti_sci.h>
Nishanth Menon0192f892016-10-14 01:13:34 +000021
Nishanth Menon3ed1b282016-10-14 01:13:45 +000022/* Table of regions to map using the MMU */
Andrew F. Davis02de6d92018-10-29 10:41:28 -050023const mmap_region_t plat_k3_mmap[] = {
Nishanth Menon3ed1b282016-10-14 01:13:45 +000024 MAP_REGION_FLAT(SHARED_RAM_BASE, SHARED_RAM_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
Nishanth Menonce976042016-10-14 01:13:44 +000025 MAP_REGION_FLAT(K3_USART_BASE_ADDRESS, K3_USART_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
Nishanth Menonf97ad372016-10-14 01:13:49 +000026 MAP_REGION_FLAT(K3_GICD_BASE, K3_GICD_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
27 MAP_REGION_FLAT(K3_GICR_BASE, K3_GICR_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
Andrew F. Davis537d3ff2018-05-04 19:06:08 +000028 MAP_REGION_FLAT(SEC_PROXY_RT_BASE, SEC_PROXY_RT_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
29 MAP_REGION_FLAT(SEC_PROXY_SCFG_BASE, SEC_PROXY_SCFG_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
30 MAP_REGION_FLAT(SEC_PROXY_DATA_BASE, SEC_PROXY_DATA_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
Nishanth Menon3ed1b282016-10-14 01:13:45 +000031 { /* sentinel */ }
32};
33
Benjamin Faire62e5772016-10-14 01:13:52 +000034/*
35 * Placeholder variables for maintaining information about the next image(s)
36 */
37static entry_point_info_t bl32_image_ep_info;
38static entry_point_info_t bl33_image_ep_info;
39
40/*******************************************************************************
41 * Gets SPSR for BL33 entry
42 ******************************************************************************/
43static uint32_t k3_get_spsr_for_bl33_entry(void)
44{
45 unsigned long el_status;
46 unsigned int mode;
47 uint32_t spsr;
48
49 /* Figure out what mode we enter the non-secure world in */
50 el_status = read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL2_SHIFT;
51 el_status &= ID_AA64PFR0_ELX_MASK;
52
53 mode = (el_status) ? MODE_EL2 : MODE_EL1;
54
55 spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
56 return spsr;
57}
58
Nishanth Menon0192f892016-10-14 01:13:34 +000059/*******************************************************************************
60 * Perform any BL3-1 early platform setup, such as console init and deciding on
61 * memory layout.
62 ******************************************************************************/
Antonio Nino Diaz27187bc2018-09-24 17:16:45 +010063void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
64 u_register_t arg2, u_register_t arg3)
Nishanth Menon0192f892016-10-14 01:13:34 +000065{
66 /* There are no parameters from BL2 if BL31 is a reset vector */
Antonio Nino Diaz27187bc2018-09-24 17:16:45 +010067 assert(arg0 == 0U);
68 assert(arg1 == 0U);
Benjamin Faire62e5772016-10-14 01:13:52 +000069
Nishanth Menonce976042016-10-14 01:13:44 +000070 bl31_console_setup();
71
Benjamin Faire62e5772016-10-14 01:13:52 +000072#ifdef BL32_BASE
73 /* Populate entry point information for BL32 */
74 SET_PARAM_HEAD(&bl32_image_ep_info, PARAM_EP, VERSION_1, 0);
75 bl32_image_ep_info.pc = BL32_BASE;
76 bl32_image_ep_info.spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
77 DISABLE_ALL_EXCEPTIONS);
78 SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
79#endif
80
81 /* Populate entry point information for BL33 */
82 SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
83 bl33_image_ep_info.pc = PRELOADED_BL33_BASE;
84 bl33_image_ep_info.spsr = k3_get_spsr_for_bl33_entry();
85 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
86
87#ifdef K3_HW_CONFIG_BASE
88 /*
89 * According to the file ``Documentation/arm64/booting.txt`` of the
90 * Linux kernel tree, Linux expects the physical address of the device
91 * tree blob (DTB) in x0, while x1-x3 are reserved for future use and
92 * must be 0.
93 */
94 bl33_image_ep_info.args.arg0 = (u_register_t)K3_HW_CONFIG_BASE;
95 bl33_image_ep_info.args.arg1 = 0U;
96 bl33_image_ep_info.args.arg2 = 0U;
97 bl33_image_ep_info.args.arg3 = 0U;
98#endif
Nishanth Menon0192f892016-10-14 01:13:34 +000099}
100
Nishanth Menon0192f892016-10-14 01:13:34 +0000101void bl31_plat_arch_setup(void)
102{
Daniel Boulby45a2c9e2018-07-06 16:54:44 +0100103 const mmap_region_t bl_regions[] = {
104 MAP_REGION_FLAT(BL31_BASE, BL31_END - BL31_BASE,
105 MT_MEMORY | MT_RW | MT_SECURE),
106 MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
107 MT_CODE | MT_SECURE),
108 MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_END,
109 MT_RO_DATA | MT_SECURE),
110 {0}
111 };
112
Andrew F. Davis02de6d92018-10-29 10:41:28 -0500113 setup_page_tables(bl_regions, plat_k3_mmap);
Nishanth Menon3ed1b282016-10-14 01:13:45 +0000114 enable_mmu_el3(0);
Nishanth Menon0192f892016-10-14 01:13:34 +0000115}
116
117void bl31_platform_setup(void)
118{
Nishanth Menonf97ad372016-10-14 01:13:49 +0000119 k3_gic_driver_init(K3_GICD_BASE, K3_GICR_BASE);
120 k3_gic_init();
Andrew F. Davisa513b2a2018-05-04 19:06:09 +0000121
122 ti_sci_init();
Nishanth Menon0192f892016-10-14 01:13:34 +0000123}
124
125void platform_mem_init(void)
126{
127 /* Do nothing for now... */
128}
129
Nishanth Menon1f0b51b2016-10-14 01:13:48 +0000130unsigned int plat_get_syscnt_freq2(void)
131{
132 return SYS_COUNTER_FREQ_IN_TICKS;
133}
134
Nishanth Menon0192f892016-10-14 01:13:34 +0000135/*
136 * Empty function to prevent the console from being uninitialized after BL33 is
137 * started and allow us to see messages from BL31.
138 */
139void bl31_plat_runtime_setup(void)
140{
141}
142
143/*******************************************************************************
144 * Return a pointer to the 'entry_point_info' structure of the next image
145 * for the security state specified. BL3-3 corresponds to the non-secure
146 * image type while BL3-2 corresponds to the secure image type. A NULL
147 * pointer is returned if the image does not exist.
148 ******************************************************************************/
149entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
150{
Benjamin Faire62e5772016-10-14 01:13:52 +0000151 entry_point_info_t *next_image_info;
152
153 assert(sec_state_is_valid(type));
154 next_image_info = (type == NON_SECURE) ? &bl33_image_ep_info :
155 &bl32_image_ep_info;
156 /*
157 * None of the images on the ARM development platforms can have 0x0
158 * as the entrypoint
159 */
160 if (next_image_info->pc)
161 return next_image_info;
162
163 NOTICE("Requested nonexistent image\n");
Nishanth Menon0192f892016-10-14 01:13:34 +0000164 return NULL;
165}