4 * Copyright (C) 2011-2012 Texas Instruments Incorporated - http://www.ti.com/
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #include <linux/kernel.h>
17 #include <linux/types.h>
18 #include <linux/errno.h>
19 #include <linux/err.h>
22 #include "powerdomain.h"
24 #include "prm-regbits-33xx.h"
26 /* Read a register in a PRM instance */
27 u32 am33xx_prm_read_reg(s16 inst, u16 idx)
29 return readl_relaxed(prm_base + inst + idx);
32 /* Write into a register in a PRM instance */
33 void am33xx_prm_write_reg(u32 val, s16 inst, u16 idx)
35 writel_relaxed(val, prm_base + inst + idx);
38 /* Read-modify-write a register in PRM. Caller must lock */
39 u32 am33xx_prm_rmw_reg_bits(u32 mask, u32 bits, s16 inst, s16 idx)
43 v = am33xx_prm_read_reg(inst, idx);
46 am33xx_prm_write_reg(v, inst, idx);
52 * am33xx_prm_is_hardreset_asserted - read the HW reset line state of
53 * submodules contained in the hwmod module
54 * @shift: register bit shift corresponding to the reset line to check
55 * @inst: CM instance register offset (*_INST macro)
56 * @rstctrl_offs: RM_RSTCTRL register address offset for this module
58 * Returns 1 if the (sub)module hardreset line is currently asserted,
59 * 0 if the (sub)module hardreset line is not currently asserted, or
60 * -EINVAL upon parameter error.
62 int am33xx_prm_is_hardreset_asserted(u8 shift, s16 inst, u16 rstctrl_offs)
66 v = am33xx_prm_read_reg(inst, rstctrl_offs);
74 * am33xx_prm_assert_hardreset - assert the HW reset line of a submodule
75 * @shift: register bit shift corresponding to the reset line to assert
76 * @inst: CM instance register offset (*_INST macro)
77 * @rstctrl_reg: RM_RSTCTRL register address for this module
79 * Some IPs like dsp, ipu or iva contain processors that require an HW
80 * reset line to be asserted / deasserted in order to fully enable the
81 * IP. These modules may have multiple hard-reset lines that reset
82 * different 'submodules' inside the IP block. This function will
83 * place the submodule into reset. Returns 0 upon success or -EINVAL
84 * upon an argument error.
86 int am33xx_prm_assert_hardreset(u8 shift, s16 inst, u16 rstctrl_offs)
88 u32 mask = 1 << shift;
90 am33xx_prm_rmw_reg_bits(mask, mask, inst, rstctrl_offs);
96 * am33xx_prm_deassert_hardreset - deassert a submodule hardreset line and
98 * @shift: register bit shift corresponding to the reset line to deassert
99 * @inst: CM instance register offset (*_INST macro)
100 * @rstctrl_reg: RM_RSTCTRL register address for this module
101 * @rstst_reg: RM_RSTST register address for this module
103 * Some IPs like dsp, ipu or iva contain processors that require an HW
104 * reset line to be asserted / deasserted in order to fully enable the
105 * IP. These modules may have multiple hard-reset lines that reset
106 * different 'submodules' inside the IP block. This function will
107 * take the submodule out of reset and wait until the PRCM indicates
108 * that the reset has completed before returning. Returns 0 upon success or
109 * -EINVAL upon an argument error, -EEXIST if the submodule was already out
110 * of reset, or -EBUSY if the submodule did not exit reset promptly.
112 int am33xx_prm_deassert_hardreset(u8 shift, u8 st_shift, s16 inst,
113 u16 rstctrl_offs, u16 rstst_offs)
116 u32 mask = 1 << st_shift;
118 /* Check the current status to avoid de-asserting the line twice */
119 if (am33xx_prm_is_hardreset_asserted(shift, inst, rstctrl_offs) == 0)
122 /* Clear the reset status by writing 1 to the status bit */
123 am33xx_prm_rmw_reg_bits(0xffffffff, mask, inst, rstst_offs);
125 /* de-assert the reset control line */
128 am33xx_prm_rmw_reg_bits(mask, 0, inst, rstctrl_offs);
130 /* wait the status to be set */
131 omap_test_timeout(am33xx_prm_is_hardreset_asserted(st_shift, inst,
133 MAX_MODULE_HARDRESET_WAIT, c);
135 return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0;
138 static int am33xx_pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst)
140 am33xx_prm_rmw_reg_bits(OMAP_POWERSTATE_MASK,
141 (pwrst << OMAP_POWERSTATE_SHIFT),
142 pwrdm->prcm_offs, pwrdm->pwrstctrl_offs);
146 static int am33xx_pwrdm_read_next_pwrst(struct powerdomain *pwrdm)
150 v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstctrl_offs);
151 v &= OMAP_POWERSTATE_MASK;
152 v >>= OMAP_POWERSTATE_SHIFT;
157 static int am33xx_pwrdm_read_pwrst(struct powerdomain *pwrdm)
161 v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs);
162 v &= OMAP_POWERSTATEST_MASK;
163 v >>= OMAP_POWERSTATEST_SHIFT;
168 static int am33xx_pwrdm_read_prev_pwrst(struct powerdomain *pwrdm)
172 v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs);
173 v &= AM33XX_LASTPOWERSTATEENTERED_MASK;
174 v >>= AM33XX_LASTPOWERSTATEENTERED_SHIFT;
179 static int am33xx_pwrdm_set_lowpwrstchange(struct powerdomain *pwrdm)
181 am33xx_prm_rmw_reg_bits(AM33XX_LOWPOWERSTATECHANGE_MASK,
182 (1 << AM33XX_LOWPOWERSTATECHANGE_SHIFT),
183 pwrdm->prcm_offs, pwrdm->pwrstctrl_offs);
187 static int am33xx_pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm)
189 am33xx_prm_rmw_reg_bits(AM33XX_LASTPOWERSTATEENTERED_MASK,
190 AM33XX_LASTPOWERSTATEENTERED_MASK,
191 pwrdm->prcm_offs, pwrdm->pwrstst_offs);
195 static int am33xx_pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst)
199 m = pwrdm->logicretstate_mask;
203 am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)),
204 pwrdm->prcm_offs, pwrdm->pwrstctrl_offs);
209 static int am33xx_pwrdm_read_logic_pwrst(struct powerdomain *pwrdm)
213 v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs);
214 v &= AM33XX_LOGICSTATEST_MASK;
215 v >>= AM33XX_LOGICSTATEST_SHIFT;
220 static int am33xx_pwrdm_read_logic_retst(struct powerdomain *pwrdm)
224 m = pwrdm->logicretstate_mask;
228 v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstctrl_offs);
235 static int am33xx_pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank,
240 m = pwrdm->mem_on_mask[bank];
244 am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)),
245 pwrdm->prcm_offs, pwrdm->pwrstctrl_offs);
250 static int am33xx_pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank,
255 m = pwrdm->mem_ret_mask[bank];
259 am33xx_prm_rmw_reg_bits(m, (pwrst << __ffs(m)),
260 pwrdm->prcm_offs, pwrdm->pwrstctrl_offs);
265 static int am33xx_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank)
269 m = pwrdm->mem_pwrst_mask[bank];
273 v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs);
280 static int am33xx_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank)
284 m = pwrdm->mem_retst_mask[bank];
288 v = am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstctrl_offs);
295 static int am33xx_pwrdm_wait_transition(struct powerdomain *pwrdm)
300 * REVISIT: pwrdm_wait_transition() may be better implemented
301 * via a callback and a periodic timer check -- how long do we expect
302 * powerdomain transitions to take?
305 /* XXX Is this udelay() value meaningful? */
306 while ((am33xx_prm_read_reg(pwrdm->prcm_offs, pwrdm->pwrstst_offs)
307 & OMAP_INTRANSITION_MASK) &&
308 (c++ < PWRDM_TRANSITION_BAILOUT))
311 if (c > PWRDM_TRANSITION_BAILOUT) {
312 pr_err("powerdomain: %s: waited too long to complete transition\n",
317 pr_debug("powerdomain: completed transition in %d loops\n", c);
322 static int am33xx_check_vcvp(void)
324 /* No VC/VP on am33xx devices */
328 struct pwrdm_ops am33xx_pwrdm_operations = {
329 .pwrdm_set_next_pwrst = am33xx_pwrdm_set_next_pwrst,
330 .pwrdm_read_next_pwrst = am33xx_pwrdm_read_next_pwrst,
331 .pwrdm_read_pwrst = am33xx_pwrdm_read_pwrst,
332 .pwrdm_read_prev_pwrst = am33xx_pwrdm_read_prev_pwrst,
333 .pwrdm_set_logic_retst = am33xx_pwrdm_set_logic_retst,
334 .pwrdm_read_logic_pwrst = am33xx_pwrdm_read_logic_pwrst,
335 .pwrdm_read_logic_retst = am33xx_pwrdm_read_logic_retst,
336 .pwrdm_clear_all_prev_pwrst = am33xx_pwrdm_clear_all_prev_pwrst,
337 .pwrdm_set_lowpwrstchange = am33xx_pwrdm_set_lowpwrstchange,
338 .pwrdm_read_mem_pwrst = am33xx_pwrdm_read_mem_pwrst,
339 .pwrdm_read_mem_retst = am33xx_pwrdm_read_mem_retst,
340 .pwrdm_set_mem_onst = am33xx_pwrdm_set_mem_onst,
341 .pwrdm_set_mem_retst = am33xx_pwrdm_set_mem_retst,
342 .pwrdm_wait_transition = am33xx_pwrdm_wait_transition,
343 .pwrdm_has_voltdm = am33xx_check_vcvp,