>>-----Original Message----- >>From: Kevin Hilman [mailto:khilman@xxxxxxxxxxxxxxxxxxx] >>Sent: Saturday, January 23, 2010 6:12 AM >>To: Gopinath, Thara >>Cc: linux-omap@xxxxxxxxxxxxxxx >>Subject: Re: [PATCH 8/8] OMAP3 PM: Support to enable disable OSWR feature from pm debug fs >> >>Thara Gopinath <thara@xxxxxx> writes: >> >>> This patch adds enable_oswr flag in pm debug fs to enable >>> disable OSWR feature. >>> To enable this feature: >>> echo 1 > <path>/debug/pm_debug/enable_oswr >>> To disable this feature >>> echo 0 > <path>/debug/pm_debug/enable_oswr >>> >>> Signed-off-by: Thara Gopinath <thara@xxxxxx> >> >>I don't like this approach since it leads to incorrect CPUidle statistics. >> >>Sanjeev has proposed a different approach[1] (which I still need to >>review/merge) which just invalidates particular CPUidle states and >>then lets the CPUidle enter hook only pick a valid state. >> >>This then will work for the enable_off_mode support and the enable_oswr support >>as well as anything else we can dream up down the road. Hi Kevin, Yes I agree with you.. I did not implement this for OSWR as I did not see it in you pm branch. I thought let the first set of patches for OSWR be merged in and then when we change enable_off_mode we can change enable_oswr also. Is there an issue with this? Regards Thara >> >>Kevin >> >>[1] http://marc.info/?l=linux-omap&m=125908504530674&w=2 >> >>> --- >>> arch/arm/mach-omap2/cpuidle34xx.c | 9 +++++++++ >>> arch/arm/mach-omap2/pm-debug.c | 2 ++ >>> arch/arm/mach-omap2/pm.h | 1 + >>> arch/arm/mach-omap2/pm34xx.c | 1 + >>> 4 files changed, 13 insertions(+), 0 deletions(-) >>> >>> diff --git a/arch/arm/mach-omap2/cpuidle34xx.c b/arch/arm/mach-omap2/cpuidle34xx.c >>> index 419f683..91ef0df 100644 >>> --- a/arch/arm/mach-omap2/cpuidle34xx.c >>> +++ b/arch/arm/mach-omap2/cpuidle34xx.c >>> @@ -155,11 +155,20 @@ static int omap3_enter_idle(struct cpuidle_device *dev, >>> * bits in case the powerdomain enters retention >>> */ >>> if (mpu_state <= PWRDM_POWER_RET) { >>> + if (!enable_oswr) { >>> + mpu_logicl1_ret_state = PWRDM_POWER_RET; >>> + mpu_l2cache_ret_state = PWRDM_POWER_RET; >>> + } >>> pwrdm_set_logic_retst(mpu_pd, mpu_logicl1_ret_state); >>> pwrdm_set_mem_retst(mpu_pd, 0, mpu_l2cache_ret_state); >>> } >>> >>> if (core_state <= PWRDM_POWER_RET) { >>> + if (!enable_oswr) { >>> + core_logic_state = PWRDM_POWER_RET; >>> + core_mem1_ret_state = PWRDM_POWER_RET; >>> + core_mem2_ret_state = PWRDM_POWER_RET; >>> + } >>> pwrdm_set_logic_retst(core_pd, core_logic_state); >>> pwrdm_set_mem_retst(core_pd, 0, core_mem1_ret_state); >>> pwrdm_set_mem_retst(core_pd, 1, core_mem2_ret_state); >>> diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c >>> index 035cfa7..cdb081b 100644 >>> --- a/arch/arm/mach-omap2/pm-debug.c >>> +++ b/arch/arm/mach-omap2/pm-debug.c >>> @@ -601,6 +601,8 @@ static int __init pm_dbg_init(void) >>> &enable_off_mode, &pm_dbg_option_fops); >>> (void) debugfs_create_file("sleep_while_idle", S_IRUGO | S_IWUGO, d, >>> &sleep_while_idle, &pm_dbg_option_fops); >>> + (void) debugfs_create_file("enable_oswr", S_IRUGO | S_IWUGO, d, >>> + &enable_oswr, &pm_dbg_option_fops); >>> (void) debugfs_create_file("wakeup_timer_seconds", S_IRUGO | S_IWUGO, d, >>> &wakeup_timer_seconds, &pm_dbg_option_fops); >>> >>> diff --git a/arch/arm/mach-omap2/pm.h b/arch/arm/mach-omap2/pm.h >>> index 75aa685..03c49a8 100644 >>> --- a/arch/arm/mach-omap2/pm.h >>> +++ b/arch/arm/mach-omap2/pm.h >>> @@ -15,6 +15,7 @@ >>> >>> extern u32 enable_off_mode; >>> extern u32 sleep_while_idle; >>> +extern u32 enable_oswr; >>> extern u32 voltage_off_while_idle; >>> >>> extern void *omap3_secure_ram_storage; >>> diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c >>> index bfdcac2..53c08a5 100644 >>> --- a/arch/arm/mach-omap2/pm34xx.c >>> +++ b/arch/arm/mach-omap2/pm34xx.c >>> @@ -73,6 +73,7 @@ static inline bool is_suspending(void) >>> >>> u32 enable_off_mode; >>> u32 sleep_while_idle; >>> +u32 enable_oswr; >>> u32 wakeup_timer_seconds; >>> u32 voltage_off_while_idle; >>> >>> -- >>> 1.5.6.3 >>> >>> -- >>> 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 -- 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