Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 1 | /* |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 2 | * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved. |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 5 | */ |
| 6 | #ifndef __COMMON_DEF_H__ |
| 7 | #define __COMMON_DEF_H__ |
| 8 | |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 9 | #include <bl_common.h> |
| 10 | #include <platform_def.h> |
Antonio Nino Diaz | 4b32e62 | 2018-08-16 16:52:57 +0100 | [diff] [blame] | 11 | #include <xlat_tables_defs.h> |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 12 | |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 13 | /****************************************************************************** |
| 14 | * Required platform porting definitions that are expected to be common to |
| 15 | * all platforms |
| 16 | *****************************************************************************/ |
| 17 | |
| 18 | /* |
| 19 | * Platform binary types for linking |
| 20 | */ |
Yatharth Kochar | f528faf | 2016-06-28 16:58:26 +0100 | [diff] [blame] | 21 | #ifdef AARCH32 |
| 22 | #define PLATFORM_LINKER_FORMAT "elf32-littlearm" |
| 23 | #define PLATFORM_LINKER_ARCH arm |
| 24 | #else |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 25 | #define PLATFORM_LINKER_FORMAT "elf64-littleaarch64" |
| 26 | #define PLATFORM_LINKER_ARCH aarch64 |
Yatharth Kochar | f528faf | 2016-06-28 16:58:26 +0100 | [diff] [blame] | 27 | #endif /* AARCH32 */ |
Dan Handley | 9df4804 | 2015-03-19 18:58:55 +0000 | [diff] [blame] | 28 | |
| 29 | /* |
| 30 | * Generic platform constants |
| 31 | */ |
| 32 | #define FIRMWARE_WELCOME_STR "Booting Trusted Firmware\n" |
| 33 | |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 34 | #define BL2_IMAGE_DESC { \ |
| 35 | .image_id = BL2_IMAGE_ID, \ |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 36 | SET_STATIC_PARAM_HEAD(image_info, PARAM_EP, \ |
Yatharth Kochar | 51f76f6 | 2016-09-12 16:10:33 +0100 | [diff] [blame] | 37 | VERSION_2, image_info_t, 0), \ |
| 38 | .image_info.image_base = BL2_BASE, \ |
| 39 | .image_info.image_max_size = BL2_LIMIT - BL2_BASE,\ |
| 40 | SET_STATIC_PARAM_HEAD(ep_info, PARAM_EP, \ |
| 41 | VERSION_2, entry_point_info_t, SECURE | EXECUTABLE),\ |
| 42 | .ep_info.pc = BL2_BASE, \ |
| 43 | } |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 44 | |
Sandrine Bailleux | ecdc4d3 | 2016-07-08 14:38:16 +0100 | [diff] [blame] | 45 | /* |
| 46 | * The following constants identify the extents of the code & read-only data |
| 47 | * regions. These addresses are used by the MMU setup code and therefore they |
| 48 | * must be page-aligned. |
| 49 | * |
| 50 | * When the code and read-only data are mapped as a single atomic section |
| 51 | * (i.e. when SEPARATE_CODE_AND_RODATA=0) then we treat the whole section as |
| 52 | * code by specifying the read-only data section as empty. |
| 53 | * |
| 54 | * BL1 is different than the other images in the sense that its read-write data |
| 55 | * originally lives in Trusted ROM and needs to be relocated in Trusted SRAM at |
| 56 | * run-time. Therefore, the read-write data in ROM can be mapped with the same |
| 57 | * memory attributes as the read-only data region. For this reason, BL1 uses |
| 58 | * different macros. |
| 59 | * |
| 60 | * Note that BL1_ROM_END is not necessarily aligned on a page boundary as it |
| 61 | * just points to the end of BL1's actual content in Trusted ROM. Therefore it |
| 62 | * needs to be rounded up to the next page size in order to map the whole last |
| 63 | * page of it with the right memory attributes. |
| 64 | */ |
| 65 | #if SEPARATE_CODE_AND_RODATA |
Sandrine Bailleux | ecdc4d3 | 2016-07-08 14:38:16 +0100 | [diff] [blame] | 66 | |
Masahiro Yamada | 51bef61 | 2017-01-18 02:10:08 +0900 | [diff] [blame] | 67 | #define BL1_CODE_END BL_CODE_END |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 68 | #define BL1_RO_DATA_BASE BL_RO_DATA_BASE |
Masahiro Yamada | 51bef61 | 2017-01-18 02:10:08 +0900 | [diff] [blame] | 69 | #define BL1_RO_DATA_END round_up(BL1_ROM_END, PAGE_SIZE) |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 70 | #if BL2_IN_XIP_MEM |
| 71 | #define BL2_CODE_END BL_CODE_END |
| 72 | #define BL2_RO_DATA_BASE BL_RO_DATA_BASE |
| 73 | #define BL2_RO_DATA_END round_up(BL2_ROM_END, PAGE_SIZE) |
| 74 | #endif /* BL2_IN_XIP_MEM */ |
Sandrine Bailleux | ecdc4d3 | 2016-07-08 14:38:16 +0100 | [diff] [blame] | 75 | #else |
Sandrine Bailleux | ecdc4d3 | 2016-07-08 14:38:16 +0100 | [diff] [blame] | 76 | #define BL_RO_DATA_BASE 0 |
Masahiro Yamada | 51bef61 | 2017-01-18 02:10:08 +0900 | [diff] [blame] | 77 | #define BL_RO_DATA_END 0 |
Masahiro Yamada | 51bef61 | 2017-01-18 02:10:08 +0900 | [diff] [blame] | 78 | #define BL1_CODE_END round_up(BL1_ROM_END, PAGE_SIZE) |
Jiafei Pan | 43a7bf4 | 2018-03-21 07:20:09 +0000 | [diff] [blame] | 79 | #if BL2_IN_XIP_MEM |
| 80 | #define BL2_RO_DATA_BASE 0 |
| 81 | #define BL2_RO_DATA_END 0 |
| 82 | #define BL2_CODE_END round_up(BL2_ROM_END, PAGE_SIZE) |
| 83 | #endif /* BL2_IN_XIP_MEM */ |
Sandrine Bailleux | ecdc4d3 | 2016-07-08 14:38:16 +0100 | [diff] [blame] | 84 | #endif /* SEPARATE_CODE_AND_RODATA */ |
Sandrine Bailleux | ecdc4d3 | 2016-07-08 14:38:16 +0100 | [diff] [blame] | 85 | #endif /* __COMMON_DEF_H__ */ |