blob: a5fbc0a8d897bc7727ba32c176d255a8093c02f0 [file] [log] [blame]
Colin Cross7056d422010-04-22 20:30:13 -07001/*
Colin Cross7056d422010-04-22 20:30:13 -07002 * Copyright (C) 2010 Google, Inc.
3 *
4 * Author:
5 * Colin Cross <ccross@google.com>
6 * Based on arch/arm/plat-omap/cpu-omap.c, (C) 2005 Nokia Corporation
7 *
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.
11 *
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.
16 *
17 */
18
19#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/types.h>
22#include <linux/sched.h>
23#include <linux/cpufreq.h>
24#include <linux/delay.h>
25#include <linux/init.h>
26#include <linux/err.h>
27#include <linux/clk.h>
28#include <linux/io.h>
29
Colin Cross7056d422010-04-22 20:30:13 -070030static struct cpufreq_frequency_table freq_table[] = {
Viresh Kumar5d690302013-05-14 19:08:50 +053031 { .frequency = 216000 },
32 { .frequency = 312000 },
33 { .frequency = 456000 },
34 { .frequency = 608000 },
35 { .frequency = 760000 },
36 { .frequency = 816000 },
37 { .frequency = 912000 },
38 { .frequency = 1000000 },
39 { .frequency = CPUFREQ_TABLE_END },
Colin Cross7056d422010-04-22 20:30:13 -070040};
41
42#define NUM_CPUS 2
43
44static struct clk *cpu_clk;
Stephen Warrence32dda2012-09-10 17:05:01 -060045static struct clk *pll_x_clk;
46static struct clk *pll_p_clk;
Colin Cross7a281282010-11-22 18:54:36 -080047static struct clk *emc_clk;
Viresh Kumar00917dd2014-06-02 22:49:29 +053048static bool pll_x_prepared;
Colin Cross7056d422010-04-22 20:30:13 -070049
Viresh Kumar00917dd2014-06-02 22:49:29 +053050static unsigned int tegra_get_intermediate(struct cpufreq_policy *policy,
51 unsigned int index)
52{
53 unsigned int ifreq = clk_get_rate(pll_p_clk) / 1000;
54
55 /*
56 * Don't switch to intermediate freq if:
57 * - we are already at it, i.e. policy->cur == ifreq
58 * - index corresponds to ifreq
59 */
60 if ((freq_table[index].frequency == ifreq) || (policy->cur == ifreq))
61 return 0;
62
63 return ifreq;
64}
65
66static int tegra_target_intermediate(struct cpufreq_policy *policy,
67 unsigned int index)
Stephen Warrence32dda2012-09-10 17:05:01 -060068{
69 int ret;
70
71 /*
72 * Take an extra reference to the main pll so it doesn't turn
Viresh Kumar00917dd2014-06-02 22:49:29 +053073 * 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. Though
75 * when target-freq is intermediate freq, we don't need to take this
76 * reference.
Stephen Warrence32dda2012-09-10 17:05:01 -060077 */
78 clk_prepare_enable(pll_x_clk);
79
80 ret = clk_set_parent(cpu_clk, pll_p_clk);
Viresh Kumar00917dd2014-06-02 22:49:29 +053081 if (ret)
82 clk_disable_unprepare(pll_x_clk);
83 else
84 pll_x_prepared = true;
Stephen Warrence32dda2012-09-10 17:05:01 -060085
Stephen Warrence32dda2012-09-10 17:05:01 -060086 return ret;
87}
88
Viresh Kumare7b453d2014-05-15 11:21:19 +053089static int tegra_target(struct cpufreq_policy *policy, unsigned int index)
Colin Cross7056d422010-04-22 20:30:13 -070090{
Viresh Kumare7b453d2014-05-15 11:21:19 +053091 unsigned long rate = freq_table[index].frequency;
Viresh Kumar00917dd2014-06-02 22:49:29 +053092 unsigned int ifreq = clk_get_rate(pll_p_clk) / 1000;
Colin Cross7056d422010-04-22 20:30:13 -070093 int ret = 0;
Colin Cross7056d422010-04-22 20:30:13 -070094
Colin Cross7a281282010-11-22 18:54:36 -080095 /*
96 * Vote on memory bus frequency based on cpu frequency
97 * This sets the minimum frequency, display or avp may request higher
98 */
99 if (rate >= 816000)
100 clk_set_rate(emc_clk, 600000000); /* cpu 816 MHz, emc max */
101 else if (rate >= 456000)
102 clk_set_rate(emc_clk, 300000000); /* cpu 456 MHz, emc 150Mhz */
103 else
104 clk_set_rate(emc_clk, 100000000); /* emc 50Mhz */
105
Viresh Kumar00917dd2014-06-02 22:49:29 +0530106 /*
107 * target freq == pll_p, don't need to take extra reference to pll_x_clk
108 * as it isn't used anymore.
109 */
110 if (rate == ifreq)
111 return clk_set_parent(cpu_clk, pll_p_clk);
112
113 ret = clk_set_rate(pll_x_clk, rate * 1000);
114 /* Restore to earlier frequency on error, i.e. pll_x */
Viresh Kumard4019f02013-08-14 19:38:24 +0530115 if (ret)
Viresh Kumar00917dd2014-06-02 22:49:29 +0530116 pr_err("Failed to change pll_x to %lu\n", rate);
117
118 ret = clk_set_parent(cpu_clk, pll_x_clk);
119 /* This shouldn't fail while changing or restoring */
120 WARN_ON(ret);
121
122 /*
123 * Drop count to pll_x clock only if we switched to intermediate freq
124 * earlier while transitioning to a target frequency.
125 */
126 if (pll_x_prepared) {
127 clk_disable_unprepare(pll_x_clk);
128 pll_x_prepared = false;
129 }
Colin Cross7056d422010-04-22 20:30:13 -0700130
Viresh Kumarf56cc992013-06-19 11:18:20 +0530131 return ret;
Colin Cross7056d422010-04-22 20:30:13 -0700132}
133
Colin Cross7056d422010-04-22 20:30:13 -0700134static int tegra_cpu_init(struct cpufreq_policy *policy)
135{
Viresh Kumar99d428c2013-10-03 20:42:11 +0530136 int ret;
137
Colin Cross7056d422010-04-22 20:30:13 -0700138 if (policy->cpu >= NUM_CPUS)
139 return -EINVAL;
140
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530141 clk_prepare_enable(emc_clk);
142 clk_prepare_enable(cpu_clk);
Colin Cross89a5fb82010-10-20 17:47:59 -0700143
Colin Cross7056d422010-04-22 20:30:13 -0700144 /* FIXME: what's the actual transition time? */
Viresh Kumar99d428c2013-10-03 20:42:11 +0530145 ret = cpufreq_generic_init(policy, freq_table, 300 * 1000);
146 if (ret) {
147 clk_disable_unprepare(cpu_clk);
148 clk_disable_unprepare(emc_clk);
149 return ret;
150 }
Colin Cross7056d422010-04-22 20:30:13 -0700151
Viresh Kumar652ed952014-01-09 20:38:43 +0530152 policy->clk = cpu_clk;
Viresh Kumard351cb32014-03-04 11:00:30 +0800153 policy->suspend_freq = freq_table[0].frequency;
Colin Cross7056d422010-04-22 20:30:13 -0700154 return 0;
155}
156
157static int tegra_cpu_exit(struct cpufreq_policy *policy)
158{
Viresh Kumar99d428c2013-10-03 20:42:11 +0530159 clk_disable_unprepare(cpu_clk);
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530160 clk_disable_unprepare(emc_clk);
Colin Cross7056d422010-04-22 20:30:13 -0700161 return 0;
162}
163
Colin Cross7056d422010-04-22 20:30:13 -0700164static struct cpufreq_driver tegra_cpufreq_driver = {
Viresh Kumar00917dd2014-06-02 22:49:29 +0530165 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK,
166 .verify = cpufreq_generic_frequency_table_verify,
167 .get_intermediate = tegra_get_intermediate,
168 .target_intermediate = tegra_target_intermediate,
169 .target_index = tegra_target,
170 .get = cpufreq_generic_get,
171 .init = tegra_cpu_init,
172 .exit = tegra_cpu_exit,
173 .name = "tegra",
174 .attr = cpufreq_generic_attr,
Viresh Kumard351cb32014-03-04 11:00:30 +0800175#ifdef CONFIG_PM
Viresh Kumar00917dd2014-06-02 22:49:29 +0530176 .suspend = cpufreq_generic_suspend,
Viresh Kumard351cb32014-03-04 11:00:30 +0800177#endif
Colin Cross7056d422010-04-22 20:30:13 -0700178};
179
180static int __init tegra_cpufreq_init(void)
181{
Joseph Lob192b912013-08-23 09:43:58 +0800182 cpu_clk = clk_get_sys(NULL, "cclk");
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000183 if (IS_ERR(cpu_clk))
184 return PTR_ERR(cpu_clk);
185
186 pll_x_clk = clk_get_sys(NULL, "pll_x");
187 if (IS_ERR(pll_x_clk))
188 return PTR_ERR(pll_x_clk);
189
Joseph Lob192b912013-08-23 09:43:58 +0800190 pll_p_clk = clk_get_sys(NULL, "pll_p");
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000191 if (IS_ERR(pll_p_clk))
192 return PTR_ERR(pll_p_clk);
193
194 emc_clk = clk_get_sys("cpu", "emc");
195 if (IS_ERR(emc_clk)) {
196 clk_put(cpu_clk);
197 return PTR_ERR(emc_clk);
198 }
199
Colin Cross7056d422010-04-22 20:30:13 -0700200 return cpufreq_register_driver(&tegra_cpufreq_driver);
201}
202
203static void __exit tegra_cpufreq_exit(void)
204{
205 cpufreq_unregister_driver(&tegra_cpufreq_driver);
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000206 clk_put(emc_clk);
207 clk_put(cpu_clk);
Colin Cross7056d422010-04-22 20:30:13 -0700208}
209
210
211MODULE_AUTHOR("Colin Cross <ccross@android.com>");
212MODULE_DESCRIPTION("cpufreq driver for Nvidia Tegra2");
213MODULE_LICENSE("GPL");
214module_init(tegra_cpufreq_init);
215module_exit(tegra_cpufreq_exit);