diff options
author | Olof Johansson <olof@lixom.net> | 2015-02-06 01:07:33 -0800 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2015-02-06 01:07:33 -0800 |
commit | 6f4554bdff6870c9e0f0b152bbec71d7a0f366f1 (patch) | |
tree | a3620f79a76f6f848f0f8be8b0d98d37a533acc0 /include | |
parent | 68a028f856f7ad2482a617ae02518634bae16809 (diff) | |
parent | 712eddf70225ab5ae65e946e22d2dfe6b93e8dd1 (diff) | |
download | linux-stable-6f4554bdff6870c9e0f0b152bbec71d7a0f366f1.tar.gz linux-stable-6f4554bdff6870c9e0f0b152bbec71d7a0f366f1.tar.bz2 linux-stable-6f4554bdff6870c9e0f0b152bbec71d7a0f366f1.zip |
Merge tag 'samsung-cpuidle' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into next/drivers
Merge "Samsung CPUIdle updates for v3.20" from Kukjin Kim:
- adds coupled cpuidle support for exynos4210
: fix for Exynos platform PM code preparing it for the coupled
cpuidle support and adds coupled cpuidle AFTR mode on exynos4210
Note this is mostrly based on earlier cpuidle-exynos4210 driver
from Daniel Lezcano and Bart updated.
* tag 'samsung-cpuidle' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung:
cpuidle: exynos: add coupled cpuidle support for exynos4210
ARM: EXYNOS: apply S5P_CENTRAL_SEQ_OPTION fix only when necessary
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/platform_data/cpuidle-exynos.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/linux/platform_data/cpuidle-exynos.h b/include/linux/platform_data/cpuidle-exynos.h new file mode 100644 index 000000000000..bfa40e4c5d5f --- /dev/null +++ b/include/linux/platform_data/cpuidle-exynos.h @@ -0,0 +1,20 @@ +/* + * Copyright (c) 2014 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. +*/ + +#ifndef __CPUIDLE_EXYNOS_H +#define __CPUIDLE_EXYNOS_H + +struct cpuidle_exynos_data { + int (*cpu0_enter_aftr)(void); + int (*cpu1_powerdown)(void); + void (*pre_enter_aftr)(void); + void (*post_enter_aftr)(void); +}; + +#endif |