juno_pm.c 406 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <drivers/arm/css/scmi.h>
  7. #include <plat/arm/common/plat_arm.h>
  8. const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops)
  9. {
  10. #if CSS_USE_SCMI_SDS_DRIVER
  11. return css_scmi_override_pm_ops(ops);
  12. #else
  13. return ops;
  14. #endif /* CSS_USE_SCMI_SDS_DRIVER */
  15. }