mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
refactor(spm_mm): reorganize secure partition manager code
In preparation for adding the EL3 SPMC configuration as defined in the FF-A specification, restructure the existing SPM_MM code. With this restructuring of the code, the 'spm_mm' directory is renamed as 'spm' and the code inside has been split into two sub-directories named 'common' and 'spm_mm'. The code in 'spm_mm' directory contains the code that implements the MM interface. In subsequent patches, the 'spmc' directory will be introduced under the 'spm' directory providing the code that implements the 'FF-A' interface. Currently the common functionality for S-EL1 partitions is limited to assembler functions to enter and exit an SP synchronously. Signed-off-by: Marc Bonnici <marc.bonnici@arm.com> Change-Id: I37739b9b53bc68e151ab5c1c0c6a15b3ee362241
This commit is contained in:
parent
9bd3cb5c96
commit
b61d94a1a2
11 changed files with 77 additions and 17 deletions
|
@ -18,7 +18,8 @@ ifeq (${SPM_MM},1)
|
|||
$(error EL3_EXCEPTION_HANDLING must be 1 for SPM-MM support)
|
||||
else
|
||||
$(info Including SPM Management Mode (MM) makefile)
|
||||
include services/std_svc/spm_mm/spm_mm.mk
|
||||
include services/std_svc/spm/common/spm.mk
|
||||
include services/std_svc/spm/spm_mm/spm_mm.mk
|
||||
endif
|
||||
endif
|
||||
|
||||
|
@ -40,6 +41,7 @@ BL31_SOURCES += bl31/bl31_main.c \
|
|||
services/std_svc/std_svc_setup.c \
|
||||
${PSCI_LIB_SOURCES} \
|
||||
${SPMD_SOURCES} \
|
||||
${SPM_MM_SOURCES} \
|
||||
${SPM_SOURCES}
|
||||
|
||||
ifeq (${DISABLE_MTPMU},1)
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/*
|
||||
* Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <asm_macros.S>
|
||||
#include "../spm_mm_private.h"
|
||||
#include "spm_common.h"
|
||||
|
||||
.global spm_secure_partition_enter
|
||||
.global spm_secure_partition_exit
|
42
services/std_svc/spm/common/include/spm_common.h
Normal file
42
services/std_svc/spm/common/include/spm_common.h
Normal file
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef SPM_COMMON_H
|
||||
#define SPM_COMMON_H
|
||||
|
||||
#include <context.h>
|
||||
|
||||
/*******************************************************************************
|
||||
* Constants that allow assembler code to preserve callee-saved registers of the
|
||||
* C runtime context while performing a security state switch.
|
||||
******************************************************************************/
|
||||
#define SP_C_RT_CTX_X19 0x0
|
||||
#define SP_C_RT_CTX_X20 0x8
|
||||
#define SP_C_RT_CTX_X21 0x10
|
||||
#define SP_C_RT_CTX_X22 0x18
|
||||
#define SP_C_RT_CTX_X23 0x20
|
||||
#define SP_C_RT_CTX_X24 0x28
|
||||
#define SP_C_RT_CTX_X25 0x30
|
||||
#define SP_C_RT_CTX_X26 0x38
|
||||
#define SP_C_RT_CTX_X27 0x40
|
||||
#define SP_C_RT_CTX_X28 0x48
|
||||
#define SP_C_RT_CTX_X29 0x50
|
||||
#define SP_C_RT_CTX_X30 0x58
|
||||
|
||||
#define SP_C_RT_CTX_SIZE 0x60
|
||||
#define SP_C_RT_CTX_ENTRIES (SP_C_RT_CTX_SIZE >> DWORD_SHIFT)
|
||||
|
||||
#ifndef __ASSEMBLER__
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
/* Assembly helpers */
|
||||
uint64_t spm_secure_partition_enter(uint64_t *c_rt_ctx);
|
||||
void __dead2 spm_secure_partition_exit(uint64_t c_rt_ctx, uint64_t ret);
|
||||
|
||||
#endif /* __ASSEMBLER__ */
|
||||
|
||||
#endif /* SPM_COMMON_H */
|
17
services/std_svc/spm/common/spm.mk
Normal file
17
services/std_svc/spm/common/spm.mk
Normal file
|
@ -0,0 +1,17 @@
|
|||
#
|
||||
# Copyright (c) 2022, ARM Limited and Contributors. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
#
|
||||
|
||||
ifneq (${ARCH},aarch64)
|
||||
$(error "Error: SPM is only supported on aarch64.")
|
||||
endif
|
||||
|
||||
INCLUDES += -Iservices/std_svc/spm/common/include
|
||||
|
||||
SPM_SOURCES := $(addprefix services/std_svc/spm/common/,\
|
||||
${ARCH}/spm_helpers.S)
|
||||
|
||||
# Let the top-level Makefile know that we intend to include a BL32 image
|
||||
NEED_BL32 := yes
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
|
||||
# Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
#
|
||||
|
@ -17,11 +17,10 @@ ifeq (${ENABLE_SME_FOR_NS},1)
|
|||
$(error "Error: SPM_MM is not compatible with ENABLE_SME_FOR_NS")
|
||||
endif
|
||||
|
||||
SPM_SOURCES := $(addprefix services/std_svc/spm_mm/, \
|
||||
${ARCH}/spm_mm_helpers.S \
|
||||
SPM_MM_SOURCES := $(addprefix services/std_svc/spm/spm_mm/, \
|
||||
${ARCH}/spm_mm_shim_exceptions.S \
|
||||
spm_mm_main.c \
|
||||
spm_mm_setup.c \
|
||||
spm_mm_main.c \
|
||||
spm_mm_setup.c \
|
||||
spm_mm_xlat.c)
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
@ -22,6 +22,7 @@
|
|||
#include <services/spm_mm_svc.h>
|
||||
#include <smccc_helpers.h>
|
||||
|
||||
#include "spm_common.h"
|
||||
#include "spm_mm_private.h"
|
||||
|
||||
/*******************************************************************************
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
@ -8,6 +8,7 @@
|
|||
#define SPM_MM_PRIVATE_H
|
||||
|
||||
#include <context.h>
|
||||
#include "spm_common.h"
|
||||
|
||||
/*******************************************************************************
|
||||
* Constants that allow assembler code to preserve callee-saved registers of the
|
||||
|
@ -51,9 +52,6 @@ typedef struct sp_context {
|
|||
spinlock_t state_lock;
|
||||
} sp_context_t;
|
||||
|
||||
/* Assembly helpers */
|
||||
uint64_t spm_secure_partition_enter(uint64_t *c_rt_ctx);
|
||||
void __dead2 spm_secure_partition_exit(uint64_t c_rt_ctx, uint64_t ret);
|
||||
|
||||
void spm_sp_setup(sp_context_t *sp_ctx);
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2017-2020, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2021, NVIDIA Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
|
@ -19,6 +19,7 @@
|
|||
#include <plat/common/platform.h>
|
||||
#include <services/spm_mm_partition.h>
|
||||
|
||||
#include "spm_common.h"
|
||||
#include "spm_mm_private.h"
|
||||
#include "spm_mm_shim_private.h"
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2018-2022, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
Loading…
Add table
Reference in a new issue