blob: 9e83d9142072a27b5eaf555371a6ea712d9ea1ce [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/cpufreq/cpufreq.c
3 *
4 * Copyright (C) 2001 Russell King
5 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
Viresh Kumarbb176f72013-06-19 14:19:33 +05306 * (C) 2013 Viresh Kumar <viresh.kumar@linaro.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Ashok Rajc32b6b82005-10-30 14:59:54 -08008 * Oct 2005 - Ashok Raj <ashok.raj@intel.com>
Dave Jones32ee8c32006-02-28 00:43:23 -05009 * Added handling for CPU hotplug
Dave Jones8ff69732006-03-05 03:37:23 -050010 * Feb 2006 - Jacob Shin <jacob.shin@amd.com>
11 * Fix handling for CPU hotplug -- affected CPUs
Ashok Rajc32b6b82005-10-30 14:59:54 -080012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Viresh Kumardb701152012-10-23 01:29:03 +020018#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
Viresh Kumar5ff0a262013-08-06 22:53:03 +053020#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/cpufreq.h>
22#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/device.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053024#include <linux/init.h>
25#include <linux/kernel_stat.h>
26#include <linux/module.h>
akpm@osdl.org3fc54d32006-01-13 15:54:22 -080027#include <linux/mutex.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053028#include <linux/slab.h>
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +010029#include <linux/syscore_ops.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053030#include <linux/tick.h>
Thomas Renninger6f4f2722010-04-20 13:17:36 +020031#include <trace/events/power.h>
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/**
Dave Jonescd878472006-08-11 17:59:28 -040034 * The "cpufreq driver" - the arch- or hardware-dependent low
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * level driver of CPUFreq support, and its spinlock. This lock
36 * also protects the cpufreq_cpu_data array.
37 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +020038static struct cpufreq_driver *cpufreq_driver;
Mike Travis7a6aedf2008-03-25 15:06:53 -070039static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +053040static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data_fallback);
Viresh Kumarbb176f72013-06-19 14:19:33 +053041static DEFINE_RWLOCK(cpufreq_driver_lock);
42static DEFINE_MUTEX(cpufreq_governor_lock);
43
Thomas Renninger084f3492007-07-09 11:35:28 -070044#ifdef CONFIG_HOTPLUG_CPU
45/* This one keeps track of the previously set governor of a removed CPU */
Dmitry Monakhove77b89f2009-10-05 00:38:55 +040046static DEFINE_PER_CPU(char[CPUFREQ_NAME_LEN], cpufreq_cpu_governor);
Thomas Renninger084f3492007-07-09 11:35:28 -070047#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080049/*
50 * cpu_policy_rwsem is a per CPU reader-writer semaphore designed to cure
51 * all cpufreq/hotplug/workqueue/etc related lock issues.
52 *
53 * The rules for this semaphore:
54 * - Any routine that wants to read from the policy structure will
55 * do a down_read on this semaphore.
56 * - Any routine that will write to the policy structure and/or may take away
57 * the policy altogether (eg. CPU hotplug), will hold this lock in write
58 * mode before doing so.
59 *
60 * Additional rules:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080061 * - Governor routines that can be called in cpufreq hotplug path should not
62 * take this sem as top level hotplug notifier handler takes this.
Mathieu Desnoyers395913d2009-06-08 13:17:31 -040063 * - Lock should not be held across
64 * __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080065 */
Tejun Heof1625062009-10-29 22:34:13 +090066static DEFINE_PER_CPU(int, cpufreq_policy_cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080067static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem);
68
69#define lock_policy_rwsem(mode, cpu) \
Viresh Kumarfa1d8af2013-02-07 15:38:42 +053070static int lock_policy_rwsem_##mode(int cpu) \
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080071{ \
Tejun Heof1625062009-10-29 22:34:13 +090072 int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); \
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080073 BUG_ON(policy_cpu == -1); \
74 down_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080075 \
76 return 0; \
77}
78
79lock_policy_rwsem(read, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080080lock_policy_rwsem(write, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080081
Viresh Kumarfa1d8af2013-02-07 15:38:42 +053082#define unlock_policy_rwsem(mode, cpu) \
83static void unlock_policy_rwsem_##mode(int cpu) \
84{ \
85 int policy_cpu = per_cpu(cpufreq_policy_cpu, cpu); \
86 BUG_ON(policy_cpu == -1); \
87 up_##mode(&per_cpu(cpu_policy_rwsem, policy_cpu)); \
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080088}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080089
Viresh Kumarfa1d8af2013-02-07 15:38:42 +053090unlock_policy_rwsem(read, cpu);
91unlock_policy_rwsem(write, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080092
Linus Torvalds1da177e2005-04-16 15:20:36 -070093/* internal prototypes */
Dave Jones29464f22009-01-18 01:37:11 -050094static int __cpufreq_governor(struct cpufreq_policy *policy,
95 unsigned int event);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080096static unsigned int __cpufreq_get(unsigned int cpu);
David Howells65f27f32006-11-22 14:55:48 +000097static void handle_update(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/**
Dave Jones32ee8c32006-02-28 00:43:23 -0500100 * Two notifier lists: the "policy" list is involved in the
101 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * "transition" list for kernel code that needs to handle
103 * changes to devices when the CPU clock speed changes.
104 * The mutex locks both lists.
105 */
Alan Sterne041c682006-03-27 01:16:30 -0800106static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700107static struct srcu_notifier_head cpufreq_transition_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200109static bool init_cpufreq_transition_notifier_list_called;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700110static int __init init_cpufreq_transition_notifier_list(void)
111{
112 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200113 init_cpufreq_transition_notifier_list_called = true;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700114 return 0;
115}
Linus Torvaldsb3438f82006-11-20 11:47:18 -0800116pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400118static int off __read_mostly;
Viresh Kumarda584452012-10-26 00:51:32 +0200119static int cpufreq_disabled(void)
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400120{
121 return off;
122}
123void disable_cpufreq(void)
124{
125 off = 1;
126}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127static LIST_HEAD(cpufreq_governor_list);
Dave Jones29464f22009-01-18 01:37:11 -0500128static DEFINE_MUTEX(cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000130bool have_governor_per_policy(void)
131{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200132 return cpufreq_driver->have_governor_per_policy;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000133}
Viresh Kumar3f869d62013-05-16 05:09:56 +0000134EXPORT_SYMBOL_GPL(have_governor_per_policy);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000135
Viresh Kumar944e9a02013-05-16 05:09:57 +0000136struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
137{
138 if (have_governor_per_policy())
139 return &policy->kobj;
140 else
141 return cpufreq_global_kobject;
142}
143EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
144
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000145static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
146{
147 u64 idle_time;
148 u64 cur_wall_time;
149 u64 busy_time;
150
151 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
152
153 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
154 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
155 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
156 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
157 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
158 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
159
160 idle_time = cur_wall_time - busy_time;
161 if (wall)
162 *wall = cputime_to_usecs(cur_wall_time);
163
164 return cputime_to_usecs(idle_time);
165}
166
167u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
168{
169 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
170
171 if (idle_time == -1ULL)
172 return get_cpu_idle_time_jiffy(cpu, wall);
173 else if (!io_busy)
174 idle_time += get_cpu_iowait_time_us(cpu, wall);
175
176 return idle_time;
177}
178EXPORT_SYMBOL_GPL(get_cpu_idle_time);
179
Stephen Boyda9144432012-07-20 18:14:38 +0000180static struct cpufreq_policy *__cpufreq_cpu_get(unsigned int cpu, bool sysfs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530182 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 unsigned long flags;
184
Mike Travis7a6aedf2008-03-25 15:06:53 -0700185 if (cpu >= nr_cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 goto err_out;
187
188 /* get the cpufreq driver */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000189 read_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200191 if (!cpufreq_driver)
192 goto err_out_unlock;
193
194 if (!try_module_get(cpufreq_driver->owner))
195 goto err_out_unlock;
196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 /* get the CPU */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530198 policy = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530200 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 goto err_out_put_module;
202
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530203 if (!sysfs && !kobject_get(&policy->kobj))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 goto err_out_put_module;
205
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000206 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530207 return policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Dave Jones7d5e3502006-02-02 17:03:42 -0500209err_out_put_module:
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200210 module_put(cpufreq_driver->owner);
Nathan Zimmer58000432013-04-04 14:53:25 +0000211err_out_unlock:
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200212 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones7d5e3502006-02-02 17:03:42 -0500213err_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return NULL;
215}
Stephen Boyda9144432012-07-20 18:14:38 +0000216
217struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
218{
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000219 if (cpufreq_disabled())
220 return NULL;
221
Stephen Boyda9144432012-07-20 18:14:38 +0000222 return __cpufreq_cpu_get(cpu, false);
223}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
225
Stephen Boyda9144432012-07-20 18:14:38 +0000226static struct cpufreq_policy *cpufreq_cpu_get_sysfs(unsigned int cpu)
227{
228 return __cpufreq_cpu_get(cpu, true);
229}
230
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530231static void __cpufreq_cpu_put(struct cpufreq_policy *policy, bool sysfs)
Stephen Boyda9144432012-07-20 18:14:38 +0000232{
233 if (!sysfs)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530234 kobject_put(&policy->kobj);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200235 module_put(cpufreq_driver->owner);
Stephen Boyda9144432012-07-20 18:14:38 +0000236}
Dave Jones7d5e3502006-02-02 17:03:42 -0500237
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530238void cpufreq_cpu_put(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239{
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000240 if (cpufreq_disabled())
241 return;
242
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530243 __cpufreq_cpu_put(policy, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
246
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530247static void cpufreq_cpu_put_sysfs(struct cpufreq_policy *policy)
Stephen Boyda9144432012-07-20 18:14:38 +0000248{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530249 __cpufreq_cpu_put(policy, true);
Stephen Boyda9144432012-07-20 18:14:38 +0000250}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
254 *********************************************************************/
255
256/**
257 * adjust_jiffies - adjust the system "loops_per_jiffy"
258 *
259 * This function alters the system "loops_per_jiffy" for the clock
260 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500261 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 * per-CPU loops_per_jiffy value wherever possible.
263 */
264#ifndef CONFIG_SMP
265static unsigned long l_p_j_ref;
Viresh Kumarbb176f72013-06-19 14:19:33 +0530266static unsigned int l_p_j_ref_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Arjan van de Ven858119e2006-01-14 13:20:43 -0800268static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
270 if (ci->flags & CPUFREQ_CONST_LOOPS)
271 return;
272
273 if (!l_p_j_ref_freq) {
274 l_p_j_ref = loops_per_jiffy;
275 l_p_j_ref_freq = ci->old;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200276 pr_debug("saving %lu as reference value for loops_per_jiffy; "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530277 "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Viresh Kumarbb176f72013-06-19 14:19:33 +0530279 if ((val == CPUFREQ_POSTCHANGE && ci->old != ci->new) ||
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -0700280 (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530281 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
282 ci->new);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200283 pr_debug("scaling loops_per_jiffy to %lu "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530284 "for frequency %u kHz\n", loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
286}
287#else
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530288static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
289{
290 return;
291}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#endif
293
Viresh Kumar0956df9c2013-06-19 14:19:34 +0530294static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530295 struct cpufreq_freqs *freqs, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 BUG_ON(irqs_disabled());
298
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000299 if (cpufreq_disabled())
300 return;
301
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200302 freqs->flags = cpufreq_driver->flags;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200303 pr_debug("notification %u of frequency transition to %u kHz\n",
Dave Jonese4472cb2006-01-31 15:53:55 -0800304 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 case CPUFREQ_PRECHANGE:
Viresh Kumar266c13d2013-07-02 16:36:28 +0530309 if (WARN(policy->transition_ongoing ==
310 cpumask_weight(policy->cpus),
Viresh Kumar7c30ed52013-06-19 10:16:55 +0530311 "In middle of another frequency transition\n"))
312 return;
313
Viresh Kumar266c13d2013-07-02 16:36:28 +0530314 policy->transition_ongoing++;
Viresh Kumar7c30ed52013-06-19 10:16:55 +0530315
Dave Jones32ee8c32006-02-28 00:43:23 -0500316 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800317 * which is not equal to what the cpufreq core thinks is
318 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200320 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800321 if ((policy) && (policy->cpu == freqs->cpu) &&
322 (policy->cur) && (policy->cur != freqs->old)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200323 pr_debug("Warning: CPU frequency is"
Dave Jonese4472cb2006-01-31 15:53:55 -0800324 " %u, cpufreq assumed %u kHz.\n",
325 freqs->old, policy->cur);
326 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700329 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800330 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
332 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 case CPUFREQ_POSTCHANGE:
Viresh Kumar7c30ed52013-06-19 10:16:55 +0530335 if (WARN(!policy->transition_ongoing,
336 "No frequency transition in progress\n"))
337 return;
338
Viresh Kumar266c13d2013-07-02 16:36:28 +0530339 policy->transition_ongoing--;
Viresh Kumar7c30ed52013-06-19 10:16:55 +0530340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200342 pr_debug("FREQ: %lu - CPU: %lu", (unsigned long)freqs->new,
Thomas Renninger6f4f2722010-04-20 13:17:36 +0200343 (unsigned long)freqs->cpu);
Thomas Renninger25e41932011-01-03 17:50:44 +0100344 trace_cpu_frequency(freqs->new, freqs->cpu);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700345 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800346 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800347 if (likely(policy) && likely(policy->cpu == freqs->cpu))
348 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 break;
350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
Viresh Kumarbb176f72013-06-19 14:19:33 +0530352
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530353/**
354 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
355 * on frequency transition.
356 *
357 * This function calls the transition notifiers and the "adjust_jiffies"
358 * function. It is called twice on all CPU frequency changes that have
359 * external effects.
360 */
361void cpufreq_notify_transition(struct cpufreq_policy *policy,
362 struct cpufreq_freqs *freqs, unsigned int state)
363{
364 for_each_cpu(freqs->cpu, policy->cpus)
365 __cpufreq_notify_transition(policy, freqs, state);
366}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
368
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370/*********************************************************************
371 * SYSFS INTERFACE *
372 *********************************************************************/
373
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700374static struct cpufreq_governor *__find_governor(const char *str_governor)
375{
376 struct cpufreq_governor *t;
377
378 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
Dave Jones29464f22009-01-18 01:37:11 -0500379 if (!strnicmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700380 return t;
381
382 return NULL;
383}
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385/**
386 * cpufreq_parse_governor - parse a governor string
387 */
Dave Jones905d77c2008-03-05 14:28:32 -0500388static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct cpufreq_governor **governor)
390{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700391 int err = -EINVAL;
392
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200393 if (!cpufreq_driver)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700394 goto out;
395
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200396 if (cpufreq_driver->setpolicy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
398 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700399 err = 0;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530400 } else if (!strnicmp(str_governor, "powersave",
401 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700403 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200405 } else if (cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700407
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800408 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700409
410 t = __find_governor(str_governor);
411
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700412 if (t == NULL) {
Kees Cook1a8e1462011-05-04 08:38:56 -0700413 int ret;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700414
Kees Cook1a8e1462011-05-04 08:38:56 -0700415 mutex_unlock(&cpufreq_governor_mutex);
416 ret = request_module("cpufreq_%s", str_governor);
417 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700418
Kees Cook1a8e1462011-05-04 08:38:56 -0700419 if (ret == 0)
420 t = __find_governor(str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700421 }
422
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700423 if (t != NULL) {
424 *governor = t;
425 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700427
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800428 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 }
Dave Jones29464f22009-01-18 01:37:11 -0500430out:
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700431 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530435 * cpufreq_per_cpu_attr_read() / show_##file_name() -
436 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 *
438 * Write out information from cpufreq_driver->policy[cpu]; object must be
439 * "unsigned int".
440 */
441
Dave Jones32ee8c32006-02-28 00:43:23 -0500442#define show_one(file_name, object) \
443static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500444(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500445{ \
Dave Jones29464f22009-01-18 01:37:11 -0500446 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447}
448
449show_one(cpuinfo_min_freq, cpuinfo.min_freq);
450show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100451show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452show_one(scaling_min_freq, min);
453show_one(scaling_max_freq, max);
454show_one(scaling_cur_freq, cur);
455
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530456static int __cpufreq_set_policy(struct cpufreq_policy *policy,
457 struct cpufreq_policy *new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/**
460 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
461 */
462#define store_one(file_name, object) \
463static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500464(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{ \
Jingoo Hanf55c9c22012-10-31 05:49:13 +0000466 unsigned int ret; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 struct cpufreq_policy new_policy; \
468 \
469 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
470 if (ret) \
471 return -EINVAL; \
472 \
Dave Jones29464f22009-01-18 01:37:11 -0500473 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (ret != 1) \
475 return -EINVAL; \
476 \
Thomas Renninger7970e082006-04-13 15:14:04 +0200477 ret = __cpufreq_set_policy(policy, &new_policy); \
478 policy->user_policy.object = policy->object; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 \
480 return ret ? ret : count; \
481}
482
Dave Jones29464f22009-01-18 01:37:11 -0500483store_one(scaling_min_freq, min);
484store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486/**
487 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
488 */
Dave Jones905d77c2008-03-05 14:28:32 -0500489static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
490 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800492 unsigned int cur_freq = __cpufreq_get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (!cur_freq)
494 return sprintf(buf, "<unknown>");
495 return sprintf(buf, "%u\n", cur_freq);
496}
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/**
499 * show_scaling_governor - show the current policy for the specified CPU
500 */
Dave Jones905d77c2008-03-05 14:28:32 -0500501static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Dave Jones29464f22009-01-18 01:37:11 -0500503 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return sprintf(buf, "powersave\n");
505 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
506 return sprintf(buf, "performance\n");
507 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200508 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500509 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return -EINVAL;
511}
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/**
514 * store_scaling_governor - store policy for the specified CPU
515 */
Dave Jones905d77c2008-03-05 14:28:32 -0500516static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
517 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
Jingoo Hanf55c9c22012-10-31 05:49:13 +0000519 unsigned int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 char str_governor[16];
521 struct cpufreq_policy new_policy;
522
523 ret = cpufreq_get_policy(&new_policy, policy->cpu);
524 if (ret)
525 return ret;
526
Dave Jones29464f22009-01-18 01:37:11 -0500527 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (ret != 1)
529 return -EINVAL;
530
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530531 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
532 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return -EINVAL;
534
Viresh Kumarbb176f72013-06-19 14:19:33 +0530535 /*
536 * Do not use cpufreq_set_policy here or the user_policy.max
537 * will be wrongly overridden
538 */
Thomas Renninger7970e082006-04-13 15:14:04 +0200539 ret = __cpufreq_set_policy(policy, &new_policy);
540
541 policy->user_policy.policy = policy->policy;
542 policy->user_policy.governor = policy->governor;
Thomas Renninger7970e082006-04-13 15:14:04 +0200543
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530544 if (ret)
545 return ret;
546 else
547 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550/**
551 * show_scaling_driver - show the cpufreq driver currently loaded
552 */
Dave Jones905d77c2008-03-05 14:28:32 -0500553static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200555 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558/**
559 * show_scaling_available_governors - show the available CPUfreq governors
560 */
Dave Jones905d77c2008-03-05 14:28:32 -0500561static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
562 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
564 ssize_t i = 0;
565 struct cpufreq_governor *t;
566
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200567 if (!cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 i += sprintf(buf, "performance powersave");
569 goto out;
570 }
571
572 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
Dave Jones29464f22009-01-18 01:37:11 -0500573 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
574 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200576 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500578out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 i += sprintf(&buf[i], "\n");
580 return i;
581}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700582
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800583ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
585 ssize_t i = 0;
586 unsigned int cpu;
587
Rusty Russell835481d2009-01-04 05:18:06 -0800588 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (i)
590 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
591 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
592 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500593 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595 i += sprintf(&buf[i], "\n");
596 return i;
597}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800598EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700600/**
601 * show_related_cpus - show the CPUs affected by each transition even if
602 * hw coordination is in use
603 */
604static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
605{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800606 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700607}
608
609/**
610 * show_affected_cpus - show the CPUs affected by each transition
611 */
612static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
613{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800614 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700615}
616
Venki Pallipadi9e769882007-10-26 10:18:21 -0700617static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500618 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700619{
620 unsigned int freq = 0;
621 unsigned int ret;
622
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700623 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700624 return -EINVAL;
625
626 ret = sscanf(buf, "%u", &freq);
627 if (ret != 1)
628 return -EINVAL;
629
630 policy->governor->store_setspeed(policy, freq);
631
632 return count;
633}
634
635static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
636{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700637 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700638 return sprintf(buf, "<unsupported>\n");
639
640 return policy->governor->show_setspeed(policy, buf);
641}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Thomas Renningere2f74f32009-11-19 12:31:01 +0100643/**
viresh kumar8bf1ac722012-10-23 01:23:33 +0200644 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100645 */
646static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
647{
648 unsigned int limit;
649 int ret;
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200650 if (cpufreq_driver->bios_limit) {
651 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100652 if (!ret)
653 return sprintf(buf, "%u\n", limit);
654 }
655 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
656}
657
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200658cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
659cpufreq_freq_attr_ro(cpuinfo_min_freq);
660cpufreq_freq_attr_ro(cpuinfo_max_freq);
661cpufreq_freq_attr_ro(cpuinfo_transition_latency);
662cpufreq_freq_attr_ro(scaling_available_governors);
663cpufreq_freq_attr_ro(scaling_driver);
664cpufreq_freq_attr_ro(scaling_cur_freq);
665cpufreq_freq_attr_ro(bios_limit);
666cpufreq_freq_attr_ro(related_cpus);
667cpufreq_freq_attr_ro(affected_cpus);
668cpufreq_freq_attr_rw(scaling_min_freq);
669cpufreq_freq_attr_rw(scaling_max_freq);
670cpufreq_freq_attr_rw(scaling_governor);
671cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Dave Jones905d77c2008-03-05 14:28:32 -0500673static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 &cpuinfo_min_freq.attr,
675 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100676 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 &scaling_min_freq.attr,
678 &scaling_max_freq.attr,
679 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700680 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 &scaling_governor.attr,
682 &scaling_driver.attr,
683 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700684 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 NULL
686};
687
Dave Jones29464f22009-01-18 01:37:11 -0500688#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
689#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Dave Jones29464f22009-01-18 01:37:11 -0500691static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Dave Jones905d77c2008-03-05 14:28:32 -0500693 struct cpufreq_policy *policy = to_policy(kobj);
694 struct freq_attr *fattr = to_attr(attr);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500695 ssize_t ret = -EINVAL;
Stephen Boyda9144432012-07-20 18:14:38 +0000696 policy = cpufreq_cpu_get_sysfs(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (!policy)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500698 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800699
700 if (lock_policy_rwsem_read(policy->cpu) < 0)
Dave Jones0db4a8a2008-03-05 14:20:57 -0500701 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800702
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530703 if (fattr->show)
704 ret = fattr->show(policy, buf);
705 else
706 ret = -EIO;
707
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800708 unlock_policy_rwsem_read(policy->cpu);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500709fail:
Stephen Boyda9144432012-07-20 18:14:38 +0000710 cpufreq_cpu_put_sysfs(policy);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500711no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return ret;
713}
714
Dave Jones905d77c2008-03-05 14:28:32 -0500715static ssize_t store(struct kobject *kobj, struct attribute *attr,
716 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Dave Jones905d77c2008-03-05 14:28:32 -0500718 struct cpufreq_policy *policy = to_policy(kobj);
719 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500720 ssize_t ret = -EINVAL;
Stephen Boyda9144432012-07-20 18:14:38 +0000721 policy = cpufreq_cpu_get_sysfs(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 if (!policy)
Dave Jonesa07530b2008-03-05 14:22:25 -0500723 goto no_policy;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800724
725 if (lock_policy_rwsem_write(policy->cpu) < 0)
Dave Jonesa07530b2008-03-05 14:22:25 -0500726 goto fail;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800727
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530728 if (fattr->store)
729 ret = fattr->store(policy, buf, count);
730 else
731 ret = -EIO;
732
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800733 unlock_policy_rwsem_write(policy->cpu);
Dave Jonesa07530b2008-03-05 14:22:25 -0500734fail:
Stephen Boyda9144432012-07-20 18:14:38 +0000735 cpufreq_cpu_put_sysfs(policy);
Dave Jonesa07530b2008-03-05 14:22:25 -0500736no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return ret;
738}
739
Dave Jones905d77c2008-03-05 14:28:32 -0500740static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Dave Jones905d77c2008-03-05 14:28:32 -0500742 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200743 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 complete(&policy->kobj_unregister);
745}
746
Emese Revfy52cf25d2010-01-19 02:58:23 +0100747static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 .show = show,
749 .store = store,
750};
751
752static struct kobj_type ktype_cpufreq = {
753 .sysfs_ops = &sysfs_ops,
754 .default_attrs = default_attrs,
755 .release = cpufreq_sysfs_release,
756};
757
Viresh Kumar2361be22013-05-17 16:09:09 +0530758struct kobject *cpufreq_global_kobject;
759EXPORT_SYMBOL(cpufreq_global_kobject);
760
761static int cpufreq_global_kobject_usage;
762
763int cpufreq_get_global_kobject(void)
764{
765 if (!cpufreq_global_kobject_usage++)
766 return kobject_add(cpufreq_global_kobject,
767 &cpu_subsys.dev_root->kobj, "%s", "cpufreq");
768
769 return 0;
770}
771EXPORT_SYMBOL(cpufreq_get_global_kobject);
772
773void cpufreq_put_global_kobject(void)
774{
775 if (!--cpufreq_global_kobject_usage)
776 kobject_del(cpufreq_global_kobject);
777}
778EXPORT_SYMBOL(cpufreq_put_global_kobject);
779
780int cpufreq_sysfs_create_file(const struct attribute *attr)
781{
782 int ret = cpufreq_get_global_kobject();
783
784 if (!ret) {
785 ret = sysfs_create_file(cpufreq_global_kobject, attr);
786 if (ret)
787 cpufreq_put_global_kobject();
788 }
789
790 return ret;
791}
792EXPORT_SYMBOL(cpufreq_sysfs_create_file);
793
794void cpufreq_sysfs_remove_file(const struct attribute *attr)
795{
796 sysfs_remove_file(cpufreq_global_kobject, attr);
797 cpufreq_put_global_kobject();
798}
799EXPORT_SYMBOL(cpufreq_sysfs_remove_file);
800
Dave Jones19d6f7e2009-07-08 17:35:39 -0400801/* symlink affected CPUs */
Viresh Kumar308b60e2013-07-31 14:35:14 +0200802static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400803{
804 unsigned int j;
805 int ret = 0;
806
807 for_each_cpu(j, policy->cpus) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800808 struct device *cpu_dev;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400809
Viresh Kumar308b60e2013-07-31 14:35:14 +0200810 if (j == policy->cpu)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400811 continue;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400812
Viresh Kumare8fdde12013-07-31 14:31:33 +0200813 pr_debug("Adding link for CPU: %u\n", j);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800814 cpu_dev = get_cpu_device(j);
815 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Dave Jones19d6f7e2009-07-08 17:35:39 -0400816 "cpufreq");
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200817 if (ret)
818 break;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400819 }
820 return ret;
821}
822
Viresh Kumar308b60e2013-07-31 14:35:14 +0200823static int cpufreq_add_dev_interface(struct cpufreq_policy *policy,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800824 struct device *dev)
Dave Jones909a6942009-07-08 18:05:42 -0400825{
826 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -0400827 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -0400828
829 /* prepare interface data */
830 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800831 &dev->kobj, "cpufreq");
Dave Jones909a6942009-07-08 18:05:42 -0400832 if (ret)
833 return ret;
834
835 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200836 drv_attr = cpufreq_driver->attr;
Dave Jones909a6942009-07-08 18:05:42 -0400837 while ((drv_attr) && (*drv_attr)) {
838 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
839 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200840 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400841 drv_attr++;
842 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200843 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -0400844 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
845 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200846 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400847 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200848 if (cpufreq_driver->target) {
Dave Jones909a6942009-07-08 18:05:42 -0400849 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
850 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200851 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400852 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200853 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100854 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
855 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200856 goto err_out_kobj_put;
Thomas Renningere2f74f32009-11-19 12:31:01 +0100857 }
Dave Jones909a6942009-07-08 18:05:42 -0400858
Viresh Kumar308b60e2013-07-31 14:35:14 +0200859 ret = cpufreq_add_dev_symlink(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400860 if (ret)
861 goto err_out_kobj_put;
862
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530863 return ret;
864
865err_out_kobj_put:
866 kobject_put(&policy->kobj);
867 wait_for_completion(&policy->kobj_unregister);
868 return ret;
869}
870
871static void cpufreq_init_policy(struct cpufreq_policy *policy)
872{
873 struct cpufreq_policy new_policy;
874 int ret = 0;
875
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530876 memcpy(&new_policy, policy, sizeof(*policy));
Dave Jonesecf7e462009-07-08 18:48:47 -0400877 /* assure that the starting sequence is run in __cpufreq_set_policy */
878 policy->governor = NULL;
879
880 /* set default policy */
881 ret = __cpufreq_set_policy(policy, &new_policy);
882 policy->user_policy.policy = policy->policy;
883 policy->user_policy.governor = policy->governor;
884
885 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200886 pr_debug("setting policy failed\n");
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200887 if (cpufreq_driver->exit)
888 cpufreq_driver->exit(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400889 }
Dave Jones909a6942009-07-08 18:05:42 -0400890}
891
Viresh Kumarfcf80582013-01-29 14:39:08 +0000892#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumard8d3b472013-08-04 01:20:07 +0200893static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy,
894 unsigned int cpu, struct device *dev,
895 bool frozen)
Viresh Kumarfcf80582013-01-29 14:39:08 +0000896{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200897 int ret = 0, has_target = !!cpufreq_driver->target;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000898 unsigned long flags;
899
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200900 if (has_target)
901 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumarfcf80582013-01-29 14:39:08 +0000902
Viresh Kumard8d3b472013-08-04 01:20:07 +0200903 lock_policy_rwsem_write(policy->cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530904
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000905 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530906
Viresh Kumarfcf80582013-01-29 14:39:08 +0000907 cpumask_set_cpu(cpu, policy->cpus);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530908 per_cpu(cpufreq_policy_cpu, cpu) = policy->cpu;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000909 per_cpu(cpufreq_cpu_data, cpu) = policy;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000910 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +0000911
Viresh Kumard8d3b472013-08-04 01:20:07 +0200912 unlock_policy_rwsem_write(policy->cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530913
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200914 if (has_target) {
915 __cpufreq_governor(policy, CPUFREQ_GOV_START);
916 __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
917 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000918
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530919 /* Don't touch sysfs links during light-weight init */
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200920 if (!frozen)
921 ret = sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq");
Viresh Kumarfcf80582013-01-29 14:39:08 +0000922
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530923 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000924}
925#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530927static struct cpufreq_policy *cpufreq_policy_restore(unsigned int cpu)
928{
929 struct cpufreq_policy *policy;
930 unsigned long flags;
931
932 write_lock_irqsave(&cpufreq_driver_lock, flags);
933
934 policy = per_cpu(cpufreq_cpu_data_fallback, cpu);
935
936 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
937
938 return policy;
939}
940
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530941static struct cpufreq_policy *cpufreq_policy_alloc(void)
942{
943 struct cpufreq_policy *policy;
944
945 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
946 if (!policy)
947 return NULL;
948
949 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
950 goto err_free_policy;
951
952 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
953 goto err_free_cpumask;
954
955 return policy;
956
957err_free_cpumask:
958 free_cpumask_var(policy->cpus);
959err_free_policy:
960 kfree(policy);
961
962 return NULL;
963}
964
965static void cpufreq_policy_free(struct cpufreq_policy *policy)
966{
967 free_cpumask_var(policy->related_cpus);
968 free_cpumask_var(policy->cpus);
969 kfree(policy);
970}
971
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530972static int __cpufreq_add_dev(struct device *dev, struct subsys_interface *sif,
973 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Viresh Kumarfcf80582013-01-29 14:39:08 +0000975 unsigned int j, cpu = dev->id;
Viresh Kumar65922462013-02-07 10:56:03 +0530976 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500979#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumarfcf80582013-01-29 14:39:08 +0000980 struct cpufreq_governor *gov;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500981 int sibling;
982#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Ashok Rajc32b6b82005-10-30 14:59:54 -0800984 if (cpu_is_offline(cpu))
985 return 0;
986
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200987 pr_debug("adding CPU %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989#ifdef CONFIG_SMP
990 /* check whether a different CPU already registered this
991 * CPU because it is in the same boat. */
992 policy = cpufreq_cpu_get(cpu);
993 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500994 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 return 0;
996 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000997
998#ifdef CONFIG_HOTPLUG_CPU
999 /* Check if this cpu was hot-unplugged earlier and has siblings */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001000 read_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001001 for_each_online_cpu(sibling) {
1002 struct cpufreq_policy *cp = per_cpu(cpufreq_cpu_data, sibling);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301003 if (cp && cpumask_test_cpu(cpu, cp->related_cpus)) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001004 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumard8d3b472013-08-04 01:20:07 +02001005 return cpufreq_add_policy_cpu(cp, cpu, dev, frozen);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301006 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001007 }
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001008 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001009#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010#endif
1011
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001012 if (!try_module_get(cpufreq_driver->owner)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 ret = -EINVAL;
1014 goto module_out;
1015 }
1016
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301017 if (frozen)
1018 /* Restore the saved policy when doing light-weight init */
1019 policy = cpufreq_policy_restore(cpu);
1020 else
1021 policy = cpufreq_policy_alloc();
1022
Dave Jones059019a2009-07-08 16:30:03 -04001023 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -04001025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 policy->cpu = cpu;
Viresh Kumar65922462013-02-07 10:56:03 +05301027 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Rusty Russell835481d2009-01-04 05:18:06 -08001028 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001030 /* Initially set CPU itself as the policy_cpu */
Tejun Heof1625062009-10-29 22:34:13 +09001031 per_cpu(cpufreq_policy_cpu, cpu) = cpu;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001034 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 /* call driver. From then on the cpufreq must be able
1037 * to accept all calls to ->verify and ->setpolicy for this CPU
1038 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001039 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001041 pr_debug("initialization failed\n");
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301042 goto err_set_policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001044
Viresh Kumarfcf80582013-01-29 14:39:08 +00001045 /* related cpus should atleast have policy->cpus */
1046 cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
1047
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001048 /*
1049 * affected cpus must always be the one, which are online. We aren't
1050 * managing offline cpus here.
1051 */
1052 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1053
Mike Chan187d9f42008-12-04 12:19:17 -08001054 policy->user_policy.min = policy->min;
1055 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Thomas Renningera1531ac2008-07-29 22:32:58 -07001057 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1058 CPUFREQ_START, policy);
1059
Viresh Kumarfcf80582013-01-29 14:39:08 +00001060#ifdef CONFIG_HOTPLUG_CPU
1061 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
1062 if (gov) {
1063 policy->governor = gov;
1064 pr_debug("Restoring governor %s for cpu %d\n",
1065 policy->governor->name, cpu);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001066 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001067#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301069 write_lock_irqsave(&cpufreq_driver_lock, flags);
1070 for_each_cpu(j, policy->cpus) {
1071 per_cpu(cpufreq_cpu_data, j) = policy;
1072 per_cpu(cpufreq_policy_cpu, j) = policy->cpu;
1073 }
1074 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1075
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301076 if (!frozen) {
Viresh Kumar308b60e2013-07-31 14:35:14 +02001077 ret = cpufreq_add_dev_interface(policy, dev);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301078 if (ret)
1079 goto err_out_unregister;
1080 }
Dave Jones8ff69732006-03-05 03:37:23 -05001081
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301082 cpufreq_init_policy(policy);
1083
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001084 kobject_uevent(&policy->kobj, KOBJ_ADD);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001085 module_put(cpufreq_driver->owner);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001086 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 return 0;
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090err_out_unregister:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001091 write_lock_irqsave(&cpufreq_driver_lock, flags);
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301092 for_each_cpu(j, policy->cpus) {
Mike Travis7a6aedf2008-03-25 15:06:53 -07001093 per_cpu(cpufreq_cpu_data, j) = NULL;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301094 if (j != cpu)
1095 per_cpu(cpufreq_policy_cpu, j) = -1;
1096 }
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001097 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301099err_set_policy_cpu:
1100 per_cpu(cpufreq_policy_cpu, cpu) = -1;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301101 cpufreq_policy_free(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102nomem_out:
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001103 module_put(cpufreq_driver->owner);
Ashok Rajc32b6b82005-10-30 14:59:54 -08001104module_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return ret;
1106}
1107
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301108/**
1109 * cpufreq_add_dev - add a CPU device
1110 *
1111 * Adds the cpufreq interface for a CPU device.
1112 *
1113 * The Oracle says: try running cpufreq registration/unregistration concurrently
1114 * with with cpu hotplugging and all hell will break loose. Tried to clean this
1115 * mess up, but more thorough testing is needed. - Mathieu
1116 */
1117static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1118{
1119 return __cpufreq_add_dev(dev, sif, false);
1120}
1121
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001122static void update_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
1123{
1124 int j;
1125
1126 policy->last_cpu = policy->cpu;
1127 policy->cpu = cpu;
1128
Viresh Kumar3361b7b2013-02-04 11:38:51 +00001129 for_each_cpu(j, policy->cpus)
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001130 per_cpu(cpufreq_policy_cpu, j) = cpu;
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001131
1132#ifdef CONFIG_CPU_FREQ_TABLE
1133 cpufreq_frequency_table_update_policy_cpu(policy);
1134#endif
1135 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1136 CPUFREQ_UPDATE_POLICY_CPU, policy);
1137}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301139static int cpufreq_nominate_new_policy_cpu(struct cpufreq_policy *policy,
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301140 unsigned int old_cpu, bool frozen)
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301141{
1142 struct device *cpu_dev;
1143 unsigned long flags;
1144 int ret;
1145
1146 /* first sibling now owns the new sysfs dir */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301147 cpu_dev = get_cpu_device(cpumask_first(policy->cpus));
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301148
1149 /* Don't touch sysfs files during light-weight tear-down */
1150 if (frozen)
1151 return cpu_dev->id;
1152
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301153 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301154 ret = kobject_move(&policy->kobj, &cpu_dev->kobj);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301155 if (ret) {
1156 pr_err("%s: Failed to move kobj: %d", __func__, ret);
1157
1158 WARN_ON(lock_policy_rwsem_write(old_cpu));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301159 cpumask_set_cpu(old_cpu, policy->cpus);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301160
1161 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301162 per_cpu(cpufreq_cpu_data, old_cpu) = policy;
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301163 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1164
1165 unlock_policy_rwsem_write(old_cpu);
1166
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301167 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301168 "cpufreq");
1169
1170 return -EINVAL;
1171 }
1172
1173 return cpu_dev->id;
1174}
1175
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176/**
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001177 * __cpufreq_remove_dev - remove a CPU device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 *
1179 * Removes the cpufreq interface for a CPU device.
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001180 * Caller should already have policy_rwsem in write mode for this CPU.
1181 * This routine frees the rwsem before returning.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 */
Viresh Kumarbb176f72013-06-19 14:19:33 +05301183static int __cpufreq_remove_dev(struct device *dev,
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301184 struct subsys_interface *sif, bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301186 unsigned int cpu = dev->id, cpus;
1187 int new_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 unsigned long flags;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301189 struct cpufreq_policy *policy;
Amerigo Wang499bca92010-03-04 03:23:46 -05001190 struct kobject *kobj;
1191 struct completion *cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001193 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001195 write_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301197 policy = per_cpu(cpufreq_cpu_data, cpu);
Mike Travis7a6aedf2008-03-25 15:06:53 -07001198 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301200 /* Save the policy somewhere when doing a light-weight tear-down */
1201 if (frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301202 per_cpu(cpufreq_cpu_data_fallback, cpu) = policy;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301203
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001204 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301206 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001207 pr_debug("%s: No cpu_data found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001211 if (cpufreq_driver->target)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301212 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001213
Jacob Shin27ecddc2011-04-27 13:32:11 -05001214#ifdef CONFIG_HOTPLUG_CPU
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001215 if (!cpufreq_driver->setpolicy)
Dirk Brandewiefa69e332013-02-06 09:02:11 -08001216 strncpy(per_cpu(cpufreq_cpu_governor, cpu),
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301217 policy->governor->name, CPUFREQ_NAME_LEN);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001218#endif
1219
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301220 WARN_ON(lock_policy_rwsem_write(cpu));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301221 cpus = cpumask_weight(policy->cpus);
Viresh Kumare4969eb2013-04-11 08:04:53 +00001222
1223 if (cpus > 1)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301224 cpumask_clear_cpu(cpu, policy->cpus);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301225 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301227 if (cpu != policy->cpu && !frozen) {
Viresh Kumar73bf0fc2013-02-05 22:21:14 +01001228 sysfs_remove_link(&dev->kobj, "cpufreq");
1229 } else if (cpus > 1) {
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301230
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301231 new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu, frozen);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301232 if (new_cpu >= 0) {
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301233 WARN_ON(lock_policy_rwsem_write(cpu));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301234 update_policy_cpu(policy, new_cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301235 unlock_policy_rwsem_write(cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301236
1237 if (!frozen) {
1238 pr_debug("%s: policy Kobject moved to cpu: %d "
1239 "from: %d\n",__func__, new_cpu, cpu);
1240 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001241 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001242 }
Venki Pallipadiec282972007-03-26 12:03:19 -07001243
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001244 /* If cpu is last user of policy, free policy */
1245 if (cpus == 1) {
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001246 if (cpufreq_driver->target)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301247 __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001248
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301249 if (!frozen) {
1250 lock_policy_rwsem_read(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301251 kobj = &policy->kobj;
1252 cmp = &policy->kobj_unregister;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301253 unlock_policy_rwsem_read(cpu);
1254 kobject_put(kobj);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001255
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301256 /*
1257 * We need to make sure that the underlying kobj is
1258 * actually not referenced anymore by anybody before we
1259 * proceed with unloading.
1260 */
1261 pr_debug("waiting for dropping of refcount\n");
1262 wait_for_completion(cmp);
1263 pr_debug("wait complete\n");
1264 }
1265
1266 /*
1267 * Perform the ->exit() even during light-weight tear-down,
1268 * since this is a core component, and is essential for the
1269 * subsequent light-weight ->init() to succeed.
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001270 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001271 if (cpufreq_driver->exit)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301272 cpufreq_driver->exit(policy);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001273
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301274 if (!frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301275 cpufreq_policy_free(policy);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001276 } else {
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001277 if (cpufreq_driver->target) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301278 __cpufreq_governor(policy, CPUFREQ_GOV_START);
1279 __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001280 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301283 per_cpu(cpufreq_policy_cpu, cpu) = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 return 0;
1285}
1286
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001287static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001288{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001289 unsigned int cpu = dev->id;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001290 int retval;
Venki Pallipadiec282972007-03-26 12:03:19 -07001291
1292 if (cpu_is_offline(cpu))
1293 return 0;
1294
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301295 retval = __cpufreq_remove_dev(dev, sif, false);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001296 return retval;
1297}
1298
David Howells65f27f32006-11-22 14:55:48 +00001299static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
David Howells65f27f32006-11-22 14:55:48 +00001301 struct cpufreq_policy *policy =
1302 container_of(work, struct cpufreq_policy, update);
1303 unsigned int cpu = policy->cpu;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001304 pr_debug("handle_update for cpu %u called\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 cpufreq_update_policy(cpu);
1306}
1307
1308/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301309 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1310 * in deep trouble.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 * @cpu: cpu number
1312 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1313 * @new_freq: CPU frequency the CPU actually runs at
1314 *
Dave Jones29464f22009-01-18 01:37:11 -05001315 * We adjust to current frequency first, and need to clean up later.
1316 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301318static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1319 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301321 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301323 unsigned long flags;
1324
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001325 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 freqs.old = old_freq;
1329 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301330
1331 read_lock_irqsave(&cpufreq_driver_lock, flags);
1332 policy = per_cpu(cpufreq_cpu_data, cpu);
1333 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1334
1335 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1336 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
1338
Dave Jones32ee8c32006-02-28 00:43:23 -05001339/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301340 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001341 * @cpu: CPU number
1342 *
1343 * This is the last known freq, without actually getting it from the driver.
1344 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1345 */
1346unsigned int cpufreq_quick_get(unsigned int cpu)
1347{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001348 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301349 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001350
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001351 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1352 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001353
1354 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001355 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301356 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001357 cpufreq_cpu_put(policy);
1358 }
1359
Dave Jones4d34a672008-02-07 16:33:49 -05001360 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001361}
1362EXPORT_SYMBOL(cpufreq_quick_get);
1363
Jesse Barnes3d737102011-06-28 10:59:12 -07001364/**
1365 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1366 * @cpu: CPU number
1367 *
1368 * Just return the max possible frequency for a given CPU.
1369 */
1370unsigned int cpufreq_quick_get_max(unsigned int cpu)
1371{
1372 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1373 unsigned int ret_freq = 0;
1374
1375 if (policy) {
1376 ret_freq = policy->max;
1377 cpufreq_cpu_put(policy);
1378 }
1379
1380 return ret_freq;
1381}
1382EXPORT_SYMBOL(cpufreq_quick_get_max);
1383
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001384static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001386 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301387 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001389 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001390 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001392 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301394 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001395 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301396 /* verify no discrepancy between actual and
1397 saved value exists */
1398 if (unlikely(ret_freq != policy->cur)) {
1399 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 schedule_work(&policy->update);
1401 }
1402 }
1403
Dave Jones4d34a672008-02-07 16:33:49 -05001404 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001405}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001407/**
1408 * cpufreq_get - get the current CPU frequency (in kHz)
1409 * @cpu: CPU number
1410 *
1411 * Get the CPU current (static) CPU frequency
1412 */
1413unsigned int cpufreq_get(unsigned int cpu)
1414{
1415 unsigned int ret_freq = 0;
1416 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1417
1418 if (!policy)
1419 goto out;
1420
1421 if (unlikely(lock_policy_rwsem_read(cpu)))
1422 goto out_policy;
1423
1424 ret_freq = __cpufreq_get(cpu);
1425
1426 unlock_policy_rwsem_read(cpu);
1427
1428out_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 cpufreq_cpu_put(policy);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001430out:
Dave Jones4d34a672008-02-07 16:33:49 -05001431 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432}
1433EXPORT_SYMBOL(cpufreq_get);
1434
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001435static struct subsys_interface cpufreq_interface = {
1436 .name = "cpufreq",
1437 .subsys = &cpu_subsys,
1438 .add_dev = cpufreq_add_dev,
1439 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001440};
1441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001443 * cpufreq_bp_suspend - Prepare the boot CPU for system suspend.
1444 *
1445 * This function is only executed for the boot processor. The other CPUs
1446 * have been put offline by means of CPU hotplug.
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001447 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001448static int cpufreq_bp_suspend(void)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001449{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301450 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001451
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001452 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301453 struct cpufreq_policy *policy;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001454
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001455 pr_debug("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001456
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001457 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301458 policy = cpufreq_cpu_get(cpu);
1459 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001460 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001461
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001462 if (cpufreq_driver->suspend) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301463 ret = cpufreq_driver->suspend(policy);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001464 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001465 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301466 "step on CPU %u\n", policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001467 }
1468
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301469 cpufreq_cpu_put(policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001470 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001471}
1472
1473/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001474 * cpufreq_bp_resume - Restore proper frequency handling of the boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 *
1476 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001477 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1478 * restored. It will verify that the current freq is in sync with
1479 * what we believe it to be. This is a bit later than when it
1480 * should be, but nonethteless it's better than calling
1481 * cpufreq_driver->get() here which might re-enable interrupts...
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001482 *
1483 * This function is only executed for the boot CPU. The other CPUs have not
1484 * been turned on yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001486static void cpufreq_bp_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301488 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001489
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001490 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301491 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001493 pr_debug("resuming cpu %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001495 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301496 policy = cpufreq_cpu_get(cpu);
1497 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001498 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001500 if (cpufreq_driver->resume) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301501 ret = cpufreq_driver->resume(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (ret) {
1503 printk(KERN_ERR "cpufreq: resume failed in ->resume "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301504 "step on CPU %u\n", policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001505 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 }
1507 }
1508
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301509 schedule_work(&policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001510
Dave Jonesc9060492008-02-07 16:32:18 -05001511fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301512 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001515static struct syscore_ops cpufreq_syscore_ops = {
1516 .suspend = cpufreq_bp_suspend,
1517 .resume = cpufreq_bp_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518};
1519
Borislav Petkov9d950462013-01-20 10:24:28 +00001520/**
1521 * cpufreq_get_current_driver - return current driver's name
1522 *
1523 * Return the name string of the currently loaded cpufreq driver
1524 * or NULL, if none.
1525 */
1526const char *cpufreq_get_current_driver(void)
1527{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001528 if (cpufreq_driver)
1529 return cpufreq_driver->name;
1530
1531 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001532}
1533EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535/*********************************************************************
1536 * NOTIFIER LISTS INTERFACE *
1537 *********************************************************************/
1538
1539/**
1540 * cpufreq_register_notifier - register a driver with cpufreq
1541 * @nb: notifier function to register
1542 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1543 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001544 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 * are notified about clock rate changes (once before and once after
1546 * the transition), or a list of drivers that are notified about
1547 * changes in cpufreq policy.
1548 *
1549 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001550 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 */
1552int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1553{
1554 int ret;
1555
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001556 if (cpufreq_disabled())
1557 return -EINVAL;
1558
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001559 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 switch (list) {
1562 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001563 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001564 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 break;
1566 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001567 ret = blocking_notifier_chain_register(
1568 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 break;
1570 default:
1571 ret = -EINVAL;
1572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 return ret;
1575}
1576EXPORT_SYMBOL(cpufreq_register_notifier);
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578/**
1579 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1580 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301581 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 *
1583 * Remove a driver from the CPU frequency notifier list.
1584 *
1585 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001586 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 */
1588int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1589{
1590 int ret;
1591
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001592 if (cpufreq_disabled())
1593 return -EINVAL;
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 switch (list) {
1596 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001597 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001598 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 break;
1600 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001601 ret = blocking_notifier_chain_unregister(
1602 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604 default:
1605 ret = -EINVAL;
1606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 return ret;
1609}
1610EXPORT_SYMBOL(cpufreq_unregister_notifier);
1611
1612
1613/*********************************************************************
1614 * GOVERNORS *
1615 *********************************************************************/
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617int __cpufreq_driver_target(struct cpufreq_policy *policy,
1618 unsigned int target_freq,
1619 unsigned int relation)
1620{
1621 int retval = -EINVAL;
Viresh Kumar72499242012-10-31 01:28:21 +01001622 unsigned int old_target_freq = target_freq;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001623
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001624 if (cpufreq_disabled())
1625 return -ENODEV;
Viresh Kumar7c30ed52013-06-19 10:16:55 +05301626 if (policy->transition_ongoing)
1627 return -EBUSY;
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001628
Viresh Kumar72499242012-10-31 01:28:21 +01001629 /* Make sure that target_freq is within supported range */
1630 if (target_freq > policy->max)
1631 target_freq = policy->max;
1632 if (target_freq < policy->min)
1633 target_freq = policy->min;
1634
1635 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
1636 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001637
1638 if (target_freq == policy->cur)
1639 return 0;
1640
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001641 if (cpufreq_driver->target)
1642 retval = cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return retval;
1645}
1646EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648int cpufreq_driver_target(struct cpufreq_policy *policy,
1649 unsigned int target_freq,
1650 unsigned int relation)
1651{
Julia Lawallf1829e42008-07-25 22:44:53 +02001652 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001654 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
Julia Lawallf1829e42008-07-25 22:44:53 +02001655 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 ret = __cpufreq_driver_target(policy, target_freq, relation);
1658
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001659 unlock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Julia Lawallf1829e42008-07-25 22:44:53 +02001661fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 return ret;
1663}
1664EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1665
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001666/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001667 * when "event" is CPUFREQ_GOV_LIMITS
1668 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301670static int __cpufreq_governor(struct cpufreq_policy *policy,
1671 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Dave Jonescc993ca2005-07-28 09:43:56 -07001673 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001674
1675 /* Only must be defined when default governor is known to have latency
1676 restrictions, like e.g. conservative or ondemand.
1677 That this is the case is already ensured in Kconfig
1678 */
1679#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1680 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1681#else
1682 struct cpufreq_governor *gov = NULL;
1683#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001684
1685 if (policy->governor->max_transition_latency &&
1686 policy->cpuinfo.transition_latency >
1687 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001688 if (!gov)
1689 return -EINVAL;
1690 else {
1691 printk(KERN_WARNING "%s governor failed, too long"
1692 " transition latency of HW, fallback"
1693 " to %s governor\n",
1694 policy->governor->name,
1695 gov->name);
1696 policy->governor = gov;
1697 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
1700 if (!try_module_get(policy->governor->owner))
1701 return -EINVAL;
1702
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001703 pr_debug("__cpufreq_governor for CPU %u, event %u\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301704 policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001705
1706 mutex_lock(&cpufreq_governor_lock);
1707 if ((!policy->governor_enabled && (event == CPUFREQ_GOV_STOP)) ||
1708 (policy->governor_enabled && (event == CPUFREQ_GOV_START))) {
1709 mutex_unlock(&cpufreq_governor_lock);
1710 return -EBUSY;
1711 }
1712
1713 if (event == CPUFREQ_GOV_STOP)
1714 policy->governor_enabled = false;
1715 else if (event == CPUFREQ_GOV_START)
1716 policy->governor_enabled = true;
1717
1718 mutex_unlock(&cpufreq_governor_lock);
1719
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 ret = policy->governor->governor(policy, event);
1721
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001722 if (!ret) {
1723 if (event == CPUFREQ_GOV_POLICY_INIT)
1724 policy->governor->initialized++;
1725 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1726 policy->governor->initialized--;
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001727 } else {
1728 /* Restore original values */
1729 mutex_lock(&cpufreq_governor_lock);
1730 if (event == CPUFREQ_GOV_STOP)
1731 policy->governor_enabled = true;
1732 else if (event == CPUFREQ_GOV_START)
1733 policy->governor_enabled = false;
1734 mutex_unlock(&cpufreq_governor_lock);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001735 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001736
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301737 /* we keep one module reference alive for
1738 each CPU governed by this CPU */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if ((event != CPUFREQ_GOV_START) || ret)
1740 module_put(policy->governor->owner);
1741 if ((event == CPUFREQ_GOV_STOP) && !ret)
1742 module_put(policy->governor->owner);
1743
1744 return ret;
1745}
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747int cpufreq_register_governor(struct cpufreq_governor *governor)
1748{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001749 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 if (!governor)
1752 return -EINVAL;
1753
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001754 if (cpufreq_disabled())
1755 return -ENODEV;
1756
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001757 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001758
Viresh Kumarb3940582013-02-01 05:42:58 +00001759 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001760 err = -EBUSY;
1761 if (__find_governor(governor->name) == NULL) {
1762 err = 0;
1763 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Dave Jones32ee8c32006-02-28 00:43:23 -05001766 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001767 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1772{
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001773#ifdef CONFIG_HOTPLUG_CPU
1774 int cpu;
1775#endif
1776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (!governor)
1778 return;
1779
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001780 if (cpufreq_disabled())
1781 return;
1782
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001783#ifdef CONFIG_HOTPLUG_CPU
1784 for_each_present_cpu(cpu) {
1785 if (cpu_online(cpu))
1786 continue;
1787 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1788 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1789 }
1790#endif
1791
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001792 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001794 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 return;
1796}
1797EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1798
1799
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800/*********************************************************************
1801 * POLICY INTERFACE *
1802 *********************************************************************/
1803
1804/**
1805 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001806 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1807 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 *
1809 * Reads the current cpufreq policy.
1810 */
1811int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1812{
1813 struct cpufreq_policy *cpu_policy;
1814 if (!policy)
1815 return -EINVAL;
1816
1817 cpu_policy = cpufreq_cpu_get(cpu);
1818 if (!cpu_policy)
1819 return -EINVAL;
1820
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301821 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return 0;
1825}
1826EXPORT_SYMBOL(cpufreq_get_policy);
1827
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001828/*
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301829 * data : current policy.
1830 * policy : policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001831 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301832static int __cpufreq_set_policy(struct cpufreq_policy *policy,
1833 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001835 int ret = 0, failed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301837 pr_debug("setting new policy for CPU %u: %u - %u kHz\n", new_policy->cpu,
1838 new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301840 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301842 if (new_policy->min > policy->max || new_policy->max < policy->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001843 ret = -EINVAL;
1844 goto error_out;
1845 }
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301848 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 if (ret)
1850 goto error_out;
1851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001853 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301854 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001857 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301858 CPUFREQ_INCOMPATIBLE, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Viresh Kumarbb176f72013-06-19 14:19:33 +05301860 /*
1861 * verify the cpu speed can be set within this limit, which might be
1862 * different to the first one
1863 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301864 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08001865 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001869 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301870 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301872 policy->min = new_policy->min;
1873 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001875 pr_debug("new min and max freqs are %u - %u kHz\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301876 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001878 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301879 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001880 pr_debug("setting range\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301881 ret = cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301883 if (new_policy->governor != policy->governor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 /* save old, working values */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301885 struct cpufreq_governor *old_gov = policy->governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001887 pr_debug("governor switch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 /* end old governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301890 if (policy->governor) {
1891 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1892 unlock_policy_rwsem_write(new_policy->cpu);
1893 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001894 CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301895 lock_policy_rwsem_write(new_policy->cpu);
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 /* start new governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301899 policy->governor = new_policy->governor;
1900 if (!__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT)) {
1901 if (!__cpufreq_governor(policy, CPUFREQ_GOV_START)) {
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001902 failed = 0;
Viresh Kumar955ef482013-05-16 05:09:58 +00001903 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301904 unlock_policy_rwsem_write(new_policy->cpu);
1905 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001906 CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301907 lock_policy_rwsem_write(new_policy->cpu);
Viresh Kumar955ef482013-05-16 05:09:58 +00001908 }
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001909 }
1910
1911 if (failed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 /* new governor failed, so re-start old one */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001913 pr_debug("starting governor %s failed\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301914 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (old_gov) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301916 policy->governor = old_gov;
1917 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001918 CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301919 __cpufreq_governor(policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301920 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
1922 ret = -EINVAL;
1923 goto error_out;
1924 }
1925 /* might be a policy change, too, so fall through */
1926 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001927 pr_debug("governor: change or update limits\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301928 __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930
Dave Jones7d5e3502006-02-02 17:03:42 -05001931error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return ret;
1933}
1934
1935/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1937 * @cpu: CPU which shall be re-evaluated
1938 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001939 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 * at different times.
1941 */
1942int cpufreq_update_policy(unsigned int cpu)
1943{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301944 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1945 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02001946 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301948 if (!policy) {
Julia Lawallf1829e42008-07-25 22:44:53 +02001949 ret = -ENODEV;
1950 goto no_policy;
1951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Julia Lawallf1829e42008-07-25 22:44:53 +02001953 if (unlikely(lock_policy_rwsem_write(cpu))) {
1954 ret = -EINVAL;
1955 goto fail;
1956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001958 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301959 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301960 new_policy.min = policy->user_policy.min;
1961 new_policy.max = policy->user_policy.max;
1962 new_policy.policy = policy->user_policy.policy;
1963 new_policy.governor = policy->user_policy.governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Viresh Kumarbb176f72013-06-19 14:19:33 +05301965 /*
1966 * BIOS might change freq behind our back
1967 * -> ask driver for current freq and notify governors about a change
1968 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001969 if (cpufreq_driver->get) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301970 new_policy.cur = cpufreq_driver->get(cpu);
1971 if (!policy->cur) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001972 pr_debug("Driver did not initialize current freq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301973 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001974 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301975 if (policy->cur != new_policy.cur && cpufreq_driver->target)
1976 cpufreq_out_of_sync(cpu, policy->cur,
1977 new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01001978 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01001979 }
1980
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301981 ret = __cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001983 unlock_policy_rwsem_write(cpu);
1984
Julia Lawallf1829e42008-07-25 22:44:53 +02001985fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301986 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02001987no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 return ret;
1989}
1990EXPORT_SYMBOL(cpufreq_update_policy);
1991
Paul Gortmaker27609842013-06-19 13:54:04 -04001992static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08001993 unsigned long action, void *hcpu)
1994{
1995 unsigned int cpu = (unsigned long)hcpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001996 struct device *dev;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05301997 bool frozen = false;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001998
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001999 dev = get_cpu_device(cpu);
2000 if (dev) {
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302001
2002 if (action & CPU_TASKS_FROZEN)
2003 frozen = true;
2004
2005 switch (action & ~CPU_TASKS_FROZEN) {
Ashok Rajc32b6b82005-10-30 14:59:54 -08002006 case CPU_ONLINE:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302007 __cpufreq_add_dev(dev, NULL, frozen);
Srivatsa S. Bhat23d328992013-07-30 04:23:56 +05302008 cpufreq_update_policy(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002009 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302010
Ashok Rajc32b6b82005-10-30 14:59:54 -08002011 case CPU_DOWN_PREPARE:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302012 __cpufreq_remove_dev(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002013 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302014
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002015 case CPU_DOWN_FAILED:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302016 __cpufreq_add_dev(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002017 break;
2018 }
2019 }
2020 return NOTIFY_OK;
2021}
2022
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002023static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302024 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002025};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027/*********************************************************************
2028 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2029 *********************************************************************/
2030
2031/**
2032 * cpufreq_register_driver - register a CPU Frequency driver
2033 * @driver_data: A struct cpufreq_driver containing the values#
2034 * submitted by the CPU Frequency driver.
2035 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302036 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002038 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 *
2040 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002041int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
2043 unsigned long flags;
2044 int ret;
2045
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002046 if (cpufreq_disabled())
2047 return -ENODEV;
2048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 if (!driver_data || !driver_data->verify || !driver_data->init ||
2050 ((!driver_data->setpolicy) && (!driver_data->target)))
2051 return -EINVAL;
2052
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002053 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
2055 if (driver_data->setpolicy)
2056 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2057
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002058 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002059 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002060 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 return -EBUSY;
2062 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002063 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002064 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002066 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002067 if (ret)
2068 goto err_null_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002070 if (!(cpufreq_driver->flags & CPUFREQ_STICKY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 int i;
2072 ret = -ENODEV;
2073
2074 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07002075 for (i = 0; i < nr_cpu_ids; i++)
2076 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07002078 break;
2079 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 /* if all ->init() calls failed, unregister */
2082 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002083 pr_debug("no CPU initialized for driver %s\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302084 driver_data->name);
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002085 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
2087 }
2088
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002089 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002090 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002092 return 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002093err_if_unreg:
2094 subsys_interface_unregister(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002095err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002096 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002097 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002098 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones4d34a672008-02-07 16:33:49 -05002099 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100}
2101EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2102
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103/**
2104 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2105 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302106 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 * the right to do so, i.e. if you have succeeded in initialising before!
2108 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2109 * currently not initialised.
2110 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002111int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112{
2113 unsigned long flags;
2114
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002115 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002118 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002120 subsys_interface_unregister(&cpufreq_interface);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002121 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002123 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002124 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002125 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
2127 return 0;
2128}
2129EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002130
2131static int __init cpufreq_core_init(void)
2132{
2133 int cpu;
2134
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002135 if (cpufreq_disabled())
2136 return -ENODEV;
2137
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002138 for_each_possible_cpu(cpu) {
Tejun Heof1625062009-10-29 22:34:13 +09002139 per_cpu(cpufreq_policy_cpu, cpu) = -1;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002140 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
2141 }
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002142
Viresh Kumar2361be22013-05-17 16:09:09 +05302143 cpufreq_global_kobject = kobject_create();
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002144 BUG_ON(!cpufreq_global_kobject);
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01002145 register_syscore_ops(&cpufreq_syscore_ops);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002146
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002147 return 0;
2148}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002149core_initcall(cpufreq_core_init);