Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 1 | /* |
Julius Werner | 2a231e3 | 2019-05-28 21:03:58 -0700 | [diff] [blame] | 2 | * Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 7 | #ifndef EP_INFO_H |
| 8 | #define EP_INFO_H |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 9 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | #include <common/param_header.h> |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 11 | |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 12 | #ifndef __ASSEMBLER__ |
Julius Werner | 2a231e3 | 2019-05-28 21:03:58 -0700 | [diff] [blame] | 13 | #include <stdint.h> |
| 14 | #include <lib/cassert.h> |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 15 | #endif /* __ASSEMBLER__ */ |
Julius Werner | 2a231e3 | 2019-05-28 21:03:58 -0700 | [diff] [blame] | 16 | |
| 17 | #include <export/common/ep_info_exp.h> |
| 18 | |
| 19 | #define SECURE EP_SECURE |
| 20 | #define NON_SECURE EP_NON_SECURE |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 21 | #define sec_state_is_valid(s) (((s) == SECURE) || ((s) == NON_SECURE)) |
| 22 | |
Julius Werner | 2a231e3 | 2019-05-28 21:03:58 -0700 | [diff] [blame] | 23 | #define PARAM_EP_SECURITY_MASK EP_SECURITY_MASK |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 24 | |
Julius Werner | 2a231e3 | 2019-05-28 21:03:58 -0700 | [diff] [blame] | 25 | #define NON_EXECUTABLE EP_NON_EXECUTABLE |
| 26 | #define EXECUTABLE EP_EXECUTABLE |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 27 | |
Antonio Nino Diaz | 5f658c3 | 2018-06-26 21:42:51 +0100 | [diff] [blame] | 28 | /* Secure or Non-secure image */ |
Julius Werner | 2a231e3 | 2019-05-28 21:03:58 -0700 | [diff] [blame] | 29 | #define GET_SECURITY_STATE(x) ((x) & EP_SECURITY_MASK) |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 30 | #define SET_SECURITY_STATE(x, security) \ |
Julius Werner | 2a231e3 | 2019-05-28 21:03:58 -0700 | [diff] [blame] | 31 | ((x) = ((x) & ~EP_SECURITY_MASK) | (security)) |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 32 | |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 33 | #ifndef __ASSEMBLER__ |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 34 | |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 35 | /* |
| 36 | * Compile time assertions related to the 'entry_point_info' structure to |
| 37 | * ensure that the assembler and the compiler view of the offsets of |
| 38 | * the structure members is the same. |
| 39 | */ |
| 40 | CASSERT(ENTRY_POINT_INFO_PC_OFFSET == |
| 41 | __builtin_offsetof(entry_point_info_t, pc), \ |
| 42 | assert_BL31_pc_offset_mismatch); |
| 43 | |
Julius Werner | 8e0ef0f | 2019-07-09 14:02:43 -0700 | [diff] [blame] | 44 | #ifndef __aarch64__ |
Etienne Carriere | 094041d | 2018-02-02 13:16:18 +0100 | [diff] [blame] | 45 | CASSERT(ENTRY_POINT_INFO_LR_SVC_OFFSET == |
| 46 | __builtin_offsetof(entry_point_info_t, lr_svc), |
| 47 | assert_entrypoint_lr_offset_error); |
| 48 | #endif |
| 49 | |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 50 | CASSERT(ENTRY_POINT_INFO_ARGS_OFFSET == \ |
| 51 | __builtin_offsetof(entry_point_info_t, args), \ |
| 52 | assert_BL31_args_offset_mismatch); |
| 53 | |
| 54 | CASSERT(sizeof(uintptr_t) == |
| 55 | __builtin_offsetof(entry_point_info_t, spsr) - \ |
| 56 | __builtin_offsetof(entry_point_info_t, pc), \ |
| 57 | assert_entrypoint_and_spsr_should_be_adjacent); |
| 58 | |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 59 | #endif /*__ASSEMBLER__*/ |
Soby Mathew | b911cc7 | 2017-02-13 12:46:28 +0000 | [diff] [blame] | 60 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 61 | #endif /* EP_INFO_H */ |