ARM: OMAP4: remove duplicated include from omap_hwmod_44xx_data.c
[linux-2.6/btrfs-unstable.git] / arch / arm / mach-omap2 / prm2xxx_3xxx.c
blob30517f5af70708e360c140ef22374adc7560ec89
1 /*
2 * OMAP2/3 PRM module functions
4 * Copyright (C) 2010-2011 Texas Instruments, Inc.
5 * Copyright (C) 2010 Nokia Corporation
6 * BenoƮt Cousson
7 * Paul Walmsley
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/errno.h>
16 #include <linux/err.h>
17 #include <linux/io.h>
19 #include "common.h"
20 #include "powerdomain.h"
21 #include "prm2xxx_3xxx.h"
22 #include "prm-regbits-24xx.h"
23 #include "clockdomain.h"
25 /**
26 * omap2_prm_is_hardreset_asserted - read the HW reset line state of
27 * submodules contained in the hwmod module
28 * @prm_mod: PRM submodule base (e.g. CORE_MOD)
29 * @shift: register bit shift corresponding to the reset line to check
31 * Returns 1 if the (sub)module hardreset line is currently asserted,
32 * 0 if the (sub)module hardreset line is not currently asserted, or
33 * -EINVAL if called while running on a non-OMAP2/3 chip.
35 int omap2_prm_is_hardreset_asserted(s16 prm_mod, u8 shift)
37 return omap2_prm_read_mod_bits_shift(prm_mod, OMAP2_RM_RSTCTRL,
38 (1 << shift));
41 /**
42 * omap2_prm_assert_hardreset - assert the HW reset line of a submodule
43 * @prm_mod: PRM submodule base (e.g. CORE_MOD)
44 * @shift: register bit shift corresponding to the reset line to assert
46 * Some IPs like dsp or iva contain processors that require an HW
47 * reset line to be asserted / deasserted in order to fully enable the
48 * IP. These modules may have multiple hard-reset lines that reset
49 * different 'submodules' inside the IP block. This function will
50 * place the submodule into reset. Returns 0 upon success or -EINVAL
51 * upon an argument error.
53 int omap2_prm_assert_hardreset(s16 prm_mod, u8 shift)
55 u32 mask;
57 mask = 1 << shift;
58 omap2_prm_rmw_mod_reg_bits(mask, mask, prm_mod, OMAP2_RM_RSTCTRL);
60 return 0;
63 /**
64 * omap2_prm_deassert_hardreset - deassert a submodule hardreset line and wait
65 * @prm_mod: PRM submodule base (e.g. CORE_MOD)
66 * @rst_shift: register bit shift corresponding to the reset line to deassert
67 * @st_shift: register bit shift for the status of the deasserted submodule
69 * Some IPs like dsp or iva contain processors that require an HW
70 * reset line to be asserted / deasserted in order to fully enable the
71 * IP. These modules may have multiple hard-reset lines that reset
72 * different 'submodules' inside the IP block. This function will
73 * take the submodule out of reset and wait until the PRCM indicates
74 * that the reset has completed before returning. Returns 0 upon success or
75 * -EINVAL upon an argument error, -EEXIST if the submodule was already out
76 * of reset, or -EBUSY if the submodule did not exit reset promptly.
78 int omap2_prm_deassert_hardreset(s16 prm_mod, u8 rst_shift, u8 st_shift)
80 u32 rst, st;
81 int c;
83 rst = 1 << rst_shift;
84 st = 1 << st_shift;
86 /* Check the current status to avoid de-asserting the line twice */
87 if (omap2_prm_read_mod_bits_shift(prm_mod, OMAP2_RM_RSTCTRL, rst) == 0)
88 return -EEXIST;
90 /* Clear the reset status by writing 1 to the status bit */
91 omap2_prm_rmw_mod_reg_bits(0xffffffff, st, prm_mod, OMAP2_RM_RSTST);
92 /* de-assert the reset control line */
93 omap2_prm_rmw_mod_reg_bits(rst, 0, prm_mod, OMAP2_RM_RSTCTRL);
94 /* wait the status to be set */
95 omap_test_timeout(omap2_prm_read_mod_bits_shift(prm_mod, OMAP2_RM_RSTST,
96 st),
97 MAX_MODULE_HARDRESET_WAIT, c);
99 return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0;
103 /* Powerdomain low-level functions */
105 /* Common functions across OMAP2 and OMAP3 */
106 int omap2_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst)
108 omap2_prm_rmw_mod_reg_bits(OMAP_POWERSTATE_MASK,
109 (pwrst << OMAP_POWERSTATE_SHIFT),
110 pwrdm->prcm_offs, OMAP2_PM_PWSTCTRL);
111 return 0;
114 int omap2_pwrdm_read_next_pwrst(struct powerdomain *pwrdm)
116 return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs,
117 OMAP2_PM_PWSTCTRL,
118 OMAP_POWERSTATE_MASK);
121 int omap2_pwrdm_read_pwrst(struct powerdomain *pwrdm)
123 return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs,
124 OMAP2_PM_PWSTST,
125 OMAP_POWERSTATEST_MASK);
128 int omap2_pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank,
129 u8 pwrst)
131 u32 m;
133 m = omap2_pwrdm_get_mem_bank_onstate_mask(bank);
135 omap2_prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)), pwrdm->prcm_offs,
136 OMAP2_PM_PWSTCTRL);
138 return 0;
141 int omap2_pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank,
142 u8 pwrst)
144 u32 m;
146 m = omap2_pwrdm_get_mem_bank_retst_mask(bank);
148 omap2_prm_rmw_mod_reg_bits(m, (pwrst << __ffs(m)), pwrdm->prcm_offs,
149 OMAP2_PM_PWSTCTRL);
151 return 0;
154 int omap2_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank)
156 u32 m;
158 m = omap2_pwrdm_get_mem_bank_stst_mask(bank);
160 return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs, OMAP2_PM_PWSTST,
164 int omap2_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank)
166 u32 m;
168 m = omap2_pwrdm_get_mem_bank_retst_mask(bank);
170 return omap2_prm_read_mod_bits_shift(pwrdm->prcm_offs,
171 OMAP2_PM_PWSTCTRL, m);
174 int omap2_pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst)
176 u32 v;
178 v = pwrst << __ffs(OMAP_LOGICRETSTATE_MASK);
179 omap2_prm_rmw_mod_reg_bits(OMAP_LOGICRETSTATE_MASK, v, pwrdm->prcm_offs,
180 OMAP2_PM_PWSTCTRL);
182 return 0;
185 int omap2_pwrdm_wait_transition(struct powerdomain *pwrdm)
187 u32 c = 0;
190 * REVISIT: pwrdm_wait_transition() may be better implemented
191 * via a callback and a periodic timer check -- how long do we expect
192 * powerdomain transitions to take?
195 /* XXX Is this udelay() value meaningful? */
196 while ((omap2_prm_read_mod_reg(pwrdm->prcm_offs, OMAP2_PM_PWSTST) &
197 OMAP_INTRANSITION_MASK) &&
198 (c++ < PWRDM_TRANSITION_BAILOUT))
199 udelay(1);
201 if (c > PWRDM_TRANSITION_BAILOUT) {
202 pr_err("powerdomain: %s: waited too long to complete transition\n",
203 pwrdm->name);
204 return -EAGAIN;
207 pr_debug("powerdomain: completed transition in %d loops\n", c);
209 return 0;
212 int omap2_clkdm_add_wkdep(struct clockdomain *clkdm1,
213 struct clockdomain *clkdm2)
215 omap2_prm_set_mod_reg_bits((1 << clkdm2->dep_bit),
216 clkdm1->pwrdm.ptr->prcm_offs, PM_WKDEP);
217 return 0;
220 int omap2_clkdm_del_wkdep(struct clockdomain *clkdm1,
221 struct clockdomain *clkdm2)
223 omap2_prm_clear_mod_reg_bits((1 << clkdm2->dep_bit),
224 clkdm1->pwrdm.ptr->prcm_offs, PM_WKDEP);
225 return 0;
228 int omap2_clkdm_read_wkdep(struct clockdomain *clkdm1,
229 struct clockdomain *clkdm2)
231 return omap2_prm_read_mod_bits_shift(clkdm1->pwrdm.ptr->prcm_offs,
232 PM_WKDEP, (1 << clkdm2->dep_bit));
235 int omap2_clkdm_clear_all_wkdeps(struct clockdomain *clkdm)
237 struct clkdm_dep *cd;
238 u32 mask = 0;
240 for (cd = clkdm->wkdep_srcs; cd && cd->clkdm_name; cd++) {
241 if (!cd->clkdm)
242 continue; /* only happens if data is erroneous */
244 /* PRM accesses are slow, so minimize them */
245 mask |= 1 << cd->clkdm->dep_bit;
246 atomic_set(&cd->wkdep_usecount, 0);
249 omap2_prm_clear_mod_reg_bits(mask, clkdm->pwrdm.ptr->prcm_offs,
250 PM_WKDEP);
251 return 0;