mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 16:37:05 +02:00
Rename the macro ZYNQMP_IPI_CRC_CHECK to IPI_CRC_CHECK and move the related defines to the common include. Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@xilinx.com> Change-Id: I6d30b081ac607572a0b23e10ca8031bc90489e58
25 lines
601 B
C
25 lines
601 B
C
/*
|
|
* Copyright (c) 2013-2020, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* Contains platform specific definitions of commonly used macros data types
|
|
* for PU Power Management. This file should be common for all PU's.
|
|
*/
|
|
|
|
#ifndef PLAT_PM_COMMON_H
|
|
#define PLAT_PM_COMMON_H
|
|
|
|
#include <stdint.h>
|
|
#include <common/debug.h>
|
|
#include "pm_defs.h"
|
|
|
|
|
|
#define ZYNQMP_TZ_VERSION_MAJOR 1
|
|
#define ZYNQMP_TZ_VERSION_MINOR 0
|
|
#define ZYNQMP_TZ_VERSION ((ZYNQMP_TZ_VERSION_MAJOR << 16) | \
|
|
ZYNQMP_TZ_VERSION_MINOR)
|
|
#endif /* _PLAT_PM_COMMON_H_ */
|