Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Varun Wadekar | 9388afa | 2019-01-10 15:45:15 -0800 | [diff] [blame] | 2 | * Copyright (c) 2013-2019, 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 | #include <arch.h> |
Andrew Thoelke | 38bde41 | 2014-03-18 13:46:55 +0000 | [diff] [blame] | 8 | #include <asm_macros.S> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | #include <drivers/console.h> |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 10 | #include <platform_def.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 11 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 12 | .weak plat_report_exception |
Soby Mathew | f1785fd | 2014-08-14 12:22:32 +0100 | [diff] [blame] | 13 | .weak plat_reset_handler |
Soby Mathew | 8e2f287 | 2014-08-14 12:49:05 +0100 | [diff] [blame] | 14 | .weak plat_disable_acp |
Juan Castillo | d1413b2 | 2015-10-05 16:59:38 +0100 | [diff] [blame] | 15 | .weak bl1_plat_prepare_exit |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 16 | .weak plat_panic_handler |
Jeenu Viswambharan | e834ee1 | 2018-04-27 15:17:03 +0100 | [diff] [blame] | 17 | .weak bl31_plat_enable_mmu |
| 18 | .weak bl32_plat_enable_mmu |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 19 | |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 20 | .weak plat_handle_uncontainable_ea |
Jeenu Viswambharan | 93bc4bd | 2018-05-17 11:24:01 +0100 | [diff] [blame] | 21 | .weak plat_handle_double_fault |
Jeenu Viswambharan | 911fcc9 | 2018-07-06 16:50:06 +0100 | [diff] [blame] | 22 | .weak plat_handle_el3_ea |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 23 | |
Soby Mathew | 70716d6 | 2015-07-13 16:26:11 +0100 | [diff] [blame] | 24 | #define MPIDR_RES_BIT_MASK 0xff000000 |
| 25 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 26 | /* ----------------------------------------------------- |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 27 | * Placeholder function which should be redefined by |
| 28 | * each platform. |
| 29 | * ----------------------------------------------------- |
| 30 | */ |
Andrew Thoelke | 38bde41 | 2014-03-18 13:46:55 +0000 | [diff] [blame] | 31 | func plat_report_exception |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 32 | ret |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 33 | endfunc plat_report_exception |
Soby Mathew | 066f713 | 2014-07-14 16:57:23 +0100 | [diff] [blame] | 34 | |
Antonio Nino Diaz | d3ec543 | 2017-02-17 17:11:27 +0000 | [diff] [blame] | 35 | /* ----------------------------------------------------- |
| 36 | * Placeholder function which should be redefined by |
Masahiro Yamada | 4c165ca | 2016-09-24 18:07:46 +0900 | [diff] [blame] | 37 | * each platform. This function should preserve x19 - x29. |
Soby Mathew | f1785fd | 2014-08-14 12:22:32 +0100 | [diff] [blame] | 38 | * ----------------------------------------------------- |
| 39 | */ |
| 40 | func plat_reset_handler |
| 41 | ret |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 42 | endfunc plat_reset_handler |
Soby Mathew | 8e2f287 | 2014-08-14 12:49:05 +0100 | [diff] [blame] | 43 | |
| 44 | /* ----------------------------------------------------- |
| 45 | * Placeholder function which should be redefined by |
| 46 | * each platform. This function is allowed to use |
| 47 | * registers x0 - x17. |
| 48 | * ----------------------------------------------------- |
| 49 | */ |
| 50 | func plat_disable_acp |
| 51 | ret |
Kévin Petit | a877c25 | 2015-03-24 14:03:57 +0000 | [diff] [blame] | 52 | endfunc plat_disable_acp |
Juan Castillo | d1413b2 | 2015-10-05 16:59:38 +0100 | [diff] [blame] | 53 | |
| 54 | /* ----------------------------------------------------- |
Sandrine Bailleux | 87322b3 | 2015-11-10 15:01:57 +0000 | [diff] [blame] | 55 | * void bl1_plat_prepare_exit(entry_point_info_t *ep_info); |
Juan Castillo | d1413b2 | 2015-10-05 16:59:38 +0100 | [diff] [blame] | 56 | * Called before exiting BL1. Default: do nothing |
| 57 | * ----------------------------------------------------- |
| 58 | */ |
| 59 | func bl1_plat_prepare_exit |
| 60 | ret |
| 61 | endfunc bl1_plat_prepare_exit |
Juan Castillo | 26ae583 | 2015-09-25 15:41:14 +0100 | [diff] [blame] | 62 | |
| 63 | /* ----------------------------------------------------- |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 64 | * void plat_panic_handler(void) __dead2; |
| 65 | * Endless loop by default. |
| 66 | * ----------------------------------------------------- |
| 67 | */ |
| 68 | func plat_panic_handler |
Sandrine Bailleux | 628198b | 2016-08-18 09:24:40 +0100 | [diff] [blame] | 69 | wfi |
Antonio Nino Diaz | 1f21bcf | 2016-02-01 13:57:25 +0000 | [diff] [blame] | 70 | b plat_panic_handler |
| 71 | endfunc plat_panic_handler |
Jeenu Viswambharan | e834ee1 | 2018-04-27 15:17:03 +0100 | [diff] [blame] | 72 | |
| 73 | /* ----------------------------------------------------- |
| 74 | * void bl31_plat_enable_mmu(uint32_t flags); |
| 75 | * |
| 76 | * Enable MMU in BL31. |
| 77 | * ----------------------------------------------------- |
| 78 | */ |
| 79 | func bl31_plat_enable_mmu |
| 80 | b enable_mmu_direct_el3 |
| 81 | endfunc bl31_plat_enable_mmu |
| 82 | |
| 83 | /* ----------------------------------------------------- |
| 84 | * void bl32_plat_enable_mmu(uint32_t flags); |
| 85 | * |
| 86 | * Enable MMU in BL32. |
| 87 | * ----------------------------------------------------- |
| 88 | */ |
| 89 | func bl32_plat_enable_mmu |
| 90 | b enable_mmu_direct_el1 |
| 91 | endfunc bl32_plat_enable_mmu |
Jeenu Viswambharan | 9d4c9c1 | 2018-05-17 09:52:36 +0100 | [diff] [blame] | 92 | |
| 93 | |
| 94 | /* ----------------------------------------------------- |
| 95 | * Platform handler for Uncontainable External Abort. |
| 96 | * |
| 97 | * x0: EA reason |
| 98 | * x1: EA syndrome |
| 99 | * ----------------------------------------------------- |
| 100 | */ |
| 101 | func plat_handle_uncontainable_ea |
| 102 | b report_unhandled_exception |
| 103 | endfunc plat_handle_uncontainable_ea |
Jeenu Viswambharan | 93bc4bd | 2018-05-17 11:24:01 +0100 | [diff] [blame] | 104 | |
| 105 | /* ----------------------------------------------------- |
| 106 | * Platform handler for Double Fault. |
| 107 | * |
| 108 | * x0: EA reason |
| 109 | * x1: EA syndrome |
| 110 | * ----------------------------------------------------- |
| 111 | */ |
| 112 | func plat_handle_double_fault |
| 113 | b report_unhandled_exception |
| 114 | endfunc plat_handle_double_fault |
Jeenu Viswambharan | 911fcc9 | 2018-07-06 16:50:06 +0100 | [diff] [blame] | 115 | |
| 116 | /* ----------------------------------------------------- |
| 117 | * Platform handler for EL3 External Abort. |
| 118 | * ----------------------------------------------------- |
| 119 | */ |
| 120 | func plat_handle_el3_ea |
| 121 | b report_unhandled_exception |
| 122 | endfunc plat_handle_el3_ea |