blob: 25252666ffa8de24d5822f497ba8615b4ecece19 [file] [log] [blame]
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +01001/*
Harrison Mutaia5566f62023-12-01 15:50:00 +00002 * Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved.
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +01005 */
6
Sathees Balya5b8d50e2018-11-15 14:22:30 +00007#include <assert.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +00008#include <common/bl_common.h>
9#include <common/desc_image_load.h>
Manish Pandeycb3b5342020-02-25 11:38:19 +000010#if defined(SPD_spmd)
11#include <plat/arm/common/fconf_arm_sp_getter.h>
12#endif
Antonio Nino Diazbd9344f2019-01-25 14:30:04 +000013#include <plat/arm/common/plat_arm.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000014#include <plat/common/platform.h>
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +010015
Yatharth Kochara8aa7fe2016-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 Mutaia5566f62023-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 Kochara8aa7fe2016-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 Balya5b8d50e2018-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 Kochara8aa7fe2016-09-13 17:07:57 +010036}
37
Balint Dobszay46789a72021-03-26 16:23:18 +010038#if defined(SPD_spmd) && BL2_ENABLE_SP_LOAD
Manish Pandeycb3b5342020-02-25 11:38:19 +000039/*******************************************************************************
40 * This function appends Secure Partitions to list of loadable images.
41 ******************************************************************************/
Olivier Deprezc33ff192020-03-19 09:27:11 +010042static void plat_add_sp_images_load_info(struct bl_load_info *load_info)
Manish Pandeycb3b5342020-02-25 11:38:19 +000043{
Heyi Guoabe6ce12021-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 Pandeycb3b5342020-02-25 11:38:19 +000046
Heyi Guoabe6ce12021-01-25 21:45:47 +080047 /* Shortcut for empty SP list */
48 if (sp_mem_params_descs[0].image_id == 0) {
Manish Pandeycb3b5342020-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 Guoabe6ce12021-01-25 21:45:47 +080055 curr_node = curr_node->next_load_info;
56 } while (curr_node->next_load_info != NULL);
Manish Pandeycb3b5342020-02-25 11:38:19 +000057
Heyi Guoabe6ce12021-01-25 21:45:47 +080058 prev_node = curr_node;
Heyi Guo47fe4c42021-01-25 21:45:47 +080059
Heyi Guoabe6ce12021-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) {
62 return;
63 }
64 curr_node = &sp_mem_params_descs[index].load_node_mem;
Manish Pandeycb3b5342020-02-25 11:38:19 +000065 /* Populate the image information */
Heyi Guoabe6ce12021-01-25 21:45:47 +080066 curr_node->image_id = sp_mem_params_descs[index].image_id;
67 curr_node->image_info = &sp_mem_params_descs[index].image_info;
Manish Pandeycb3b5342020-02-25 11:38:19 +000068
Heyi Guoabe6ce12021-01-25 21:45:47 +080069 prev_node->next_load_info = curr_node;
70 prev_node = curr_node;
Manish Pandeycb3b5342020-02-25 11:38:19 +000071 }
Heyi Guoabe6ce12021-01-25 21:45:47 +080072
73 INFO("Reached Max number of SPs\n");
Manish Pandeycb3b5342020-02-25 11:38:19 +000074}
75#endif
76
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +010077/*******************************************************************************
78 * This function returns the list of loadable images.
79 ******************************************************************************/
Sandrine Bailleux6c77e742018-07-11 12:44:22 +020080struct bl_load_info *plat_get_bl_image_load_info(void)
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +010081{
Balint Dobszay46789a72021-03-26 16:23:18 +010082#if defined(SPD_spmd) && BL2_ENABLE_SP_LOAD
Manish Pandeycb3b5342020-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 Kochara8aa7fe2016-09-13 17:07:57 +010090 return get_bl_load_info_from_mem_params_desc();
Manish Pandeycb3b5342020-02-25 11:38:19 +000091#endif
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +010092}
93
94/*******************************************************************************
Sathees Balya5b8d50e2018-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.
99 ******************************************************************************/
100struct bl_params *arm_get_next_bl_params(void)
101{
Harrison Mutaia5566f62023-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 Balya5b8d50e2018-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)));
121
122 /*
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 Mutaia5566f62023-12-01 15:50:00 +0000139#endif /* TRANSFER_LIST */
Sathees Balya5b8d50e2018-11-15 14:22:30 +0000140
141 return next_bl_params_cpy_ptr;
142}
143
144/*******************************************************************************
145 * This function returns the list of executable images
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +0100146 ******************************************************************************/
Sandrine Bailleux6c77e742018-07-11 12:44:22 +0200147struct bl_params *plat_get_next_bl_params(void)
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +0100148{
Sathees Balya5b8d50e2018-11-15 14:22:30 +0000149 return arm_get_next_bl_params();
Yatharth Kochara8aa7fe2016-09-13 17:07:57 +0100150}
Sathees Balya5b8d50e2018-11-15 14:22:30 +0000151