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 | */ |
| 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> |
| 24 | #include <linux/smp.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 25 | #include <linux/sched.h> /* set_cpus_allowed() */ |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 26 | #include <linux/clk.h> |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 27 | #include <linux/percpu.h> |
| 28 | #include <linux/sh_clk.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 30 | static DEFINE_PER_CPU(struct clk, sh_cpuclk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 32 | static unsigned int sh_cpufreq_get(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 34 | return (clk_get_rate(&per_cpu(sh_cpuclk, cpu)) + 500) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | /* |
| 38 | * Here we notify other drivers of the proposed change and the final change. |
| 39 | */ |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 40 | static int sh_cpufreq_target(struct cpufreq_policy *policy, |
| 41 | unsigned int target_freq, |
| 42 | unsigned int relation) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | { |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 44 | unsigned int cpu = policy->cpu; |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 45 | struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | cpumask_t cpus_allowed; |
| 47 | struct cpufreq_freqs freqs; |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 48 | long freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | if (!cpu_online(cpu)) |
| 51 | return -ENODEV; |
| 52 | |
| 53 | cpus_allowed = current->cpus_allowed; |
Julia Lawall | 59a2f7d | 2010-03-26 22:03:49 +0000 | [diff] [blame] | 54 | set_cpus_allowed_ptr(current, cpumask_of(cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | BUG_ON(smp_processor_id() != cpu); |
| 57 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 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 | pr_debug("cpufreq: requested frequency %u Hz\n", target_freq * 1000); |
| 65 | |
| 66 | freqs.cpu = cpu; |
| 67 | freqs.old = sh_cpufreq_get(cpu); |
| 68 | freqs.new = (freq + 500) / 1000; |
| 69 | freqs.flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
Julia Lawall | 59a2f7d | 2010-03-26 22:03:49 +0000 | [diff] [blame] | 72 | set_cpus_allowed_ptr(current, &cpus_allowed); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 73 | clk_set_rate(cpuclk, freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
| 75 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 76 | pr_debug("cpufreq: set frequency %lu Hz\n", freq); |
| 77 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | return 0; |
| 79 | } |
| 80 | |
| 81 | static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy) |
| 82 | { |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 83 | unsigned int cpu = policy->cpu; |
| 84 | struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu); |
| 85 | |
| 86 | if (!cpu_online(cpu)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | return -ENODEV; |
| 88 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 89 | cpuclk = clk_get(NULL, "cpu_clk"); |
| 90 | if (IS_ERR(cpuclk)) { |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 91 | printk(KERN_ERR "cpufreq: couldn't get CPU#%d clk\n", cpu); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 92 | return PTR_ERR(cpuclk); |
| 93 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | |
| 95 | /* cpuinfo and default policy values */ |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 96 | policy->cpuinfo.min_freq = (clk_round_rate(cpuclk, 1) + 500) / 1000; |
| 97 | policy->cpuinfo.max_freq = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 100 | policy->cur = sh_cpufreq_get(cpu); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 101 | policy->min = policy->cpuinfo.min_freq; |
| 102 | policy->max = policy->cpuinfo.max_freq; |
| 103 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 104 | /* |
| 105 | * Catch the cases where the clock framework hasn't been wired up |
| 106 | * properly to support scaling. |
| 107 | */ |
| 108 | if (unlikely(policy->min == policy->max)) { |
| 109 | printk(KERN_ERR "cpufreq: clock framework rate rounding " |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 110 | "not supported on CPU#%d.\n", cpu); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 111 | |
| 112 | clk_put(cpuclk); |
| 113 | return -EINVAL; |
| 114 | } |
| 115 | |
Paul Mundt | 033eb0a | 2009-09-15 09:26:04 +0900 | [diff] [blame] | 116 | printk(KERN_INFO "cpufreq: CPU#%d Frequencies - Minimum %u.%03u MHz, " |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 117 | "Maximum %u.%03u MHz.\n", |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 118 | cpu, policy->min / 1000, policy->min % 1000, |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 119 | policy->max / 1000, policy->max % 1000); |
| 120 | |
| 121 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static int sh_cpufreq_verify(struct cpufreq_policy *policy) |
| 125 | { |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 126 | cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, |
| 127 | policy->cpuinfo.max_freq); |
| 128 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } |
| 130 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 131 | static int sh_cpufreq_exit(struct cpufreq_policy *policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame^] | 133 | struct clk *cpuclk = &per_cpu(sh_cpuclk, policy->cpu); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 134 | clk_put(cpuclk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | static struct cpufreq_driver sh_cpufreq_driver = { |
| 139 | .owner = THIS_MODULE, |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 140 | .name = "sh", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | .init = sh_cpufreq_cpu_init, |
| 142 | .verify = sh_cpufreq_verify, |
| 143 | .target = sh_cpufreq_target, |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 144 | .get = sh_cpufreq_get, |
| 145 | .exit = sh_cpufreq_exit, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | }; |
| 147 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 148 | static int __init sh_cpufreq_module_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
Paul Mundt | 00765c8 | 2007-09-21 17:53:26 +0900 | [diff] [blame] | 150 | printk(KERN_INFO "cpufreq: SuperH CPU frequency driver.\n"); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 151 | return cpufreq_register_driver(&sh_cpufreq_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
| 153 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 154 | static void __exit sh_cpufreq_module_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | { |
| 156 | cpufreq_unregister_driver(&sh_cpufreq_driver); |
| 157 | } |
| 158 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 159 | module_init(sh_cpufreq_module_init); |
| 160 | module_exit(sh_cpufreq_module_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
| 162 | MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>"); |
| 163 | MODULE_DESCRIPTION("cpufreq driver for SuperH"); |
| 164 | MODULE_LICENSE("GPL"); |