mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 18:14:24 +00:00

The Secure Partition Manager (SPM) prototype implementation is being removed. This is preparatory work for putting in place a dispatcher component that, in turn, enables partition managers at S-EL2 / S-EL1. This patch removes: - The core service files (std_svc/spm) - The Resource Descriptor headers (include/services) - SPRT protocol support and service definitions - SPCI protocol support and service definitions Change-Id: Iaade6f6422eaf9a71187b1e2a4dffd7fb8766426 Signed-off-by: Paul Beesley <paul.beesley@arm.com> Signed-off-by: Artsem Artsemenka <artsem.artsemenka@arm.com>
33 lines
761 B
C
33 lines
761 B
C
/*
|
|
* Copyright (c) 2017-2019, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <platform_def.h>
|
|
|
|
#include <bl31/ehf.h>
|
|
|
|
/*
|
|
* Enumeration of priority levels on ARM platforms.
|
|
*/
|
|
ehf_pri_desc_t arm_exceptions[] = {
|
|
#if RAS_EXTENSION
|
|
/* RAS Priority */
|
|
EHF_PRI_DESC(ARM_PRI_BITS, PLAT_RAS_PRI),
|
|
#endif
|
|
|
|
#if SDEI_SUPPORT
|
|
/* Critical priority SDEI */
|
|
EHF_PRI_DESC(ARM_PRI_BITS, PLAT_SDEI_CRITICAL_PRI),
|
|
|
|
/* Normal priority SDEI */
|
|
EHF_PRI_DESC(ARM_PRI_BITS, PLAT_SDEI_NORMAL_PRI),
|
|
#endif
|
|
#if SPM_MM
|
|
EHF_PRI_DESC(ARM_PRI_BITS, PLAT_SP_PRI),
|
|
#endif
|
|
};
|
|
|
|
/* Plug in ARM exceptions to Exception Handling Framework. */
|
|
EHF_REGISTER_PRIORITIES(arm_exceptions, ARRAY_SIZE(arm_exceptions), ARM_PRI_BITS);
|