sched: Drop the rq argument to sched_class::select_task_rq()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-omap2 / prm2xxx_3xxx.c
blob051213fbc346a43cb6c91e65cdb640a5a3e60bc4
1 /*
2 * OMAP2/3 PRM module functions
4 * Copyright (C) 2010 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 <plat/common.h>
20 #include <plat/cpu.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)
41 u32 v;
43 v = omap2_prm_read_mod_reg(module, idx);
44 v &= ~mask;
45 v |= bits;
46 omap2_prm_write_mod_reg(v, module, idx);
48 return v;
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)
54 u32 v;
56 v = omap2_prm_read_mod_reg(domain, idx);
57 v &= mask;
58 v >>= __ffs(mask);
60 return v;
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);
74 /**
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()))
87 return -EINVAL;
89 return omap2_prm_read_mod_bits_shift(prm_mod, OMAP2_RM_RSTCTRL,
90 (1 << shift));
93 /**
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)
107 u32 mask;
109 if (!(cpu_is_omap24xx() || cpu_is_omap34xx()))
110 return -EINVAL;
112 mask = 1 << shift;
113 omap2_prm_rmw_mod_reg_bits(mask, mask, prm_mod, OMAP2_RM_RSTCTRL);
115 return 0;
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)
135 u32 rst, st;
136 int c;
138 if (!(cpu_is_omap24xx() || cpu_is_omap34xx()))
139 return -EINVAL;
141 rst = 1 << rst_shift;
142 st = 1 << st_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)
146 return -EEXIST;
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,
154 st),
155 MAX_MODULE_HARDRESET_WAIT, c);
157 return (c == MAX_MODULE_HARDRESET_WAIT) ? -EBUSY : 0;