1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright (c) 2009 Simtec Electronics
4 // http://armlinux.simtec.co.uk/
5 // Ben Dooks <ben@simtec.co.uk>
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)
24 static void osiris_dvs_tps_setdvs(bool on
)
26 unsigned vregs1
= 0, vdcdc2
= 0;
29 vdcdc2
= TPS_VCORE_DISCH
| TPS_LP_COREOFF
;
30 vregs1
= TPS_LDO1_OFF
; /* turn off in low-power mode */
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);
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
);
67 case CPUFREQ_PRECHANGE
:
68 if (old_dvs
& !new_dvs
||
70 pr_debug("%s: exiting dvs\n", __func__
);
72 gpio_set_value(OSIRIS_GPIO_DVS
, 1);
75 case CPUFREQ_POSTCHANGE
:
76 if (!old_dvs
& new_dvs
||
78 pr_debug("entering dvs\n");
80 gpio_set_value(OSIRIS_GPIO_DVS
, 0);
88 static struct notifier_block osiris_dvs_nb
= {
89 .notifier_call
= osiris_dvs_notify
,
92 static int osiris_dvs_probe(struct platform_device
*pdev
)
96 dev_info(&pdev
->dev
, "initialising\n");
98 ret
= gpio_request(OSIRIS_GPIO_DVS
, "osiris-dvs");
100 dev_err(&pdev
->dev
, "cannot claim gpio\n");
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
);
110 dev_err(&pdev
->dev
, "failed to register with cpufreq\n");
114 osiris_dvs_tps_setdvs(true);
119 gpio_free(OSIRIS_GPIO_DVS
);
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
);
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);
153 static int osiris_dvs_resume(struct device
*dev
)
155 osiris_dvs_tps_setdvs(true);
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
,
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");