1 /* 2 * Copyright (c) 2022, Xilinx, Inc. All rights reserved. 3 * Copyright (C) 2022, Advanced Micro Devices, Inc. All rights reserved. 4 * 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 18 #include <common/debug.h> 19 20 #include "pm_defs.h" 21 22 #define NON_SECURE_FLAG 1U 23 #define SECURE_FLAG 0U 24 25 #endif /* PLAT_PM_COMMON_H */ 26