blob: e72b55d8eac36c1448272b298a42b250bd2effe4 [file] [log] [blame]
Santosh Shilimkar98272662011-08-16 17:31:40 +05301/*
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>
17
18#include <asm/proc-fns.h>
19
20#include "common.h"
21#include "pm.h"
22#include "prm.h"
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053023#include "clockdomain.h"
Santosh Shilimkar98272662011-08-16 17:31:40 +053024
Daniel Lezcano7aeb6582012-04-24 16:05:27 +020025/* Machine specific information */
Santosh Shilimkar98272662011-08-16 17:31:40 +053026struct omap4_idle_statedata {
27 u32 cpu_state;
28 u32 mpu_logic_state;
29 u32 mpu_state;
Santosh Shilimkar98272662011-08-16 17:31:40 +053030};
31
Daniel Lezcanod0d133d2012-04-24 16:05:26 +020032static struct omap4_idle_statedata omap4_idle_data[] = {
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 Shilimkar98272662011-08-16 17:31:40 +053049
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053050static struct powerdomain *mpu_pd, *cpu_pd[NR_CPUS];
51static struct clockdomain *cpu_clkdm[NR_CPUS];
Santosh Shilimkar98272662011-08-16 17:31:40 +053052
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -070053static atomic_t abort_barrier;
54static bool cpu_done[NR_CPUS];
Santosh Shilimkar98272662011-08-16 17:31:40 +053055
Paul Walmsley9db316b2012-12-15 01:39:19 -070056/* Private functions */
57
Santosh Shilimkar98272662011-08-16 17:31:40 +053058/**
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053059 * omap4_enter_idle_coupled_[simple/coupled] - OMAP4 cpuidle entry functions
Santosh Shilimkar98272662011-08-16 17:31:40 +053060 * @dev: cpuidle device
61 * @drv: cpuidle driver
62 * @index: the index of state to be entered
63 *
64 * Called from the CPUidle framework to program the device to the
65 * specified low power state selected by the governor.
66 * Returns the amount of time spent in the low power state.
67 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053068static int omap4_enter_idle_simple(struct cpuidle_device *dev,
69 struct cpuidle_driver *drv,
70 int index)
71{
72 local_fiq_disable();
73 omap_do_wfi();
74 local_fiq_enable();
75
76 return index;
77}
78
79static int omap4_enter_idle_coupled(struct cpuidle_device *dev,
Santosh Shilimkar98272662011-08-16 17:31:40 +053080 struct cpuidle_driver *drv,
81 int index)
82{
Daniel Lezcano7aeb6582012-04-24 16:05:27 +020083 struct omap4_idle_statedata *cx = &omap4_idle_data[index];
Santosh Shilimkar98272662011-08-16 17:31:40 +053084
Santosh Shilimkar98272662011-08-16 17:31:40 +053085 local_fiq_disable();
86
87 /*
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053088 * CPU0 has to wait and stay ON until CPU1 is OFF state.
Santosh Shilimkar98272662011-08-16 17:31:40 +053089 * 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 Shilimkar98272662011-08-16 17:31:40 +053092 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053093 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -070094 while (pwrdm_read_pwrst(cpu_pd[1]) != PWRDM_POWER_OFF) {
Santosh Shilimkardd3ad972011-12-25 21:00:40 +053095 cpu_relax();
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -070096
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 Shilimkar98272662011-08-16 17:31:40 +0530108 }
109
110 /*
111 * Call idle CPU PM enter notifier chain so that
112 * VFP and per CPU interrupt context is saved.
113 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530114 cpu_pm_enter();
Santosh Shilimkar98272662011-08-16 17:31:40 +0530115
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530116 if (dev->cpu == 0) {
117 pwrdm_set_logic_retst(mpu_pd, cx->mpu_logic_state);
118 omap_set_pwrdm_state(mpu_pd, cx->mpu_state);
Santosh Shilimkar98272662011-08-16 17:31:40 +0530119
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530120 /*
121 * Call idle CPU cluster PM enter notifier chain
122 * to save GIC and wakeupgen context.
123 */
124 if ((cx->mpu_state == PWRDM_POWER_RET) &&
125 (cx->mpu_logic_state == PWRDM_POWER_OFF))
126 cpu_cluster_pm_enter();
127 }
Santosh Shilimkar98272662011-08-16 17:31:40 +0530128
129 omap4_enter_lowpower(dev->cpu, cx->cpu_state);
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -0700130 cpu_done[dev->cpu] = true;
Santosh Shilimkar98272662011-08-16 17:31:40 +0530131
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530132 /* Wakeup CPU1 only if it is not offlined */
133 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
134 clkdm_wakeup(cpu_clkdm[1]);
135 clkdm_allow_idle(cpu_clkdm[1]);
136 }
Santosh Shilimkar98272662011-08-16 17:31:40 +0530137
138 /*
139 * Call idle CPU PM exit notifier chain to restore
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530140 * VFP and per CPU IRQ context.
Santosh Shilimkar98272662011-08-16 17:31:40 +0530141 */
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530142 cpu_pm_exit();
Santosh Shilimkar98272662011-08-16 17:31:40 +0530143
144 /*
145 * Call idle CPU cluster PM exit notifier chain
146 * to restore GIC and wakeupgen context.
147 */
Santosh Shilimkare7457252013-03-25 15:35:08 +0530148 if ((cx->mpu_state == PWRDM_POWER_RET) &&
149 (cx->mpu_logic_state == PWRDM_POWER_OFF))
Santosh Shilimkar98272662011-08-16 17:31:40 +0530150 cpu_cluster_pm_exit();
151
Kevin Hilman5b4d5bc2012-03-14 17:26:17 -0700152fail:
153 cpuidle_coupled_parallel_barrier(dev, &abort_barrier);
154 cpu_done[dev->cpu] = false;
Santosh Shilimkar98be0dd2011-01-16 00:42:31 +0530155
Santosh Shilimkar98272662011-08-16 17:31:40 +0530156 local_fiq_enable();
157
Santosh Shilimkar98272662011-08-16 17:31:40 +0530158 return index;
159}
160
Paul Walmsley9db316b2012-12-15 01:39:19 -0700161static DEFINE_PER_CPU(struct cpuidle_device, omap4_idle_dev);
162
163static struct cpuidle_driver omap4_idle_driver = {
Robert Leed13e9262012-03-20 15:22:47 -0500164 .name = "omap4_idle",
165 .owner = THIS_MODULE,
166 .en_core_tk_irqen = 1,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200167 .states = {
168 {
169 /* C1 - CPU0 ON + CPU1 ON + MPU ON */
170 .exit_latency = 2 + 2,
171 .target_residency = 5,
172 .flags = CPUIDLE_FLAG_TIME_VALID,
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530173 .enter = omap4_enter_idle_simple,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200174 .name = "C1",
Santosh Shilimkareb495d32013-03-25 15:35:06 +0530175 .desc = "CPUx ON, MPUSS ON"
Daniel Lezcano78e90162012-04-24 16:05:23 +0200176 },
177 {
Paul Walmsley9db316b2012-12-15 01:39:19 -0700178 /* C2 - CPU0 OFF + CPU1 OFF + MPU CSWR */
Daniel Lezcano78e90162012-04-24 16:05:23 +0200179 .exit_latency = 328 + 440,
180 .target_residency = 960,
Daniel Lezcanocb7094e2013-03-21 12:21:32 +0000181 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
182 CPUIDLE_FLAG_TIMER_STOP,
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530183 .enter = omap4_enter_idle_coupled,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200184 .name = "C2",
Santosh Shilimkareb495d32013-03-25 15:35:06 +0530185 .desc = "CPUx OFF, MPUSS CSWR",
Daniel Lezcano78e90162012-04-24 16:05:23 +0200186 },
187 {
188 /* C3 - CPU0 OFF + CPU1 OFF + MPU OSWR */
189 .exit_latency = 460 + 518,
190 .target_residency = 1100,
Daniel Lezcanocb7094e2013-03-21 12:21:32 +0000191 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
192 CPUIDLE_FLAG_TIMER_STOP,
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530193 .enter = omap4_enter_idle_coupled,
Daniel Lezcano78e90162012-04-24 16:05:23 +0200194 .name = "C3",
Santosh Shilimkareb495d32013-03-25 15:35:06 +0530195 .desc = "CPUx OFF, MPUSS OSWR",
Daniel Lezcano78e90162012-04-24 16:05:23 +0200196 },
197 },
Daniel Lezcanod0d133d2012-04-24 16:05:26 +0200198 .state_count = ARRAY_SIZE(omap4_idle_data),
Daniel Lezcano78e90162012-04-24 16:05:23 +0200199 .safe_state_index = 0,
Santosh Shilimkar98272662011-08-16 17:31:40 +0530200};
201
Paul Walmsley9db316b2012-12-15 01:39:19 -0700202/* Public functions */
Santosh Shilimkarb93d70a2012-04-17 15:09:20 +0530203
Santosh Shilimkar98272662011-08-16 17:31:40 +0530204/**
205 * omap4_idle_init - Init routine for OMAP4 idle
206 *
207 * Registers the OMAP4 specific cpuidle driver to the cpuidle
208 * framework with the valid set of states.
209 */
210int __init omap4_idle_init(void)
211{
Santosh Shilimkar98272662011-08-16 17:31:40 +0530212 struct cpuidle_device *dev;
Santosh Shilimkar98272662011-08-16 17:31:40 +0530213 unsigned int cpu_id = 0;
214
215 mpu_pd = pwrdm_lookup("mpu_pwrdm");
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530216 cpu_pd[0] = pwrdm_lookup("cpu0_pwrdm");
217 cpu_pd[1] = pwrdm_lookup("cpu1_pwrdm");
218 if ((!mpu_pd) || (!cpu_pd[0]) || (!cpu_pd[1]))
Santosh Shilimkar98272662011-08-16 17:31:40 +0530219 return -ENODEV;
220
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530221 cpu_clkdm[0] = clkdm_lookup("mpu0_clkdm");
222 cpu_clkdm[1] = clkdm_lookup("mpu1_clkdm");
223 if (!cpu_clkdm[0] || !cpu_clkdm[1])
224 return -ENODEV;
Santosh Shilimkar98272662011-08-16 17:31:40 +0530225
Santosh Shilimkar63b951e2013-03-25 15:35:05 +0530226 if (cpuidle_register_driver(&omap4_idle_driver)) {
227 pr_err("%s: CPUidle driver register failed\n", __func__);
228 return -EIO;
229 }
Santosh Shilimkardbd1ba62013-03-25 15:35:04 +0530230
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530231 for_each_cpu(cpu_id, cpu_online_mask) {
232 dev = &per_cpu(omap4_idle_dev, cpu_id);
233 dev->cpu = cpu_id;
Arnd Bergmannc7a9b092012-08-15 20:51:54 +0000234#ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530235 dev->coupled_cpus = *cpu_online_mask;
Arnd Bergmannc7a9b092012-08-15 20:51:54 +0000236#endif
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530237 if (cpuidle_register_device(dev)) {
238 pr_err("%s: CPUidle register failed\n", __func__);
Santosh Shilimkar63b951e2013-03-25 15:35:05 +0530239 cpuidle_unregister_driver(&omap4_idle_driver);
Santosh Shilimkardd3ad972011-12-25 21:00:40 +0530240 return -EIO;
241 }
Daniel Lezcano78e90162012-04-24 16:05:23 +0200242 }
Santosh Shilimkar98272662011-08-16 17:31:40 +0530243
244 return 0;
245}