1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef SCP_PLATFORM_IRQ_H
9 #define SCP_PLATFORM_IRQ_H
10 
11 enum scp_platform_interrupt {
12     TIMREFCLK_IRQ = 33, /* REFCLK Physical Timer */
13     SOC_WAKEUP0_IRQ = 16, /* SoC Expansion Wakeup */
14 
15     PPU_CORES0_IRQ = 50, /* Consolidated PPU Interrupt for cores
16                             1-32, 129-160 */
17     PPU_CORES1_IRQ = 51, /* Consolidated PPU Interrupt for cores
18                             33-64, 161-192 */
19     PPU_CORES2_IRQ = 52, /* Consolidated PPU Interrupt for cores
20                             65-96, 193-224 */
21     PPU_CORES3_IRQ = 53, /* Consolidated PPU Interrupt for cores
22                             97-128, 225-256 */
23     PPU_CLUSTERS_IRQ = 54, /* Consolidated clusters PPU */
24 
25     MHU_AP_SEC_IRQ = 83, /* MHU secure irq bewteen SCP and AP */
26 };
27 
28 #endif /* SCP_PLATFORM_IRQ_H */
29