blob: b2b5666e05159bc4c5e36dc0e1620ddc41dc2f0f [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Bartlomiej Zolnierkiewicz712eddf72015-01-24 14:05:50 +09002/*
3 * Copyright (c) 2011-2014 Samsung Electronics Co., Ltd.
Jaecheol Lee3d739982011-03-16 07:28:23 +09004 * http://www.samsung.com
5 *
Bartlomiej Zolnierkiewicz712eddf72015-01-24 14:05:50 +09006 * Coupled cpuidle support based on the work of:
7 * Colin Cross <ccross@android.com>
8 * Daniel Lezcano <daniel.lezcano@linaro.org>
Jaecheol Lee3d739982011-03-16 07:28:23 +09009*/
10
Jaecheol Lee3d739982011-03-16 07:28:23 +090011#include <linux/cpuidle.h>
Amit Daniel Kachhap67173ca2012-03-08 02:07:27 -080012#include <linux/cpu_pm.h>
Kyungmin Park76ee4552011-11-08 19:57:59 +090013#include <linux/export.h>
Paul Gortmaker84599232015-12-13 18:57:12 -050014#include <linux/init.h>
Bartlomiej Zolnierkiewicz35baa332013-08-30 12:15:04 +020015#include <linux/platform_device.h>
Bartlomiej Zolnierkiewicz712eddf72015-01-24 14:05:50 +090016#include <linux/of.h>
17#include <linux/platform_data/cpuidle-exynos.h>
Jaecheol Lee3d739982011-03-16 07:28:23 +090018
Amit Daniel Kachhap67173ca2012-03-08 02:07:27 -080019#include <asm/suspend.h>
Amit Daniel Kachhap06c77b32012-05-12 16:29:21 +090020#include <asm/cpuidle.h>
Amit Daniel Kachhap67173ca2012-03-08 02:07:27 -080021
Bartlomiej Zolnierkiewicz712eddf72015-01-24 14:05:50 +090022static atomic_t exynos_idle_barrier;
23
24static struct cpuidle_exynos_data *exynos_cpuidle_pdata;
Daniel Lezcano277f5042014-05-09 06:56:29 +090025static void (*exynos_enter_aftr)(void);
Kukjin Kimccd458c2012-12-31 10:06:48 -080026
Bartlomiej Zolnierkiewicz712eddf72015-01-24 14:05:50 +090027static int exynos_enter_coupled_lowpower(struct cpuidle_device *dev,
28 struct cpuidle_driver *drv,
29 int index)
30{
31 int ret;
32
33 exynos_cpuidle_pdata->pre_enter_aftr();
34
35 /*
36 * Waiting all cpus to reach this point at the same moment
37 */
38 cpuidle_coupled_parallel_barrier(dev, &exynos_idle_barrier);
39
40 /*
41 * Both cpus will reach this point at the same time
42 */
43 ret = dev->cpu ? exynos_cpuidle_pdata->cpu1_powerdown()
44 : exynos_cpuidle_pdata->cpu0_enter_aftr();
45 if (ret)
46 index = ret;
47
48 /*
49 * Waiting all cpus to finish the power sequence before going further
50 */
51 cpuidle_coupled_parallel_barrier(dev, &exynos_idle_barrier);
52
53 exynos_cpuidle_pdata->post_enter_aftr();
54
55 return index;
56}
57
Daniel Lezcano7880e452014-05-09 06:43:26 +090058static int exynos_enter_lowpower(struct cpuidle_device *dev,
Amit Daniel Kachhap67173ca2012-03-08 02:07:27 -080059 struct cpuidle_driver *drv,
60 int index)
61{
62 int new_index = index;
63
Bartlomiej Zolnierkiewicz118f5c12013-12-20 19:47:23 +010064 /* AFTR can only be entered when cores other than CPU0 are offline */
65 if (num_online_cpus() > 1 || dev->cpu != 0)
Amit Daniel Kachhap67173ca2012-03-08 02:07:27 -080066 new_index = drv->safe_state_index;
67
68 if (new_index == 0)
Amit Daniel Kachhap06c77b32012-05-12 16:29:21 +090069 return arm_cpuidle_simple_enter(dev, drv, new_index);
Tomasz Figa01601b32014-08-05 14:43:10 +020070
71 exynos_enter_aftr();
72
73 return new_index;
Amit Daniel Kachhap67173ca2012-03-08 02:07:27 -080074}
75
Daniel Lezcano7880e452014-05-09 06:43:26 +090076static struct cpuidle_driver exynos_idle_driver = {
77 .name = "exynos_idle",
Daniel Lezcano53af16a2014-05-09 06:43:26 +090078 .owner = THIS_MODULE,
79 .states = {
80 [0] = ARM_CPUIDLE_WFI_STATE,
81 [1] = {
Daniel Lezcano7880e452014-05-09 06:43:26 +090082 .enter = exynos_enter_lowpower,
Daniel Lezcano53af16a2014-05-09 06:43:26 +090083 .exit_latency = 300,
Marek Szyprowskic324f432019-03-28 14:33:58 +010084 .target_residency = 10000,
Daniel Lezcano53af16a2014-05-09 06:43:26 +090085 .name = "C1",
86 .desc = "ARM power down",
87 },
88 },
89 .state_count = 2,
90 .safe_state_index = 0,
91};
92
Bartlomiej Zolnierkiewicz712eddf72015-01-24 14:05:50 +090093static struct cpuidle_driver exynos_coupled_idle_driver = {
94 .name = "exynos_coupled_idle",
95 .owner = THIS_MODULE,
96 .states = {
97 [0] = ARM_CPUIDLE_WFI_STATE,
98 [1] = {
99 .enter = exynos_enter_coupled_lowpower,
100 .exit_latency = 5000,
101 .target_residency = 10000,
102 .flags = CPUIDLE_FLAG_COUPLED |
103 CPUIDLE_FLAG_TIMER_STOP,
104 .name = "C1",
105 .desc = "ARM power down",
106 },
107 },
108 .state_count = 2,
109 .safe_state_index = 0,
110};
111
Jingoo Hanf612a4f2013-10-21 10:53:03 +0900112static int exynos_cpuidle_probe(struct platform_device *pdev)
Jaecheol Lee3d739982011-03-16 07:28:23 +0900113{
Daniel Lezcano043c86b2014-05-09 06:43:26 +0900114 int ret;
Jaecheol Lee3d739982011-03-16 07:28:23 +0900115
Bartlomiej Zolnierkiewiczcfdda3532015-03-18 03:26:11 +0900116 if (IS_ENABLED(CONFIG_SMP) &&
Marek Szyprowski8919d772018-03-13 16:04:51 +0100117 (of_machine_is_compatible("samsung,exynos4210") ||
118 of_machine_is_compatible("samsung,exynos3250"))) {
Bartlomiej Zolnierkiewicz712eddf72015-01-24 14:05:50 +0900119 exynos_cpuidle_pdata = pdev->dev.platform_data;
Daniel Lezcano277f5042014-05-09 06:56:29 +0900120
Bartlomiej Zolnierkiewicz712eddf72015-01-24 14:05:50 +0900121 ret = cpuidle_register(&exynos_coupled_idle_driver,
122 cpu_possible_mask);
123 } else {
124 exynos_enter_aftr = (void *)(pdev->dev.platform_data);
125
126 ret = cpuidle_register(&exynos_idle_driver, NULL);
127 }
128
Daniel Lezcano5db9f432013-01-18 21:57:58 -0800129 if (ret) {
Jingoo Hanae7c4c82013-10-21 10:52:15 +0900130 dev_err(&pdev->dev, "failed to register cpuidle driver\n");
Daniel Lezcano5db9f432013-01-18 21:57:58 -0800131 return ret;
Deepthi Dharwar46bcfad2011-10-28 16:20:42 +0530132 }
Jaecheol Lee3d739982011-03-16 07:28:23 +0900133
Jaecheol Lee3d739982011-03-16 07:28:23 +0900134 return 0;
135}
Bartlomiej Zolnierkiewicz35baa332013-08-30 12:15:04 +0200136
137static struct platform_driver exynos_cpuidle_driver = {
138 .probe = exynos_cpuidle_probe,
139 .driver = {
140 .name = "exynos_cpuidle",
Bartlomiej Zolnierkiewicz35baa332013-08-30 12:15:04 +0200141 },
142};
Paul Gortmaker84599232015-12-13 18:57:12 -0500143builtin_platform_driver(exynos_cpuidle_driver);