blob: 6485df74b8284787fafcb3488d0e336acf1831a7 [file] [log] [blame]
Michal Simekdc708ac2022-09-19 13:52:54 +02001/*
2 * Copyright (c) 2022, Xilinx, Inc. All rights reserved.
Michal Simek01297072023-04-25 14:14:06 +02003 * Copyright (c) 2022, Advanced Micro Devices, Inc. All rights reserved.
Michal Simekdc708ac2022-09-19 13:52:54 +02004 *
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 */