Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/drivers/cpufreq/cpufreq.c |
| 3 | * |
| 4 | * Copyright (C) 2001 Russell King |
| 5 | * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de> |
| 6 | * |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 7 | * Oct 2005 - Ashok Raj <ashok.raj@intel.com> |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 8 | * Added handling for CPU hotplug |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 9 | * Feb 2006 - Jacob Shin <jacob.shin@amd.com> |
| 10 | * Fix handling for CPU hotplug -- affected CPUs |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 11 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * This program is free software; you can redistribute it and/or modify |
| 13 | * it under the terms of the GNU General Public License version 2 as |
| 14 | * published by the Free Software Foundation. |
| 15 | * |
| 16 | */ |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/notifier.h> |
| 22 | #include <linux/cpufreq.h> |
| 23 | #include <linux/delay.h> |
| 24 | #include <linux/interrupt.h> |
| 25 | #include <linux/spinlock.h> |
| 26 | #include <linux/device.h> |
| 27 | #include <linux/slab.h> |
| 28 | #include <linux/cpu.h> |
| 29 | #include <linux/completion.h> |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 30 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 32 | #define dprintk(msg...) cpufreq_debug_printk(CPUFREQ_DEBUG_CORE, \ |
| 33 | "cpufreq-core", msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | /** |
Dave Jones | cd87847 | 2006-08-11 17:59:28 -0400 | [diff] [blame] | 36 | * The "cpufreq driver" - the arch- or hardware-dependent low |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | * level driver of CPUFreq support, and its spinlock. This lock |
| 38 | * also protects the cpufreq_cpu_data array. |
| 39 | */ |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 40 | static struct cpufreq_driver *cpufreq_driver; |
| 41 | static struct cpufreq_policy *cpufreq_cpu_data[NR_CPUS]; |
Thomas Renninger | 084f349 | 2007-07-09 11:35:28 -0700 | [diff] [blame] | 42 | #ifdef CONFIG_HOTPLUG_CPU |
| 43 | /* This one keeps track of the previously set governor of a removed CPU */ |
| 44 | static struct cpufreq_governor *cpufreq_cpu_governor[NR_CPUS]; |
| 45 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | static DEFINE_SPINLOCK(cpufreq_driver_lock); |
| 47 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 48 | /* |
| 49 | * cpu_policy_rwsem is a per CPU reader-writer semaphore designed to cure |
| 50 | * all cpufreq/hotplug/workqueue/etc related lock issues. |
| 51 | * |
| 52 | * The rules for this semaphore: |
| 53 | * - Any routine that wants to read from the policy structure will |
| 54 | * do a down_read on this semaphore. |
| 55 | * - Any routine that will write to the policy structure and/or may take away |
| 56 | * the policy altogether (eg. CPU hotplug), will hold this lock in write |
| 57 | * mode before doing so. |
| 58 | * |
| 59 | * Additional rules: |
| 60 | * - All holders of the lock should check to make sure that the CPU they |
| 61 | * are concerned with are online after they get the lock. |
| 62 | * - Governor routines that can be called in cpufreq hotplug path should not |
| 63 | * take this sem as top level hotplug notifier handler takes this. |
| 64 | */ |
| 65 | static DEFINE_PER_CPU(int, policy_cpu); |
| 66 | static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem); |
| 67 | |
| 68 | #define lock_policy_rwsem(mode, cpu) \ |
| 69 | int lock_policy_rwsem_##mode \ |
| 70 | (int cpu) \ |
| 71 | { \ |
| 72 | int policy_cpu = per_cpu(policy_cpu, cpu); \ |
| 73 | BUG_ON(policy_cpu == -1); \ |
| 74 | down_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \ |
| 75 | if (unlikely(!cpu_online(cpu))) { \ |
| 76 | up_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \ |
| 77 | return -1; \ |
| 78 | } \ |
| 79 | \ |
| 80 | return 0; \ |
| 81 | } |
| 82 | |
| 83 | lock_policy_rwsem(read, cpu); |
| 84 | EXPORT_SYMBOL_GPL(lock_policy_rwsem_read); |
| 85 | |
| 86 | lock_policy_rwsem(write, cpu); |
| 87 | EXPORT_SYMBOL_GPL(lock_policy_rwsem_write); |
| 88 | |
| 89 | void unlock_policy_rwsem_read(int cpu) |
| 90 | { |
| 91 | int policy_cpu = per_cpu(policy_cpu, cpu); |
| 92 | BUG_ON(policy_cpu == -1); |
| 93 | up_read(&per_cpu(cpu_policy_rwsem, policy_cpu)); |
| 94 | } |
| 95 | EXPORT_SYMBOL_GPL(unlock_policy_rwsem_read); |
| 96 | |
| 97 | void unlock_policy_rwsem_write(int cpu) |
| 98 | { |
| 99 | int policy_cpu = per_cpu(policy_cpu, cpu); |
| 100 | BUG_ON(policy_cpu == -1); |
| 101 | up_write(&per_cpu(cpu_policy_rwsem, policy_cpu)); |
| 102 | } |
| 103 | EXPORT_SYMBOL_GPL(unlock_policy_rwsem_write); |
| 104 | |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | /* internal prototypes */ |
| 107 | static int __cpufreq_governor(struct cpufreq_policy *policy, unsigned int event); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 108 | static unsigned int __cpufreq_get(unsigned int cpu); |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 109 | static void handle_update(struct work_struct *work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | /** |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 112 | * Two notifier lists: the "policy" list is involved in the |
| 113 | * validation process for a new CPU frequency policy; the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | * "transition" list for kernel code that needs to handle |
| 115 | * changes to devices when the CPU clock speed changes. |
| 116 | * The mutex locks both lists. |
| 117 | */ |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 118 | static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list); |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 119 | static struct srcu_notifier_head cpufreq_transition_notifier_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 121 | static int __init init_cpufreq_transition_notifier_list(void) |
| 122 | { |
| 123 | srcu_init_notifier_head(&cpufreq_transition_notifier_list); |
| 124 | return 0; |
| 125 | } |
Linus Torvalds | b3438f8 | 2006-11-20 11:47:18 -0800 | [diff] [blame] | 126 | pure_initcall(init_cpufreq_transition_notifier_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | |
| 128 | static LIST_HEAD(cpufreq_governor_list); |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 129 | static DEFINE_MUTEX (cpufreq_governor_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 131 | struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | { |
| 133 | struct cpufreq_policy *data; |
| 134 | unsigned long flags; |
| 135 | |
| 136 | if (cpu >= NR_CPUS) |
| 137 | goto err_out; |
| 138 | |
| 139 | /* get the cpufreq driver */ |
| 140 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 141 | |
| 142 | if (!cpufreq_driver) |
| 143 | goto err_out_unlock; |
| 144 | |
| 145 | if (!try_module_get(cpufreq_driver->owner)) |
| 146 | goto err_out_unlock; |
| 147 | |
| 148 | |
| 149 | /* get the CPU */ |
| 150 | data = cpufreq_cpu_data[cpu]; |
| 151 | |
| 152 | if (!data) |
| 153 | goto err_out_put_module; |
| 154 | |
| 155 | if (!kobject_get(&data->kobj)) |
| 156 | goto err_out_put_module; |
| 157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | return data; |
| 160 | |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 161 | err_out_put_module: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | module_put(cpufreq_driver->owner); |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 163 | err_out_unlock: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 165 | err_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | return NULL; |
| 167 | } |
| 168 | EXPORT_SYMBOL_GPL(cpufreq_cpu_get); |
| 169 | |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | void cpufreq_cpu_put(struct cpufreq_policy *data) |
| 172 | { |
| 173 | kobject_put(&data->kobj); |
| 174 | module_put(cpufreq_driver->owner); |
| 175 | } |
| 176 | EXPORT_SYMBOL_GPL(cpufreq_cpu_put); |
| 177 | |
| 178 | |
| 179 | /********************************************************************* |
| 180 | * UNIFIED DEBUG HELPERS * |
| 181 | *********************************************************************/ |
| 182 | #ifdef CONFIG_CPU_FREQ_DEBUG |
| 183 | |
| 184 | /* what part(s) of the CPUfreq subsystem are debugged? */ |
| 185 | static unsigned int debug; |
| 186 | |
| 187 | /* is the debug output ratelimit'ed using printk_ratelimit? User can |
| 188 | * set or modify this value. |
| 189 | */ |
| 190 | static unsigned int debug_ratelimit = 1; |
| 191 | |
| 192 | /* is the printk_ratelimit'ing enabled? It's enabled after a successful |
| 193 | * loading of a cpufreq driver, temporarily disabled when a new policy |
| 194 | * is set, and disabled upon cpufreq driver removal |
| 195 | */ |
| 196 | static unsigned int disable_ratelimit = 1; |
| 197 | static DEFINE_SPINLOCK(disable_ratelimit_lock); |
| 198 | |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 199 | static void cpufreq_debug_enable_ratelimit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
| 201 | unsigned long flags; |
| 202 | |
| 203 | spin_lock_irqsave(&disable_ratelimit_lock, flags); |
| 204 | if (disable_ratelimit) |
| 205 | disable_ratelimit--; |
| 206 | spin_unlock_irqrestore(&disable_ratelimit_lock, flags); |
| 207 | } |
| 208 | |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 209 | static void cpufreq_debug_disable_ratelimit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | { |
| 211 | unsigned long flags; |
| 212 | |
| 213 | spin_lock_irqsave(&disable_ratelimit_lock, flags); |
| 214 | disable_ratelimit++; |
| 215 | spin_unlock_irqrestore(&disable_ratelimit_lock, flags); |
| 216 | } |
| 217 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 218 | void cpufreq_debug_printk(unsigned int type, const char *prefix, |
| 219 | const char *fmt, ...) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | { |
| 221 | char s[256]; |
| 222 | va_list args; |
| 223 | unsigned int len; |
| 224 | unsigned long flags; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | WARN_ON(!prefix); |
| 227 | if (type & debug) { |
| 228 | spin_lock_irqsave(&disable_ratelimit_lock, flags); |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 229 | if (!disable_ratelimit && debug_ratelimit |
| 230 | && !printk_ratelimit()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | spin_unlock_irqrestore(&disable_ratelimit_lock, flags); |
| 232 | return; |
| 233 | } |
| 234 | spin_unlock_irqrestore(&disable_ratelimit_lock, flags); |
| 235 | |
| 236 | len = snprintf(s, 256, KERN_DEBUG "%s: ", prefix); |
| 237 | |
| 238 | va_start(args, fmt); |
| 239 | len += vsnprintf(&s[len], (256 - len), fmt, args); |
| 240 | va_end(args); |
| 241 | |
| 242 | printk(s); |
| 243 | |
| 244 | WARN_ON(len < 5); |
| 245 | } |
| 246 | } |
| 247 | EXPORT_SYMBOL(cpufreq_debug_printk); |
| 248 | |
| 249 | |
| 250 | module_param(debug, uint, 0644); |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 251 | MODULE_PARM_DESC(debug, "CPUfreq debugging: add 1 to debug core," |
| 252 | " 2 to debug drivers, and 4 to debug governors."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | |
| 254 | module_param(debug_ratelimit, uint, 0644); |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 255 | MODULE_PARM_DESC(debug_ratelimit, "CPUfreq debugging:" |
| 256 | " set to 0 to disable ratelimiting."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | |
| 258 | #else /* !CONFIG_CPU_FREQ_DEBUG */ |
| 259 | |
| 260 | static inline void cpufreq_debug_enable_ratelimit(void) { return; } |
| 261 | static inline void cpufreq_debug_disable_ratelimit(void) { return; } |
| 262 | |
| 263 | #endif /* CONFIG_CPU_FREQ_DEBUG */ |
| 264 | |
| 265 | |
| 266 | /********************************************************************* |
| 267 | * EXTERNALLY AFFECTING FREQUENCY CHANGES * |
| 268 | *********************************************************************/ |
| 269 | |
| 270 | /** |
| 271 | * adjust_jiffies - adjust the system "loops_per_jiffy" |
| 272 | * |
| 273 | * This function alters the system "loops_per_jiffy" for the clock |
| 274 | * speed change. Note that loops_per_jiffy cannot be updated on SMP |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 275 | * systems as each CPU might be scaled differently. So, use the arch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | * per-CPU loops_per_jiffy value wherever possible. |
| 277 | */ |
| 278 | #ifndef CONFIG_SMP |
| 279 | static unsigned long l_p_j_ref; |
| 280 | static unsigned int l_p_j_ref_freq; |
| 281 | |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 282 | static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | { |
| 284 | if (ci->flags & CPUFREQ_CONST_LOOPS) |
| 285 | return; |
| 286 | |
| 287 | if (!l_p_j_ref_freq) { |
| 288 | l_p_j_ref = loops_per_jiffy; |
| 289 | l_p_j_ref_freq = ci->old; |
Joe Perches | a4a9df5 | 2007-11-19 17:48:06 -0800 | [diff] [blame] | 290 | dprintk("saving %lu as reference value for loops_per_jiffy; " |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 291 | "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } |
| 293 | if ((val == CPUFREQ_PRECHANGE && ci->old < ci->new) || |
| 294 | (val == CPUFREQ_POSTCHANGE && ci->old > ci->new) || |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 295 | (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) { |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 296 | loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq, |
| 297 | ci->new); |
Joe Perches | a4a9df5 | 2007-11-19 17:48:06 -0800 | [diff] [blame] | 298 | dprintk("scaling loops_per_jiffy to %lu " |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 299 | "for frequency %u kHz\n", loops_per_jiffy, ci->new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } |
| 301 | } |
| 302 | #else |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 303 | static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci) |
| 304 | { |
| 305 | return; |
| 306 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | #endif |
| 308 | |
| 309 | |
| 310 | /** |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 311 | * cpufreq_notify_transition - call notifier chain and adjust_jiffies |
| 312 | * on frequency transition. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | * |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 314 | * This function calls the transition notifiers and the "adjust_jiffies" |
| 315 | * function. It is called twice on all CPU frequency changes that have |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 316 | * external effects. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | */ |
| 318 | void cpufreq_notify_transition(struct cpufreq_freqs *freqs, unsigned int state) |
| 319 | { |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 320 | struct cpufreq_policy *policy; |
| 321 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | BUG_ON(irqs_disabled()); |
| 323 | |
| 324 | freqs->flags = cpufreq_driver->flags; |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 325 | dprintk("notification %u of frequency transition to %u kHz\n", |
| 326 | state, freqs->new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 328 | policy = cpufreq_cpu_data[freqs->cpu]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | switch (state) { |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | case CPUFREQ_PRECHANGE: |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 332 | /* detect if the driver reported a value as "old frequency" |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 333 | * which is not equal to what the cpufreq core thinks is |
| 334 | * "old frequency". |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | */ |
| 336 | if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) { |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 337 | if ((policy) && (policy->cpu == freqs->cpu) && |
| 338 | (policy->cur) && (policy->cur != freqs->old)) { |
Jan Beulich | b10eec2 | 2006-04-28 13:47:13 +0200 | [diff] [blame] | 339 | dprintk("Warning: CPU frequency is" |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 340 | " %u, cpufreq assumed %u kHz.\n", |
| 341 | freqs->old, policy->cur); |
| 342 | freqs->old = policy->cur; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |
| 344 | } |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 345 | srcu_notifier_call_chain(&cpufreq_transition_notifier_list, |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 346 | CPUFREQ_PRECHANGE, freqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | adjust_jiffies(CPUFREQ_PRECHANGE, freqs); |
| 348 | break; |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | case CPUFREQ_POSTCHANGE: |
| 351 | adjust_jiffies(CPUFREQ_POSTCHANGE, freqs); |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 352 | srcu_notifier_call_chain(&cpufreq_transition_notifier_list, |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 353 | CPUFREQ_POSTCHANGE, freqs); |
Dave Jones | e4472cb | 2006-01-31 15:53:55 -0800 | [diff] [blame] | 354 | if (likely(policy) && likely(policy->cpu == freqs->cpu)) |
| 355 | policy->cur = freqs->new; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | break; |
| 357 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | } |
| 359 | EXPORT_SYMBOL_GPL(cpufreq_notify_transition); |
| 360 | |
| 361 | |
| 362 | |
| 363 | /********************************************************************* |
| 364 | * SYSFS INTERFACE * |
| 365 | *********************************************************************/ |
| 366 | |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 367 | static struct cpufreq_governor *__find_governor(const char *str_governor) |
| 368 | { |
| 369 | struct cpufreq_governor *t; |
| 370 | |
| 371 | list_for_each_entry(t, &cpufreq_governor_list, governor_list) |
| 372 | if (!strnicmp(str_governor,t->name,CPUFREQ_NAME_LEN)) |
| 373 | return t; |
| 374 | |
| 375 | return NULL; |
| 376 | } |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | /** |
| 379 | * cpufreq_parse_governor - parse a governor string |
| 380 | */ |
| 381 | static int cpufreq_parse_governor (char *str_governor, unsigned int *policy, |
| 382 | struct cpufreq_governor **governor) |
| 383 | { |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 384 | int err = -EINVAL; |
| 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | if (!cpufreq_driver) |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 387 | goto out; |
| 388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | if (cpufreq_driver->setpolicy) { |
| 390 | if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) { |
| 391 | *policy = CPUFREQ_POLICY_PERFORMANCE; |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 392 | err = 0; |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 393 | } else if (!strnicmp(str_governor, "powersave", |
| 394 | CPUFREQ_NAME_LEN)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | *policy = CPUFREQ_POLICY_POWERSAVE; |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 396 | err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 398 | } else if (cpufreq_driver->target) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | struct cpufreq_governor *t; |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 400 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 401 | mutex_lock(&cpufreq_governor_mutex); |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 402 | |
| 403 | t = __find_governor(str_governor); |
| 404 | |
Jeremy Fitzhardinge | ea71497 | 2006-07-06 12:32:01 -0700 | [diff] [blame] | 405 | if (t == NULL) { |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 406 | char *name = kasprintf(GFP_KERNEL, "cpufreq_%s", |
| 407 | str_governor); |
Jeremy Fitzhardinge | ea71497 | 2006-07-06 12:32:01 -0700 | [diff] [blame] | 408 | |
| 409 | if (name) { |
| 410 | int ret; |
| 411 | |
| 412 | mutex_unlock(&cpufreq_governor_mutex); |
| 413 | ret = request_module(name); |
| 414 | mutex_lock(&cpufreq_governor_mutex); |
| 415 | |
| 416 | if (ret == 0) |
| 417 | t = __find_governor(str_governor); |
| 418 | } |
| 419 | |
| 420 | kfree(name); |
| 421 | } |
| 422 | |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 423 | if (t != NULL) { |
| 424 | *governor = t; |
| 425 | err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 427 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 428 | mutex_unlock(&cpufreq_governor_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 430 | out: |
| 431 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | |
| 434 | |
| 435 | /* drivers/base/cpu.c */ |
| 436 | extern struct sysdev_class cpu_sysdev_class; |
| 437 | |
| 438 | |
| 439 | /** |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 440 | * cpufreq_per_cpu_attr_read() / show_##file_name() - |
| 441 | * print out cpufreq information |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | * |
| 443 | * Write out information from cpufreq_driver->policy[cpu]; object must be |
| 444 | * "unsigned int". |
| 445 | */ |
| 446 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 447 | #define show_one(file_name, object) \ |
| 448 | static ssize_t show_##file_name \ |
| 449 | (struct cpufreq_policy * policy, char *buf) \ |
| 450 | { \ |
| 451 | return sprintf (buf, "%u\n", policy->object); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | show_one(cpuinfo_min_freq, cpuinfo.min_freq); |
| 455 | show_one(cpuinfo_max_freq, cpuinfo.max_freq); |
| 456 | show_one(scaling_min_freq, min); |
| 457 | show_one(scaling_max_freq, max); |
| 458 | show_one(scaling_cur_freq, cur); |
| 459 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 460 | static int __cpufreq_set_policy(struct cpufreq_policy *data, |
| 461 | struct cpufreq_policy *policy); |
Thomas Renninger | 7970e08 | 2006-04-13 15:14:04 +0200 | [diff] [blame] | 462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | /** |
| 464 | * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access |
| 465 | */ |
| 466 | #define store_one(file_name, object) \ |
| 467 | static ssize_t store_##file_name \ |
| 468 | (struct cpufreq_policy * policy, const char *buf, size_t count) \ |
| 469 | { \ |
| 470 | unsigned int ret = -EINVAL; \ |
| 471 | struct cpufreq_policy new_policy; \ |
| 472 | \ |
| 473 | ret = cpufreq_get_policy(&new_policy, policy->cpu); \ |
| 474 | if (ret) \ |
| 475 | return -EINVAL; \ |
| 476 | \ |
| 477 | ret = sscanf (buf, "%u", &new_policy.object); \ |
| 478 | if (ret != 1) \ |
| 479 | return -EINVAL; \ |
| 480 | \ |
Thomas Renninger | 7970e08 | 2006-04-13 15:14:04 +0200 | [diff] [blame] | 481 | ret = __cpufreq_set_policy(policy, &new_policy); \ |
| 482 | policy->user_policy.object = policy->object; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | \ |
| 484 | return ret ? ret : count; \ |
| 485 | } |
| 486 | |
| 487 | store_one(scaling_min_freq,min); |
| 488 | store_one(scaling_max_freq,max); |
| 489 | |
| 490 | /** |
| 491 | * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware |
| 492 | */ |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 493 | static ssize_t show_cpuinfo_cur_freq (struct cpufreq_policy * policy, |
| 494 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | { |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 496 | unsigned int cur_freq = __cpufreq_get(policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | if (!cur_freq) |
| 498 | return sprintf(buf, "<unknown>"); |
| 499 | return sprintf(buf, "%u\n", cur_freq); |
| 500 | } |
| 501 | |
| 502 | |
| 503 | /** |
| 504 | * show_scaling_governor - show the current policy for the specified CPU |
| 505 | */ |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 506 | static ssize_t show_scaling_governor (struct cpufreq_policy * policy, |
| 507 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | { |
| 509 | if(policy->policy == CPUFREQ_POLICY_POWERSAVE) |
| 510 | return sprintf(buf, "powersave\n"); |
| 511 | else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE) |
| 512 | return sprintf(buf, "performance\n"); |
| 513 | else if (policy->governor) |
| 514 | return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", policy->governor->name); |
| 515 | return -EINVAL; |
| 516 | } |
| 517 | |
| 518 | |
| 519 | /** |
| 520 | * store_scaling_governor - store policy for the specified CPU |
| 521 | */ |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 522 | static ssize_t store_scaling_governor (struct cpufreq_policy * policy, |
| 523 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | { |
| 525 | unsigned int ret = -EINVAL; |
| 526 | char str_governor[16]; |
| 527 | struct cpufreq_policy new_policy; |
| 528 | |
| 529 | ret = cpufreq_get_policy(&new_policy, policy->cpu); |
| 530 | if (ret) |
| 531 | return ret; |
| 532 | |
| 533 | ret = sscanf (buf, "%15s", str_governor); |
| 534 | if (ret != 1) |
| 535 | return -EINVAL; |
| 536 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 537 | if (cpufreq_parse_governor(str_governor, &new_policy.policy, |
| 538 | &new_policy.governor)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | return -EINVAL; |
| 540 | |
Thomas Renninger | 7970e08 | 2006-04-13 15:14:04 +0200 | [diff] [blame] | 541 | /* Do not use cpufreq_set_policy here or the user_policy.max |
| 542 | will be wrongly overridden */ |
Thomas Renninger | 7970e08 | 2006-04-13 15:14:04 +0200 | [diff] [blame] | 543 | ret = __cpufreq_set_policy(policy, &new_policy); |
| 544 | |
| 545 | policy->user_policy.policy = policy->policy; |
| 546 | policy->user_policy.governor = policy->governor; |
Thomas Renninger | 7970e08 | 2006-04-13 15:14:04 +0200 | [diff] [blame] | 547 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 548 | if (ret) |
| 549 | return ret; |
| 550 | else |
| 551 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | /** |
| 555 | * show_scaling_driver - show the cpufreq driver currently loaded |
| 556 | */ |
| 557 | static ssize_t show_scaling_driver (struct cpufreq_policy * policy, char *buf) |
| 558 | { |
| 559 | return scnprintf(buf, CPUFREQ_NAME_LEN, "%s\n", cpufreq_driver->name); |
| 560 | } |
| 561 | |
| 562 | /** |
| 563 | * show_scaling_available_governors - show the available CPUfreq governors |
| 564 | */ |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 565 | static ssize_t show_scaling_available_governors (struct cpufreq_policy *policy, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | char *buf) |
| 567 | { |
| 568 | ssize_t i = 0; |
| 569 | struct cpufreq_governor *t; |
| 570 | |
| 571 | if (!cpufreq_driver->target) { |
| 572 | i += sprintf(buf, "performance powersave"); |
| 573 | goto out; |
| 574 | } |
| 575 | |
| 576 | list_for_each_entry(t, &cpufreq_governor_list, governor_list) { |
| 577 | if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char)) - (CPUFREQ_NAME_LEN + 2))) |
| 578 | goto out; |
| 579 | i += scnprintf(&buf[i], CPUFREQ_NAME_LEN, "%s ", t->name); |
| 580 | } |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 581 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | i += sprintf(&buf[i], "\n"); |
| 583 | return i; |
| 584 | } |
| 585 | /** |
| 586 | * show_affected_cpus - show the CPUs affected by each transition |
| 587 | */ |
| 588 | static ssize_t show_affected_cpus (struct cpufreq_policy * policy, char *buf) |
| 589 | { |
| 590 | ssize_t i = 0; |
| 591 | unsigned int cpu; |
| 592 | |
| 593 | for_each_cpu_mask(cpu, policy->cpus) { |
| 594 | if (i) |
| 595 | i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " "); |
| 596 | i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu); |
| 597 | if (i >= (PAGE_SIZE - 5)) |
| 598 | break; |
| 599 | } |
| 600 | i += sprintf(&buf[i], "\n"); |
| 601 | return i; |
| 602 | } |
| 603 | |
Venki Pallipadi | 9e76988 | 2007-10-26 10:18:21 -0700 | [diff] [blame] | 604 | static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy, |
| 605 | const char *buf, size_t count) |
| 606 | { |
| 607 | unsigned int freq = 0; |
| 608 | unsigned int ret; |
| 609 | |
| 610 | if (!policy->governor->store_setspeed) |
| 611 | return -EINVAL; |
| 612 | |
| 613 | ret = sscanf(buf, "%u", &freq); |
| 614 | if (ret != 1) |
| 615 | return -EINVAL; |
| 616 | |
| 617 | policy->governor->store_setspeed(policy, freq); |
| 618 | |
| 619 | return count; |
| 620 | } |
| 621 | |
| 622 | static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf) |
| 623 | { |
| 624 | if (!policy->governor->show_setspeed) |
| 625 | return sprintf(buf, "<unsupported>\n"); |
| 626 | |
| 627 | return policy->governor->show_setspeed(policy, buf); |
| 628 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | |
| 630 | #define define_one_ro(_name) \ |
| 631 | static struct freq_attr _name = \ |
| 632 | __ATTR(_name, 0444, show_##_name, NULL) |
| 633 | |
| 634 | #define define_one_ro0400(_name) \ |
| 635 | static struct freq_attr _name = \ |
| 636 | __ATTR(_name, 0400, show_##_name, NULL) |
| 637 | |
| 638 | #define define_one_rw(_name) \ |
| 639 | static struct freq_attr _name = \ |
| 640 | __ATTR(_name, 0644, show_##_name, store_##_name) |
| 641 | |
| 642 | define_one_ro0400(cpuinfo_cur_freq); |
| 643 | define_one_ro(cpuinfo_min_freq); |
| 644 | define_one_ro(cpuinfo_max_freq); |
| 645 | define_one_ro(scaling_available_governors); |
| 646 | define_one_ro(scaling_driver); |
| 647 | define_one_ro(scaling_cur_freq); |
| 648 | define_one_ro(affected_cpus); |
| 649 | define_one_rw(scaling_min_freq); |
| 650 | define_one_rw(scaling_max_freq); |
| 651 | define_one_rw(scaling_governor); |
Venki Pallipadi | 9e76988 | 2007-10-26 10:18:21 -0700 | [diff] [blame] | 652 | define_one_rw(scaling_setspeed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | |
| 654 | static struct attribute * default_attrs[] = { |
| 655 | &cpuinfo_min_freq.attr, |
| 656 | &cpuinfo_max_freq.attr, |
| 657 | &scaling_min_freq.attr, |
| 658 | &scaling_max_freq.attr, |
| 659 | &affected_cpus.attr, |
| 660 | &scaling_governor.attr, |
| 661 | &scaling_driver.attr, |
| 662 | &scaling_available_governors.attr, |
Venki Pallipadi | 9e76988 | 2007-10-26 10:18:21 -0700 | [diff] [blame] | 663 | &scaling_setspeed.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | NULL |
| 665 | }; |
| 666 | |
| 667 | #define to_policy(k) container_of(k,struct cpufreq_policy,kobj) |
| 668 | #define to_attr(a) container_of(a,struct freq_attr,attr) |
| 669 | |
| 670 | static ssize_t show(struct kobject * kobj, struct attribute * attr ,char * buf) |
| 671 | { |
| 672 | struct cpufreq_policy * policy = to_policy(kobj); |
| 673 | struct freq_attr * fattr = to_attr(attr); |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 674 | ssize_t ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | policy = cpufreq_cpu_get(policy->cpu); |
| 676 | if (!policy) |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 677 | goto no_policy; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 678 | |
| 679 | if (lock_policy_rwsem_read(policy->cpu) < 0) |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 680 | goto fail; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 681 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 682 | if (fattr->show) |
| 683 | ret = fattr->show(policy, buf); |
| 684 | else |
| 685 | ret = -EIO; |
| 686 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 687 | unlock_policy_rwsem_read(policy->cpu); |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 688 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | cpufreq_cpu_put(policy); |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 690 | no_policy: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | return ret; |
| 692 | } |
| 693 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 694 | static ssize_t store(struct kobject * kobj, struct attribute * attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | const char * buf, size_t count) |
| 696 | { |
| 697 | struct cpufreq_policy * policy = to_policy(kobj); |
| 698 | struct freq_attr * fattr = to_attr(attr); |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 699 | ssize_t ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | policy = cpufreq_cpu_get(policy->cpu); |
| 701 | if (!policy) |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 702 | goto no_policy; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 703 | |
| 704 | if (lock_policy_rwsem_write(policy->cpu) < 0) |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 705 | goto fail; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 706 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 707 | if (fattr->store) |
| 708 | ret = fattr->store(policy, buf, count); |
| 709 | else |
| 710 | ret = -EIO; |
| 711 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 712 | unlock_policy_rwsem_write(policy->cpu); |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 713 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | cpufreq_cpu_put(policy); |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 715 | no_policy: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | return ret; |
| 717 | } |
| 718 | |
| 719 | static void cpufreq_sysfs_release(struct kobject * kobj) |
| 720 | { |
| 721 | struct cpufreq_policy * policy = to_policy(kobj); |
| 722 | dprintk("last reference is dropped\n"); |
| 723 | complete(&policy->kobj_unregister); |
| 724 | } |
| 725 | |
| 726 | static struct sysfs_ops sysfs_ops = { |
| 727 | .show = show, |
| 728 | .store = store, |
| 729 | }; |
| 730 | |
| 731 | static struct kobj_type ktype_cpufreq = { |
| 732 | .sysfs_ops = &sysfs_ops, |
| 733 | .default_attrs = default_attrs, |
| 734 | .release = cpufreq_sysfs_release, |
| 735 | }; |
| 736 | |
| 737 | |
| 738 | /** |
| 739 | * cpufreq_add_dev - add a CPU device |
| 740 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 741 | * Adds the cpufreq interface for a CPU device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | */ |
| 743 | static int cpufreq_add_dev (struct sys_device * sys_dev) |
| 744 | { |
| 745 | unsigned int cpu = sys_dev->id; |
| 746 | int ret = 0; |
| 747 | struct cpufreq_policy new_policy; |
| 748 | struct cpufreq_policy *policy; |
| 749 | struct freq_attr **drv_attr; |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 750 | struct sys_device *cpu_sys_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | unsigned long flags; |
| 752 | unsigned int j; |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 753 | #ifdef CONFIG_SMP |
| 754 | struct cpufreq_policy *managed_policy; |
| 755 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 756 | |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 757 | if (cpu_is_offline(cpu)) |
| 758 | return 0; |
| 759 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | cpufreq_debug_disable_ratelimit(); |
| 761 | dprintk("adding CPU %u\n", cpu); |
| 762 | |
| 763 | #ifdef CONFIG_SMP |
| 764 | /* check whether a different CPU already registered this |
| 765 | * CPU because it is in the same boat. */ |
| 766 | policy = cpufreq_cpu_get(cpu); |
| 767 | if (unlikely(policy)) { |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 768 | cpufreq_cpu_put(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | cpufreq_debug_enable_ratelimit(); |
| 770 | return 0; |
| 771 | } |
| 772 | #endif |
| 773 | |
| 774 | if (!try_module_get(cpufreq_driver->owner)) { |
| 775 | ret = -EINVAL; |
| 776 | goto module_out; |
| 777 | } |
| 778 | |
Dave Jones | e98df50 | 2005-10-20 15:17:43 -0700 | [diff] [blame] | 779 | policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | if (!policy) { |
| 781 | ret = -ENOMEM; |
| 782 | goto nomem_out; |
| 783 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | |
| 785 | policy->cpu = cpu; |
| 786 | policy->cpus = cpumask_of_cpu(cpu); |
| 787 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 788 | /* Initially set CPU itself as the policy_cpu */ |
| 789 | per_cpu(policy_cpu, cpu) = cpu; |
| 790 | lock_policy_rwsem_write(cpu); |
| 791 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | init_completion(&policy->kobj_unregister); |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 793 | INIT_WORK(&policy->update, handle_update); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 794 | |
Thomas Renninger | 8122c6c | 2007-10-02 13:28:09 -0700 | [diff] [blame] | 795 | /* Set governor before ->init, so that driver could check it */ |
| 796 | policy->governor = CPUFREQ_DEFAULT_GOVERNOR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | /* call driver. From then on the cpufreq must be able |
| 798 | * to accept all calls to ->verify and ->setpolicy for this CPU |
| 799 | */ |
| 800 | ret = cpufreq_driver->init(policy); |
| 801 | if (ret) { |
| 802 | dprintk("initialization failed\n"); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 803 | unlock_policy_rwsem_write(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | goto err_out; |
| 805 | } |
Thomas Renninger | 22c970f | 2007-04-19 15:48:34 +0200 | [diff] [blame] | 806 | policy->user_policy.min = policy->cpuinfo.min_freq; |
| 807 | policy->user_policy.max = policy->cpuinfo.max_freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 809 | #ifdef CONFIG_SMP |
Thomas Renninger | 084f349 | 2007-07-09 11:35:28 -0700 | [diff] [blame] | 810 | |
| 811 | #ifdef CONFIG_HOTPLUG_CPU |
| 812 | if (cpufreq_cpu_governor[cpu]){ |
| 813 | policy->governor = cpufreq_cpu_governor[cpu]; |
| 814 | dprintk("Restoring governor %s for cpu %d\n", |
| 815 | policy->governor->name, cpu); |
| 816 | } |
| 817 | #endif |
| 818 | |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 819 | for_each_cpu_mask(j, policy->cpus) { |
| 820 | if (cpu == j) |
| 821 | continue; |
| 822 | |
| 823 | /* check for existing affected CPUs. They may not be aware |
| 824 | * of it due to CPU Hotplug. |
| 825 | */ |
| 826 | managed_policy = cpufreq_cpu_get(j); |
| 827 | if (unlikely(managed_policy)) { |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 828 | |
| 829 | /* Set proper policy_cpu */ |
| 830 | unlock_policy_rwsem_write(cpu); |
| 831 | per_cpu(policy_cpu, cpu) = managed_policy->cpu; |
| 832 | |
| 833 | if (lock_policy_rwsem_write(cpu) < 0) |
| 834 | goto err_out_driver_exit; |
| 835 | |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 836 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 837 | managed_policy->cpus = policy->cpus; |
| 838 | cpufreq_cpu_data[cpu] = managed_policy; |
| 839 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 840 | |
| 841 | dprintk("CPU already managed, adding link\n"); |
Ahmed S. Darwish | 0142f9d | 2007-01-05 05:44:54 +0200 | [diff] [blame] | 842 | ret = sysfs_create_link(&sys_dev->kobj, |
| 843 | &managed_policy->kobj, |
| 844 | "cpufreq"); |
| 845 | if (ret) { |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 846 | unlock_policy_rwsem_write(cpu); |
Ahmed S. Darwish | 0142f9d | 2007-01-05 05:44:54 +0200 | [diff] [blame] | 847 | goto err_out_driver_exit; |
| 848 | } |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 849 | |
| 850 | cpufreq_debug_enable_ratelimit(); |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 851 | ret = 0; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 852 | unlock_policy_rwsem_write(cpu); |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 853 | goto err_out_driver_exit; /* call driver->exit() */ |
| 854 | } |
| 855 | } |
| 856 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | memcpy(&new_policy, policy, sizeof(struct cpufreq_policy)); |
| 858 | |
| 859 | /* prepare interface data */ |
Greg Kroah-Hartman | 038c5b3 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 860 | ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, &sys_dev->kobj, |
| 861 | "cpufreq"); |
Andrew Morton | f3876c1 | 2006-01-18 13:40:54 -0800 | [diff] [blame] | 862 | if (ret) { |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 863 | unlock_policy_rwsem_write(cpu); |
Venkatesh Pallipadi | 8085e1f | 2005-08-25 13:14:06 -0700 | [diff] [blame] | 864 | goto err_out_driver_exit; |
Andrew Morton | f3876c1 | 2006-01-18 13:40:54 -0800 | [diff] [blame] | 865 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | /* set up files for this cpu device */ |
| 867 | drv_attr = cpufreq_driver->attr; |
| 868 | while ((drv_attr) && (*drv_attr)) { |
Tobias Klauser | 58a7295 | 2007-06-14 00:28:15 +0200 | [diff] [blame] | 869 | ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr)); |
Dave Jones | bd6cba5 | 2007-12-17 16:19:58 -0800 | [diff] [blame] | 870 | if (ret) { |
| 871 | unlock_policy_rwsem_write(cpu); |
Thomas Renninger | 0a4b2cc | 2007-05-21 07:20:04 -0500 | [diff] [blame] | 872 | goto err_out_driver_exit; |
Dave Jones | bd6cba5 | 2007-12-17 16:19:58 -0800 | [diff] [blame] | 873 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | drv_attr++; |
| 875 | } |
Thomas Renninger | 0a4b2cc | 2007-05-21 07:20:04 -0500 | [diff] [blame] | 876 | if (cpufreq_driver->get){ |
Tobias Klauser | 58a7295 | 2007-06-14 00:28:15 +0200 | [diff] [blame] | 877 | ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr); |
Dave Jones | bd6cba5 | 2007-12-17 16:19:58 -0800 | [diff] [blame] | 878 | if (ret) { |
| 879 | unlock_policy_rwsem_write(cpu); |
Thomas Renninger | 0a4b2cc | 2007-05-21 07:20:04 -0500 | [diff] [blame] | 880 | goto err_out_driver_exit; |
Dave Jones | bd6cba5 | 2007-12-17 16:19:58 -0800 | [diff] [blame] | 881 | } |
Thomas Renninger | 0a4b2cc | 2007-05-21 07:20:04 -0500 | [diff] [blame] | 882 | } |
| 883 | if (cpufreq_driver->target){ |
Tobias Klauser | 58a7295 | 2007-06-14 00:28:15 +0200 | [diff] [blame] | 884 | ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr); |
Dave Jones | bd6cba5 | 2007-12-17 16:19:58 -0800 | [diff] [blame] | 885 | if (ret) { |
| 886 | unlock_policy_rwsem_write(cpu); |
Thomas Renninger | 0a4b2cc | 2007-05-21 07:20:04 -0500 | [diff] [blame] | 887 | goto err_out_driver_exit; |
Dave Jones | bd6cba5 | 2007-12-17 16:19:58 -0800 | [diff] [blame] | 888 | } |
Thomas Renninger | 0a4b2cc | 2007-05-21 07:20:04 -0500 | [diff] [blame] | 889 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | |
| 891 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 892 | for_each_cpu_mask(j, policy->cpus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | cpufreq_cpu_data[j] = policy; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 894 | per_cpu(policy_cpu, j) = policy->cpu; |
| 895 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 897 | |
| 898 | /* symlink affected CPUs */ |
| 899 | for_each_cpu_mask(j, policy->cpus) { |
| 900 | if (j == cpu) |
| 901 | continue; |
| 902 | if (!cpu_online(j)) |
| 903 | continue; |
| 904 | |
Dave Jones | 1f8b2c9 | 2006-03-29 01:40:04 -0500 | [diff] [blame] | 905 | dprintk("CPU %u already managed, adding link\n", j); |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 906 | cpufreq_cpu_get(cpu); |
| 907 | cpu_sys_dev = get_cpu_sysdev(j); |
Ahmed S. Darwish | 0142f9d | 2007-01-05 05:44:54 +0200 | [diff] [blame] | 908 | ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj, |
| 909 | "cpufreq"); |
| 910 | if (ret) { |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 911 | unlock_policy_rwsem_write(cpu); |
Ahmed S. Darwish | 0142f9d | 2007-01-05 05:44:54 +0200 | [diff] [blame] | 912 | goto err_out_unregister; |
| 913 | } |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 914 | } |
| 915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | policy->governor = NULL; /* to assure that the starting sequence is |
| 917 | * run in cpufreq_set_policy */ |
Dave Jones | 87c3227 | 2006-03-29 01:48:37 -0500 | [diff] [blame] | 918 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | /* set default policy */ |
Thomas Renninger | 22c970f | 2007-04-19 15:48:34 +0200 | [diff] [blame] | 920 | ret = __cpufreq_set_policy(policy, &new_policy); |
| 921 | policy->user_policy.policy = policy->policy; |
Thomas Renninger | 084f349 | 2007-07-09 11:35:28 -0700 | [diff] [blame] | 922 | policy->user_policy.governor = policy->governor; |
Thomas Renninger | 22c970f | 2007-04-19 15:48:34 +0200 | [diff] [blame] | 923 | |
| 924 | unlock_policy_rwsem_write(cpu); |
| 925 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | if (ret) { |
| 927 | dprintk("setting policy failed\n"); |
| 928 | goto err_out_unregister; |
| 929 | } |
| 930 | |
Greg Kroah-Hartman | 038c5b3 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 931 | kobject_uevent(&policy->kobj, KOBJ_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | module_put(cpufreq_driver->owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | dprintk("initialization complete\n"); |
| 934 | cpufreq_debug_enable_ratelimit(); |
Dave Jones | 87c3227 | 2006-03-29 01:48:37 -0500 | [diff] [blame] | 935 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | return 0; |
| 937 | |
| 938 | |
| 939 | err_out_unregister: |
| 940 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 941 | for_each_cpu_mask(j, policy->cpus) |
| 942 | cpufreq_cpu_data[j] = NULL; |
| 943 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 944 | |
Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 945 | kobject_put(&policy->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | wait_for_completion(&policy->kobj_unregister); |
| 947 | |
Venkatesh Pallipadi | 8085e1f | 2005-08-25 13:14:06 -0700 | [diff] [blame] | 948 | err_out_driver_exit: |
| 949 | if (cpufreq_driver->exit) |
| 950 | cpufreq_driver->exit(policy); |
| 951 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | err_out: |
| 953 | kfree(policy); |
| 954 | |
| 955 | nomem_out: |
| 956 | module_put(cpufreq_driver->owner); |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 957 | module_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 958 | cpufreq_debug_enable_ratelimit(); |
| 959 | return ret; |
| 960 | } |
| 961 | |
| 962 | |
| 963 | /** |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 964 | * __cpufreq_remove_dev - remove a CPU device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | * |
| 966 | * Removes the cpufreq interface for a CPU device. |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 967 | * Caller should already have policy_rwsem in write mode for this CPU. |
| 968 | * This routine frees the rwsem before returning. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | */ |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 970 | static int __cpufreq_remove_dev (struct sys_device * sys_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 971 | { |
| 972 | unsigned int cpu = sys_dev->id; |
| 973 | unsigned long flags; |
| 974 | struct cpufreq_policy *data; |
| 975 | #ifdef CONFIG_SMP |
Grant Coady | e738cf6 | 2005-11-21 21:32:28 -0800 | [diff] [blame] | 976 | struct sys_device *cpu_sys_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | unsigned int j; |
| 978 | #endif |
| 979 | |
| 980 | cpufreq_debug_disable_ratelimit(); |
| 981 | dprintk("unregistering CPU %u\n", cpu); |
| 982 | |
| 983 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 984 | data = cpufreq_cpu_data[cpu]; |
| 985 | |
| 986 | if (!data) { |
| 987 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | cpufreq_debug_enable_ratelimit(); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 989 | unlock_policy_rwsem_write(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | return -EINVAL; |
| 991 | } |
| 992 | cpufreq_cpu_data[cpu] = NULL; |
| 993 | |
| 994 | |
| 995 | #ifdef CONFIG_SMP |
| 996 | /* if this isn't the CPU which is the parent of the kobj, we |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 997 | * only need to unlink, put and exit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | */ |
| 999 | if (unlikely(cpu != data->cpu)) { |
| 1000 | dprintk("removing link\n"); |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 1001 | cpu_clear(cpu, data->cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1003 | sysfs_remove_link(&sys_dev->kobj, "cpufreq"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | cpufreq_cpu_put(data); |
| 1005 | cpufreq_debug_enable_ratelimit(); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1006 | unlock_policy_rwsem_write(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | return 0; |
| 1008 | } |
| 1009 | #endif |
| 1010 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | #ifdef CONFIG_SMP |
Thomas Renninger | 084f349 | 2007-07-09 11:35:28 -0700 | [diff] [blame] | 1012 | |
| 1013 | #ifdef CONFIG_HOTPLUG_CPU |
| 1014 | cpufreq_cpu_governor[cpu] = data->governor; |
| 1015 | #endif |
| 1016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | /* if we have other CPUs still registered, we need to unlink them, |
| 1018 | * or else wait_for_completion below will lock up. Clean the |
| 1019 | * cpufreq_cpu_data[] while holding the lock, and remove the sysfs |
| 1020 | * links afterwards. |
| 1021 | */ |
| 1022 | if (unlikely(cpus_weight(data->cpus) > 1)) { |
| 1023 | for_each_cpu_mask(j, data->cpus) { |
| 1024 | if (j == cpu) |
| 1025 | continue; |
| 1026 | cpufreq_cpu_data[j] = NULL; |
| 1027 | } |
| 1028 | } |
| 1029 | |
| 1030 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1031 | |
| 1032 | if (unlikely(cpus_weight(data->cpus) > 1)) { |
| 1033 | for_each_cpu_mask(j, data->cpus) { |
| 1034 | if (j == cpu) |
| 1035 | continue; |
| 1036 | dprintk("removing link for cpu %u\n", j); |
Thomas Renninger | 084f349 | 2007-07-09 11:35:28 -0700 | [diff] [blame] | 1037 | #ifdef CONFIG_HOTPLUG_CPU |
| 1038 | cpufreq_cpu_governor[j] = data->governor; |
| 1039 | #endif |
Ashok Raj | d434fca | 2005-10-30 14:59:52 -0800 | [diff] [blame] | 1040 | cpu_sys_dev = get_cpu_sysdev(j); |
| 1041 | sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | cpufreq_cpu_put(data); |
| 1043 | } |
| 1044 | } |
| 1045 | #else |
| 1046 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1047 | #endif |
| 1048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | if (cpufreq_driver->target) |
| 1050 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1051 | |
| 1052 | unlock_policy_rwsem_write(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | kobject_put(&data->kobj); |
| 1055 | |
| 1056 | /* we need to make sure that the underlying kobj is actually |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1057 | * not referenced anymore by anybody before we proceed with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1058 | * unloading. |
| 1059 | */ |
| 1060 | dprintk("waiting for dropping of refcount\n"); |
| 1061 | wait_for_completion(&data->kobj_unregister); |
| 1062 | dprintk("wait complete\n"); |
| 1063 | |
| 1064 | if (cpufreq_driver->exit) |
| 1065 | cpufreq_driver->exit(data); |
| 1066 | |
| 1067 | kfree(data); |
| 1068 | |
| 1069 | cpufreq_debug_enable_ratelimit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1070 | return 0; |
| 1071 | } |
| 1072 | |
| 1073 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1074 | static int cpufreq_remove_dev (struct sys_device * sys_dev) |
| 1075 | { |
| 1076 | unsigned int cpu = sys_dev->id; |
| 1077 | int retval; |
Venki Pallipadi | ec28297 | 2007-03-26 12:03:19 -0700 | [diff] [blame] | 1078 | |
| 1079 | if (cpu_is_offline(cpu)) |
| 1080 | return 0; |
| 1081 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1082 | if (unlikely(lock_policy_rwsem_write(cpu))) |
| 1083 | BUG(); |
| 1084 | |
| 1085 | retval = __cpufreq_remove_dev(sys_dev); |
| 1086 | return retval; |
| 1087 | } |
| 1088 | |
| 1089 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1090 | static void handle_update(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1091 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1092 | struct cpufreq_policy *policy = |
| 1093 | container_of(work, struct cpufreq_policy, update); |
| 1094 | unsigned int cpu = policy->cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | dprintk("handle_update for cpu %u called\n", cpu); |
| 1096 | cpufreq_update_policy(cpu); |
| 1097 | } |
| 1098 | |
| 1099 | /** |
| 1100 | * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble. |
| 1101 | * @cpu: cpu number |
| 1102 | * @old_freq: CPU frequency the kernel thinks the CPU runs at |
| 1103 | * @new_freq: CPU frequency the CPU actually runs at |
| 1104 | * |
| 1105 | * We adjust to current frequency first, and need to clean up later. So either call |
| 1106 | * to cpufreq_update_policy() or schedule handle_update()). |
| 1107 | */ |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1108 | static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq, |
| 1109 | unsigned int new_freq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1110 | { |
| 1111 | struct cpufreq_freqs freqs; |
| 1112 | |
Jan Beulich | b10eec2 | 2006-04-28 13:47:13 +0200 | [diff] [blame] | 1113 | dprintk("Warning: CPU frequency out of sync: cpufreq and timing " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1114 | "core thinks of %u, is %u kHz.\n", old_freq, new_freq); |
| 1115 | |
| 1116 | freqs.cpu = cpu; |
| 1117 | freqs.old = old_freq; |
| 1118 | freqs.new = new_freq; |
| 1119 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
| 1120 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
| 1121 | } |
| 1122 | |
| 1123 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1124 | /** |
Dhaval Giani | 4ab70df | 2006-12-13 14:49:15 +0530 | [diff] [blame] | 1125 | * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur |
Venkatesh Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 1126 | * @cpu: CPU number |
| 1127 | * |
| 1128 | * This is the last known freq, without actually getting it from the driver. |
| 1129 | * Return value will be same as what is shown in scaling_cur_freq in sysfs. |
| 1130 | */ |
| 1131 | unsigned int cpufreq_quick_get(unsigned int cpu) |
| 1132 | { |
| 1133 | struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1134 | unsigned int ret_freq = 0; |
Venkatesh Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 1135 | |
| 1136 | if (policy) { |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1137 | ret_freq = policy->cur; |
Venkatesh Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 1138 | cpufreq_cpu_put(policy); |
| 1139 | } |
| 1140 | |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame^] | 1141 | return ret_freq; |
Venkatesh Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 1142 | } |
| 1143 | EXPORT_SYMBOL(cpufreq_quick_get); |
| 1144 | |
| 1145 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1146 | static unsigned int __cpufreq_get(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | { |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1148 | struct cpufreq_policy *policy = cpufreq_cpu_data[cpu]; |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1149 | unsigned int ret_freq = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | if (!cpufreq_driver->get) |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame^] | 1152 | return ret_freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1153 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1154 | ret_freq = cpufreq_driver->get(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1156 | if (ret_freq && policy->cur && |
| 1157 | !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) { |
| 1158 | /* verify no discrepancy between actual and |
| 1159 | saved value exists */ |
| 1160 | if (unlikely(ret_freq != policy->cur)) { |
| 1161 | cpufreq_out_of_sync(cpu, policy->cur, ret_freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1162 | schedule_work(&policy->update); |
| 1163 | } |
| 1164 | } |
| 1165 | |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame^] | 1166 | return ret_freq; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1167 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1168 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1169 | /** |
| 1170 | * cpufreq_get - get the current CPU frequency (in kHz) |
| 1171 | * @cpu: CPU number |
| 1172 | * |
| 1173 | * Get the CPU current (static) CPU frequency |
| 1174 | */ |
| 1175 | unsigned int cpufreq_get(unsigned int cpu) |
| 1176 | { |
| 1177 | unsigned int ret_freq = 0; |
| 1178 | struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); |
| 1179 | |
| 1180 | if (!policy) |
| 1181 | goto out; |
| 1182 | |
| 1183 | if (unlikely(lock_policy_rwsem_read(cpu))) |
| 1184 | goto out_policy; |
| 1185 | |
| 1186 | ret_freq = __cpufreq_get(cpu); |
| 1187 | |
| 1188 | unlock_policy_rwsem_read(cpu); |
| 1189 | |
| 1190 | out_policy: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | cpufreq_cpu_put(policy); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1192 | out: |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame^] | 1193 | return ret_freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1194 | } |
| 1195 | EXPORT_SYMBOL(cpufreq_get); |
| 1196 | |
| 1197 | |
| 1198 | /** |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1199 | * cpufreq_suspend - let the low level driver prepare for suspend |
| 1200 | */ |
| 1201 | |
Bernard Blackham | e00d996 | 2005-07-07 17:56:42 -0700 | [diff] [blame] | 1202 | static int cpufreq_suspend(struct sys_device * sysdev, pm_message_t pmsg) |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1203 | { |
| 1204 | int cpu = sysdev->id; |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1205 | int ret = 0; |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1206 | unsigned int cur_freq = 0; |
| 1207 | struct cpufreq_policy *cpu_policy; |
| 1208 | |
Dave Jones | 0e37b15 | 2006-09-26 23:02:34 -0400 | [diff] [blame] | 1209 | dprintk("suspending cpu %u\n", cpu); |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1210 | |
| 1211 | if (!cpu_online(cpu)) |
| 1212 | return 0; |
| 1213 | |
| 1214 | /* we may be lax here as interrupts are off. Nonetheless |
| 1215 | * we need to grab the correct cpu policy, as to check |
| 1216 | * whether we really run on this CPU. |
| 1217 | */ |
| 1218 | |
| 1219 | cpu_policy = cpufreq_cpu_get(cpu); |
| 1220 | if (!cpu_policy) |
| 1221 | return -EINVAL; |
| 1222 | |
| 1223 | /* only handle each CPU group once */ |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1224 | if (unlikely(cpu_policy->cpu != cpu)) |
| 1225 | goto out; |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1226 | |
| 1227 | if (cpufreq_driver->suspend) { |
Bernard Blackham | e00d996 | 2005-07-07 17:56:42 -0700 | [diff] [blame] | 1228 | ret = cpufreq_driver->suspend(cpu_policy, pmsg); |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1229 | if (ret) { |
| 1230 | printk(KERN_ERR "cpufreq: suspend failed in ->suspend " |
| 1231 | "step on CPU %u\n", cpu_policy->cpu); |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1232 | goto out; |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1233 | } |
| 1234 | } |
| 1235 | |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1236 | if (cpufreq_driver->flags & CPUFREQ_CONST_LOOPS) |
| 1237 | goto out; |
| 1238 | |
| 1239 | if (cpufreq_driver->get) |
| 1240 | cur_freq = cpufreq_driver->get(cpu_policy->cpu); |
| 1241 | |
| 1242 | if (!cur_freq || !cpu_policy->cur) { |
| 1243 | printk(KERN_ERR "cpufreq: suspend failed to assert current " |
| 1244 | "frequency is what timing core thinks it is.\n"); |
| 1245 | goto out; |
| 1246 | } |
| 1247 | |
| 1248 | if (unlikely(cur_freq != cpu_policy->cur)) { |
| 1249 | struct cpufreq_freqs freqs; |
| 1250 | |
| 1251 | if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN)) |
Jan Beulich | b10eec2 | 2006-04-28 13:47:13 +0200 | [diff] [blame] | 1252 | dprintk("Warning: CPU frequency is %u, " |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1253 | "cpufreq assumed %u kHz.\n", |
| 1254 | cur_freq, cpu_policy->cur); |
| 1255 | |
| 1256 | freqs.cpu = cpu; |
| 1257 | freqs.old = cpu_policy->cur; |
| 1258 | freqs.new = cur_freq; |
| 1259 | |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 1260 | srcu_notifier_call_chain(&cpufreq_transition_notifier_list, |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1261 | CPUFREQ_SUSPENDCHANGE, &freqs); |
| 1262 | adjust_jiffies(CPUFREQ_SUSPENDCHANGE, &freqs); |
| 1263 | |
| 1264 | cpu_policy->cur = cur_freq; |
| 1265 | } |
| 1266 | |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 1267 | out: |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1268 | cpufreq_cpu_put(cpu_policy); |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1269 | return ret; |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1270 | } |
| 1271 | |
| 1272 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | * cpufreq_resume - restore proper CPU frequency handling after resume |
| 1274 | * |
| 1275 | * 1.) resume CPUfreq hardware support (cpufreq_driver->resume()) |
| 1276 | * 2.) if ->target and !CPUFREQ_CONST_LOOPS: verify we're in sync |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1277 | * 3.) schedule call cpufreq_update_policy() ASAP as interrupts are |
| 1278 | * restored. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | */ |
| 1280 | static int cpufreq_resume(struct sys_device * sysdev) |
| 1281 | { |
| 1282 | int cpu = sysdev->id; |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1283 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | struct cpufreq_policy *cpu_policy; |
| 1285 | |
| 1286 | dprintk("resuming cpu %u\n", cpu); |
| 1287 | |
| 1288 | if (!cpu_online(cpu)) |
| 1289 | return 0; |
| 1290 | |
| 1291 | /* we may be lax here as interrupts are off. Nonetheless |
| 1292 | * we need to grab the correct cpu policy, as to check |
| 1293 | * whether we really run on this CPU. |
| 1294 | */ |
| 1295 | |
| 1296 | cpu_policy = cpufreq_cpu_get(cpu); |
| 1297 | if (!cpu_policy) |
| 1298 | return -EINVAL; |
| 1299 | |
| 1300 | /* only handle each CPU group once */ |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1301 | if (unlikely(cpu_policy->cpu != cpu)) |
| 1302 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | |
| 1304 | if (cpufreq_driver->resume) { |
| 1305 | ret = cpufreq_driver->resume(cpu_policy); |
| 1306 | if (ret) { |
| 1307 | printk(KERN_ERR "cpufreq: resume failed in ->resume " |
| 1308 | "step on CPU %u\n", cpu_policy->cpu); |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1309 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | } |
| 1311 | } |
| 1312 | |
| 1313 | if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) { |
| 1314 | unsigned int cur_freq = 0; |
| 1315 | |
| 1316 | if (cpufreq_driver->get) |
| 1317 | cur_freq = cpufreq_driver->get(cpu_policy->cpu); |
| 1318 | |
| 1319 | if (!cur_freq || !cpu_policy->cur) { |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1320 | printk(KERN_ERR "cpufreq: resume failed to assert " |
| 1321 | "current frequency is what timing core " |
| 1322 | "thinks it is.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | goto out; |
| 1324 | } |
| 1325 | |
| 1326 | if (unlikely(cur_freq != cpu_policy->cur)) { |
| 1327 | struct cpufreq_freqs freqs; |
| 1328 | |
Benjamin Herrenschmidt | ac09f69 | 2005-05-02 16:25:10 +1000 | [diff] [blame] | 1329 | if (!(cpufreq_driver->flags & CPUFREQ_PM_NO_WARN)) |
Joe Perches | a4a9df5 | 2007-11-19 17:48:06 -0800 | [diff] [blame] | 1330 | dprintk("Warning: CPU frequency " |
Benjamin Herrenschmidt | ac09f69 | 2005-05-02 16:25:10 +1000 | [diff] [blame] | 1331 | "is %u, cpufreq assumed %u kHz.\n", |
| 1332 | cur_freq, cpu_policy->cur); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | |
| 1334 | freqs.cpu = cpu; |
| 1335 | freqs.old = cpu_policy->cur; |
| 1336 | freqs.new = cur_freq; |
| 1337 | |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 1338 | srcu_notifier_call_chain( |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1339 | &cpufreq_transition_notifier_list, |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1340 | CPUFREQ_RESUMECHANGE, &freqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | adjust_jiffies(CPUFREQ_RESUMECHANGE, &freqs); |
| 1342 | |
| 1343 | cpu_policy->cur = cur_freq; |
| 1344 | } |
| 1345 | } |
| 1346 | |
| 1347 | out: |
| 1348 | schedule_work(&cpu_policy->update); |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1349 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | cpufreq_cpu_put(cpu_policy); |
| 1351 | return ret; |
| 1352 | } |
| 1353 | |
| 1354 | static struct sysdev_driver cpufreq_sysdev_driver = { |
| 1355 | .add = cpufreq_add_dev, |
| 1356 | .remove = cpufreq_remove_dev, |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1357 | .suspend = cpufreq_suspend, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | .resume = cpufreq_resume, |
| 1359 | }; |
| 1360 | |
| 1361 | |
| 1362 | /********************************************************************* |
| 1363 | * NOTIFIER LISTS INTERFACE * |
| 1364 | *********************************************************************/ |
| 1365 | |
| 1366 | /** |
| 1367 | * cpufreq_register_notifier - register a driver with cpufreq |
| 1368 | * @nb: notifier function to register |
| 1369 | * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER |
| 1370 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1371 | * Add a driver to one of two lists: either a list of drivers that |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | * are notified about clock rate changes (once before and once after |
| 1373 | * the transition), or a list of drivers that are notified about |
| 1374 | * changes in cpufreq policy. |
| 1375 | * |
| 1376 | * This function may sleep, and has the same return conditions as |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1377 | * blocking_notifier_chain_register. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | */ |
| 1379 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list) |
| 1380 | { |
| 1381 | int ret; |
| 1382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | switch (list) { |
| 1384 | case CPUFREQ_TRANSITION_NOTIFIER: |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 1385 | ret = srcu_notifier_chain_register( |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1386 | &cpufreq_transition_notifier_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | break; |
| 1388 | case CPUFREQ_POLICY_NOTIFIER: |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1389 | ret = blocking_notifier_chain_register( |
| 1390 | &cpufreq_policy_notifier_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | break; |
| 1392 | default: |
| 1393 | ret = -EINVAL; |
| 1394 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | |
| 1396 | return ret; |
| 1397 | } |
| 1398 | EXPORT_SYMBOL(cpufreq_register_notifier); |
| 1399 | |
| 1400 | |
| 1401 | /** |
| 1402 | * cpufreq_unregister_notifier - unregister a driver with cpufreq |
| 1403 | * @nb: notifier block to be unregistered |
| 1404 | * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER |
| 1405 | * |
| 1406 | * Remove a driver from the CPU frequency notifier list. |
| 1407 | * |
| 1408 | * This function may sleep, and has the same return conditions as |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1409 | * blocking_notifier_chain_unregister. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | */ |
| 1411 | int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list) |
| 1412 | { |
| 1413 | int ret; |
| 1414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1415 | switch (list) { |
| 1416 | case CPUFREQ_TRANSITION_NOTIFIER: |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 1417 | ret = srcu_notifier_chain_unregister( |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1418 | &cpufreq_transition_notifier_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1419 | break; |
| 1420 | case CPUFREQ_POLICY_NOTIFIER: |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1421 | ret = blocking_notifier_chain_unregister( |
| 1422 | &cpufreq_policy_notifier_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | break; |
| 1424 | default: |
| 1425 | ret = -EINVAL; |
| 1426 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1427 | |
| 1428 | return ret; |
| 1429 | } |
| 1430 | EXPORT_SYMBOL(cpufreq_unregister_notifier); |
| 1431 | |
| 1432 | |
| 1433 | /********************************************************************* |
| 1434 | * GOVERNORS * |
| 1435 | *********************************************************************/ |
| 1436 | |
| 1437 | |
| 1438 | int __cpufreq_driver_target(struct cpufreq_policy *policy, |
| 1439 | unsigned int target_freq, |
| 1440 | unsigned int relation) |
| 1441 | { |
| 1442 | int retval = -EINVAL; |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1443 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu, |
| 1445 | target_freq, relation); |
| 1446 | if (cpu_online(policy->cpu) && cpufreq_driver->target) |
| 1447 | retval = cpufreq_driver->target(policy, target_freq, relation); |
Ashok Raj | 90d45d1 | 2005-11-08 21:34:24 -0800 | [diff] [blame] | 1448 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | return retval; |
| 1450 | } |
| 1451 | EXPORT_SYMBOL_GPL(__cpufreq_driver_target); |
| 1452 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1453 | int cpufreq_driver_target(struct cpufreq_policy *policy, |
| 1454 | unsigned int target_freq, |
| 1455 | unsigned int relation) |
| 1456 | { |
Dave Jones | cc993ca | 2005-07-28 09:43:56 -0700 | [diff] [blame] | 1457 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | |
| 1459 | policy = cpufreq_cpu_get(policy->cpu); |
| 1460 | if (!policy) |
| 1461 | return -EINVAL; |
| 1462 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1463 | if (unlikely(lock_policy_rwsem_write(policy->cpu))) |
| 1464 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1465 | |
| 1466 | ret = __cpufreq_driver_target(policy, target_freq, relation); |
| 1467 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1468 | unlock_policy_rwsem_write(policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1469 | |
| 1470 | cpufreq_cpu_put(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | return ret; |
| 1472 | } |
| 1473 | EXPORT_SYMBOL_GPL(cpufreq_driver_target); |
| 1474 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1475 | int __cpufreq_driver_getavg(struct cpufreq_policy *policy) |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 1476 | { |
| 1477 | int ret = 0; |
| 1478 | |
| 1479 | policy = cpufreq_cpu_get(policy->cpu); |
| 1480 | if (!policy) |
| 1481 | return -EINVAL; |
| 1482 | |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 1483 | if (cpu_online(policy->cpu) && cpufreq_driver->getavg) |
| 1484 | ret = cpufreq_driver->getavg(policy->cpu); |
| 1485 | |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 1486 | cpufreq_cpu_put(policy); |
| 1487 | return ret; |
| 1488 | } |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1489 | EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg); |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 1490 | |
Arjan van de Ven | 153d7f3 | 2006-07-26 15:40:07 +0200 | [diff] [blame] | 1491 | /* |
Arjan van de Ven | 153d7f3 | 2006-07-26 15:40:07 +0200 | [diff] [blame] | 1492 | * when "event" is CPUFREQ_GOV_LIMITS |
| 1493 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1495 | static int __cpufreq_governor(struct cpufreq_policy *policy, |
| 1496 | unsigned int event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1497 | { |
Dave Jones | cc993ca | 2005-07-28 09:43:56 -0700 | [diff] [blame] | 1498 | int ret; |
Thomas Renninger | 6afde10 | 2007-10-02 13:28:13 -0700 | [diff] [blame] | 1499 | |
| 1500 | /* Only must be defined when default governor is known to have latency |
| 1501 | restrictions, like e.g. conservative or ondemand. |
| 1502 | That this is the case is already ensured in Kconfig |
| 1503 | */ |
| 1504 | #ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE |
| 1505 | struct cpufreq_governor *gov = &cpufreq_gov_performance; |
| 1506 | #else |
| 1507 | struct cpufreq_governor *gov = NULL; |
| 1508 | #endif |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 1509 | |
| 1510 | if (policy->governor->max_transition_latency && |
| 1511 | policy->cpuinfo.transition_latency > |
| 1512 | policy->governor->max_transition_latency) { |
Thomas Renninger | 6afde10 | 2007-10-02 13:28:13 -0700 | [diff] [blame] | 1513 | if (!gov) |
| 1514 | return -EINVAL; |
| 1515 | else { |
| 1516 | printk(KERN_WARNING "%s governor failed, too long" |
| 1517 | " transition latency of HW, fallback" |
| 1518 | " to %s governor\n", |
| 1519 | policy->governor->name, |
| 1520 | gov->name); |
| 1521 | policy->governor = gov; |
| 1522 | } |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 1523 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1524 | |
| 1525 | if (!try_module_get(policy->governor->owner)) |
| 1526 | return -EINVAL; |
| 1527 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1528 | dprintk("__cpufreq_governor for CPU %u, event %u\n", |
| 1529 | policy->cpu, event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | ret = policy->governor->governor(policy, event); |
| 1531 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1532 | /* we keep one module reference alive for |
| 1533 | each CPU governed by this CPU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | if ((event != CPUFREQ_GOV_START) || ret) |
| 1535 | module_put(policy->governor->owner); |
| 1536 | if ((event == CPUFREQ_GOV_STOP) && !ret) |
| 1537 | module_put(policy->governor->owner); |
| 1538 | |
| 1539 | return ret; |
| 1540 | } |
| 1541 | |
| 1542 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | int cpufreq_register_governor(struct cpufreq_governor *governor) |
| 1544 | { |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 1545 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | |
| 1547 | if (!governor) |
| 1548 | return -EINVAL; |
| 1549 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 1550 | mutex_lock(&cpufreq_governor_mutex); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1551 | |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 1552 | err = -EBUSY; |
| 1553 | if (__find_governor(governor->name) == NULL) { |
| 1554 | err = 0; |
| 1555 | list_add(&governor->governor_list, &cpufreq_governor_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1556 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1558 | mutex_unlock(&cpufreq_governor_mutex); |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 1559 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | } |
| 1561 | EXPORT_SYMBOL_GPL(cpufreq_register_governor); |
| 1562 | |
| 1563 | |
| 1564 | void cpufreq_unregister_governor(struct cpufreq_governor *governor) |
| 1565 | { |
| 1566 | if (!governor) |
| 1567 | return; |
| 1568 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 1569 | mutex_lock(&cpufreq_governor_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1570 | list_del(&governor->governor_list); |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 1571 | mutex_unlock(&cpufreq_governor_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | return; |
| 1573 | } |
| 1574 | EXPORT_SYMBOL_GPL(cpufreq_unregister_governor); |
| 1575 | |
| 1576 | |
| 1577 | |
| 1578 | /********************************************************************* |
| 1579 | * POLICY INTERFACE * |
| 1580 | *********************************************************************/ |
| 1581 | |
| 1582 | /** |
| 1583 | * cpufreq_get_policy - get the current cpufreq_policy |
| 1584 | * @policy: struct cpufreq_policy into which the current cpufreq_policy is written |
| 1585 | * |
| 1586 | * Reads the current cpufreq policy. |
| 1587 | */ |
| 1588 | int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu) |
| 1589 | { |
| 1590 | struct cpufreq_policy *cpu_policy; |
| 1591 | if (!policy) |
| 1592 | return -EINVAL; |
| 1593 | |
| 1594 | cpu_policy = cpufreq_cpu_get(cpu); |
| 1595 | if (!cpu_policy) |
| 1596 | return -EINVAL; |
| 1597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1599 | |
| 1600 | cpufreq_cpu_put(cpu_policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1601 | return 0; |
| 1602 | } |
| 1603 | EXPORT_SYMBOL(cpufreq_get_policy); |
| 1604 | |
| 1605 | |
Arjan van de Ven | 153d7f3 | 2006-07-26 15:40:07 +0200 | [diff] [blame] | 1606 | /* |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1607 | * data : current policy. |
| 1608 | * policy : policy to be set. |
Arjan van de Ven | 153d7f3 | 2006-07-26 15:40:07 +0200 | [diff] [blame] | 1609 | */ |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1610 | static int __cpufreq_set_policy(struct cpufreq_policy *data, |
| 1611 | struct cpufreq_policy *policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | { |
| 1613 | int ret = 0; |
| 1614 | |
| 1615 | cpufreq_debug_disable_ratelimit(); |
| 1616 | dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu, |
| 1617 | policy->min, policy->max); |
| 1618 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1619 | memcpy(&policy->cpuinfo, &data->cpuinfo, |
| 1620 | sizeof(struct cpufreq_cpuinfo)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | |
Yi Yang | 53391fa | 2008-01-30 13:33:34 +0100 | [diff] [blame] | 1622 | if (policy->min > data->max || policy->max < data->min) { |
Mattia Dongili | 9c9a43e | 2006-07-05 23:12:20 +0200 | [diff] [blame] | 1623 | ret = -EINVAL; |
| 1624 | goto error_out; |
| 1625 | } |
| 1626 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | /* verify the cpu speed can be set within this limit */ |
| 1628 | ret = cpufreq_driver->verify(policy); |
| 1629 | if (ret) |
| 1630 | goto error_out; |
| 1631 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | /* adjust if necessary - all reasons */ |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1633 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
| 1634 | CPUFREQ_ADJUST, policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | |
| 1636 | /* adjust if necessary - hardware incompatibility*/ |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1637 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
| 1638 | CPUFREQ_INCOMPATIBLE, policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | |
| 1640 | /* verify the cpu speed can be set within this limit, |
| 1641 | which might be different to the first one */ |
| 1642 | ret = cpufreq_driver->verify(policy); |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1643 | if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | goto error_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | |
| 1646 | /* notification of the new policy */ |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1647 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
| 1648 | CPUFREQ_NOTIFY, policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 1650 | data->min = policy->min; |
| 1651 | data->max = policy->max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1652 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1653 | dprintk("new min and max freqs are %u - %u kHz\n", |
| 1654 | data->min, data->max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1655 | |
| 1656 | if (cpufreq_driver->setpolicy) { |
| 1657 | data->policy = policy->policy; |
| 1658 | dprintk("setting range\n"); |
| 1659 | ret = cpufreq_driver->setpolicy(policy); |
| 1660 | } else { |
| 1661 | if (policy->governor != data->governor) { |
| 1662 | /* save old, working values */ |
| 1663 | struct cpufreq_governor *old_gov = data->governor; |
| 1664 | |
| 1665 | dprintk("governor switch\n"); |
| 1666 | |
| 1667 | /* end old governor */ |
| 1668 | if (data->governor) |
| 1669 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); |
| 1670 | |
| 1671 | /* start new governor */ |
| 1672 | data->governor = policy->governor; |
| 1673 | if (__cpufreq_governor(data, CPUFREQ_GOV_START)) { |
| 1674 | /* new governor failed, so re-start old one */ |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1675 | dprintk("starting governor %s failed\n", |
| 1676 | data->governor->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | if (old_gov) { |
| 1678 | data->governor = old_gov; |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1679 | __cpufreq_governor(data, |
| 1680 | CPUFREQ_GOV_START); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1681 | } |
| 1682 | ret = -EINVAL; |
| 1683 | goto error_out; |
| 1684 | } |
| 1685 | /* might be a policy change, too, so fall through */ |
| 1686 | } |
| 1687 | dprintk("governor: change or update limits\n"); |
| 1688 | __cpufreq_governor(data, CPUFREQ_GOV_LIMITS); |
| 1689 | } |
| 1690 | |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 1691 | error_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1692 | cpufreq_debug_enable_ratelimit(); |
| 1693 | return ret; |
| 1694 | } |
| 1695 | |
| 1696 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1697 | * cpufreq_update_policy - re-evaluate an existing cpufreq policy |
| 1698 | * @cpu: CPU which shall be re-evaluated |
| 1699 | * |
| 1700 | * Usefull for policy notifiers which have different necessities |
| 1701 | * at different times. |
| 1702 | */ |
| 1703 | int cpufreq_update_policy(unsigned int cpu) |
| 1704 | { |
| 1705 | struct cpufreq_policy *data = cpufreq_cpu_get(cpu); |
| 1706 | struct cpufreq_policy policy; |
| 1707 | int ret = 0; |
| 1708 | |
| 1709 | if (!data) |
| 1710 | return -ENODEV; |
| 1711 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1712 | if (unlikely(lock_policy_rwsem_write(cpu))) |
| 1713 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1714 | |
| 1715 | dprintk("updating policy for CPU %u\n", cpu); |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 1716 | memcpy(&policy, data, sizeof(struct cpufreq_policy)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1717 | policy.min = data->user_policy.min; |
| 1718 | policy.max = data->user_policy.max; |
| 1719 | policy.policy = data->user_policy.policy; |
| 1720 | policy.governor = data->user_policy.governor; |
| 1721 | |
Thomas Renninger | 0961dd0 | 2006-01-26 18:46:33 +0100 | [diff] [blame] | 1722 | /* BIOS might change freq behind our back |
| 1723 | -> ask driver for current freq and notify governors about a change */ |
| 1724 | if (cpufreq_driver->get) { |
| 1725 | policy.cur = cpufreq_driver->get(cpu); |
Thomas Renninger | a85f7bd | 2006-02-01 11:36:04 +0100 | [diff] [blame] | 1726 | if (!data->cur) { |
| 1727 | dprintk("Driver did not initialize current freq"); |
| 1728 | data->cur = policy.cur; |
| 1729 | } else { |
| 1730 | if (data->cur != policy.cur) |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1731 | cpufreq_out_of_sync(cpu, data->cur, |
| 1732 | policy.cur); |
Thomas Renninger | a85f7bd | 2006-02-01 11:36:04 +0100 | [diff] [blame] | 1733 | } |
Thomas Renninger | 0961dd0 | 2006-01-26 18:46:33 +0100 | [diff] [blame] | 1734 | } |
| 1735 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | ret = __cpufreq_set_policy(data, &policy); |
| 1737 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1738 | unlock_policy_rwsem_write(cpu); |
| 1739 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | cpufreq_cpu_put(data); |
| 1741 | return ret; |
| 1742 | } |
| 1743 | EXPORT_SYMBOL(cpufreq_update_policy); |
| 1744 | |
Satyam Sharma | dd184a0 | 2007-10-02 13:28:14 -0700 | [diff] [blame] | 1745 | static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb, |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1746 | unsigned long action, void *hcpu) |
| 1747 | { |
| 1748 | unsigned int cpu = (unsigned long)hcpu; |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1749 | struct sys_device *sys_dev; |
| 1750 | |
| 1751 | sys_dev = get_cpu_sysdev(cpu); |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1752 | if (sys_dev) { |
| 1753 | switch (action) { |
| 1754 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1755 | case CPU_ONLINE_FROZEN: |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1756 | cpufreq_add_dev(sys_dev); |
| 1757 | break; |
| 1758 | case CPU_DOWN_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1759 | case CPU_DOWN_PREPARE_FROZEN: |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1760 | if (unlikely(lock_policy_rwsem_write(cpu))) |
| 1761 | BUG(); |
| 1762 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1763 | __cpufreq_remove_dev(sys_dev); |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1764 | break; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1765 | case CPU_DOWN_FAILED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1766 | case CPU_DOWN_FAILED_FROZEN: |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1767 | cpufreq_add_dev(sys_dev); |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1768 | break; |
| 1769 | } |
| 1770 | } |
| 1771 | return NOTIFY_OK; |
| 1772 | } |
| 1773 | |
Sam Ravnborg | f6ebef3 | 2008-02-17 13:22:52 +0100 | [diff] [blame] | 1774 | static struct notifier_block __refdata cpufreq_cpu_notifier = |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1775 | { |
| 1776 | .notifier_call = cpufreq_cpu_callback, |
| 1777 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | |
| 1779 | /********************************************************************* |
| 1780 | * REGISTER / UNREGISTER CPUFREQ DRIVER * |
| 1781 | *********************************************************************/ |
| 1782 | |
| 1783 | /** |
| 1784 | * cpufreq_register_driver - register a CPU Frequency driver |
| 1785 | * @driver_data: A struct cpufreq_driver containing the values# |
| 1786 | * submitted by the CPU Frequency driver. |
| 1787 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1788 | * Registers a CPU Frequency driver to this core code. This code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1789 | * returns zero on success, -EBUSY when another driver got here first |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1790 | * (and isn't unregistered in the meantime). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1791 | * |
| 1792 | */ |
Linus Torvalds | 221dee2 | 2007-02-26 14:55:48 -0800 | [diff] [blame] | 1793 | int cpufreq_register_driver(struct cpufreq_driver *driver_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1794 | { |
| 1795 | unsigned long flags; |
| 1796 | int ret; |
| 1797 | |
| 1798 | if (!driver_data || !driver_data->verify || !driver_data->init || |
| 1799 | ((!driver_data->setpolicy) && (!driver_data->target))) |
| 1800 | return -EINVAL; |
| 1801 | |
| 1802 | dprintk("trying to register driver %s\n", driver_data->name); |
| 1803 | |
| 1804 | if (driver_data->setpolicy) |
| 1805 | driver_data->flags |= CPUFREQ_CONST_LOOPS; |
| 1806 | |
| 1807 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 1808 | if (cpufreq_driver) { |
| 1809 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1810 | return -EBUSY; |
| 1811 | } |
| 1812 | cpufreq_driver = driver_data; |
| 1813 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1814 | |
| 1815 | ret = sysdev_driver_register(&cpu_sysdev_class,&cpufreq_sysdev_driver); |
| 1816 | |
| 1817 | if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) { |
| 1818 | int i; |
| 1819 | ret = -ENODEV; |
| 1820 | |
| 1821 | /* check for at least one working CPU */ |
| 1822 | for (i=0; i<NR_CPUS; i++) |
| 1823 | if (cpufreq_cpu_data[i]) |
| 1824 | ret = 0; |
| 1825 | |
| 1826 | /* if all ->init() calls failed, unregister */ |
| 1827 | if (ret) { |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1828 | dprintk("no CPU initialized for driver %s\n", |
| 1829 | driver_data->name); |
| 1830 | sysdev_driver_unregister(&cpu_sysdev_class, |
| 1831 | &cpufreq_sysdev_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | |
| 1833 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 1834 | cpufreq_driver = NULL; |
| 1835 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1836 | } |
| 1837 | } |
| 1838 | |
| 1839 | if (!ret) { |
Chandra Seetharaman | 65edc68 | 2006-06-27 02:54:08 -0700 | [diff] [blame] | 1840 | register_hotcpu_notifier(&cpufreq_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | dprintk("driver %s up and running\n", driver_data->name); |
| 1842 | cpufreq_debug_enable_ratelimit(); |
| 1843 | } |
| 1844 | |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame^] | 1845 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | } |
| 1847 | EXPORT_SYMBOL_GPL(cpufreq_register_driver); |
| 1848 | |
| 1849 | |
| 1850 | /** |
| 1851 | * cpufreq_unregister_driver - unregister the current CPUFreq driver |
| 1852 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1853 | * Unregister the current CPUFreq driver. Only call this if you have |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | * the right to do so, i.e. if you have succeeded in initialising before! |
| 1855 | * Returns zero if successful, and -EINVAL if the cpufreq_driver is |
| 1856 | * currently not initialised. |
| 1857 | */ |
Linus Torvalds | 221dee2 | 2007-02-26 14:55:48 -0800 | [diff] [blame] | 1858 | int cpufreq_unregister_driver(struct cpufreq_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1859 | { |
| 1860 | unsigned long flags; |
| 1861 | |
| 1862 | cpufreq_debug_disable_ratelimit(); |
| 1863 | |
| 1864 | if (!cpufreq_driver || (driver != cpufreq_driver)) { |
| 1865 | cpufreq_debug_enable_ratelimit(); |
| 1866 | return -EINVAL; |
| 1867 | } |
| 1868 | |
| 1869 | dprintk("unregistering driver %s\n", driver->name); |
| 1870 | |
| 1871 | sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver); |
Chandra Seetharaman | 65edc68 | 2006-06-27 02:54:08 -0700 | [diff] [blame] | 1872 | unregister_hotcpu_notifier(&cpufreq_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1873 | |
| 1874 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 1875 | cpufreq_driver = NULL; |
| 1876 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1877 | |
| 1878 | return 0; |
| 1879 | } |
| 1880 | EXPORT_SYMBOL_GPL(cpufreq_unregister_driver); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1881 | |
| 1882 | static int __init cpufreq_core_init(void) |
| 1883 | { |
| 1884 | int cpu; |
| 1885 | |
| 1886 | for_each_possible_cpu(cpu) { |
| 1887 | per_cpu(policy_cpu, cpu) = -1; |
| 1888 | init_rwsem(&per_cpu(cpu_policy_rwsem, cpu)); |
| 1889 | } |
| 1890 | return 0; |
| 1891 | } |
| 1892 | |
| 1893 | core_initcall(cpufreq_core_init); |