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