blob: f42df7ec03c53a00838839861567de2e0d8060fa [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>
Colin Cross1eb2ecf2010-08-05 17:40:39 -070029#include <linux/suspend.h>
Colin Cross7056d422010-04-22 20:30:13 -070030
Colin Cross7056d422010-04-22 20:30:13 -070031static struct cpufreq_frequency_table freq_table[] = {
Viresh Kumar5d690302013-05-14 19:08:50 +053032 { .frequency = 216000 },
33 { .frequency = 312000 },
34 { .frequency = 456000 },
35 { .frequency = 608000 },
36 { .frequency = 760000 },
37 { .frequency = 816000 },
38 { .frequency = 912000 },
39 { .frequency = 1000000 },
40 { .frequency = CPUFREQ_TABLE_END },
Colin Cross7056d422010-04-22 20:30:13 -070041};
42
43#define NUM_CPUS 2
44
45static struct clk *cpu_clk;
Stephen Warrence32dda2012-09-10 17:05:01 -060046static struct clk *pll_x_clk;
47static struct clk *pll_p_clk;
Colin Cross7a281282010-11-22 18:54:36 -080048static struct clk *emc_clk;
Colin Cross7056d422010-04-22 20:30:13 -070049
50static unsigned long target_cpu_speed[NUM_CPUS];
Colin Cross1eb2ecf2010-08-05 17:40:39 -070051static DEFINE_MUTEX(tegra_cpu_lock);
52static bool is_suspended;
Colin Cross7056d422010-04-22 20:30:13 -070053
Olof Johansson6686c732011-10-09 21:57:04 -070054static unsigned int tegra_getspeed(unsigned int cpu)
Colin Cross7056d422010-04-22 20:30:13 -070055{
56 unsigned long rate;
57
58 if (cpu >= NUM_CPUS)
59 return 0;
60
61 rate = clk_get_rate(cpu_clk) / 1000;
62 return rate;
63}
64
Stephen Warrence32dda2012-09-10 17:05:01 -060065static int tegra_cpu_clk_set_rate(unsigned long rate)
66{
67 int ret;
68
69 /*
70 * Take an extra reference to the main pll so it doesn't turn
71 * off when we move the cpu off of it
72 */
73 clk_prepare_enable(pll_x_clk);
74
75 ret = clk_set_parent(cpu_clk, pll_p_clk);
76 if (ret) {
77 pr_err("Failed to switch cpu to clock pll_p\n");
78 goto out;
79 }
80
81 if (rate == clk_get_rate(pll_p_clk))
82 goto out;
83
84 ret = clk_set_rate(pll_x_clk, rate);
85 if (ret) {
86 pr_err("Failed to change pll_x to %lu\n", rate);
87 goto out;
88 }
89
90 ret = clk_set_parent(cpu_clk, pll_x_clk);
91 if (ret) {
92 pr_err("Failed to switch cpu to clock pll_x\n");
93 goto out;
94 }
95
96out:
97 clk_disable_unprepare(pll_x_clk);
98 return ret;
99}
100
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530101static int tegra_update_cpu_speed(struct cpufreq_policy *policy,
102 unsigned long rate)
Colin Cross7056d422010-04-22 20:30:13 -0700103{
Colin Cross7056d422010-04-22 20:30:13 -0700104 int ret = 0;
Colin Cross7056d422010-04-22 20:30:13 -0700105
Viresh Kumard4019f02013-08-14 19:38:24 +0530106 if (tegra_getspeed(0) == rate)
Colin Cross7056d422010-04-22 20:30:13 -0700107 return ret;
108
Colin Cross7a281282010-11-22 18:54:36 -0800109 /*
110 * Vote on memory bus frequency based on cpu frequency
111 * This sets the minimum frequency, display or avp may request higher
112 */
113 if (rate >= 816000)
114 clk_set_rate(emc_clk, 600000000); /* cpu 816 MHz, emc max */
115 else if (rate >= 456000)
116 clk_set_rate(emc_clk, 300000000); /* cpu 456 MHz, emc 150Mhz */
117 else
118 clk_set_rate(emc_clk, 100000000); /* emc 50Mhz */
119
Viresh Kumard4019f02013-08-14 19:38:24 +0530120 ret = tegra_cpu_clk_set_rate(rate * 1000);
121 if (ret)
122 pr_err("cpu-tegra: Failed to set cpu frequency to %lu kHz\n",
123 rate);
Colin Cross7056d422010-04-22 20:30:13 -0700124
Viresh Kumarf56cc992013-06-19 11:18:20 +0530125 return ret;
Colin Cross7056d422010-04-22 20:30:13 -0700126}
127
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700128static unsigned long tegra_cpu_highest_speed(void)
129{
130 unsigned long rate = 0;
131 int i;
132
133 for_each_online_cpu(i)
134 rate = max(rate, target_cpu_speed[i]);
135 return rate;
136}
137
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530138static int tegra_target(struct cpufreq_policy *policy, unsigned int index)
Colin Cross7056d422010-04-22 20:30:13 -0700139{
Colin Cross7056d422010-04-22 20:30:13 -0700140 unsigned int freq;
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700141 int ret = 0;
142
143 mutex_lock(&tegra_cpu_lock);
144
145 if (is_suspended) {
146 ret = -EBUSY;
147 goto out;
148 }
Colin Cross7056d422010-04-22 20:30:13 -0700149
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530150 freq = freq_table[index].frequency;
Colin Cross7056d422010-04-22 20:30:13 -0700151
152 target_cpu_speed[policy->cpu] = freq;
153
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530154 ret = tegra_update_cpu_speed(policy, tegra_cpu_highest_speed());
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700155
156out:
157 mutex_unlock(&tegra_cpu_lock);
158 return ret;
Colin Cross7056d422010-04-22 20:30:13 -0700159}
160
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700161static int tegra_pm_notify(struct notifier_block *nb, unsigned long event,
162 void *dummy)
163{
164 mutex_lock(&tegra_cpu_lock);
165 if (event == PM_SUSPEND_PREPARE) {
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530166 struct cpufreq_policy *policy = cpufreq_cpu_get(0);
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700167 is_suspended = true;
168 pr_info("Tegra cpufreq suspend: setting frequency to %d kHz\n",
169 freq_table[0].frequency);
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530170 tegra_update_cpu_speed(policy, freq_table[0].frequency);
171 cpufreq_cpu_put(policy);
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700172 } else if (event == PM_POST_SUSPEND) {
173 is_suspended = false;
174 }
175 mutex_unlock(&tegra_cpu_lock);
176
177 return NOTIFY_OK;
178}
179
180static struct notifier_block tegra_cpu_pm_notifier = {
181 .notifier_call = tegra_pm_notify,
182};
183
Colin Cross7056d422010-04-22 20:30:13 -0700184static int tegra_cpu_init(struct cpufreq_policy *policy)
185{
Viresh Kumar99d428c2013-10-03 20:42:11 +0530186 int ret;
187
Colin Cross7056d422010-04-22 20:30:13 -0700188 if (policy->cpu >= NUM_CPUS)
189 return -EINVAL;
190
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530191 clk_prepare_enable(emc_clk);
192 clk_prepare_enable(cpu_clk);
Colin Cross89a5fb82010-10-20 17:47:59 -0700193
Viresh Kumar21c895c2013-10-03 20:29:05 +0530194 target_cpu_speed[policy->cpu] = tegra_getspeed(policy->cpu);
Colin Cross7056d422010-04-22 20:30:13 -0700195
196 /* FIXME: what's the actual transition time? */
Viresh Kumar99d428c2013-10-03 20:42:11 +0530197 ret = cpufreq_generic_init(policy, freq_table, 300 * 1000);
198 if (ret) {
199 clk_disable_unprepare(cpu_clk);
200 clk_disable_unprepare(emc_clk);
201 return ret;
202 }
Colin Cross7056d422010-04-22 20:30:13 -0700203
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700204 if (policy->cpu == 0)
205 register_pm_notifier(&tegra_cpu_pm_notifier);
206
Colin Cross7056d422010-04-22 20:30:13 -0700207 return 0;
208}
209
210static int tegra_cpu_exit(struct cpufreq_policy *policy)
211{
Viresh Kumar2e6a5c802013-09-16 18:56:40 +0530212 cpufreq_frequency_table_put_attr(policy->cpu);
Viresh Kumar99d428c2013-10-03 20:42:11 +0530213 clk_disable_unprepare(cpu_clk);
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530214 clk_disable_unprepare(emc_clk);
Colin Cross7056d422010-04-22 20:30:13 -0700215 return 0;
216}
217
Colin Cross7056d422010-04-22 20:30:13 -0700218static struct cpufreq_driver tegra_cpufreq_driver = {
Viresh Kumar8e08cf02013-10-03 20:28:29 +0530219 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530220 .target_index = tegra_target,
Colin Cross7056d422010-04-22 20:30:13 -0700221 .get = tegra_getspeed,
222 .init = tegra_cpu_init,
223 .exit = tegra_cpu_exit,
224 .name = "tegra",
Viresh Kumar8e08cf02013-10-03 20:28:29 +0530225 .attr = cpufreq_generic_attr,
Colin Cross7056d422010-04-22 20:30:13 -0700226};
227
228static int __init tegra_cpufreq_init(void)
229{
Joseph Lob192b912013-08-23 09:43:58 +0800230 cpu_clk = clk_get_sys(NULL, "cclk");
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000231 if (IS_ERR(cpu_clk))
232 return PTR_ERR(cpu_clk);
233
234 pll_x_clk = clk_get_sys(NULL, "pll_x");
235 if (IS_ERR(pll_x_clk))
236 return PTR_ERR(pll_x_clk);
237
Joseph Lob192b912013-08-23 09:43:58 +0800238 pll_p_clk = clk_get_sys(NULL, "pll_p");
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000239 if (IS_ERR(pll_p_clk))
240 return PTR_ERR(pll_p_clk);
241
242 emc_clk = clk_get_sys("cpu", "emc");
243 if (IS_ERR(emc_clk)) {
244 clk_put(cpu_clk);
245 return PTR_ERR(emc_clk);
246 }
247
Colin Cross7056d422010-04-22 20:30:13 -0700248 return cpufreq_register_driver(&tegra_cpufreq_driver);
249}
250
251static void __exit tegra_cpufreq_exit(void)
252{
253 cpufreq_unregister_driver(&tegra_cpufreq_driver);
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000254 clk_put(emc_clk);
255 clk_put(cpu_clk);
Colin Cross7056d422010-04-22 20:30:13 -0700256}
257
258
259MODULE_AUTHOR("Colin Cross <ccross@android.com>");
260MODULE_DESCRIPTION("cpufreq driver for Nvidia Tegra2");
261MODULE_LICENSE("GPL");
262module_init(tegra_cpufreq_init);
263module_exit(tegra_cpufreq_exit);