]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/cpufreq/s3c64xx-cpufreq.c
media: dvb_ca_en50221: prevent using slot_info for Spectre attacs
[mirror_ubuntu-bionic-kernel.git] / drivers / cpufreq / s3c64xx-cpufreq.c
CommitLineData
be2de99b 1/*
b3748ddd
MB
2 * Copyright 2009 Wolfson Microelectronics plc
3 *
4 * S3C64xx CPUfreq Support
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
a6a43412
MB
11#define pr_fmt(fmt) "cpufreq: " fmt
12
b3748ddd
MB
13#include <linux/kernel.h>
14#include <linux/types.h>
15#include <linux/init.h>
16#include <linux/cpufreq.h>
17#include <linux/clk.h>
18#include <linux/err.h>
19#include <linux/regulator/consumer.h>
a6ee8779 20#include <linux/module.h>
b3748ddd 21
b3748ddd 22static struct regulator *vddarm;
43f1069e 23static unsigned long regulator_latency;
b3748ddd
MB
24
25#ifdef CONFIG_CPU_S3C6410
26struct s3c64xx_dvfs {
27 unsigned int vddarm_min;
28 unsigned int vddarm_max;
29};
30
31static struct s3c64xx_dvfs s3c64xx_dvfs_table[] = {
e9c08f0d
MB
32 [0] = { 1000000, 1150000 },
33 [1] = { 1050000, 1150000 },
34 [2] = { 1100000, 1150000 },
35 [3] = { 1200000, 1350000 },
c6e2d685 36 [4] = { 1300000, 1350000 },
b3748ddd
MB
37};
38
39static struct cpufreq_frequency_table s3c64xx_freq_table[] = {
7f4b0461
VK
40 { 0, 0, 66000 },
41 { 0, 0, 100000 },
42 { 0, 0, 133000 },
43 { 0, 1, 200000 },
44 { 0, 1, 222000 },
45 { 0, 1, 266000 },
46 { 0, 2, 333000 },
47 { 0, 2, 400000 },
48 { 0, 2, 532000 },
49 { 0, 2, 533000 },
50 { 0, 3, 667000 },
51 { 0, 4, 800000 },
52 { 0, 0, CPUFREQ_TABLE_END },
b3748ddd
MB
53};
54#endif
55
b3748ddd 56static int s3c64xx_cpufreq_set_target(struct cpufreq_policy *policy,
9c0ebcf7 57 unsigned int index)
b3748ddd 58{
b3748ddd 59 struct s3c64xx_dvfs *dvfs;
d4019f0a
VK
60 unsigned int old_freq, new_freq;
61 int ret;
b3748ddd 62
652ed95d 63 old_freq = clk_get_rate(policy->clk) / 1000;
d4019f0a 64 new_freq = s3c64xx_freq_table[index].frequency;
9c0ebcf7 65 dvfs = &s3c64xx_dvfs_table[s3c64xx_freq_table[index].driver_data];
b3748ddd 66
b3748ddd 67#ifdef CONFIG_REGULATOR
d4019f0a 68 if (vddarm && new_freq > old_freq) {
b3748ddd
MB
69 ret = regulator_set_voltage(vddarm,
70 dvfs->vddarm_min,
71 dvfs->vddarm_max);
72 if (ret != 0) {
a6a43412 73 pr_err("Failed to set VDDARM for %dkHz: %d\n",
d4019f0a
VK
74 new_freq, ret);
75 return ret;
b3748ddd
MB
76 }
77 }
78#endif
79
652ed95d 80 ret = clk_set_rate(policy->clk, new_freq * 1000);
b3748ddd 81 if (ret < 0) {
a6a43412 82 pr_err("Failed to set rate %dkHz: %d\n",
d4019f0a
VK
83 new_freq, ret);
84 return ret;
b3748ddd
MB
85 }
86
87#ifdef CONFIG_REGULATOR
d4019f0a 88 if (vddarm && new_freq < old_freq) {
b3748ddd
MB
89 ret = regulator_set_voltage(vddarm,
90 dvfs->vddarm_min,
91 dvfs->vddarm_max);
92 if (ret != 0) {
a6a43412 93 pr_err("Failed to set VDDARM for %dkHz: %d\n",
d4019f0a 94 new_freq, ret);
652ed95d 95 if (clk_set_rate(policy->clk, old_freq * 1000) < 0)
d4019f0a
VK
96 pr_err("Failed to restore original clock rate\n");
97
98 return ret;
b3748ddd
MB
99 }
100 }
101#endif
102
a6a43412 103 pr_debug("Set actual frequency %lukHz\n",
652ed95d 104 clk_get_rate(policy->clk) / 1000);
b3748ddd
MB
105
106 return 0;
b3748ddd
MB
107}
108
109#ifdef CONFIG_REGULATOR
adec57c6 110static void s3c64xx_cpufreq_config_regulator(void)
b3748ddd
MB
111{
112 int count, v, i, found;
113 struct cpufreq_frequency_table *freq;
114 struct s3c64xx_dvfs *dvfs;
115
116 count = regulator_count_voltages(vddarm);
117 if (count < 0) {
a6a43412 118 pr_err("Unable to check supported voltages\n");
b3748ddd
MB
119 }
120
041526f9
SK
121 if (!count)
122 goto out;
b3748ddd 123
041526f9 124 cpufreq_for_each_valid_entry(freq, s3c64xx_freq_table) {
0e824432 125 dvfs = &s3c64xx_dvfs_table[freq->driver_data];
b3748ddd
MB
126 found = 0;
127
128 for (i = 0; i < count; i++) {
129 v = regulator_list_voltage(vddarm, i);
130 if (v >= dvfs->vddarm_min && v <= dvfs->vddarm_max)
131 found = 1;
132 }
133
134 if (!found) {
a6a43412 135 pr_debug("%dkHz unsupported by regulator\n",
b3748ddd
MB
136 freq->frequency);
137 freq->frequency = CPUFREQ_ENTRY_INVALID;
138 }
b3748ddd 139 }
43f1069e 140
041526f9 141out:
43f1069e
MB
142 /* Guess based on having to do an I2C/SPI write; in future we
143 * will be able to query the regulator performance here. */
144 regulator_latency = 1 * 1000 * 1000;
b3748ddd
MB
145}
146#endif
147
6d0de157 148static int s3c64xx_cpufreq_driver_init(struct cpufreq_policy *policy)
b3748ddd
MB
149{
150 int ret;
151 struct cpufreq_frequency_table *freq;
152
153 if (policy->cpu != 0)
154 return -EINVAL;
155
156 if (s3c64xx_freq_table == NULL) {
a6a43412 157 pr_err("No frequency information for this CPU\n");
b3748ddd
MB
158 return -ENODEV;
159 }
160
652ed95d
VK
161 policy->clk = clk_get(NULL, "armclk");
162 if (IS_ERR(policy->clk)) {
a6a43412 163 pr_err("Unable to obtain ARMCLK: %ld\n",
652ed95d
VK
164 PTR_ERR(policy->clk));
165 return PTR_ERR(policy->clk);
b3748ddd
MB
166 }
167
168#ifdef CONFIG_REGULATOR
169 vddarm = regulator_get(NULL, "vddarm");
170 if (IS_ERR(vddarm)) {
171 ret = PTR_ERR(vddarm);
a6a43412
MB
172 pr_err("Failed to obtain VDDARM: %d\n", ret);
173 pr_err("Only frequency scaling available\n");
b3748ddd
MB
174 vddarm = NULL;
175 } else {
43f1069e 176 s3c64xx_cpufreq_config_regulator();
b3748ddd
MB
177 }
178#endif
179
041526f9 180 cpufreq_for_each_entry(freq, s3c64xx_freq_table) {
b3748ddd
MB
181 unsigned long r;
182
183 /* Check for frequencies we can generate */
652ed95d 184 r = clk_round_rate(policy->clk, freq->frequency * 1000);
b3748ddd 185 r /= 1000;
383af9c2 186 if (r != freq->frequency) {
a6a43412 187 pr_debug("%dkHz unsupported by clock\n",
383af9c2 188 freq->frequency);
b3748ddd 189 freq->frequency = CPUFREQ_ENTRY_INVALID;
383af9c2 190 }
b3748ddd
MB
191
192 /* If we have no regulator then assume startup
193 * frequency is the maximum we can support. */
652ed95d 194 if (!vddarm && freq->frequency > clk_get_rate(policy->clk) / 1000)
b3748ddd 195 freq->frequency = CPUFREQ_ENTRY_INVALID;
b3748ddd
MB
196 }
197
43f1069e
MB
198 /* Datasheet says PLL stabalisation time (if we were to use
199 * the PLLs, which we don't currently) is ~300us worst case,
200 * but add some fudge.
201 */
a307a1e6
VK
202 ret = cpufreq_generic_init(policy, s3c64xx_freq_table,
203 (500 * 1000) + regulator_latency);
b3748ddd 204 if (ret != 0) {
a6a43412 205 pr_err("Failed to configure frequency table: %d\n",
b3748ddd
MB
206 ret);
207 regulator_put(vddarm);
652ed95d 208 clk_put(policy->clk);
b3748ddd
MB
209 }
210
211 return ret;
212}
213
214static struct cpufreq_driver s3c64xx_cpufreq_driver = {
ae6b4271 215 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK,
e96a4105 216 .verify = cpufreq_generic_frequency_table_verify,
9c0ebcf7 217 .target_index = s3c64xx_cpufreq_set_target,
652ed95d 218 .get = cpufreq_generic_get,
b3748ddd
MB
219 .init = s3c64xx_cpufreq_driver_init,
220 .name = "s3c",
221};
222
223static int __init s3c64xx_cpufreq_init(void)
224{
225 return cpufreq_register_driver(&s3c64xx_cpufreq_driver);
226}
227module_init(s3c64xx_cpufreq_init);