2 * CPU idle driver for Tegra CPUs
4 * Copyright (c) 2010-2012, NVIDIA Corporation.
5 * Copyright (c) 2011 Google, Inc.
6 * Author: Colin Cross <ccross@android.com>
7 * Gary King <gking@nvidia.com>
9 * Rework for 3.3 by Peter De Schrijver <pdeschrijver@nvidia.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/cpuidle.h>
25 #include <linux/cpu_pm.h>
26 #include <linux/clockchips.h>
27 #include <linux/clk/tegra.h>
29 #include <asm/cpuidle.h>
30 #include <asm/proc-fns.h>
31 #include <asm/suspend.h>
32 #include <asm/smp_plat.h>
40 #ifdef CONFIG_PM_SLEEP
41 static bool abort_flag
;
42 static atomic_t abort_barrier
;
43 static int tegra20_idle_lp2_coupled(struct cpuidle_device
*dev
,
44 struct cpuidle_driver
*drv
,
46 #define TEGRA20_MAX_STATES 2
48 #define TEGRA20_MAX_STATES 1
51 static struct cpuidle_driver tegra_idle_driver
= {
55 ARM_CPUIDLE_WFI_STATE_PWR(600),
56 #ifdef CONFIG_PM_SLEEP
58 .enter
= tegra20_idle_lp2_coupled
,
60 .target_residency
= 10000,
62 .flags
= CPUIDLE_FLAG_TIME_VALID
|
64 .name
= "powered-down",
65 .desc
= "CPU power gated",
69 .state_count
= TEGRA20_MAX_STATES
,
70 .safe_state_index
= 0,
73 #ifdef CONFIG_PM_SLEEP
75 static void __iomem
*pmc
= IO_ADDRESS(TEGRA_PMC_BASE
);
77 static int tegra20_reset_sleeping_cpu_1(void)
83 if (readl(pmc
+ PMC_SCRATCH41
) == CPU_RESETTABLE
)
84 tegra20_cpu_shutdown(1);
93 static void tegra20_wake_cpu1_from_reset(void)
97 tegra20_cpu_clear_resettable();
99 /* enable cpu clock on cpu */
100 tegra_enable_cpu_clock(1);
102 /* take the CPU out of reset */
103 tegra_cpu_out_of_reset(1);
106 flowctrl_write_cpu_halt(1, 0);
111 static int tegra20_reset_cpu_1(void)
113 if (!cpu_online(1) || !tegra20_reset_sleeping_cpu_1())
116 tegra20_wake_cpu1_from_reset();
120 static inline void tegra20_wake_cpu1_from_reset(void)
124 static inline int tegra20_reset_cpu_1(void)
130 static bool tegra20_cpu_cluster_power_down(struct cpuidle_device
*dev
,
131 struct cpuidle_driver
*drv
,
134 while (tegra20_cpu_is_resettable_soon())
137 if (tegra20_reset_cpu_1() || !tegra_cpu_rail_off_ready())
140 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER
, &dev
->cpu
);
142 tegra_idle_lp2_last();
144 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT
, &dev
->cpu
);
147 tegra20_wake_cpu1_from_reset();
153 static bool tegra20_idle_enter_lp2_cpu_1(struct cpuidle_device
*dev
,
154 struct cpuidle_driver
*drv
,
157 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER
, &dev
->cpu
);
159 cpu_suspend(0, tegra20_sleep_cpu_secondary_finish
);
161 tegra20_cpu_clear_resettable();
163 clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT
, &dev
->cpu
);
168 static inline bool tegra20_idle_enter_lp2_cpu_1(struct cpuidle_device
*dev
,
169 struct cpuidle_driver
*drv
,
176 static int tegra20_idle_lp2_coupled(struct cpuidle_device
*dev
,
177 struct cpuidle_driver
*drv
,
180 bool entered_lp2
= false;
182 if (tegra_pending_sgi())
183 ACCESS_ONCE(abort_flag
) = true;
185 cpuidle_coupled_parallel_barrier(dev
, &abort_barrier
);
188 cpuidle_coupled_parallel_barrier(dev
, &abort_barrier
);
189 abort_flag
= false; /* clean flag for next coming */
195 tegra_set_cpu_in_lp2();
199 entered_lp2
= tegra20_cpu_cluster_power_down(dev
, drv
, index
);
201 entered_lp2
= tegra20_idle_enter_lp2_cpu_1(dev
, drv
, index
);
204 tegra_clear_cpu_in_lp2();
210 return entered_lp2
? index
: 0;
215 * Tegra20 HW appears to have a bug such that PCIe device interrupts, whether
216 * they are legacy IRQs or MSI, are lost when LP2 is enabled. To work around
217 * this, simply disable LP2 if the PCI driver and DT node are both enabled.
219 void tegra20_cpuidle_pcie_irqs_in_use(void)
222 "Disabling cpuidle LP2 state, since PCIe IRQs are in use\n");
223 tegra_idle_driver
.states
[1].disabled
= true;
226 int __init
tegra20_cpuidle_init(void)
228 return cpuidle_register(&tegra_idle_driver
, cpu_possible_mask
);