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