blob: 8167eb95e9e72bcb75ca8acf54e749980213a683 [file] [log] [blame]
Jolly Shah259afe52019-01-09 12:37:57 -08001/*
Venkatesh Yadav Abbarapu35a8be92019-04-04 14:23:32 +05302 * Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
Jay Buddhabhatti5b9f3912023-02-02 22:34:03 -08003 * Copyright (c) 2022-2023, Advanced Micro Devices, Inc. All rights reserved.
Jolly Shah259afe52019-01-09 12:37:57 -08004 *
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>
Jay Buddhabhatti5b9f3912023-02-02 22:34:03 -080018#include "zynqmp_pm_defs.h"
Jolly Shah259afe52019-01-09 12:37:57 -080019
Jolly Shah259afe52019-01-09 12:37:57 -080020
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_ */