blob: a8d4fdb6c5052153672deb4c632e55b5509c50fd [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/*
Mahesh Sivasubramanian1b8601b2012-12-20 14:11:23 -07002 * Copyright (c) 2010-2011, 2013 The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 and
6 * only version 2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#include <linux/module.h>
Hanumant Singh98cd8de2012-11-07 17:05:38 -080015#include <asm/proc-fns.h>
Abhijeet Dharmapurikarefaca4f2011-12-27 16:24:07 -080016#include <mach/cpuidle.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070017#include "idle.h"
Matt Wagantall7cca4642012-02-01 16:43:24 -080018#include "pm.h"
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070019
20void arch_idle(void)
Hanumant Singh98cd8de2012-11-07 17:05:38 -080021{
22 cpu_do_idle();
23}
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070024
25void msm_pm_set_platform_data(struct msm_pm_platform_data *data, int count)
26{ }
27
Mahesh Sivasubramaniand23add12011-11-18 14:30:11 -070028void msm_pm_cpu_enter_lowpower(unsigned cpu)
29{
30 asm("wfi"
31 :
32 :
33 : "memory", "cc");
34}
35
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070036void msm_pm_set_max_sleep_time(int64_t max_sleep_time_ns) { }
Praveen Chidambaram3895bde2012-05-14 19:42:40 +053037
38void msm_pm_set_irq_extns(struct msm_pm_irq_calls *irq_calls) {}
39
Priyanka Mathur92fe5752013-01-17 10:58:04 -080040enum msm_pm_sleep_mode msm_pm_idle_enter(struct cpuidle_device *dev,
Steve Mucklef132c6c2012-06-06 18:30:57 -070041 struct cpuidle_driver *drv, int index)
Praveen Chidambaram3895bde2012-05-14 19:42:40 +053042{
43 return -ENOSYS;
44}
45
Mahesh Sivasubramanian95a48e72013-02-15 14:23:26 -070046void msm_pm_enable_retention(bool enable) {}
Priyanka Mathur92fe5752013-01-17 10:58:04 -080047