blob: 630cc84d2de2ee3dd944a3227de3c867e95e1809 [file] [log] [blame]
Yann Gautiera3f46382023-06-14 10:40:59 +02001/*
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 ******************************************************************************/
17static bl_mem_params_node_t bl2_mem_params_descs[] = {
18};
19
20REGISTER_BL_IMAGE_DESCS(bl2_mem_params_descs)