psc.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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/init.h>
  23. #include <linux/io.h>
  24. #include <mach/cputype.h>
  25. #include <mach/psc.h>
  26. /* PSC register offsets */
  27. #define EPCPR 0x070
  28. #define PTCMD 0x120
  29. #define PTSTAT 0x128
  30. #define PDSTAT 0x200
  31. #define PDCTL1 0x304
  32. #define MDSTAT 0x800
  33. #define MDCTL 0xA00
  34. #define MDSTAT_STATE_MASK 0x1f
  35. /* Return nonzero iff the domain's clock is active */
  36. int __init davinci_psc_is_clk_active(unsigned int ctlr, unsigned int id)
  37. {
  38. void __iomem *psc_base;
  39. u32 mdstat;
  40. struct davinci_soc_info *soc_info = &davinci_soc_info;
  41. if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
  42. pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
  43. (int)soc_info->psc_bases, ctlr);
  44. return 0;
  45. }
  46. psc_base = soc_info->psc_bases[ctlr];
  47. mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
  48. /* if clocked, state can be "Enable" or "SyncReset" */
  49. return mdstat & BIT(12);
  50. }
  51. /* Enable or disable a PSC domain */
  52. void davinci_psc_config(unsigned int domain, unsigned int ctlr,
  53. unsigned int id, char enable)
  54. {
  55. u32 epcpr, ptcmd, ptstat, pdstat, pdctl1, mdstat, mdctl;
  56. void __iomem *psc_base;
  57. struct davinci_soc_info *soc_info = &davinci_soc_info;
  58. u32 next_state = enable ? 0x3 : 0x2; /* 0x3 enables, 0x2 disables */
  59. if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
  60. pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
  61. (int)soc_info->psc_bases, ctlr);
  62. return;
  63. }
  64. psc_base = soc_info->psc_bases[ctlr];
  65. mdctl = __raw_readl(psc_base + MDCTL + 4 * id);
  66. mdctl &= ~MDSTAT_STATE_MASK;
  67. mdctl |= next_state;
  68. __raw_writel(mdctl, psc_base + MDCTL + 4 * id);
  69. pdstat = __raw_readl(psc_base + PDSTAT);
  70. if ((pdstat & 0x00000001) == 0) {
  71. pdctl1 = __raw_readl(psc_base + PDCTL1);
  72. pdctl1 |= 0x1;
  73. __raw_writel(pdctl1, psc_base + PDCTL1);
  74. ptcmd = 1 << domain;
  75. __raw_writel(ptcmd, psc_base + PTCMD);
  76. do {
  77. epcpr = __raw_readl(psc_base + EPCPR);
  78. } while ((((epcpr >> domain) & 1) == 0));
  79. pdctl1 = __raw_readl(psc_base + PDCTL1);
  80. pdctl1 |= 0x100;
  81. __raw_writel(pdctl1, psc_base + PDCTL1);
  82. do {
  83. ptstat = __raw_readl(psc_base +
  84. PTSTAT);
  85. } while (!(((ptstat >> domain) & 1) == 0));
  86. } else {
  87. ptcmd = 1 << domain;
  88. __raw_writel(ptcmd, psc_base + PTCMD);
  89. do {
  90. ptstat = __raw_readl(psc_base + PTSTAT);
  91. } while (!(((ptstat >> domain) & 1) == 0));
  92. }
  93. do {
  94. mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
  95. } while (!((mdstat & MDSTAT_STATE_MASK) == next_state));
  96. }