blob: 8731a2031468d8e8816207226ed1ef409a488195 [file] [log] [blame]
Jolly Shah259afe52019-01-09 12:37:57 -08001/*
Michal Simek2a47faa2023-04-14 08:43:51 +02002 * 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_ */