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