]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/arm/mach-davinci/psc.c
Davinci: support LPSC SwRstDisable state
[net-next-2.6.git] / arch / arm / mach-davinci / psc.c
CommitLineData
7c6337e2
KH
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>
7c6337e2 22#include <linux/init.h>
fced80c7 23#include <linux/io.h>
7c6337e2 24
c5b736d0 25#include <mach/cputype.h>
a09e64fb 26#include <mach/psc.h>
7c6337e2 27
c5b736d0 28/* Return nonzero iff the domain's clock is active */
d81d188c 29int __init davinci_psc_is_clk_active(unsigned int ctlr, unsigned int id)
7c6337e2 30{
d81d188c
MG
31 void __iomem *psc_base;
32 u32 mdstat;
33 struct davinci_soc_info *soc_info = &davinci_soc_info;
34
35 if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
36 pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
37 (int)soc_info->psc_bases, ctlr);
38 return 0;
39 }
40
41 psc_base = soc_info->psc_bases[ctlr];
42 mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
c5b736d0
KH
43
44 /* if clocked, state can be "Enable" or "SyncReset" */
45 return mdstat & BIT(12);
7c6337e2
KH
46}
47
48/* Enable or disable a PSC domain */
d81d188c 49void davinci_psc_config(unsigned int domain, unsigned int ctlr,
52958be3 50 unsigned int id, u32 next_state)
7c6337e2 51{
fe277d9b 52 u32 epcpr, ptcmd, ptstat, pdstat, pdctl1, mdstat, mdctl;
d81d188c
MG
53 void __iomem *psc_base;
54 struct davinci_soc_info *soc_info = &davinci_soc_info;
7c6337e2 55
d81d188c
MG
56 if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
57 pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
58 (int)soc_info->psc_bases, ctlr);
59 return;
60 }
61
62 psc_base = soc_info->psc_bases[ctlr];
63
c5b736d0 64 mdctl = __raw_readl(psc_base + MDCTL + 4 * id);
fe277d9b
MG
65 mdctl &= ~MDSTAT_STATE_MASK;
66 mdctl |= next_state;
c5b736d0 67 __raw_writel(mdctl, psc_base + MDCTL + 4 * id);
83f53220 68
c5b736d0 69 pdstat = __raw_readl(psc_base + PDSTAT);
83f53220 70 if ((pdstat & 0x00000001) == 0) {
c5b736d0 71 pdctl1 = __raw_readl(psc_base + PDCTL1);
83f53220 72 pdctl1 |= 0x1;
c5b736d0 73 __raw_writel(pdctl1, psc_base + PDCTL1);
83f53220
VB
74
75 ptcmd = 1 << domain;
c5b736d0 76 __raw_writel(ptcmd, psc_base + PTCMD);
7c6337e2 77
83f53220 78 do {
c5b736d0 79 epcpr = __raw_readl(psc_base + EPCPR);
83f53220 80 } while ((((epcpr >> domain) & 1) == 0));
7c6337e2 81
c5b736d0 82 pdctl1 = __raw_readl(psc_base + PDCTL1);
83f53220 83 pdctl1 |= 0x100;
c5b736d0 84 __raw_writel(pdctl1, psc_base + PDCTL1);
83f53220
VB
85
86 do {
c5b736d0 87 ptstat = __raw_readl(psc_base +
83f53220
VB
88 PTSTAT);
89 } while (!(((ptstat >> domain) & 1) == 0));
7c6337e2 90 } else {
83f53220 91 ptcmd = 1 << domain;
c5b736d0 92 __raw_writel(ptcmd, psc_base + PTCMD);
83f53220
VB
93
94 do {
c5b736d0 95 ptstat = __raw_readl(psc_base + PTSTAT);
83f53220 96 } while (!(((ptstat >> domain) & 1) == 0));
7c6337e2
KH
97 }
98
83f53220 99 do {
c5b736d0 100 mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
fe277d9b 101 } while (!((mdstat & MDSTAT_STATE_MASK) == next_state));
7c6337e2 102}