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