cpuidle-mvebu-v7.c 3.7 KB
Newer Older
1
/*
2
 * Marvell Armada 370, 38x and XP SoC cpuidle driver
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * Copyright (C) 2014 Marvell
 *
 * Nadav Haklai <nadavh@marvell.com>
 * Gregory CLEMENT <gregory.clement@free-electrons.com>
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 *
 * Maintainer: Gregory CLEMENT <gregory.clement@free-electrons.com>
 */

#include <linux/cpu_pm.h>
#include <linux/cpuidle.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/suspend.h>
#include <linux/platform_device.h>
#include <asm/cpuidle.h>

24
#define MVEBU_V7_FLAG_DEEP_IDLE	0x10000
25

26
static int (*mvebu_v7_cpu_suspend)(int);
27

28
static int mvebu_v7_enter_idle(struct cpuidle_device *dev,
29 30 31 32 33 34 35
				struct cpuidle_driver *drv,
				int index)
{
	int ret;
	bool deepidle = false;
	cpu_pm_enter();

36
	if (drv->states[index].flags & MVEBU_V7_FLAG_DEEP_IDLE)
37 38
		deepidle = true;

39
	ret = mvebu_v7_cpu_suspend(deepidle);
40 41 42 43 44 45 46 47
	if (ret)
		return ret;

	cpu_pm_exit();

	return index;
}

48 49
static struct cpuidle_driver armadaxp_idle_driver = {
	.name			= "armada_xp_idle",
50 51
	.states[0]		= ARM_CPUIDLE_WFI_STATE,
	.states[1]		= {
52
		.enter			= mvebu_v7_enter_idle,
53 54 55 56 57 58 59 60
		.exit_latency		= 10,
		.power_usage		= 50,
		.target_residency	= 100,
		.flags			= CPUIDLE_FLAG_TIME_VALID,
		.name			= "MV CPU IDLE",
		.desc			= "CPU power down",
	},
	.states[2]		= {
61
		.enter			= mvebu_v7_enter_idle,
62 63 64 65
		.exit_latency		= 100,
		.power_usage		= 5,
		.target_residency	= 1000,
		.flags			= CPUIDLE_FLAG_TIME_VALID |
66
						MVEBU_V7_FLAG_DEEP_IDLE,
67 68 69
		.name			= "MV CPU DEEP IDLE",
		.desc			= "CPU and L2 Fabric power down",
	},
70
	.state_count = 3,
71 72
};

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
static struct cpuidle_driver armada370_idle_driver = {
	.name			= "armada_370_idle",
	.states[0]		= ARM_CPUIDLE_WFI_STATE,
	.states[1]		= {
		.enter			= mvebu_v7_enter_idle,
		.exit_latency		= 100,
		.power_usage		= 5,
		.target_residency	= 1000,
		.flags			= (CPUIDLE_FLAG_TIME_VALID |
					   MVEBU_V7_FLAG_DEEP_IDLE),
		.name			= "Deep Idle",
		.desc			= "CPU and L2 Fabric power down",
	},
	.state_count = 2,
};

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
static struct cpuidle_driver armada38x_idle_driver = {
	.name			= "armada_38x_idle",
	.states[0]		= ARM_CPUIDLE_WFI_STATE,
	.states[1]		= {
		.enter			= mvebu_v7_enter_idle,
		.exit_latency		= 10,
		.power_usage		= 5,
		.target_residency	= 100,
		.flags			= CPUIDLE_FLAG_TIME_VALID,
		.name			= "Idle",
		.desc			= "CPU and SCU power down",
	},
	.state_count = 2,
};

104
static int mvebu_v7_cpuidle_probe(struct platform_device *pdev)
105
{
106
	mvebu_v7_cpu_suspend = pdev->dev.platform_data;
107 108 109 110 111

	if (!strcmp(pdev->dev.driver->name, "cpuidle-armada-xp"))
		return cpuidle_register(&armadaxp_idle_driver, NULL);
	else if (!strcmp(pdev->dev.driver->name, "cpuidle-armada-370"))
		return cpuidle_register(&armada370_idle_driver, NULL);
112 113
	else if (!strcmp(pdev->dev.driver->name, "cpuidle-armada-38x"))
		return cpuidle_register(&armada38x_idle_driver, NULL);
114 115
	else
		return -EINVAL;
116 117
}

118
static struct platform_driver armadaxp_cpuidle_plat_driver = {
119
	.driver = {
120
		.name = "cpuidle-armada-xp",
121 122
		.owner = THIS_MODULE,
	},
123
	.probe = mvebu_v7_cpuidle_probe,
124 125
};

126
module_platform_driver(armadaxp_cpuidle_plat_driver);
127

128 129 130 131 132 133 134 135 136 137
static struct platform_driver armada370_cpuidle_plat_driver = {
	.driver = {
		.name = "cpuidle-armada-370",
		.owner = THIS_MODULE,
	},
	.probe = mvebu_v7_cpuidle_probe,
};

module_platform_driver(armada370_cpuidle_plat_driver);

138 139 140 141 142 143 144 145 146 147
static struct platform_driver armada38x_cpuidle_plat_driver = {
	.driver = {
		.name = "cpuidle-armada-38x",
		.owner = THIS_MODULE,
	},
	.probe = mvebu_v7_cpuidle_probe,
};

module_platform_driver(armada38x_cpuidle_plat_driver);

148
MODULE_AUTHOR("Gregory CLEMENT <gregory.clement@free-electrons.com>");
149
MODULE_DESCRIPTION("Marvell EBU v7 cpuidle driver");
150
MODULE_LICENSE("GPL");