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

/* SDEI configuration for ARM platforms */

#include <platform_def.h>
10
11
12

#include <bl31/ehf.h>
#include <services/sdei.h>
13
14

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

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

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