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/clk/tegra.h>
23 #include <linux/tick.h>
24 #include <linux/cpuidle.h>
25 #include <linux/cpu_pm.h>
26 #include <linux/kernel.h>
27 #include <linux/module.h>
29 #include <asm/cpuidle.h>
30 #include <asm/smp_plat.h>
31 #include <asm/suspend.h>
36 #ifdef CONFIG_PM_SLEEP
37 static int tegra30_idle_lp2(struct cpuidle_device *dev,
38 struct cpuidle_driver *drv,
42 static struct cpuidle_driver tegra_idle_driver = {
45 #ifdef CONFIG_PM_SLEEP
51 [0] = ARM_CPUIDLE_WFI_STATE_PWR(600),
52 #ifdef CONFIG_PM_SLEEP
54 .enter = tegra30_idle_lp2,
56 .target_residency = 2200,
58 .name = "powered-down",
59 .desc = "CPU power gated",
65 #ifdef CONFIG_PM_SLEEP
66 static bool tegra30_cpu_cluster_power_down(struct cpuidle_device *dev,
67 struct cpuidle_driver *drv,
70 /* All CPUs entering LP2 is not working.
71 * Don't let CPU0 enter LP2 when any secondary CPU is online.
73 if (num_online_cpus() > 1 || !tegra_cpu_rail_off_ready()) {
78 tick_broadcast_enter();
80 tegra_idle_lp2_last();
82 tick_broadcast_exit();
88 static bool tegra30_cpu_core_power_down(struct cpuidle_device *dev,
89 struct cpuidle_driver *drv,
92 tick_broadcast_enter();
96 cpu_suspend(0, tegra30_sleep_cpu_secondary_finish);
98 tick_broadcast_exit();
103 static inline bool tegra30_cpu_core_power_down(struct cpuidle_device *dev,
104 struct cpuidle_driver *drv,
111 static int tegra30_idle_lp2(struct cpuidle_device *dev,
112 struct cpuidle_driver *drv,
115 bool entered_lp2 = false;
120 last_cpu = tegra_set_cpu_in_lp2();
125 entered_lp2 = tegra30_cpu_cluster_power_down(dev, drv,
130 entered_lp2 = tegra30_cpu_core_power_down(dev, drv, index);
134 tegra_clear_cpu_in_lp2();
140 return (entered_lp2) ? index : 0;
144 int __init tegra30_cpuidle_init(void)
146 return cpuidle_register(&tegra_idle_driver, NULL);