blob: bcfed7761029924436045be3c948feabd8bf58d6 [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;
Colin Cross7056d422010-04-22 20:30:13 -070048
Stephen Warrence32dda2012-09-10 17:05:01 -060049static int tegra_cpu_clk_set_rate(unsigned long rate)
50{
51 int ret;
52
53 /*
54 * Take an extra reference to the main pll so it doesn't turn
55 * off when we move the cpu off of it
56 */
57 clk_prepare_enable(pll_x_clk);
58
59 ret = clk_set_parent(cpu_clk, pll_p_clk);
60 if (ret) {
61 pr_err("Failed to switch cpu to clock pll_p\n");
62 goto out;
63 }
64
65 if (rate == clk_get_rate(pll_p_clk))
66 goto out;
67
68 ret = clk_set_rate(pll_x_clk, rate);
69 if (ret) {
70 pr_err("Failed to change pll_x to %lu\n", rate);
71 goto out;
72 }
73
74 ret = clk_set_parent(cpu_clk, pll_x_clk);
75 if (ret) {
76 pr_err("Failed to switch cpu to clock pll_x\n");
77 goto out;
78 }
79
80out:
81 clk_disable_unprepare(pll_x_clk);
82 return ret;
83}
84
Viresh Kumarb43a7ff2013-03-24 11:56:43 +053085static int tegra_update_cpu_speed(struct cpufreq_policy *policy,
86 unsigned long rate)
Colin Cross7056d422010-04-22 20:30:13 -070087{
Colin Cross7056d422010-04-22 20:30:13 -070088 int ret = 0;
Colin Cross7056d422010-04-22 20:30:13 -070089
Colin Cross7a281282010-11-22 18:54:36 -080090 /*
91 * Vote on memory bus frequency based on cpu frequency
92 * This sets the minimum frequency, display or avp may request higher
93 */
94 if (rate >= 816000)
95 clk_set_rate(emc_clk, 600000000); /* cpu 816 MHz, emc max */
96 else if (rate >= 456000)
97 clk_set_rate(emc_clk, 300000000); /* cpu 456 MHz, emc 150Mhz */
98 else
99 clk_set_rate(emc_clk, 100000000); /* emc 50Mhz */
100
Viresh Kumard4019f02013-08-14 19:38:24 +0530101 ret = tegra_cpu_clk_set_rate(rate * 1000);
102 if (ret)
103 pr_err("cpu-tegra: Failed to set cpu frequency to %lu kHz\n",
104 rate);
Colin Cross7056d422010-04-22 20:30:13 -0700105
Viresh Kumarf56cc992013-06-19 11:18:20 +0530106 return ret;
Colin Cross7056d422010-04-22 20:30:13 -0700107}
108
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530109static int tegra_target(struct cpufreq_policy *policy, unsigned int index)
Colin Cross7056d422010-04-22 20:30:13 -0700110{
Viresh Kumard351cb32014-03-04 11:00:30 +0800111 return tegra_update_cpu_speed(policy, freq_table[index].frequency);
Colin Cross7056d422010-04-22 20:30:13 -0700112}
113
114static int tegra_cpu_init(struct cpufreq_policy *policy)
115{
Viresh Kumar99d428c2013-10-03 20:42:11 +0530116 int ret;
117
Colin Cross7056d422010-04-22 20:30:13 -0700118 if (policy->cpu >= NUM_CPUS)
119 return -EINVAL;
120
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530121 clk_prepare_enable(emc_clk);
122 clk_prepare_enable(cpu_clk);
Colin Cross89a5fb82010-10-20 17:47:59 -0700123
Colin Cross7056d422010-04-22 20:30:13 -0700124 /* FIXME: what's the actual transition time? */
Viresh Kumar99d428c2013-10-03 20:42:11 +0530125 ret = cpufreq_generic_init(policy, freq_table, 300 * 1000);
126 if (ret) {
127 clk_disable_unprepare(cpu_clk);
128 clk_disable_unprepare(emc_clk);
129 return ret;
130 }
Colin Cross7056d422010-04-22 20:30:13 -0700131
Viresh Kumar652ed952014-01-09 20:38:43 +0530132 policy->clk = cpu_clk;
Viresh Kumard351cb32014-03-04 11:00:30 +0800133 policy->suspend_freq = freq_table[0].frequency;
Colin Cross7056d422010-04-22 20:30:13 -0700134 return 0;
135}
136
137static int tegra_cpu_exit(struct cpufreq_policy *policy)
138{
Viresh Kumar2e6a5c802013-09-16 18:56:40 +0530139 cpufreq_frequency_table_put_attr(policy->cpu);
Viresh Kumar99d428c2013-10-03 20:42:11 +0530140 clk_disable_unprepare(cpu_clk);
Prashant Gaikwad6a5278d2012-06-05 09:59:35 +0530141 clk_disable_unprepare(emc_clk);
Colin Cross7056d422010-04-22 20:30:13 -0700142 return 0;
143}
144
Colin Cross7056d422010-04-22 20:30:13 -0700145static struct cpufreq_driver tegra_cpufreq_driver = {
Viresh Kumarae6b4272013-12-03 11:20:45 +0530146 .flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK,
Viresh Kumar8e08cf02013-10-03 20:28:29 +0530147 .verify = cpufreq_generic_frequency_table_verify,
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530148 .target_index = tegra_target,
Viresh Kumar652ed952014-01-09 20:38:43 +0530149 .get = cpufreq_generic_get,
Colin Cross7056d422010-04-22 20:30:13 -0700150 .init = tegra_cpu_init,
151 .exit = tegra_cpu_exit,
152 .name = "tegra",
Viresh Kumar8e08cf02013-10-03 20:28:29 +0530153 .attr = cpufreq_generic_attr,
Viresh Kumard351cb32014-03-04 11:00:30 +0800154#ifdef CONFIG_PM
155 .suspend = cpufreq_generic_suspend,
156#endif
Colin Cross7056d422010-04-22 20:30:13 -0700157};
158
159static int __init tegra_cpufreq_init(void)
160{
Joseph Lob192b912013-08-23 09:43:58 +0800161 cpu_clk = clk_get_sys(NULL, "cclk");
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000162 if (IS_ERR(cpu_clk))
163 return PTR_ERR(cpu_clk);
164
165 pll_x_clk = clk_get_sys(NULL, "pll_x");
166 if (IS_ERR(pll_x_clk))
167 return PTR_ERR(pll_x_clk);
168
Joseph Lob192b912013-08-23 09:43:58 +0800169 pll_p_clk = clk_get_sys(NULL, "pll_p");
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000170 if (IS_ERR(pll_p_clk))
171 return PTR_ERR(pll_p_clk);
172
173 emc_clk = clk_get_sys("cpu", "emc");
174 if (IS_ERR(emc_clk)) {
175 clk_put(cpu_clk);
176 return PTR_ERR(emc_clk);
177 }
178
Colin Cross7056d422010-04-22 20:30:13 -0700179 return cpufreq_register_driver(&tegra_cpufreq_driver);
180}
181
182static void __exit tegra_cpufreq_exit(void)
183{
184 cpufreq_unregister_driver(&tegra_cpufreq_driver);
Richard Zhaoc26cefd2012-12-21 00:09:55 +0000185 clk_put(emc_clk);
186 clk_put(cpu_clk);
Colin Cross7056d422010-04-22 20:30:13 -0700187}
188
189
190MODULE_AUTHOR("Colin Cross <ccross@android.com>");
191MODULE_DESCRIPTION("cpufreq driver for Nvidia Tegra2");
192MODULE_LICENSE("GPL");
193module_init(tegra_cpufreq_init);
194module_exit(tegra_cpufreq_exit);