diff options
Diffstat (limited to 'arch/arm/mach-omap2/cm.h')
-rw-r--r-- | arch/arm/mach-omap2/cm.h | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/cm.h b/arch/arm/mach-omap2/cm.h index 93473f9a551c..6222e87a79b6 100644 --- a/arch/arm/mach-omap2/cm.h +++ b/arch/arm/mach-omap2/cm.h | |||
@@ -45,17 +45,29 @@ extern void omap2_set_globals_cm(void __iomem *cm, void __iomem *cm2); | |||
45 | * struct cm_ll_data - fn ptrs to per-SoC CM function implementations | 45 | * struct cm_ll_data - fn ptrs to per-SoC CM function implementations |
46 | * @split_idlest_reg: ptr to the SoC CM-specific split_idlest_reg impl | 46 | * @split_idlest_reg: ptr to the SoC CM-specific split_idlest_reg impl |
47 | * @wait_module_ready: ptr to the SoC CM-specific wait_module_ready impl | 47 | * @wait_module_ready: ptr to the SoC CM-specific wait_module_ready impl |
48 | * @wait_module_idle: ptr to the SoC CM-specific wait_module_idle impl | ||
49 | * @module_enable: ptr to the SoC CM-specific module_enable impl | ||
50 | * @module_disable: ptr to the SoC CM-specific module_disable impl | ||
48 | */ | 51 | */ |
49 | struct cm_ll_data { | 52 | struct cm_ll_data { |
50 | int (*split_idlest_reg)(void __iomem *idlest_reg, s16 *prcm_inst, | 53 | int (*split_idlest_reg)(void __iomem *idlest_reg, s16 *prcm_inst, |
51 | u8 *idlest_reg_id); | 54 | u8 *idlest_reg_id); |
52 | int (*wait_module_ready)(s16 prcm_mod, u8 idlest_id, u8 idlest_shift); | 55 | int (*wait_module_ready)(u8 part, s16 prcm_mod, u16 idlest_reg, |
56 | u8 idlest_shift); | ||
57 | int (*wait_module_idle)(u8 part, s16 prcm_mod, u16 idlest_reg, | ||
58 | u8 idlest_shift); | ||
59 | void (*module_enable)(u8 mode, u8 part, u16 inst, u16 clkctrl_offs); | ||
60 | void (*module_disable)(u8 part, u16 inst, u16 clkctrl_offs); | ||
53 | }; | 61 | }; |
54 | 62 | ||
55 | extern int cm_split_idlest_reg(void __iomem *idlest_reg, s16 *prcm_inst, | 63 | extern int cm_split_idlest_reg(void __iomem *idlest_reg, s16 *prcm_inst, |
56 | u8 *idlest_reg_id); | 64 | u8 *idlest_reg_id); |
57 | extern int cm_wait_module_ready(s16 prcm_mod, u8 idlest_id, u8 idlest_shift); | 65 | int omap_cm_wait_module_ready(u8 part, s16 prcm_mod, u16 idlest_reg, |
58 | 66 | u8 idlest_shift); | |
67 | int omap_cm_wait_module_idle(u8 part, s16 prcm_mod, u16 idlest_reg, | ||
68 | u8 idlest_shift); | ||
69 | int omap_cm_module_enable(u8 mode, u8 part, u16 inst, u16 clkctrl_offs); | ||
70 | int omap_cm_module_disable(u8 part, u16 inst, u16 clkctrl_offs); | ||
59 | extern int cm_register(struct cm_ll_data *cld); | 71 | extern int cm_register(struct cm_ll_data *cld); |
60 | extern int cm_unregister(struct cm_ll_data *cld); | 72 | extern int cm_unregister(struct cm_ll_data *cld); |
61 | 73 | ||