pm-core.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* linux/arch/arm/mach-s5p64x0/include/mach/pm-core.h
  2. *
  3. * Copyright (c) 2011 Samsung Electronics Co., Ltd.
  4. * http://www.samsung.com
  5. *
  6. * S5P64X0 - PM core support for arch/arm/plat-samsung/pm.c
  7. *
  8. * Based on PM core support for S3C64XX by Ben Dooks
  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 <mach/regs-gpio.h>
  15. static inline void s3c_pm_debug_init_uart(void)
  16. {
  17. u32 tmp = __raw_readl(S5P64X0_CLK_GATE_PCLK);
  18. /*
  19. * As a note, since the S5P64X0 UARTs generally have multiple
  20. * clock sources, we simply enable PCLK at the moment and hope
  21. * that the resume settings for the UART are suitable for the
  22. * use with PCLK.
  23. */
  24. tmp |= S5P64X0_CLK_GATE_PCLK_UART0;
  25. tmp |= S5P64X0_CLK_GATE_PCLK_UART1;
  26. tmp |= S5P64X0_CLK_GATE_PCLK_UART2;
  27. tmp |= S5P64X0_CLK_GATE_PCLK_UART3;
  28. __raw_writel(tmp, S5P64X0_CLK_GATE_PCLK);
  29. udelay(10);
  30. }
  31. static inline void s3c_pm_arch_prepare_irqs(void)
  32. {
  33. /* VIC should have already been taken care of */
  34. /* clear any pending EINT0 interrupts */
  35. __raw_writel(__raw_readl(S5P64X0_EINT0PEND), S5P64X0_EINT0PEND);
  36. }
  37. static inline void s3c_pm_arch_stop_clocks(void) { }
  38. static inline void s3c_pm_arch_show_resume_irqs(void) { }
  39. /*
  40. * make these defines, we currently do not have any need to change
  41. * the IRQ wake controls depending on the CPU we are running on
  42. */
  43. #define s3c_irqwake_eintallow ((1 << 16) - 1)
  44. #define s3c_irqwake_intallow (~0)
  45. static inline void s3c_pm_arch_update_uart(void __iomem *regs,
  46. struct pm_uart_save *save)
  47. {
  48. u32 ucon = __raw_readl(regs + S3C2410_UCON);
  49. u32 ucon_clk = ucon & S3C6400_UCON_CLKMASK;
  50. u32 save_clk = save->ucon & S3C6400_UCON_CLKMASK;
  51. u32 new_ucon;
  52. u32 delta;
  53. /*
  54. * S5P64X0 UART blocks only support level interrupts, so ensure that
  55. * when we restore unused UART blocks we force the level interrupt
  56. * settings.
  57. */
  58. save->ucon |= S3C2410_UCON_TXILEVEL | S3C2410_UCON_RXILEVEL;
  59. /*
  60. * We have a constraint on changing the clock type of the UART
  61. * between UCLKx and PCLK, so ensure that when we restore UCON
  62. * that the CLK field is correctly modified if the bootloader
  63. * has changed anything.
  64. */
  65. if (ucon_clk != save_clk) {
  66. new_ucon = save->ucon;
  67. delta = ucon_clk ^ save_clk;
  68. /*
  69. * change from UCLKx => wrong PCLK,
  70. * either UCLK can be tested for by a bit-test
  71. * with UCLK0
  72. */
  73. if (ucon_clk & S3C6400_UCON_UCLK0 &&
  74. !(save_clk & S3C6400_UCON_UCLK0) &&
  75. delta & S3C6400_UCON_PCLK2) {
  76. new_ucon &= ~S3C6400_UCON_UCLK0;
  77. } else if (delta == S3C6400_UCON_PCLK2) {
  78. /*
  79. * as a precaution, don't change from
  80. * PCLK2 => PCLK or vice-versa
  81. */
  82. new_ucon ^= S3C6400_UCON_PCLK2;
  83. }
  84. S3C_PMDBG("ucon change %04x => %04x (save=%04x)\n",
  85. ucon, new_ucon, save->ucon);
  86. save->ucon = new_ucon;
  87. }
  88. }
  89. static inline void s3c_pm_restored_gpios(void)
  90. {
  91. /* ensure sleep mode has been cleared from the system */
  92. __raw_writel(0, S5P64X0_SLPEN);
  93. }
  94. static inline void samsung_pm_saved_gpios(void)
  95. {
  96. /*
  97. * turn on the sleep mode and keep it there, as it seems that during
  98. * suspend the xCON registers get re-set and thus you can end up with
  99. * problems between going to sleep and resuming.
  100. */
  101. __raw_writel(S5P64X0_SLPEN_USE_xSLP, S5P64X0_SLPEN);
  102. }