1 /*
2  * Copyright (c) 2013-2020, Arm Limited and Contributors. All rights reserved.
3  * Copyright (c) 2022-2023, 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 "zynqmp_pm_defs.h"
19 
20 
21 #define ZYNQMP_TZ_VERSION_MAJOR		1
22 #define ZYNQMP_TZ_VERSION_MINOR		0
23 #define ZYNQMP_TZ_VERSION		((ZYNQMP_TZ_VERSION_MAJOR << 16) | \
24 					ZYNQMP_TZ_VERSION_MINOR)
25 #endif /* _PLAT_PM_COMMON_H_ */
26