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