psc.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. #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_warning("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. /* Enable or disable a PSC domain */
  45. void davinci_psc_config(unsigned int domain, unsigned int ctlr,
  46. unsigned int id, bool enable, u32 flags)
  47. {
  48. u32 epcpr, ptcmd, ptstat, pdstat, pdctl, mdstat, mdctl;
  49. void __iomem *psc_base;
  50. struct davinci_soc_info *soc_info = &davinci_soc_info;
  51. u32 next_state = PSC_STATE_ENABLE;
  52. if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
  53. pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
  54. (int)soc_info->psc_bases, ctlr);
  55. return;
  56. }
  57. psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K);
  58. if (!enable) {
  59. if (flags & PSC_SWRSTDISABLE)
  60. next_state = PSC_STATE_SWRSTDISABLE;
  61. else
  62. next_state = PSC_STATE_DISABLE;
  63. }
  64. mdctl = __raw_readl(psc_base + MDCTL + 4 * id);
  65. mdctl &= ~MDSTAT_STATE_MASK;
  66. mdctl |= next_state;
  67. if (flags & PSC_FORCE)
  68. mdctl |= MDCTL_FORCE;
  69. __raw_writel(mdctl, psc_base + MDCTL + 4 * id);
  70. pdstat = __raw_readl(psc_base + PDSTAT + 4 * domain);
  71. if ((pdstat & PDSTAT_STATE_MASK) == 0) {
  72. pdctl = __raw_readl(psc_base + PDCTL + 4 * domain);
  73. pdctl |= PDCTL_NEXT;
  74. __raw_writel(pdctl, psc_base + PDCTL + 4 * domain);
  75. ptcmd = 1 << domain;
  76. __raw_writel(ptcmd, psc_base + PTCMD);
  77. do {
  78. epcpr = __raw_readl(psc_base + EPCPR);
  79. } while ((((epcpr >> domain) & 1) == 0));
  80. pdctl = __raw_readl(psc_base + PDCTL + 4 * domain);
  81. pdctl |= PDCTL_EPCGOOD;
  82. __raw_writel(pdctl, psc_base + PDCTL + 4 * domain);
  83. } else {
  84. ptcmd = 1 << domain;
  85. __raw_writel(ptcmd, psc_base + PTCMD);
  86. }
  87. do {
  88. ptstat = __raw_readl(psc_base + PTSTAT);
  89. } while (!(((ptstat >> domain) & 1) == 0));
  90. do {
  91. mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
  92. } while (!((mdstat & MDSTAT_STATE_MASK) == next_state));
  93. iounmap(psc_base);
  94. }