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 | */ |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 67 | static DEFINE_PER_CPU(int, cpufreq_policy_cpu); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 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 | { \ |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 74 | int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); \ |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 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 | { |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 93 | int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 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 | { |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 101 | int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 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 | |
Thomas Renninger | e2f74f3 | 2009-11-19 12:31:01 +0100 | [diff] [blame] | 650 | /** |
| 651 | * show_scaling_driver - show the current cpufreq HW/BIOS limitation |
| 652 | */ |
| 653 | static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf) |
| 654 | { |
| 655 | unsigned int limit; |
| 656 | int ret; |
| 657 | if (cpufreq_driver->bios_limit) { |
| 658 | ret = cpufreq_driver->bios_limit(policy->cpu, &limit); |
| 659 | if (!ret) |
| 660 | return sprintf(buf, "%u\n", limit); |
| 661 | } |
| 662 | return sprintf(buf, "%u\n", policy->cpuinfo.max_freq); |
| 663 | } |
| 664 | |
Borislav Petkov | 6dad2a2 | 2010-03-31 21:56:46 +0200 | [diff] [blame] | 665 | cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400); |
| 666 | cpufreq_freq_attr_ro(cpuinfo_min_freq); |
| 667 | cpufreq_freq_attr_ro(cpuinfo_max_freq); |
| 668 | cpufreq_freq_attr_ro(cpuinfo_transition_latency); |
| 669 | cpufreq_freq_attr_ro(scaling_available_governors); |
| 670 | cpufreq_freq_attr_ro(scaling_driver); |
| 671 | cpufreq_freq_attr_ro(scaling_cur_freq); |
| 672 | cpufreq_freq_attr_ro(bios_limit); |
| 673 | cpufreq_freq_attr_ro(related_cpus); |
| 674 | cpufreq_freq_attr_ro(affected_cpus); |
| 675 | cpufreq_freq_attr_rw(scaling_min_freq); |
| 676 | cpufreq_freq_attr_rw(scaling_max_freq); |
| 677 | cpufreq_freq_attr_rw(scaling_governor); |
| 678 | cpufreq_freq_attr_rw(scaling_setspeed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 680 | static struct attribute *default_attrs[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | &cpuinfo_min_freq.attr, |
| 682 | &cpuinfo_max_freq.attr, |
Thomas Renninger | ed12978 | 2009-02-04 01:17:41 +0100 | [diff] [blame] | 683 | &cpuinfo_transition_latency.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | &scaling_min_freq.attr, |
| 685 | &scaling_max_freq.attr, |
| 686 | &affected_cpus.attr, |
Darrick J. Wong | e8628dd | 2008-04-18 13:31:12 -0700 | [diff] [blame] | 687 | &related_cpus.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | &scaling_governor.attr, |
| 689 | &scaling_driver.attr, |
| 690 | &scaling_available_governors.attr, |
Venki Pallipadi | 9e76988 | 2007-10-26 10:18:21 -0700 | [diff] [blame] | 691 | &scaling_setspeed.attr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | NULL |
| 693 | }; |
| 694 | |
Thomas Renninger | 8aa84ad | 2009-07-24 15:25:05 +0200 | [diff] [blame] | 695 | struct kobject *cpufreq_global_kobject; |
| 696 | EXPORT_SYMBOL(cpufreq_global_kobject); |
| 697 | |
Dave Jones | 29464f2 | 2009-01-18 01:37:11 -0500 | [diff] [blame] | 698 | #define to_policy(k) container_of(k, struct cpufreq_policy, kobj) |
| 699 | #define to_attr(a) container_of(a, struct freq_attr, attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | |
Dave Jones | 29464f2 | 2009-01-18 01:37:11 -0500 | [diff] [blame] | 701 | static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | { |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 703 | struct cpufreq_policy *policy = to_policy(kobj); |
| 704 | struct freq_attr *fattr = to_attr(attr); |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 705 | ssize_t ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | policy = cpufreq_cpu_get(policy->cpu); |
| 707 | if (!policy) |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 708 | goto no_policy; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 709 | |
| 710 | if (lock_policy_rwsem_read(policy->cpu) < 0) |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 711 | goto fail; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 712 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 713 | if (fattr->show) |
| 714 | ret = fattr->show(policy, buf); |
| 715 | else |
| 716 | ret = -EIO; |
| 717 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 718 | unlock_policy_rwsem_read(policy->cpu); |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 719 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 720 | cpufreq_cpu_put(policy); |
Dave Jones | 0db4a8a | 2008-03-05 14:20:57 -0500 | [diff] [blame] | 721 | no_policy: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | return ret; |
| 723 | } |
| 724 | |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 725 | static ssize_t store(struct kobject *kobj, struct attribute *attr, |
| 726 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | { |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 728 | struct cpufreq_policy *policy = to_policy(kobj); |
| 729 | struct freq_attr *fattr = to_attr(attr); |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 730 | ssize_t ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | policy = cpufreq_cpu_get(policy->cpu); |
| 732 | if (!policy) |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 733 | goto no_policy; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 734 | |
| 735 | if (lock_policy_rwsem_write(policy->cpu) < 0) |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 736 | goto fail; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 737 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 738 | if (fattr->store) |
| 739 | ret = fattr->store(policy, buf, count); |
| 740 | else |
| 741 | ret = -EIO; |
| 742 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 743 | unlock_policy_rwsem_write(policy->cpu); |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 744 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | cpufreq_cpu_put(policy); |
Dave Jones | a07530b | 2008-03-05 14:22:25 -0500 | [diff] [blame] | 746 | no_policy: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | return ret; |
| 748 | } |
| 749 | |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 750 | static void cpufreq_sysfs_release(struct kobject *kobj) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 751 | { |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 752 | struct cpufreq_policy *policy = to_policy(kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | dprintk("last reference is dropped\n"); |
| 754 | complete(&policy->kobj_unregister); |
| 755 | } |
| 756 | |
Emese Revfy | 52cf25d | 2010-01-19 02:58:23 +0100 | [diff] [blame] | 757 | static const struct sysfs_ops sysfs_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 758 | .show = show, |
| 759 | .store = store, |
| 760 | }; |
| 761 | |
| 762 | static struct kobj_type ktype_cpufreq = { |
| 763 | .sysfs_ops = &sysfs_ops, |
| 764 | .default_attrs = default_attrs, |
| 765 | .release = cpufreq_sysfs_release, |
| 766 | }; |
| 767 | |
Thomas Renninger | 4bfa042 | 2009-07-24 15:25:03 +0200 | [diff] [blame] | 768 | /* |
| 769 | * Returns: |
| 770 | * Negative: Failure |
| 771 | * 0: Success |
| 772 | * Positive: When we have a managed CPU and the sysfs got symlinked |
| 773 | */ |
Alex Chiang | cf3289d0 | 2009-11-17 20:27:08 -0700 | [diff] [blame] | 774 | static int cpufreq_add_dev_policy(unsigned int cpu, |
| 775 | struct cpufreq_policy *policy, |
| 776 | struct sys_device *sys_dev) |
Dave Jones | ecf7e46 | 2009-07-08 18:48:47 -0400 | [diff] [blame] | 777 | { |
| 778 | int ret = 0; |
| 779 | #ifdef CONFIG_SMP |
| 780 | unsigned long flags; |
| 781 | unsigned int j; |
Dave Jones | ecf7e46 | 2009-07-08 18:48:47 -0400 | [diff] [blame] | 782 | #ifdef CONFIG_HOTPLUG_CPU |
Dmitry Monakhov | e77b89f | 2009-10-05 00:38:55 +0400 | [diff] [blame] | 783 | struct cpufreq_governor *gov; |
| 784 | |
| 785 | gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu)); |
| 786 | if (gov) { |
| 787 | policy->governor = gov; |
Dave Jones | ecf7e46 | 2009-07-08 18:48:47 -0400 | [diff] [blame] | 788 | dprintk("Restoring governor %s for cpu %d\n", |
| 789 | policy->governor->name, cpu); |
| 790 | } |
| 791 | #endif |
| 792 | |
| 793 | for_each_cpu(j, policy->cpus) { |
| 794 | struct cpufreq_policy *managed_policy; |
| 795 | |
| 796 | if (cpu == j) |
| 797 | continue; |
| 798 | |
| 799 | /* Check for existing affected CPUs. |
| 800 | * They may not be aware of it due to CPU Hotplug. |
| 801 | * cpufreq_cpu_put is called when the device is removed |
| 802 | * in __cpufreq_remove_dev() |
| 803 | */ |
| 804 | managed_policy = cpufreq_cpu_get(j); |
| 805 | if (unlikely(managed_policy)) { |
| 806 | |
| 807 | /* Set proper policy_cpu */ |
| 808 | unlock_policy_rwsem_write(cpu); |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 809 | per_cpu(cpufreq_policy_cpu, cpu) = managed_policy->cpu; |
Dave Jones | ecf7e46 | 2009-07-08 18:48:47 -0400 | [diff] [blame] | 810 | |
| 811 | if (lock_policy_rwsem_write(cpu) < 0) { |
| 812 | /* Should not go through policy unlock path */ |
| 813 | if (cpufreq_driver->exit) |
| 814 | cpufreq_driver->exit(policy); |
| 815 | cpufreq_cpu_put(managed_policy); |
| 816 | return -EBUSY; |
| 817 | } |
| 818 | |
| 819 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 820 | cpumask_copy(managed_policy->cpus, policy->cpus); |
| 821 | per_cpu(cpufreq_cpu_data, cpu) = managed_policy; |
| 822 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 823 | |
| 824 | dprintk("CPU already managed, adding link\n"); |
| 825 | ret = sysfs_create_link(&sys_dev->kobj, |
| 826 | &managed_policy->kobj, |
| 827 | "cpufreq"); |
| 828 | if (ret) |
| 829 | cpufreq_cpu_put(managed_policy); |
| 830 | /* |
| 831 | * Success. We only needed to be added to the mask. |
| 832 | * Call driver->exit() because only the cpu parent of |
| 833 | * the kobj needed to call init(). |
| 834 | */ |
| 835 | if (cpufreq_driver->exit) |
| 836 | cpufreq_driver->exit(policy); |
Thomas Renninger | 4bfa042 | 2009-07-24 15:25:03 +0200 | [diff] [blame] | 837 | |
| 838 | if (!ret) |
| 839 | return 1; |
| 840 | else |
| 841 | return ret; |
Dave Jones | ecf7e46 | 2009-07-08 18:48:47 -0400 | [diff] [blame] | 842 | } |
| 843 | } |
| 844 | #endif |
| 845 | return ret; |
| 846 | } |
| 847 | |
| 848 | |
Dave Jones | 19d6f7e | 2009-07-08 17:35:39 -0400 | [diff] [blame] | 849 | /* symlink affected CPUs */ |
Alex Chiang | cf3289d0 | 2009-11-17 20:27:08 -0700 | [diff] [blame] | 850 | static int cpufreq_add_dev_symlink(unsigned int cpu, |
| 851 | struct cpufreq_policy *policy) |
Dave Jones | 19d6f7e | 2009-07-08 17:35:39 -0400 | [diff] [blame] | 852 | { |
| 853 | unsigned int j; |
| 854 | int ret = 0; |
| 855 | |
| 856 | for_each_cpu(j, policy->cpus) { |
| 857 | struct cpufreq_policy *managed_policy; |
| 858 | struct sys_device *cpu_sys_dev; |
| 859 | |
| 860 | if (j == cpu) |
| 861 | continue; |
| 862 | if (!cpu_online(j)) |
| 863 | continue; |
| 864 | |
| 865 | dprintk("CPU %u already managed, adding link\n", j); |
| 866 | managed_policy = cpufreq_cpu_get(cpu); |
| 867 | cpu_sys_dev = get_cpu_sysdev(j); |
| 868 | ret = sysfs_create_link(&cpu_sys_dev->kobj, &policy->kobj, |
| 869 | "cpufreq"); |
| 870 | if (ret) { |
| 871 | cpufreq_cpu_put(managed_policy); |
| 872 | return ret; |
| 873 | } |
| 874 | } |
| 875 | return ret; |
| 876 | } |
| 877 | |
Alex Chiang | cf3289d0 | 2009-11-17 20:27:08 -0700 | [diff] [blame] | 878 | static int cpufreq_add_dev_interface(unsigned int cpu, |
| 879 | struct cpufreq_policy *policy, |
| 880 | struct sys_device *sys_dev) |
Dave Jones | 909a694 | 2009-07-08 18:05:42 -0400 | [diff] [blame] | 881 | { |
Dave Jones | ecf7e46 | 2009-07-08 18:48:47 -0400 | [diff] [blame] | 882 | struct cpufreq_policy new_policy; |
Dave Jones | 909a694 | 2009-07-08 18:05:42 -0400 | [diff] [blame] | 883 | struct freq_attr **drv_attr; |
| 884 | unsigned long flags; |
| 885 | int ret = 0; |
| 886 | unsigned int j; |
| 887 | |
| 888 | /* prepare interface data */ |
| 889 | ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, |
| 890 | &sys_dev->kobj, "cpufreq"); |
| 891 | if (ret) |
| 892 | return ret; |
| 893 | |
| 894 | /* set up files for this cpu device */ |
| 895 | drv_attr = cpufreq_driver->attr; |
| 896 | while ((drv_attr) && (*drv_attr)) { |
| 897 | ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr)); |
| 898 | if (ret) |
| 899 | goto err_out_kobj_put; |
| 900 | drv_attr++; |
| 901 | } |
| 902 | if (cpufreq_driver->get) { |
| 903 | ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr); |
| 904 | if (ret) |
| 905 | goto err_out_kobj_put; |
| 906 | } |
| 907 | if (cpufreq_driver->target) { |
| 908 | ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr); |
| 909 | if (ret) |
| 910 | goto err_out_kobj_put; |
| 911 | } |
Thomas Renninger | e2f74f3 | 2009-11-19 12:31:01 +0100 | [diff] [blame] | 912 | if (cpufreq_driver->bios_limit) { |
| 913 | ret = sysfs_create_file(&policy->kobj, &bios_limit.attr); |
| 914 | if (ret) |
| 915 | goto err_out_kobj_put; |
| 916 | } |
Dave Jones | 909a694 | 2009-07-08 18:05:42 -0400 | [diff] [blame] | 917 | |
| 918 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 919 | for_each_cpu(j, policy->cpus) { |
| 920 | if (!cpu_online(j)) |
| 921 | continue; |
| 922 | per_cpu(cpufreq_cpu_data, j) = policy; |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 923 | per_cpu(cpufreq_policy_cpu, j) = policy->cpu; |
Dave Jones | 909a694 | 2009-07-08 18:05:42 -0400 | [diff] [blame] | 924 | } |
| 925 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 926 | |
| 927 | ret = cpufreq_add_dev_symlink(cpu, policy); |
Dave Jones | ecf7e46 | 2009-07-08 18:48:47 -0400 | [diff] [blame] | 928 | if (ret) |
| 929 | goto err_out_kobj_put; |
| 930 | |
| 931 | memcpy(&new_policy, policy, sizeof(struct cpufreq_policy)); |
| 932 | /* assure that the starting sequence is run in __cpufreq_set_policy */ |
| 933 | policy->governor = NULL; |
| 934 | |
| 935 | /* set default policy */ |
| 936 | ret = __cpufreq_set_policy(policy, &new_policy); |
| 937 | policy->user_policy.policy = policy->policy; |
| 938 | policy->user_policy.governor = policy->governor; |
| 939 | |
| 940 | if (ret) { |
| 941 | dprintk("setting policy failed\n"); |
| 942 | if (cpufreq_driver->exit) |
| 943 | cpufreq_driver->exit(policy); |
| 944 | } |
Dave Jones | 909a694 | 2009-07-08 18:05:42 -0400 | [diff] [blame] | 945 | return ret; |
| 946 | |
| 947 | err_out_kobj_put: |
| 948 | kobject_put(&policy->kobj); |
| 949 | wait_for_completion(&policy->kobj_unregister); |
| 950 | return ret; |
| 951 | } |
| 952 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | |
| 954 | /** |
| 955 | * cpufreq_add_dev - add a CPU device |
| 956 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 957 | * Adds the cpufreq interface for a CPU device. |
Mathieu Desnoyers | 3f4a782 | 2009-07-03 11:25:16 -0400 | [diff] [blame] | 958 | * |
| 959 | * The Oracle says: try running cpufreq registration/unregistration concurrently |
| 960 | * with with cpu hotplugging and all hell will break loose. Tried to clean this |
| 961 | * mess up, but more thorough testing is needed. - Mathieu |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | */ |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 963 | static int cpufreq_add_dev(struct sys_device *sys_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | { |
| 965 | unsigned int cpu = sys_dev->id; |
Prarit Bhargava | 90e41ba | 2009-11-12 09:18:46 -0500 | [diff] [blame] | 966 | int ret = 0, found = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | struct cpufreq_policy *policy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | unsigned long flags; |
| 969 | unsigned int j; |
Prarit Bhargava | 90e41ba | 2009-11-12 09:18:46 -0500 | [diff] [blame] | 970 | #ifdef CONFIG_HOTPLUG_CPU |
| 971 | int sibling; |
| 972 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 974 | if (cpu_is_offline(cpu)) |
| 975 | return 0; |
| 976 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 977 | cpufreq_debug_disable_ratelimit(); |
| 978 | dprintk("adding CPU %u\n", cpu); |
| 979 | |
| 980 | #ifdef CONFIG_SMP |
| 981 | /* check whether a different CPU already registered this |
| 982 | * CPU because it is in the same boat. */ |
| 983 | policy = cpufreq_cpu_get(cpu); |
| 984 | if (unlikely(policy)) { |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 985 | cpufreq_cpu_put(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | cpufreq_debug_enable_ratelimit(); |
| 987 | return 0; |
| 988 | } |
| 989 | #endif |
| 990 | |
| 991 | if (!try_module_get(cpufreq_driver->owner)) { |
| 992 | ret = -EINVAL; |
| 993 | goto module_out; |
| 994 | } |
| 995 | |
Dave Jones | 059019a | 2009-07-08 16:30:03 -0400 | [diff] [blame] | 996 | ret = -ENOMEM; |
Dave Jones | e98df50 | 2005-10-20 15:17:43 -0700 | [diff] [blame] | 997 | policy = kzalloc(sizeof(struct cpufreq_policy), GFP_KERNEL); |
Dave Jones | 059019a | 2009-07-08 16:30:03 -0400 | [diff] [blame] | 998 | if (!policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 999 | goto nomem_out; |
Dave Jones | 059019a | 2009-07-08 16:30:03 -0400 | [diff] [blame] | 1000 | |
| 1001 | if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL)) |
Mathieu Desnoyers | 3f4a782 | 2009-07-03 11:25:16 -0400 | [diff] [blame] | 1002 | goto err_free_policy; |
Dave Jones | 059019a | 2009-07-08 16:30:03 -0400 | [diff] [blame] | 1003 | |
| 1004 | if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL)) |
Mathieu Desnoyers | 3f4a782 | 2009-07-03 11:25:16 -0400 | [diff] [blame] | 1005 | goto err_free_cpumask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1006 | |
| 1007 | policy->cpu = cpu; |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1008 | cpumask_copy(policy->cpus, cpumask_of(cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1010 | /* Initially set CPU itself as the policy_cpu */ |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 1011 | per_cpu(cpufreq_policy_cpu, cpu) = cpu; |
Mathieu Desnoyers | 3f4a782 | 2009-07-03 11:25:16 -0400 | [diff] [blame] | 1012 | ret = (lock_policy_rwsem_write(cpu) < 0); |
| 1013 | WARN_ON(ret); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1014 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | init_completion(&policy->kobj_unregister); |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1016 | INIT_WORK(&policy->update, handle_update); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
Thomas Renninger | 8122c6c | 2007-10-02 13:28:09 -0700 | [diff] [blame] | 1018 | /* Set governor before ->init, so that driver could check it */ |
Prarit Bhargava | 90e41ba | 2009-11-12 09:18:46 -0500 | [diff] [blame] | 1019 | #ifdef CONFIG_HOTPLUG_CPU |
| 1020 | for_each_online_cpu(sibling) { |
| 1021 | struct cpufreq_policy *cp = per_cpu(cpufreq_cpu_data, sibling); |
| 1022 | if (cp && cp->governor && |
| 1023 | (cpumask_test_cpu(cpu, cp->related_cpus))) { |
| 1024 | policy->governor = cp->governor; |
| 1025 | found = 1; |
| 1026 | break; |
| 1027 | } |
| 1028 | } |
| 1029 | #endif |
| 1030 | if (!found) |
| 1031 | policy->governor = CPUFREQ_DEFAULT_GOVERNOR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1032 | /* call driver. From then on the cpufreq must be able |
| 1033 | * to accept all calls to ->verify and ->setpolicy for this CPU |
| 1034 | */ |
| 1035 | ret = cpufreq_driver->init(policy); |
| 1036 | if (ret) { |
| 1037 | dprintk("initialization failed\n"); |
Mathieu Desnoyers | 3f4a782 | 2009-07-03 11:25:16 -0400 | [diff] [blame] | 1038 | goto err_unlock_policy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | } |
Mike Chan | 187d9f4 | 2008-12-04 12:19:17 -0800 | [diff] [blame] | 1040 | policy->user_policy.min = policy->min; |
| 1041 | policy->user_policy.max = policy->max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | |
Thomas Renninger | a1531ac | 2008-07-29 22:32:58 -0700 | [diff] [blame] | 1043 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
| 1044 | CPUFREQ_START, policy); |
| 1045 | |
Dave Jones | ecf7e46 | 2009-07-08 18:48:47 -0400 | [diff] [blame] | 1046 | ret = cpufreq_add_dev_policy(cpu, policy, sys_dev); |
Thomas Renninger | 4bfa042 | 2009-07-24 15:25:03 +0200 | [diff] [blame] | 1047 | if (ret) { |
| 1048 | if (ret > 0) |
| 1049 | /* This is a managed cpu, symlink created, |
| 1050 | exit with 0 */ |
| 1051 | ret = 0; |
Dave Jones | ecf7e46 | 2009-07-08 18:48:47 -0400 | [diff] [blame] | 1052 | goto err_unlock_policy; |
Thomas Renninger | 4bfa042 | 2009-07-24 15:25:03 +0200 | [diff] [blame] | 1053 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | |
Dave Jones | 909a694 | 2009-07-08 18:05:42 -0400 | [diff] [blame] | 1055 | ret = cpufreq_add_dev_interface(cpu, policy, sys_dev); |
Dave Jones | 19d6f7e | 2009-07-08 17:35:39 -0400 | [diff] [blame] | 1056 | if (ret) |
| 1057 | goto err_out_unregister; |
Dave Jones | 8ff6973 | 2006-03-05 03:37:23 -0500 | [diff] [blame] | 1058 | |
Lothar Waßmann | dca0261 | 2008-05-29 17:54:52 +0200 | [diff] [blame] | 1059 | unlock_policy_rwsem_write(cpu); |
| 1060 | |
Greg Kroah-Hartman | 038c5b3 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 1061 | kobject_uevent(&policy->kobj, KOBJ_ADD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | module_put(cpufreq_driver->owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | dprintk("initialization complete\n"); |
| 1064 | cpufreq_debug_enable_ratelimit(); |
Dave Jones | 87c3227 | 2006-03-29 01:48:37 -0500 | [diff] [blame] | 1065 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | return 0; |
| 1067 | |
| 1068 | |
| 1069 | err_out_unregister: |
| 1070 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1071 | for_each_cpu(j, policy->cpus) |
Mike Travis | 7a6aedf | 2008-03-25 15:06:53 -0700 | [diff] [blame] | 1072 | per_cpu(cpufreq_cpu_data, j) = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1074 | |
Greg Kroah-Hartman | c10997f | 2007-12-20 08:13:05 -0800 | [diff] [blame] | 1075 | kobject_put(&policy->kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1076 | wait_for_completion(&policy->kobj_unregister); |
| 1077 | |
Mathieu Desnoyers | 3f4a782 | 2009-07-03 11:25:16 -0400 | [diff] [blame] | 1078 | err_unlock_policy: |
Dave Jones | 4570911 | 2008-03-05 14:07:34 -0500 | [diff] [blame] | 1079 | unlock_policy_rwsem_write(cpu); |
Mathieu Desnoyers | 3f4a782 | 2009-07-03 11:25:16 -0400 | [diff] [blame] | 1080 | err_free_cpumask: |
| 1081 | free_cpumask_var(policy->cpus); |
| 1082 | err_free_policy: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1083 | kfree(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1084 | nomem_out: |
| 1085 | module_put(cpufreq_driver->owner); |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1086 | module_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | cpufreq_debug_enable_ratelimit(); |
| 1088 | return ret; |
| 1089 | } |
| 1090 | |
| 1091 | |
| 1092 | /** |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1093 | * __cpufreq_remove_dev - remove a CPU device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | * |
| 1095 | * Removes the cpufreq interface for a CPU device. |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1096 | * Caller should already have policy_rwsem in write mode for this CPU. |
| 1097 | * This routine frees the rwsem before returning. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | */ |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 1099 | static int __cpufreq_remove_dev(struct sys_device *sys_dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | { |
| 1101 | unsigned int cpu = sys_dev->id; |
| 1102 | unsigned long flags; |
| 1103 | struct cpufreq_policy *data; |
Amerigo Wang | 499bca9 | 2010-03-04 03:23:46 -0500 | [diff] [blame] | 1104 | struct kobject *kobj; |
| 1105 | struct completion *cmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | #ifdef CONFIG_SMP |
Grant Coady | e738cf6 | 2005-11-21 21:32:28 -0800 | [diff] [blame] | 1107 | struct sys_device *cpu_sys_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1108 | unsigned int j; |
| 1109 | #endif |
| 1110 | |
| 1111 | cpufreq_debug_disable_ratelimit(); |
| 1112 | dprintk("unregistering CPU %u\n", cpu); |
| 1113 | |
| 1114 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
Mike Travis | 7a6aedf | 2008-03-25 15:06:53 -0700 | [diff] [blame] | 1115 | data = per_cpu(cpufreq_cpu_data, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | |
| 1117 | if (!data) { |
| 1118 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | cpufreq_debug_enable_ratelimit(); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1120 | unlock_policy_rwsem_write(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | return -EINVAL; |
| 1122 | } |
Mike Travis | 7a6aedf | 2008-03-25 15:06:53 -0700 | [diff] [blame] | 1123 | per_cpu(cpufreq_cpu_data, cpu) = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1124 | |
| 1125 | |
| 1126 | #ifdef CONFIG_SMP |
| 1127 | /* 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] | 1128 | * only need to unlink, put and exit |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1129 | */ |
| 1130 | if (unlikely(cpu != data->cpu)) { |
| 1131 | dprintk("removing link\n"); |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1132 | cpumask_clear_cpu(cpu, data->cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
Amerigo Wang | 499bca9 | 2010-03-04 03:23:46 -0500 | [diff] [blame] | 1134 | kobj = &sys_dev->kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1135 | cpufreq_cpu_put(data); |
| 1136 | cpufreq_debug_enable_ratelimit(); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1137 | unlock_policy_rwsem_write(cpu); |
Amerigo Wang | 499bca9 | 2010-03-04 03:23:46 -0500 | [diff] [blame] | 1138 | sysfs_remove_link(kobj, "cpufreq"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | return 0; |
| 1140 | } |
| 1141 | #endif |
| 1142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | #ifdef CONFIG_SMP |
Thomas Renninger | 084f349 | 2007-07-09 11:35:28 -0700 | [diff] [blame] | 1144 | |
| 1145 | #ifdef CONFIG_HOTPLUG_CPU |
Dmitry Monakhov | e77b89f | 2009-10-05 00:38:55 +0400 | [diff] [blame] | 1146 | strncpy(per_cpu(cpufreq_cpu_governor, cpu), data->governor->name, |
| 1147 | CPUFREQ_NAME_LEN); |
Thomas Renninger | 084f349 | 2007-07-09 11:35:28 -0700 | [diff] [blame] | 1148 | #endif |
| 1149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | /* if we have other CPUs still registered, we need to unlink them, |
| 1151 | * or else wait_for_completion below will lock up. Clean the |
Mike Travis | 7a6aedf | 2008-03-25 15:06:53 -0700 | [diff] [blame] | 1152 | * per_cpu(cpufreq_cpu_data) while holding the lock, and remove |
| 1153 | * the sysfs links afterwards. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | */ |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1155 | if (unlikely(cpumask_weight(data->cpus) > 1)) { |
| 1156 | for_each_cpu(j, data->cpus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | if (j == cpu) |
| 1158 | continue; |
Mike Travis | 7a6aedf | 2008-03-25 15:06:53 -0700 | [diff] [blame] | 1159 | per_cpu(cpufreq_cpu_data, j) = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1160 | } |
| 1161 | } |
| 1162 | |
| 1163 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1164 | |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1165 | if (unlikely(cpumask_weight(data->cpus) > 1)) { |
| 1166 | for_each_cpu(j, data->cpus) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | if (j == cpu) |
| 1168 | continue; |
| 1169 | dprintk("removing link for cpu %u\n", j); |
Thomas Renninger | 084f349 | 2007-07-09 11:35:28 -0700 | [diff] [blame] | 1170 | #ifdef CONFIG_HOTPLUG_CPU |
Dmitry Monakhov | e77b89f | 2009-10-05 00:38:55 +0400 | [diff] [blame] | 1171 | strncpy(per_cpu(cpufreq_cpu_governor, j), |
| 1172 | data->governor->name, CPUFREQ_NAME_LEN); |
Thomas Renninger | 084f349 | 2007-07-09 11:35:28 -0700 | [diff] [blame] | 1173 | #endif |
Ashok Raj | d434fca | 2005-10-30 14:59:52 -0800 | [diff] [blame] | 1174 | cpu_sys_dev = get_cpu_sysdev(j); |
Amerigo Wang | 499bca9 | 2010-03-04 03:23:46 -0500 | [diff] [blame] | 1175 | kobj = &cpu_sys_dev->kobj; |
| 1176 | unlock_policy_rwsem_write(cpu); |
| 1177 | sysfs_remove_link(kobj, "cpufreq"); |
| 1178 | lock_policy_rwsem_write(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | cpufreq_cpu_put(data); |
| 1180 | } |
| 1181 | } |
| 1182 | #else |
| 1183 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1184 | #endif |
| 1185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | if (cpufreq_driver->target) |
| 1187 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1188 | |
Amerigo Wang | 499bca9 | 2010-03-04 03:23:46 -0500 | [diff] [blame] | 1189 | kobj = &data->kobj; |
| 1190 | cmp = &data->kobj_unregister; |
| 1191 | unlock_policy_rwsem_write(cpu); |
| 1192 | kobject_put(kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | |
| 1194 | /* we need to make sure that the underlying kobj is actually |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1195 | * not referenced anymore by anybody before we proceed with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | * unloading. |
| 1197 | */ |
| 1198 | dprintk("waiting for dropping of refcount\n"); |
Amerigo Wang | 499bca9 | 2010-03-04 03:23:46 -0500 | [diff] [blame] | 1199 | wait_for_completion(cmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | dprintk("wait complete\n"); |
| 1201 | |
Amerigo Wang | 499bca9 | 2010-03-04 03:23:46 -0500 | [diff] [blame] | 1202 | lock_policy_rwsem_write(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1203 | if (cpufreq_driver->exit) |
| 1204 | cpufreq_driver->exit(data); |
venkatesh.pallipadi@intel.com | 7d26e2d | 2009-07-02 17:08:30 -0700 | [diff] [blame] | 1205 | unlock_policy_rwsem_write(cpu); |
| 1206 | |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1207 | free_cpumask_var(data->related_cpus); |
| 1208 | free_cpumask_var(data->cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | kfree(data); |
Rusty Russell | 835481d | 2009-01-04 05:18:06 -0800 | [diff] [blame] | 1210 | per_cpu(cpufreq_cpu_data, cpu) = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1211 | |
| 1212 | cpufreq_debug_enable_ratelimit(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | return 0; |
| 1214 | } |
| 1215 | |
| 1216 | |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 1217 | static int cpufreq_remove_dev(struct sys_device *sys_dev) |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1218 | { |
| 1219 | unsigned int cpu = sys_dev->id; |
| 1220 | int retval; |
Venki Pallipadi | ec28297 | 2007-03-26 12:03:19 -0700 | [diff] [blame] | 1221 | |
| 1222 | if (cpu_is_offline(cpu)) |
| 1223 | return 0; |
| 1224 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1225 | if (unlikely(lock_policy_rwsem_write(cpu))) |
| 1226 | BUG(); |
| 1227 | |
| 1228 | retval = __cpufreq_remove_dev(sys_dev); |
| 1229 | return retval; |
| 1230 | } |
| 1231 | |
| 1232 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1233 | static void handle_update(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1234 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 1235 | struct cpufreq_policy *policy = |
| 1236 | container_of(work, struct cpufreq_policy, update); |
| 1237 | unsigned int cpu = policy->cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | dprintk("handle_update for cpu %u called\n", cpu); |
| 1239 | cpufreq_update_policy(cpu); |
| 1240 | } |
| 1241 | |
| 1242 | /** |
| 1243 | * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're in deep trouble. |
| 1244 | * @cpu: cpu number |
| 1245 | * @old_freq: CPU frequency the kernel thinks the CPU runs at |
| 1246 | * @new_freq: CPU frequency the CPU actually runs at |
| 1247 | * |
Dave Jones | 29464f2 | 2009-01-18 01:37:11 -0500 | [diff] [blame] | 1248 | * We adjust to current frequency first, and need to clean up later. |
| 1249 | * So either call to cpufreq_update_policy() or schedule handle_update()). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | */ |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1251 | static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq, |
| 1252 | unsigned int new_freq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | { |
| 1254 | struct cpufreq_freqs freqs; |
| 1255 | |
Jan Beulich | b10eec2 | 2006-04-28 13:47:13 +0200 | [diff] [blame] | 1256 | dprintk("Warning: CPU frequency out of sync: cpufreq and timing " |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | "core thinks of %u, is %u kHz.\n", old_freq, new_freq); |
| 1258 | |
| 1259 | freqs.cpu = cpu; |
| 1260 | freqs.old = old_freq; |
| 1261 | freqs.new = new_freq; |
| 1262 | cpufreq_notify_transition(&freqs, CPUFREQ_PRECHANGE); |
| 1263 | cpufreq_notify_transition(&freqs, CPUFREQ_POSTCHANGE); |
| 1264 | } |
| 1265 | |
| 1266 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1267 | /** |
Dhaval Giani | 4ab70df | 2006-12-13 14:49:15 +0530 | [diff] [blame] | 1268 | * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur |
Venkatesh Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 1269 | * @cpu: CPU number |
| 1270 | * |
| 1271 | * This is the last known freq, without actually getting it from the driver. |
| 1272 | * Return value will be same as what is shown in scaling_cur_freq in sysfs. |
| 1273 | */ |
| 1274 | unsigned int cpufreq_quick_get(unsigned int cpu) |
| 1275 | { |
| 1276 | struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1277 | unsigned int ret_freq = 0; |
Venkatesh Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 1278 | |
| 1279 | if (policy) { |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1280 | ret_freq = policy->cur; |
Venkatesh Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 1281 | cpufreq_cpu_put(policy); |
| 1282 | } |
| 1283 | |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame] | 1284 | return ret_freq; |
Venkatesh Pallipadi | 95235ca | 2005-12-02 10:43:20 -0800 | [diff] [blame] | 1285 | } |
| 1286 | EXPORT_SYMBOL(cpufreq_quick_get); |
| 1287 | |
| 1288 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1289 | static unsigned int __cpufreq_get(unsigned int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | { |
Mike Travis | 7a6aedf | 2008-03-25 15:06:53 -0700 | [diff] [blame] | 1291 | struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu); |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1292 | unsigned int ret_freq = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | if (!cpufreq_driver->get) |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame] | 1295 | return ret_freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1297 | ret_freq = cpufreq_driver->get(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1299 | if (ret_freq && policy->cur && |
| 1300 | !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) { |
| 1301 | /* verify no discrepancy between actual and |
| 1302 | saved value exists */ |
| 1303 | if (unlikely(ret_freq != policy->cur)) { |
| 1304 | cpufreq_out_of_sync(cpu, policy->cur, ret_freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | schedule_work(&policy->update); |
| 1306 | } |
| 1307 | } |
| 1308 | |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame] | 1309 | return ret_freq; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1310 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1312 | /** |
| 1313 | * cpufreq_get - get the current CPU frequency (in kHz) |
| 1314 | * @cpu: CPU number |
| 1315 | * |
| 1316 | * Get the CPU current (static) CPU frequency |
| 1317 | */ |
| 1318 | unsigned int cpufreq_get(unsigned int cpu) |
| 1319 | { |
| 1320 | unsigned int ret_freq = 0; |
| 1321 | struct cpufreq_policy *policy = cpufreq_cpu_get(cpu); |
| 1322 | |
| 1323 | if (!policy) |
| 1324 | goto out; |
| 1325 | |
| 1326 | if (unlikely(lock_policy_rwsem_read(cpu))) |
| 1327 | goto out_policy; |
| 1328 | |
| 1329 | ret_freq = __cpufreq_get(cpu); |
| 1330 | |
| 1331 | unlock_policy_rwsem_read(cpu); |
| 1332 | |
| 1333 | out_policy: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1334 | cpufreq_cpu_put(policy); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1335 | out: |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame] | 1336 | return ret_freq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | } |
| 1338 | EXPORT_SYMBOL(cpufreq_get); |
| 1339 | |
| 1340 | |
| 1341 | /** |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1342 | * cpufreq_suspend - let the low level driver prepare for suspend |
| 1343 | */ |
| 1344 | |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 1345 | static int cpufreq_suspend(struct sys_device *sysdev, pm_message_t pmsg) |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1346 | { |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1347 | int ret = 0; |
Dave Jones | 4bc5d34 | 2009-08-04 14:03:25 -0400 | [diff] [blame] | 1348 | |
Dave Jones | 4bc5d34 | 2009-08-04 14:03:25 -0400 | [diff] [blame] | 1349 | int cpu = sysdev->id; |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1350 | struct cpufreq_policy *cpu_policy; |
| 1351 | |
Dave Jones | 0e37b15 | 2006-09-26 23:02:34 -0400 | [diff] [blame] | 1352 | dprintk("suspending cpu %u\n", cpu); |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1353 | |
| 1354 | if (!cpu_online(cpu)) |
| 1355 | return 0; |
| 1356 | |
| 1357 | /* we may be lax here as interrupts are off. Nonetheless |
| 1358 | * we need to grab the correct cpu policy, as to check |
| 1359 | * whether we really run on this CPU. |
| 1360 | */ |
| 1361 | |
| 1362 | cpu_policy = cpufreq_cpu_get(cpu); |
| 1363 | if (!cpu_policy) |
| 1364 | return -EINVAL; |
| 1365 | |
| 1366 | /* only handle each CPU group once */ |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1367 | if (unlikely(cpu_policy->cpu != cpu)) |
| 1368 | goto out; |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1369 | |
| 1370 | if (cpufreq_driver->suspend) { |
Bernard Blackham | e00d996 | 2005-07-07 17:56:42 -0700 | [diff] [blame] | 1371 | ret = cpufreq_driver->suspend(cpu_policy, pmsg); |
Dominik Brodowski | ce6c399 | 2009-08-07 22:58:51 +0200 | [diff] [blame] | 1372 | if (ret) |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1373 | printk(KERN_ERR "cpufreq: suspend failed in ->suspend " |
| 1374 | "step on CPU %u\n", cpu_policy->cpu); |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1375 | } |
| 1376 | |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 1377 | out: |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1378 | cpufreq_cpu_put(cpu_policy); |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1379 | return ret; |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1380 | } |
| 1381 | |
| 1382 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | * cpufreq_resume - restore proper CPU frequency handling after resume |
| 1384 | * |
| 1385 | * 1.) resume CPUfreq hardware support (cpufreq_driver->resume()) |
Dominik Brodowski | ce6c399 | 2009-08-07 22:58:51 +0200 | [diff] [blame] | 1386 | * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are |
| 1387 | * restored. It will verify that the current freq is in sync with |
| 1388 | * what we believe it to be. This is a bit later than when it |
| 1389 | * should be, but nonethteless it's better than calling |
| 1390 | * cpufreq_driver->get() here which might re-enable interrupts... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1391 | */ |
Dave Jones | 905d77c | 2008-03-05 14:28:32 -0500 | [diff] [blame] | 1392 | static int cpufreq_resume(struct sys_device *sysdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1393 | { |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1394 | int ret = 0; |
Dave Jones | 4bc5d34 | 2009-08-04 14:03:25 -0400 | [diff] [blame] | 1395 | |
Dave Jones | 4bc5d34 | 2009-08-04 14:03:25 -0400 | [diff] [blame] | 1396 | int cpu = sysdev->id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | struct cpufreq_policy *cpu_policy; |
| 1398 | |
| 1399 | dprintk("resuming cpu %u\n", cpu); |
| 1400 | |
| 1401 | if (!cpu_online(cpu)) |
| 1402 | return 0; |
| 1403 | |
| 1404 | /* we may be lax here as interrupts are off. Nonetheless |
| 1405 | * we need to grab the correct cpu policy, as to check |
| 1406 | * whether we really run on this CPU. |
| 1407 | */ |
| 1408 | |
| 1409 | cpu_policy = cpufreq_cpu_get(cpu); |
| 1410 | if (!cpu_policy) |
| 1411 | return -EINVAL; |
| 1412 | |
| 1413 | /* only handle each CPU group once */ |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1414 | if (unlikely(cpu_policy->cpu != cpu)) |
| 1415 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1416 | |
| 1417 | if (cpufreq_driver->resume) { |
| 1418 | ret = cpufreq_driver->resume(cpu_policy); |
| 1419 | if (ret) { |
| 1420 | printk(KERN_ERR "cpufreq: resume failed in ->resume " |
| 1421 | "step on CPU %u\n", cpu_policy->cpu); |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1422 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | } |
| 1424 | } |
| 1425 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | schedule_work(&cpu_policy->update); |
Dominik Brodowski | ce6c399 | 2009-08-07 22:58:51 +0200 | [diff] [blame] | 1427 | |
Dave Jones | c906049 | 2008-02-07 16:32:18 -0500 | [diff] [blame] | 1428 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1429 | cpufreq_cpu_put(cpu_policy); |
| 1430 | return ret; |
| 1431 | } |
| 1432 | |
| 1433 | static struct sysdev_driver cpufreq_sysdev_driver = { |
| 1434 | .add = cpufreq_add_dev, |
| 1435 | .remove = cpufreq_remove_dev, |
Benjamin Herrenschmidt | 42d4dc3 | 2005-04-29 07:40:12 -0700 | [diff] [blame] | 1436 | .suspend = cpufreq_suspend, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1437 | .resume = cpufreq_resume, |
| 1438 | }; |
| 1439 | |
| 1440 | |
| 1441 | /********************************************************************* |
| 1442 | * NOTIFIER LISTS INTERFACE * |
| 1443 | *********************************************************************/ |
| 1444 | |
| 1445 | /** |
| 1446 | * cpufreq_register_notifier - register a driver with cpufreq |
| 1447 | * @nb: notifier function to register |
| 1448 | * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER |
| 1449 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1450 | * 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] | 1451 | * are notified about clock rate changes (once before and once after |
| 1452 | * the transition), or a list of drivers that are notified about |
| 1453 | * changes in cpufreq policy. |
| 1454 | * |
| 1455 | * This function may sleep, and has the same return conditions as |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1456 | * blocking_notifier_chain_register. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1457 | */ |
| 1458 | int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list) |
| 1459 | { |
| 1460 | int ret; |
| 1461 | |
Cesar Eduardo Barros | 74212ca | 2008-02-16 08:41:24 -0200 | [diff] [blame] | 1462 | WARN_ON(!init_cpufreq_transition_notifier_list_called); |
| 1463 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1464 | switch (list) { |
| 1465 | case CPUFREQ_TRANSITION_NOTIFIER: |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 1466 | ret = srcu_notifier_chain_register( |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1467 | &cpufreq_transition_notifier_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | break; |
| 1469 | case CPUFREQ_POLICY_NOTIFIER: |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1470 | ret = blocking_notifier_chain_register( |
| 1471 | &cpufreq_policy_notifier_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | break; |
| 1473 | default: |
| 1474 | ret = -EINVAL; |
| 1475 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | |
| 1477 | return ret; |
| 1478 | } |
| 1479 | EXPORT_SYMBOL(cpufreq_register_notifier); |
| 1480 | |
| 1481 | |
| 1482 | /** |
| 1483 | * cpufreq_unregister_notifier - unregister a driver with cpufreq |
| 1484 | * @nb: notifier block to be unregistered |
| 1485 | * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER |
| 1486 | * |
| 1487 | * Remove a driver from the CPU frequency notifier list. |
| 1488 | * |
| 1489 | * This function may sleep, and has the same return conditions as |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1490 | * blocking_notifier_chain_unregister. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | */ |
| 1492 | int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list) |
| 1493 | { |
| 1494 | int ret; |
| 1495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1496 | switch (list) { |
| 1497 | case CPUFREQ_TRANSITION_NOTIFIER: |
Alan Stern | b4dfdbb | 2006-10-04 02:17:06 -0700 | [diff] [blame] | 1498 | ret = srcu_notifier_chain_unregister( |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1499 | &cpufreq_transition_notifier_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | break; |
| 1501 | case CPUFREQ_POLICY_NOTIFIER: |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1502 | ret = blocking_notifier_chain_unregister( |
| 1503 | &cpufreq_policy_notifier_list, nb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | break; |
| 1505 | default: |
| 1506 | ret = -EINVAL; |
| 1507 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | |
| 1509 | return ret; |
| 1510 | } |
| 1511 | EXPORT_SYMBOL(cpufreq_unregister_notifier); |
| 1512 | |
| 1513 | |
| 1514 | /********************************************************************* |
| 1515 | * GOVERNORS * |
| 1516 | *********************************************************************/ |
| 1517 | |
| 1518 | |
| 1519 | int __cpufreq_driver_target(struct cpufreq_policy *policy, |
| 1520 | unsigned int target_freq, |
| 1521 | unsigned int relation) |
| 1522 | { |
| 1523 | int retval = -EINVAL; |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1524 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | dprintk("target for CPU %u: %u kHz, relation %u\n", policy->cpu, |
| 1526 | target_freq, relation); |
| 1527 | if (cpu_online(policy->cpu) && cpufreq_driver->target) |
| 1528 | retval = cpufreq_driver->target(policy, target_freq, relation); |
Ashok Raj | 90d45d1 | 2005-11-08 21:34:24 -0800 | [diff] [blame] | 1529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | return retval; |
| 1531 | } |
| 1532 | EXPORT_SYMBOL_GPL(__cpufreq_driver_target); |
| 1533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1534 | int cpufreq_driver_target(struct cpufreq_policy *policy, |
| 1535 | unsigned int target_freq, |
| 1536 | unsigned int relation) |
| 1537 | { |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1538 | int ret = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | |
| 1540 | policy = cpufreq_cpu_get(policy->cpu); |
| 1541 | if (!policy) |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1542 | goto no_policy; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1544 | if (unlikely(lock_policy_rwsem_write(policy->cpu))) |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1545 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | |
| 1547 | ret = __cpufreq_driver_target(policy, target_freq, relation); |
| 1548 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1549 | unlock_policy_rwsem_write(policy->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1551 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | cpufreq_cpu_put(policy); |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1553 | no_policy: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | return ret; |
| 1555 | } |
| 1556 | EXPORT_SYMBOL_GPL(cpufreq_driver_target); |
| 1557 | |
venkatesh.pallipadi@intel.com | bf0b90e | 2008-08-04 11:59:07 -0700 | [diff] [blame] | 1558 | int __cpufreq_driver_getavg(struct cpufreq_policy *policy, unsigned int cpu) |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 1559 | { |
| 1560 | int ret = 0; |
| 1561 | |
| 1562 | policy = cpufreq_cpu_get(policy->cpu); |
| 1563 | if (!policy) |
| 1564 | return -EINVAL; |
| 1565 | |
venkatesh.pallipadi@intel.com | bf0b90e | 2008-08-04 11:59:07 -0700 | [diff] [blame] | 1566 | if (cpu_online(cpu) && cpufreq_driver->getavg) |
| 1567 | ret = cpufreq_driver->getavg(policy, cpu); |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 1568 | |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 1569 | cpufreq_cpu_put(policy); |
| 1570 | return ret; |
| 1571 | } |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1572 | EXPORT_SYMBOL_GPL(__cpufreq_driver_getavg); |
Venkatesh Pallipadi | dfde5d6 | 2006-10-03 12:38:45 -0700 | [diff] [blame] | 1573 | |
Arjan van de Ven | 153d7f3 | 2006-07-26 15:40:07 +0200 | [diff] [blame] | 1574 | /* |
Arjan van de Ven | 153d7f3 | 2006-07-26 15:40:07 +0200 | [diff] [blame] | 1575 | * when "event" is CPUFREQ_GOV_LIMITS |
| 1576 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1577 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1578 | static int __cpufreq_governor(struct cpufreq_policy *policy, |
| 1579 | unsigned int event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | { |
Dave Jones | cc993ca | 2005-07-28 09:43:56 -0700 | [diff] [blame] | 1581 | int ret; |
Thomas Renninger | 6afde10 | 2007-10-02 13:28:13 -0700 | [diff] [blame] | 1582 | |
| 1583 | /* Only must be defined when default governor is known to have latency |
| 1584 | restrictions, like e.g. conservative or ondemand. |
| 1585 | That this is the case is already ensured in Kconfig |
| 1586 | */ |
| 1587 | #ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE |
| 1588 | struct cpufreq_governor *gov = &cpufreq_gov_performance; |
| 1589 | #else |
| 1590 | struct cpufreq_governor *gov = NULL; |
| 1591 | #endif |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 1592 | |
| 1593 | if (policy->governor->max_transition_latency && |
| 1594 | policy->cpuinfo.transition_latency > |
| 1595 | policy->governor->max_transition_latency) { |
Thomas Renninger | 6afde10 | 2007-10-02 13:28:13 -0700 | [diff] [blame] | 1596 | if (!gov) |
| 1597 | return -EINVAL; |
| 1598 | else { |
| 1599 | printk(KERN_WARNING "%s governor failed, too long" |
| 1600 | " transition latency of HW, fallback" |
| 1601 | " to %s governor\n", |
| 1602 | policy->governor->name, |
| 1603 | gov->name); |
| 1604 | policy->governor = gov; |
| 1605 | } |
Thomas Renninger | 1c25624 | 2007-10-02 13:28:12 -0700 | [diff] [blame] | 1606 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1607 | |
| 1608 | if (!try_module_get(policy->governor->owner)) |
| 1609 | return -EINVAL; |
| 1610 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1611 | dprintk("__cpufreq_governor for CPU %u, event %u\n", |
| 1612 | policy->cpu, event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | ret = policy->governor->governor(policy, event); |
| 1614 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1615 | /* we keep one module reference alive for |
| 1616 | each CPU governed by this CPU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | if ((event != CPUFREQ_GOV_START) || ret) |
| 1618 | module_put(policy->governor->owner); |
| 1619 | if ((event == CPUFREQ_GOV_STOP) && !ret) |
| 1620 | module_put(policy->governor->owner); |
| 1621 | |
| 1622 | return ret; |
| 1623 | } |
| 1624 | |
| 1625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | int cpufreq_register_governor(struct cpufreq_governor *governor) |
| 1627 | { |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 1628 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | |
| 1630 | if (!governor) |
| 1631 | return -EINVAL; |
| 1632 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 1633 | mutex_lock(&cpufreq_governor_mutex); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1634 | |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 1635 | err = -EBUSY; |
| 1636 | if (__find_governor(governor->name) == NULL) { |
| 1637 | err = 0; |
| 1638 | list_add(&governor->governor_list, &cpufreq_governor_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1641 | mutex_unlock(&cpufreq_governor_mutex); |
Jeremy Fitzhardinge | 3bcb09a | 2006-07-06 12:30:26 -0700 | [diff] [blame] | 1642 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | } |
| 1644 | EXPORT_SYMBOL_GPL(cpufreq_register_governor); |
| 1645 | |
| 1646 | |
| 1647 | void cpufreq_unregister_governor(struct cpufreq_governor *governor) |
| 1648 | { |
Prarit Bhargava | 90e41ba | 2009-11-12 09:18:46 -0500 | [diff] [blame] | 1649 | #ifdef CONFIG_HOTPLUG_CPU |
| 1650 | int cpu; |
| 1651 | #endif |
| 1652 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | if (!governor) |
| 1654 | return; |
| 1655 | |
Prarit Bhargava | 90e41ba | 2009-11-12 09:18:46 -0500 | [diff] [blame] | 1656 | #ifdef CONFIG_HOTPLUG_CPU |
| 1657 | for_each_present_cpu(cpu) { |
| 1658 | if (cpu_online(cpu)) |
| 1659 | continue; |
| 1660 | if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name)) |
| 1661 | strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0"); |
| 1662 | } |
| 1663 | #endif |
| 1664 | |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 1665 | mutex_lock(&cpufreq_governor_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | list_del(&governor->governor_list); |
akpm@osdl.org | 3fc54d3 | 2006-01-13 15:54:22 -0800 | [diff] [blame] | 1667 | mutex_unlock(&cpufreq_governor_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1668 | return; |
| 1669 | } |
| 1670 | EXPORT_SYMBOL_GPL(cpufreq_unregister_governor); |
| 1671 | |
| 1672 | |
| 1673 | |
| 1674 | /********************************************************************* |
| 1675 | * POLICY INTERFACE * |
| 1676 | *********************************************************************/ |
| 1677 | |
| 1678 | /** |
| 1679 | * cpufreq_get_policy - get the current cpufreq_policy |
Dave Jones | 29464f2 | 2009-01-18 01:37:11 -0500 | [diff] [blame] | 1680 | * @policy: struct cpufreq_policy into which the current cpufreq_policy |
| 1681 | * is written |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | * |
| 1683 | * Reads the current cpufreq policy. |
| 1684 | */ |
| 1685 | int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu) |
| 1686 | { |
| 1687 | struct cpufreq_policy *cpu_policy; |
| 1688 | if (!policy) |
| 1689 | return -EINVAL; |
| 1690 | |
| 1691 | cpu_policy = cpufreq_cpu_get(cpu); |
| 1692 | if (!cpu_policy) |
| 1693 | return -EINVAL; |
| 1694 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1695 | memcpy(policy, cpu_policy, sizeof(struct cpufreq_policy)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1696 | |
| 1697 | cpufreq_cpu_put(cpu_policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1698 | return 0; |
| 1699 | } |
| 1700 | EXPORT_SYMBOL(cpufreq_get_policy); |
| 1701 | |
| 1702 | |
Arjan van de Ven | 153d7f3 | 2006-07-26 15:40:07 +0200 | [diff] [blame] | 1703 | /* |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1704 | * data : current policy. |
| 1705 | * policy : policy to be set. |
Arjan van de Ven | 153d7f3 | 2006-07-26 15:40:07 +0200 | [diff] [blame] | 1706 | */ |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1707 | static int __cpufreq_set_policy(struct cpufreq_policy *data, |
| 1708 | struct cpufreq_policy *policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | { |
| 1710 | int ret = 0; |
| 1711 | |
| 1712 | cpufreq_debug_disable_ratelimit(); |
| 1713 | dprintk("setting new policy for CPU %u: %u - %u kHz\n", policy->cpu, |
| 1714 | policy->min, policy->max); |
| 1715 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1716 | memcpy(&policy->cpuinfo, &data->cpuinfo, |
| 1717 | sizeof(struct cpufreq_cpuinfo)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1718 | |
Yi Yang | 53391fa | 2008-01-30 13:33:34 +0100 | [diff] [blame] | 1719 | if (policy->min > data->max || policy->max < data->min) { |
Mattia Dongili | 9c9a43e | 2006-07-05 23:12:20 +0200 | [diff] [blame] | 1720 | ret = -EINVAL; |
| 1721 | goto error_out; |
| 1722 | } |
| 1723 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1724 | /* verify the cpu speed can be set within this limit */ |
| 1725 | ret = cpufreq_driver->verify(policy); |
| 1726 | if (ret) |
| 1727 | goto error_out; |
| 1728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | /* adjust if necessary - all reasons */ |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1730 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
| 1731 | CPUFREQ_ADJUST, policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | |
| 1733 | /* adjust if necessary - hardware incompatibility*/ |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1734 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
| 1735 | CPUFREQ_INCOMPATIBLE, policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1736 | |
| 1737 | /* verify the cpu speed can be set within this limit, |
| 1738 | which might be different to the first one */ |
| 1739 | ret = cpufreq_driver->verify(policy); |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1740 | if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1741 | goto error_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | |
| 1743 | /* notification of the new policy */ |
Alan Stern | e041c68 | 2006-03-27 01:16:30 -0800 | [diff] [blame] | 1744 | blocking_notifier_call_chain(&cpufreq_policy_notifier_list, |
| 1745 | CPUFREQ_NOTIFY, policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 1747 | data->min = policy->min; |
| 1748 | data->max = policy->max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1750 | dprintk("new min and max freqs are %u - %u kHz\n", |
| 1751 | data->min, data->max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | |
| 1753 | if (cpufreq_driver->setpolicy) { |
| 1754 | data->policy = policy->policy; |
| 1755 | dprintk("setting range\n"); |
| 1756 | ret = cpufreq_driver->setpolicy(policy); |
| 1757 | } else { |
| 1758 | if (policy->governor != data->governor) { |
| 1759 | /* save old, working values */ |
| 1760 | struct cpufreq_governor *old_gov = data->governor; |
| 1761 | |
| 1762 | dprintk("governor switch\n"); |
| 1763 | |
| 1764 | /* end old governor */ |
Mathieu Desnoyers | 395913d | 2009-06-08 13:17:31 -0400 | [diff] [blame] | 1765 | if (data->governor) { |
| 1766 | /* |
| 1767 | * Need to release the rwsem around governor |
| 1768 | * stop due to lock dependency between |
| 1769 | * cancel_delayed_work_sync and the read lock |
| 1770 | * taken in the delayed work handler. |
| 1771 | */ |
| 1772 | unlock_policy_rwsem_write(data->cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | __cpufreq_governor(data, CPUFREQ_GOV_STOP); |
Mathieu Desnoyers | 395913d | 2009-06-08 13:17:31 -0400 | [diff] [blame] | 1774 | lock_policy_rwsem_write(data->cpu); |
| 1775 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | |
| 1777 | /* start new governor */ |
| 1778 | data->governor = policy->governor; |
| 1779 | if (__cpufreq_governor(data, CPUFREQ_GOV_START)) { |
| 1780 | /* new governor failed, so re-start old one */ |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1781 | dprintk("starting governor %s failed\n", |
| 1782 | data->governor->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | if (old_gov) { |
| 1784 | data->governor = old_gov; |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1785 | __cpufreq_governor(data, |
| 1786 | CPUFREQ_GOV_START); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1787 | } |
| 1788 | ret = -EINVAL; |
| 1789 | goto error_out; |
| 1790 | } |
| 1791 | /* might be a policy change, too, so fall through */ |
| 1792 | } |
| 1793 | dprintk("governor: change or update limits\n"); |
| 1794 | __cpufreq_governor(data, CPUFREQ_GOV_LIMITS); |
| 1795 | } |
| 1796 | |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 1797 | error_out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | cpufreq_debug_enable_ratelimit(); |
| 1799 | return ret; |
| 1800 | } |
| 1801 | |
| 1802 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1803 | * cpufreq_update_policy - re-evaluate an existing cpufreq policy |
| 1804 | * @cpu: CPU which shall be re-evaluated |
| 1805 | * |
| 1806 | * Usefull for policy notifiers which have different necessities |
| 1807 | * at different times. |
| 1808 | */ |
| 1809 | int cpufreq_update_policy(unsigned int cpu) |
| 1810 | { |
| 1811 | struct cpufreq_policy *data = cpufreq_cpu_get(cpu); |
| 1812 | struct cpufreq_policy policy; |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1813 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1814 | |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1815 | if (!data) { |
| 1816 | ret = -ENODEV; |
| 1817 | goto no_policy; |
| 1818 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1820 | if (unlikely(lock_policy_rwsem_write(cpu))) { |
| 1821 | ret = -EINVAL; |
| 1822 | goto fail; |
| 1823 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | |
| 1825 | dprintk("updating policy for CPU %u\n", cpu); |
Dave Jones | 7d5e350 | 2006-02-02 17:03:42 -0500 | [diff] [blame] | 1826 | memcpy(&policy, data, sizeof(struct cpufreq_policy)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | policy.min = data->user_policy.min; |
| 1828 | policy.max = data->user_policy.max; |
| 1829 | policy.policy = data->user_policy.policy; |
| 1830 | policy.governor = data->user_policy.governor; |
| 1831 | |
Thomas Renninger | 0961dd0 | 2006-01-26 18:46:33 +0100 | [diff] [blame] | 1832 | /* BIOS might change freq behind our back |
| 1833 | -> ask driver for current freq and notify governors about a change */ |
| 1834 | if (cpufreq_driver->get) { |
| 1835 | policy.cur = cpufreq_driver->get(cpu); |
Thomas Renninger | a85f7bd | 2006-02-01 11:36:04 +0100 | [diff] [blame] | 1836 | if (!data->cur) { |
| 1837 | dprintk("Driver did not initialize current freq"); |
| 1838 | data->cur = policy.cur; |
| 1839 | } else { |
| 1840 | if (data->cur != policy.cur) |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1841 | cpufreq_out_of_sync(cpu, data->cur, |
| 1842 | policy.cur); |
Thomas Renninger | a85f7bd | 2006-02-01 11:36:04 +0100 | [diff] [blame] | 1843 | } |
Thomas Renninger | 0961dd0 | 2006-01-26 18:46:33 +0100 | [diff] [blame] | 1844 | } |
| 1845 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | ret = __cpufreq_set_policy(data, &policy); |
| 1847 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1848 | unlock_policy_rwsem_write(cpu); |
| 1849 | |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1850 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | cpufreq_cpu_put(data); |
Julia Lawall | f1829e4 | 2008-07-25 22:44:53 +0200 | [diff] [blame] | 1852 | no_policy: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | return ret; |
| 1854 | } |
| 1855 | EXPORT_SYMBOL(cpufreq_update_policy); |
| 1856 | |
Satyam Sharma | dd184a0 | 2007-10-02 13:28:14 -0700 | [diff] [blame] | 1857 | static int __cpuinit cpufreq_cpu_callback(struct notifier_block *nfb, |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1858 | unsigned long action, void *hcpu) |
| 1859 | { |
| 1860 | unsigned int cpu = (unsigned long)hcpu; |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1861 | struct sys_device *sys_dev; |
| 1862 | |
| 1863 | sys_dev = get_cpu_sysdev(cpu); |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1864 | if (sys_dev) { |
| 1865 | switch (action) { |
| 1866 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1867 | case CPU_ONLINE_FROZEN: |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1868 | cpufreq_add_dev(sys_dev); |
| 1869 | break; |
| 1870 | case CPU_DOWN_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1871 | case CPU_DOWN_PREPARE_FROZEN: |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1872 | if (unlikely(lock_policy_rwsem_write(cpu))) |
| 1873 | BUG(); |
| 1874 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1875 | __cpufreq_remove_dev(sys_dev); |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1876 | break; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1877 | case CPU_DOWN_FAILED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 1878 | case CPU_DOWN_FAILED_FROZEN: |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1879 | cpufreq_add_dev(sys_dev); |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1880 | break; |
| 1881 | } |
| 1882 | } |
| 1883 | return NOTIFY_OK; |
| 1884 | } |
| 1885 | |
Sam Ravnborg | f6ebef3 | 2008-02-17 13:22:52 +0100 | [diff] [blame] | 1886 | static struct notifier_block __refdata cpufreq_cpu_notifier = |
Ashok Raj | c32b6b8 | 2005-10-30 14:59:54 -0800 | [diff] [blame] | 1887 | { |
| 1888 | .notifier_call = cpufreq_cpu_callback, |
| 1889 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | |
| 1891 | /********************************************************************* |
| 1892 | * REGISTER / UNREGISTER CPUFREQ DRIVER * |
| 1893 | *********************************************************************/ |
| 1894 | |
| 1895 | /** |
| 1896 | * cpufreq_register_driver - register a CPU Frequency driver |
| 1897 | * @driver_data: A struct cpufreq_driver containing the values# |
| 1898 | * submitted by the CPU Frequency driver. |
| 1899 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1900 | * Registers a CPU Frequency driver to this core code. This code |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | * returns zero on success, -EBUSY when another driver got here first |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1902 | * (and isn't unregistered in the meantime). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | * |
| 1904 | */ |
Linus Torvalds | 221dee2 | 2007-02-26 14:55:48 -0800 | [diff] [blame] | 1905 | int cpufreq_register_driver(struct cpufreq_driver *driver_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1906 | { |
| 1907 | unsigned long flags; |
| 1908 | int ret; |
| 1909 | |
| 1910 | if (!driver_data || !driver_data->verify || !driver_data->init || |
| 1911 | ((!driver_data->setpolicy) && (!driver_data->target))) |
| 1912 | return -EINVAL; |
| 1913 | |
| 1914 | dprintk("trying to register driver %s\n", driver_data->name); |
| 1915 | |
| 1916 | if (driver_data->setpolicy) |
| 1917 | driver_data->flags |= CPUFREQ_CONST_LOOPS; |
| 1918 | |
| 1919 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 1920 | if (cpufreq_driver) { |
| 1921 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1922 | return -EBUSY; |
| 1923 | } |
| 1924 | cpufreq_driver = driver_data; |
| 1925 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1926 | |
Mike Travis | 7a6aedf | 2008-03-25 15:06:53 -0700 | [diff] [blame] | 1927 | ret = sysdev_driver_register(&cpu_sysdev_class, |
| 1928 | &cpufreq_sysdev_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1929 | |
| 1930 | if ((!ret) && !(cpufreq_driver->flags & CPUFREQ_STICKY)) { |
| 1931 | int i; |
| 1932 | ret = -ENODEV; |
| 1933 | |
| 1934 | /* check for at least one working CPU */ |
Mike Travis | 7a6aedf | 2008-03-25 15:06:53 -0700 | [diff] [blame] | 1935 | for (i = 0; i < nr_cpu_ids; i++) |
| 1936 | if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | ret = 0; |
Mike Travis | 7a6aedf | 2008-03-25 15:06:53 -0700 | [diff] [blame] | 1938 | break; |
| 1939 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | |
| 1941 | /* if all ->init() calls failed, unregister */ |
| 1942 | if (ret) { |
Gautham R Shenoy | e08f5f5 | 2006-10-26 16:20:58 +0530 | [diff] [blame] | 1943 | dprintk("no CPU initialized for driver %s\n", |
| 1944 | driver_data->name); |
| 1945 | sysdev_driver_unregister(&cpu_sysdev_class, |
| 1946 | &cpufreq_sysdev_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | |
| 1948 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 1949 | cpufreq_driver = NULL; |
| 1950 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1951 | } |
| 1952 | } |
| 1953 | |
| 1954 | if (!ret) { |
Chandra Seetharaman | 65edc68 | 2006-06-27 02:54:08 -0700 | [diff] [blame] | 1955 | register_hotcpu_notifier(&cpufreq_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | dprintk("driver %s up and running\n", driver_data->name); |
| 1957 | cpufreq_debug_enable_ratelimit(); |
| 1958 | } |
| 1959 | |
Dave Jones | 4d34a67 | 2008-02-07 16:33:49 -0500 | [diff] [blame] | 1960 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | } |
| 1962 | EXPORT_SYMBOL_GPL(cpufreq_register_driver); |
| 1963 | |
| 1964 | |
| 1965 | /** |
| 1966 | * cpufreq_unregister_driver - unregister the current CPUFreq driver |
| 1967 | * |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 1968 | * Unregister the current CPUFreq driver. Only call this if you have |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1969 | * the right to do so, i.e. if you have succeeded in initialising before! |
| 1970 | * Returns zero if successful, and -EINVAL if the cpufreq_driver is |
| 1971 | * currently not initialised. |
| 1972 | */ |
Linus Torvalds | 221dee2 | 2007-02-26 14:55:48 -0800 | [diff] [blame] | 1973 | int cpufreq_unregister_driver(struct cpufreq_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1974 | { |
| 1975 | unsigned long flags; |
| 1976 | |
| 1977 | cpufreq_debug_disable_ratelimit(); |
| 1978 | |
| 1979 | if (!cpufreq_driver || (driver != cpufreq_driver)) { |
| 1980 | cpufreq_debug_enable_ratelimit(); |
| 1981 | return -EINVAL; |
| 1982 | } |
| 1983 | |
| 1984 | dprintk("unregistering driver %s\n", driver->name); |
| 1985 | |
| 1986 | sysdev_driver_unregister(&cpu_sysdev_class, &cpufreq_sysdev_driver); |
Chandra Seetharaman | 65edc68 | 2006-06-27 02:54:08 -0700 | [diff] [blame] | 1987 | unregister_hotcpu_notifier(&cpufreq_cpu_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | |
| 1989 | spin_lock_irqsave(&cpufreq_driver_lock, flags); |
| 1990 | cpufreq_driver = NULL; |
| 1991 | spin_unlock_irqrestore(&cpufreq_driver_lock, flags); |
| 1992 | |
| 1993 | return 0; |
| 1994 | } |
| 1995 | EXPORT_SYMBOL_GPL(cpufreq_unregister_driver); |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 1996 | |
| 1997 | static int __init cpufreq_core_init(void) |
| 1998 | { |
| 1999 | int cpu; |
| 2000 | |
| 2001 | for_each_possible_cpu(cpu) { |
Tejun Heo | f162506 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 2002 | per_cpu(cpufreq_policy_cpu, cpu) = -1; |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 2003 | init_rwsem(&per_cpu(cpu_policy_rwsem, cpu)); |
| 2004 | } |
Thomas Renninger | 8aa84ad | 2009-07-24 15:25:05 +0200 | [diff] [blame] | 2005 | |
| 2006 | cpufreq_global_kobject = kobject_create_and_add("cpufreq", |
| 2007 | &cpu_sysdev_class.kset.kobj); |
| 2008 | BUG_ON(!cpufreq_global_kobject); |
| 2009 | |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 2010 | return 0; |
| 2011 | } |
Venkatesh Pallipadi | 5a01f2e | 2007-02-05 16:12:44 -0800 | [diff] [blame] | 2012 | core_initcall(cpufreq_core_init); |