blob: 84171abf5f7b25453af26092006939617ac99237 [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
Kevin Hilmanf5c122d2009-04-14 07:04:16 -050031#define DAVINCI_PWR_SLEEP_CNTRL_BASE 0x01C41000
32
Vladimir Barinov83f53222007-07-10 13:10:04 +010033/* PSC register offsets */
34#define EPCPR 0x070
35#define PTCMD 0x120
36#define PTSTAT 0x128
37#define PDSTAT 0x200
38#define PDCTL1 0x304
39#define MDSTAT 0x800
40#define MDCTL 0xA00
Kevin Hilman7c6337e2007-04-30 19:37:19 +010041
Mark A. Greerfe277d92009-03-26 19:33:21 -070042#define MDSTAT_STATE_MASK 0x1f
Kevin Hilman7c6337e2007-04-30 19:37:19 +010043
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070044/* Return nonzero iff the domain's clock is active */
45int __init davinci_psc_is_clk_active(unsigned int id)
Kevin Hilman7c6337e2007-04-30 19:37:19 +010046{
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070047 void __iomem *psc_base = IO_ADDRESS(DAVINCI_PWR_SLEEP_CNTRL_BASE);
48 u32 mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
49
50 /* if clocked, state can be "Enable" or "SyncReset" */
51 return mdstat & BIT(12);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010052}
53
54/* Enable or disable a PSC domain */
55void davinci_psc_config(unsigned int domain, unsigned int id, char enable)
56{
Mark A. Greerfe277d92009-03-26 19:33:21 -070057 u32 epcpr, ptcmd, ptstat, pdstat, pdctl1, mdstat, mdctl;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070058 void __iomem *psc_base = IO_ADDRESS(DAVINCI_PWR_SLEEP_CNTRL_BASE);
Mark A. Greerfe277d92009-03-26 19:33:21 -070059 u32 next_state = enable ? 0x3 : 0x2; /* 0x3 enables, 0x2 disables */
Kevin Hilman7c6337e2007-04-30 19:37:19 +010060
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070061 mdctl = __raw_readl(psc_base + MDCTL + 4 * id);
Mark A. Greerfe277d92009-03-26 19:33:21 -070062 mdctl &= ~MDSTAT_STATE_MASK;
63 mdctl |= next_state;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070064 __raw_writel(mdctl, psc_base + MDCTL + 4 * id);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010065
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070066 pdstat = __raw_readl(psc_base + PDSTAT);
Vladimir Barinov83f53222007-07-10 13:10:04 +010067 if ((pdstat & 0x00000001) == 0) {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070068 pdctl1 = __raw_readl(psc_base + PDCTL1);
Vladimir Barinov83f53222007-07-10 13:10:04 +010069 pdctl1 |= 0x1;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070070 __raw_writel(pdctl1, psc_base + PDCTL1);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010071
Vladimir Barinov83f53222007-07-10 13:10:04 +010072 ptcmd = 1 << domain;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070073 __raw_writel(ptcmd, psc_base + PTCMD);
Vladimir Barinov83f53222007-07-10 13:10:04 +010074
75 do {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070076 epcpr = __raw_readl(psc_base + EPCPR);
Vladimir Barinov83f53222007-07-10 13:10:04 +010077 } while ((((epcpr >> domain) & 1) == 0));
78
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070079 pdctl1 = __raw_readl(psc_base + PDCTL1);
Vladimir Barinov83f53222007-07-10 13:10:04 +010080 pdctl1 |= 0x100;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070081 __raw_writel(pdctl1, psc_base + PDCTL1);
Vladimir Barinov83f53222007-07-10 13:10:04 +010082
83 do {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070084 ptstat = __raw_readl(psc_base +
Vladimir Barinov83f53222007-07-10 13:10:04 +010085 PTSTAT);
86 } while (!(((ptstat >> domain) & 1) == 0));
Kevin Hilman7c6337e2007-04-30 19:37:19 +010087 } else {
Vladimir Barinov83f53222007-07-10 13:10:04 +010088 ptcmd = 1 << domain;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070089 __raw_writel(ptcmd, psc_base + PTCMD);
Vladimir Barinov83f53222007-07-10 13:10:04 +010090
91 do {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070092 ptstat = __raw_readl(psc_base + PTSTAT);
Vladimir Barinov83f53222007-07-10 13:10:04 +010093 } while (!(((ptstat >> domain) & 1) == 0));
Kevin Hilman7c6337e2007-04-30 19:37:19 +010094 }
95
Vladimir Barinov83f53222007-07-10 13:10:04 +010096 do {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070097 mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
Mark A. Greerfe277d92009-03-26 19:33:21 -070098 } while (!((mdstat & MDSTAT_STATE_MASK) == next_state));
Kevin Hilman7c6337e2007-04-30 19:37:19 +010099}