2 * TI DaVinci Power and Sleep Controller (PSC)
4 * Copyright (C) 2006 Texas Instruments.
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.
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.
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.
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/init.h>
26 #include <mach/cputype.h>
27 #include <mach/hardware.h>
31 /* PSC register offsets */
40 #define MDSTAT_STATE_MASK 0x1f
42 /* Return nonzero iff the domain's clock is active */
43 int __init
davinci_psc_is_clk_active(unsigned int ctlr
, unsigned int id
)
45 void __iomem
*psc_base
;
47 struct davinci_soc_info
*soc_info
= &davinci_soc_info
;
49 if (!soc_info
->psc_bases
|| (ctlr
>= soc_info
->psc_bases_num
)) {
50 pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
51 (int)soc_info
->psc_bases
, ctlr
);
55 psc_base
= soc_info
->psc_bases
[ctlr
];
56 mdstat
= __raw_readl(psc_base
+ MDSTAT
+ 4 * id
);
58 /* if clocked, state can be "Enable" or "SyncReset" */
59 return mdstat
& BIT(12);
62 /* Enable or disable a PSC domain */
63 void davinci_psc_config(unsigned int domain
, unsigned int ctlr
,
64 unsigned int id
, char enable
)
66 u32 epcpr
, ptcmd
, ptstat
, pdstat
, pdctl1
, mdstat
, mdctl
;
67 void __iomem
*psc_base
;
68 struct davinci_soc_info
*soc_info
= &davinci_soc_info
;
69 u32 next_state
= enable
? 0x3 : 0x2; /* 0x3 enables, 0x2 disables */
71 if (!soc_info
->psc_bases
|| (ctlr
>= soc_info
->psc_bases_num
)) {
72 pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
73 (int)soc_info
->psc_bases
, ctlr
);
77 psc_base
= soc_info
->psc_bases
[ctlr
];
79 mdctl
= __raw_readl(psc_base
+ MDCTL
+ 4 * id
);
80 mdctl
&= ~MDSTAT_STATE_MASK
;
82 __raw_writel(mdctl
, psc_base
+ MDCTL
+ 4 * id
);
84 pdstat
= __raw_readl(psc_base
+ PDSTAT
);
85 if ((pdstat
& 0x00000001) == 0) {
86 pdctl1
= __raw_readl(psc_base
+ PDCTL1
);
88 __raw_writel(pdctl1
, psc_base
+ PDCTL1
);
91 __raw_writel(ptcmd
, psc_base
+ PTCMD
);
94 epcpr
= __raw_readl(psc_base
+ EPCPR
);
95 } while ((((epcpr
>> domain
) & 1) == 0));
97 pdctl1
= __raw_readl(psc_base
+ PDCTL1
);
99 __raw_writel(pdctl1
, psc_base
+ PDCTL1
);
102 ptstat
= __raw_readl(psc_base
+
104 } while (!(((ptstat
>> domain
) & 1) == 0));
107 __raw_writel(ptcmd
, psc_base
+ PTCMD
);
110 ptstat
= __raw_readl(psc_base
+ PTSTAT
);
111 } while (!(((ptstat
>> domain
) & 1) == 0));
115 mdstat
= __raw_readl(psc_base
+ MDSTAT
+ 4 * id
);
116 } while (!((mdstat
& MDSTAT_STATE_MASK
) == next_state
));