Dan Handley | b226a4d | 2014-05-16 14:08:45 +0100 | [diff] [blame] | 1 | /* |
Salman Nabi | fed5e29 | 2024-02-28 13:37:06 +0000 | [diff] [blame] | 2 | * Copyright (c) 2014-2024, Arm Limited and Contributors. All rights reserved. |
Dan Handley | b226a4d | 2014-05-16 14:08:45 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Dan Handley | b226a4d | 2014-05-16 14:08:45 +0100 | [diff] [blame] | 5 | */ |
Jeenu Viswambharan | 04e3a7f | 2017-10-16 08:43:14 +0100 | [diff] [blame] | 6 | |
Soby Mathew | 70716d6 | 2015-07-13 16:26:11 +0100 | [diff] [blame] | 7 | #include <assert.h> |
Scott Branden | e5dcf98 | 2020-08-25 13:49:32 -0700 | [diff] [blame] | 8 | #include <inttypes.h> |
| 9 | #include <stdint.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 10 | |
| 11 | #include <arch_helpers.h> |
Claus Pedersen | 785e66c | 2022-09-12 22:42:58 +0000 | [diff] [blame] | 12 | #include <common/debug.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 13 | #include <drivers/console.h> |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 14 | #if ENABLE_FEAT_RAS |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 15 | #include <lib/extensions/ras.h> |
Jeenu Viswambharan | 2e2e881 | 2017-12-08 15:38:21 +0000 | [diff] [blame] | 16 | #endif |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 17 | #include <lib/xlat_tables/xlat_mmu_helpers.h> |
| 18 | #include <plat/common/platform.h> |
Dan Handley | b226a4d | 2014-05-16 14:08:45 +0100 | [diff] [blame] | 19 | |
Yann Gautier | 4a7f302 | 2024-04-10 12:03:33 +0200 | [diff] [blame] | 20 | /* Pointer and function to register platform function to load alernate images */ |
| 21 | const struct plat_try_images_ops *plat_try_img_ops; |
| 22 | |
| 23 | void plat_setup_try_img_ops(const struct plat_try_images_ops *plat_try_ops) |
| 24 | { |
| 25 | plat_try_img_ops = plat_try_ops; |
| 26 | } |
| 27 | |
Dan Handley | b226a4d | 2014-05-16 14:08:45 +0100 | [diff] [blame] | 28 | /* |
Soby Mathew | 1ff495b | 2015-12-09 11:28:43 +0000 | [diff] [blame] | 29 | * The following platform setup functions are weakly defined. They |
Dan Handley | b226a4d | 2014-05-16 14:08:45 +0100 | [diff] [blame] | 30 | * provide typical implementations that may be re-used by multiple |
| 31 | * platforms but may also be overridden by a platform if required. |
| 32 | */ |
Soby Mathew | 1ff495b | 2015-12-09 11:28:43 +0000 | [diff] [blame] | 33 | #pragma weak bl31_plat_runtime_setup |
Dan Handley | b226a4d | 2014-05-16 14:08:45 +0100 | [diff] [blame] | 34 | |
Jeenu Viswambharan | 04e3a7f | 2017-10-16 08:43:14 +0100 | [diff] [blame] | 35 | #if SDEI_SUPPORT |
| 36 | #pragma weak plat_sdei_handle_masked_trigger |
| 37 | #pragma weak plat_sdei_validate_entry_point |
| 38 | #endif |
| 39 | |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 40 | #if FFH_SUPPORT |
Pali Rohár | c36e97f | 2021-06-21 17:22:27 +0200 | [diff] [blame] | 41 | #pragma weak plat_ea_handler = plat_default_ea_handler |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 42 | #endif |
Jeenu Viswambharan | 96c7df0 | 2017-11-30 12:54:15 +0000 | [diff] [blame] | 43 | |
Soby Mathew | 1ff495b | 2015-12-09 11:28:43 +0000 | [diff] [blame] | 44 | void bl31_plat_runtime_setup(void) |
| 45 | { |
Soby Mathew | 1ff495b | 2015-12-09 11:28:43 +0000 | [diff] [blame] | 46 | } |
| 47 | |
Soby Mathew | 70716d6 | 2015-07-13 16:26:11 +0100 | [diff] [blame] | 48 | /* |
| 49 | * Helper function for platform_get_pos() when platform compatibility is |
| 50 | * disabled. This is to enable SPDs using the older platform API to continue |
| 51 | * to work. |
| 52 | */ |
| 53 | unsigned int platform_core_pos_helper(unsigned long mpidr) |
| 54 | { |
| 55 | int idx = plat_core_pos_by_mpidr(mpidr); |
| 56 | assert(idx >= 0); |
| 57 | return idx; |
| 58 | } |
Antonio Nino Diaz | 391a76e | 2016-05-18 16:53:31 +0100 | [diff] [blame] | 59 | |
Jeenu Viswambharan | 04e3a7f | 2017-10-16 08:43:14 +0100 | [diff] [blame] | 60 | #if SDEI_SUPPORT |
| 61 | /* |
| 62 | * Function that handles spurious SDEI interrupts while events are masked. |
| 63 | */ |
| 64 | void plat_sdei_handle_masked_trigger(uint64_t mpidr, unsigned int intr) |
| 65 | { |
Scott Branden | e5dcf98 | 2020-08-25 13:49:32 -0700 | [diff] [blame] | 66 | WARN("Spurious SDEI interrupt %u on masked PE %" PRIx64 "\n", intr, mpidr); |
Jeenu Viswambharan | 04e3a7f | 2017-10-16 08:43:14 +0100 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | /* |
| 70 | * Default Function to validate SDEI entry point, which returns success. |
| 71 | * Platforms may override this with their own validation mechanism. |
| 72 | */ |
| 73 | int plat_sdei_validate_entry_point(uintptr_t ep, unsigned int client_mode) |
| 74 | { |
| 75 | return 0; |
| 76 | } |
| 77 | #endif |
Jeenu Viswambharan | 96c7df0 | 2017-11-30 12:54:15 +0000 | [diff] [blame] | 78 | |
Manish Pandey | 2ff5dc3 | 2022-11-01 16:16:55 +0000 | [diff] [blame] | 79 | const char *get_el_str(unsigned int el) |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 80 | { |
Arvind Ram Prakash | 29670e6 | 2024-03-04 16:33:27 -0600 | [diff] [blame] | 81 | switch (el) { |
| 82 | case MODE_EL3: |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 83 | return "EL3"; |
Arvind Ram Prakash | 29670e6 | 2024-03-04 16:33:27 -0600 | [diff] [blame] | 84 | case MODE_EL2: |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 85 | return "EL2"; |
Arvind Ram Prakash | 29670e6 | 2024-03-04 16:33:27 -0600 | [diff] [blame] | 86 | case MODE_EL1: |
| 87 | return "EL1"; |
| 88 | case MODE_EL0: |
| 89 | return "EL0"; |
| 90 | default: |
| 91 | assert(false); |
| 92 | return NULL; |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 93 | } |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 94 | } |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 95 | |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 96 | #if FFH_SUPPORT |
Govindraj Raja | 67b5762 | 2022-12-01 16:47:28 +0000 | [diff] [blame] | 97 | /* Handler for External Aborts from lower EL including RAS errors */ |
Pali Rohár | c36e97f | 2021-06-21 17:22:27 +0200 | [diff] [blame] | 98 | void plat_default_ea_handler(unsigned int ea_reason, uint64_t syndrome, void *cookie, |
Jeenu Viswambharan | 96c7df0 | 2017-11-30 12:54:15 +0000 | [diff] [blame] | 99 | void *handle, uint64_t flags) |
| 100 | { |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 101 | #if ENABLE_FEAT_RAS |
Jeenu Viswambharan | 2e2e881 | 2017-12-08 15:38:21 +0000 | [diff] [blame] | 102 | /* Call RAS EA handler */ |
| 103 | int handled = ras_ea_handler(ea_reason, syndrome, cookie, handle, flags); |
| 104 | if (handled != 0) |
| 105 | return; |
| 106 | #endif |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 107 | unsigned int level = (unsigned int)GET_EL(read_spsr_el3()); |
Jeenu Viswambharan | 2e2e881 | 2017-12-08 15:38:21 +0000 | [diff] [blame] | 108 | |
Pali Rohár | 152682c | 2021-06-22 20:23:38 +0200 | [diff] [blame] | 109 | ERROR_NL(); |
Alexei Fedorov | 813c9f9 | 2020-03-03 13:31:58 +0000 | [diff] [blame] | 110 | ERROR("Unhandled External Abort received on 0x%lx from %s\n", |
| 111 | read_mpidr_el1(), get_el_str(level)); |
Scott Branden | e5dcf98 | 2020-08-25 13:49:32 -0700 | [diff] [blame] | 112 | ERROR("exception reason=%u syndrome=0x%" PRIx64 "\n", ea_reason, syndrome); |
Govindraj Raja | 67b5762 | 2022-12-01 16:47:28 +0000 | [diff] [blame] | 113 | |
Govindraj Raja | abf9fb9 | 2023-01-16 15:11:47 +0000 | [diff] [blame] | 114 | /* We reached here due to a panic from a lower EL and assuming this is the default |
| 115 | * platform registered handler that we could call on a lower EL panic. |
| 116 | */ |
| 117 | lower_el_panic(); |
Jeenu Viswambharan | 96c7df0 | 2017-11-30 12:54:15 +0000 | [diff] [blame] | 118 | } |
Manish Pandey | f90a73c | 2023-10-10 15:42:19 +0100 | [diff] [blame] | 119 | #endif |