mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-22 12:34:19 +00:00

This commit reorders the include files in accordance with the guidelines provided by Trusted Firmware-A (TF-A). The include files are rearranged to ensure a consistent and organized structure in the codebase, facilitating better readability and maintainability. https: //trustedfirmware-a.readthedocs.io/en/latest/process/coding-style.html#headers-and-inclusion https://git.trustedfirmware.org/ci/tf-a-ci-scripts.git/tree/script/static-checks/ For example, to run header check: /tf-a-ci-scripts/script/static-checks/check-include-order.py --tree ${PWD} > Includefileorder.txt Signed-off-by: Prasad Kummari <prasad.kummari@amd.com> Change-Id: Ia5802722e69859596b94f31ec40755adbf7d865b
40 lines
886 B
C
40 lines
886 B
C
/*
|
|
* Copyright (c) 2017-2020, Arm Limited and Contributors. All rights reserved.
|
|
* Copyright (c) Siemens AG, 2020-2021
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/* SDEI configuration for ARM platforms */
|
|
|
|
#include <bl31/ehf.h>
|
|
#include <common/debug.h>
|
|
#include <plat/common/platform.h>
|
|
#include <services/sdei.h>
|
|
|
|
#include <platform_def.h>
|
|
|
|
int arm_validate_ns_entrypoint(uintptr_t entrypoint)
|
|
{
|
|
uint64_t base = BL31_BASE;
|
|
uint64_t limit = BL31_LIMIT;
|
|
|
|
return (entrypoint < base || entrypoint > limit) ? 0 : -1;
|
|
}
|
|
|
|
/* Private event mappings */
|
|
static sdei_ev_map_t zynqmp_sdei_private[] = {
|
|
SDEI_DEFINE_EVENT_0(ZYNQMP_SDEI_SGI_PRIVATE),
|
|
};
|
|
|
|
/* Shared event mappings */
|
|
static sdei_ev_map_t zynqmp_sdei_shared[] = {
|
|
};
|
|
|
|
void plat_sdei_setup(void)
|
|
{
|
|
INFO("SDEI platform setup\n");
|
|
}
|
|
|
|
/* Export ARM SDEI events */
|
|
REGISTER_SDEI_MAP(zynqmp_sdei_private, zynqmp_sdei_shared);
|