blob: 665871b4add1146850614b8f3beb99e99411c18b [file] [log] [blame]
Jeenu Viswambharanb1837452017-10-24 11:47:13 +01001/*
Jeenu Viswambharana5b5b8d2018-02-06 12:21:39 +00002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Jeenu Viswambharanb1837452017-10-24 11:47:13 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <ehf.h>
8#include <platform_def.h>
9
10/*
11 * Enumeration of priority levels on ARM platforms.
12 */
13ehf_pri_desc_t arm_exceptions[] = {
Jeenu Viswambharana5b5b8d2018-02-06 12:21:39 +000014#if RAS_EXTENSION
15 /* RAS Priority */
16 EHF_PRI_DESC(ARM_PRI_BITS, PLAT_RAS_PRI),
17#endif
18
Jeenu Viswambharanb1837452017-10-24 11:47:13 +010019#if SDEI_SUPPORT
20 /* Critical priority SDEI */
21 EHF_PRI_DESC(ARM_PRI_BITS, PLAT_SDEI_CRITICAL_PRI),
22
23 /* Normal priority SDEI */
24 EHF_PRI_DESC(ARM_PRI_BITS, PLAT_SDEI_NORMAL_PRI),
25#endif
26};
27
28/* Plug in ARM exceptions to Exception Handling Framework. */
29EHF_REGISTER_PRIORITIES(arm_exceptions, ARRAY_SIZE(arm_exceptions), ARM_PRI_BITS);