s32g2_psci.c 324 B

1234567891011121314151617181920
  1. /*
  2. * Copyright 2024 NXP
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <lib/psci/psci.h>
  7. #include <plat/common/platform.h>
  8. int plat_setup_psci_ops(uintptr_t sec_entrypoint,
  9. const plat_psci_ops_t **psci_ops)
  10. {
  11. static const plat_psci_ops_t s32g2_psci_ops = {
  12. };
  13. *psci_ops = &s32g2_psci_ops;
  14. return 0;
  15. }