|
@@ -20,7 +20,7 @@
|
|
|
*/
|
|
|
|
|
|
#include <linux/clk/tegra.h>
|
|
|
-#include <linux/clockchips.h>
|
|
|
+#include <linux/tick.h>
|
|
|
#include <linux/cpuidle.h>
|
|
|
#include <linux/cpu_pm.h>
|
|
|
#include <linux/kernel.h>
|
|
@@ -136,11 +136,11 @@ static bool tegra20_cpu_cluster_power_down(struct cpuidle_device *dev,
|
|
|
if (tegra20_reset_cpu_1() || !tegra_cpu_rail_off_ready())
|
|
|
return false;
|
|
|
|
|
|
- clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &dev->cpu);
|
|
|
+ tick_broadcast_enter();
|
|
|
|
|
|
tegra_idle_lp2_last();
|
|
|
|
|
|
- clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &dev->cpu);
|
|
|
+ tick_broadcast_exit();
|
|
|
|
|
|
if (cpu_online(1))
|
|
|
tegra20_wake_cpu1_from_reset();
|
|
@@ -153,13 +153,13 @@ static bool tegra20_idle_enter_lp2_cpu_1(struct cpuidle_device *dev,
|
|
|
struct cpuidle_driver *drv,
|
|
|
int index)
|
|
|
{
|
|
|
- clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_ENTER, &dev->cpu);
|
|
|
+ tick_broadcast_enter();
|
|
|
|
|
|
cpu_suspend(0, tegra20_sleep_cpu_secondary_finish);
|
|
|
|
|
|
tegra20_cpu_clear_resettable();
|
|
|
|
|
|
- clockevents_notify(CLOCK_EVT_NOTIFY_BROADCAST_EXIT, &dev->cpu);
|
|
|
+ tick_broadcast_exit();
|
|
|
|
|
|
return true;
|
|
|
}
|