summaryrefslogtreecommitdiffstats
path: root/plat/arm/css/sgi/include/sgi_sdei.h
blob: f380122bb36b28c59cbe8448b8c906cd0464416e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright (c) 2021, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef SGI_SDEI_H
#define SGI_SDEI_H

#if SDEI_SUPPORT

/* ARM SDEI dynamic shared event numbers */
#define SGI_SDEI_DS_EVENT_0		U(804)
#define SGI_SDEI_DS_EVENT_1		U(805)

#define PLAT_ARM_PRIVATE_SDEI_EVENTS					      \
		SDEI_DEFINE_EVENT_0(ARM_SDEI_SGI),			      \
		SDEI_EXPLICIT_EVENT(SGI_SDEI_DS_EVENT_0, SDEI_MAPF_CRITICAL), \
		SDEI_EXPLICIT_EVENT(SGI_SDEI_DS_EVENT_1, SDEI_MAPF_CRITICAL),

#define PLAT_ARM_SHARED_SDEI_EVENTS

#endif /* SDEI_SUPPORT */

#endif /* SGI_SDEI_H */