powerpc/cpuidle: Handle power_save=off
authorDeepthi Dharwar <deepthi@linux.vnet.ibm.com>
Wed, 30 Nov 2011 02:47:03 +0000 (02:47 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Thu, 8 Dec 2011 02:57:34 +0000 (13:57 +1100)
This patch makes pseries_idle_driver not to be registered when
power_save=off kernel boot option is specified. The
cpuidle_disable variable used here is similar to
its usage on x86. If cpuidle_disable is set then
sysfs entries for cpuidle framework are not created
and the required drivers are not loaded.

Signed-off-by: Deepthi Dharwar <deepthi@linux.vnet.ibm.com>
Signed-off-by: Trinabh Gupta <g.trinabh@gmail.com>
Signed-off-by: Arun R Bharadwaj <arun.r.bharadwaj@gmail.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/include/asm/processor.h
arch/powerpc/platforms/pseries/processor_idle.c

index 811b7e744378cf7fcd9bfba6c71f305522239b68..b585bff1a022528c23a4193b2217ce4fde44b92d 100644 (file)
@@ -382,6 +382,7 @@ static inline unsigned long get_clean_sp(struct pt_regs *regs, int is_32)
 }
 #endif
 
+extern unsigned long cpuidle_disable;
 enum idle_boot_override {IDLE_NO_OVERRIDE = 0, IDLE_POWERSAVE_OFF};
 
 #endif /* __KERNEL__ */
index f7e3e877cb69af80906af07d90beb0717b00f46b..085fd3f45ad2fd3e6beba86099d3d36cc2c88feb 100644 (file)
@@ -269,6 +269,9 @@ static int pseries_idle_probe(void)
        if (!firmware_has_feature(FW_FEATURE_SPLPAR))
                return -ENODEV;
 
+       if (cpuidle_disable != IDLE_NO_OVERRIDE)
+               return -ENODEV;
+
        if (max_idle_state == 0) {
                printk(KERN_DEBUG "pseries processor idle disabled.\n");
                return -EPERM;