diff options
author | Tony Lindgren <tony@atomide.com> | 2008-07-03 05:24:44 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2008-07-03 05:24:44 -0400 |
commit | ff00fcc9ca8f18facbc3fcd779e85887e5a0d247 (patch) | |
tree | b1270b8b3a748e3ff7a16551ba4831fff4a5d118 /arch/arm/mach-omap2/prm.h | |
parent | a58caad11301a5bdc2d7b76596ab5477221f7a9b (diff) |
ARM: OMAP: Turn CM and PRM access into functions
Otherwise compiling in omap2 and omap3 will not work.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/prm.h')
-rw-r--r-- | arch/arm/mach-omap2/prm.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/prm.h b/arch/arm/mach-omap2/prm.h index e901fb99b237..bbf41fc8e9a9 100644 --- a/arch/arm/mach-omap2/prm.h +++ b/arch/arm/mach-omap2/prm.h | |||
@@ -168,6 +168,18 @@ | |||
168 | /* Power/reset management domain register get/set */ | 168 | /* Power/reset management domain register get/set */ |
169 | extern u32 prm_read_mod_reg(s16 module, u16 idx); | 169 | extern u32 prm_read_mod_reg(s16 module, u16 idx); |
170 | extern void prm_write_mod_reg(u32 val, s16 module, u16 idx); | 170 | extern void prm_write_mod_reg(u32 val, s16 module, u16 idx); |
171 | extern u32 prm_rmw_mod_reg_bits(u32 mask, u32 bits, s16 module, s16 idx); | ||
172 | |||
173 | /* Read-modify-write bits in a PRM register (by domain) */ | ||
174 | static inline u32 prm_set_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
175 | { | ||
176 | return prm_rmw_mod_reg_bits(bits, bits, module, idx); | ||
177 | } | ||
178 | |||
179 | static inline u32 prm_clear_mod_reg_bits(u32 bits, s16 module, s16 idx) | ||
180 | { | ||
181 | return prm_rmw_mod_reg_bits(bits, 0x0, module, idx); | ||
182 | } | ||
171 | 183 | ||
172 | #endif | 184 | #endif |
173 | 185 | ||