1 /* 2 * Copyright (c) 2013-2020, Arm Limited and Contributors. All rights reserved. 3 * Copyright (c) 2022-2025, Advanced Micro Devices, Inc. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 /* 9 * Contains platform specific definitions of commonly used macros data types 10 * for PU Power Management. This file should be common for all PU's. 11 */ 12 13 #ifndef PLAT_PM_COMMON_H 14 #define PLAT_PM_COMMON_H 15 16 #include <stdint.h> 17 #include <common/debug.h> 18 #include <common/ep_info.h> 19 #include "zynqmp_pm_defs.h" 20 21 22 #define ZYNQMP_TZ_VERSION_MAJOR 1 23 #define ZYNQMP_TZ_VERSION_MINOR 0 24 #define ZYNQMP_TZ_VERSION ((ZYNQMP_TZ_VERSION_MAJOR << 16) | \ 25 ZYNQMP_TZ_VERSION_MINOR) 26 #endif /* _PLAT_PM_COMMON_H_ */ 27