blob: 5e6847204f01bb8ec6db341c3c6ec37b0a70834e [file] [log] [blame]
Amit Nagal055796f2024-06-05 12:32:38 +05301/*
2 * Copyright (c) 2022, Xilinx, Inc. All rights reserved.
3 * Copyright (c) 2022-2024, 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 */