Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / arm / mach-s3c24xx / mach-osiris-dvs.c
blob058ce73137e80bb92926e430ae794129392cdbb7
1 // SPDX-License-Identifier: GPL-2.0
2 //
3 // Copyright (c) 2009 Simtec Electronics
4 // http://armlinux.simtec.co.uk/
5 // Ben Dooks <ben@simtec.co.uk>
6 //
7 // Simtec Osiris Dynamic Voltage Scaling support.
9 #include <linux/kernel.h>
10 #include <linux/module.h>
11 #include <linux/platform_device.h>
12 #include <linux/cpufreq.h>
13 #include <linux/gpio.h>
15 #include <linux/mfd/tps65010.h>
17 #include <plat/cpu-freq.h>
18 #include <mach/gpio-samsung.h>
20 #define OSIRIS_GPIO_DVS S3C2410_GPB(5)
22 static bool dvs_en;
24 static void osiris_dvs_tps_setdvs(bool on)
26 unsigned vregs1 = 0, vdcdc2 = 0;
28 if (!on) {
29 vdcdc2 = TPS_VCORE_DISCH | TPS_LP_COREOFF;
30 vregs1 = TPS_LDO1_OFF; /* turn off in low-power mode */
33 dvs_en = on;
34 vdcdc2 |= TPS_VCORE_1_3V | TPS_VCORE_LP_1_0V;
35 vregs1 |= TPS_LDO2_ENABLE | TPS_LDO1_ENABLE;
37 tps65010_config_vregs1(vregs1);
38 tps65010_config_vdcdc2(vdcdc2);
41 static bool is_dvs(struct s3c_freq *f)
43 /* at the moment, we assume ARMCLK = HCLK => DVS */
44 return f->armclk == f->hclk;
47 /* keep track of current state */
48 static bool cur_dvs = false;
50 static int osiris_dvs_notify(struct notifier_block *nb,
51 unsigned long val, void *data)
53 struct cpufreq_freqs *cf = data;
54 struct s3c_cpufreq_freqs *freqs = to_s3c_cpufreq(cf);
55 bool old_dvs = is_dvs(&freqs->old);
56 bool new_dvs = is_dvs(&freqs->new);
57 int ret = 0;
59 if (!dvs_en)
60 return 0;
62 printk(KERN_DEBUG "%s: old %ld,%ld new %ld,%ld\n", __func__,
63 freqs->old.armclk, freqs->old.hclk,
64 freqs->new.armclk, freqs->new.hclk);
66 switch (val) {
67 case CPUFREQ_PRECHANGE:
68 if (old_dvs & !new_dvs ||
69 cur_dvs & !new_dvs) {
70 pr_debug("%s: exiting dvs\n", __func__);
71 cur_dvs = false;
72 gpio_set_value(OSIRIS_GPIO_DVS, 1);
74 break;
75 case CPUFREQ_POSTCHANGE:
76 if (!old_dvs & new_dvs ||
77 !cur_dvs & new_dvs) {
78 pr_debug("entering dvs\n");
79 cur_dvs = true;
80 gpio_set_value(OSIRIS_GPIO_DVS, 0);
82 break;
85 return ret;
88 static struct notifier_block osiris_dvs_nb = {
89 .notifier_call = osiris_dvs_notify,
92 static int osiris_dvs_probe(struct platform_device *pdev)
94 int ret;
96 dev_info(&pdev->dev, "initialising\n");
98 ret = gpio_request(OSIRIS_GPIO_DVS, "osiris-dvs");
99 if (ret) {
100 dev_err(&pdev->dev, "cannot claim gpio\n");
101 goto err_nogpio;
104 /* start with dvs disabled */
105 gpio_direction_output(OSIRIS_GPIO_DVS, 1);
107 ret = cpufreq_register_notifier(&osiris_dvs_nb,
108 CPUFREQ_TRANSITION_NOTIFIER);
109 if (ret) {
110 dev_err(&pdev->dev, "failed to register with cpufreq\n");
111 goto err_nofreq;
114 osiris_dvs_tps_setdvs(true);
116 return 0;
118 err_nofreq:
119 gpio_free(OSIRIS_GPIO_DVS);
121 err_nogpio:
122 return ret;
125 static int osiris_dvs_remove(struct platform_device *pdev)
127 dev_info(&pdev->dev, "exiting\n");
129 /* disable any current dvs */
130 gpio_set_value(OSIRIS_GPIO_DVS, 1);
131 osiris_dvs_tps_setdvs(false);
133 cpufreq_unregister_notifier(&osiris_dvs_nb,
134 CPUFREQ_TRANSITION_NOTIFIER);
136 gpio_free(OSIRIS_GPIO_DVS);
138 return 0;
141 /* the CONFIG_PM block is so small, it isn't worth actually compiling it
142 * out if the configuration isn't set. */
144 static int osiris_dvs_suspend(struct device *dev)
146 gpio_set_value(OSIRIS_GPIO_DVS, 1);
147 osiris_dvs_tps_setdvs(false);
148 cur_dvs = false;
150 return 0;
153 static int osiris_dvs_resume(struct device *dev)
155 osiris_dvs_tps_setdvs(true);
156 return 0;
159 static const struct dev_pm_ops osiris_dvs_pm = {
160 .suspend = osiris_dvs_suspend,
161 .resume = osiris_dvs_resume,
164 static struct platform_driver osiris_dvs_driver = {
165 .probe = osiris_dvs_probe,
166 .remove = osiris_dvs_remove,
167 .driver = {
168 .name = "osiris-dvs",
169 .pm = &osiris_dvs_pm,
173 module_platform_driver(osiris_dvs_driver);
175 MODULE_DESCRIPTION("Simtec OSIRIS DVS support");
176 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
177 MODULE_LICENSE("GPL");
178 MODULE_ALIAS("platform:osiris-dvs");