Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 1 | /* |
Deepthi Dharwar | 962e7bd | 2014-01-14 16:26:02 +0530 | [diff] [blame] | 2 | * cpuidle-pseries - idle state cpuidle driver. |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 3 | * Adapted from drivers/idle/intel_idle.c and |
| 4 | * drivers/acpi/processor_idle.c |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #include <linux/kernel.h> |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/init.h> |
| 11 | #include <linux/moduleparam.h> |
| 12 | #include <linux/cpuidle.h> |
| 13 | #include <linux/cpu.h> |
Deepthi Dharwar | 16aaaff6 | 2012-05-20 18:34:27 +0000 | [diff] [blame] | 14 | #include <linux/notifier.h> |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 15 | |
| 16 | #include <asm/paca.h> |
| 17 | #include <asm/reg.h> |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 18 | #include <asm/machdep.h> |
| 19 | #include <asm/firmware.h> |
Preeti U Murthy | 3f67d96 | 2014-02-12 10:18:45 +0530 | [diff] [blame] | 20 | #include <asm/runlatch.h> |
Deepthi Dharwar | 212bebb | 2013-08-22 15:23:52 +0530 | [diff] [blame] | 21 | #include <asm/plpar_wrappers.h> |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 22 | |
| 23 | struct cpuidle_driver pseries_idle_driver = { |
Daniel Lezcano | 1ca8094 | 2013-04-03 12:15:22 +0000 | [diff] [blame] | 24 | .name = "pseries_idle", |
| 25 | .owner = THIS_MODULE, |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 26 | }; |
| 27 | |
Deepthi Dharwar | bf7f61f | 2014-01-14 16:26:28 +0530 | [diff] [blame] | 28 | static int max_idle_state; |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 29 | static struct cpuidle_state *cpuidle_state_table; |
| 30 | |
Daniel Lezcano | 1ca8094 | 2013-04-03 12:15:22 +0000 | [diff] [blame] | 31 | static inline void idle_loop_prolog(unsigned long *in_purr) |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 32 | { |
Nicolas Pitre | d8c6ad3 | 2014-01-29 12:45:10 -0500 | [diff] [blame] | 33 | ppc64_runlatch_off(); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 34 | *in_purr = mfspr(SPRN_PURR); |
| 35 | /* |
| 36 | * Indicate to the HV that we are idle. Now would be |
| 37 | * a good time to find other work to dispatch. |
| 38 | */ |
| 39 | get_lppaca()->idle = 1; |
| 40 | } |
| 41 | |
Daniel Lezcano | 1ca8094 | 2013-04-03 12:15:22 +0000 | [diff] [blame] | 42 | static inline void idle_loop_epilog(unsigned long in_purr) |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 43 | { |
Anton Blanchard | 7ffcf8e | 2013-08-07 02:01:46 +1000 | [diff] [blame] | 44 | u64 wait_cycles; |
| 45 | |
| 46 | wait_cycles = be64_to_cpu(get_lppaca()->wait_state_cycles); |
| 47 | wait_cycles += mfspr(SPRN_PURR) - in_purr; |
| 48 | get_lppaca()->wait_state_cycles = cpu_to_be64(wait_cycles); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 49 | get_lppaca()->idle = 0; |
Nicolas Pitre | d8c6ad3 | 2014-01-29 12:45:10 -0500 | [diff] [blame] | 50 | |
| 51 | if (irqs_disabled()) |
| 52 | local_irq_enable(); |
| 53 | ppc64_runlatch_on(); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | static int snooze_loop(struct cpuidle_device *dev, |
| 57 | struct cpuidle_driver *drv, |
| 58 | int index) |
| 59 | { |
| 60 | unsigned long in_purr; |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 61 | |
Daniel Lezcano | 1ca8094 | 2013-04-03 12:15:22 +0000 | [diff] [blame] | 62 | idle_loop_prolog(&in_purr); |
Deepthi Dharwar | 83dac59 | 2012-10-03 18:42:26 +0000 | [diff] [blame] | 63 | local_irq_enable(); |
| 64 | set_thread_flag(TIF_POLLING_NRFLAG); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 65 | |
Deepthi Dharwar | b69dbba | 2014-01-14 16:26:09 +0530 | [diff] [blame] | 66 | while (!need_resched()) { |
Deepthi Dharwar | 83dac59 | 2012-10-03 18:42:26 +0000 | [diff] [blame] | 67 | HMT_low(); |
| 68 | HMT_very_low(); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 71 | HMT_medium(); |
Deepthi Dharwar | 83dac59 | 2012-10-03 18:42:26 +0000 | [diff] [blame] | 72 | clear_thread_flag(TIF_POLLING_NRFLAG); |
| 73 | smp_mb(); |
| 74 | |
Daniel Lezcano | 1ca8094 | 2013-04-03 12:15:22 +0000 | [diff] [blame] | 75 | idle_loop_epilog(in_purr); |
| 76 | |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 77 | return index; |
| 78 | } |
| 79 | |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 80 | static void check_and_cede_processor(void) |
| 81 | { |
| 82 | /* |
Benjamin Herrenschmidt | be2cf20 | 2012-07-10 18:36:40 +1000 | [diff] [blame] | 83 | * Ensure our interrupt state is properly tracked, |
| 84 | * also checks if no interrupt has occurred while we |
| 85 | * were soft-disabled |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 86 | */ |
Benjamin Herrenschmidt | be2cf20 | 2012-07-10 18:36:40 +1000 | [diff] [blame] | 87 | if (prep_irq_for_idle()) { |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 88 | cede_processor(); |
Benjamin Herrenschmidt | be2cf20 | 2012-07-10 18:36:40 +1000 | [diff] [blame] | 89 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 90 | /* Ensure that H_CEDE returns with IRQs on */ |
| 91 | if (WARN_ON(!(mfmsr() & MSR_EE))) |
| 92 | __hard_irq_enable(); |
| 93 | #endif |
| 94 | } |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 95 | } |
| 96 | |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 97 | static int dedicated_cede_loop(struct cpuidle_device *dev, |
| 98 | struct cpuidle_driver *drv, |
| 99 | int index) |
| 100 | { |
| 101 | unsigned long in_purr; |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 102 | |
Daniel Lezcano | 1ca8094 | 2013-04-03 12:15:22 +0000 | [diff] [blame] | 103 | idle_loop_prolog(&in_purr); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 104 | get_lppaca()->donate_dedicated_cpu = 1; |
| 105 | |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 106 | HMT_medium(); |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 107 | check_and_cede_processor(); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 108 | |
| 109 | get_lppaca()->donate_dedicated_cpu = 0; |
Daniel Lezcano | 1ca8094 | 2013-04-03 12:15:22 +0000 | [diff] [blame] | 110 | |
| 111 | idle_loop_epilog(in_purr); |
| 112 | |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 113 | return index; |
| 114 | } |
| 115 | |
| 116 | static int shared_cede_loop(struct cpuidle_device *dev, |
| 117 | struct cpuidle_driver *drv, |
| 118 | int index) |
| 119 | { |
| 120 | unsigned long in_purr; |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 121 | |
Daniel Lezcano | 1ca8094 | 2013-04-03 12:15:22 +0000 | [diff] [blame] | 122 | idle_loop_prolog(&in_purr); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 123 | |
| 124 | /* |
| 125 | * Yield the processor to the hypervisor. We return if |
| 126 | * an external interrupt occurs (which are driven prior |
| 127 | * to returning here) or if a prod occurs from another |
| 128 | * processor. When returning here, external interrupts |
| 129 | * are enabled. |
| 130 | */ |
Benjamin Herrenschmidt | 7230c56 | 2012-03-06 18:27:59 +1100 | [diff] [blame] | 131 | check_and_cede_processor(); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 132 | |
Daniel Lezcano | 1ca8094 | 2013-04-03 12:15:22 +0000 | [diff] [blame] | 133 | idle_loop_epilog(in_purr); |
| 134 | |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 135 | return index; |
| 136 | } |
| 137 | |
| 138 | /* |
| 139 | * States for dedicated partition case. |
| 140 | */ |
Deepthi Dharwar | bf7f61f | 2014-01-14 16:26:28 +0530 | [diff] [blame] | 141 | static struct cpuidle_state dedicated_states[] = { |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 142 | { /* Snooze */ |
| 143 | .name = "snooze", |
| 144 | .desc = "snooze", |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 145 | .exit_latency = 0, |
| 146 | .target_residency = 0, |
| 147 | .enter = &snooze_loop }, |
| 148 | { /* CEDE */ |
| 149 | .name = "CEDE", |
| 150 | .desc = "CEDE", |
Deepthi Dharwar | 83dac59 | 2012-10-03 18:42:26 +0000 | [diff] [blame] | 151 | .exit_latency = 10, |
| 152 | .target_residency = 100, |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 153 | .enter = &dedicated_cede_loop }, |
| 154 | }; |
| 155 | |
| 156 | /* |
| 157 | * States for shared partition case. |
| 158 | */ |
Deepthi Dharwar | bf7f61f | 2014-01-14 16:26:28 +0530 | [diff] [blame] | 159 | static struct cpuidle_state shared_states[] = { |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 160 | { /* Shared Cede */ |
| 161 | .name = "Shared Cede", |
| 162 | .desc = "Shared Cede", |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 163 | .exit_latency = 0, |
| 164 | .target_residency = 0, |
| 165 | .enter = &shared_cede_loop }, |
| 166 | }; |
| 167 | |
Deepthi Dharwar | 16aaaff6 | 2012-05-20 18:34:27 +0000 | [diff] [blame] | 168 | static int pseries_cpuidle_add_cpu_notifier(struct notifier_block *n, |
| 169 | unsigned long action, void *hcpu) |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 170 | { |
Deepthi Dharwar | 16aaaff6 | 2012-05-20 18:34:27 +0000 | [diff] [blame] | 171 | int hotcpu = (unsigned long)hcpu; |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 172 | struct cpuidle_device *dev = |
Deepthi Dharwar | b69dbba | 2014-01-14 16:26:09 +0530 | [diff] [blame] | 173 | per_cpu(cpuidle_devices, hotcpu); |
Deepthi Dharwar | 16aaaff6 | 2012-05-20 18:34:27 +0000 | [diff] [blame] | 174 | |
Deepthi Dharwar | 852d8cb | 2012-07-03 20:07:22 +0000 | [diff] [blame] | 175 | if (dev && cpuidle_get_driver()) { |
| 176 | switch (action) { |
| 177 | case CPU_ONLINE: |
| 178 | case CPU_ONLINE_FROZEN: |
| 179 | cpuidle_pause_and_lock(); |
Deepthi Dharwar | 16aaaff6 | 2012-05-20 18:34:27 +0000 | [diff] [blame] | 180 | cpuidle_enable_device(dev); |
Deepthi Dharwar | 852d8cb | 2012-07-03 20:07:22 +0000 | [diff] [blame] | 181 | cpuidle_resume_and_unlock(); |
| 182 | break; |
| 183 | |
| 184 | case CPU_DEAD: |
| 185 | case CPU_DEAD_FROZEN: |
| 186 | cpuidle_pause_and_lock(); |
| 187 | cpuidle_disable_device(dev); |
| 188 | cpuidle_resume_and_unlock(); |
| 189 | break; |
| 190 | |
| 191 | default: |
| 192 | return NOTIFY_DONE; |
Deepthi Dharwar | 16aaaff6 | 2012-05-20 18:34:27 +0000 | [diff] [blame] | 193 | } |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 194 | } |
Deepthi Dharwar | 16aaaff6 | 2012-05-20 18:34:27 +0000 | [diff] [blame] | 195 | return NOTIFY_OK; |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 196 | } |
| 197 | |
Deepthi Dharwar | 16aaaff6 | 2012-05-20 18:34:27 +0000 | [diff] [blame] | 198 | static struct notifier_block setup_hotplug_notifier = { |
| 199 | .notifier_call = pseries_cpuidle_add_cpu_notifier, |
| 200 | }; |
| 201 | |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 202 | /* |
| 203 | * pseries_cpuidle_driver_init() |
| 204 | */ |
| 205 | static int pseries_cpuidle_driver_init(void) |
| 206 | { |
| 207 | int idle_state; |
| 208 | struct cpuidle_driver *drv = &pseries_idle_driver; |
| 209 | |
| 210 | drv->state_count = 0; |
| 211 | |
Deepthi Dharwar | bf7f61f | 2014-01-14 16:26:28 +0530 | [diff] [blame] | 212 | for (idle_state = 0; idle_state < max_idle_state; ++idle_state) { |
| 213 | /* Is the state not enabled? */ |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 214 | if (cpuidle_state_table[idle_state].enter == NULL) |
| 215 | continue; |
| 216 | |
| 217 | drv->states[drv->state_count] = /* structure copy */ |
| 218 | cpuidle_state_table[idle_state]; |
| 219 | |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 220 | drv->state_count += 1; |
| 221 | } |
| 222 | |
| 223 | return 0; |
| 224 | } |
| 225 | |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 226 | /* |
| 227 | * pseries_idle_probe() |
| 228 | * Choose state table for shared versus dedicated partition |
| 229 | */ |
| 230 | static int pseries_idle_probe(void) |
| 231 | { |
| 232 | |
Deepthi Dharwar | e8bb3e0 | 2011-11-30 02:47:03 +0000 | [diff] [blame] | 233 | if (cpuidle_disable != IDLE_NO_OVERRIDE) |
| 234 | return -ENODEV; |
| 235 | |
Deepthi Dharwar | b69dbba | 2014-01-14 16:26:09 +0530 | [diff] [blame] | 236 | if (firmware_has_feature(FW_FEATURE_SPLPAR)) { |
Deepthi Dharwar | bf7f61f | 2014-01-14 16:26:28 +0530 | [diff] [blame] | 237 | if (lppaca_shared_proc(get_lppaca())) { |
Deepthi Dharwar | b69dbba | 2014-01-14 16:26:09 +0530 | [diff] [blame] | 238 | cpuidle_state_table = shared_states; |
Deepthi Dharwar | bf7f61f | 2014-01-14 16:26:28 +0530 | [diff] [blame] | 239 | max_idle_state = ARRAY_SIZE(shared_states); |
| 240 | } else { |
Deepthi Dharwar | b69dbba | 2014-01-14 16:26:09 +0530 | [diff] [blame] | 241 | cpuidle_state_table = dedicated_states; |
Deepthi Dharwar | bf7f61f | 2014-01-14 16:26:28 +0530 | [diff] [blame] | 242 | max_idle_state = ARRAY_SIZE(dedicated_states); |
| 243 | } |
Deepthi Dharwar | b69dbba | 2014-01-14 16:26:09 +0530 | [diff] [blame] | 244 | } else |
| 245 | return -ENODEV; |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 246 | |
| 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | static int __init pseries_processor_idle_init(void) |
| 251 | { |
| 252 | int retval; |
| 253 | |
| 254 | retval = pseries_idle_probe(); |
| 255 | if (retval) |
| 256 | return retval; |
| 257 | |
| 258 | pseries_cpuidle_driver_init(); |
Deepthi Dharwar | b69dbba | 2014-01-14 16:26:09 +0530 | [diff] [blame] | 259 | retval = cpuidle_register(&pseries_idle_driver, NULL); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 260 | if (retval) { |
| 261 | printk(KERN_DEBUG "Registration of pseries driver failed.\n"); |
| 262 | return retval; |
| 263 | } |
| 264 | |
Deepthi Dharwar | 16aaaff6 | 2012-05-20 18:34:27 +0000 | [diff] [blame] | 265 | register_cpu_notifier(&setup_hotplug_notifier); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 266 | printk(KERN_DEBUG "pseries_idle_driver registered\n"); |
Deepthi Dharwar | 707827f | 2011-11-30 02:46:42 +0000 | [diff] [blame] | 267 | return 0; |
| 268 | } |
| 269 | |
Deepthi Dharwar | 12431c6 | 2014-01-14 16:26:18 +0530 | [diff] [blame] | 270 | device_initcall(pseries_processor_idle_init); |