blob: c5098831741f4b61bf09156f553a182f89ddf874 [file] [log] [blame]
Kevin Hilman7c6337e2007-04-30 19:37:19 +01001/*
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/module.h>
23#include <linux/init.h>
Russell Kingfced80c2008-09-06 12:10:45 +010024#include <linux/io.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010025
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070026#include <mach/cputype.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010027#include <mach/hardware.h>
28#include <mach/psc.h>
29#include <mach/mux.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010030
Vladimir Barinov83f53222007-07-10 13:10:04 +010031/* PSC register offsets */
32#define EPCPR 0x070
33#define PTCMD 0x120
34#define PTSTAT 0x128
35#define PDSTAT 0x200
36#define PDCTL1 0x304
37#define MDSTAT 0x800
38#define MDCTL 0xA00
Kevin Hilman7c6337e2007-04-30 19:37:19 +010039
Kevin Hilman7c6337e2007-04-30 19:37:19 +010040
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070041/* Return nonzero iff the domain's clock is active */
42int __init davinci_psc_is_clk_active(unsigned int id)
Kevin Hilman7c6337e2007-04-30 19:37:19 +010043{
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070044 void __iomem *psc_base = IO_ADDRESS(DAVINCI_PWR_SLEEP_CNTRL_BASE);
45 u32 mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
46
47 /* if clocked, state can be "Enable" or "SyncReset" */
48 return mdstat & BIT(12);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010049}
50
51/* Enable or disable a PSC domain */
52void davinci_psc_config(unsigned int domain, unsigned int id, char enable)
53{
Vladimir Barinov83f53222007-07-10 13:10:04 +010054 u32 epcpr, ptcmd, ptstat, pdstat, pdctl1, mdstat, mdctl, mdstat_mask;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070055 void __iomem *psc_base = IO_ADDRESS(DAVINCI_PWR_SLEEP_CNTRL_BASE);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010056
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070057 mdctl = __raw_readl(psc_base + MDCTL + 4 * id);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010058 if (enable)
Vladimir Barinov83f53222007-07-10 13:10:04 +010059 mdctl |= 0x00000003; /* Enable Module */
Kevin Hilman7c6337e2007-04-30 19:37:19 +010060 else
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070061 mdctl &= 0xFFFFFFE2; /* Disable Module */
62 __raw_writel(mdctl, psc_base + MDCTL + 4 * id);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010063
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070064 pdstat = __raw_readl(psc_base + PDSTAT);
Vladimir Barinov83f53222007-07-10 13:10:04 +010065 if ((pdstat & 0x00000001) == 0) {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070066 pdctl1 = __raw_readl(psc_base + PDCTL1);
Vladimir Barinov83f53222007-07-10 13:10:04 +010067 pdctl1 |= 0x1;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070068 __raw_writel(pdctl1, psc_base + PDCTL1);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010069
Vladimir Barinov83f53222007-07-10 13:10:04 +010070 ptcmd = 1 << domain;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070071 __raw_writel(ptcmd, psc_base + PTCMD);
Vladimir Barinov83f53222007-07-10 13:10:04 +010072
73 do {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070074 epcpr = __raw_readl(psc_base + EPCPR);
Vladimir Barinov83f53222007-07-10 13:10:04 +010075 } while ((((epcpr >> domain) & 1) == 0));
76
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070077 pdctl1 = __raw_readl(psc_base + PDCTL1);
Vladimir Barinov83f53222007-07-10 13:10:04 +010078 pdctl1 |= 0x100;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070079 __raw_writel(pdctl1, psc_base + PDCTL1);
Vladimir Barinov83f53222007-07-10 13:10:04 +010080
81 do {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070082 ptstat = __raw_readl(psc_base +
Vladimir Barinov83f53222007-07-10 13:10:04 +010083 PTSTAT);
84 } while (!(((ptstat >> domain) & 1) == 0));
Kevin Hilman7c6337e2007-04-30 19:37:19 +010085 } else {
Vladimir Barinov83f53222007-07-10 13:10:04 +010086 ptcmd = 1 << domain;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070087 __raw_writel(ptcmd, psc_base + PTCMD);
Vladimir Barinov83f53222007-07-10 13:10:04 +010088
89 do {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070090 ptstat = __raw_readl(psc_base + PTSTAT);
Vladimir Barinov83f53222007-07-10 13:10:04 +010091 } while (!(((ptstat >> domain) & 1) == 0));
Kevin Hilman7c6337e2007-04-30 19:37:19 +010092 }
93
94 if (enable)
Vladimir Barinov83f53222007-07-10 13:10:04 +010095 mdstat_mask = 0x3;
Kevin Hilman7c6337e2007-04-30 19:37:19 +010096 else
Vladimir Barinov83f53222007-07-10 13:10:04 +010097 mdstat_mask = 0x2;
98
99 do {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700100 mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
Vladimir Barinov83f53222007-07-10 13:10:04 +0100101 } while (!((mdstat & 0x0000001F) == mdstat_mask));
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100102}