blob: ca7d214a16bacadf411cb4a3a4ff4cbe1abae97b [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
7#include <arch.h>
8#include <arch_helpers.h>
9#include <assert.h>
10#include <bl_common.h>
11#include <debug.h>
Nishanth Menonce976042016-10-14 01:13:44 +000012#include <k3_console.h>
Nishanth Menon3ed1b282016-10-14 01:13:45 +000013#include <plat_arm.h>
Nishanth Menon0192f892016-10-14 01:13:34 +000014#include <platform_def.h>
Nishanth Menonf97ad372016-10-14 01:13:49 +000015#include <k3_gicv3.h>
Nishanth Menon0192f892016-10-14 01:13:34 +000016#include <string.h>
17
Nishanth Menon3ed1b282016-10-14 01:13:45 +000018/* Table of regions to map using the MMU */
19const mmap_region_t plat_arm_mmap[] = {
20 MAP_REGION_FLAT(SHARED_RAM_BASE, SHARED_RAM_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
Nishanth Menonce976042016-10-14 01:13:44 +000021 MAP_REGION_FLAT(K3_USART_BASE_ADDRESS, K3_USART_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
Nishanth Menonf97ad372016-10-14 01:13:49 +000022 MAP_REGION_FLAT(K3_GICD_BASE, K3_GICD_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
23 MAP_REGION_FLAT(K3_GICR_BASE, K3_GICR_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
Nishanth Menon3ed1b282016-10-14 01:13:45 +000024 { /* sentinel */ }
25};
26
Benjamin Faire62e5772016-10-14 01:13:52 +000027/*
28 * Placeholder variables for maintaining information about the next image(s)
29 */
30static entry_point_info_t bl32_image_ep_info;
31static entry_point_info_t bl33_image_ep_info;
32
33/*******************************************************************************
34 * Gets SPSR for BL33 entry
35 ******************************************************************************/
36static uint32_t k3_get_spsr_for_bl33_entry(void)
37{
38 unsigned long el_status;
39 unsigned int mode;
40 uint32_t spsr;
41
42 /* Figure out what mode we enter the non-secure world in */
43 el_status = read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL2_SHIFT;
44 el_status &= ID_AA64PFR0_ELX_MASK;
45
46 mode = (el_status) ? MODE_EL2 : MODE_EL1;
47
48 spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
49 return spsr;
50}
51
Nishanth Menon0192f892016-10-14 01:13:34 +000052/*******************************************************************************
53 * Perform any BL3-1 early platform setup, such as console init and deciding on
54 * memory layout.
55 ******************************************************************************/
56void bl31_early_platform_setup(bl31_params_t *from_bl2,
57 void *plat_params_from_bl2)
58{
59 /* There are no parameters from BL2 if BL31 is a reset vector */
60 assert(from_bl2 == NULL);
61 assert(plat_params_from_bl2 == NULL);
Benjamin Faire62e5772016-10-14 01:13:52 +000062
Nishanth Menonce976042016-10-14 01:13:44 +000063 bl31_console_setup();
64
Benjamin Faire62e5772016-10-14 01:13:52 +000065#ifdef BL32_BASE
66 /* Populate entry point information for BL32 */
67 SET_PARAM_HEAD(&bl32_image_ep_info, PARAM_EP, VERSION_1, 0);
68 bl32_image_ep_info.pc = BL32_BASE;
69 bl32_image_ep_info.spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
70 DISABLE_ALL_EXCEPTIONS);
71 SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
72#endif
73
74 /* Populate entry point information for BL33 */
75 SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
76 bl33_image_ep_info.pc = PRELOADED_BL33_BASE;
77 bl33_image_ep_info.spsr = k3_get_spsr_for_bl33_entry();
78 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
79
80#ifdef K3_HW_CONFIG_BASE
81 /*
82 * According to the file ``Documentation/arm64/booting.txt`` of the
83 * Linux kernel tree, Linux expects the physical address of the device
84 * tree blob (DTB) in x0, while x1-x3 are reserved for future use and
85 * must be 0.
86 */
87 bl33_image_ep_info.args.arg0 = (u_register_t)K3_HW_CONFIG_BASE;
88 bl33_image_ep_info.args.arg1 = 0U;
89 bl33_image_ep_info.args.arg2 = 0U;
90 bl33_image_ep_info.args.arg3 = 0U;
91#endif
Nishanth Menon0192f892016-10-14 01:13:34 +000092}
93
94void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
95 u_register_t arg2, u_register_t arg3)
96{
97 bl31_early_platform_setup((void *)arg0, (void *)arg1);
98}
99
100void bl31_plat_arch_setup(void)
101{
Nishanth Menon3ed1b282016-10-14 01:13:45 +0000102 arm_setup_page_tables(BL31_BASE,
103 BL31_END - BL31_BASE,
104 BL_CODE_BASE,
105 BL_CODE_END,
106 BL_RO_DATA_BASE,
107 BL_RO_DATA_END);
108 enable_mmu_el3(0);
Nishanth Menon0192f892016-10-14 01:13:34 +0000109}
110
111void bl31_platform_setup(void)
112{
Nishanth Menonf97ad372016-10-14 01:13:49 +0000113 k3_gic_driver_init(K3_GICD_BASE, K3_GICR_BASE);
114 k3_gic_init();
Nishanth Menon0192f892016-10-14 01:13:34 +0000115}
116
117void platform_mem_init(void)
118{
119 /* Do nothing for now... */
120}
121
Nishanth Menon1f0b51b2016-10-14 01:13:48 +0000122unsigned int plat_get_syscnt_freq2(void)
123{
124 return SYS_COUNTER_FREQ_IN_TICKS;
125}
126
Nishanth Menon0192f892016-10-14 01:13:34 +0000127/*
128 * Empty function to prevent the console from being uninitialized after BL33 is
129 * started and allow us to see messages from BL31.
130 */
131void bl31_plat_runtime_setup(void)
132{
133}
134
135/*******************************************************************************
136 * Return a pointer to the 'entry_point_info' structure of the next image
137 * for the security state specified. BL3-3 corresponds to the non-secure
138 * image type while BL3-2 corresponds to the secure image type. A NULL
139 * pointer is returned if the image does not exist.
140 ******************************************************************************/
141entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
142{
Benjamin Faire62e5772016-10-14 01:13:52 +0000143 entry_point_info_t *next_image_info;
144
145 assert(sec_state_is_valid(type));
146 next_image_info = (type == NON_SECURE) ? &bl33_image_ep_info :
147 &bl32_image_ep_info;
148 /*
149 * None of the images on the ARM development platforms can have 0x0
150 * as the entrypoint
151 */
152 if (next_image_info->pc)
153 return next_image_info;
154
155 NOTICE("Requested nonexistent image\n");
Nishanth Menon0192f892016-10-14 01:13:34 +0000156 return NULL;
157}