plat_pm_common.h 540 B

12345678910111213141516171819202122232425
  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. * 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. #ifndef PLAT_PM_COMMON_H
  12. #define PLAT_PM_COMMON_H
  13. #include <stdint.h>
  14. #include <common/debug.h>
  15. #include "pm_defs.h"
  16. #define NON_SECURE_FLAG 1U
  17. #define SECURE_FLAG 0U
  18. #endif /* PLAT_PM_COMMON_H */