1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2020-2022, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 * 7 * Description: 8 * Definitions for SCMI and TRANSPORT module configurations. 9 */ 10 11 #ifndef SCP_PLATFORM_SCMI_H 12 #define SCP_PLATFORM_SCMI_H 13 14 /* SCMI agent identifiers */ 15 enum scp_platform_scmi_agent_id { 16 /* 0 is reserved for the platform */ 17 SCP_SCMI_AGENT_ID_PSCI = 1, 18 }; 19 20 /* SCMI service indexes */ 21 enum scp_platform_scmi_service_idx { 22 SCP_PLATFORM_SCMI_SERVICE_IDX_PSCI, 23 SCP_PLATFORM_SCMI_SERVICE_IDX_COUNT, 24 }; 25 26 #endif /* SCP_PLATFORM_SCMI_H */ 27