psci.S 371 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright 2016 NXP Semiconductor.
  3. * Author: Wang Dongsheng <dongsheng.wang@freescale.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #include <config.h>
  8. #include <linux/linkage.h>
  9. #include <asm/armv7.h>
  10. #include <asm/psci.h>
  11. .pushsection ._secure.text, "ax"
  12. .arch_extension sec
  13. .align 5
  14. .globl psci_system_off
  15. psci_system_off:
  16. 1: wfi
  17. b 1b
  18. .popsection