1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef RD_ALARM_IDX_H 9 #define RD_ALARM_IDX_H 10 11 /* Alarm indices */ 12 enum rd_alarm_idx { 13 #ifdef BUILD_HAS_SCMI_PERF_FAST_CHANNELS 14 RD_SCMI_FAST_CHANNEL_IDX, 15 #endif 16 #ifdef BUILD_HAS_DEBUGGER 17 RD_DEBUGGER_CLI_IDX, 18 #endif 19 RD_ALARM_IDX_COUNT, 20 }; 21 22 #endif /* RD_ALARM_IDX_H */ 23