Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 1 | /* |
| 2 | * OMAP4 CPU idle Routines |
| 3 | * |
| 4 | * Copyright (C) 2011 Texas Instruments, Inc. |
| 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> |
Santosh Shilimkar | 98be0dd | 2011-01-16 00:42:31 +0530 | [diff] [blame] | 17 | #include <linux/clockchips.h> |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 18 | |
| 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 | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 25 | |
Daniel Lezcano | 7aeb658 | 2012-04-24 16:05:27 +0200 | [diff] [blame] | 26 | /* Machine specific information */ |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 27 | struct omap4_idle_statedata { |
| 28 | u32 cpu_state; |
| 29 | u32 mpu_logic_state; |
| 30 | u32 mpu_state; |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 31 | }; |
| 32 | |
Daniel Lezcano | d0d133d | 2012-04-24 16:05:26 +0200 | [diff] [blame] | 33 | static struct omap4_idle_statedata omap4_idle_data[] = { |
| 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 | 98272660 | 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 | 98272660 | 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 | 98272660 | 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 | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 59 | /** |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 60 | * omap4_enter_idle_coupled_[simple/coupled] - OMAP4 cpuidle entry functions |
Santosh Shilimkar | 98272660 | 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 | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 69 | static int omap4_enter_idle_simple(struct cpuidle_device *dev, |
| 70 | struct cpuidle_driver *drv, |
| 71 | int index) |
| 72 | { |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 73 | omap_do_wfi(); |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 74 | return index; |
| 75 | } |
| 76 | |
| 77 | static int omap4_enter_idle_coupled(struct cpuidle_device *dev, |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 78 | struct cpuidle_driver *drv, |
| 79 | int index) |
| 80 | { |
Daniel Lezcano | 7aeb658 | 2012-04-24 16:05:27 +0200 | [diff] [blame] | 81 | struct omap4_idle_statedata *cx = &omap4_idle_data[index]; |
Santosh Shilimkar | 98be0dd | 2011-01-16 00:42:31 +0530 | [diff] [blame] | 82 | int cpu_id = smp_processor_id(); |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 83 | |
Santosh Shilimkar | 98272660 | 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 | 98272660 | 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 | 98272660 | 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 | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 105 | } |
| 106 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 107 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu_id); |
Santosh Shilimkar | 98be0dd | 2011-01-16 00:42:31 +0530 | [diff] [blame] | 108 | |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 109 | /* |
| 110 | * Call idle CPU PM enter notifier chain so that |
| 111 | * VFP and per CPU interrupt context is saved. |
| 112 | */ |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 113 | cpu_pm_enter(); |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 114 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 115 | if (dev->cpu == 0) { |
| 116 | pwrdm_set_logic_retst(mpu_pd, cx->mpu_logic_state); |
| 117 | omap_set_pwrdm_state(mpu_pd, cx->mpu_state); |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 118 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 119 | /* |
| 120 | * Call idle CPU cluster PM enter notifier chain |
| 121 | * to save GIC and wakeupgen context. |
| 122 | */ |
| 123 | if ((cx->mpu_state == PWRDM_POWER_RET) && |
| 124 | (cx->mpu_logic_state == PWRDM_POWER_OFF)) |
| 125 | cpu_cluster_pm_enter(); |
| 126 | } |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 127 | |
| 128 | omap4_enter_lowpower(dev->cpu, cx->cpu_state); |
Kevin Hilman | 5b4d5bc | 2012-03-14 17:26:17 -0700 | [diff] [blame] | 129 | cpu_done[dev->cpu] = true; |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 130 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 131 | /* Wakeup CPU1 only if it is not offlined */ |
| 132 | if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) { |
| 133 | clkdm_wakeup(cpu_clkdm[1]); |
Santosh Shilimkar | b7806dc | 2013-02-08 22:50:58 +0530 | [diff] [blame^] | 134 | omap_set_pwrdm_state(cpu_pd[1], PWRDM_POWER_ON); |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 135 | clkdm_allow_idle(cpu_clkdm[1]); |
| 136 | } |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 137 | |
| 138 | /* |
| 139 | * Call idle CPU PM exit notifier chain to restore |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 140 | * VFP and per CPU IRQ context. |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 141 | */ |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 142 | cpu_pm_exit(); |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 143 | |
| 144 | /* |
| 145 | * Call idle CPU cluster PM exit notifier chain |
| 146 | * to restore GIC and wakeupgen context. |
| 147 | */ |
| 148 | if (omap4_mpuss_read_prev_context_state()) |
| 149 | cpu_cluster_pm_exit(); |
| 150 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 151 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu_id); |
Santosh Shilimkar | 98be0dd | 2011-01-16 00:42:31 +0530 | [diff] [blame] | 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 | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 156 | |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 157 | return index; |
| 158 | } |
| 159 | |
Paul Walmsley | 9db316b | 2012-12-15 01:39:19 -0700 | [diff] [blame] | 160 | /* |
| 161 | * For each cpu, setup the broadcast timer because local timers |
| 162 | * stops for the states above C1. |
| 163 | */ |
| 164 | static void omap_setup_broadcast_timer(void *arg) |
| 165 | { |
| 166 | int cpu = smp_processor_id(); |
| 167 | clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ON, &cpu); |
| 168 | } |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 169 | |
Paul Walmsley | 9db316b | 2012-12-15 01:39:19 -0700 | [diff] [blame] | 170 | static DEFINE_PER_CPU(struct cpuidle_device, omap4_idle_dev); |
| 171 | |
| 172 | static struct cpuidle_driver omap4_idle_driver = { |
Robert Lee | d13e926 | 2012-03-20 15:22:47 -0500 | [diff] [blame] | 173 | .name = "omap4_idle", |
| 174 | .owner = THIS_MODULE, |
| 175 | .en_core_tk_irqen = 1, |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 176 | .states = { |
| 177 | { |
| 178 | /* C1 - CPU0 ON + CPU1 ON + MPU ON */ |
| 179 | .exit_latency = 2 + 2, |
| 180 | .target_residency = 5, |
| 181 | .flags = CPUIDLE_FLAG_TIME_VALID, |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 182 | .enter = omap4_enter_idle_simple, |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 183 | .name = "C1", |
| 184 | .desc = "MPUSS ON" |
| 185 | }, |
| 186 | { |
Paul Walmsley | 9db316b | 2012-12-15 01:39:19 -0700 | [diff] [blame] | 187 | /* C2 - CPU0 OFF + CPU1 OFF + MPU CSWR */ |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 188 | .exit_latency = 328 + 440, |
| 189 | .target_residency = 960, |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 190 | .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED, |
| 191 | .enter = omap4_enter_idle_coupled, |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 192 | .name = "C2", |
| 193 | .desc = "MPUSS CSWR", |
| 194 | }, |
| 195 | { |
| 196 | /* C3 - CPU0 OFF + CPU1 OFF + MPU OSWR */ |
| 197 | .exit_latency = 460 + 518, |
| 198 | .target_residency = 1100, |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 199 | .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED, |
| 200 | .enter = omap4_enter_idle_coupled, |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 201 | .name = "C3", |
| 202 | .desc = "MPUSS OSWR", |
| 203 | }, |
| 204 | }, |
Daniel Lezcano | d0d133d | 2012-04-24 16:05:26 +0200 | [diff] [blame] | 205 | .state_count = ARRAY_SIZE(omap4_idle_data), |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 206 | .safe_state_index = 0, |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 207 | }; |
| 208 | |
Paul Walmsley | 9db316b | 2012-12-15 01:39:19 -0700 | [diff] [blame] | 209 | /* Public functions */ |
Santosh Shilimkar | b93d70a | 2012-04-17 15:09:20 +0530 | [diff] [blame] | 210 | |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 211 | /** |
| 212 | * omap4_idle_init - Init routine for OMAP4 idle |
| 213 | * |
| 214 | * Registers the OMAP4 specific cpuidle driver to the cpuidle |
| 215 | * framework with the valid set of states. |
| 216 | */ |
| 217 | int __init omap4_idle_init(void) |
| 218 | { |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 219 | struct cpuidle_device *dev; |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 220 | unsigned int cpu_id = 0; |
| 221 | |
| 222 | mpu_pd = pwrdm_lookup("mpu_pwrdm"); |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 223 | cpu_pd[0] = pwrdm_lookup("cpu0_pwrdm"); |
| 224 | cpu_pd[1] = pwrdm_lookup("cpu1_pwrdm"); |
| 225 | if ((!mpu_pd) || (!cpu_pd[0]) || (!cpu_pd[1])) |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 226 | return -ENODEV; |
| 227 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 228 | cpu_clkdm[0] = clkdm_lookup("mpu0_clkdm"); |
| 229 | cpu_clkdm[1] = clkdm_lookup("mpu1_clkdm"); |
| 230 | if (!cpu_clkdm[0] || !cpu_clkdm[1]) |
| 231 | return -ENODEV; |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 232 | |
Santosh Shilimkar | b93d70a | 2012-04-17 15:09:20 +0530 | [diff] [blame] | 233 | /* Configure the broadcast timer on each cpu */ |
| 234 | on_each_cpu(omap_setup_broadcast_timer, NULL, 1); |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 235 | |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 236 | for_each_cpu(cpu_id, cpu_online_mask) { |
| 237 | dev = &per_cpu(omap4_idle_dev, cpu_id); |
| 238 | dev->cpu = cpu_id; |
Arnd Bergmann | c7a9b09 | 2012-08-15 20:51:54 +0000 | [diff] [blame] | 239 | #ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 240 | dev->coupled_cpus = *cpu_online_mask; |
Arnd Bergmann | c7a9b09 | 2012-08-15 20:51:54 +0000 | [diff] [blame] | 241 | #endif |
Santosh Shilimkar | dd3ad97 | 2011-12-25 21:00:40 +0530 | [diff] [blame] | 242 | cpuidle_register_driver(&omap4_idle_driver); |
| 243 | |
| 244 | if (cpuidle_register_device(dev)) { |
| 245 | pr_err("%s: CPUidle register failed\n", __func__); |
| 246 | return -EIO; |
| 247 | } |
Daniel Lezcano | 78e9016 | 2012-04-24 16:05:23 +0200 | [diff] [blame] | 248 | } |
Santosh Shilimkar | 98272660 | 2011-08-16 17:31:40 +0530 | [diff] [blame] | 249 | |
| 250 | return 0; |
| 251 | } |