1 /* 2 * Copyright (c) 2023, STMicroelectronics - All Rights Reserved 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include <common/desc_image_load.h> 8 9 /******************************************************************************* 10 * Following descriptor provides BL image/ep information that gets used 11 * by BL2 to load the images and also subset of this information is 12 * passed to next BL image. The image loading sequence is managed by 13 * populating the images in required loading order. The image execution 14 * sequence is managed by populating the `next_handoff_image_id` with 15 * the next executable image id. 16 ******************************************************************************/ 17 static bl_mem_params_node_t bl2_mem_params_descs[] = { 18 }; 19 20 REGISTER_BL_IMAGE_DESCS(bl2_mem_params_descs) 21