psc.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. /* Return nonzero iff the domain's clock is active */
  27. int __init davinci_psc_is_clk_active(unsigned int ctlr, unsigned int id)
  28. {
  29. void __iomem *psc_base;
  30. u32 mdstat;
  31. struct davinci_soc_info *soc_info = &davinci_soc_info;
  32. if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
  33. pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
  34. (int)soc_info->psc_bases, ctlr);
  35. return 0;
  36. }
  37. psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K);
  38. mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
  39. iounmap(psc_base);
  40. /* if clocked, state can be "Enable" or "SyncReset" */
  41. return mdstat & BIT(12);
  42. }
  43. /* Enable or disable a PSC domain */
  44. void davinci_psc_config(unsigned int domain, unsigned int ctlr,
  45. unsigned int id, u32 next_state)
  46. {
  47. u32 epcpr, ptcmd, ptstat, pdstat, pdctl1, mdstat, 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_warning("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 = __raw_readl(psc_base + MDCTL + 4 * id);
  57. mdctl &= ~MDSTAT_STATE_MASK;
  58. mdctl |= next_state;
  59. __raw_writel(mdctl, psc_base + MDCTL + 4 * id);
  60. pdstat = __raw_readl(psc_base + PDSTAT);
  61. if ((pdstat & 0x00000001) == 0) {
  62. pdctl1 = __raw_readl(psc_base + PDCTL1);
  63. pdctl1 |= 0x1;
  64. __raw_writel(pdctl1, psc_base + PDCTL1);
  65. ptcmd = 1 << domain;
  66. __raw_writel(ptcmd, psc_base + PTCMD);
  67. do {
  68. epcpr = __raw_readl(psc_base + EPCPR);
  69. } while ((((epcpr >> domain) & 1) == 0));
  70. pdctl1 = __raw_readl(psc_base + PDCTL1);
  71. pdctl1 |= 0x100;
  72. __raw_writel(pdctl1, psc_base + PDCTL1);
  73. do {
  74. ptstat = __raw_readl(psc_base +
  75. PTSTAT);
  76. } while (!(((ptstat >> domain) & 1) == 0));
  77. } else {
  78. ptcmd = 1 << domain;
  79. __raw_writel(ptcmd, psc_base + PTCMD);
  80. do {
  81. ptstat = __raw_readl(psc_base + PTSTAT);
  82. } while (!(((ptstat >> domain) & 1) == 0));
  83. }
  84. do {
  85. mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
  86. } while (!((mdstat & MDSTAT_STATE_MASK) == next_state));
  87. iounmap(psc_base);
  88. }