blob: f2ed1a1ca8f0371f49414ef29f7883491b30e70f [file] [log] [blame]
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01001/*
Yatharth Kocharf11b29a2016-02-01 11:04:46 +00002 * Copyright (c) 2015-2016, ARM Limited and Contributors. All rights reserved.
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01005 */
6
7#include <bl1.h>
8#include <bl_common.h>
9#include <platform_def.h>
10
11image_desc_t bl1_tbbr_image_descs[] = {
12 {
13 .image_id = FWU_CERT_ID,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000014 SET_STATIC_PARAM_HEAD(image_info, PARAM_IMAGE_BINARY,
15 VERSION_1, image_info_t, 0),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010016 .image_info.image_base = BL2_BASE,
Yatharth Kochar8c0177f2016-11-11 13:57:50 +000017#if LOAD_IMAGE_V2
18 .image_info.image_max_size = BL2_LIMIT - BL2_BASE,
19#endif
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000020 SET_STATIC_PARAM_HEAD(ep_info, PARAM_IMAGE_BINARY,
21 VERSION_1, entry_point_info_t, SECURE),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010022 },
23#if NS_BL1U_BASE
24 {
25 .image_id = NS_BL1U_IMAGE_ID,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000026 SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,
27 VERSION_1, entry_point_info_t, NON_SECURE | EXECUTABLE),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010028 .ep_info.pc = NS_BL1U_BASE,
29 },
30#endif
31#if SCP_BL2U_BASE
32 {
33 .image_id = SCP_BL2U_IMAGE_ID,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000034 SET_STATIC_PARAM_HEAD(image_info, PARAM_IMAGE_BINARY,
35 VERSION_1, image_info_t, 0),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010036 .image_info.image_base = SCP_BL2U_BASE,
Yatharth Kochar8c0177f2016-11-11 13:57:50 +000037#if LOAD_IMAGE_V2
38 .image_info.image_max_size = SCP_BL2U_LIMIT - SCP_BL2U_BASE,
39#endif
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000040 SET_STATIC_PARAM_HEAD(ep_info, PARAM_IMAGE_BINARY,
41 VERSION_1, entry_point_info_t, SECURE),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010042 },
43#endif
44#if BL2U_BASE
45 {
46 .image_id = BL2U_IMAGE_ID,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000047 SET_STATIC_PARAM_HEAD(image_info, PARAM_EP,
48 VERSION_1, image_info_t, 0),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010049 .image_info.image_base = BL2U_BASE,
Yatharth Kochar8c0177f2016-11-11 13:57:50 +000050#if LOAD_IMAGE_V2
51 .image_info.image_max_size = BL2U_LIMIT - BL2U_BASE,
52#endif
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000053 SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,
54 VERSION_1, entry_point_info_t, SECURE | EXECUTABLE),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010055 .ep_info.pc = BL2U_BASE,
56 },
57#endif
58#if NS_BL2U_BASE
59 {
60 .image_id = NS_BL2U_IMAGE_ID,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000061 SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,
62 VERSION_1, entry_point_info_t, NON_SECURE),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010063 },
64#endif
65 BL2_IMAGE_DESC,
66
67 {
68 .image_id = INVALID_IMAGE_ID,
69 }
70};