ARM: OMAP: CPUidle: Unregister drivere on device registration failure
[deliverable/linux.git] / arch / arm / mach-omap2 / cpuidle44xx.c
CommitLineData
98272660
SS
1/*
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"
dd3ad97c 23#include "clockdomain.h"
98272660 24
7aeb658d 25/* Machine specific information */
98272660
SS
26struct omap4_idle_statedata {
27 u32 cpu_state;
28 u32 mpu_logic_state;
29 u32 mpu_state;
98272660
SS
30};
31
d0d133d9
DL
32static 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};
98272660 49
dd3ad97c
SS
50static struct powerdomain *mpu_pd, *cpu_pd[NR_CPUS];
51static struct clockdomain *cpu_clkdm[NR_CPUS];
98272660 52
5b4d5bcc
KH
53static atomic_t abort_barrier;
54static bool cpu_done[NR_CPUS];
98272660 55
9db316b6
PW
56/* Private functions */
57
98272660 58/**
dd3ad97c 59 * omap4_enter_idle_coupled_[simple/coupled] - OMAP4 cpuidle entry functions
98272660
SS
60 * @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 */
dd3ad97c
SS
68static 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,
98272660
SS
80 struct cpuidle_driver *drv,
81 int index)
82{
7aeb658d 83 struct omap4_idle_statedata *cx = &omap4_idle_data[index];
98272660 84
98272660
SS
85 local_fiq_disable();
86
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
110 /*
111 * Call idle CPU PM enter notifier chain so that
112 * VFP and per CPU interrupt context is saved.
113 */
dd3ad97c
SS
114 cpu_pm_enter();
115
116 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);
119
120 /*
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 }
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)) {
134 clkdm_wakeup(cpu_clkdm[1]);
135 clkdm_allow_idle(cpu_clkdm[1]);
136 }
98272660
SS
137
138 /*
139 * Call idle CPU PM exit notifier chain to restore
dd3ad97c 140 * VFP and per CPU IRQ context.
98272660 141 */
dd3ad97c 142 cpu_pm_exit();
98272660
SS
143
144 /*
145 * Call idle CPU cluster PM exit notifier chain
146 * to restore GIC and wakeupgen context.
147 */
148 if (omap4_mpuss_read_prev_context_state())
149 cpu_cluster_pm_exit();
150
5b4d5bcc
KH
151fail:
152 cpuidle_coupled_parallel_barrier(dev, &abort_barrier);
153 cpu_done[dev->cpu] = false;
98be0dde 154
98272660
SS
155 local_fiq_enable();
156
98272660
SS
157 return index;
158}
159
9db316b6 160static DEFINE_PER_CPU(struct cpuidle_device, omap4_idle_dev);
98272660 161
9db316b6 162static struct cpuidle_driver omap4_idle_driver = {
d13e9261
RL
163 .name = "omap4_idle",
164 .owner = THIS_MODULE,
165 .en_core_tk_irqen = 1,
78e9016f
DL
166 .states = {
167 {
168 /* C1 - CPU0 ON + CPU1 ON + MPU ON */
169 .exit_latency = 2 + 2,
170 .target_residency = 5,
171 .flags = CPUIDLE_FLAG_TIME_VALID,
dd3ad97c 172 .enter = omap4_enter_idle_simple,
78e9016f
DL
173 .name = "C1",
174 .desc = "MPUSS ON"
175 },
176 {
9db316b6 177 /* C2 - CPU0 OFF + CPU1 OFF + MPU CSWR */
78e9016f
DL
178 .exit_latency = 328 + 440,
179 .target_residency = 960,
cb7094e8
DL
180 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
181 CPUIDLE_FLAG_TIMER_STOP,
dd3ad97c 182 .enter = omap4_enter_idle_coupled,
78e9016f
DL
183 .name = "C2",
184 .desc = "MPUSS CSWR",
185 },
186 {
187 /* C3 - CPU0 OFF + CPU1 OFF + MPU OSWR */
188 .exit_latency = 460 + 518,
189 .target_residency = 1100,
cb7094e8
DL
190 .flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_COUPLED |
191 CPUIDLE_FLAG_TIMER_STOP,
dd3ad97c 192 .enter = omap4_enter_idle_coupled,
78e9016f
DL
193 .name = "C3",
194 .desc = "MPUSS OSWR",
195 },
196 },
d0d133d9 197 .state_count = ARRAY_SIZE(omap4_idle_data),
78e9016f 198 .safe_state_index = 0,
98272660
SS
199};
200
9db316b6 201/* Public functions */
b93d70ae 202
98272660
SS
203/**
204 * omap4_idle_init - Init routine for OMAP4 idle
205 *
206 * Registers the OMAP4 specific cpuidle driver to the cpuidle
207 * framework with the valid set of states.
208 */
209int __init omap4_idle_init(void)
210{
98272660 211 struct cpuidle_device *dev;
98272660
SS
212 unsigned int cpu_id = 0;
213
214 mpu_pd = pwrdm_lookup("mpu_pwrdm");
dd3ad97c
SS
215 cpu_pd[0] = pwrdm_lookup("cpu0_pwrdm");
216 cpu_pd[1] = pwrdm_lookup("cpu1_pwrdm");
217 if ((!mpu_pd) || (!cpu_pd[0]) || (!cpu_pd[1]))
98272660
SS
218 return -ENODEV;
219
dd3ad97c
SS
220 cpu_clkdm[0] = clkdm_lookup("mpu0_clkdm");
221 cpu_clkdm[1] = clkdm_lookup("mpu1_clkdm");
222 if (!cpu_clkdm[0] || !cpu_clkdm[1])
98272660
SS
223 return -ENODEV;
224
63b951ed
SS
225 if (cpuidle_register_driver(&omap4_idle_driver)) {
226 pr_err("%s: CPUidle driver register failed\n", __func__);
227 return -EIO;
228 }
dbd1ba6a 229
dd3ad97c
SS
230 for_each_cpu(cpu_id, cpu_online_mask) {
231 dev = &per_cpu(omap4_idle_dev, cpu_id);
232 dev->cpu = cpu_id;
c7a9b09b 233#ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED
dd3ad97c 234 dev->coupled_cpus = *cpu_online_mask;
c7a9b09b 235#endif
dd3ad97c
SS
236 if (cpuidle_register_device(dev)) {
237 pr_err("%s: CPUidle register failed\n", __func__);
63b951ed 238 cpuidle_unregister_driver(&omap4_idle_driver);
dd3ad97c
SS
239 return -EIO;
240 }
78e9016f 241 }
98272660
SS
242
243 return 0;
244}
This page took 0.101996 seconds and 5 git commands to generate.