Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Freescale Semiconductor, Inc. |
| 3 | * |
| 4 | * The OPP code in function cpu0_set_target() is reused from |
| 5 | * drivers/cpufreq/omap-cpufreq.c |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 13 | |
| 14 | #include <linux/clk.h> |
Sudeep KarkadaNagesha | e1825b2 | 2013-09-10 18:59:46 +0100 | [diff] [blame] | 15 | #include <linux/cpu.h> |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 16 | #include <linux/cpufreq.h> |
| 17 | #include <linux/err.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/of.h> |
| 20 | #include <linux/opp.h> |
Shawn Guo | 5553f9e | 2013-01-30 14:27:49 +0000 | [diff] [blame] | 21 | #include <linux/platform_device.h> |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 22 | #include <linux/regulator/consumer.h> |
| 23 | #include <linux/slab.h> |
| 24 | |
| 25 | static unsigned int transition_latency; |
| 26 | static unsigned int voltage_tolerance; /* in percentage */ |
| 27 | |
| 28 | static struct device *cpu_dev; |
| 29 | static struct clk *cpu_clk; |
| 30 | static struct regulator *cpu_reg; |
| 31 | static struct cpufreq_frequency_table *freq_table; |
| 32 | |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 33 | static unsigned int cpu0_get_speed(unsigned int cpu) |
| 34 | { |
| 35 | return clk_get_rate(cpu_clk) / 1000; |
| 36 | } |
| 37 | |
| 38 | static int cpu0_set_target(struct cpufreq_policy *policy, |
| 39 | unsigned int target_freq, unsigned int relation) |
| 40 | { |
| 41 | struct cpufreq_freqs freqs; |
| 42 | struct opp *opp; |
jhbird.choi@samsung.com | 5df6055 | 2013-03-18 08:09:42 +0000 | [diff] [blame] | 43 | unsigned long volt = 0, volt_old = 0, tol = 0; |
Guennadi Liakhovetski | 0ca6843 | 2013-02-25 18:22:37 +0100 | [diff] [blame] | 44 | long freq_Hz, freq_exact; |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 45 | unsigned int index; |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 46 | int ret; |
| 47 | |
| 48 | ret = cpufreq_frequency_table_target(policy, freq_table, target_freq, |
| 49 | relation, &index); |
| 50 | if (ret) { |
| 51 | pr_err("failed to match target freqency %d: %d\n", |
| 52 | target_freq, ret); |
| 53 | return ret; |
| 54 | } |
| 55 | |
| 56 | freq_Hz = clk_round_rate(cpu_clk, freq_table[index].frequency * 1000); |
| 57 | if (freq_Hz < 0) |
| 58 | freq_Hz = freq_table[index].frequency * 1000; |
Guennadi Liakhovetski | 0ca6843 | 2013-02-25 18:22:37 +0100 | [diff] [blame] | 59 | freq_exact = freq_Hz; |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 60 | freqs.new = freq_Hz / 1000; |
| 61 | freqs.old = clk_get_rate(cpu_clk) / 1000; |
| 62 | |
| 63 | if (freqs.old == freqs.new) |
| 64 | return 0; |
| 65 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 66 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 67 | |
Mark Brown | 4a511de | 2013-08-13 14:58:24 +0200 | [diff] [blame] | 68 | if (!IS_ERR(cpu_reg)) { |
Nishanth Menon | 78e8eb8 | 2013-01-18 19:52:33 +0000 | [diff] [blame] | 69 | rcu_read_lock(); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 70 | opp = opp_find_freq_ceil(cpu_dev, &freq_Hz); |
| 71 | if (IS_ERR(opp)) { |
Nishanth Menon | 78e8eb8 | 2013-01-18 19:52:33 +0000 | [diff] [blame] | 72 | rcu_read_unlock(); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 73 | pr_err("failed to find OPP for %ld\n", freq_Hz); |
Viresh Kumar | fd143b4 | 2013-04-01 12:57:44 +0000 | [diff] [blame] | 74 | freqs.new = freqs.old; |
| 75 | ret = PTR_ERR(opp); |
| 76 | goto post_notify; |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 77 | } |
| 78 | volt = opp_get_voltage(opp); |
Nishanth Menon | 78e8eb8 | 2013-01-18 19:52:33 +0000 | [diff] [blame] | 79 | rcu_read_unlock(); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 80 | tol = volt * voltage_tolerance / 100; |
| 81 | volt_old = regulator_get_voltage(cpu_reg); |
| 82 | } |
| 83 | |
| 84 | pr_debug("%u MHz, %ld mV --> %u MHz, %ld mV\n", |
| 85 | freqs.old / 1000, volt_old ? volt_old / 1000 : -1, |
| 86 | freqs.new / 1000, volt ? volt / 1000 : -1); |
| 87 | |
| 88 | /* scaling up? scale voltage before frequency */ |
Mark Brown | 4a511de | 2013-08-13 14:58:24 +0200 | [diff] [blame] | 89 | if (!IS_ERR(cpu_reg) && freqs.new > freqs.old) { |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 90 | ret = regulator_set_voltage_tol(cpu_reg, volt, tol); |
| 91 | if (ret) { |
| 92 | pr_err("failed to scale voltage up: %d\n", ret); |
| 93 | freqs.new = freqs.old; |
Viresh Kumar | fd143b4 | 2013-04-01 12:57:44 +0000 | [diff] [blame] | 94 | goto post_notify; |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | |
Guennadi Liakhovetski | 0ca6843 | 2013-02-25 18:22:37 +0100 | [diff] [blame] | 98 | ret = clk_set_rate(cpu_clk, freq_exact); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 99 | if (ret) { |
| 100 | pr_err("failed to set clock rate: %d\n", ret); |
Mark Brown | 4a511de | 2013-08-13 14:58:24 +0200 | [diff] [blame] | 101 | if (!IS_ERR(cpu_reg)) |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 102 | regulator_set_voltage_tol(cpu_reg, volt_old, tol); |
Viresh Kumar | fd143b4 | 2013-04-01 12:57:44 +0000 | [diff] [blame] | 103 | freqs.new = freqs.old; |
| 104 | goto post_notify; |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | /* scaling down? scale voltage after frequency */ |
Mark Brown | 4a511de | 2013-08-13 14:58:24 +0200 | [diff] [blame] | 108 | if (!IS_ERR(cpu_reg) && freqs.new < freqs.old) { |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 109 | ret = regulator_set_voltage_tol(cpu_reg, volt, tol); |
| 110 | if (ret) { |
| 111 | pr_err("failed to scale voltage down: %d\n", ret); |
| 112 | clk_set_rate(cpu_clk, freqs.old * 1000); |
| 113 | freqs.new = freqs.old; |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 114 | } |
| 115 | } |
| 116 | |
Viresh Kumar | fd143b4 | 2013-04-01 12:57:44 +0000 | [diff] [blame] | 117 | post_notify: |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 118 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 119 | |
Viresh Kumar | fd143b4 | 2013-04-01 12:57:44 +0000 | [diff] [blame] | 120 | return ret; |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 121 | } |
| 122 | |
| 123 | static int cpu0_cpufreq_init(struct cpufreq_policy *policy) |
| 124 | { |
| 125 | int ret; |
| 126 | |
Viresh Kumar | 7a90684 | 2013-09-16 18:56:10 +0530 | [diff] [blame] | 127 | ret = cpufreq_table_validate_and_show(policy, freq_table); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 128 | if (ret) { |
| 129 | pr_err("invalid frequency table: %d\n", ret); |
| 130 | return ret; |
| 131 | } |
| 132 | |
| 133 | policy->cpuinfo.transition_latency = transition_latency; |
| 134 | policy->cur = clk_get_rate(cpu_clk) / 1000; |
| 135 | |
| 136 | /* |
| 137 | * The driver only supports the SMP configuartion where all processors |
| 138 | * share the clock and voltage and clock. Use cpufreq affected_cpus |
| 139 | * interface to have all CPUs scaled together. |
| 140 | */ |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 141 | cpumask_setall(policy->cpus); |
| 142 | |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 143 | return 0; |
| 144 | } |
| 145 | |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 146 | static struct cpufreq_driver cpu0_cpufreq_driver = { |
| 147 | .flags = CPUFREQ_STICKY, |
Viresh Kumar | f793d79 | 2013-10-03 20:28:00 +0530 | [diff] [blame^] | 148 | .verify = cpufreq_generic_frequency_table_verify, |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 149 | .target = cpu0_set_target, |
| 150 | .get = cpu0_get_speed, |
| 151 | .init = cpu0_cpufreq_init, |
Viresh Kumar | f793d79 | 2013-10-03 20:28:00 +0530 | [diff] [blame^] | 152 | .exit = cpufreq_generic_exit, |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 153 | .name = "generic_cpu0", |
Viresh Kumar | f793d79 | 2013-10-03 20:28:00 +0530 | [diff] [blame^] | 154 | .attr = cpufreq_generic_attr, |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 155 | }; |
| 156 | |
Shawn Guo | 5553f9e | 2013-01-30 14:27:49 +0000 | [diff] [blame] | 157 | static int cpu0_cpufreq_probe(struct platform_device *pdev) |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 158 | { |
Sudeep KarkadaNagesha | f837a9b | 2013-06-17 15:04:19 +0100 | [diff] [blame] | 159 | struct device_node *np; |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 160 | int ret; |
| 161 | |
Sudeep KarkadaNagesha | e1825b2 | 2013-09-10 18:59:46 +0100 | [diff] [blame] | 162 | cpu_dev = get_cpu_device(0); |
| 163 | if (!cpu_dev) { |
| 164 | pr_err("failed to get cpu0 device\n"); |
| 165 | return -ENODEV; |
| 166 | } |
Paolo Pisati | f5c3ef2 | 2013-03-28 09:24:29 +0000 | [diff] [blame] | 167 | |
Sudeep KarkadaNagesha | f837a9b | 2013-06-17 15:04:19 +0100 | [diff] [blame] | 168 | np = of_node_get(cpu_dev->of_node); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 169 | if (!np) { |
| 170 | pr_err("failed to find cpu0 node\n"); |
Sudeep KarkadaNagesha | f837a9b | 2013-06-17 15:04:19 +0100 | [diff] [blame] | 171 | return -ENOENT; |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 172 | } |
| 173 | |
Mark Brown | 7d74897 | 2013-08-09 19:07:12 +0100 | [diff] [blame] | 174 | cpu_reg = devm_regulator_get_optional(cpu_dev, "cpu0"); |
Nishanth Menon | fc31d6f | 2013-05-01 13:38:12 +0000 | [diff] [blame] | 175 | if (IS_ERR(cpu_reg)) { |
| 176 | /* |
| 177 | * If cpu0 regulator supply node is present, but regulator is |
| 178 | * not yet registered, we should try defering probe. |
| 179 | */ |
| 180 | if (PTR_ERR(cpu_reg) == -EPROBE_DEFER) { |
| 181 | dev_err(cpu_dev, "cpu0 regulator not ready, retry\n"); |
| 182 | ret = -EPROBE_DEFER; |
| 183 | goto out_put_node; |
| 184 | } |
| 185 | pr_warn("failed to get cpu0 regulator: %ld\n", |
| 186 | PTR_ERR(cpu_reg)); |
Nishanth Menon | fc31d6f | 2013-05-01 13:38:12 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Shawn Guo | 5553f9e | 2013-01-30 14:27:49 +0000 | [diff] [blame] | 189 | cpu_clk = devm_clk_get(cpu_dev, NULL); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 190 | if (IS_ERR(cpu_clk)) { |
| 191 | ret = PTR_ERR(cpu_clk); |
| 192 | pr_err("failed to get cpu0 clock: %d\n", ret); |
| 193 | goto out_put_node; |
| 194 | } |
| 195 | |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 196 | ret = of_init_opp_table(cpu_dev); |
| 197 | if (ret) { |
| 198 | pr_err("failed to init OPP table: %d\n", ret); |
| 199 | goto out_put_node; |
| 200 | } |
| 201 | |
| 202 | ret = opp_init_cpufreq_table(cpu_dev, &freq_table); |
| 203 | if (ret) { |
| 204 | pr_err("failed to init cpufreq table: %d\n", ret); |
| 205 | goto out_put_node; |
| 206 | } |
| 207 | |
| 208 | of_property_read_u32(np, "voltage-tolerance", &voltage_tolerance); |
| 209 | |
| 210 | if (of_property_read_u32(np, "clock-latency", &transition_latency)) |
| 211 | transition_latency = CPUFREQ_ETERNAL; |
| 212 | |
| 213 | if (cpu_reg) { |
| 214 | struct opp *opp; |
| 215 | unsigned long min_uV, max_uV; |
| 216 | int i; |
| 217 | |
| 218 | /* |
| 219 | * OPP is maintained in order of increasing frequency, and |
| 220 | * freq_table initialised from OPP is therefore sorted in the |
| 221 | * same order. |
| 222 | */ |
| 223 | for (i = 0; freq_table[i].frequency != CPUFREQ_TABLE_END; i++) |
| 224 | ; |
Nishanth Menon | 78e8eb8 | 2013-01-18 19:52:33 +0000 | [diff] [blame] | 225 | rcu_read_lock(); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 226 | opp = opp_find_freq_exact(cpu_dev, |
| 227 | freq_table[0].frequency * 1000, true); |
| 228 | min_uV = opp_get_voltage(opp); |
| 229 | opp = opp_find_freq_exact(cpu_dev, |
| 230 | freq_table[i-1].frequency * 1000, true); |
| 231 | max_uV = opp_get_voltage(opp); |
Nishanth Menon | 78e8eb8 | 2013-01-18 19:52:33 +0000 | [diff] [blame] | 232 | rcu_read_unlock(); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 233 | ret = regulator_set_voltage_time(cpu_reg, min_uV, max_uV); |
| 234 | if (ret > 0) |
| 235 | transition_latency += ret * 1000; |
| 236 | } |
| 237 | |
| 238 | ret = cpufreq_register_driver(&cpu0_cpufreq_driver); |
| 239 | if (ret) { |
| 240 | pr_err("failed register driver: %d\n", ret); |
| 241 | goto out_free_table; |
| 242 | } |
| 243 | |
| 244 | of_node_put(np); |
| 245 | return 0; |
| 246 | |
| 247 | out_free_table: |
| 248 | opp_free_cpufreq_table(cpu_dev, &freq_table); |
| 249 | out_put_node: |
| 250 | of_node_put(np); |
| 251 | return ret; |
| 252 | } |
Shawn Guo | 5553f9e | 2013-01-30 14:27:49 +0000 | [diff] [blame] | 253 | |
| 254 | static int cpu0_cpufreq_remove(struct platform_device *pdev) |
| 255 | { |
| 256 | cpufreq_unregister_driver(&cpu0_cpufreq_driver); |
| 257 | opp_free_cpufreq_table(cpu_dev, &freq_table); |
| 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | static struct platform_driver cpu0_cpufreq_platdrv = { |
| 263 | .driver = { |
| 264 | .name = "cpufreq-cpu0", |
| 265 | .owner = THIS_MODULE, |
| 266 | }, |
| 267 | .probe = cpu0_cpufreq_probe, |
| 268 | .remove = cpu0_cpufreq_remove, |
| 269 | }; |
| 270 | module_platform_driver(cpu0_cpufreq_platdrv); |
Shawn Guo | 95ceafd | 2012-09-06 07:09:11 +0000 | [diff] [blame] | 271 | |
| 272 | MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>"); |
| 273 | MODULE_DESCRIPTION("Generic CPU0 cpufreq driver"); |
| 274 | MODULE_LICENSE("GPL"); |