Tejas Patel | 354fe57 | 2018-12-14 00:55:37 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2019, Xilinx, Inc. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Contains platform specific definitions of commonly used macros data types |
| 9 | * for PU Power Management. This file should be common for all PU's. |
| 10 | */ |
| 11 | |
| 12 | #ifndef PLAT_PM_COMMON_H |
| 13 | #define PLAT_PM_COMMON_H |
| 14 | |
Tejas Patel | 354fe57 | 2018-12-14 00:55:37 -0800 | [diff] [blame] | 15 | #include <stdint.h> |
Prasad Kummari | 536e110 | 2023-06-22 10:50:02 +0530 | [diff] [blame] | 16 | |
| 17 | #include <common/debug.h> |
| 18 | |
Tejas Patel | 354fe57 | 2018-12-14 00:55:37 -0800 | [diff] [blame] | 19 | #include "pm_defs.h" |
| 20 | |
Tejas Patel | 18072da | 2021-02-25 20:16:56 -0800 | [diff] [blame] | 21 | #define NON_SECURE_FLAG 1U |
| 22 | #define SECURE_FLAG 0U |
| 23 | |
Tejas Patel | 354fe57 | 2018-12-14 00:55:37 -0800 | [diff] [blame] | 24 | #endif /* PLAT_PM_COMMON_H */ |