GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
* 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 <services/sdei.h>
|
||||
|
||||
#include <plat/common/platform.h>
|
||||
#include <platform_def.h>
|
||||
|
||||
int arm_validate_ns_entrypoint(uintptr_t entrypoint)
|
||||
{
|
||||
return (entrypoint < BL31_BASE || entrypoint > BL31_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);
|
||||
Reference in New Issue
Block a user