1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2011-2014 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
6 * Coupled cpuidle support based on the work of:
7 * Colin Cross <ccross@android.com>
8 * Daniel Lezcano <daniel.lezcano@linaro.org>
11 #include <linux/cpuidle.h>
12 #include <linux/cpu_pm.h>
13 #include <linux/export.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
17 #include <linux/platform_data/cpuidle-exynos.h>
19 #include <asm/suspend.h>
20 #include <asm/cpuidle.h>
22 static atomic_t exynos_idle_barrier;
24 static struct cpuidle_exynos_data *exynos_cpuidle_pdata;
25 static void (*exynos_enter_aftr)(void);
27 static int exynos_enter_coupled_lowpower(struct cpuidle_device *dev,
28 struct cpuidle_driver *drv,
33 exynos_cpuidle_pdata->pre_enter_aftr();
36 * Waiting all cpus to reach this point at the same moment
38 cpuidle_coupled_parallel_barrier(dev, &exynos_idle_barrier);
41 * Both cpus will reach this point at the same time
43 ret = dev->cpu ? exynos_cpuidle_pdata->cpu1_powerdown()
44 : exynos_cpuidle_pdata->cpu0_enter_aftr();
49 * Waiting all cpus to finish the power sequence before going further
51 cpuidle_coupled_parallel_barrier(dev, &exynos_idle_barrier);
53 exynos_cpuidle_pdata->post_enter_aftr();
58 static int exynos_enter_lowpower(struct cpuidle_device *dev,
59 struct cpuidle_driver *drv,
62 int new_index = index;
64 /* AFTR can only be entered when cores other than CPU0 are offline */
65 if (num_online_cpus() > 1 || dev->cpu != 0)
66 new_index = drv->safe_state_index;
69 return arm_cpuidle_simple_enter(dev, drv, new_index);
76 static struct cpuidle_driver exynos_idle_driver = {
77 .name = "exynos_idle",
80 [0] = ARM_CPUIDLE_WFI_STATE,
82 .enter = exynos_enter_lowpower,
84 .target_residency = 10000,
86 .desc = "ARM power down",
90 .safe_state_index = 0,
93 static struct cpuidle_driver exynos_coupled_idle_driver = {
94 .name = "exynos_coupled_idle",
97 [0] = ARM_CPUIDLE_WFI_STATE,
99 .enter = exynos_enter_coupled_lowpower,
100 .exit_latency = 5000,
101 .target_residency = 10000,
102 .flags = CPUIDLE_FLAG_COUPLED |
103 CPUIDLE_FLAG_TIMER_STOP,
105 .desc = "ARM power down",
109 .safe_state_index = 0,
112 static int exynos_cpuidle_probe(struct platform_device *pdev)
116 if (IS_ENABLED(CONFIG_SMP) &&
117 (of_machine_is_compatible("samsung,exynos4210") ||
118 of_machine_is_compatible("samsung,exynos3250"))) {
119 exynos_cpuidle_pdata = pdev->dev.platform_data;
121 ret = cpuidle_register(&exynos_coupled_idle_driver,
124 exynos_enter_aftr = (void *)(pdev->dev.platform_data);
126 ret = cpuidle_register(&exynos_idle_driver, NULL);
130 dev_err(&pdev->dev, "failed to register cpuidle driver\n");
137 static struct platform_driver exynos_cpuidle_driver = {
138 .probe = exynos_cpuidle_probe,
140 .name = "exynos_cpuidle",
143 builtin_platform_driver(exynos_cpuidle_driver);