Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | 2ac9a44 | 2018-05-23 11:40:46 +0100 | [diff] [blame] | 2 | * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved. |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 7 | #include <assert.h> |
| 8 | #include <string.h> |
| 9 | |
| 10 | #include <platform_def.h> |
| 11 | |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 12 | #include <arch.h> |
| 13 | #include <arch_helpers.h> |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 14 | #include <context.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 15 | #include <common/debug.h> |
| 16 | #include <lib/el3_runtime/context_mgmt.h> |
| 17 | #include <lib/xlat_tables/xlat_tables_v2.h> |
| 18 | #include <plat/common/common_def.h> |
| 19 | #include <plat/common/platform.h> |
| 20 | #include <services/sp_res_desc.h> |
Antonio Nino Diaz | 8c83ad8 | 2018-11-08 14:21:19 +0000 | [diff] [blame] | 21 | #include <sprt_host.h> |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 22 | |
| 23 | #include "spm_private.h" |
| 24 | #include "spm_shim_private.h" |
| 25 | |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 26 | /* Setup context of the Secure Partition */ |
Antonio Nino Diaz | 2875931 | 2018-05-22 16:26:48 +0100 | [diff] [blame] | 27 | void spm_sp_setup(sp_context_t *sp_ctx) |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 28 | { |
Antonio Nino Diaz | 2ac9a44 | 2018-05-23 11:40:46 +0100 | [diff] [blame] | 29 | cpu_context_t *ctx = &(sp_ctx->cpu_ctx); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 30 | |
Antonio Nino Diaz | 2ac9a44 | 2018-05-23 11:40:46 +0100 | [diff] [blame] | 31 | /* |
| 32 | * Initialize CPU context |
| 33 | * ---------------------- |
| 34 | */ |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 35 | |
Antonio Nino Diaz | 2ac9a44 | 2018-05-23 11:40:46 +0100 | [diff] [blame] | 36 | entry_point_info_t ep_info = {0}; |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 37 | |
Antonio Nino Diaz | 2ac9a44 | 2018-05-23 11:40:46 +0100 | [diff] [blame] | 38 | SET_PARAM_HEAD(&ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE); |
Antonio Nino Diaz | 268eb5d | 2018-06-11 11:01:54 +0100 | [diff] [blame] | 39 | |
| 40 | /* Setup entrypoint and SPSR */ |
Antonio Nino Diaz | fa5dd1a | 2018-06-26 10:34:25 +0100 | [diff] [blame] | 41 | ep_info.pc = sp_ctx->rd.attribute.entrypoint; |
Antonio Nino Diaz | 2ac9a44 | 2018-05-23 11:40:46 +0100 | [diff] [blame] | 42 | ep_info.spsr = SPSR_64(MODE_EL0, MODE_SP_EL0, DISABLE_ALL_EXCEPTIONS); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 43 | |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 44 | /* |
Antonio Nino Diaz | fe7b2be | 2018-10-30 11:54:20 +0000 | [diff] [blame] | 45 | * X0: Unused (MBZ). |
| 46 | * X1: Unused (MBZ). |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 47 | * X2: cookie value (Implementation Defined) |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 48 | * X3: cookie value (Implementation Defined) |
Antonio Nino Diaz | 268eb5d | 2018-06-11 11:01:54 +0100 | [diff] [blame] | 49 | * X4 to X7 = 0 |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 50 | */ |
Antonio Nino Diaz | fe7b2be | 2018-10-30 11:54:20 +0000 | [diff] [blame] | 51 | ep_info.args.arg0 = 0; |
| 52 | ep_info.args.arg1 = 0; |
Antonio Nino Diaz | 268eb5d | 2018-06-11 11:01:54 +0100 | [diff] [blame] | 53 | ep_info.args.arg2 = PLAT_SPM_COOKIE_0; |
| 54 | ep_info.args.arg3 = PLAT_SPM_COOKIE_1; |
| 55 | |
| 56 | cm_setup_context(ctx, &ep_info); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 57 | |
| 58 | /* |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 59 | * Setup translation tables |
| 60 | * ------------------------ |
| 61 | */ |
| 62 | |
Antonio Nino Diaz | bb7d1cd | 2018-10-30 11:34:23 +0000 | [diff] [blame] | 63 | sp_map_memory_regions(sp_ctx); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 64 | |
| 65 | /* |
| 66 | * MMU-related registers |
| 67 | * --------------------- |
| 68 | */ |
Antonio Nino Diaz | ea4c693 | 2018-07-11 13:07:06 +0100 | [diff] [blame] | 69 | xlat_ctx_t *xlat_ctx = sp_ctx->xlat_ctx_handle; |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 70 | |
Antonio Nino Diaz | ea4c693 | 2018-07-11 13:07:06 +0100 | [diff] [blame] | 71 | uint64_t mmu_cfg_params[MMU_CFG_PARAM_MAX]; |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 72 | |
Antonio Nino Diaz | ea4c693 | 2018-07-11 13:07:06 +0100 | [diff] [blame] | 73 | setup_mmu_cfg((uint64_t *)&mmu_cfg_params, 0, xlat_ctx->base_table, |
| 74 | xlat_ctx->pa_max_address, xlat_ctx->va_max_address, |
| 75 | EL1_EL0_REGIME); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 76 | |
Antonio Nino Diaz | ea4c693 | 2018-07-11 13:07:06 +0100 | [diff] [blame] | 77 | write_ctx_reg(get_sysregs_ctx(ctx), CTX_MAIR_EL1, |
| 78 | mmu_cfg_params[MMU_CFG_MAIR]); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 79 | |
Antonio Nino Diaz | ea4c693 | 2018-07-11 13:07:06 +0100 | [diff] [blame] | 80 | write_ctx_reg(get_sysregs_ctx(ctx), CTX_TCR_EL1, |
| 81 | mmu_cfg_params[MMU_CFG_TCR]); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 82 | |
Antonio Nino Diaz | ea4c693 | 2018-07-11 13:07:06 +0100 | [diff] [blame] | 83 | write_ctx_reg(get_sysregs_ctx(ctx), CTX_TTBR0_EL1, |
| 84 | mmu_cfg_params[MMU_CFG_TTBR0]); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 85 | |
| 86 | /* Setup SCTLR_EL1 */ |
| 87 | u_register_t sctlr_el1 = read_ctx_reg(get_sysregs_ctx(ctx), CTX_SCTLR_EL1); |
| 88 | |
| 89 | sctlr_el1 |= |
| 90 | /*SCTLR_EL1_RES1 |*/ |
| 91 | /* Don't trap DC CVAU, DC CIVAC, DC CVAC, DC CVAP, or IC IVAU */ |
| 92 | SCTLR_UCI_BIT | |
| 93 | /* RW regions at xlat regime EL1&0 are forced to be XN. */ |
| 94 | SCTLR_WXN_BIT | |
| 95 | /* Don't trap to EL1 execution of WFI or WFE at EL0. */ |
| 96 | SCTLR_NTWI_BIT | SCTLR_NTWE_BIT | |
| 97 | /* Don't trap to EL1 accesses to CTR_EL0 from EL0. */ |
| 98 | SCTLR_UCT_BIT | |
| 99 | /* Don't trap to EL1 execution of DZ ZVA at EL0. */ |
| 100 | SCTLR_DZE_BIT | |
| 101 | /* Enable SP Alignment check for EL0 */ |
| 102 | SCTLR_SA0_BIT | |
| 103 | /* Allow cacheable data and instr. accesses to normal memory. */ |
| 104 | SCTLR_C_BIT | SCTLR_I_BIT | |
| 105 | /* Alignment fault checking enabled when at EL1 and EL0. */ |
| 106 | SCTLR_A_BIT | |
| 107 | /* Enable MMU. */ |
| 108 | SCTLR_M_BIT |
| 109 | ; |
| 110 | |
| 111 | sctlr_el1 &= ~( |
| 112 | /* Explicit data accesses at EL0 are little-endian. */ |
| 113 | SCTLR_E0E_BIT | |
| 114 | /* Accesses to DAIF from EL0 are trapped to EL1. */ |
| 115 | SCTLR_UMA_BIT |
| 116 | ); |
| 117 | |
| 118 | write_ctx_reg(get_sysregs_ctx(ctx), CTX_SCTLR_EL1, sctlr_el1); |
| 119 | |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 120 | /* |
| 121 | * Setup other system registers |
| 122 | * ---------------------------- |
| 123 | */ |
| 124 | |
| 125 | /* Shim Exception Vector Base Address */ |
| 126 | write_ctx_reg(get_sysregs_ctx(ctx), CTX_VBAR_EL1, |
| 127 | SPM_SHIM_EXCEPTIONS_PTR); |
| 128 | |
| 129 | /* |
Sandrine Bailleux | 811934e | 2018-05-09 14:45:34 +0200 | [diff] [blame] | 130 | * FPEN: Allow the Secure Partition to access FP/SIMD registers. |
| 131 | * Note that SPM will not do any saving/restoring of these registers on |
| 132 | * behalf of the SP. This falls under the SP's responsibility. |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 133 | * TTA: Enable access to trace registers. |
| 134 | * ZEN (v8.2): Trap SVE instructions and access to SVE registers. |
| 135 | */ |
| 136 | write_ctx_reg(get_sysregs_ctx(ctx), CTX_CPACR_EL1, |
Sandrine Bailleux | 811934e | 2018-05-09 14:45:34 +0200 | [diff] [blame] | 137 | CPACR_EL1_FPEN(CPACR_EL1_FP_TRAP_NONE)); |
Antonio Nino Diaz | 8c83ad8 | 2018-11-08 14:21:19 +0000 | [diff] [blame] | 138 | |
| 139 | /* |
| 140 | * Prepare shared buffers |
| 141 | * ---------------------- |
| 142 | */ |
| 143 | |
| 144 | /* Initialize SPRT queues */ |
| 145 | sprt_initialize_queues((void *)sp_ctx->spm_sp_buffer_base, |
| 146 | sp_ctx->spm_sp_buffer_size); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 147 | } |