Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Roberto Vargas | 777dd43 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __BL_COMMON_H__ |
| 8 | #define __BL_COMMON_H__ |
| 9 | |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 10 | #include <ep_info.h> |
| 11 | #include <param_header.h> |
Soby Mathew | cc36484 | 2018-02-21 01:16:39 +0000 | [diff] [blame] | 12 | #include <utils_def.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 13 | |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 14 | #define UP U(1) |
| 15 | #define DOWN U(0) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 16 | |
| 17 | /******************************************************************************* |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 18 | * Constants to identify the location of a memory region in a given memory |
| 19 | * layout. |
| 20 | ******************************************************************************/ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 21 | #define TOP U(0x1) |
| 22 | #define BOTTOM U(0x0) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 23 | |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 24 | /* |
| 25 | * The following are used for image state attributes. |
| 26 | * Image can only be in one of the following state. |
| 27 | */ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 28 | #define IMAGE_STATE_RESET U(0) |
| 29 | #define IMAGE_STATE_COPIED U(1) |
| 30 | #define IMAGE_STATE_COPYING U(2) |
| 31 | #define IMAGE_STATE_AUTHENTICATED U(3) |
| 32 | #define IMAGE_STATE_EXECUTED U(4) |
| 33 | #define IMAGE_STATE_INTERRUPTED U(5) |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 34 | |
Soby Mathew | cc36484 | 2018-02-21 01:16:39 +0000 | [diff] [blame] | 35 | #define IMAGE_ATTRIB_SKIP_LOADING U(0x02) |
| 36 | #define IMAGE_ATTRIB_PLAT_SETUP U(0x04) |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 37 | |
Soby Mathew | cc36484 | 2018-02-21 01:16:39 +0000 | [diff] [blame] | 38 | #define INVALID_IMAGE_ID U(0xFFFFFFFF) |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 39 | |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 40 | /******************************************************************************* |
| 41 | * Constants to indicate type of exception to the common exception handler. |
| 42 | ******************************************************************************/ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 43 | #define SYNC_EXCEPTION_SP_EL0 U(0x0) |
| 44 | #define IRQ_SP_EL0 U(0x1) |
| 45 | #define FIQ_SP_EL0 U(0x2) |
| 46 | #define SERROR_SP_EL0 U(0x3) |
| 47 | #define SYNC_EXCEPTION_SP_ELX U(0x4) |
| 48 | #define IRQ_SP_ELX U(0x5) |
| 49 | #define FIQ_SP_ELX U(0x6) |
| 50 | #define SERROR_SP_ELX U(0x7) |
| 51 | #define SYNC_EXCEPTION_AARCH64 U(0x8) |
| 52 | #define IRQ_AARCH64 U(0x9) |
| 53 | #define FIQ_AARCH64 U(0xa) |
| 54 | #define SERROR_AARCH64 U(0xb) |
| 55 | #define SYNC_EXCEPTION_AARCH32 U(0xc) |
| 56 | #define IRQ_AARCH32 U(0xd) |
| 57 | #define FIQ_AARCH32 U(0xe) |
| 58 | #define SERROR_AARCH32 U(0xf) |
Yatharth Kochar | 6c0566c | 2015-10-02 17:56:48 +0100 | [diff] [blame] | 59 | |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 60 | #ifndef __ASSEMBLY__ |
Vikram Kanigiri | a3a5e4a | 2014-05-15 18:27:15 +0100 | [diff] [blame] | 61 | #include <cassert.h> |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 62 | #include <stddef.h> |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 63 | #include <stdint.h> |
Scott Branden | bf404c0 | 2017-04-10 11:45:52 -0700 | [diff] [blame] | 64 | #include <utils_def.h> /* To retain compatibility */ |
Vikram Kanigiri | 725b133 | 2015-03-04 10:34:27 +0000 | [diff] [blame] | 65 | |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 66 | |
Dan Handley | f05c1b5 | 2015-04-27 11:49:22 +0100 | [diff] [blame] | 67 | /* |
| 68 | * Declarations of linker defined symbols to help determine memory layout of |
| 69 | * BL images |
| 70 | */ |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 71 | #if SEPARATE_CODE_AND_RODATA |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 72 | IMPORT_SYM(unsigned long, __TEXT_START__, BL_CODE_BASE); |
| 73 | IMPORT_SYM(unsigned long, __TEXT_END__, BL_CODE_END); |
| 74 | IMPORT_SYM(unsigned long, __RODATA_START__, BL_RO_DATA_BASE); |
| 75 | IMPORT_SYM(unsigned long, __RODATA_END__, BL_RO_DATA_END); |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 76 | #else |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 77 | IMPORT_SYM(unsigned long, __RO_START__, BL_CODE_BASE); |
| 78 | IMPORT_SYM(unsigned long, __RO_END__, BL_CODE_END); |
Sandrine Bailleux | f91f144 | 2016-07-08 14:37:40 +0100 | [diff] [blame] | 79 | #endif |
| 80 | |
Masahiro Yamada | 441bfdd | 2016-12-25 23:36:24 +0900 | [diff] [blame] | 81 | #if defined(IMAGE_BL2) |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 82 | IMPORT_SYM(unsigned long, __BL2_END__, BL2_END); |
Masahiro Yamada | 441bfdd | 2016-12-25 23:36:24 +0900 | [diff] [blame] | 83 | #elif defined(IMAGE_BL2U) |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 84 | IMPORT_SYM(unsigned long, __BL2U_END__, BL2U_END); |
Masahiro Yamada | 441bfdd | 2016-12-25 23:36:24 +0900 | [diff] [blame] | 85 | #elif defined(IMAGE_BL31) |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 86 | IMPORT_SYM(unsigned long, __BL31_END__, BL31_END); |
Masahiro Yamada | 441bfdd | 2016-12-25 23:36:24 +0900 | [diff] [blame] | 87 | #elif defined(IMAGE_BL32) |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 88 | IMPORT_SYM(unsigned long, __BL32_END__, BL32_END); |
Dan Handley | f05c1b5 | 2015-04-27 11:49:22 +0100 | [diff] [blame] | 89 | #endif /* IMAGE_BLX */ |
| 90 | |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 91 | /* |
| 92 | * The next 2 constants identify the extents of the coherent memory region. |
| 93 | * These addresses are used by the MMU setup code and therefore they must be |
| 94 | * page-aligned. It is the responsibility of the linker script to ensure that |
| 95 | * __COHERENT_RAM_START__ and __COHERENT_RAM_END__ linker symbols refer to |
| 96 | * page-aligned addresses. |
| 97 | */ |
Dan Handley | f05c1b5 | 2015-04-27 11:49:22 +0100 | [diff] [blame] | 98 | #if USE_COHERENT_MEM |
Joel Hutton | 5cc3bc8 | 2018-03-21 11:40:57 +0000 | [diff] [blame] | 99 | IMPORT_SYM(unsigned long, __COHERENT_RAM_START__, BL_COHERENT_RAM_BASE); |
| 100 | IMPORT_SYM(unsigned long, __COHERENT_RAM_END__, BL_COHERENT_RAM_END); |
Dan Handley | f05c1b5 | 2015-04-27 11:49:22 +0100 | [diff] [blame] | 101 | #endif |
| 102 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 103 | /******************************************************************************* |
| 104 | * Structure used for telling the next BL how much of a particular type of |
| 105 | * memory is available for its use and how much is already used. |
| 106 | ******************************************************************************/ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 107 | typedef struct meminfo { |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 108 | uintptr_t total_base; |
Sandrine Bailleux | 467d057 | 2014-06-24 14:02:34 +0100 | [diff] [blame] | 109 | size_t total_size; |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 110 | } meminfo_t; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 111 | |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 112 | /***************************************************************************** |
| 113 | * Image info binary provides information from the image loader that |
| 114 | * can be used by the firmware to manage available trusted RAM. |
| 115 | * More advanced firmware image formats can provide additional |
| 116 | * information that enables optimization or greater flexibility in the |
| 117 | * common firmware code |
| 118 | *****************************************************************************/ |
| 119 | typedef struct image_info { |
| 120 | param_header_t h; |
| 121 | uintptr_t image_base; /* physical address of base of image */ |
| 122 | uint32_t image_size; /* bytes read from image file */ |
Yatharth Kochar | 3345a8d | 2016-09-12 16:08:41 +0100 | [diff] [blame] | 123 | uint32_t image_max_size; |
Vikram Kanigiri | da56743 | 2014-04-15 18:08:08 +0100 | [diff] [blame] | 124 | } image_info_t; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 125 | |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 126 | /***************************************************************************** |
| 127 | * The image descriptor struct definition. |
| 128 | *****************************************************************************/ |
| 129 | typedef struct image_desc { |
| 130 | /* Contains unique image id for the image. */ |
| 131 | unsigned int image_id; |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 132 | /* |
| 133 | * This member contains Image state information. |
| 134 | * Refer IMAGE_STATE_XXX defined above. |
| 135 | */ |
| 136 | unsigned int state; |
Yatharth Kochar | f11b29a | 2016-02-01 11:04:46 +0000 | [diff] [blame] | 137 | uint32_t copied_size; /* image size copied in blocks */ |
Soby Mathew | 6d4f262 | 2016-01-12 10:30:59 +0000 | [diff] [blame] | 138 | image_info_t image_info; |
| 139 | entry_point_info_t ep_info; |
Yatharth Kochar | a65be2f | 2015-10-09 18:06:13 +0100 | [diff] [blame] | 140 | } image_desc_t; |
| 141 | |
Yatharth Kochar | 3345a8d | 2016-09-12 16:08:41 +0100 | [diff] [blame] | 142 | /* BL image node in the BL image loading sequence */ |
| 143 | typedef struct bl_load_info_node { |
| 144 | unsigned int image_id; |
| 145 | image_info_t *image_info; |
| 146 | struct bl_load_info_node *next_load_info; |
| 147 | } bl_load_info_node_t; |
| 148 | |
| 149 | /* BL image head node in the BL image loading sequence */ |
| 150 | typedef struct bl_load_info { |
| 151 | param_header_t h; |
| 152 | bl_load_info_node_t *head; |
| 153 | } bl_load_info_t; |
| 154 | |
| 155 | /* BL image node in the BL image execution sequence */ |
| 156 | typedef struct bl_params_node { |
| 157 | unsigned int image_id; |
| 158 | image_info_t *image_info; |
| 159 | entry_point_info_t *ep_info; |
| 160 | struct bl_params_node *next_params_info; |
| 161 | } bl_params_node_t; |
| 162 | |
| 163 | /* |
| 164 | * BL image head node in the BL image execution sequence |
| 165 | * It is also used to pass information to next BL image. |
| 166 | */ |
| 167 | typedef struct bl_params { |
| 168 | param_header_t h; |
| 169 | bl_params_node_t *head; |
| 170 | } bl_params_t; |
| 171 | |
Achin Gupta | e4d084e | 2014-02-19 17:18:23 +0000 | [diff] [blame] | 172 | /******************************************************************************* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 173 | * Function & variable prototypes |
| 174 | ******************************************************************************/ |
Daniel Boulby | 4f3b6ed | 2018-05-04 11:18:26 +0100 | [diff] [blame] | 175 | size_t get_image_size(unsigned int image_id); |
Yatharth Kochar | 3345a8d | 2016-09-12 16:08:41 +0100 | [diff] [blame] | 176 | |
Sandrine Bailleux | b0e529b | 2016-11-08 14:27:10 +0000 | [diff] [blame] | 177 | int is_mem_free(uintptr_t free_base, size_t free_size, |
| 178 | uintptr_t addr, size_t size); |
| 179 | |
Yatharth Kochar | 3345a8d | 2016-09-12 16:08:41 +0100 | [diff] [blame] | 180 | int load_auth_image(unsigned int image_id, image_info_t *image_data); |
| 181 | |
Soby Mathew | 9fe8804 | 2018-03-26 12:43:37 +0100 | [diff] [blame] | 182 | #if TRUSTED_BOARD_BOOT && defined(DYN_DISABLE_AUTH) |
| 183 | /* |
| 184 | * API to dynamically disable authentication. Only meant for development |
| 185 | * systems. |
| 186 | */ |
| 187 | void dyn_disable_auth(void); |
| 188 | #endif |
| 189 | |
Yatharth Kochar | 3345a8d | 2016-09-12 16:08:41 +0100 | [diff] [blame] | 190 | extern const char build_message[]; |
| 191 | extern const char version_string[]; |
| 192 | |
Sandrine Bailleux | b2e224c | 2015-09-28 17:03:06 +0100 | [diff] [blame] | 193 | void print_entry_point_info(const entry_point_info_t *ep_info); |
Roberto Vargas | 2ca18d9 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 194 | uintptr_t page_align(uintptr_t value, unsigned dir); |
Sandrine Bailleux | b2e224c | 2015-09-28 17:03:06 +0100 | [diff] [blame] | 195 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 196 | #endif /*__ASSEMBLY__*/ |
| 197 | |
| 198 | #endif /* __BL_COMMON_H__ */ |