Antonio Nino Diaz | 7298c1f | 2018-12-05 00:09:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <assert.h> |
| 8 | #include <common/bl_common.h> |
| 9 | #include <drivers/arm/gicv2.h> |
| 10 | #include <common/interrupt_props.h> |
| 11 | #include <plat/common/platform.h> |
| 12 | #include <platform_def.h> |
| 13 | #include <lib/xlat_tables/xlat_mmu_helpers.h> |
| 14 | |
| 15 | #include "gxl_private.h" |
| 16 | |
| 17 | /* |
| 18 | * Placeholder variables for copying the arguments that have been passed to |
| 19 | * BL31 from BL2. |
| 20 | */ |
| 21 | static entry_point_info_t bl33_image_ep_info; |
Remi Pommarel | 1a13b22 | 2019-03-28 20:55:13 +0100 | [diff] [blame] | 22 | static image_info_t bl30_image_info; |
| 23 | static image_info_t bl301_image_info; |
Antonio Nino Diaz | 7298c1f | 2018-12-05 00:09:30 +0000 | [diff] [blame] | 24 | |
| 25 | /******************************************************************************* |
| 26 | * Return a pointer to the 'entry_point_info' structure of the next image for |
| 27 | * the security state specified. BL33 corresponds to the non-secure image type |
| 28 | * while BL32 corresponds to the secure image type. A NULL pointer is returned |
| 29 | * if the image does not exist. |
| 30 | ******************************************************************************/ |
| 31 | entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type) |
| 32 | { |
| 33 | entry_point_info_t *next_image_info; |
| 34 | |
| 35 | assert(type == NON_SECURE); |
| 36 | |
| 37 | next_image_info = &bl33_image_ep_info; |
| 38 | |
| 39 | /* None of the images can have 0x0 as the entrypoint. */ |
| 40 | if (next_image_info->pc != 0U) { |
| 41 | return next_image_info; |
| 42 | } else { |
| 43 | return NULL; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | /******************************************************************************* |
| 48 | * Perform any BL31 early platform setup. Here is an opportunity to copy |
| 49 | * parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before |
| 50 | * they are lost (potentially). This needs to be done before the MMU is |
| 51 | * initialized so that the memory layout can be used while creating page |
| 52 | * tables. BL2 has flushed this information to memory, so we are guaranteed |
| 53 | * to pick up good data. |
| 54 | ******************************************************************************/ |
Remi Pommarel | 1a13b22 | 2019-03-28 20:55:13 +0100 | [diff] [blame] | 55 | struct gxl_bl31_param { |
Antonio Nino Diaz | 7298c1f | 2018-12-05 00:09:30 +0000 | [diff] [blame] | 56 | param_header_t h; |
| 57 | image_info_t *bl31_image_info; |
| 58 | entry_point_info_t *bl32_ep_info; |
| 59 | image_info_t *bl32_image_info; |
| 60 | entry_point_info_t *bl33_ep_info; |
| 61 | image_info_t *bl33_image_info; |
Remi Pommarel | 1a13b22 | 2019-03-28 20:55:13 +0100 | [diff] [blame] | 62 | image_info_t *scp_image_info[]; |
Antonio Nino Diaz | 7298c1f | 2018-12-05 00:09:30 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1, |
| 66 | u_register_t arg2, u_register_t arg3) |
| 67 | { |
Remi Pommarel | 1a13b22 | 2019-03-28 20:55:13 +0100 | [diff] [blame] | 68 | struct gxl_bl31_param *from_bl2; |
Antonio Nino Diaz | 7298c1f | 2018-12-05 00:09:30 +0000 | [diff] [blame] | 69 | |
| 70 | /* Initialize the console to provide early debug support */ |
| 71 | gxbb_console_init(); |
| 72 | |
| 73 | /* |
| 74 | * In debug builds, we pass a special value in 'arg1' to verify platform |
| 75 | * parameters from BL2 to BL31. In release builds it's not used. |
| 76 | */ |
| 77 | assert(arg1 == GXBB_BL31_PLAT_PARAM_VAL); |
| 78 | |
| 79 | /* Check that params passed from BL2 are not NULL. */ |
Remi Pommarel | 1a13b22 | 2019-03-28 20:55:13 +0100 | [diff] [blame] | 80 | from_bl2 = (struct gxl_bl31_param *) arg0; |
Antonio Nino Diaz | 7298c1f | 2018-12-05 00:09:30 +0000 | [diff] [blame] | 81 | |
| 82 | /* Check params passed from BL2 are not NULL. */ |
| 83 | assert(from_bl2 != NULL); |
| 84 | assert(from_bl2->h.type == PARAM_BL31); |
| 85 | assert(from_bl2->h.version >= VERSION_1); |
| 86 | |
| 87 | /* |
| 88 | * Copy BL33 entry point information. It is stored in Secure RAM, in |
| 89 | * BL2's address space. |
| 90 | */ |
| 91 | bl33_image_ep_info = *from_bl2->bl33_ep_info; |
| 92 | |
| 93 | if (bl33_image_ep_info.pc == 0U) { |
| 94 | ERROR("BL31: BL33 entrypoint not obtained from BL2\n"); |
| 95 | panic(); |
| 96 | } |
Remi Pommarel | 1a13b22 | 2019-03-28 20:55:13 +0100 | [diff] [blame] | 97 | |
| 98 | bl30_image_info = *from_bl2->scp_image_info[0]; |
| 99 | bl301_image_info = *from_bl2->scp_image_info[1]; |
Antonio Nino Diaz | 7298c1f | 2018-12-05 00:09:30 +0000 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | void bl31_plat_arch_setup(void) |
| 103 | { |
| 104 | gxbb_setup_page_tables(); |
| 105 | |
| 106 | enable_mmu_el3(0); |
| 107 | } |
| 108 | |
Remi Pommarel | 1a13b22 | 2019-03-28 20:55:13 +0100 | [diff] [blame] | 109 | static inline void gxl_scp_boot(void) |
| 110 | { |
| 111 | scpi_upload_scp_fw(bl30_image_info.image_base, |
| 112 | bl30_image_info.image_size, 0); |
| 113 | scpi_upload_scp_fw(bl301_image_info.image_base, |
| 114 | bl301_image_info.image_size, 1); |
| 115 | } |
| 116 | |
Antonio Nino Diaz | 7298c1f | 2018-12-05 00:09:30 +0000 | [diff] [blame] | 117 | /******************************************************************************* |
| 118 | * GICv2 driver setup information |
| 119 | ******************************************************************************/ |
| 120 | static const interrupt_prop_t gxbb_interrupt_props[] = { |
| 121 | INTR_PROP_DESC(IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, |
| 122 | GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL), |
| 123 | INTR_PROP_DESC(IRQ_SEC_SGI_0, GIC_HIGHEST_SEC_PRIORITY, |
| 124 | GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL), |
| 125 | INTR_PROP_DESC(IRQ_SEC_SGI_1, GIC_HIGHEST_SEC_PRIORITY, |
| 126 | GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL), |
| 127 | INTR_PROP_DESC(IRQ_SEC_SGI_2, GIC_HIGHEST_SEC_PRIORITY, |
| 128 | GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL), |
| 129 | INTR_PROP_DESC(IRQ_SEC_SGI_3, GIC_HIGHEST_SEC_PRIORITY, |
| 130 | GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL), |
| 131 | INTR_PROP_DESC(IRQ_SEC_SGI_4, GIC_HIGHEST_SEC_PRIORITY, |
| 132 | GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL), |
| 133 | INTR_PROP_DESC(IRQ_SEC_SGI_5, GIC_HIGHEST_SEC_PRIORITY, |
| 134 | GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL), |
| 135 | INTR_PROP_DESC(IRQ_SEC_SGI_6, GIC_HIGHEST_SEC_PRIORITY, |
| 136 | GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL), |
| 137 | INTR_PROP_DESC(IRQ_SEC_SGI_7, GIC_HIGHEST_SEC_PRIORITY, |
| 138 | GICV2_INTR_GROUP0, GIC_INTR_CFG_LEVEL), |
| 139 | }; |
| 140 | |
| 141 | static const gicv2_driver_data_t gxbb_gic_data = { |
| 142 | .gicd_base = GXBB_GICD_BASE, |
| 143 | .gicc_base = GXBB_GICC_BASE, |
| 144 | .interrupt_props = gxbb_interrupt_props, |
| 145 | .interrupt_props_num = ARRAY_SIZE(gxbb_interrupt_props), |
| 146 | }; |
| 147 | |
| 148 | void bl31_platform_setup(void) |
| 149 | { |
| 150 | mhu_secure_init(); |
| 151 | |
| 152 | gicv2_driver_init(&gxbb_gic_data); |
| 153 | gicv2_distif_init(); |
| 154 | gicv2_pcpu_distif_init(); |
| 155 | gicv2_cpuif_enable(); |
| 156 | |
Remi Pommarel | 1a13b22 | 2019-03-28 20:55:13 +0100 | [diff] [blame] | 157 | gxl_scp_boot(); |
| 158 | |
| 159 | gxbb_thermal_unknown(); |
Antonio Nino Diaz | 7298c1f | 2018-12-05 00:09:30 +0000 | [diff] [blame] | 160 | } |