arm_sdei.c 526 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/* SDEI configuration for ARM platforms */

#include <ehf.h>
#include <platform_def.h>
#include <sdei.h>

/* Private event mappings */
14
15
static sdei_ev_map_t arm_sdei_private[] = {
	PLAT_ARM_PRIVATE_SDEI_EVENTS
16
17
18
};

/* Shared event mappings */
19
20
static sdei_ev_map_t arm_sdei_shared[] = {
	PLAT_ARM_SHARED_SDEI_EVENTS
21
22
23
};

/* Export ARM SDEI events */
24
REGISTER_SDEI_MAP(arm_sdei_private, arm_sdei_shared);