Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 1 | /* |
| 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 Menon | ce97604 | 2016-10-14 01:13:44 +0000 | [diff] [blame] | 12 | #include <k3_console.h> |
Nishanth Menon | 3ed1b28 | 2016-10-14 01:13:45 +0000 | [diff] [blame] | 13 | #include <plat_arm.h> |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 14 | #include <platform_def.h> |
Nishanth Menon | f97ad37 | 2016-10-14 01:13:49 +0000 | [diff] [blame] | 15 | #include <k3_gicv3.h> |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 16 | #include <string.h> |
Andrew F. Davis | a513b2a | 2018-05-04 19:06:09 +0000 | [diff] [blame] | 17 | #include <ti_sci.h> |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 18 | |
Nishanth Menon | 3ed1b28 | 2016-10-14 01:13:45 +0000 | [diff] [blame] | 19 | /* Table of regions to map using the MMU */ |
| 20 | const mmap_region_t plat_arm_mmap[] = { |
| 21 | MAP_REGION_FLAT(SHARED_RAM_BASE, SHARED_RAM_SIZE, MT_DEVICE | MT_RW | MT_SECURE), |
Nishanth Menon | ce97604 | 2016-10-14 01:13:44 +0000 | [diff] [blame] | 22 | MAP_REGION_FLAT(K3_USART_BASE_ADDRESS, K3_USART_SIZE, MT_DEVICE | MT_RW | MT_SECURE), |
Nishanth Menon | f97ad37 | 2016-10-14 01:13:49 +0000 | [diff] [blame] | 23 | MAP_REGION_FLAT(K3_GICD_BASE, K3_GICD_SIZE, MT_DEVICE | MT_RW | MT_SECURE), |
| 24 | MAP_REGION_FLAT(K3_GICR_BASE, K3_GICR_SIZE, MT_DEVICE | MT_RW | MT_SECURE), |
Andrew F. Davis | 537d3ff | 2018-05-04 19:06:08 +0000 | [diff] [blame] | 25 | MAP_REGION_FLAT(SEC_PROXY_RT_BASE, SEC_PROXY_RT_SIZE, MT_DEVICE | MT_RW | MT_SECURE), |
| 26 | MAP_REGION_FLAT(SEC_PROXY_SCFG_BASE, SEC_PROXY_SCFG_SIZE, MT_DEVICE | MT_RW | MT_SECURE), |
| 27 | MAP_REGION_FLAT(SEC_PROXY_DATA_BASE, SEC_PROXY_DATA_SIZE, MT_DEVICE | MT_RW | MT_SECURE), |
Nishanth Menon | 3ed1b28 | 2016-10-14 01:13:45 +0000 | [diff] [blame] | 28 | { /* sentinel */ } |
| 29 | }; |
| 30 | |
Benjamin Fair | e62e577 | 2016-10-14 01:13:52 +0000 | [diff] [blame] | 31 | /* |
| 32 | * Placeholder variables for maintaining information about the next image(s) |
| 33 | */ |
| 34 | static entry_point_info_t bl32_image_ep_info; |
| 35 | static entry_point_info_t bl33_image_ep_info; |
| 36 | |
| 37 | /******************************************************************************* |
| 38 | * Gets SPSR for BL33 entry |
| 39 | ******************************************************************************/ |
| 40 | static uint32_t k3_get_spsr_for_bl33_entry(void) |
| 41 | { |
| 42 | unsigned long el_status; |
| 43 | unsigned int mode; |
| 44 | uint32_t spsr; |
| 45 | |
| 46 | /* Figure out what mode we enter the non-secure world in */ |
| 47 | el_status = read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL2_SHIFT; |
| 48 | el_status &= ID_AA64PFR0_ELX_MASK; |
| 49 | |
| 50 | mode = (el_status) ? MODE_EL2 : MODE_EL1; |
| 51 | |
| 52 | spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS); |
| 53 | return spsr; |
| 54 | } |
| 55 | |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 56 | /******************************************************************************* |
| 57 | * Perform any BL3-1 early platform setup, such as console init and deciding on |
| 58 | * memory layout. |
| 59 | ******************************************************************************/ |
| 60 | void bl31_early_platform_setup(bl31_params_t *from_bl2, |
| 61 | void *plat_params_from_bl2) |
| 62 | { |
| 63 | /* There are no parameters from BL2 if BL31 is a reset vector */ |
| 64 | assert(from_bl2 == NULL); |
| 65 | assert(plat_params_from_bl2 == NULL); |
Benjamin Fair | e62e577 | 2016-10-14 01:13:52 +0000 | [diff] [blame] | 66 | |
Nishanth Menon | ce97604 | 2016-10-14 01:13:44 +0000 | [diff] [blame] | 67 | bl31_console_setup(); |
| 68 | |
Benjamin Fair | e62e577 | 2016-10-14 01:13:52 +0000 | [diff] [blame] | 69 | #ifdef BL32_BASE |
| 70 | /* Populate entry point information for BL32 */ |
| 71 | SET_PARAM_HEAD(&bl32_image_ep_info, PARAM_EP, VERSION_1, 0); |
| 72 | bl32_image_ep_info.pc = BL32_BASE; |
| 73 | bl32_image_ep_info.spsr = SPSR_64(MODE_EL1, MODE_SP_ELX, |
| 74 | DISABLE_ALL_EXCEPTIONS); |
| 75 | SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE); |
| 76 | #endif |
| 77 | |
| 78 | /* Populate entry point information for BL33 */ |
| 79 | SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0); |
| 80 | bl33_image_ep_info.pc = PRELOADED_BL33_BASE; |
| 81 | bl33_image_ep_info.spsr = k3_get_spsr_for_bl33_entry(); |
| 82 | SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE); |
| 83 | |
| 84 | #ifdef K3_HW_CONFIG_BASE |
| 85 | /* |
| 86 | * According to the file ``Documentation/arm64/booting.txt`` of the |
| 87 | * Linux kernel tree, Linux expects the physical address of the device |
| 88 | * tree blob (DTB) in x0, while x1-x3 are reserved for future use and |
| 89 | * must be 0. |
| 90 | */ |
| 91 | bl33_image_ep_info.args.arg0 = (u_register_t)K3_HW_CONFIG_BASE; |
| 92 | bl33_image_ep_info.args.arg1 = 0U; |
| 93 | bl33_image_ep_info.args.arg2 = 0U; |
| 94 | bl33_image_ep_info.args.arg3 = 0U; |
| 95 | #endif |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1, |
| 99 | u_register_t arg2, u_register_t arg3) |
| 100 | { |
| 101 | bl31_early_platform_setup((void *)arg0, (void *)arg1); |
| 102 | } |
| 103 | |
| 104 | void bl31_plat_arch_setup(void) |
| 105 | { |
Daniel Boulby | 45a2c9e | 2018-07-06 16:54:44 +0100 | [diff] [blame] | 106 | |
| 107 | const mmap_region_t bl_regions[] = { |
| 108 | MAP_REGION_FLAT(BL31_BASE, BL31_END - BL31_BASE, |
| 109 | MT_MEMORY | MT_RW | MT_SECURE), |
| 110 | MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE, |
| 111 | MT_CODE | MT_SECURE), |
| 112 | MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_END, |
| 113 | MT_RO_DATA | MT_SECURE), |
| 114 | {0} |
| 115 | }; |
| 116 | |
| 117 | arm_setup_page_tables(bl_regions, plat_arm_get_mmap()); |
Nishanth Menon | 3ed1b28 | 2016-10-14 01:13:45 +0000 | [diff] [blame] | 118 | enable_mmu_el3(0); |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | void bl31_platform_setup(void) |
| 122 | { |
Nishanth Menon | f97ad37 | 2016-10-14 01:13:49 +0000 | [diff] [blame] | 123 | k3_gic_driver_init(K3_GICD_BASE, K3_GICR_BASE); |
| 124 | k3_gic_init(); |
Andrew F. Davis | a513b2a | 2018-05-04 19:06:09 +0000 | [diff] [blame] | 125 | |
| 126 | ti_sci_init(); |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | void platform_mem_init(void) |
| 130 | { |
| 131 | /* Do nothing for now... */ |
| 132 | } |
| 133 | |
Nishanth Menon | 1f0b51b | 2016-10-14 01:13:48 +0000 | [diff] [blame] | 134 | unsigned int plat_get_syscnt_freq2(void) |
| 135 | { |
| 136 | return SYS_COUNTER_FREQ_IN_TICKS; |
| 137 | } |
| 138 | |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 139 | /* |
| 140 | * Empty function to prevent the console from being uninitialized after BL33 is |
| 141 | * started and allow us to see messages from BL31. |
| 142 | */ |
| 143 | void bl31_plat_runtime_setup(void) |
| 144 | { |
| 145 | } |
| 146 | |
| 147 | /******************************************************************************* |
| 148 | * Return a pointer to the 'entry_point_info' structure of the next image |
| 149 | * for the security state specified. BL3-3 corresponds to the non-secure |
| 150 | * image type while BL3-2 corresponds to the secure image type. A NULL |
| 151 | * pointer is returned if the image does not exist. |
| 152 | ******************************************************************************/ |
| 153 | entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type) |
| 154 | { |
Benjamin Fair | e62e577 | 2016-10-14 01:13:52 +0000 | [diff] [blame] | 155 | entry_point_info_t *next_image_info; |
| 156 | |
| 157 | assert(sec_state_is_valid(type)); |
| 158 | next_image_info = (type == NON_SECURE) ? &bl33_image_ep_info : |
| 159 | &bl32_image_ep_info; |
| 160 | /* |
| 161 | * None of the images on the ARM development platforms can have 0x0 |
| 162 | * as the entrypoint |
| 163 | */ |
| 164 | if (next_image_info->pc) |
| 165 | return next_image_info; |
| 166 | |
| 167 | NOTICE("Requested nonexistent image\n"); |
Nishanth Menon | 0192f89 | 2016-10-14 01:13:34 +0000 | [diff] [blame] | 168 | return NULL; |
| 169 | } |