With usecounting added to Powerdomains, its now possible to track Powerdomain transitions, including when a Powerdomain is turned on and turned down. Add support for hooking up callbacks for such events, which can be used to do things like context save/restore etc. which today is mostly stuffed within CPUidle and Suspend code. Signed-off-by: Rajendra Nayak <rnayak@xxxxxx> --- arch/arm/mach-omap2/powerdomain.c | 12 +++++++++++- arch/arm/mach-omap2/powerdomain.h | 4 ++++ 2 files changed, 15 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/powerdomain.c b/arch/arm/mach-omap2/powerdomain.c index f435819..d2c096c 100644 --- a/arch/arm/mach-omap2/powerdomain.c +++ b/arch/arm/mach-omap2/powerdomain.c @@ -992,10 +992,16 @@ int pwrdm_state_switch(struct powerdomain *pwrdm) */ void pwrdm_clkdm_enable(struct powerdomain *pwrdm) { + int prev_state; + if (!pwrdm) return; if (atomic_inc_return(&pwrdm->usecount) == 1) { + if (pwrdm->power_on) { + prev_state = pwrdm_read_prev_pwrst(pwrdm); + pwrdm->power_on(pwrdm, prev_state); + } pwrdm_post_transition(pwrdm); voltdm_pwrdm_enable(pwrdm->voltdm.ptr); } @@ -1010,7 +1016,7 @@ void pwrdm_clkdm_enable(struct powerdomain *pwrdm) */ void pwrdm_clkdm_disable(struct powerdomain *pwrdm) { - int val; + int val, next_state; if (!pwrdm) return; @@ -1020,6 +1026,10 @@ void pwrdm_clkdm_disable(struct powerdomain *pwrdm) if (!val) { voltdm_pwrdm_disable(pwrdm->voltdm.ptr); pwrdm_pre_transition(pwrdm); + if (pwrdm->power_down) { + next_state = pwrdm_read_next_pwrst(pwrdm); + pwrdm->power_down(pwrdm, next_state); + } } BUG_ON(val < 0); diff --git a/arch/arm/mach-omap2/powerdomain.h b/arch/arm/mach-omap2/powerdomain.h index 52a99cf..a6e09cf 100644 --- a/arch/arm/mach-omap2/powerdomain.h +++ b/arch/arm/mach-omap2/powerdomain.h @@ -92,6 +92,8 @@ struct powerdomain; * @pwrdm_clkdms: Clockdomains in this powerdomain * @node: list_head linking all powerdomains * @voltdm_node: list_head linking all powerdomains in a voltagedomain + * @power_on: callback function before powerdomain is turned on + * @power_down: callback function after powerdomain is turned down * @state: * @state_counter: * @timer: @@ -121,6 +123,8 @@ struct powerdomain { unsigned ret_logic_off_counter; unsigned ret_mem_off_counter[PWRDM_MAX_MEM_BANKS]; atomic_t usecount; + int (*power_on)(struct powerdomain *pwrdm, int prev_state); + int (*power_down)(struct powerdomain *pwrdm, int next_state); #ifdef CONFIG_PM_DEBUG s64 timer; -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html