psc.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 "psc.h"
  26. #include "clock.h"
  27. /* Return nonzero iff the domain's clock is active */
  28. int __init davinci_psc_is_clk_active(unsigned int ctlr, unsigned int id)
  29. {
  30. void __iomem *psc_base;
  31. u32 mdstat;
  32. struct davinci_soc_info *soc_info = &davinci_soc_info;
  33. if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
  34. pr_warn("PSC: Bad psc data: 0x%x[%d]\n",
  35. (int)soc_info->psc_bases, ctlr);
  36. return 0;
  37. }
  38. psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K);
  39. mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
  40. iounmap(psc_base);
  41. /* if clocked, state can be "Enable" or "SyncReset" */
  42. return mdstat & BIT(12);
  43. }
  44. /* Control "reset" line associated with PSC domain */
  45. void davinci_psc_reset(unsigned int ctlr, unsigned int id, bool reset)
  46. {
  47. u32 mdctl;
  48. void __iomem *psc_base;
  49. struct davinci_soc_info *soc_info = &davinci_soc_info;
  50. if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
  51. pr_warn("PSC: Bad psc data: 0x%x[%d]\n",
  52. (int)soc_info->psc_bases, ctlr);
  53. return;
  54. }
  55. psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K);
  56. mdctl = readl(psc_base + MDCTL + 4 * id);
  57. if (reset)
  58. mdctl &= ~MDCTL_LRST;
  59. else
  60. mdctl |= MDCTL_LRST;
  61. writel(mdctl, psc_base + MDCTL + 4 * id);
  62. iounmap(psc_base);
  63. }
  64. /* Enable or disable a PSC domain */
  65. void davinci_psc_config(unsigned int domain, unsigned int ctlr,
  66. unsigned int id, bool enable, u32 flags)
  67. {
  68. u32 epcpr, ptcmd, ptstat, pdstat, pdctl, mdstat, mdctl;
  69. void __iomem *psc_base;
  70. struct davinci_soc_info *soc_info = &davinci_soc_info;
  71. u32 next_state = PSC_STATE_ENABLE;
  72. if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
  73. pr_warn("PSC: Bad psc data: 0x%x[%d]\n",
  74. (int)soc_info->psc_bases, ctlr);
  75. return;
  76. }
  77. psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K);
  78. if (!enable) {
  79. if (flags & PSC_SWRSTDISABLE)
  80. next_state = PSC_STATE_SWRSTDISABLE;
  81. else
  82. next_state = PSC_STATE_DISABLE;
  83. }
  84. mdctl = __raw_readl(psc_base + MDCTL + 4 * id);
  85. mdctl &= ~MDSTAT_STATE_MASK;
  86. mdctl |= next_state;
  87. if (flags & PSC_FORCE)
  88. mdctl |= MDCTL_FORCE;
  89. __raw_writel(mdctl, psc_base + MDCTL + 4 * id);
  90. pdstat = __raw_readl(psc_base + PDSTAT + 4 * domain);
  91. if ((pdstat & PDSTAT_STATE_MASK) == 0) {
  92. pdctl = __raw_readl(psc_base + PDCTL + 4 * domain);
  93. pdctl |= PDCTL_NEXT;
  94. __raw_writel(pdctl, psc_base + PDCTL + 4 * domain);
  95. ptcmd = 1 << domain;
  96. __raw_writel(ptcmd, psc_base + PTCMD);
  97. do {
  98. epcpr = __raw_readl(psc_base + EPCPR);
  99. } while ((((epcpr >> domain) & 1) == 0));
  100. pdctl = __raw_readl(psc_base + PDCTL + 4 * domain);
  101. pdctl |= PDCTL_EPCGOOD;
  102. __raw_writel(pdctl, psc_base + PDCTL + 4 * domain);
  103. } else {
  104. ptcmd = 1 << domain;
  105. __raw_writel(ptcmd, psc_base + PTCMD);
  106. }
  107. do {
  108. ptstat = __raw_readl(psc_base + PTSTAT);
  109. } while (!(((ptstat >> domain) & 1) == 0));
  110. do {
  111. mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
  112. } while (!((mdstat & MDSTAT_STATE_MASK) == next_state));
  113. iounmap(psc_base);
  114. }