psc.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * TI DaVinci Power and Sleep Controller (PSC)
  3. *
  4. * Copyright (C) 2006 Texas Instruments.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. *
  20. */
  21. #include <linux/kernel.h>
  22. #include <linux/module.h>
  23. #include <linux/init.h>
  24. #include <linux/io.h>
  25. #include <mach/cputype.h>
  26. #include <mach/hardware.h>
  27. #include <mach/psc.h>
  28. #include <mach/mux.h>
  29. #define DAVINCI_PWR_SLEEP_CNTRL_BASE 0x01C41000
  30. /* PSC register offsets */
  31. #define EPCPR 0x070
  32. #define PTCMD 0x120
  33. #define PTSTAT 0x128
  34. #define PDSTAT 0x200
  35. #define PDCTL1 0x304
  36. #define MDSTAT 0x800
  37. #define MDCTL 0xA00
  38. #define MDSTAT_STATE_MASK 0x1f
  39. /* Return nonzero iff the domain's clock is active */
  40. int __init davinci_psc_is_clk_active(unsigned int id)
  41. {
  42. void __iomem *psc_base = IO_ADDRESS(DAVINCI_PWR_SLEEP_CNTRL_BASE);
  43. u32 mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
  44. /* if clocked, state can be "Enable" or "SyncReset" */
  45. return mdstat & BIT(12);
  46. }
  47. /* Enable or disable a PSC domain */
  48. void davinci_psc_config(unsigned int domain, unsigned int id, char enable)
  49. {
  50. u32 epcpr, ptcmd, ptstat, pdstat, pdctl1, mdstat, mdctl;
  51. void __iomem *psc_base = IO_ADDRESS(DAVINCI_PWR_SLEEP_CNTRL_BASE);
  52. u32 next_state = enable ? 0x3 : 0x2; /* 0x3 enables, 0x2 disables */
  53. mdctl = __raw_readl(psc_base + MDCTL + 4 * id);
  54. mdctl &= ~MDSTAT_STATE_MASK;
  55. mdctl |= next_state;
  56. __raw_writel(mdctl, psc_base + MDCTL + 4 * id);
  57. pdstat = __raw_readl(psc_base + PDSTAT);
  58. if ((pdstat & 0x00000001) == 0) {
  59. pdctl1 = __raw_readl(psc_base + PDCTL1);
  60. pdctl1 |= 0x1;
  61. __raw_writel(pdctl1, psc_base + PDCTL1);
  62. ptcmd = 1 << domain;
  63. __raw_writel(ptcmd, psc_base + PTCMD);
  64. do {
  65. epcpr = __raw_readl(psc_base + EPCPR);
  66. } while ((((epcpr >> domain) & 1) == 0));
  67. pdctl1 = __raw_readl(psc_base + PDCTL1);
  68. pdctl1 |= 0x100;
  69. __raw_writel(pdctl1, psc_base + PDCTL1);
  70. do {
  71. ptstat = __raw_readl(psc_base +
  72. PTSTAT);
  73. } while (!(((ptstat >> domain) & 1) == 0));
  74. } else {
  75. ptcmd = 1 << domain;
  76. __raw_writel(ptcmd, psc_base + PTCMD);
  77. do {
  78. ptstat = __raw_readl(psc_base + PTSTAT);
  79. } while (!(((ptstat >> domain) & 1) == 0));
  80. }
  81. do {
  82. mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
  83. } while (!((mdstat & MDSTAT_STATE_MASK) == next_state));
  84. }