1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2018-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_SGI575_SCMI_H
12 #define SCP_SGI575_SCMI_H
13 
14 /* SCMI agent identifiers */
15 enum scp_sgi575_scmi_agent_id {
16     /* 0 is reserved for the platform */
17     SCP_SCMI_AGENT_ID_OSPM = 1,
18     SCP_SCMI_AGENT_ID_PSCI,
19     SCP_SCMI_AGENT_ID_COUNT,
20 };
21 
22 /* SCMI service indexes */
23 enum scp_sgi575_scmi_service_idx {
24     SCP_SGI575_SCMI_SERVICE_IDX_PSCI,
25     SCP_SGI575_SCMI_SERVICE_IDX_OSPM,
26     SCP_SGI575_SCMI_SERVICE_IDX_COUNT,
27 };
28 
29 #endif /* SCP_SGI575_SCMI_H */
30