blob: e8df73d4715d6c35d9211ae5f00d132870f5253b [file] [log] [blame]
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01001/*
Roberto Vargas52f707f2018-02-12 12:36:17 +00002 * Copyright (c) 2015-2018, 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
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +01007#include <platform_def.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008
9#include <bl1/bl1.h>
10#include <bl1/tbbr/tbbr_img_desc.h>
11#include <common/bl_common.h>
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010012
13image_desc_t bl1_tbbr_image_descs[] = {
14 {
15 .image_id = FWU_CERT_ID,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000016 SET_STATIC_PARAM_HEAD(image_info, PARAM_IMAGE_BINARY,
17 VERSION_1, image_info_t, 0),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010018 .image_info.image_base = BL2_BASE,
Yatharth Kochar8c0177f2016-11-11 13:57:50 +000019 .image_info.image_max_size = BL2_LIMIT - BL2_BASE,
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 .image_info.image_max_size = SCP_BL2U_LIMIT - SCP_BL2U_BASE,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000038 SET_STATIC_PARAM_HEAD(ep_info, PARAM_IMAGE_BINARY,
39 VERSION_1, entry_point_info_t, SECURE),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010040 },
41#endif
42#if BL2U_BASE
43 {
44 .image_id = BL2U_IMAGE_ID,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000045 SET_STATIC_PARAM_HEAD(image_info, PARAM_EP,
46 VERSION_1, image_info_t, 0),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010047 .image_info.image_base = BL2U_BASE,
Yatharth Kochar8c0177f2016-11-11 13:57:50 +000048 .image_info.image_max_size = BL2U_LIMIT - BL2U_BASE,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000049 SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,
50 VERSION_1, entry_point_info_t, SECURE | EXECUTABLE),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010051 .ep_info.pc = BL2U_BASE,
52 },
53#endif
54#if NS_BL2U_BASE
55 {
56 .image_id = NS_BL2U_IMAGE_ID,
Yatharth Kocharf11b29a2016-02-01 11:04:46 +000057 SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP,
58 VERSION_1, entry_point_info_t, NON_SECURE),
Yatharth Kochar71c9a5e2015-10-10 19:06:53 +010059 },
60#endif
61 BL2_IMAGE_DESC,
62
63 {
64 .image_id = INVALID_IMAGE_ID,
65 }
66};