ls1043a_psci.S 408 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright 2016 Freescale Semiconductor, Inc.
  4. * Author: Hongbo Zhang <hongbo.zhang@nxp.com>
  5. * This file implements LS102X platform PSCI SYSTEM-SUSPEND function
  6. */
  7. #include <config.h>
  8. #include <linux/linkage.h>
  9. #include <asm/psci.h>
  10. .pushsection ._secure.text, "ax"
  11. .globl psci_version
  12. psci_version:
  13. ldr w0, =0x00010000 /* PSCI v1.0 */
  14. ret
  15. .popsection