blob: 741ff220f9bf69f6b7e8cee66bac8aa22e81f930 [file] [log] [blame]
Shawn Guo95ceafd2012-09-06 07:09:11 +00001/*
2 * Copyright (C) 2012 Freescale Semiconductor, Inc.
3 *
Viresh Kumar748c8762014-08-28 11:22:24 +05304 * Copyright (C) 2014 Linaro.
5 * Viresh Kumar <viresh.kumar@linaro.org>
6 *
Shawn Guo95ceafd2012-09-06 07:09:11 +00007 * The OPP code in function cpu0_set_target() is reused from
8 * drivers/cpufreq/omap-cpufreq.c
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
17#include <linux/clk.h>
Sudeep KarkadaNageshae1825b22013-09-10 18:59:46 +010018#include <linux/cpu.h>
Eduardo Valentin77cff592013-07-15 09:09:14 -040019#include <linux/cpu_cooling.h>
Shawn Guo95ceafd2012-09-06 07:09:11 +000020#include <linux/cpufreq.h>
Eduardo Valentin77cff592013-07-15 09:09:14 -040021#include <linux/cpumask.h>
Shawn Guo95ceafd2012-09-06 07:09:11 +000022#include <linux/err.h>
23#include <linux/module.h>
24#include <linux/of.h>
Nishanth Menone4db1c72013-09-19 16:03:52 -050025#include <linux/pm_opp.h>
Shawn Guo5553f9e2013-01-30 14:27:49 +000026#include <linux/platform_device.h>
Shawn Guo95ceafd2012-09-06 07:09:11 +000027#include <linux/regulator/consumer.h>
28#include <linux/slab.h>
Eduardo Valentin77cff592013-07-15 09:09:14 -040029#include <linux/thermal.h>
Shawn Guo95ceafd2012-09-06 07:09:11 +000030
31static unsigned int transition_latency;
32static unsigned int voltage_tolerance; /* in percentage */
33
34static struct device *cpu_dev;
35static struct clk *cpu_clk;
36static struct regulator *cpu_reg;
37static struct cpufreq_frequency_table *freq_table;
Eduardo Valentin77cff592013-07-15 09:09:14 -040038static struct thermal_cooling_device *cdev;
Shawn Guo95ceafd2012-09-06 07:09:11 +000039
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053040static int cpu0_set_target(struct cpufreq_policy *policy, unsigned int index)
Shawn Guo95ceafd2012-09-06 07:09:11 +000041{
Nishanth Menon47d43ba2013-09-19 16:03:51 -050042 struct dev_pm_opp *opp;
jhbird.choi@samsung.com5df60552013-03-18 08:09:42 +000043 unsigned long volt = 0, volt_old = 0, tol = 0;
Viresh Kumard4019f02013-08-14 19:38:24 +053044 unsigned int old_freq, new_freq;
Guennadi Liakhovetski0ca68432013-02-25 18:22:37 +010045 long freq_Hz, freq_exact;
Shawn Guo95ceafd2012-09-06 07:09:11 +000046 int ret;
47
Shawn Guo95ceafd2012-09-06 07:09:11 +000048 freq_Hz = clk_round_rate(cpu_clk, freq_table[index].frequency * 1000);
Paul Walmsley2209b0c2013-11-25 18:01:18 -080049 if (freq_Hz <= 0)
Shawn Guo95ceafd2012-09-06 07:09:11 +000050 freq_Hz = freq_table[index].frequency * 1000;
Shawn Guo95ceafd2012-09-06 07:09:11 +000051
Viresh Kumard4019f02013-08-14 19:38:24 +053052 freq_exact = freq_Hz;
53 new_freq = freq_Hz / 1000;
54 old_freq = clk_get_rate(cpu_clk) / 1000;
Shawn Guo95ceafd2012-09-06 07:09:11 +000055
Mark Brown4a511de2013-08-13 14:58:24 +020056 if (!IS_ERR(cpu_reg)) {
Nishanth Menon78e8eb82013-01-18 19:52:33 +000057 rcu_read_lock();
Nishanth Menon5d4879c2013-09-19 16:03:50 -050058 opp = dev_pm_opp_find_freq_ceil(cpu_dev, &freq_Hz);
Shawn Guo95ceafd2012-09-06 07:09:11 +000059 if (IS_ERR(opp)) {
Nishanth Menon78e8eb82013-01-18 19:52:33 +000060 rcu_read_unlock();
Viresh Kumarfbd48ca2014-08-28 11:22:27 +053061 dev_err(cpu_dev, "failed to find OPP for %ld\n",
62 freq_Hz);
Viresh Kumard4019f02013-08-14 19:38:24 +053063 return PTR_ERR(opp);
Shawn Guo95ceafd2012-09-06 07:09:11 +000064 }
Nishanth Menon5d4879c2013-09-19 16:03:50 -050065 volt = dev_pm_opp_get_voltage(opp);
Nishanth Menon78e8eb82013-01-18 19:52:33 +000066 rcu_read_unlock();
Shawn Guo95ceafd2012-09-06 07:09:11 +000067 tol = volt * voltage_tolerance / 100;
68 volt_old = regulator_get_voltage(cpu_reg);
69 }
70
Viresh Kumarfbd48ca2014-08-28 11:22:27 +053071 dev_dbg(cpu_dev, "%u MHz, %ld mV --> %u MHz, %ld mV\n",
72 old_freq / 1000, volt_old ? volt_old / 1000 : -1,
73 new_freq / 1000, volt ? volt / 1000 : -1);
Shawn Guo95ceafd2012-09-06 07:09:11 +000074
75 /* scaling up? scale voltage before frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +053076 if (!IS_ERR(cpu_reg) && new_freq > old_freq) {
Shawn Guo95ceafd2012-09-06 07:09:11 +000077 ret = regulator_set_voltage_tol(cpu_reg, volt, tol);
78 if (ret) {
Viresh Kumarfbd48ca2014-08-28 11:22:27 +053079 dev_err(cpu_dev, "failed to scale voltage up: %d\n",
80 ret);
Viresh Kumard4019f02013-08-14 19:38:24 +053081 return ret;
Shawn Guo95ceafd2012-09-06 07:09:11 +000082 }
83 }
84
Guennadi Liakhovetski0ca68432013-02-25 18:22:37 +010085 ret = clk_set_rate(cpu_clk, freq_exact);
Shawn Guo95ceafd2012-09-06 07:09:11 +000086 if (ret) {
Viresh Kumarfbd48ca2014-08-28 11:22:27 +053087 dev_err(cpu_dev, "failed to set clock rate: %d\n", ret);
Mark Brown4a511de2013-08-13 14:58:24 +020088 if (!IS_ERR(cpu_reg))
Shawn Guo95ceafd2012-09-06 07:09:11 +000089 regulator_set_voltage_tol(cpu_reg, volt_old, tol);
Viresh Kumard4019f02013-08-14 19:38:24 +053090 return ret;
Shawn Guo95ceafd2012-09-06 07:09:11 +000091 }
92
93 /* scaling down? scale voltage after frequency */
Viresh Kumard4019f02013-08-14 19:38:24 +053094 if (!IS_ERR(cpu_reg) && new_freq < old_freq) {
Shawn Guo95ceafd2012-09-06 07:09:11 +000095 ret = regulator_set_voltage_tol(cpu_reg, volt, tol);
96 if (ret) {
Viresh Kumarfbd48ca2014-08-28 11:22:27 +053097 dev_err(cpu_dev, "failed to scale voltage down: %d\n",
98 ret);
Viresh Kumard4019f02013-08-14 19:38:24 +053099 clk_set_rate(cpu_clk, old_freq * 1000);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000100 }
101 }
102
Viresh Kumarfd143b42013-04-01 12:57:44 +0000103 return ret;
Shawn Guo95ceafd2012-09-06 07:09:11 +0000104}
105
106static int cpu0_cpufreq_init(struct cpufreq_policy *policy)
107{
Viresh Kumar652ed952014-01-09 20:38:43 +0530108 policy->clk = cpu_clk;
Viresh Kumar78b3d102013-10-03 20:29:09 +0530109 return cpufreq_generic_init(policy, freq_table, transition_latency);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000110}
111
Shawn Guo95ceafd2012-09-06 07:09:11 +0000112static struct cpufreq_driver cpu0_cpufreq_driver = {
Viresh Kumar93575b72014-06-09 19:06:17 +0530113 .flags = CPUFREQ_STICKY | CPUFREQ_NEED_INITIAL_FREQ_CHECK,
Viresh Kumarf793d792013-10-03 20:28:00 +0530114 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530115 .target_index = cpu0_set_target,
Viresh Kumar652ed952014-01-09 20:38:43 +0530116 .get = cpufreq_generic_get,
Shawn Guo95ceafd2012-09-06 07:09:11 +0000117 .init = cpu0_cpufreq_init,
Shawn Guo95ceafd2012-09-06 07:09:11 +0000118 .name = "generic_cpu0",
Viresh Kumarf793d792013-10-03 20:28:00 +0530119 .attr = cpufreq_generic_attr,
Shawn Guo95ceafd2012-09-06 07:09:11 +0000120};
121
Shawn Guo5553f9e2013-01-30 14:27:49 +0000122static int cpu0_cpufreq_probe(struct platform_device *pdev)
Shawn Guo95ceafd2012-09-06 07:09:11 +0000123{
Sudeep KarkadaNageshaf837a9b2013-06-17 15:04:19 +0100124 struct device_node *np;
Shawn Guo95ceafd2012-09-06 07:09:11 +0000125 int ret;
126
Sudeep KarkadaNageshae1825b22013-09-10 18:59:46 +0100127 cpu_dev = get_cpu_device(0);
128 if (!cpu_dev) {
129 pr_err("failed to get cpu0 device\n");
130 return -ENODEV;
131 }
Paolo Pisatif5c3ef22013-03-28 09:24:29 +0000132
Sudeep KarkadaNageshaf837a9b2013-06-17 15:04:19 +0100133 np = of_node_get(cpu_dev->of_node);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000134 if (!np) {
Viresh Kumarfbd48ca2014-08-28 11:22:27 +0530135 dev_err(cpu_dev, "failed to find cpu0 node\n");
Sudeep KarkadaNageshaf837a9b2013-06-17 15:04:19 +0100136 return -ENOENT;
Shawn Guo95ceafd2012-09-06 07:09:11 +0000137 }
138
Lucas Stache3beb0a2014-05-16 12:20:42 +0200139 cpu_reg = regulator_get_optional(cpu_dev, "cpu0");
Nishanth Menonfc31d6f2013-05-01 13:38:12 +0000140 if (IS_ERR(cpu_reg)) {
141 /*
142 * If cpu0 regulator supply node is present, but regulator is
143 * not yet registered, we should try defering probe.
144 */
145 if (PTR_ERR(cpu_reg) == -EPROBE_DEFER) {
Markus Pargmann713a3fa2014-08-04 14:48:03 +0200146 dev_dbg(cpu_dev, "cpu0 regulator not ready, retry\n");
Nishanth Menonfc31d6f2013-05-01 13:38:12 +0000147 ret = -EPROBE_DEFER;
148 goto out_put_node;
149 }
Viresh Kumarfbd48ca2014-08-28 11:22:27 +0530150 dev_warn(cpu_dev, "failed to get cpu0 regulator: %ld\n",
151 PTR_ERR(cpu_reg));
Nishanth Menonfc31d6f2013-05-01 13:38:12 +0000152 }
153
Lucas Stache3beb0a2014-05-16 12:20:42 +0200154 cpu_clk = clk_get(cpu_dev, NULL);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000155 if (IS_ERR(cpu_clk)) {
156 ret = PTR_ERR(cpu_clk);
Viresh Kumar48a86242014-08-28 11:22:26 +0530157
158 /*
159 * If cpu's clk node is present, but clock is not yet
160 * registered, we should try defering probe.
161 */
162 if (ret == -EPROBE_DEFER)
163 dev_dbg(cpu_dev, "cpu0 clock not ready, retry\n");
164 else
165 dev_err(cpu_dev, "failed to get cpu0 clock: %d\n", ret);
166
Lucas Stache3beb0a2014-05-16 12:20:42 +0200167 goto out_put_reg;
Shawn Guo95ceafd2012-09-06 07:09:11 +0000168 }
169
Viresh Kumar1bf8cc32014-07-11 20:24:19 +0530170 /* OPPs might be populated at runtime, don't check for error here */
171 of_init_opp_table(cpu_dev);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000172
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500173 ret = dev_pm_opp_init_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000174 if (ret) {
Viresh Kumarfbd48ca2014-08-28 11:22:27 +0530175 dev_err(cpu_dev, "failed to init cpufreq table: %d\n", ret);
Lucas Stache3beb0a2014-05-16 12:20:42 +0200176 goto out_put_clk;
Shawn Guo95ceafd2012-09-06 07:09:11 +0000177 }
178
179 of_property_read_u32(np, "voltage-tolerance", &voltage_tolerance);
180
181 if (of_property_read_u32(np, "clock-latency", &transition_latency))
182 transition_latency = CPUFREQ_ETERNAL;
183
Philipp Zabel43c638e2013-09-26 11:19:37 +0200184 if (!IS_ERR(cpu_reg)) {
Nishanth Menon47d43ba2013-09-19 16:03:51 -0500185 struct dev_pm_opp *opp;
Shawn Guo95ceafd2012-09-06 07:09:11 +0000186 unsigned long min_uV, max_uV;
187 int i;
188
189 /*
190 * OPP is maintained in order of increasing frequency, and
191 * freq_table initialised from OPP is therefore sorted in the
192 * same order.
193 */
194 for (i = 0; freq_table[i].frequency != CPUFREQ_TABLE_END; i++)
195 ;
Nishanth Menon78e8eb82013-01-18 19:52:33 +0000196 rcu_read_lock();
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500197 opp = dev_pm_opp_find_freq_exact(cpu_dev,
Shawn Guo95ceafd2012-09-06 07:09:11 +0000198 freq_table[0].frequency * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500199 min_uV = dev_pm_opp_get_voltage(opp);
200 opp = dev_pm_opp_find_freq_exact(cpu_dev,
Shawn Guo95ceafd2012-09-06 07:09:11 +0000201 freq_table[i-1].frequency * 1000, true);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500202 max_uV = dev_pm_opp_get_voltage(opp);
Nishanth Menon78e8eb82013-01-18 19:52:33 +0000203 rcu_read_unlock();
Shawn Guo95ceafd2012-09-06 07:09:11 +0000204 ret = regulator_set_voltage_time(cpu_reg, min_uV, max_uV);
205 if (ret > 0)
206 transition_latency += ret * 1000;
207 }
208
209 ret = cpufreq_register_driver(&cpu0_cpufreq_driver);
210 if (ret) {
Viresh Kumarfbd48ca2014-08-28 11:22:27 +0530211 dev_err(cpu_dev, "failed to register driver: %d\n", ret);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000212 goto out_free_table;
213 }
214
Eduardo Valentin77cff592013-07-15 09:09:14 -0400215 /*
216 * For now, just loading the cooling device;
217 * thermal DT code takes care of matching them.
218 */
219 if (of_find_property(np, "#cooling-cells", NULL)) {
220 cdev = of_cpufreq_cooling_register(np, cpu_present_mask);
221 if (IS_ERR(cdev))
Viresh Kumarfbd48ca2014-08-28 11:22:27 +0530222 dev_err(cpu_dev,
223 "running cpufreq without cooling device: %ld\n",
224 PTR_ERR(cdev));
Eduardo Valentin77cff592013-07-15 09:09:14 -0400225 }
226
Shawn Guo95ceafd2012-09-06 07:09:11 +0000227 of_node_put(np);
228 return 0;
229
230out_free_table:
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500231 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Lucas Stache3beb0a2014-05-16 12:20:42 +0200232out_put_clk:
Viresh Kumared4b0532014-08-28 11:22:25 +0530233 clk_put(cpu_clk);
Lucas Stache3beb0a2014-05-16 12:20:42 +0200234out_put_reg:
235 if (!IS_ERR(cpu_reg))
236 regulator_put(cpu_reg);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000237out_put_node:
238 of_node_put(np);
239 return ret;
240}
Shawn Guo5553f9e2013-01-30 14:27:49 +0000241
242static int cpu0_cpufreq_remove(struct platform_device *pdev)
243{
Eduardo Valentin77cff592013-07-15 09:09:14 -0400244 cpufreq_cooling_unregister(cdev);
Shawn Guo5553f9e2013-01-30 14:27:49 +0000245 cpufreq_unregister_driver(&cpu0_cpufreq_driver);
Nishanth Menon5d4879c2013-09-19 16:03:50 -0500246 dev_pm_opp_free_cpufreq_table(cpu_dev, &freq_table);
Shawn Guo5553f9e2013-01-30 14:27:49 +0000247
248 return 0;
249}
250
251static struct platform_driver cpu0_cpufreq_platdrv = {
252 .driver = {
253 .name = "cpufreq-cpu0",
254 .owner = THIS_MODULE,
255 },
256 .probe = cpu0_cpufreq_probe,
257 .remove = cpu0_cpufreq_remove,
258};
259module_platform_driver(cpu0_cpufreq_platdrv);
Shawn Guo95ceafd2012-09-06 07:09:11 +0000260
Viresh Kumar748c8762014-08-28 11:22:24 +0530261MODULE_AUTHOR("Viresh Kumar <viresh.kumar@linaro.org>");
Shawn Guo95ceafd2012-09-06 07:09:11 +0000262MODULE_AUTHOR("Shawn Guo <shawn.guo@linaro.org>");
263MODULE_DESCRIPTION("Generic CPU0 cpufreq driver");
264MODULE_LICENSE("GPL");