cpuidle.c 2.9 KB
Newer Older
1
/* linux/arch/arm/mach-exynos/cpuidle.c
J
Jaecheol Lee 已提交
2 3 4 5 6 7 8 9 10 11 12 13
 *
 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
*/

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/cpuidle.h>
14
#include <linux/cpu_pm.h>
J
Jaecheol Lee 已提交
15
#include <linux/io.h>
16
#include <linux/export.h>
17
#include <linux/module.h>
18
#include <linux/time.h>
19
#include <linux/platform_device.h>
J
Jaecheol Lee 已提交
20 21

#include <asm/proc-fns.h>
22 23
#include <asm/suspend.h>
#include <asm/unified.h>
24
#include <asm/cpuidle.h>
25 26

#include <plat/cpu.h>
27
#include <plat/pm.h>
28

29 30
#include <mach/map.h>

31
#include "common.h"
32
#include "regs-pmu.h"
33

34 35 36
static int idle_finisher(unsigned long flags)
{
	exynos_enter_aftr();
37
	cpu_do_idle();
38

39 40 41
	return 1;
}

42
static int exynos_enter_core0_aftr(struct cpuidle_device *dev,
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
				struct cpuidle_driver *drv,
				int index)
{
	unsigned long tmp;

	/* Setting Central Sequence Register for power down mode */
	tmp = __raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
	tmp &= ~S5P_CENTRAL_LOWPWR_CFG;
	__raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);

	cpu_pm_enter();
	cpu_suspend(0, idle_finisher);
	cpu_pm_exit();

	/*
	 * If PMU failed while entering sleep mode, WFI will be
	 * ignored by PMU and then exiting cpu_do_idle().
	 * S5P_CENTRAL_LOWPWR_CFG bit will not be set automatically
	 * in this situation.
	 */
	tmp = __raw_readl(S5P_CENTRAL_SEQ_CONFIGURATION);
	if (!(tmp & S5P_CENTRAL_LOWPWR_CFG)) {
		tmp |= S5P_CENTRAL_LOWPWR_CFG;
		__raw_writel(tmp, S5P_CENTRAL_SEQ_CONFIGURATION);
67 68
		/* Clear wakeup state register */
		__raw_writel(0x0, S5P_WAKEUP_STAT);
69 70
	}

71
	return index;
J
Jaecheol Lee 已提交
72 73
}

74
static int exynos_enter_lowpower(struct cpuidle_device *dev,
75 76 77 78 79
				struct cpuidle_driver *drv,
				int index)
{
	int new_index = index;

80 81
	/* AFTR can only be entered when cores other than CPU0 are offline */
	if (num_online_cpus() > 1 || dev->cpu != 0)
82 83 84
		new_index = drv->safe_state_index;

	if (new_index == 0)
85
		return arm_cpuidle_simple_enter(dev, drv, new_index);
86
	else
87
		return exynos_enter_core0_aftr(dev, drv, new_index);
88 89
}

90 91
static struct cpuidle_driver exynos_idle_driver = {
	.name			= "exynos_idle",
92 93 94 95
	.owner			= THIS_MODULE,
	.states = {
		[0] = ARM_CPUIDLE_WFI_STATE,
		[1] = {
96
			.enter			= exynos_enter_lowpower,
97 98 99 100 101 102 103 104 105 106 107
			.exit_latency		= 300,
			.target_residency	= 100000,
			.flags			= CPUIDLE_FLAG_TIME_VALID,
			.name			= "C1",
			.desc			= "ARM power down",
		},
	},
	.state_count = 2,
	.safe_state_index = 0,
};

108
static int exynos_cpuidle_probe(struct platform_device *pdev)
J
Jaecheol Lee 已提交
109
{
110
	int ret;
111

112
	ret = cpuidle_register(&exynos_idle_driver, NULL);
113
	if (ret) {
114
		dev_err(&pdev->dev, "failed to register cpuidle driver\n");
115
		return ret;
116
	}
J
Jaecheol Lee 已提交
117 118 119

	return 0;
}
120 121 122 123 124 125 126 127 128 129

static struct platform_driver exynos_cpuidle_driver = {
	.probe	= exynos_cpuidle_probe,
	.driver = {
		.name = "exynos_cpuidle",
		.owner = THIS_MODULE,
	},
};

module_platform_driver(exynos_cpuidle_driver);