aboutsummaryrefslogtreecommitdiff
path: root/product/rcar/include/rcar_scmi.h
diff options
context:
space:
mode:
Diffstat (limited to 'product/rcar/include/rcar_scmi.h')
-rw-r--r--product/rcar/include/rcar_scmi.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/product/rcar/include/rcar_scmi.h b/product/rcar/include/rcar_scmi.h
new file mode 100644
index 00000000..cf4773dd
--- /dev/null
+++ b/product/rcar/include/rcar_scmi.h
@@ -0,0 +1,25 @@
+/*
+ * Renesas SCP/MCP Software
+ * Copyright (c) 2020, Renesas Electronics Corporation. All rights reserved.
+ *
+ * SPDX-License-Identifier: BSD-3-Clause
+ */
+
+#ifndef RCAR_SCMI_H
+#define RCAR_SCMI_H
+
+/* SCMI agent identifiers */
+enum rcar_scmi_agent_id {
+ /* 0 is reserved for the platform */
+ SCMI_AGENT_ID_OSPM = 1,
+ SCMI_AGENT_ID_PSCI,
+ SCMI_AGENT_ID_COUNT,
+};
+
+/* SCMI service indexes */
+enum rcar_scmi_service_idx {
+ RCAR_SCMI_SERVICE_IDX_PSCI,
+ RCAR_SCMI_SERVICE_IDX_OSPM_0,
+ RCAR_SCMI_SERVICE_IDX_COUNT,
+};
+#endif /* RCAR_SCMI_H */