Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 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> |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 22 | #include <linux/init.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 23 | #include <linux/io.h> |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 24 | |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 25 | #include <mach/cputype.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 26 | #include <mach/psc.h> |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 27 | |
Sekhar Nori | a51ca38 | 2011-07-06 06:01:21 +0000 | [diff] [blame] | 28 | #include "clock.h" |
| 29 | |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 30 | /* Return nonzero iff the domain's clock is active */ |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 31 | int __init davinci_psc_is_clk_active(unsigned int ctlr, unsigned int id) |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 32 | { |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 33 | 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)) { |
Robert Tivy | 35031f9 | 2013-01-10 16:23:21 -0800 | [diff] [blame] | 38 | pr_warn("PSC: Bad psc data: 0x%x[%d]\n", |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 39 | (int)soc_info->psc_bases, ctlr); |
| 40 | return 0; |
| 41 | } |
| 42 | |
Cyril Chemparathy | e4c822c | 2010-05-07 17:06:36 -0400 | [diff] [blame] | 43 | psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K); |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 44 | mdstat = __raw_readl(psc_base + MDSTAT + 4 * id); |
Cyril Chemparathy | e4c822c | 2010-05-07 17:06:36 -0400 | [diff] [blame] | 45 | iounmap(psc_base); |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 46 | |
| 47 | /* if clocked, state can be "Enable" or "SyncReset" */ |
| 48 | return mdstat & BIT(12); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 49 | } |
| 50 | |
Robert Tivy | af47e6b | 2013-01-10 16:23:23 -0800 | [diff] [blame] | 51 | /* Control "reset" line associated with PSC domain */ |
| 52 | void davinci_psc_reset(unsigned int ctlr, unsigned int id, bool reset) |
| 53 | { |
| 54 | u32 mdctl; |
| 55 | void __iomem *psc_base; |
| 56 | struct davinci_soc_info *soc_info = &davinci_soc_info; |
| 57 | |
| 58 | if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) { |
| 59 | pr_warn("PSC: Bad psc data: 0x%x[%d]\n", |
| 60 | (int)soc_info->psc_bases, ctlr); |
| 61 | return; |
| 62 | } |
| 63 | |
| 64 | psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K); |
| 65 | |
| 66 | mdctl = readl(psc_base + MDCTL + 4 * id); |
| 67 | if (reset) |
| 68 | mdctl &= ~MDCTL_LRST; |
| 69 | else |
| 70 | mdctl |= MDCTL_LRST; |
| 71 | writel(mdctl, psc_base + MDCTL + 4 * id); |
| 72 | |
| 73 | iounmap(psc_base); |
| 74 | } |
| 75 | |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 76 | /* Enable or disable a PSC domain */ |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 77 | void davinci_psc_config(unsigned int domain, unsigned int ctlr, |
Sekhar Nori | a51ca38 | 2011-07-06 06:01:21 +0000 | [diff] [blame] | 78 | unsigned int id, bool enable, u32 flags) |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 79 | { |
Murali Karicheri | 78b8382 | 2011-11-15 01:42:07 +0530 | [diff] [blame] | 80 | u32 epcpr, ptcmd, ptstat, pdstat, pdctl, mdstat, mdctl; |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 81 | void __iomem *psc_base; |
| 82 | struct davinci_soc_info *soc_info = &davinci_soc_info; |
Sekhar Nori | a51ca38 | 2011-07-06 06:01:21 +0000 | [diff] [blame] | 83 | u32 next_state = PSC_STATE_ENABLE; |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 84 | |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 85 | if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) { |
Robert Tivy | 35031f9 | 2013-01-10 16:23:21 -0800 | [diff] [blame] | 86 | pr_warn("PSC: Bad psc data: 0x%x[%d]\n", |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 87 | (int)soc_info->psc_bases, ctlr); |
| 88 | return; |
| 89 | } |
| 90 | |
Cyril Chemparathy | e4c822c | 2010-05-07 17:06:36 -0400 | [diff] [blame] | 91 | psc_base = ioremap(soc_info->psc_bases[ctlr], SZ_4K); |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 92 | |
Sekhar Nori | a51ca38 | 2011-07-06 06:01:21 +0000 | [diff] [blame] | 93 | if (!enable) { |
| 94 | if (flags & PSC_SWRSTDISABLE) |
| 95 | next_state = PSC_STATE_SWRSTDISABLE; |
| 96 | else |
| 97 | next_state = PSC_STATE_DISABLE; |
| 98 | } |
| 99 | |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 100 | mdctl = __raw_readl(psc_base + MDCTL + 4 * id); |
Mark A. Greer | fe277d9 | 2009-03-26 19:33:21 -0700 | [diff] [blame] | 101 | mdctl &= ~MDSTAT_STATE_MASK; |
| 102 | mdctl |= next_state; |
Sekhar Nori | aad70de | 2011-07-06 06:01:22 +0000 | [diff] [blame] | 103 | if (flags & PSC_FORCE) |
| 104 | mdctl |= MDCTL_FORCE; |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 105 | __raw_writel(mdctl, psc_base + MDCTL + 4 * id); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 106 | |
Murali Karicheri | 78b8382 | 2011-11-15 01:42:07 +0530 | [diff] [blame] | 107 | pdstat = __raw_readl(psc_base + PDSTAT + 4 * domain); |
Murali Karicheri | 8f9a098 | 2011-11-15 01:42:06 +0530 | [diff] [blame] | 108 | if ((pdstat & PDSTAT_STATE_MASK) == 0) { |
Murali Karicheri | 78b8382 | 2011-11-15 01:42:07 +0530 | [diff] [blame] | 109 | pdctl = __raw_readl(psc_base + PDCTL + 4 * domain); |
| 110 | pdctl |= PDCTL_NEXT; |
| 111 | __raw_writel(pdctl, psc_base + PDCTL + 4 * domain); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 112 | |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 113 | ptcmd = 1 << domain; |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 114 | __raw_writel(ptcmd, psc_base + PTCMD); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 115 | |
| 116 | do { |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 117 | epcpr = __raw_readl(psc_base + EPCPR); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 118 | } while ((((epcpr >> domain) & 1) == 0)); |
| 119 | |
Murali Karicheri | 78b8382 | 2011-11-15 01:42:07 +0530 | [diff] [blame] | 120 | pdctl = __raw_readl(psc_base + PDCTL + 4 * domain); |
| 121 | pdctl |= PDCTL_EPCGOOD; |
| 122 | __raw_writel(pdctl, psc_base + PDCTL + 4 * domain); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 123 | } else { |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 124 | ptcmd = 1 << domain; |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 125 | __raw_writel(ptcmd, psc_base + PTCMD); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 126 | } |
| 127 | |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 128 | do { |
Nicolas Kaiser | 1a07bfb | 2010-10-25 14:41:18 +0200 | [diff] [blame] | 129 | ptstat = __raw_readl(psc_base + PTSTAT); |
| 130 | } while (!(((ptstat >> domain) & 1) == 0)); |
| 131 | |
| 132 | do { |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 133 | mdstat = __raw_readl(psc_base + MDSTAT + 4 * id); |
Mark A. Greer | fe277d9 | 2009-03-26 19:33:21 -0700 | [diff] [blame] | 134 | } while (!((mdstat & MDSTAT_STATE_MASK) == next_state)); |
Cyril Chemparathy | e4c822c | 2010-05-07 17:06:36 -0400 | [diff] [blame] | 135 | |
| 136 | iounmap(psc_base); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 137 | } |