mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-14 08:27:00 +02:00
Update TZ_VERSION macro name to generic macro name and move to common header file so that it can be used for keystoneb. Signed-off-by: Jay Buddhabhatti <jay.buddhabhatti@xilinx.com> Acked-by: Tanmay Shah <tanmay.shah@xilinx.com> Signed-off-by: Michal Simek <michal.simek@amd.com> Change-Id: Ic3819eea78b6c7b51ffaa13081026dd191b76125
23 lines
465 B
C
23 lines
465 B
C
/*
|
|
* Copyright (c) 2019, Xilinx, Inc. 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 <common/debug.h>
|
|
#include <stdint.h>
|
|
#include "pm_defs.h"
|
|
|
|
#define NON_SECURE_FLAG 1U
|
|
#define SECURE_FLAG 0U
|
|
|
|
#endif /* PLAT_PM_COMMON_H */
|