Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-tegra/cpu-tegra.c |
| 3 | * |
| 4 | * Copyright (C) 2010 Google, Inc. |
| 5 | * |
| 6 | * Author: |
| 7 | * Colin Cross <ccross@google.com> |
| 8 | * Based on arch/arm/plat-omap/cpu-omap.c, (C) 2005 Nokia Corporation |
| 9 | * |
| 10 | * This software is licensed under the terms of the GNU General Public |
| 11 | * License version 2, as published by the Free Software Foundation, and |
| 12 | * may be copied, distributed, and modified under those terms. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | */ |
| 20 | |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/module.h> |
| 23 | #include <linux/types.h> |
| 24 | #include <linux/sched.h> |
| 25 | #include <linux/cpufreq.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/init.h> |
| 28 | #include <linux/err.h> |
| 29 | #include <linux/clk.h> |
| 30 | #include <linux/io.h> |
Colin Cross | 1eb2ecf | 2010-08-05 17:40:39 -0700 | [diff] [blame] | 31 | #include <linux/suspend.h> |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 32 | |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 33 | /* Frequency table index must be sequential starting at 0 */ |
| 34 | static struct cpufreq_frequency_table freq_table[] = { |
Colin Cross | 1eb2ecf | 2010-08-05 17:40:39 -0700 | [diff] [blame] | 35 | { 0, 216000 }, |
| 36 | { 1, 312000 }, |
| 37 | { 2, 456000 }, |
| 38 | { 3, 608000 }, |
| 39 | { 4, 760000 }, |
| 40 | { 5, 816000 }, |
| 41 | { 6, 912000 }, |
| 42 | { 7, 1000000 }, |
| 43 | { 8, CPUFREQ_TABLE_END }, |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | #define NUM_CPUS 2 |
| 47 | |
| 48 | static struct clk *cpu_clk; |
Stephen Warren | ce32dda | 2012-09-10 17:05:01 -0600 | [diff] [blame] | 49 | static struct clk *pll_x_clk; |
| 50 | static struct clk *pll_p_clk; |
Colin Cross | 7a28128 | 2010-11-22 18:54:36 -0800 | [diff] [blame] | 51 | static struct clk *emc_clk; |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 52 | |
| 53 | static unsigned long target_cpu_speed[NUM_CPUS]; |
Colin Cross | 1eb2ecf | 2010-08-05 17:40:39 -0700 | [diff] [blame] | 54 | static DEFINE_MUTEX(tegra_cpu_lock); |
| 55 | static bool is_suspended; |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 56 | |
Olof Johansson | 6686c73 | 2011-10-09 21:57:04 -0700 | [diff] [blame] | 57 | static int tegra_verify_speed(struct cpufreq_policy *policy) |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 58 | { |
| 59 | return cpufreq_frequency_table_verify(policy, freq_table); |
| 60 | } |
| 61 | |
Olof Johansson | 6686c73 | 2011-10-09 21:57:04 -0700 | [diff] [blame] | 62 | static unsigned int tegra_getspeed(unsigned int cpu) |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 63 | { |
| 64 | unsigned long rate; |
| 65 | |
| 66 | if (cpu >= NUM_CPUS) |
| 67 | return 0; |
| 68 | |
| 69 | rate = clk_get_rate(cpu_clk) / 1000; |
| 70 | return rate; |
| 71 | } |
| 72 | |
Stephen Warren | ce32dda | 2012-09-10 17:05:01 -0600 | [diff] [blame] | 73 | static int tegra_cpu_clk_set_rate(unsigned long rate) |
| 74 | { |
| 75 | int ret; |
| 76 | |
| 77 | /* |
| 78 | * Take an extra reference to the main pll so it doesn't turn |
| 79 | * off when we move the cpu off of it |
| 80 | */ |
| 81 | clk_prepare_enable(pll_x_clk); |
| 82 | |
| 83 | ret = clk_set_parent(cpu_clk, pll_p_clk); |
| 84 | if (ret) { |
| 85 | pr_err("Failed to switch cpu to clock pll_p\n"); |
| 86 | goto out; |
| 87 | } |
| 88 | |
| 89 | if (rate == clk_get_rate(pll_p_clk)) |
| 90 | goto out; |
| 91 | |
| 92 | ret = clk_set_rate(pll_x_clk, rate); |
| 93 | if (ret) { |
| 94 | pr_err("Failed to change pll_x to %lu\n", rate); |
| 95 | goto out; |
| 96 | } |
| 97 | |
| 98 | ret = clk_set_parent(cpu_clk, pll_x_clk); |
| 99 | if (ret) { |
| 100 | pr_err("Failed to switch cpu to clock pll_x\n"); |
| 101 | goto out; |
| 102 | } |
| 103 | |
| 104 | out: |
| 105 | clk_disable_unprepare(pll_x_clk); |
| 106 | return ret; |
| 107 | } |
| 108 | |
Colin Cross | 1eb2ecf | 2010-08-05 17:40:39 -0700 | [diff] [blame] | 109 | static int tegra_update_cpu_speed(unsigned long rate) |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 110 | { |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 111 | int ret = 0; |
| 112 | struct cpufreq_freqs freqs; |
| 113 | |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 114 | freqs.old = tegra_getspeed(0); |
| 115 | freqs.new = rate; |
| 116 | |
| 117 | if (freqs.old == freqs.new) |
| 118 | return ret; |
| 119 | |
Colin Cross | 7a28128 | 2010-11-22 18:54:36 -0800 | [diff] [blame] | 120 | /* |
| 121 | * Vote on memory bus frequency based on cpu frequency |
| 122 | * This sets the minimum frequency, display or avp may request higher |
| 123 | */ |
| 124 | if (rate >= 816000) |
| 125 | clk_set_rate(emc_clk, 600000000); /* cpu 816 MHz, emc max */ |
| 126 | else if (rate >= 456000) |
| 127 | clk_set_rate(emc_clk, 300000000); /* cpu 456 MHz, emc 150Mhz */ |
| 128 | else |
| 129 | clk_set_rate(emc_clk, 100000000); /* emc 50Mhz */ |
| 130 | |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 131 | for_each_online_cpu(freqs.cpu) |
| 132 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
| 133 | |
| 134 | #ifdef CONFIG_CPU_FREQ_DEBUG |
| 135 | printk(KERN_DEBUG "cpufreq-tegra: transition: %u --> %u\n", |
| 136 | freqs.old, freqs.new); |
| 137 | #endif |
| 138 | |
Stephen Warren | ce32dda | 2012-09-10 17:05:01 -0600 | [diff] [blame] | 139 | ret = tegra_cpu_clk_set_rate(freqs.new * 1000); |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 140 | if (ret) { |
| 141 | pr_err("cpu-tegra: Failed to set cpu frequency to %d kHz\n", |
| 142 | freqs.new); |
| 143 | return ret; |
| 144 | } |
| 145 | |
| 146 | for_each_online_cpu(freqs.cpu) |
| 147 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
| 148 | |
| 149 | return 0; |
| 150 | } |
| 151 | |
Colin Cross | 1eb2ecf | 2010-08-05 17:40:39 -0700 | [diff] [blame] | 152 | static unsigned long tegra_cpu_highest_speed(void) |
| 153 | { |
| 154 | unsigned long rate = 0; |
| 155 | int i; |
| 156 | |
| 157 | for_each_online_cpu(i) |
| 158 | rate = max(rate, target_cpu_speed[i]); |
| 159 | return rate; |
| 160 | } |
| 161 | |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 162 | static int tegra_target(struct cpufreq_policy *policy, |
| 163 | unsigned int target_freq, |
| 164 | unsigned int relation) |
| 165 | { |
Olof Johansson | fdb684a | 2011-10-09 21:31:23 -0700 | [diff] [blame] | 166 | unsigned int idx; |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 167 | unsigned int freq; |
Colin Cross | 1eb2ecf | 2010-08-05 17:40:39 -0700 | [diff] [blame] | 168 | int ret = 0; |
| 169 | |
| 170 | mutex_lock(&tegra_cpu_lock); |
| 171 | |
| 172 | if (is_suspended) { |
| 173 | ret = -EBUSY; |
| 174 | goto out; |
| 175 | } |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 176 | |
| 177 | cpufreq_frequency_table_target(policy, freq_table, target_freq, |
| 178 | relation, &idx); |
| 179 | |
| 180 | freq = freq_table[idx].frequency; |
| 181 | |
| 182 | target_cpu_speed[policy->cpu] = freq; |
| 183 | |
Colin Cross | 1eb2ecf | 2010-08-05 17:40:39 -0700 | [diff] [blame] | 184 | ret = tegra_update_cpu_speed(tegra_cpu_highest_speed()); |
| 185 | |
| 186 | out: |
| 187 | mutex_unlock(&tegra_cpu_lock); |
| 188 | return ret; |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 189 | } |
| 190 | |
Colin Cross | 1eb2ecf | 2010-08-05 17:40:39 -0700 | [diff] [blame] | 191 | static int tegra_pm_notify(struct notifier_block *nb, unsigned long event, |
| 192 | void *dummy) |
| 193 | { |
| 194 | mutex_lock(&tegra_cpu_lock); |
| 195 | if (event == PM_SUSPEND_PREPARE) { |
| 196 | is_suspended = true; |
| 197 | pr_info("Tegra cpufreq suspend: setting frequency to %d kHz\n", |
| 198 | freq_table[0].frequency); |
| 199 | tegra_update_cpu_speed(freq_table[0].frequency); |
| 200 | } else if (event == PM_POST_SUSPEND) { |
| 201 | is_suspended = false; |
| 202 | } |
| 203 | mutex_unlock(&tegra_cpu_lock); |
| 204 | |
| 205 | return NOTIFY_OK; |
| 206 | } |
| 207 | |
| 208 | static struct notifier_block tegra_cpu_pm_notifier = { |
| 209 | .notifier_call = tegra_pm_notify, |
| 210 | }; |
| 211 | |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 212 | static int tegra_cpu_init(struct cpufreq_policy *policy) |
| 213 | { |
| 214 | if (policy->cpu >= NUM_CPUS) |
| 215 | return -EINVAL; |
| 216 | |
Prashant Gaikwad | 6a5278d | 2012-06-05 09:59:35 +0530 | [diff] [blame] | 217 | clk_prepare_enable(emc_clk); |
| 218 | clk_prepare_enable(cpu_clk); |
Colin Cross | 89a5fb8 | 2010-10-20 17:47:59 -0700 | [diff] [blame] | 219 | |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 220 | cpufreq_frequency_table_cpuinfo(policy, freq_table); |
| 221 | cpufreq_frequency_table_get_attr(freq_table, policy->cpu); |
| 222 | policy->cur = tegra_getspeed(policy->cpu); |
| 223 | target_cpu_speed[policy->cpu] = policy->cur; |
| 224 | |
| 225 | /* FIXME: what's the actual transition time? */ |
| 226 | policy->cpuinfo.transition_latency = 300 * 1000; |
| 227 | |
| 228 | policy->shared_type = CPUFREQ_SHARED_TYPE_ALL; |
| 229 | cpumask_copy(policy->related_cpus, cpu_possible_mask); |
| 230 | |
Colin Cross | 1eb2ecf | 2010-08-05 17:40:39 -0700 | [diff] [blame] | 231 | if (policy->cpu == 0) |
| 232 | register_pm_notifier(&tegra_cpu_pm_notifier); |
| 233 | |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 234 | return 0; |
| 235 | } |
| 236 | |
| 237 | static int tegra_cpu_exit(struct cpufreq_policy *policy) |
| 238 | { |
| 239 | cpufreq_frequency_table_cpuinfo(policy, freq_table); |
Prashant Gaikwad | 6a5278d | 2012-06-05 09:59:35 +0530 | [diff] [blame] | 240 | clk_disable_unprepare(emc_clk); |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 241 | return 0; |
| 242 | } |
| 243 | |
| 244 | static struct freq_attr *tegra_cpufreq_attr[] = { |
| 245 | &cpufreq_freq_attr_scaling_available_freqs, |
| 246 | NULL, |
| 247 | }; |
| 248 | |
| 249 | static struct cpufreq_driver tegra_cpufreq_driver = { |
| 250 | .verify = tegra_verify_speed, |
| 251 | .target = tegra_target, |
| 252 | .get = tegra_getspeed, |
| 253 | .init = tegra_cpu_init, |
| 254 | .exit = tegra_cpu_exit, |
| 255 | .name = "tegra", |
| 256 | .attr = tegra_cpufreq_attr, |
| 257 | }; |
| 258 | |
| 259 | static int __init tegra_cpufreq_init(void) |
| 260 | { |
Richard Zhao | c26cefd | 2012-12-21 00:09:55 +0000 | [diff] [blame^] | 261 | cpu_clk = clk_get_sys(NULL, "cpu"); |
| 262 | if (IS_ERR(cpu_clk)) |
| 263 | return PTR_ERR(cpu_clk); |
| 264 | |
| 265 | pll_x_clk = clk_get_sys(NULL, "pll_x"); |
| 266 | if (IS_ERR(pll_x_clk)) |
| 267 | return PTR_ERR(pll_x_clk); |
| 268 | |
| 269 | pll_p_clk = clk_get_sys(NULL, "pll_p"); |
| 270 | if (IS_ERR(pll_p_clk)) |
| 271 | return PTR_ERR(pll_p_clk); |
| 272 | |
| 273 | emc_clk = clk_get_sys("cpu", "emc"); |
| 274 | if (IS_ERR(emc_clk)) { |
| 275 | clk_put(cpu_clk); |
| 276 | return PTR_ERR(emc_clk); |
| 277 | } |
| 278 | |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 279 | return cpufreq_register_driver(&tegra_cpufreq_driver); |
| 280 | } |
| 281 | |
| 282 | static void __exit tegra_cpufreq_exit(void) |
| 283 | { |
| 284 | cpufreq_unregister_driver(&tegra_cpufreq_driver); |
Richard Zhao | c26cefd | 2012-12-21 00:09:55 +0000 | [diff] [blame^] | 285 | clk_put(emc_clk); |
| 286 | clk_put(cpu_clk); |
Colin Cross | 7056d42 | 2010-04-22 20:30:13 -0700 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | |
| 290 | MODULE_AUTHOR("Colin Cross <ccross@android.com>"); |
| 291 | MODULE_DESCRIPTION("cpufreq driver for Nvidia Tegra2"); |
| 292 | MODULE_LICENSE("GPL"); |
| 293 | module_init(tegra_cpufreq_init); |
| 294 | module_exit(tegra_cpufreq_exit); |