2 * OMAP2/3 PRM module functions
4 * Copyright (C) 2010 Texas Instruments, Inc.
5 * Copyright (C) 2010 Nokia Corporation
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>
19 #include <plat/common.h>
21 #include <plat/prcm.h>
23 #include "prm2xxx_3xxx.h"
24 #include "cm2xxx_3xxx.h"
25 #include "prm-regbits-24xx.h"
26 #include "prm-regbits-34xx.h"
28 u32
omap2_prm_read_mod_reg(s16 module
, u16 idx
)
30 return __raw_readl(prm_base
+ module
+ idx
);
33 void omap2_prm_write_mod_reg(u32 val
, s16 module
, u16 idx
)
35 __raw_writel(val
, prm_base
+ module
+ idx
);
38 /* Read-modify-write a register in a PRM module. Caller must lock */
39 u32
omap2_prm_rmw_mod_reg_bits(u32 mask
, u32 bits
, s16 module
, s16 idx
)
43 v
= omap2_prm_read_mod_reg(module
, idx
);
46 omap2_prm_write_mod_reg(v
, module
, idx
);
51 /* Read a PRM register, AND it, and shift the result down to bit 0 */
52 u32
omap2_prm_read_mod_bits_shift(s16 domain
, s16 idx
, u32 mask
)
56 v
= omap2_prm_read_mod_reg(domain
, idx
);
63 u32
omap2_prm_set_mod_reg_bits(u32 bits
, s16 module
, s16 idx
)
65 return omap2_prm_rmw_mod_reg_bits(bits
, bits
, module
, idx
);
68 u32
omap2_prm_clear_mod_reg_bits(u32 bits
, s16 module
, s16 idx
)
70 return omap2_prm_rmw_mod_reg_bits(bits
, 0x0, module
, idx
);
75 * omap2_prm_is_hardreset_asserted - read the HW reset line state of
76 * submodules contained in the hwmod module
77 * @prm_mod: PRM submodule base (e.g. CORE_MOD)
78 * @shift: register bit shift corresponding to the reset line to check
80 * Returns 1 if the (sub)module hardreset line is currently asserted,
81 * 0 if the (sub)module hardreset line is not currently asserted, or
82 * -EINVAL if called while running on a non-OMAP2/3 chip.
84 int omap2_prm_is_hardreset_asserted(s16 prm_mod
, u8 shift
)
86 if (!(cpu_is_omap24xx() || cpu_is_omap34xx()))
89 return omap2_prm_read_mod_bits_shift(prm_mod
, OMAP2_RM_RSTCTRL
,
94 * omap2_prm_assert_hardreset - assert the HW reset line of a submodule
95 * @prm_mod: PRM submodule base (e.g. CORE_MOD)
96 * @shift: register bit shift corresponding to the reset line to assert
98 * Some IPs like dsp or iva contain processors that require an HW
99 * reset line to be asserted / deasserted in order to fully enable the
100 * IP. These modules may have multiple hard-reset lines that reset
101 * different 'submodules' inside the IP block. This function will
102 * place the submodule into reset. Returns 0 upon success or -EINVAL
103 * upon an argument error.
105 int omap2_prm_assert_hardreset(s16 prm_mod
, u8 shift
)
109 if (!(cpu_is_omap24xx() || cpu_is_omap34xx()))
113 omap2_prm_rmw_mod_reg_bits(mask
, mask
, prm_mod
, OMAP2_RM_RSTCTRL
);
119 * omap2_prm_deassert_hardreset - deassert a submodule hardreset line and wait
120 * @prm_mod: PRM submodule base (e.g. CORE_MOD)
121 * @rst_shift: register bit shift corresponding to the reset line to deassert
122 * @st_shift: register bit shift for the status of the deasserted submodule
124 * Some IPs like dsp or iva contain processors that require an HW
125 * reset line to be asserted / deasserted in order to fully enable the
126 * IP. These modules may have multiple hard-reset lines that reset
127 * different 'submodules' inside the IP block. This function will
128 * take the submodule out of reset and wait until the PRCM indicates
129 * that the reset has completed before returning. Returns 0 upon success or
130 * -EINVAL upon an argument error, -EEXIST if the submodule was already out
131 * of reset, or -EBUSY if the submodule did not exit reset promptly.
133 int omap2_prm_deassert_hardreset(s16 prm_mod
, u8 rst_shift
, u8 st_shift
)
138 if (!(cpu_is_omap24xx() || cpu_is_omap34xx()))
141 rst
= 1 << rst_shift
;
144 /* Check the current status to avoid de-asserting the line twice */
145 if (omap2_prm_read_mod_bits_shift(prm_mod
, OMAP2_RM_RSTCTRL
, rst
) == 0)
148 /* Clear the reset status by writing 1 to the status bit */
149 omap2_prm_rmw_mod_reg_bits(0xffffffff, st
, prm_mod
, OMAP2_RM_RSTST
);
150 /* de-assert the reset control line */
151 omap2_prm_rmw_mod_reg_bits(rst
, 0, prm_mod
, OMAP2_RM_RSTCTRL
);
152 /* wait the status to be set */
153 omap_test_timeout(omap2_prm_read_mod_bits_shift(prm_mod
, OMAP2_RM_RSTST
,
155 MAX_MODULE_HARDRESET_WAIT
, c
);
157 return (c
== MAX_MODULE_HARDRESET_WAIT
) ? -EBUSY
: 0;