blob: e652c1bd8d0f57433c348053f0cc2edb13deba00 [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
Colin Cross1eb2ecf2010-08-05 17:40:39 -070050static DEFINE_MUTEX(tegra_cpu_lock);
51static bool is_suspended;
Colin Cross7056d422010-04-22 20:30:13 -070052
Stephen Warrence32dda2012-09-10 17:05:01 -060053static int tegra_cpu_clk_set_rate(unsigned long rate)
54{
55 int ret;
56
57 /*
58 * Take an extra reference to the main pll so it doesn't turn
59 * off when we move the cpu off of it
60 */
61 clk_prepare_enable(pll_x_clk);
62
63 ret = clk_set_parent(cpu_clk, pll_p_clk);
64 if (ret) {
65 pr_err("Failed to switch cpu to clock pll_p\n");
66 goto out;
67 }
68
69 if (rate == clk_get_rate(pll_p_clk))
70 goto out;
71
72 ret = clk_set_rate(pll_x_clk, rate);
73 if (ret) {
74 pr_err("Failed to change pll_x to %lu\n", rate);
75 goto out;
76 }
77
78 ret = clk_set_parent(cpu_clk, pll_x_clk);
79 if (ret) {
80 pr_err("Failed to switch cpu to clock pll_x\n");
81 goto out;
82 }
83
84out:
85 clk_disable_unprepare(pll_x_clk);
86 return ret;
87}
88
Viresh Kumarb43a7ff2013-03-24 11:56:43 +053089static int tegra_update_cpu_speed(struct cpufreq_policy *policy,
90 unsigned long rate)
Colin Cross7056d422010-04-22 20:30:13 -070091{
Colin Cross7056d422010-04-22 20:30:13 -070092 int ret = 0;
Colin Cross7056d422010-04-22 20:30:13 -070093
Colin Cross7a281282010-11-22 18:54:36 -080094 /*
95 * Vote on memory bus frequency based on cpu frequency
96 * This sets the minimum frequency, display or avp may request higher
97 */
98 if (rate >= 816000)
99 clk_set_rate(emc_clk, 600000000); /* cpu 816 MHz, emc max */
100 else if (rate >= 456000)
101 clk_set_rate(emc_clk, 300000000); /* cpu 456 MHz, emc 150Mhz */
102 else
103 clk_set_rate(emc_clk, 100000000); /* emc 50Mhz */
104
Viresh Kumard4019f02013-08-14 19:38:24 +0530105 ret = tegra_cpu_clk_set_rate(rate * 1000);
106 if (ret)
107 pr_err("cpu-tegra: Failed to set cpu frequency to %lu kHz\n",
108 rate);
Colin Cross7056d422010-04-22 20:30:13 -0700109
Viresh Kumarf56cc992013-06-19 11:18:20 +0530110 return ret;
Colin Cross7056d422010-04-22 20:30:13 -0700111}
112
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530113static int tegra_target(struct cpufreq_policy *policy, unsigned int index)
Colin Cross7056d422010-04-22 20:30:13 -0700114{
Viresh Kumar652ed952014-01-09 20:38:43 +0530115 int ret = -EBUSY;
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700116
117 mutex_lock(&tegra_cpu_lock);
118
Viresh Kumar652ed952014-01-09 20:38:43 +0530119 if (!is_suspended)
120 ret = tegra_update_cpu_speed(policy,
121 freq_table[index].frequency);
Colin Cross7056d422010-04-22 20:30:13 -0700122
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700123 mutex_unlock(&tegra_cpu_lock);
124 return ret;
Colin Cross7056d422010-04-22 20:30:13 -0700125}
126
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700127static int tegra_pm_notify(struct notifier_block *nb, unsigned long event,
128 void *dummy)
129{
130 mutex_lock(&tegra_cpu_lock);
131 if (event == PM_SUSPEND_PREPARE) {
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530132 struct cpufreq_policy *policy = cpufreq_cpu_get(0);
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700133 is_suspended = true;
134 pr_info("Tegra cpufreq suspend: setting frequency to %d kHz\n",
135 freq_table[0].frequency);
Viresh Kumar652ed952014-01-09 20:38:43 +0530136 if (clk_get_rate(cpu_clk) / 1000 != freq_table[0].frequency)
137 tegra_update_cpu_speed(policy, freq_table[0].frequency);
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530138 cpufreq_cpu_put(policy);
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700139 } else if (event == PM_POST_SUSPEND) {
140 is_suspended = false;
141 }
142 mutex_unlock(&tegra_cpu_lock);
143
144 return NOTIFY_OK;
145}
146
147static struct notifier_block tegra_cpu_pm_notifier = {
148 .notifier_call = tegra_pm_notify,
149};
150
Colin Cross7056d422010-04-22 20:30:13 -0700151static int tegra_cpu_init(struct cpufreq_policy *policy)
152{
Viresh Kumar99d428c2013-10-03 20:42:11 +0530153 int ret;
154
Colin Cross7056d422010-04-22 20:30:13 -0700155 if (policy->cpu >= NUM_CPUS)
156 return -EINVAL;
157
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530158 clk_prepare_enable(emc_clk);
159 clk_prepare_enable(cpu_clk);
Colin Cross89a5fb82010-10-20 17:47:59 -0700160
Colin Cross7056d422010-04-22 20:30:13 -0700161 /* FIXME: what's the actual transition time? */
Viresh Kumar99d428c2013-10-03 20:42:11 +0530162 ret = cpufreq_generic_init(policy, freq_table, 300 * 1000);
163 if (ret) {
164 clk_disable_unprepare(cpu_clk);
165 clk_disable_unprepare(emc_clk);
166 return ret;
167 }
Colin Cross7056d422010-04-22 20:30:13 -0700168
Colin Cross1eb2ecf2010-08-05 17:40:39 -0700169 if (policy->cpu == 0)
170 register_pm_notifier(&tegra_cpu_pm_notifier);
171
Viresh Kumar652ed952014-01-09 20:38:43 +0530172 policy->clk = cpu_clk;
Colin Cross7056d422010-04-22 20:30:13 -0700173 return 0;
174}
175
176static int tegra_cpu_exit(struct cpufreq_policy *policy)
177{
Viresh Kumar2e6a5c802013-09-16 18:56:40 +0530178 cpufreq_frequency_table_put_attr(policy->cpu);
Viresh Kumar99d428c2013-10-03 20:42:11 +0530179 clk_disable_unprepare(cpu_clk);
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530180 clk_disable_unprepare(emc_clk);
Colin Cross7056d422010-04-22 20:30:13 -0700181 return 0;
182}
183
Colin Cross7056d422010-04-22 20:30:13 -0700184static struct cpufreq_driver tegra_cpufreq_driver = {
Viresh Kumarae6b4272013-12-03 11:20:45 +0530185 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK,
Viresh Kumar8e08cf02013-10-03 20:28:29 +0530186 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530187 .target_index = tegra_target,
Viresh Kumar652ed952014-01-09 20:38:43 +0530188 .get = cpufreq_generic_get,
Colin Cross7056d422010-04-22 20:30:13 -0700189 .init = tegra_cpu_init,
190 .exit = tegra_cpu_exit,
191 .name = "tegra",
Viresh Kumar8e08cf02013-10-03 20:28:29 +0530192 .attr = cpufreq_generic_attr,
Colin Cross7056d422010-04-22 20:30:13 -0700193};
194
195static int __init tegra_cpufreq_init(void)
196{
Joseph Lob192b912013-08-23 09:43:58 +0800197 cpu_clk = clk_get_sys(NULL, "cclk");
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000198 if (IS_ERR(cpu_clk))
199 return PTR_ERR(cpu_clk);
200
201 pll_x_clk = clk_get_sys(NULL, "pll_x");
202 if (IS_ERR(pll_x_clk))
203 return PTR_ERR(pll_x_clk);
204
Joseph Lob192b912013-08-23 09:43:58 +0800205 pll_p_clk = clk_get_sys(NULL, "pll_p");
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000206 if (IS_ERR(pll_p_clk))
207 return PTR_ERR(pll_p_clk);
208
209 emc_clk = clk_get_sys("cpu", "emc");
210 if (IS_ERR(emc_clk)) {
211 clk_put(cpu_clk);
212 return PTR_ERR(emc_clk);
213 }
214
Colin Cross7056d422010-04-22 20:30:13 -0700215 return cpufreq_register_driver(&tegra_cpufreq_driver);
216}
217
218static void __exit tegra_cpufreq_exit(void)
219{
220 cpufreq_unregister_driver(&tegra_cpufreq_driver);
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000221 clk_put(emc_clk);
222 clk_put(cpu_clk);
Colin Cross7056d422010-04-22 20:30:13 -0700223}
224
225
226MODULE_AUTHOR("Colin Cross <ccross@android.com>");
227MODULE_DESCRIPTION("cpufreq driver for Nvidia Tegra2");
228MODULE_LICENSE("GPL");
229module_init(tegra_cpufreq_init);
230module_exit(tegra_cpufreq_exit);