ARM: OMAP2+: Add support for thumb mode on DT booted N900
[deliverable/linux.git] / arch / arm / mach-omap2 / cpuidle44xx.c
CommitLineData
98272660 1/*
db4f3dab 2 * OMAP4+ CPU idle Routines
98272660 3 *
db4f3dab 4 * Copyright (C) 2011-2013 Texas Instruments, Inc.
98272660
SS
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
0e9e8b4b 18#include <asm/cpuidle.h>
98272660
SS
19#include <asm/proc-fns.h>
20
21#include "common.h"
22#include "pm.h"
23#include "prm.h"
dd3ad97c 24#include "clockdomain.h"
98272660 25
7aeb658d 26/* Machine specific information */
db4f3dab 27struct idle_statedata {
98272660
SS
28 u32 cpu_state;
29 u32 mpu_logic_state;
30 u32 mpu_state;
98272660
SS
31};
32
db4f3dab 33static struct idle_statedata omap4_idle_data[] = {
d0d133d9
DL
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};
98272660 50
dd3ad97c
SS
51static struct powerdomain *mpu_pd, *cpu_pd[NR_CPUS];
52static struct clockdomain *cpu_clkdm[NR_CPUS];
98272660 53
5b4d5bcc
KH
54static atomic_t abort_barrier;
55static bool cpu_done[NR_CPUS];
db4f3dab 56static struct idle_statedata *state_ptr = &omap4_idle_data[0];
98272660 57
9db316b6
PW
58/* Private functions */
59
98272660 60/**
db4f3dab 61 * omap_enter_idle_[simple/coupled] - OMAP4PLUS cpuidle entry functions
98272660
SS
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 */
db4f3dab 70static int omap_enter_idle_simple(struct cpuidle_device *dev,
dd3ad97c
SS
71 struct cpuidle_driver *drv,
72 int index)
73{
dd3ad97c 74 omap_do_wfi();
dd3ad97c
SS
75 return index;
76}
77
db4f3dab 78static int omap_enter_idle_coupled(struct cpuidle_device *dev,
98272660
SS
79 struct cpuidle_driver *drv,
80 int index)
81{
db4f3dab 82 struct idle_statedata *cx = state_ptr + index;
74ed7bdc 83 u32 mpuss_can_lose_context = 0;
98272660 84
98272660 85 /*
dd3ad97c 86 * CPU0 has to wait and stay ON until CPU1 is OFF state.
98272660
SS
87 * This is necessary to honour hardware recommondation
88 * of triggeing all the possible low power modes once CPU1 is
89 * out of coherency and in OFF mode.
98272660 90 */
dd3ad97c 91 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
5b4d5bcc 92 while (pwrdm_read_pwrst(cpu_pd[1]) != PWRDM_POWER_OFF) {
dd3ad97c 93 cpu_relax();
5b4d5bcc
KH
94
95 /*
96 * CPU1 could have already entered & exited idle
97 * without hitting off because of a wakeup
98 * or a failed attempt to hit off mode. Check for
99 * that here, otherwise we could spin forever
100 * waiting for CPU1 off.
101 */
102 if (cpu_done[1])
103 goto fail;
104
105 }
98272660
SS
106 }
107
74ed7bdc
SG
108 mpuss_can_lose_context = (cx->mpu_state == PWRDM_POWER_RET) &&
109 (cx->mpu_logic_state == PWRDM_POWER_OFF);
110
98272660
SS
111 /*
112 * Call idle CPU PM enter notifier chain so that
113 * VFP and per CPU interrupt context is saved.
114 */
dd3ad97c
SS
115 cpu_pm_enter();
116
117 if (dev->cpu == 0) {
118 pwrdm_set_logic_retst(mpu_pd, cx->mpu_logic_state);
119 omap_set_pwrdm_state(mpu_pd, cx->mpu_state);
120
121 /*
122 * Call idle CPU cluster PM enter notifier chain
123 * to save GIC and wakeupgen context.
124 */
74ed7bdc
SG
125 if (mpuss_can_lose_context)
126 cpu_cluster_pm_enter();
dd3ad97c 127 }
98272660
SS
128
129 omap4_enter_lowpower(dev->cpu, cx->cpu_state);
5b4d5bcc 130 cpu_done[dev->cpu] = true;
98272660 131
dd3ad97c
SS
132 /* Wakeup CPU1 only if it is not offlined */
133 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
74ed7bdc
SG
134
135 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) &&
136 mpuss_can_lose_context)
137 gic_dist_disable();
138
dd3ad97c 139 clkdm_wakeup(cpu_clkdm[1]);
b7806dc7 140 omap_set_pwrdm_state(cpu_pd[1], PWRDM_POWER_ON);
dd3ad97c 141 clkdm_allow_idle(cpu_clkdm[1]);
74ed7bdc
SG
142
143 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) &&
144 mpuss_can_lose_context) {
145 while (gic_dist_disabled()) {
146 udelay(1);
147 cpu_relax();
148 }
149 gic_timer_retrigger();
150 }
dd3ad97c 151 }
98272660
SS
152
153 /*
154 * Call idle CPU PM exit notifier chain to restore
dd3ad97c 155 * VFP and per CPU IRQ context.
98272660 156 */
dd3ad97c 157 cpu_pm_exit();
98272660
SS
158
159 /*
160 * Call idle CPU cluster PM exit notifier chain
161 * to restore GIC and wakeupgen context.
162 */
74ed7bdc 163 if (dev->cpu == 0 && mpuss_can_lose_context)
98272660
SS
164 cpu_cluster_pm_exit();
165
5b4d5bcc
KH
166fail:
167 cpuidle_coupled_parallel_barrier(dev, &abort_barrier);
168 cpu_done[dev->cpu] = false;
98be0dde 169
98272660
SS
170 return index;
171}
172
9db316b6 173static struct cpuidle_driver omap4_idle_driver = {
d13e9261
RL
174 .name = "omap4_idle",
175 .owner = THIS_MODULE,
78e9016f
DL
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,
db4f3dab 182 .enter = omap_enter_idle_simple,
78e9016f 183 .name = "C1",
eb495d33 184 .desc = "CPUx ON, MPUSS ON"
78e9016f
DL
185 },
186 {
9db316b6 187 /* C2 - CPU0 OFF + CPU1 OFF + MPU CSWR */
78e9016f
DL
188 .exit_latency = 328 + 440,
189 .target_residency = 960,
cb7094e8
DL
190 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
191 CPUIDLE_FLAG_TIMER_STOP,
db4f3dab 192 .enter = omap_enter_idle_coupled,
78e9016f 193 .name = "C2",
eb495d33 194 .desc = "CPUx OFF, MPUSS CSWR",
78e9016f
DL
195 },
196 {
197 /* C3 - CPU0 OFF + CPU1 OFF + MPU OSWR */
198 .exit_latency = 460 + 518,
199 .target_residency = 1100,
cb7094e8
DL
200 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
201 CPUIDLE_FLAG_TIMER_STOP,
db4f3dab 202 .enter = omap_enter_idle_coupled,
78e9016f 203 .name = "C3",
eb495d33 204 .desc = "CPUx OFF, MPUSS OSWR",
78e9016f
DL
205 },
206 },
d0d133d9 207 .state_count = ARRAY_SIZE(omap4_idle_data),
78e9016f 208 .safe_state_index = 0,
98272660
SS
209};
210
9db316b6 211/* Public functions */
b93d70ae 212
98272660 213/**
db4f3dab 214 * omap4_idle_init - Init routine for OMAP4+ idle
98272660 215 *
db4f3dab 216 * Registers the OMAP4+ specific cpuidle driver to the cpuidle
98272660
SS
217 * framework with the valid set of states.
218 */
219int __init omap4_idle_init(void)
220{
98272660 221 mpu_pd = pwrdm_lookup("mpu_pwrdm");
dd3ad97c
SS
222 cpu_pd[0] = pwrdm_lookup("cpu0_pwrdm");
223 cpu_pd[1] = pwrdm_lookup("cpu1_pwrdm");
224 if ((!mpu_pd) || (!cpu_pd[0]) || (!cpu_pd[1]))
98272660
SS
225 return -ENODEV;
226
dd3ad97c
SS
227 cpu_clkdm[0] = clkdm_lookup("mpu0_clkdm");
228 cpu_clkdm[1] = clkdm_lookup("mpu1_clkdm");
229 if (!cpu_clkdm[0] || !cpu_clkdm[1])
98272660
SS
230 return -ENODEV;
231
0e9e8b4b 232 return cpuidle_register(&omap4_idle_driver, cpu_online_mask);
98272660 233}
This page took 0.137537 seconds and 5 git commands to generate.