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 | |
| 54 | if (!cpu_online(cpu)) |
| 55 | return -ENODEV; |
| 56 | |
| 57 | cpus_allowed = current->cpus_allowed; |
Julia Lawall | 59a2f7d | 2010-03-26 22:03:49 +0000 | [diff] [blame] | 58 | set_cpus_allowed_ptr(current, cpumask_of(cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | BUG_ON(smp_processor_id() != cpu); |
| 61 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 62 | dev = get_cpu_device(cpu); |
| 63 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 64 | /* Convert target_freq from kHz to Hz */ |
| 65 | freq = clk_round_rate(cpuclk, target_freq * 1000); |
| 66 | |
| 67 | if (freq < (policy->min * 1000) || freq > (policy->max * 1000)) |
| 68 | return -EINVAL; |
| 69 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 70 | dev_dbg(dev, "requested frequency %u Hz\n", target_freq * 1000); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 71 | |
| 72 | freqs.cpu = cpu; |
| 73 | freqs.old = sh_cpufreq_get(cpu); |
| 74 | freqs.new = (freq + 500) / 1000; |
| 75 | freqs.flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
Julia Lawall | 59a2f7d | 2010-03-26 22:03:49 +0000 | [diff] [blame] | 78 | set_cpus_allowed_ptr(current, &cpus_allowed); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 79 | clk_set_rate(cpuclk, freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
| 81 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 82 | dev_dbg(dev, "set frequency %lu Hz\n", freq); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | return 0; |
| 85 | } |
| 86 | |
| 87 | static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy) |
| 88 | { |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 89 | unsigned int cpu = policy->cpu; |
| 90 | struct clk *cpuclk = &per_cpu(sh_cpuclk, cpu); |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 91 | struct device *dev; |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 92 | |
| 93 | if (!cpu_online(cpu)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | return -ENODEV; |
| 95 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 96 | dev = get_cpu_device(cpu); |
| 97 | |
| 98 | cpuclk = clk_get(dev, "cpu_clk"); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 99 | if (IS_ERR(cpuclk)) { |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 100 | dev_err(dev, "couldn't get CPU clk\n"); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 101 | return PTR_ERR(cpuclk); |
| 102 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | /* cpuinfo and default policy values */ |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 105 | policy->cpuinfo.min_freq = (clk_round_rate(cpuclk, 1) + 500) / 1000; |
| 106 | policy->cpuinfo.max_freq = (clk_round_rate(cpuclk, ~0UL) + 500) / 1000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 109 | policy->cur = sh_cpufreq_get(cpu); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 110 | policy->min = policy->cpuinfo.min_freq; |
| 111 | policy->max = policy->cpuinfo.max_freq; |
| 112 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 113 | /* |
| 114 | * Catch the cases where the clock framework hasn't been wired up |
| 115 | * properly to support scaling. |
| 116 | */ |
| 117 | if (unlikely(policy->min == policy->max)) { |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 118 | dev_err(dev, "rate rounding not supported on this CPU.\n"); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 119 | clk_put(cpuclk); |
| 120 | return -EINVAL; |
| 121 | } |
| 122 | |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 123 | dev_info(dev, "CPU Frequencies - Minimum %u.%03u MHz, " |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 124 | "Maximum %u.%03u MHz.\n", |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 125 | policy->min / 1000, policy->min % 1000, |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 126 | policy->max / 1000, policy->max % 1000); |
| 127 | |
| 128 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | static int sh_cpufreq_verify(struct cpufreq_policy *policy) |
| 132 | { |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 133 | cpufreq_verify_within_limits(policy, policy->cpuinfo.min_freq, |
| 134 | policy->cpuinfo.max_freq); |
| 135 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | } |
| 137 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 138 | static int sh_cpufreq_exit(struct cpufreq_policy *policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | { |
Paul Mundt | 3bccf46 | 2012-01-27 17:49:16 +0900 | [diff] [blame] | 140 | struct clk *cpuclk = &per_cpu(sh_cpuclk, policy->cpu); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 141 | clk_put(cpuclk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | static struct cpufreq_driver sh_cpufreq_driver = { |
| 146 | .owner = THIS_MODULE, |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 147 | .name = "sh", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | .init = sh_cpufreq_cpu_init, |
| 149 | .verify = sh_cpufreq_verify, |
| 150 | .target = sh_cpufreq_target, |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 151 | .get = sh_cpufreq_get, |
| 152 | .exit = sh_cpufreq_exit, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | }; |
| 154 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 155 | static int __init sh_cpufreq_module_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
Paul Mundt | ecbef17 | 2012-01-27 19:44:49 +0900 | [diff] [blame^] | 157 | pr_notice("SuperH CPU frequency driver.\n"); |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 158 | return cpufreq_register_driver(&sh_cpufreq_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | } |
| 160 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 161 | static void __exit sh_cpufreq_module_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | { |
| 163 | cpufreq_unregister_driver(&sh_cpufreq_driver); |
| 164 | } |
| 165 | |
Paul Mundt | cb5ec75 | 2007-07-20 13:38:19 +0900 | [diff] [blame] | 166 | module_init(sh_cpufreq_module_init); |
| 167 | module_exit(sh_cpufreq_module_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
| 169 | MODULE_AUTHOR("Paul Mundt <lethal@linux-sh.org>"); |
| 170 | MODULE_DESCRIPTION("cpufreq driver for SuperH"); |
| 171 | MODULE_LICENSE("GPL"); |