2 * Copyright (C) 2010 Google, Inc.
6 * Based on arch/arm/plat-omap/cpu-omap.c, (C) 2005 Nokia Corporation
8 * This software is licensed under the terms of the GNU General Public
9 * License version 2, as published by the Free Software Foundation, and
10 * may be copied, distributed, and modified under those terms.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
19 #include <linux/clk.h>
20 #include <linux/cpufreq.h>
21 #include <linux/err.h>
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
25 #include <linux/types.h>
27 static struct cpufreq_frequency_table freq_table[] = {
28 { .frequency = 216000 },
29 { .frequency = 312000 },
30 { .frequency = 456000 },
31 { .frequency = 608000 },
32 { .frequency = 760000 },
33 { .frequency = 816000 },
34 { .frequency = 912000 },
35 { .frequency = 1000000 },
36 { .frequency = CPUFREQ_TABLE_END },
39 struct tegra20_cpufreq {
41 struct cpufreq_driver driver;
43 struct clk *pll_x_clk;
44 struct clk *pll_p_clk;
48 static unsigned int tegra_get_intermediate(struct cpufreq_policy *policy,
51 struct tegra20_cpufreq *cpufreq = cpufreq_get_driver_data();
52 unsigned int ifreq = clk_get_rate(cpufreq->pll_p_clk) / 1000;
55 * Don't switch to intermediate freq if:
56 * - we are already at it, i.e. policy->cur == ifreq
57 * - index corresponds to ifreq
59 if (freq_table[index].frequency == ifreq || policy->cur == ifreq)
65 static int tegra_target_intermediate(struct cpufreq_policy *policy,
68 struct tegra20_cpufreq *cpufreq = cpufreq_get_driver_data();
72 * Take an extra reference to the main pll so it doesn't turn
73 * off when we move the cpu off of it as enabling it again while we
74 * switch to it from tegra_target() would take additional time.
76 * When target-freq is equal to intermediate freq we don't need to
77 * switch to an intermediate freq and so this routine isn't called.
78 * Also, we wouldn't be using pll_x anymore and must not take extra
79 * reference to it, as it can be disabled now to save some power.
81 clk_prepare_enable(cpufreq->pll_x_clk);
83 ret = clk_set_parent(cpufreq->cpu_clk, cpufreq->pll_p_clk);
85 clk_disable_unprepare(cpufreq->pll_x_clk);
87 cpufreq->pll_x_prepared = true;
92 static int tegra_target(struct cpufreq_policy *policy, unsigned int index)
94 struct tegra20_cpufreq *cpufreq = cpufreq_get_driver_data();
95 unsigned long rate = freq_table[index].frequency;
96 unsigned int ifreq = clk_get_rate(cpufreq->pll_p_clk) / 1000;
100 * target freq == pll_p, don't need to take extra reference to pll_x_clk
101 * as it isn't used anymore.
104 return clk_set_parent(cpufreq->cpu_clk, cpufreq->pll_p_clk);
106 ret = clk_set_rate(cpufreq->pll_x_clk, rate * 1000);
107 /* Restore to earlier frequency on error, i.e. pll_x */
109 dev_err(cpufreq->dev, "Failed to change pll_x to %lu\n", rate);
111 ret = clk_set_parent(cpufreq->cpu_clk, cpufreq->pll_x_clk);
112 /* This shouldn't fail while changing or restoring */
116 * Drop count to pll_x clock only if we switched to intermediate freq
117 * earlier while transitioning to a target frequency.
119 if (cpufreq->pll_x_prepared) {
120 clk_disable_unprepare(cpufreq->pll_x_clk);
121 cpufreq->pll_x_prepared = false;
127 static int tegra_cpu_init(struct cpufreq_policy *policy)
129 struct tegra20_cpufreq *cpufreq = cpufreq_get_driver_data();
132 clk_prepare_enable(cpufreq->cpu_clk);
134 /* FIXME: what's the actual transition time? */
135 ret = cpufreq_generic_init(policy, freq_table, 300 * 1000);
137 clk_disable_unprepare(cpufreq->cpu_clk);
141 policy->clk = cpufreq->cpu_clk;
142 policy->suspend_freq = freq_table[0].frequency;
146 static int tegra_cpu_exit(struct cpufreq_policy *policy)
148 struct tegra20_cpufreq *cpufreq = cpufreq_get_driver_data();
150 clk_disable_unprepare(cpufreq->cpu_clk);
154 static int tegra20_cpufreq_probe(struct platform_device *pdev)
156 struct tegra20_cpufreq *cpufreq;
159 cpufreq = devm_kzalloc(&pdev->dev, sizeof(*cpufreq), GFP_KERNEL);
163 cpufreq->cpu_clk = clk_get_sys(NULL, "cclk");
164 if (IS_ERR(cpufreq->cpu_clk))
165 return PTR_ERR(cpufreq->cpu_clk);
167 cpufreq->pll_x_clk = clk_get_sys(NULL, "pll_x");
168 if (IS_ERR(cpufreq->pll_x_clk)) {
169 err = PTR_ERR(cpufreq->pll_x_clk);
173 cpufreq->pll_p_clk = clk_get_sys(NULL, "pll_p");
174 if (IS_ERR(cpufreq->pll_p_clk)) {
175 err = PTR_ERR(cpufreq->pll_p_clk);
179 cpufreq->dev = &pdev->dev;
180 cpufreq->driver.get = cpufreq_generic_get;
181 cpufreq->driver.attr = cpufreq_generic_attr;
182 cpufreq->driver.init = tegra_cpu_init;
183 cpufreq->driver.exit = tegra_cpu_exit;
184 cpufreq->driver.flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK;
185 cpufreq->driver.verify = cpufreq_generic_frequency_table_verify;
186 cpufreq->driver.suspend = cpufreq_generic_suspend;
187 cpufreq->driver.driver_data = cpufreq;
188 cpufreq->driver.target_index = tegra_target;
189 cpufreq->driver.get_intermediate = tegra_get_intermediate;
190 cpufreq->driver.target_intermediate = tegra_target_intermediate;
191 snprintf(cpufreq->driver.name, CPUFREQ_NAME_LEN, "tegra");
193 err = cpufreq_register_driver(&cpufreq->driver);
197 platform_set_drvdata(pdev, cpufreq);
202 clk_put(cpufreq->pll_p_clk);
204 clk_put(cpufreq->pll_x_clk);
206 clk_put(cpufreq->cpu_clk);
211 static int tegra20_cpufreq_remove(struct platform_device *pdev)
213 struct tegra20_cpufreq *cpufreq = platform_get_drvdata(pdev);
215 cpufreq_unregister_driver(&cpufreq->driver);
217 clk_put(cpufreq->pll_p_clk);
218 clk_put(cpufreq->pll_x_clk);
219 clk_put(cpufreq->cpu_clk);
224 static struct platform_driver tegra20_cpufreq_driver = {
225 .probe = tegra20_cpufreq_probe,
226 .remove = tegra20_cpufreq_remove,
228 .name = "tegra20-cpufreq",
231 module_platform_driver(tegra20_cpufreq_driver);
233 MODULE_ALIAS("platform:tegra20-cpufreq");
235 MODULE_DESCRIPTION("NVIDIA Tegra20 cpufreq driver");
236 MODULE_LICENSE("GPL");