diff options
author | Rajendra Nayak <rnayak@ti.com> | 2011-02-25 17:48:14 -0500 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2011-02-25 18:09:05 -0500 |
commit | 15b08d930f0b1a65a20e042046bd99ed7f75556b (patch) | |
tree | 97a71d0a9fb4712b0e952ec51fec351aa381411a /arch/arm/mach-omap2/clockdomain44xx.c | |
parent | 04eb7773d803bd0a8249c5bba37f81c496253ea1 (diff) |
OMAP4: clockdomain: Add wkup/sleep dependency support
Add OMAP4 platform specific implementation to support clkdm
wkup and sleep dependencies a.k.a static dependencies.
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
[paul@pwsan.com: removed comment about PRM; zero-prefixed STATICDEP
register offset; fixed loop termination condition in
omap4_clkdm_clear_all_wkup_sleep_deps(); thanks to Kevin Hilman for finding
and helping fix this bug]
Cc: Kevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/mach-omap2/clockdomain44xx.c')
-rw-r--r-- | arch/arm/mach-omap2/clockdomain44xx.c | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/clockdomain44xx.c b/arch/arm/mach-omap2/clockdomain44xx.c index c0ccc4701646..a1a4ecd26544 100644 --- a/arch/arm/mach-omap2/clockdomain44xx.c +++ b/arch/arm/mach-omap2/clockdomain44xx.c | |||
@@ -12,8 +12,60 @@ | |||
12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
13 | */ | 13 | */ |
14 | 14 | ||
15 | #include <linux/kernel.h> | ||
15 | #include "clockdomain.h" | 16 | #include "clockdomain.h" |
16 | #include "cminst44xx.h" | 17 | #include "cminst44xx.h" |
18 | #include "cm44xx.h" | ||
19 | |||
20 | static int omap4_clkdm_add_wkup_sleep_dep(struct clockdomain *clkdm1, | ||
21 | struct clockdomain *clkdm2) | ||
22 | { | ||
23 | omap4_cminst_set_inst_reg_bits((1 << clkdm2->dep_bit), | ||
24 | clkdm1->prcm_partition, | ||
25 | clkdm1->cm_inst, clkdm1->clkdm_offs + | ||
26 | OMAP4_CM_STATICDEP); | ||
27 | return 0; | ||
28 | } | ||
29 | |||
30 | static int omap4_clkdm_del_wkup_sleep_dep(struct clockdomain *clkdm1, | ||
31 | struct clockdomain *clkdm2) | ||
32 | { | ||
33 | omap4_cminst_clear_inst_reg_bits((1 << clkdm2->dep_bit), | ||
34 | clkdm1->prcm_partition, | ||
35 | clkdm1->cm_inst, clkdm1->clkdm_offs + | ||
36 | OMAP4_CM_STATICDEP); | ||
37 | return 0; | ||
38 | } | ||
39 | |||
40 | static int omap4_clkdm_read_wkup_sleep_dep(struct clockdomain *clkdm1, | ||
41 | struct clockdomain *clkdm2) | ||
42 | { | ||
43 | return omap4_cminst_read_inst_reg_bits(clkdm1->prcm_partition, | ||
44 | clkdm1->cm_inst, clkdm1->clkdm_offs + | ||
45 | OMAP4_CM_STATICDEP, | ||
46 | (1 << clkdm2->dep_bit)); | ||
47 | } | ||
48 | |||
49 | static int omap4_clkdm_clear_all_wkup_sleep_deps(struct clockdomain *clkdm) | ||
50 | { | ||
51 | struct clkdm_dep *cd; | ||
52 | u32 mask = 0; | ||
53 | |||
54 | for (cd = clkdm->wkdep_srcs; cd && cd->clkdm_name; cd++) { | ||
55 | if (!omap_chip_is(cd->omap_chip)) | ||
56 | continue; | ||
57 | if (!cd->clkdm) | ||
58 | continue; /* only happens if data is erroneous */ | ||
59 | |||
60 | mask |= 1 << cd->clkdm->dep_bit; | ||
61 | atomic_set(&cd->wkdep_usecount, 0); | ||
62 | } | ||
63 | |||
64 | omap4_cminst_clear_inst_reg_bits(mask, clkdm->prcm_partition, | ||
65 | clkdm->cm_inst, clkdm->clkdm_offs + | ||
66 | OMAP4_CM_STATICDEP); | ||
67 | return 0; | ||
68 | } | ||
17 | 69 | ||
18 | static int omap4_clkdm_sleep(struct clockdomain *clkdm) | 70 | static int omap4_clkdm_sleep(struct clockdomain *clkdm) |
19 | { | 71 | { |
@@ -68,6 +120,14 @@ static int omap4_clkdm_clk_disable(struct clockdomain *clkdm) | |||
68 | } | 120 | } |
69 | 121 | ||
70 | struct clkdm_ops omap4_clkdm_operations = { | 122 | struct clkdm_ops omap4_clkdm_operations = { |
123 | .clkdm_add_wkdep = omap4_clkdm_add_wkup_sleep_dep, | ||
124 | .clkdm_del_wkdep = omap4_clkdm_del_wkup_sleep_dep, | ||
125 | .clkdm_read_wkdep = omap4_clkdm_read_wkup_sleep_dep, | ||
126 | .clkdm_clear_all_wkdeps = omap4_clkdm_clear_all_wkup_sleep_deps, | ||
127 | .clkdm_add_sleepdep = omap4_clkdm_add_wkup_sleep_dep, | ||
128 | .clkdm_del_sleepdep = omap4_clkdm_del_wkup_sleep_dep, | ||
129 | .clkdm_read_sleepdep = omap4_clkdm_read_wkup_sleep_dep, | ||
130 | .clkdm_clear_all_sleepdeps = omap4_clkdm_clear_all_wkup_sleep_deps, | ||
71 | .clkdm_sleep = omap4_clkdm_sleep, | 131 | .clkdm_sleep = omap4_clkdm_sleep, |
72 | .clkdm_wakeup = omap4_clkdm_wakeup, | 132 | .clkdm_wakeup = omap4_clkdm_wakeup, |
73 | .clkdm_allow_idle = omap4_clkdm_allow_idle, | 133 | .clkdm_allow_idle = omap4_clkdm_allow_idle, |