blob: 57d429830e09b4ceffa71efc3b3b88f6a88c68cd [file] [log] [blame]
Santosh Shilimkar98272662011-08-16 17:31:40 +05301/*
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +05302 * OMAP4+ CPU idle Routines
Santosh Shilimkar98272662011-08-16 17:31:40 +05303 *
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +05304 * Copyright (C) 2011-2013 Texas Instruments, Inc.
Santosh Shilimkar98272662011-08-16 17:31:40 +05305 * 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 Gleixnerfa8589f2015-04-03 02:02:47 +020017#include <linux/tick.h>
Santosh Shilimkar98272662011-08-16 17:31:40 +053018
Daniel Lezcano0e9e8b42013-04-23 08:54:39 +000019#include <asm/cpuidle.h>
Santosh Shilimkar98272662011-08-16 17:31:40 +053020#include <asm/proc-fns.h>
21
22#include "common.h"
23#include "pm.h"
24#include "prm.h"
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053025#include "clockdomain.h"
Santosh Shilimkar98272662011-08-16 17:31:40 +053026
Santosh Shilimkar865da012014-02-17 13:22:55 +053027#define MAX_CPUS 2
28
Daniel Lezcano7aeb658d2012-04-24 16:05:27 +020029/* Machine specific information */
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053030struct idle_statedata {
Santosh Shilimkar98272662011-08-16 17:31:40 +053031 u32 cpu_state;
32 u32 mpu_logic_state;
33 u32 mpu_state;
Santosh Shilimkar98272662011-08-16 17:31:40 +053034};
35
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053036static struct idle_statedata omap4_idle_data[] = {
Daniel Lezcanod0d133d2012-04-24 16:05:26 +020037 {
38 .cpu_state = PWRDM_POWER_ON,
39 .mpu_state = PWRDM_POWER_ON,
40 .mpu_logic_state = PWRDM_POWER_RET,
41 },
42 {
43 .cpu_state = PWRDM_POWER_OFF,
44 .mpu_state = PWRDM_POWER_RET,
45 .mpu_logic_state = PWRDM_POWER_RET,
46 },
47 {
48 .cpu_state = PWRDM_POWER_OFF,
49 .mpu_state = PWRDM_POWER_RET,
50 .mpu_logic_state = PWRDM_POWER_OFF,
51 },
52};
Santosh Shilimkar98272662011-08-16 17:31:40 +053053
Santosh Shilimkar865da012014-02-17 13:22:55 +053054static struct powerdomain *mpu_pd, *cpu_pd[MAX_CPUS];
55static struct clockdomain *cpu_clkdm[MAX_CPUS];
Santosh Shilimkar98272662011-08-16 17:31:40 +053056
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -070057static atomic_t abort_barrier;
Santosh Shilimkar865da012014-02-17 13:22:55 +053058static bool cpu_done[MAX_CPUS];
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053059static struct idle_statedata *state_ptr = &omap4_idle_data[0];
Santosh Shilimkar98272662011-08-16 17:31:40 +053060
Paul Walmsley9db316b2012-12-15 01:39:19 -070061/* Private functions */
62
Santosh Shilimkar98272662011-08-16 17:31:40 +053063/**
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053064 * omap_enter_idle_[simple/coupled] - OMAP4PLUS cpuidle entry functions
Santosh Shilimkar98272662011-08-16 17:31:40 +053065 * @dev: cpuidle device
66 * @drv: cpuidle driver
67 * @index: the index of state to be entered
68 *
69 * Called from the CPUidle framework to program the device to the
70 * specified low power state selected by the governor.
71 * Returns the amount of time spent in the low power state.
72 */
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053073static int omap_enter_idle_simple(struct cpuidle_device *dev,
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053074 struct cpuidle_driver *drv,
75 int index)
76{
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053077 omap_do_wfi();
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053078 return index;
79}
80
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053081static int omap_enter_idle_coupled(struct cpuidle_device *dev,
Santosh Shilimkar98272662011-08-16 17:31:40 +053082 struct cpuidle_driver *drv,
83 int index)
84{
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +053085 struct idle_statedata *cx = state_ptr + index;
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +030086 u32 mpuss_can_lose_context = 0;
Santosh Shilimkar98272662011-08-16 17:31:40 +053087
Santosh Shilimkar98272662011-08-16 17:31:40 +053088 /*
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053089 * CPU0 has to wait and stay ON until CPU1 is OFF state.
Santosh Shilimkar98272662011-08-16 17:31:40 +053090 * 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 Shilimkar98272662011-08-16 17:31:40 +053093 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053094 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -070095 while (pwrdm_read_pwrst(cpu_pd[1]) != PWRDM_POWER_OFF) {
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053096 cpu_relax();
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -070097
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 Shilimkar98272662011-08-16 17:31:40 +0530109 }
110
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300111 mpuss_can_lose_context = (cx->mpu_state == PWRDM_POWER_RET) &&
112 (cx->mpu_logic_state == PWRDM_POWER_OFF);
113
Thomas Gleixnerfb7f0392015-04-03 02:31:29 +0200114 tick_broadcast_enter();
Santosh Shilimkar4b353a72014-05-12 17:37:59 -0400115
Santosh Shilimkar98272662011-08-16 17:31:40 +0530116 /*
117 * Call idle CPU PM enter notifier chain so that
118 * VFP and per CPU interrupt context is saved.
119 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530120 cpu_pm_enter();
Santosh Shilimkar98272662011-08-16 17:31:40 +0530121
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530122 if (dev->cpu == 0) {
123 pwrdm_set_logic_retst(mpu_pd, cx->mpu_logic_state);
124 omap_set_pwrdm_state(mpu_pd, cx->mpu_state);
Santosh Shilimkar98272662011-08-16 17:31:40 +0530125
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530126 /*
127 * Call idle CPU cluster PM enter notifier chain
128 * to save GIC and wakeupgen context.
129 */
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300130 if (mpuss_can_lose_context)
131 cpu_cluster_pm_enter();
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530132 }
Santosh Shilimkar98272662011-08-16 17:31:40 +0530133
134 omap4_enter_lowpower(dev->cpu, cx->cpu_state);
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -0700135 cpu_done[dev->cpu] = true;
Santosh Shilimkar98272662011-08-16 17:31:40 +0530136
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530137 /* Wakeup CPU1 only if it is not offlined */
138 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300139
140 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) &&
141 mpuss_can_lose_context)
142 gic_dist_disable();
143
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530144 clkdm_wakeup(cpu_clkdm[1]);
Santosh Shilimkarb7806dc2013-02-08 22:50:58 +0530145 omap_set_pwrdm_state(cpu_pd[1], PWRDM_POWER_ON);
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530146 clkdm_allow_idle(cpu_clkdm[1]);
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300147
148 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) &&
149 mpuss_can_lose_context) {
150 while (gic_dist_disabled()) {
151 udelay(1);
152 cpu_relax();
153 }
154 gic_timer_retrigger();
155 }
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530156 }
Santosh Shilimkar98272662011-08-16 17:31:40 +0530157
158 /*
159 * Call idle CPU PM exit notifier chain to restore
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530160 * VFP and per CPU IRQ context.
Santosh Shilimkar98272662011-08-16 17:31:40 +0530161 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530162 cpu_pm_exit();
Santosh Shilimkar98272662011-08-16 17:31:40 +0530163
164 /*
165 * Call idle CPU cluster PM exit notifier chain
166 * to restore GIC and wakeupgen context.
167 */
Strashko, Grygorii74ed7bd2013-10-22 22:07:15 +0300168 if (dev->cpu == 0 && mpuss_can_lose_context)
Santosh Shilimkar98272662011-08-16 17:31:40 +0530169 cpu_cluster_pm_exit();
170
Thomas Gleixnerfb7f0392015-04-03 02:31:29 +0200171 tick_broadcast_exit();
Santosh Shilimkar4b353a72014-05-12 17:37:59 -0400172
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -0700173fail:
174 cpuidle_coupled_parallel_barrier(dev, &abort_barrier);
175 cpu_done[dev->cpu] = false;
Santosh Shilimkar98be0dd2011-01-16 00:42:31 +0530176
Santosh Shilimkar98272662011-08-16 17:31:40 +0530177 return index;
178}
179
Santosh Shilimkar4b353a72014-05-12 17:37:59 -0400180/*
181 * For each cpu, setup the broadcast timer because local timers
182 * stops for the states above C1.
183 */
184static void omap_setup_broadcast_timer(void *arg)
185{
Thomas Gleixnerfa8589f2015-04-03 02:02:47 +0200186 tick_broadcast_enable();
Santosh Shilimkar4b353a72014-05-12 17:37:59 -0400187}
188
Paul Walmsley9db316b2012-12-15 01:39:19 -0700189static struct cpuidle_driver omap4_idle_driver = {
Robert Leed13e9262012-03-20 15:22:47 -0500190 .name = "omap4_idle",
191 .owner = THIS_MODULE,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200192 .states = {
193 {
194 /* C1 - CPU0 ON + CPU1 ON + MPU ON */
195 .exit_latency = 2 + 2,
196 .target_residency = 5,
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530197 .enter = omap_enter_idle_simple,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200198 .name = "C1",
Santosh Shilimkareb495d32013-03-25 15:35:06 +0530199 .desc = "CPUx ON, MPUSS ON"
Daniel Lezcano78e90162012-04-24 16:05:23 +0200200 },
201 {
Paul Walmsley9db316b2012-12-15 01:39:19 -0700202 /* C2 - CPU0 OFF + CPU1 OFF + MPU CSWR */
Daniel Lezcano78e90162012-04-24 16:05:23 +0200203 .exit_latency = 328 + 440,
204 .target_residency = 960,
Daniel Lezcanob82b6cc2014-11-12 16:03:50 +0100205 .flags = CPUIDLE_FLAG_COUPLED,
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530206 .enter = omap_enter_idle_coupled,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200207 .name = "C2",
Santosh Shilimkareb495d32013-03-25 15:35:06 +0530208 .desc = "CPUx OFF, MPUSS CSWR",
Daniel Lezcano78e90162012-04-24 16:05:23 +0200209 },
210 {
211 /* C3 - CPU0 OFF + CPU1 OFF + MPU OSWR */
212 .exit_latency = 460 + 518,
213 .target_residency = 1100,
Daniel Lezcanob82b6cc2014-11-12 16:03:50 +0100214 .flags = CPUIDLE_FLAG_COUPLED,
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530215 .enter = omap_enter_idle_coupled,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200216 .name = "C3",
Santosh Shilimkareb495d32013-03-25 15:35:06 +0530217 .desc = "CPUx OFF, MPUSS OSWR",
Daniel Lezcano78e90162012-04-24 16:05:23 +0200218 },
219 },
Daniel Lezcanod0d133d2012-04-24 16:05:26 +0200220 .state_count = ARRAY_SIZE(omap4_idle_data),
Daniel Lezcano78e90162012-04-24 16:05:23 +0200221 .safe_state_index = 0,
Santosh Shilimkar98272662011-08-16 17:31:40 +0530222};
223
Paul Walmsley9db316b2012-12-15 01:39:19 -0700224/* Public functions */
Santosh Shilimkarb93d70a2012-04-17 15:09:20 +0530225
Santosh Shilimkar98272662011-08-16 17:31:40 +0530226/**
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530227 * omap4_idle_init - Init routine for OMAP4+ idle
Santosh Shilimkar98272662011-08-16 17:31:40 +0530228 *
Santosh Shilimkardb4f3da2013-04-05 18:29:03 +0530229 * Registers the OMAP4+ specific cpuidle driver to the cpuidle
Santosh Shilimkar98272662011-08-16 17:31:40 +0530230 * framework with the valid set of states.
231 */
232int __init omap4_idle_init(void)
233{
Santosh Shilimkar98272662011-08-16 17:31:40 +0530234 mpu_pd = pwrdm_lookup("mpu_pwrdm");
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530235 cpu_pd[0] = pwrdm_lookup("cpu0_pwrdm");
236 cpu_pd[1] = pwrdm_lookup("cpu1_pwrdm");
237 if ((!mpu_pd) || (!cpu_pd[0]) || (!cpu_pd[1]))
Santosh Shilimkar98272662011-08-16 17:31:40 +0530238 return -ENODEV;
239
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530240 cpu_clkdm[0] = clkdm_lookup("mpu0_clkdm");
241 cpu_clkdm[1] = clkdm_lookup("mpu1_clkdm");
242 if (!cpu_clkdm[0] || !cpu_clkdm[1])
243 return -ENODEV;
Santosh Shilimkar98272662011-08-16 17:31:40 +0530244
Santosh Shilimkar4b353a72014-05-12 17:37:59 -0400245 /* Configure the broadcast timer on each cpu */
246 on_each_cpu(omap_setup_broadcast_timer, NULL, 1);
247
Daniel Lezcano0e9e8b42013-04-23 08:54:39 +0000248 return cpuidle_register(&omap4_idle_driver, cpu_online_mask);
Santosh Shilimkar98272662011-08-16 17:31:40 +0530249}