diff options
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/mach-omap2/clockdomain44xx.c | 60 | ||||
| -rw-r--r-- | arch/arm/mach-omap2/cm44xx.h | 1 |
2 files changed, 61 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, |
diff --git a/arch/arm/mach-omap2/cm44xx.h b/arch/arm/mach-omap2/cm44xx.h index 48fc3f426fbd..0b87ec82b41c 100644 --- a/arch/arm/mach-omap2/cm44xx.h +++ b/arch/arm/mach-omap2/cm44xx.h | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | #include "cm.h" | 21 | #include "cm.h" |
| 22 | 22 | ||
| 23 | #define OMAP4_CM_CLKSTCTRL 0x0000 | 23 | #define OMAP4_CM_CLKSTCTRL 0x0000 |
| 24 | #define OMAP4_CM_STATICDEP 0x0004 | ||
| 24 | 25 | ||
| 25 | /* Function prototypes */ | 26 | /* Function prototypes */ |
| 26 | # ifndef __ASSEMBLER__ | 27 | # ifndef __ASSEMBLER__ |
