plat_pm_common.h 467 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2019, Xilinx, Inc. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /*
  7. * Contains platform specific definitions of commonly used macros data types
  8. * for PU Power Management. This file should be common for all PU's.
  9. */
  10. #ifndef PLAT_PM_COMMON_H
  11. #define PLAT_PM_COMMON_H
  12. #include <stdint.h>
  13. #include <common/debug.h>
  14. #include "pm_defs.h"
  15. #define NON_SECURE_FLAG 1U
  16. #define SECURE_FLAG 0U
  17. #endif /* PLAT_PM_COMMON_H */