blob: 25252666ffa8de24d5822f497ba8615b4ecece19 [file] [log] [blame]
Yatharth Kocharf9a0f162016-09-13 17:07:57 +01001/*
Harrison Mutai91ce7c92023-12-01 15:50:00 +00002 * Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved.
Yatharth Kocharf9a0f162016-09-13 17:07:57 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kocharf9a0f162016-09-13 17:07:57 +01005 */
6
Sathees Balya90950092018-11-15 14:22:30 +00007#include <assert.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <common/bl_common.h>
9#include <common/desc_image_load.h>
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000010#if defined(SPD_spmd)
11#include <plat/arm/common/fconf_arm_sp_getter.h>
12#endif
Antonio Nino Diazbd7b7402019-01-25 14:30:04 +000013#include <plat/arm/common/plat_arm.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000014#include <plat/common/platform.h>
15
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010016#pragma weak plat_flush_next_bl_params
17#pragma weak plat_get_bl_image_load_info
18#pragma weak plat_get_next_bl_params
19
Harrison Mutai91ce7c92023-12-01 15:50:00 +000020#if TRANSFER_LIST
21static bl_params_t next_bl_params_cpy;
22#endif
23bl_params_t *next_bl_params_cpy_ptr;
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010024
25/*******************************************************************************
26 * This function flushes the data structures so that they are visible
27 * in memory for the next BL image.
28 ******************************************************************************/
29void plat_flush_next_bl_params(void)
30{
Sathees Balya90950092018-11-15 14:22:30 +000031 assert(next_bl_params_cpy_ptr != NULL);
32
33 flush_bl_params_desc_args(bl_mem_params_desc_ptr,
34 bl_mem_params_desc_num,
35 next_bl_params_cpy_ptr);
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010036}
37
Balint Dobszay719ba9c2021-03-26 16:23:18 +010038#if defined(SPD_spmd) && BL2_ENABLE_SP_LOAD
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000039/*******************************************************************************
40 * This function appends Secure Partitions to list of loadable images.
41 ******************************************************************************/
Olivier Deprez042db532020-03-19 09:27:11 +010042static void plat_add_sp_images_load_info(struct bl_load_info *load_info)
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000043{
Heyi Guo578408f2021-01-25 21:45:47 +080044 bl_load_info_node_t *curr_node = load_info->head;
45 bl_load_info_node_t *prev_node;
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000046
Heyi Guo578408f2021-01-25 21:45:47 +080047 /* Shortcut for empty SP list */
48 if (sp_mem_params_descs[0].image_id == 0) {
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000049 ERROR("No Secure Partition Image available\n");
50 return;
51 }
52
53 /* Traverse through the bl images list */
54 do {
Heyi Guo578408f2021-01-25 21:45:47 +080055 curr_node = curr_node->next_load_info;
56 } while (curr_node->next_load_info != NULL);
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000057
Heyi Guo578408f2021-01-25 21:45:47 +080058 prev_node = curr_node;
Heyi Guo3dd94932021-01-25 21:45:47 +080059
Heyi Guo578408f2021-01-25 21:45:47 +080060 for (unsigned int index = 0; index < MAX_SP_IDS; index++) {
61 if (sp_mem_params_descs[index].image_id == 0) {
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000062 return;
63 }
Heyi Guo578408f2021-01-25 21:45:47 +080064 curr_node = &sp_mem_params_descs[index].load_node_mem;
65 /* Populate the image information */
66 curr_node->image_id = sp_mem_params_descs[index].image_id;
67 curr_node->image_info = &sp_mem_params_descs[index].image_info;
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000068
Heyi Guo578408f2021-01-25 21:45:47 +080069 prev_node->next_load_info = curr_node;
70 prev_node = curr_node;
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000071 }
Heyi Guo578408f2021-01-25 21:45:47 +080072
73 INFO("Reached Max number of SPs\n");
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000074}
75#endif
76
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010077/*******************************************************************************
78 * This function returns the list of loadable images.
79 ******************************************************************************/
Sandrine Bailleuxb3b6e222018-07-11 12:44:22 +020080struct bl_load_info *plat_get_bl_image_load_info(void)
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010081{
Balint Dobszay719ba9c2021-03-26 16:23:18 +010082#if defined(SPD_spmd) && BL2_ENABLE_SP_LOAD
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000083 bl_load_info_t *bl_load_info;
84
85 bl_load_info = get_bl_load_info_from_mem_params_desc();
86 plat_add_sp_images_load_info(bl_load_info);
87
88 return bl_load_info;
89#else
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010090 return get_bl_load_info_from_mem_params_desc();
Manish Pandey1fa6ecb2020-02-25 11:38:19 +000091#endif
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010092}
93
94/*******************************************************************************
Sathees Balya90950092018-11-15 14:22:30 +000095 * ARM helper function to return the list of executable images.Since the default
96 * descriptors are allocated within BL2 RW memory, this prevents BL31/BL32
97 * overlay of BL2 memory. Hence this function also copies the descriptors to a
98 * pre-allocated memory indicated by ARM_BL2_MEM_DESC_BASE.
Yatharth Kocharf9a0f162016-09-13 17:07:57 +010099 ******************************************************************************/
Sathees Balya90950092018-11-15 14:22:30 +0000100struct bl_params *arm_get_next_bl_params(void)
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100101{
Harrison Mutai91ce7c92023-12-01 15:50:00 +0000102 bl_mem_params_node_t *bl2_mem_params_descs_cpy __unused;
103 const bl_params_t *next_bl_params __unused;
104
105#if TRANSFER_LIST
106 next_bl_params_cpy_ptr = &next_bl_params_cpy;
107 SET_PARAM_HEAD(next_bl_params_cpy_ptr, PARAM_BL_PARAMS, VERSION_2, 0U);
108#else
109 bl2_mem_params_descs_cpy =
110 (bl_mem_params_node_t *)ARM_BL2_MEM_DESC_BASE;
Sathees Balya90950092018-11-15 14:22:30 +0000111
112 next_bl_params_cpy_ptr =
113 (bl_params_t *)(ARM_BL2_MEM_DESC_BASE +
114 (bl_mem_params_desc_num * sizeof(bl_mem_params_node_t)));
115
116 /*
117 * Copy the memory descriptors to ARM_BL2_MEM_DESC_BASE area.
118 */
119 (void) memcpy(bl2_mem_params_descs_cpy, bl_mem_params_desc_ptr,
120 (bl_mem_params_desc_num * sizeof(bl_mem_params_node_t)));
Soby Mathew96a1c6b2018-01-15 14:45:33 +0000121
Sathees Balya90950092018-11-15 14:22:30 +0000122 /*
123 * Modify the global 'bl_mem_params_desc_ptr' to point to the
124 * copied location.
125 */
126 bl_mem_params_desc_ptr = bl2_mem_params_descs_cpy;
127
128 next_bl_params = get_next_bl_params_from_mem_params_desc();
129 assert(next_bl_params != NULL);
130
131 /*
132 * Copy 'next_bl_params' to the reserved location after the copied
133 * memory descriptors.
134 */
135 (void) memcpy(next_bl_params_cpy_ptr, next_bl_params,
136 (sizeof(bl_params_t)));
137
138 populate_next_bl_params_config(next_bl_params_cpy_ptr);
Harrison Mutai91ce7c92023-12-01 15:50:00 +0000139#endif /* TRANSFER_LIST */
Sathees Balya90950092018-11-15 14:22:30 +0000140
141 return next_bl_params_cpy_ptr;
Yatharth Kocharf9a0f162016-09-13 17:07:57 +0100142}
Sathees Balya90950092018-11-15 14:22:30 +0000143
144/*******************************************************************************
145 * This function returns the list of executable images
146 ******************************************************************************/
147struct bl_params *plat_get_next_bl_params(void)
148{
149 return arm_get_next_bl_params();
150}
151