Jolly Shah | 259afe5 | 2019-01-09 12:37:57 -0800 | [diff] [blame] | 1 | /* |
Venkatesh Yadav Abbarapu | 35a8be9 | 2019-04-04 14:23:32 +0530 | [diff] [blame] | 2 | * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved. |
Jolly Shah | 259afe5 | 2019-01-09 12:37:57 -0800 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Contains platform specific definitions of commonly used macros data types |
| 9 | * for PU Power Management. This file should be common for all PU's. |
| 10 | */ |
| 11 | |
| 12 | #ifndef PLAT_PM_COMMON_H |
| 13 | #define PLAT_PM_COMMON_H |
| 14 | |
| 15 | #include <stdint.h> |
| 16 | #include <common/debug.h> |
| 17 | #include "pm_defs.h" |
| 18 | |
Jolly Shah | 259afe5 | 2019-01-09 12:37:57 -0800 | [diff] [blame] | 19 | |
| 20 | #define ZYNQMP_TZ_VERSION_MAJOR 1 |
| 21 | #define ZYNQMP_TZ_VERSION_MINOR 0 |
| 22 | #define ZYNQMP_TZ_VERSION ((ZYNQMP_TZ_VERSION_MAJOR << 16) | \ |
| 23 | ZYNQMP_TZ_VERSION_MINOR) |
| 24 | #endif /* _PLAT_PM_COMMON_H_ */ |