Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 1 | /* |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 2 | * OMAP4+ CPU idle Routines |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 3 | * |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 4 | * Copyright (C) 2011-2013 Texas Instruments, Inc. |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 5 | * Santosh Shilimkar <santosh.shilimkar@ti.com> |
| 6 | * Rajendra Nayak <rnayak@ti.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/sched.h> |
| 14 | #include <linux/cpuidle.h> |
| 15 | #include <linux/cpu_pm.h> |
| 16 | #include <linux/export.h> |
| 17 | |
| 18 | #include <asm/proc-fns.h> |
| 19 | |
| 20 | #include "common.h" |
| 21 | #include "pm.h" |
| 22 | #include "prm.h" |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 23 | #include "clockdomain.h" |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 24 | |
Daniel Lezcano | 7aeb658 | 2012-04-24 16:05:27 +0200 | [diff] [blame] | 25 | /* Machine specific information */ |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 26 | struct idle_statedata { |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 27 | u32 cpu_state; |
| 28 | u32 mpu_logic_state; |
| 29 | u32 mpu_state; |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 30 | }; |
| 31 | |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 32 | static struct idle_statedata omap4_idle_data[] = { |
Daniel Lezcano | d0d133d | 2012-04-24 16:05:26 +0200 | [diff] [blame] | 33 | { |
| 34 | .cpu_state = PWRDM_POWER_ON, |
| 35 | .mpu_state = PWRDM_POWER_ON, |
| 36 | .mpu_logic_state = PWRDM_POWER_RET, |
| 37 | }, |
| 38 | { |
| 39 | .cpu_state = PWRDM_POWER_OFF, |
| 40 | .mpu_state = PWRDM_POWER_RET, |
| 41 | .mpu_logic_state = PWRDM_POWER_RET, |
| 42 | }, |
| 43 | { |
| 44 | .cpu_state = PWRDM_POWER_OFF, |
| 45 | .mpu_state = PWRDM_POWER_RET, |
| 46 | .mpu_logic_state = PWRDM_POWER_OFF, |
| 47 | }, |
| 48 | }; |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 49 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 50 | static struct powerdomain *mpu_pd, *cpu_pd[NR_CPUS]; |
| 51 | static struct clockdomain *cpu_clkdm[NR_CPUS]; |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 52 | |
Kevin Hilman | 5b4d5bc | 2012-03-14 17:26:17 -0700 | [diff] [blame] | 53 | static atomic_t abort_barrier; |
| 54 | static bool cpu_done[NR_CPUS]; |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 55 | static struct idle_statedata *state_ptr = &omap4_idle_data[0]; |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 56 | |
Paul Walmsley | 9db316b | 2012-12-15 01:39:19 -0700 | [diff] [blame] | 57 | /* Private functions */ |
| 58 | |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 59 | /** |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 60 | * omap_enter_idle_[simple/coupled] - OMAP4PLUS cpuidle entry functions |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 61 | * @dev: cpuidle device |
| 62 | * @drv: cpuidle driver |
| 63 | * @index: the index of state to be entered |
| 64 | * |
| 65 | * Called from the CPUidle framework to program the device to the |
| 66 | * specified low power state selected by the governor. |
| 67 | * Returns the amount of time spent in the low power state. |
| 68 | */ |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 69 | static int omap_enter_idle_simple(struct cpuidle_device *dev, |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 70 | struct cpuidle_driver *drv, |
| 71 | int index) |
| 72 | { |
| 73 | local_fiq_disable(); |
| 74 | omap_do_wfi(); |
| 75 | local_fiq_enable(); |
| 76 | |
| 77 | return index; |
| 78 | } |
| 79 | |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 80 | static int omap_enter_idle_coupled(struct cpuidle_device *dev, |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 81 | struct cpuidle_driver *drv, |
| 82 | int index) |
| 83 | { |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 84 | struct idle_statedata *cx = state_ptr + index; |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 85 | |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 86 | local_fiq_disable(); |
| 87 | |
| 88 | /* |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 89 | * CPU0 has to wait and stay ON until CPU1 is OFF state. |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 90 | * This is necessary to honour hardware recommondation |
| 91 | * of triggeing all the possible low power modes once CPU1 is |
| 92 | * out of coherency and in OFF mode. |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 93 | */ |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 94 | if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) { |
Kevin Hilman | 5b4d5bc | 2012-03-14 17:26:17 -0700 | [diff] [blame] | 95 | while (pwrdm_read_pwrst(cpu_pd[1]) != PWRDM_POWER_OFF) { |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 96 | cpu_relax(); |
Kevin Hilman | 5b4d5bc | 2012-03-14 17:26:17 -0700 | [diff] [blame] | 97 | |
| 98 | /* |
| 99 | * CPU1 could have already entered & exited idle |
| 100 | * without hitting off because of a wakeup |
| 101 | * or a failed attempt to hit off mode. Check for |
| 102 | * that here, otherwise we could spin forever |
| 103 | * waiting for CPU1 off. |
| 104 | */ |
| 105 | if (cpu_done[1]) |
| 106 | goto fail; |
| 107 | |
| 108 | } |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | /* |
| 112 | * Call idle CPU PM enter notifier chain so that |
| 113 | * VFP and per CPU interrupt context is saved. |
| 114 | */ |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 115 | cpu_pm_enter(); |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 116 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 117 | if (dev->cpu == 0) { |
| 118 | pwrdm_set_logic_retst(mpu_pd, cx->mpu_logic_state); |
| 119 | omap_set_pwrdm_state(mpu_pd, cx->mpu_state); |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 120 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 121 | /* |
| 122 | * Call idle CPU cluster PM enter notifier chain |
| 123 | * to save GIC and wakeupgen context. |
| 124 | */ |
| 125 | if ((cx->mpu_state == PWRDM_POWER_RET) && |
| 126 | (cx->mpu_logic_state == PWRDM_POWER_OFF)) |
| 127 | cpu_cluster_pm_enter(); |
| 128 | } |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 129 | |
| 130 | omap4_enter_lowpower(dev->cpu, cx->cpu_state); |
Kevin Hilman | 5b4d5bc | 2012-03-14 17:26:17 -0700 | [diff] [blame] | 131 | cpu_done[dev->cpu] = true; |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 132 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 133 | /* Wakeup CPU1 only if it is not offlined */ |
| 134 | if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) { |
| 135 | clkdm_wakeup(cpu_clkdm[1]); |
| 136 | clkdm_allow_idle(cpu_clkdm[1]); |
| 137 | } |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 138 | |
| 139 | /* |
| 140 | * Call idle CPU PM exit notifier chain to restore |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 141 | * VFP and per CPU IRQ context. |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 142 | */ |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 143 | cpu_pm_exit(); |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 144 | |
| 145 | /* |
| 146 | * Call idle CPU cluster PM exit notifier chain |
| 147 | * to restore GIC and wakeupgen context. |
| 148 | */ |
Santosh Shilimkar | e745725 | 2013-03-25 15:35:08 +0530 | [diff] [blame] | 149 | if ((cx->mpu_state == PWRDM_POWER_RET) && |
| 150 | (cx->mpu_logic_state == PWRDM_POWER_OFF)) |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 151 | cpu_cluster_pm_exit(); |
| 152 | |
Kevin Hilman | 5b4d5bc | 2012-03-14 17:26:17 -0700 | [diff] [blame] | 153 | fail: |
| 154 | cpuidle_coupled_parallel_barrier(dev, &abort_barrier); |
| 155 | cpu_done[dev->cpu] = false; |
Santosh Shilimkar | 98be0dd | 2011-01-16 00:42:31 +0530 | [diff] [blame] | 156 | |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 157 | local_fiq_enable(); |
| 158 | |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 159 | return index; |
| 160 | } |
| 161 | |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 162 | static DEFINE_PER_CPU(struct cpuidle_device, omap_idle_dev); |
Paul Walmsley | 9db316b | 2012-12-15 01:39:19 -0700 | [diff] [blame] | 163 | |
| 164 | static struct cpuidle_driver omap4_idle_driver = { |
Robert Lee | d13e926 | 2012-03-20 15:22:47 -0500 | [diff] [blame] | 165 | .name = "omap4_idle", |
| 166 | .owner = THIS_MODULE, |
| 167 | .en_core_tk_irqen = 1, |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 168 | .states = { |
| 169 | { |
| 170 | /* C1 - CPU0 ON + CPU1 ON + MPU ON */ |
| 171 | .exit_latency = 2 + 2, |
| 172 | .target_residency = 5, |
| 173 | .flags = CPUIDLE_FLAG_TIME_VALID, |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 174 | .enter = omap_enter_idle_simple, |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 175 | .name = "C1", |
Santosh Shilimkar | eb495d3 | 2013-03-25 15:35:06 +0530 | [diff] [blame] | 176 | .desc = "CPUx ON, MPUSS ON" |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 177 | }, |
| 178 | { |
Paul Walmsley | 9db316b | 2012-12-15 01:39:19 -0700 | [diff] [blame] | 179 | /* C2 - CPU0 OFF + CPU1 OFF + MPU CSWR */ |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 180 | .exit_latency = 328 + 440, |
| 181 | .target_residency = 960, |
Daniel Lezcano | cb7094e | 2013-03-21 12:21:32 +0000 | [diff] [blame] | 182 | .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED | |
| 183 | CPUIDLE_FLAG_TIMER_STOP, |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 184 | .enter = omap_enter_idle_coupled, |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 185 | .name = "C2", |
Santosh Shilimkar | eb495d3 | 2013-03-25 15:35:06 +0530 | [diff] [blame] | 186 | .desc = "CPUx OFF, MPUSS CSWR", |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 187 | }, |
| 188 | { |
| 189 | /* C3 - CPU0 OFF + CPU1 OFF + MPU OSWR */ |
| 190 | .exit_latency = 460 + 518, |
| 191 | .target_residency = 1100, |
Daniel Lezcano | cb7094e | 2013-03-21 12:21:32 +0000 | [diff] [blame] | 192 | .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED | |
| 193 | CPUIDLE_FLAG_TIMER_STOP, |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 194 | .enter = omap_enter_idle_coupled, |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 195 | .name = "C3", |
Santosh Shilimkar | eb495d3 | 2013-03-25 15:35:06 +0530 | [diff] [blame] | 196 | .desc = "CPUx OFF, MPUSS OSWR", |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 197 | }, |
| 198 | }, |
Daniel Lezcano | d0d133d | 2012-04-24 16:05:26 +0200 | [diff] [blame] | 199 | .state_count = ARRAY_SIZE(omap4_idle_data), |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 200 | .safe_state_index = 0, |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 201 | }; |
| 202 | |
Paul Walmsley | 9db316b | 2012-12-15 01:39:19 -0700 | [diff] [blame] | 203 | /* Public functions */ |
Santosh Shilimkar | b93d70a | 2012-04-17 15:09:20 +0530 | [diff] [blame] | 204 | |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 205 | /** |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 206 | * omap4_idle_init - Init routine for OMAP4+ idle |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 207 | * |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 208 | * Registers the OMAP4+ specific cpuidle driver to the cpuidle |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 209 | * framework with the valid set of states. |
| 210 | */ |
| 211 | int __init omap4_idle_init(void) |
| 212 | { |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 213 | struct cpuidle_device *dev; |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 214 | unsigned int cpu_id = 0; |
| 215 | |
| 216 | mpu_pd = pwrdm_lookup("mpu_pwrdm"); |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 217 | cpu_pd[0] = pwrdm_lookup("cpu0_pwrdm"); |
| 218 | cpu_pd[1] = pwrdm_lookup("cpu1_pwrdm"); |
| 219 | if ((!mpu_pd) || (!cpu_pd[0]) || (!cpu_pd[1])) |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 220 | return -ENODEV; |
| 221 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 222 | cpu_clkdm[0] = clkdm_lookup("mpu0_clkdm"); |
| 223 | cpu_clkdm[1] = clkdm_lookup("mpu1_clkdm"); |
| 224 | if (!cpu_clkdm[0] || !cpu_clkdm[1]) |
| 225 | return -ENODEV; |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 226 | |
Santosh Shilimkar | 63b951e | 2013-03-25 15:35:05 +0530 | [diff] [blame] | 227 | if (cpuidle_register_driver(&omap4_idle_driver)) { |
| 228 | pr_err("%s: CPUidle driver register failed\n", __func__); |
| 229 | return -EIO; |
| 230 | } |
Santosh Shilimkar | dbd1ba6 | 2013-03-25 15:35:04 +0530 | [diff] [blame] | 231 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 232 | for_each_cpu(cpu_id, cpu_online_mask) { |
Santosh Shilimkar | db4f3da | 2013-04-05 18:29:03 +0530 | [diff] [blame^] | 233 | dev = &per_cpu(omap_idle_dev, cpu_id); |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 234 | dev->cpu = cpu_id; |
Arnd Bergmann | c7a9b09 | 2012-08-15 20:51:54 +0000 | [diff] [blame] | 235 | #ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 236 | dev->coupled_cpus = *cpu_online_mask; |
Arnd Bergmann | c7a9b09 | 2012-08-15 20:51:54 +0000 | [diff] [blame] | 237 | #endif |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 238 | if (cpuidle_register_device(dev)) { |
| 239 | pr_err("%s: CPUidle register failed\n", __func__); |
Santosh Shilimkar | 63b951e | 2013-03-25 15:35:05 +0530 | [diff] [blame] | 240 | cpuidle_unregister_driver(&omap4_idle_driver); |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 241 | return -EIO; |
| 242 | } |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 243 | } |
Santosh Shilimkar | 9827266 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 244 | |
| 245 | return 0; |
| 246 | } |