1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef CONFIG_SCMI_H 9 #define CONFIG_SCMI_H 10 11 /* SCMI agent identifiers */ 12 enum scp_synquacer_scmi_agent_id { 13 /* 0 is reserved for the platform */ 14 SCP_SCMI_AGENT_ID_PSCI = 1, 15 }; 16 17 /* SCMI service indexes */ 18 enum scp_synquacer_scmi_service_idx { 19 SCP_SYNQUACER_SCMI_SERVICE_IDX_PSCI, 20 SCP_SYNQUACER_SCMI_SERVICE_IDX_COUNT, 21 }; 22 23 #endif /* CONFIG_SCMI_H */ 24