sleep.S 600 B

123456789101112131415161718192021222324252627282930313233
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (c) 2011-2014 Samsung Electronics Co., Ltd.
  4. * http://www.samsung.com
  5. *
  6. * S5PV210 Sleep Code
  7. * Based on S3C64XX sleep code by:
  8. * Ben Dooks, (c) 2008 Simtec Electronics
  9. */
  10. #include <linux/linkage.h>
  11. .text
  12. .align
  13. /*
  14. * sleep magic, to allow the bootloader to check for an valid
  15. * image to resume to. Must be the first word before the
  16. * s3c_cpu_resume entry.
  17. */
  18. .word 0x2bedf00d
  19. /*
  20. * s3c_cpu_resume
  21. *
  22. * resume code entry for bootloader to call
  23. */
  24. ENTRY(s5pv210_cpu_resume)
  25. b cpu_resume
  26. ENDPROC(s5pv210_cpu_resume)