Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * arch/sh/kernel/cpufreq.c |
| 3 | * |
| 4 | * cpufreq driver for the SuperH processors. |
| 5 | * |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 6 | * Copyright (C) 2002 - 2012 Paul Mundt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Copyright (C) 2002 M. R. Brown |
| 8 | * |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 9 | * Clock framework bits from arch/avr32/mach-at32ap/cpufreq.c |
| 10 | * |
| 11 | * Copyright (C) 2004-2007 Atmel Corporation |
| 12 | * |
| 13 | * This file is subject to the terms and conditions of the GNU General Public |
| 14 | * License. See the file "COPYING" in the main directory of this archive |
| 15 | * for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | */ |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 17 | #define pr_fmt(fmt) "cpufreq: " fmt |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/types.h> |
| 20 | #include <linux/cpufreq.h> |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/init.h> |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 24 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/cpumask.h> |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 26 | #include <linux/cpu.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/smp.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 28 | #include <linux/sched.h> /* set_cpus_allowed() */ |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 29 | #include <linux/clk.h> |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 30 | #include <linux/percpu.h> |
| 31 | #include <linux/sh_clk.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 33 | static DEFINE_PER_CPU(struct clk, sh_cpuclk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 35 | static unsigned int sh_cpufreq_get(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | { |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 37 | return (clk_get_rate(&per_cpu(sh_cpuclk, cpu)) + 500) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | /* |
| 41 | * Here we notify other drivers of the proposed change and the final change. |
| 42 | */ |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 43 | static int sh_cpufreq_target(struct cpufreq_policy *policy, |
| 44 | unsigned int target_freq, |
| 45 | unsigned int relation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | { |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 47 | unsigned int cpu = policy->cpu; |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 48 | struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | cpumask_t cpus_allowed; |
| 50 | struct cpufreq_freqs freqs; |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 51 | struct device *dev; |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 52 | long freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | cpus_allowed = current->cpus_allowed; |
Julia Lawall | 59a2f7d | 2010-03-26 22:03:49 +0000 | [diff] [blame] | 55 | set_cpus_allowed_ptr(current, cpumask_of(cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
| 57 | BUG_ON(smp_processor_id() != cpu); |
| 58 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 59 | dev = get_cpu_device(cpu); |
| 60 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 61 | /* Convert target_freq from kHz to Hz */ |
| 62 | freq = clk_round_rate(cpuclk, target_freq * 1000); |
| 63 | |
| 64 | if (freq < (policy->min * 1000) || freq > (policy->max * 1000)) |
| 65 | return -EINVAL; |
| 66 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 67 | dev_dbg(dev, "requested frequency %u Hz\n", target_freq * 1000); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 68 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 69 | freqs.old = sh_cpufreq_get(cpu); |
| 70 | freqs.new = (freq + 500) / 1000; |
| 71 | freqs.flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 73 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE); |
Julia Lawall | 59a2f7d | 2010-03-26 22:03:49 +0000 | [diff] [blame] | 74 | set_cpus_allowed_ptr(current, &cpus_allowed); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 75 | clk_set_rate(cpuclk, freq); |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 76 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 78 | dev_dbg(dev, "set frequency %lu Hz\n", freq); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | return 0; |
| 81 | } |
| 82 | |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 83 | static int sh_cpufreq_verify(struct cpufreq_policy *policy) |
| 84 | { |
| 85 | struct clk *cpuclk = &per_cpu(sh_cpuclk, policy->cpu); |
| 86 | struct cpufreq_frequency_table *freq_table; |
| 87 | |
| 88 | freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL; |
| 89 | if (freq_table) |
| 90 | return cpufreq_frequency_table_verify(policy, freq_table); |
| 91 | |
| 92 | cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, |
| 93 | policy->cpuinfo.max_freq); |
| 94 | |
| 95 | policy->min = (clk_round_rate(cpuclk, 1) + 500) / 1000; |
| 96 | policy->max = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000; |
| 97 | |
| 98 | cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, |
| 99 | policy->cpuinfo.max_freq); |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy) |
| 105 | { |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 106 | unsigned int cpu = policy->cpu; |
| 107 | struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu); |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 108 | struct cpufreq_frequency_table *freq_table; |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 109 | struct device *dev; |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 110 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 111 | dev = get_cpu_device(cpu); |
| 112 | |
| 113 | cpuclk = clk_get(dev, "cpu_clk"); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 114 | if (IS_ERR(cpuclk)) { |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 115 | dev_err(dev, "couldn't get CPU clk\n"); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 116 | return PTR_ERR(cpuclk); |
| 117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Viresh Kumar | eb2f50f | 2013-04-01 12:57:48 +0000 | [diff] [blame^] | 119 | policy->cur = sh_cpufreq_get(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 121 | freq_table = cpuclk->nr_freqs ? cpuclk->freq_table : NULL; |
| 122 | if (freq_table) { |
Paul Mundt | 1a565cf | 2012-01-27 20:43:14 +0900 | [diff] [blame] | 123 | int result; |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 124 | |
Paul Mundt | 1a565cf | 2012-01-27 20:43:14 +0900 | [diff] [blame] | 125 | result = cpufreq_frequency_table_cpuinfo(policy, freq_table); |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 126 | if (!result) |
| 127 | cpufreq_frequency_table_get_attr(freq_table, cpu); |
| 128 | } else { |
Paul Mundt | 1a565cf | 2012-01-27 20:43:14 +0900 | [diff] [blame] | 129 | dev_notice(dev, "no frequency table found, falling back " |
| 130 | "to rate rounding.\n"); |
| 131 | |
Viresh Kumar | eb2f50f | 2013-04-01 12:57:48 +0000 | [diff] [blame^] | 132 | policy->min = policy->cpuinfo.min_freq = |
Paul Mundt | 1a565cf | 2012-01-27 20:43:14 +0900 | [diff] [blame] | 133 | (clk_round_rate(cpuclk, 1) + 500) / 1000; |
Viresh Kumar | eb2f50f | 2013-04-01 12:57:48 +0000 | [diff] [blame^] | 134 | policy->max = policy->cpuinfo.max_freq = |
Paul Mundt | 1a565cf | 2012-01-27 20:43:14 +0900 | [diff] [blame] | 135 | (clk_round_rate(cpuclk, ~0UL) + 500) / 1000; |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 136 | } |
| 137 | |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 138 | policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL; |
| 139 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 140 | dev_info(dev, "CPU Frequencies - Minimum %u.%03u MHz, " |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 141 | "Maximum %u.%03u MHz.\n", |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 142 | policy->min / 1000, policy->min % 1000, |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 143 | policy->max / 1000, policy->max % 1000); |
| 144 | |
| 145 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 148 | static int sh_cpufreq_cpu_exit(struct cpufreq_policy *policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 150 | unsigned int cpu = policy->cpu; |
| 151 | struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 153 | cpufreq_frequency_table_put_attr(cpu); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 154 | clk_put(cpuclk); |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | return 0; |
| 157 | } |
| 158 | |
Paul Mundt | 3cbb08a | 2012-01-27 20:45:24 +0900 | [diff] [blame] | 159 | static struct freq_attr *sh_freq_attr[] = { |
| 160 | &cpufreq_freq_attr_scaling_available_freqs, |
| 161 | NULL, |
| 162 | }; |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | static struct cpufreq_driver sh_cpufreq_driver = { |
| 165 | .owner = THIS_MODULE, |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 166 | .name = "sh", |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 167 | .get = sh_cpufreq_get, |
Paul Mundt | 1bcfc72 | 2012-01-27 20:18:24 +0900 | [diff] [blame] | 168 | .target = sh_cpufreq_target, |
| 169 | .verify = sh_cpufreq_verify, |
| 170 | .init = sh_cpufreq_cpu_init, |
| 171 | .exit = sh_cpufreq_cpu_exit, |
Paul Mundt | 3cbb08a | 2012-01-27 20:45:24 +0900 | [diff] [blame] | 172 | .attr = sh_freq_attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | }; |
| 174 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 175 | static int __init sh_cpufreq_module_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame] | 177 | pr_notice("SuperH CPU frequency driver.\n"); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 178 | return cpufreq_register_driver(&sh_cpufreq_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | } |
| 180 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 181 | static void __exit sh_cpufreq_module_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | { |
| 183 | cpufreq_unregister_driver(&sh_cpufreq_driver); |
| 184 | } |
| 185 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 186 | module_init(sh_cpufreq_module_init); |
| 187 | module_exit(sh_cpufreq_module_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
| 189 | MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>"); |
| 190 | MODULE_DESCRIPTION("cpufreq driver for SuperH"); |
| 191 | MODULE_LICENSE("GPL"); |