blob: 3aabc2007242de845616b6208147bbdd9b339948 [file] [log] [blame]
Antonio Nino Diazc41f2062017-10-24 10:07:35 +01001/*
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +01002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Antonio Nino Diazc41f2062017-10-24 10:07:35 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <assert.h>
8#include <string.h>
9
10#include <platform_def.h>
11
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010012#include <arch.h>
13#include <arch_helpers.h>
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010014#include <context.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#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 Diaz8c83ad82018-11-08 14:21:19 +000021#include <sprt_host.h>
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010022
23#include "spm_private.h"
24#include "spm_shim_private.h"
25
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010026/* Setup context of the Secure Partition */
Antonio Nino Diaz28759312018-05-22 16:26:48 +010027void spm_sp_setup(sp_context_t *sp_ctx)
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010028{
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +010029 cpu_context_t *ctx = &(sp_ctx->cpu_ctx);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010030
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +010031 /*
32 * Initialize CPU context
33 * ----------------------
34 */
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010035
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +010036 entry_point_info_t ep_info = {0};
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010037
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +010038 SET_PARAM_HEAD(&ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE);
Antonio Nino Diaz268eb5d2018-06-11 11:01:54 +010039
40 /* Setup entrypoint and SPSR */
Antonio Nino Diazfa5dd1a2018-06-26 10:34:25 +010041 ep_info.pc = sp_ctx->rd.attribute.entrypoint;
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +010042 ep_info.spsr = SPSR_64(MODE_EL0, MODE_SP_EL0, DISABLE_ALL_EXCEPTIONS);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010043
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010044 /*
Antonio Nino Diazfe7b2be2018-10-30 11:54:20 +000045 * X0: Unused (MBZ).
46 * X1: Unused (MBZ).
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010047 * X2: cookie value (Implementation Defined)
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010048 * X3: cookie value (Implementation Defined)
Antonio Nino Diaz268eb5d2018-06-11 11:01:54 +010049 * X4 to X7 = 0
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010050 */
Antonio Nino Diazfe7b2be2018-10-30 11:54:20 +000051 ep_info.args.arg0 = 0;
52 ep_info.args.arg1 = 0;
Antonio Nino Diaz268eb5d2018-06-11 11:01:54 +010053 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 Diazc41f2062017-10-24 10:07:35 +010057
58 /*
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010059 * Setup translation tables
60 * ------------------------
61 */
62
Antonio Nino Diazbb7d1cd2018-10-30 11:34:23 +000063 sp_map_memory_regions(sp_ctx);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010064
65 /*
66 * MMU-related registers
67 * ---------------------
68 */
Antonio Nino Diazea4c6932018-07-11 13:07:06 +010069 xlat_ctx_t *xlat_ctx = sp_ctx->xlat_ctx_handle;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010070
Antonio Nino Diazea4c6932018-07-11 13:07:06 +010071 uint64_t mmu_cfg_params[MMU_CFG_PARAM_MAX];
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010072
Antonio Nino Diazea4c6932018-07-11 13:07:06 +010073 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 Diazc41f2062017-10-24 10:07:35 +010076
Antonio Nino Diazea4c6932018-07-11 13:07:06 +010077 write_ctx_reg(get_sysregs_ctx(ctx), CTX_MAIR_EL1,
78 mmu_cfg_params[MMU_CFG_MAIR]);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010079
Antonio Nino Diazea4c6932018-07-11 13:07:06 +010080 write_ctx_reg(get_sysregs_ctx(ctx), CTX_TCR_EL1,
81 mmu_cfg_params[MMU_CFG_TCR]);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010082
Antonio Nino Diazea4c6932018-07-11 13:07:06 +010083 write_ctx_reg(get_sysregs_ctx(ctx), CTX_TTBR0_EL1,
84 mmu_cfg_params[MMU_CFG_TTBR0]);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010085
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 Diazc41f2062017-10-24 10:07:35 +0100120 /*
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 Bailleux811934e2018-05-09 14:45:34 +0200130 * 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 Diazc41f2062017-10-24 10:07:35 +0100133 * 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 Bailleux811934e2018-05-09 14:45:34 +0200137 CPACR_EL1_FPEN(CPACR_EL1_FP_TRAP_NONE));
Antonio Nino Diaz8c83ad82018-11-08 14:21:19 +0000138
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 Diazc41f2062017-10-24 10:07:35 +0100147}