Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 1 | /* |
Zelalem | 87675d4 | 2020-02-03 14:56:42 -0600 | [diff] [blame] | 2 | * Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved. |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 7 | #include <platform_def.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | #include <bl1/tbbr/tbbr_img_desc.h> |
| 10 | #include <common/bl_common.h> |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 11 | |
| 12 | image_desc_t bl1_tbbr_image_descs[] = { |
| 13 | { |
| 14 | .image_id = FWU_CERT_ID, |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 15 | SET_STATIC_PARAM_HEAD(image_info, PARAM_IMAGE_BINARY, |
| 16 | VERSION_1, image_info_t, 0), |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 17 | .image_info.image_base = BL2_BASE, |
Yatharth Kochar | 8c0177f | 2016-11-11 13:57:50 +0000 | [diff] [blame] | 18 | .image_info.image_max_size = BL2_LIMIT - BL2_BASE, |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 19 | SET_STATIC_PARAM_HEAD(ep_info, PARAM_IMAGE_BINARY, |
| 20 | VERSION_1, entry_point_info_t, SECURE), |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 21 | }, |
| 22 | #if NS_BL1U_BASE |
| 23 | { |
| 24 | .image_id = NS_BL1U_IMAGE_ID, |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 25 | SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP, |
| 26 | VERSION_1, entry_point_info_t, NON_SECURE | EXECUTABLE), |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 27 | .ep_info.pc = NS_BL1U_BASE, |
| 28 | }, |
| 29 | #endif |
| 30 | #if SCP_BL2U_BASE |
| 31 | { |
| 32 | .image_id = SCP_BL2U_IMAGE_ID, |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 33 | SET_STATIC_PARAM_HEAD(image_info, PARAM_IMAGE_BINARY, |
| 34 | VERSION_1, image_info_t, 0), |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 35 | .image_info.image_base = SCP_BL2U_BASE, |
Yatharth Kochar | 8c0177f | 2016-11-11 13:57:50 +0000 | [diff] [blame] | 36 | .image_info.image_max_size = SCP_BL2U_LIMIT - SCP_BL2U_BASE, |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 37 | SET_STATIC_PARAM_HEAD(ep_info, PARAM_IMAGE_BINARY, |
| 38 | VERSION_1, entry_point_info_t, SECURE), |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 39 | }, |
| 40 | #endif |
| 41 | #if BL2U_BASE |
| 42 | { |
| 43 | .image_id = BL2U_IMAGE_ID, |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 44 | SET_STATIC_PARAM_HEAD(image_info, PARAM_EP, |
| 45 | VERSION_1, image_info_t, 0), |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 46 | .image_info.image_base = BL2U_BASE, |
Yatharth Kochar | 8c0177f | 2016-11-11 13:57:50 +0000 | [diff] [blame] | 47 | .image_info.image_max_size = BL2U_LIMIT - BL2U_BASE, |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 48 | SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP, |
| 49 | VERSION_1, entry_point_info_t, SECURE | EXECUTABLE), |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 50 | .ep_info.pc = BL2U_BASE, |
| 51 | }, |
| 52 | #endif |
| 53 | #if NS_BL2U_BASE |
| 54 | { |
| 55 | .image_id = NS_BL2U_IMAGE_ID, |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 56 | SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP, |
| 57 | VERSION_1, entry_point_info_t, NON_SECURE), |
Yatharth Kochar | 71c9a5e | 2015-10-10 19:06:53 +0100 | [diff] [blame] | 58 | }, |
| 59 | #endif |
| 60 | BL2_IMAGE_DESC, |
| 61 | |
| 62 | { |
| 63 | .image_id = INVALID_IMAGE_ID, |
| 64 | } |
| 65 | }; |