Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 1 | /* |
Jeenu Viswambharan | eeb353c | 2018-01-22 12:29:12 +0000 | [diff] [blame] | 2 | * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved. |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Jeenu Viswambharan | 837cc9c | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 7 | #ifndef EHF_H |
| 8 | #define EHF_H |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 9 | |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 10 | #ifndef __ASSEMBLER__ |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 11 | |
Antonio Nino Diaz | 4b32e62 | 2018-08-16 16:52:57 +0100 | [diff] [blame] | 12 | #include <cdefs.h> |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 13 | #include <stdint.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 14 | |
| 15 | #include <lib/utils_def.h> |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 16 | |
| 17 | /* Valid priorities set bit 0 of the priority handler. */ |
Antonio Nino Diaz | e0b757d | 2018-08-24 16:30:29 +0100 | [diff] [blame] | 18 | #define EHF_PRI_VALID_ BIT(0) |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 19 | |
| 20 | /* Marker for no handler registered for a valid priority */ |
Jeenu Viswambharan | 837cc9c | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 21 | #define EHF_NO_HANDLER_ (0U | EHF_PRI_VALID_) |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 22 | |
| 23 | /* Extract the specified number of top bits from 7 lower bits of priority */ |
| 24 | #define EHF_PRI_TO_IDX(pri, plat_bits) \ |
Jeenu Viswambharan | 837cc9c | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 25 | ((((unsigned) (pri)) & 0x7fu) >> (7u - (plat_bits))) |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 26 | |
| 27 | /* Install exception priority descriptor at a suitable index */ |
| 28 | #define EHF_PRI_DESC(plat_bits, priority) \ |
| 29 | [EHF_PRI_TO_IDX(priority, plat_bits)] = { \ |
Jeenu Viswambharan | 837cc9c | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 30 | .ehf_handler = EHF_NO_HANDLER_, \ |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | /* Macro for platforms to regiter its exception priorities */ |
| 34 | #define EHF_REGISTER_PRIORITIES(priorities, num, bits) \ |
| 35 | const ehf_priorities_t exception_data = { \ |
Jeenu Viswambharan | 837cc9c | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 36 | .num_priorities = (num), \ |
| 37 | .ehf_priorities = (priorities), \ |
| 38 | .pri_bits = (bits), \ |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | /* |
| 42 | * Priority stack, managed as a bitmap. |
| 43 | * |
| 44 | * Currently only supports 32 priority levels, allowing platforms to use up to 5 |
| 45 | * top bits of priority. But the type can be changed to uint64_t should need |
| 46 | * arise to support 64 priority levels, allowing platforms to use up to 6 top |
| 47 | * bits of priority. |
| 48 | */ |
| 49 | typedef uint32_t ehf_pri_bits_t; |
| 50 | |
| 51 | /* |
| 52 | * Per-PE exception data. The data for each PE is kept as a per-CPU data field. |
| 53 | * See cpu_data.h. |
| 54 | */ |
| 55 | typedef struct { |
| 56 | ehf_pri_bits_t active_pri_bits; |
| 57 | |
| 58 | /* Priority mask value before any priority levels were active */ |
| 59 | uint8_t init_pri_mask; |
Jeenu Viswambharan | 6c6f24d | 2017-10-04 12:21:34 +0100 | [diff] [blame] | 60 | |
| 61 | /* Non-secure priority mask value stashed during Secure execution */ |
| 62 | uint8_t ns_pri_mask; |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 63 | } __aligned(sizeof(uint64_t)) pe_exc_data_t; |
| 64 | |
| 65 | typedef int (*ehf_handler_t)(uint32_t intr_raw, uint32_t flags, void *handle, |
| 66 | void *cookie); |
| 67 | |
| 68 | typedef struct ehf_pri_desc { |
| 69 | /* |
| 70 | * 4-byte-aligned exception handler. Bit 0 indicates the corresponding |
| 71 | * priority level is valid. This is effectively of ehf_handler_t type, |
| 72 | * but left as uintptr_t in order to make pointer arithmetic convenient. |
| 73 | */ |
| 74 | uintptr_t ehf_handler; |
| 75 | } ehf_pri_desc_t; |
| 76 | |
Jeenu Viswambharan | 837cc9c | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 77 | typedef struct ehf_priority_type { |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 78 | ehf_pri_desc_t *ehf_priorities; |
| 79 | unsigned int num_priorities; |
Jeenu Viswambharan | 837cc9c | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 80 | unsigned int pri_bits; |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 81 | } ehf_priorities_t; |
| 82 | |
| 83 | void ehf_init(void); |
| 84 | void ehf_activate_priority(unsigned int priority); |
| 85 | void ehf_deactivate_priority(unsigned int priority); |
| 86 | void ehf_register_priority_handler(unsigned int pri, ehf_handler_t handler); |
Jeenu Viswambharan | eeb353c | 2018-01-22 12:29:12 +0000 | [diff] [blame] | 87 | void ehf_allow_ns_preemption(uint64_t preempt_ret_code); |
Jeenu Viswambharan | 6c6f24d | 2017-10-04 12:21:34 +0100 | [diff] [blame] | 88 | unsigned int ehf_is_ns_preemption_allowed(void); |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 89 | |
Julius Werner | 53456fc | 2019-07-09 13:49:11 -0700 | [diff] [blame] | 90 | #endif /* __ASSEMBLER__ */ |
Jeenu Viswambharan | 10a6727 | 2017-09-22 08:32:10 +0100 | [diff] [blame] | 91 | |
Jeenu Viswambharan | 837cc9c | 2018-08-02 10:14:12 +0100 | [diff] [blame] | 92 | #endif /* EHF_H */ |