ARM: OMAP2+: Fix DMA hang after off-idle
[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
865da01c
SS
26#define MAX_CPUS 2
27
7aeb658d 28/* Machine specific information */
db4f3dab 29struct idle_statedata {
98272660
SS
30 u32 cpu_state;
31 u32 mpu_logic_state;
32 u32 mpu_state;
98272660
SS
33};
34
db4f3dab 35static struct idle_statedata omap4_idle_data[] = {
d0d133d9
DL
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};
98272660 52
865da01c
SS
53static struct powerdomain *mpu_pd, *cpu_pd[MAX_CPUS];
54static struct clockdomain *cpu_clkdm[MAX_CPUS];
98272660 55
5b4d5bcc 56static atomic_t abort_barrier;
865da01c 57static bool cpu_done[MAX_CPUS];
db4f3dab 58static struct idle_statedata *state_ptr = &omap4_idle_data[0];
98272660 59
9db316b6
PW
60/* Private functions */
61
98272660 62/**
db4f3dab 63 * omap_enter_idle_[simple/coupled] - OMAP4PLUS cpuidle entry functions
98272660
SS
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 */
db4f3dab 72static int omap_enter_idle_simple(struct cpuidle_device *dev,
dd3ad97c
SS
73 struct cpuidle_driver *drv,
74 int index)
75{
dd3ad97c 76 omap_do_wfi();
dd3ad97c
SS
77 return index;
78}
79
db4f3dab 80static int omap_enter_idle_coupled(struct cpuidle_device *dev,
98272660
SS
81 struct cpuidle_driver *drv,
82 int index)
83{
db4f3dab 84 struct idle_statedata *cx = state_ptr + index;
74ed7bdc 85 u32 mpuss_can_lose_context = 0;
98272660 86
98272660 87 /*
dd3ad97c 88 * CPU0 has to wait and stay ON until CPU1 is OFF state.
98272660
SS
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.
98272660 92 */
dd3ad97c 93 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
5b4d5bcc 94 while (pwrdm_read_pwrst(cpu_pd[1]) != PWRDM_POWER_OFF) {
dd3ad97c 95 cpu_relax();
5b4d5bcc
KH
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 }
98272660
SS
108 }
109
74ed7bdc
SG
110 mpuss_can_lose_context = (cx->mpu_state == PWRDM_POWER_RET) &&
111 (cx->mpu_logic_state == PWRDM_POWER_OFF);
112
98272660
SS
113 /*
114 * Call idle CPU PM enter notifier chain so that
115 * VFP and per CPU interrupt context is saved.
116 */
dd3ad97c
SS
117 cpu_pm_enter();
118
119 if (dev->cpu == 0) {
120 pwrdm_set_logic_retst(mpu_pd, cx->mpu_logic_state);
121 omap_set_pwrdm_state(mpu_pd, cx->mpu_state);
122
123 /*
124 * Call idle CPU cluster PM enter notifier chain
125 * to save GIC and wakeupgen context.
126 */
74ed7bdc
SG
127 if (mpuss_can_lose_context)
128 cpu_cluster_pm_enter();
dd3ad97c 129 }
98272660
SS
130
131 omap4_enter_lowpower(dev->cpu, cx->cpu_state);
5b4d5bcc 132 cpu_done[dev->cpu] = true;
98272660 133
dd3ad97c
SS
134 /* Wakeup CPU1 only if it is not offlined */
135 if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
74ed7bdc
SG
136
137 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) &&
138 mpuss_can_lose_context)
139 gic_dist_disable();
140
dd3ad97c 141 clkdm_wakeup(cpu_clkdm[1]);
b7806dc7 142 omap_set_pwrdm_state(cpu_pd[1], PWRDM_POWER_ON);
dd3ad97c 143 clkdm_allow_idle(cpu_clkdm[1]);
74ed7bdc
SG
144
145 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) &&
146 mpuss_can_lose_context) {
147 while (gic_dist_disabled()) {
148 udelay(1);
149 cpu_relax();
150 }
151 gic_timer_retrigger();
152 }
dd3ad97c 153 }
98272660
SS
154
155 /*
156 * Call idle CPU PM exit notifier chain to restore
dd3ad97c 157 * VFP and per CPU IRQ context.
98272660 158 */
dd3ad97c 159 cpu_pm_exit();
98272660
SS
160
161 /*
162 * Call idle CPU cluster PM exit notifier chain
163 * to restore GIC and wakeupgen context.
164 */
74ed7bdc 165 if (dev->cpu == 0 && mpuss_can_lose_context)
98272660
SS
166 cpu_cluster_pm_exit();
167
5b4d5bcc
KH
168fail:
169 cpuidle_coupled_parallel_barrier(dev, &abort_barrier);
170 cpu_done[dev->cpu] = false;
98be0dde 171
98272660
SS
172 return index;
173}
174
9db316b6 175static struct cpuidle_driver omap4_idle_driver = {
d13e9261
RL
176 .name = "omap4_idle",
177 .owner = THIS_MODULE,
78e9016f
DL
178 .states = {
179 {
180 /* C1 - CPU0 ON + CPU1 ON + MPU ON */
181 .exit_latency = 2 + 2,
182 .target_residency = 5,
183 .flags = CPUIDLE_FLAG_TIME_VALID,
db4f3dab 184 .enter = omap_enter_idle_simple,
78e9016f 185 .name = "C1",
eb495d33 186 .desc = "CPUx ON, MPUSS ON"
78e9016f
DL
187 },
188 {
9db316b6 189 /* C2 - CPU0 OFF + CPU1 OFF + MPU CSWR */
78e9016f
DL
190 .exit_latency = 328 + 440,
191 .target_residency = 960,
cb7094e8
DL
192 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
193 CPUIDLE_FLAG_TIMER_STOP,
db4f3dab 194 .enter = omap_enter_idle_coupled,
78e9016f 195 .name = "C2",
eb495d33 196 .desc = "CPUx OFF, MPUSS CSWR",
78e9016f
DL
197 },
198 {
199 /* C3 - CPU0 OFF + CPU1 OFF + MPU OSWR */
200 .exit_latency = 460 + 518,
201 .target_residency = 1100,
cb7094e8
DL
202 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
203 CPUIDLE_FLAG_TIMER_STOP,
db4f3dab 204 .enter = omap_enter_idle_coupled,
78e9016f 205 .name = "C3",
eb495d33 206 .desc = "CPUx OFF, MPUSS OSWR",
78e9016f
DL
207 },
208 },
d0d133d9 209 .state_count = ARRAY_SIZE(omap4_idle_data),
78e9016f 210 .safe_state_index = 0,
98272660
SS
211};
212
9db316b6 213/* Public functions */
b93d70ae 214
98272660 215/**
db4f3dab 216 * omap4_idle_init - Init routine for OMAP4+ idle
98272660 217 *
db4f3dab 218 * Registers the OMAP4+ specific cpuidle driver to the cpuidle
98272660
SS
219 * framework with the valid set of states.
220 */
221int __init omap4_idle_init(void)
222{
98272660 223 mpu_pd = pwrdm_lookup("mpu_pwrdm");
dd3ad97c
SS
224 cpu_pd[0] = pwrdm_lookup("cpu0_pwrdm");
225 cpu_pd[1] = pwrdm_lookup("cpu1_pwrdm");
226 if ((!mpu_pd) || (!cpu_pd[0]) || (!cpu_pd[1]))
98272660
SS
227 return -ENODEV;
228
dd3ad97c
SS
229 cpu_clkdm[0] = clkdm_lookup("mpu0_clkdm");
230 cpu_clkdm[1] = clkdm_lookup("mpu1_clkdm");
231 if (!cpu_clkdm[0] || !cpu_clkdm[1])
98272660
SS
232 return -ENODEV;
233
0e9e8b4b 234 return cpuidle_register(&omap4_idle_driver, cpu_online_mask);
98272660 235}
This page took 0.16869 seconds and 5 git commands to generate.