|
@@ -11,6 +11,7 @@
|
|
|
#include <linux/moduleparam.h>
|
|
|
#include <linux/cpuidle.h>
|
|
|
#include <linux/cpu.h>
|
|
|
+#include <linux/notifier.h>
|
|
|
|
|
|
#include <asm/paca.h>
|
|
|
#include <asm/reg.h>
|
|
@@ -186,17 +187,28 @@ static struct cpuidle_state shared_states[MAX_IDLE_STATE_COUNT] = {
|
|
|
.enter = &shared_cede_loop },
|
|
|
};
|
|
|
|
|
|
-int pseries_notify_cpuidle_add_cpu(int cpu)
|
|
|
+static int pseries_cpuidle_add_cpu_notifier(struct notifier_block *n,
|
|
|
+ unsigned long action, void *hcpu)
|
|
|
{
|
|
|
+ int hotcpu = (unsigned long)hcpu;
|
|
|
struct cpuidle_device *dev =
|
|
|
- per_cpu_ptr(pseries_cpuidle_devices, cpu);
|
|
|
- if (dev && cpuidle_get_driver()) {
|
|
|
- cpuidle_disable_device(dev);
|
|
|
- cpuidle_enable_device(dev);
|
|
|
+ per_cpu_ptr(pseries_cpuidle_devices, hotcpu);
|
|
|
+
|
|
|
+ switch (action & 0xf) {
|
|
|
+ case CPU_ONLINE:
|
|
|
+ if (dev && cpuidle_get_driver()) {
|
|
|
+ cpuidle_disable_device(dev);
|
|
|
+ cpuidle_enable_device(dev);
|
|
|
+ }
|
|
|
+ break;
|
|
|
}
|
|
|
- return 0;
|
|
|
+ return NOTIFY_OK;
|
|
|
}
|
|
|
|
|
|
+static struct notifier_block setup_hotplug_notifier = {
|
|
|
+ .notifier_call = pseries_cpuidle_add_cpu_notifier,
|
|
|
+};
|
|
|
+
|
|
|
/*
|
|
|
* pseries_cpuidle_driver_init()
|
|
|
*/
|
|
@@ -321,6 +333,7 @@ static int __init pseries_processor_idle_init(void)
|
|
|
return retval;
|
|
|
}
|
|
|
|
|
|
+ register_cpu_notifier(&setup_hotplug_notifier);
|
|
|
printk(KERN_DEBUG "pseries_idle_driver registered\n");
|
|
|
|
|
|
return 0;
|