sleep.S 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* linux/arch/arm/plat-s3c64xx/sleep.S
  2. *
  3. * Copyright 2008 Openmoko, Inc.
  4. * Copyright 2008 Simtec Electronics
  5. * Ben Dooks <ben@simtec.co.uk>
  6. * http://armlinux.simtec.co.uk/
  7. *
  8. * S3C64XX CPU sleep code
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/linkage.h>
  15. #include <asm/assembler.h>
  16. #include <mach/map.h>
  17. #undef S3C64XX_VA_GPIO
  18. #define S3C64XX_VA_GPIO (0x0)
  19. #include <mach/regs-gpio.h>
  20. #define LL_UART (S3C_PA_UART + (0x400 * CONFIG_S3C_LOWLEVEL_UART_PORT))
  21. .text
  22. /* Sleep magic, the word before the resume entry point so that the
  23. * bootloader can check for a resumeable image. */
  24. .word 0x2bedf00d
  25. /* s3c_cpu_reusme
  26. *
  27. * This is the entry point, stored by whatever method the bootloader
  28. * requires to get the kernel runnign again. This code expects to be
  29. * entered with no caches live and the MMU disabled. It will then
  30. * restore the MMU and other basic CP registers saved and restart
  31. * the kernel C code to finish the resume code.
  32. */
  33. ENTRY(s3c_cpu_resume)
  34. msr cpsr_c, #PSR_I_BIT | PSR_F_BIT | SVC_MODE
  35. ldr r2, =LL_UART /* for debug */
  36. #ifdef CONFIG_S3C_PM_DEBUG_LED_SMDK
  37. #define S3C64XX_GPNCON (S3C64XX_GPN_BASE + 0x00)
  38. #define S3C64XX_GPNDAT (S3C64XX_GPN_BASE + 0x04)
  39. #define S3C64XX_GPN_CONMASK(__gpio) (0x3 << ((__gpio) * 2))
  40. #define S3C64XX_GPN_OUTPUT(__gpio) (0x1 << ((__gpio) * 2))
  41. /* Initialise the GPIO state if we are debugging via the SMDK LEDs,
  42. * as the uboot version supplied resets these to inputs during the
  43. * resume checks.
  44. */
  45. ldr r3, =S3C64XX_PA_GPIO
  46. ldr r0, [ r3, #S3C64XX_GPNCON ]
  47. bic r0, r0, #(S3C64XX_GPN_CONMASK(12) | S3C64XX_GPN_CONMASK(13) | \
  48. S3C64XX_GPN_CONMASK(14) | S3C64XX_GPN_CONMASK(15))
  49. orr r0, r0, #(S3C64XX_GPN_OUTPUT(12) | S3C64XX_GPN_OUTPUT(13) | \
  50. S3C64XX_GPN_OUTPUT(14) | S3C64XX_GPN_OUTPUT(15))
  51. str r0, [ r3, #S3C64XX_GPNCON ]
  52. ldr r0, [ r3, #S3C64XX_GPNDAT ]
  53. bic r0, r0, #0xf << 12 @ GPN12..15
  54. orr r0, r0, #1 << 15 @ GPN15
  55. str r0, [ r3, #S3C64XX_GPNDAT ]
  56. #endif
  57. b cpu_resume