2 * Copyright (C) 2010 Google, Inc.
5 * Colin Cross <ccross@google.com>
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/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>
29 #include <linux/suspend.h>
31 static struct cpufreq_frequency_table freq_table
[] = {
32 { .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
},
45 static struct clk
*cpu_clk
;
46 static struct clk
*pll_x_clk
;
47 static struct clk
*pll_p_clk
;
48 static struct clk
*emc_clk
;
50 static DEFINE_MUTEX(tegra_cpu_lock
);
51 static bool is_suspended
;
53 static int tegra_cpu_clk_set_rate(unsigned long rate
)
58 * Take an extra reference to the main pll so it doesn't turn
59 * off when we move the cpu off of it
61 clk_prepare_enable(pll_x_clk
);
63 ret
= clk_set_parent(cpu_clk
, pll_p_clk
);
65 pr_err("Failed to switch cpu to clock pll_p\n");
69 if (rate
== clk_get_rate(pll_p_clk
))
72 ret
= clk_set_rate(pll_x_clk
, rate
);
74 pr_err("Failed to change pll_x to %lu\n", rate
);
78 ret
= clk_set_parent(cpu_clk
, pll_x_clk
);
80 pr_err("Failed to switch cpu to clock pll_x\n");
85 clk_disable_unprepare(pll_x_clk
);
89 static int tegra_update_cpu_speed(struct cpufreq_policy
*policy
,
95 * Vote on memory bus frequency based on cpu frequency
96 * This sets the minimum frequency, display or avp may request higher
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 */
103 clk_set_rate(emc_clk
, 100000000); /* emc 50Mhz */
105 ret
= tegra_cpu_clk_set_rate(rate
* 1000);
107 pr_err("cpu-tegra: Failed to set cpu frequency to %lu kHz\n",
113 static int tegra_target(struct cpufreq_policy
*policy
, unsigned int index
)
117 mutex_lock(&tegra_cpu_lock
);
120 ret
= tegra_update_cpu_speed(policy
,
121 freq_table
[index
].frequency
);
123 mutex_unlock(&tegra_cpu_lock
);
127 static int tegra_pm_notify(struct notifier_block
*nb
, unsigned long event
,
130 mutex_lock(&tegra_cpu_lock
);
131 if (event
== PM_SUSPEND_PREPARE
) {
132 struct cpufreq_policy
*policy
= cpufreq_cpu_get(0);
134 pr_info("Tegra cpufreq suspend: setting frequency to %d kHz\n",
135 freq_table
[0].frequency
);
136 if (clk_get_rate(cpu_clk
) / 1000 != freq_table
[0].frequency
)
137 tegra_update_cpu_speed(policy
, freq_table
[0].frequency
);
138 cpufreq_cpu_put(policy
);
139 } else if (event
== PM_POST_SUSPEND
) {
140 is_suspended
= false;
142 mutex_unlock(&tegra_cpu_lock
);
147 static struct notifier_block tegra_cpu_pm_notifier
= {
148 .notifier_call
= tegra_pm_notify
,
151 static int tegra_cpu_init(struct cpufreq_policy
*policy
)
155 if (policy
->cpu
>= NUM_CPUS
)
158 clk_prepare_enable(emc_clk
);
159 clk_prepare_enable(cpu_clk
);
161 /* FIXME: what's the actual transition time? */
162 ret
= cpufreq_generic_init(policy
, freq_table
, 300 * 1000);
164 clk_disable_unprepare(cpu_clk
);
165 clk_disable_unprepare(emc_clk
);
169 if (policy
->cpu
== 0)
170 register_pm_notifier(&tegra_cpu_pm_notifier
);
172 policy
->clk
= cpu_clk
;
176 static int tegra_cpu_exit(struct cpufreq_policy
*policy
)
178 cpufreq_frequency_table_put_attr(policy
->cpu
);
179 clk_disable_unprepare(cpu_clk
);
180 clk_disable_unprepare(emc_clk
);
184 static struct cpufreq_driver tegra_cpufreq_driver
= {
185 .flags
= CPUFREQ_NEED_INITIAL_FREQ_CHECK
,
186 .verify
= cpufreq_generic_frequency_table_verify
,
187 .target_index
= tegra_target
,
188 .get
= cpufreq_generic_get
,
189 .init
= tegra_cpu_init
,
190 .exit
= tegra_cpu_exit
,
192 .attr
= cpufreq_generic_attr
,
195 static int __init
tegra_cpufreq_init(void)
197 cpu_clk
= clk_get_sys(NULL
, "cclk");
199 return PTR_ERR(cpu_clk
);
201 pll_x_clk
= clk_get_sys(NULL
, "pll_x");
202 if (IS_ERR(pll_x_clk
))
203 return PTR_ERR(pll_x_clk
);
205 pll_p_clk
= clk_get_sys(NULL
, "pll_p");
206 if (IS_ERR(pll_p_clk
))
207 return PTR_ERR(pll_p_clk
);
209 emc_clk
= clk_get_sys("cpu", "emc");
210 if (IS_ERR(emc_clk
)) {
212 return PTR_ERR(emc_clk
);
215 return cpufreq_register_driver(&tegra_cpufreq_driver
);
218 static void __exit
tegra_cpufreq_exit(void)
220 cpufreq_unregister_driver(&tegra_cpufreq_driver
);
226 MODULE_AUTHOR("Colin Cross <ccross@android.com>");
227 MODULE_DESCRIPTION("cpufreq driver for Nvidia Tegra2");
228 MODULE_LICENSE("GPL");
229 module_init(tegra_cpufreq_init
);
230 module_exit(tegra_cpufreq_exit
);