blob: d7e210f4b55c85d7e2a2fc4831fb3f0a77f72990 [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>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010022#include <linux/init.h>
Russell Kingfced80c2008-09-06 12:10:45 +010023#include <linux/io.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010024
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070025#include <mach/cputype.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/psc.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010027
Sekhar Noria51ca382011-07-06 06:01:21 +000028#include "clock.h"
29
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070030/* Return nonzero iff the domain's clock is active */
Mark A. Greerd81d1882009-04-15 12:39:33 -070031int __init davinci_psc_is_clk_active(unsigned int ctlr, unsigned int id)
Kevin Hilman7c6337e2007-04-30 19:37:19 +010032{
Mark A. Greerd81d1882009-04-15 12:39:33 -070033 void __iomem *psc_base;
34 u32 mdstat;
35 struct davinci_soc_info *soc_info = &davinci_soc_info;
36
37 if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
38 pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
39 (int)soc_info->psc_bases, ctlr);
40 return 0;
41 }
42
Cyril Chemparathye4c822c2010-05-07 17:06:36 -040043 psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K);
Mark A. Greerd81d1882009-04-15 12:39:33 -070044 mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
Cyril Chemparathye4c822c2010-05-07 17:06:36 -040045 iounmap(psc_base);
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070046
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 */
Mark A. Greerd81d1882009-04-15 12:39:33 -070052void davinci_psc_config(unsigned int domain, unsigned int ctlr,
Sekhar Noria51ca382011-07-06 06:01:21 +000053 unsigned int id, bool enable, u32 flags)
Kevin Hilman7c6337e2007-04-30 19:37:19 +010054{
Murali Karicheri78b83822011-11-15 01:42:07 +053055 u32 epcpr, ptcmd, ptstat, pdstat, pdctl, mdstat, mdctl;
Mark A. Greerd81d1882009-04-15 12:39:33 -070056 void __iomem *psc_base;
57 struct davinci_soc_info *soc_info = &davinci_soc_info;
Sekhar Noria51ca382011-07-06 06:01:21 +000058 u32 next_state = PSC_STATE_ENABLE;
Kevin Hilman7c6337e2007-04-30 19:37:19 +010059
Mark A. Greerd81d1882009-04-15 12:39:33 -070060 if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) {
61 pr_warning("PSC: Bad psc data: 0x%x[%d]\n",
62 (int)soc_info->psc_bases, ctlr);
63 return;
64 }
65
Cyril Chemparathye4c822c2010-05-07 17:06:36 -040066 psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K);
Mark A. Greerd81d1882009-04-15 12:39:33 -070067
Sekhar Noria51ca382011-07-06 06:01:21 +000068 if (!enable) {
69 if (flags & PSC_SWRSTDISABLE)
70 next_state = PSC_STATE_SWRSTDISABLE;
71 else
72 next_state = PSC_STATE_DISABLE;
73 }
74
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070075 mdctl = __raw_readl(psc_base + MDCTL + 4 * id);
Mark A. Greerfe277d92009-03-26 19:33:21 -070076 mdctl &= ~MDSTAT_STATE_MASK;
77 mdctl |= next_state;
Sekhar Noriaad70de2011-07-06 06:01:22 +000078 if (flags & PSC_FORCE)
79 mdctl |= MDCTL_FORCE;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070080 __raw_writel(mdctl, psc_base + MDCTL + 4 * id);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010081
Murali Karicheri78b83822011-11-15 01:42:07 +053082 pdstat = __raw_readl(psc_base + PDSTAT + 4 * domain);
Murali Karicheri8f9a0982011-11-15 01:42:06 +053083 if ((pdstat & PDSTAT_STATE_MASK) == 0) {
Murali Karicheri78b83822011-11-15 01:42:07 +053084 pdctl = __raw_readl(psc_base + PDCTL + 4 * domain);
85 pdctl |= PDCTL_NEXT;
86 __raw_writel(pdctl, psc_base + PDCTL + 4 * domain);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010087
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 epcpr = __raw_readl(psc_base + EPCPR);
Vladimir Barinov83f53222007-07-10 13:10:04 +010093 } while ((((epcpr >> domain) & 1) == 0));
94
Murali Karicheri78b83822011-11-15 01:42:07 +053095 pdctl = __raw_readl(psc_base + PDCTL + 4 * domain);
96 pdctl |= PDCTL_EPCGOOD;
97 __raw_writel(pdctl, psc_base + PDCTL + 4 * domain);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010098 } else {
Vladimir Barinov83f53222007-07-10 13:10:04 +010099 ptcmd = 1 << domain;
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700100 __raw_writel(ptcmd, psc_base + PTCMD);
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100101 }
102
Vladimir Barinov83f53222007-07-10 13:10:04 +0100103 do {
Nicolas Kaiser1a07bfb2010-10-25 14:41:18 +0200104 ptstat = __raw_readl(psc_base + PTSTAT);
105 } while (!(((ptstat >> domain) & 1) == 0));
106
107 do {
Kevin Hilmanc5b736d2009-03-20 17:29:01 -0700108 mdstat = __raw_readl(psc_base + MDSTAT + 4 * id);
Mark A. Greerfe277d92009-03-26 19:33:21 -0700109 } while (!((mdstat & MDSTAT_STATE_MASK) == next_state));
Cyril Chemparathye4c822c2010-05-07 17:06:36 -0400110
111 iounmap(psc_base);
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100112}