1 /* 2 * Copyright 2025 NXP 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef IMX_SCMI_CLIENT_H 8 #define IMX_SCMI_CLIENT_H 9 10 #include <platform_def.h> 11 12 extern void *imx9_scmi_handle; 13 14 void plat_imx9_scmi_setup(void); 15 16 #define SCMI_CPU_A55_ID(cpu) ((cpu) + IMX9_SCMI_CPU_A55C0) 17 #define SCMI_CPU_A55_PD(cpu) ((cpu) + SCMI_PWR_MIX_SLICE_IDX_A55C0) 18 19 #endif /* IMX_SCMI_CLIENT_H */ 20