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> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/init.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 24 | #include <linux/io.h> |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 25 | |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 26 | #include <mach/cputype.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 27 | #include <mach/hardware.h> |
| 28 | #include <mach/psc.h> |
| 29 | #include <mach/mux.h> |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 30 | |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 31 | /* 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 Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 39 | |
Mark A. Greer | fe277d9 | 2009-03-26 19:33:21 -0700 | [diff] [blame] | 40 | #define MDSTAT_STATE_MASK 0x1f |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 41 | |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 42 | /* Return nonzero iff the domain's clock is active */ |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 43 | 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] | 44 | { |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 45 | void __iomem *psc_base; |
| 46 | u32 mdstat; |
| 47 | struct davinci_soc_info *soc_info = &davinci_soc_info; |
| 48 | |
| 49 | if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) { |
| 50 | pr_warning("PSC: Bad psc data: 0x%x[%d]\n", |
| 51 | (int)soc_info->psc_bases, ctlr); |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | psc_base = soc_info->psc_bases[ctlr]; |
| 56 | mdstat = __raw_readl(psc_base + MDSTAT + 4 * id); |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 57 | |
| 58 | /* if clocked, state can be "Enable" or "SyncReset" */ |
| 59 | return mdstat & BIT(12); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | /* Enable or disable a PSC domain */ |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 63 | void davinci_psc_config(unsigned int domain, unsigned int ctlr, |
| 64 | unsigned int id, char enable) |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 65 | { |
Mark A. Greer | fe277d9 | 2009-03-26 19:33:21 -0700 | [diff] [blame] | 66 | u32 epcpr, ptcmd, ptstat, pdstat, pdctl1, mdstat, mdctl; |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 67 | void __iomem *psc_base; |
| 68 | struct davinci_soc_info *soc_info = &davinci_soc_info; |
Mark A. Greer | fe277d9 | 2009-03-26 19:33:21 -0700 | [diff] [blame] | 69 | u32 next_state = enable ? 0x3 : 0x2; /* 0x3 enables, 0x2 disables */ |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 70 | |
Mark A. Greer | d81d188 | 2009-04-15 12:39:33 -0700 | [diff] [blame] | 71 | if (!soc_info->psc_bases || (ctlr >= soc_info->psc_bases_num)) { |
| 72 | pr_warning("PSC: Bad psc data: 0x%x[%d]\n", |
| 73 | (int)soc_info->psc_bases, ctlr); |
| 74 | return; |
| 75 | } |
| 76 | |
| 77 | psc_base = soc_info->psc_bases[ctlr]; |
| 78 | |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 79 | mdctl = __raw_readl(psc_base + MDCTL + 4 * id); |
Mark A. Greer | fe277d9 | 2009-03-26 19:33:21 -0700 | [diff] [blame] | 80 | mdctl &= ~MDSTAT_STATE_MASK; |
| 81 | mdctl |= next_state; |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 82 | __raw_writel(mdctl, psc_base + MDCTL + 4 * id); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 83 | |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 84 | pdstat = __raw_readl(psc_base + PDSTAT); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 85 | if ((pdstat & 0x00000001) == 0) { |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 86 | pdctl1 = __raw_readl(psc_base + PDCTL1); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 87 | pdctl1 |= 0x1; |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 88 | __raw_writel(pdctl1, psc_base + PDCTL1); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 89 | |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 90 | ptcmd = 1 << domain; |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 91 | __raw_writel(ptcmd, psc_base + PTCMD); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 92 | |
| 93 | do { |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 94 | epcpr = __raw_readl(psc_base + EPCPR); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 95 | } while ((((epcpr >> domain) & 1) == 0)); |
| 96 | |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 97 | pdctl1 = __raw_readl(psc_base + PDCTL1); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 98 | pdctl1 |= 0x100; |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 99 | __raw_writel(pdctl1, psc_base + PDCTL1); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 100 | |
| 101 | do { |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 102 | ptstat = __raw_readl(psc_base + |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 103 | PTSTAT); |
| 104 | } while (!(((ptstat >> domain) & 1) == 0)); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 105 | } else { |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 106 | ptcmd = 1 << domain; |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 107 | __raw_writel(ptcmd, psc_base + PTCMD); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 108 | |
| 109 | do { |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 110 | ptstat = __raw_readl(psc_base + PTSTAT); |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 111 | } while (!(((ptstat >> domain) & 1) == 0)); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 112 | } |
| 113 | |
Vladimir Barinov | 83f5322 | 2007-07-10 13:10:04 +0100 | [diff] [blame] | 114 | do { |
Kevin Hilman | c5b736d | 2009-03-20 17:29:01 -0700 | [diff] [blame] | 115 | mdstat = __raw_readl(psc_base + MDSTAT + 4 * id); |
Mark A. Greer | fe277d9 | 2009-03-26 19:33:21 -0700 | [diff] [blame] | 116 | } while (!((mdstat & MDSTAT_STATE_MASK) == next_state)); |
Kevin Hilman | 7c6337e | 2007-04-30 19:37:19 +0100 | [diff] [blame] | 117 | } |