Merge branches 'powercap' and 'pm-devfreq'
[firefly-linux-kernel-4.4.55.git] / arch / arm / mach-omap2 / cpuidle44xx.c
1 /*
2  * OMAP4+ CPU idle Routines
3  *
4  * Copyright (C) 2011-2013 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 #include <linux/clockchips.h>
18
19 #include <asm/cpuidle.h>
20
21 #include "common.h"
22 #include "pm.h"
23 #include "prm.h"
24 #include "clockdomain.h"
25
26 #define MAX_CPUS        2
27
28 /* Machine specific information */
29 struct idle_statedata {
30         u32 cpu_state;
31         u32 mpu_logic_state;
32         u32 mpu_state;
33 };
34
35 static struct idle_statedata omap4_idle_data[] = {
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 };
52
53 static struct powerdomain *mpu_pd, *cpu_pd[MAX_CPUS];
54 static struct clockdomain *cpu_clkdm[MAX_CPUS];
55
56 static atomic_t abort_barrier;
57 static bool cpu_done[MAX_CPUS];
58 static struct idle_statedata *state_ptr = &omap4_idle_data[0];
59
60 /* Private functions */
61
62 /**
63  * omap_enter_idle_[simple/coupled] - OMAP4PLUS cpuidle entry functions
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  */
72 static int omap_enter_idle_simple(struct cpuidle_device *dev,
73                         struct cpuidle_driver *drv,
74                         int index)
75 {
76         omap_do_wfi();
77         return index;
78 }
79
80 static int omap_enter_idle_coupled(struct cpuidle_device *dev,
81                         struct cpuidle_driver *drv,
82                         int index)
83 {
84         struct idle_statedata *cx = state_ptr + index;
85         u32 mpuss_can_lose_context = 0;
86         int cpu_id = smp_processor_id();
87
88         /*
89          * CPU0 has to wait and stay ON until CPU1 is OFF state.
90          * 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.
93          */
94         if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
95                 while (pwrdm_read_pwrst(cpu_pd[1]) != PWRDM_POWER_OFF) {
96                         cpu_relax();
97
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                 }
109         }
110
111         mpuss_can_lose_context = (cx->mpu_state == PWRDM_POWER_RET) &&
112                                  (cx->mpu_logic_state == PWRDM_POWER_OFF);
113
114         clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &cpu_id);
115
116         /*
117          * Call idle CPU PM enter notifier chain so that
118          * VFP and per CPU interrupt context is saved.
119          */
120         cpu_pm_enter();
121
122         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);
125
126                 /*
127                  * Call idle CPU cluster PM enter notifier chain
128                  * to save GIC and wakeupgen context.
129                  */
130                 if (mpuss_can_lose_context)
131                         cpu_cluster_pm_enter();
132         }
133
134         omap4_enter_lowpower(dev->cpu, cx->cpu_state);
135         cpu_done[dev->cpu] = true;
136
137         /* Wakeup CPU1 only if it is not offlined */
138         if (dev->cpu == 0 && cpumask_test_cpu(1, cpu_online_mask)) {
139
140                 if (IS_PM44XX_ERRATUM(PM_OMAP4_ROM_SMP_BOOT_ERRATUM_GICD) &&
141                     mpuss_can_lose_context)
142                         gic_dist_disable();
143
144                 clkdm_wakeup(cpu_clkdm[1]);
145                 omap_set_pwrdm_state(cpu_pd[1], PWRDM_POWER_ON);
146                 clkdm_allow_idle(cpu_clkdm[1]);
147
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                 }
156         }
157
158         /*
159          * Call idle CPU PM exit notifier chain to restore
160          * VFP and per CPU IRQ context.
161          */
162         cpu_pm_exit();
163
164         /*
165          * Call idle CPU cluster PM exit notifier chain
166          * to restore GIC and wakeupgen context.
167          */
168         if (dev->cpu == 0 && mpuss_can_lose_context)
169                 cpu_cluster_pm_exit();
170
171         clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &cpu_id);
172
173 fail:
174         cpuidle_coupled_parallel_barrier(dev, &abort_barrier);
175         cpu_done[dev->cpu] = false;
176
177         return index;
178 }
179
180 /*
181  * For each cpu, setup the broadcast timer because local timers
182  * stops for the states above C1.
183  */
184 static void omap_setup_broadcast_timer(void *arg)
185 {
186         int cpu = smp_processor_id();
187         clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ON, &cpu);
188 }
189
190 static struct cpuidle_driver omap4_idle_driver = {
191         .name                           = "omap4_idle",
192         .owner                          = THIS_MODULE,
193         .states = {
194                 {
195                         /* C1 - CPU0 ON + CPU1 ON + MPU ON */
196                         .exit_latency = 2 + 2,
197                         .target_residency = 5,
198                         .enter = omap_enter_idle_simple,
199                         .name = "C1",
200                         .desc = "CPUx ON, MPUSS ON"
201                 },
202                 {
203                         /* C2 - CPU0 OFF + CPU1 OFF + MPU CSWR */
204                         .exit_latency = 328 + 440,
205                         .target_residency = 960,
206                         .flags = CPUIDLE_FLAG_COUPLED,
207                         .enter = omap_enter_idle_coupled,
208                         .name = "C2",
209                         .desc = "CPUx OFF, MPUSS CSWR",
210                 },
211                 {
212                         /* C3 - CPU0 OFF + CPU1 OFF + MPU OSWR */
213                         .exit_latency = 460 + 518,
214                         .target_residency = 1100,
215                         .flags = CPUIDLE_FLAG_COUPLED,
216                         .enter = omap_enter_idle_coupled,
217                         .name = "C3",
218                         .desc = "CPUx OFF, MPUSS OSWR",
219                 },
220         },
221         .state_count = ARRAY_SIZE(omap4_idle_data),
222         .safe_state_index = 0,
223 };
224
225 /* Public functions */
226
227 /**
228  * omap4_idle_init - Init routine for OMAP4+ idle
229  *
230  * Registers the OMAP4+ specific cpuidle driver to the cpuidle
231  * framework with the valid set of states.
232  */
233 int __init omap4_idle_init(void)
234 {
235         mpu_pd = pwrdm_lookup("mpu_pwrdm");
236         cpu_pd[0] = pwrdm_lookup("cpu0_pwrdm");
237         cpu_pd[1] = pwrdm_lookup("cpu1_pwrdm");
238         if ((!mpu_pd) || (!cpu_pd[0]) || (!cpu_pd[1]))
239                 return -ENODEV;
240
241         cpu_clkdm[0] = clkdm_lookup("mpu0_clkdm");
242         cpu_clkdm[1] = clkdm_lookup("mpu1_clkdm");
243         if (!cpu_clkdm[0] || !cpu_clkdm[1])
244                 return -ENODEV;
245
246         /* Configure the broadcast timer on each cpu */
247         on_each_cpu(omap_setup_broadcast_timer, NULL, 1);
248
249         return cpuidle_register(&omap4_idle_driver, cpu_online_mask);
250 }