blob: dd568aaf27280fb50e933cd7c4ae1ede8aca6519 [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>
Viresh Kumar2f0aea92014-03-04 11:00:26 +080029#include <linux/suspend.h>
Doug Anderson90de2a42014-12-23 22:09:48 -080030#include <linux/syscore_ops.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053031#include <linux/tick.h>
Thomas Renninger6f4f2722010-04-20 13:17:36 +020032#include <trace/events/power.h>
33
Viresh Kumarb4f06762015-01-27 14:06:08 +053034static LIST_HEAD(cpufreq_policy_list);
Viresh Kumarf9637352015-05-12 12:20:11 +053035
36static inline bool policy_is_inactive(struct cpufreq_policy *policy)
37{
38 return cpumask_empty(policy->cpus);
39}
40
41static bool suitable_policy(struct cpufreq_policy *policy, bool active)
42{
43 return active == !policy_is_inactive(policy);
44}
45
46/* Finds Next Acive/Inactive policy */
47static struct cpufreq_policy *next_policy(struct cpufreq_policy *policy,
48 bool active)
49{
50 do {
Viresh Kumarf9637352015-05-12 12:20:11 +053051 /* No more policies in the list */
Gautham R Shenoy2dadfd72016-01-27 12:02:26 +053052 if (list_is_last(&policy->policy_list, &cpufreq_policy_list))
Viresh Kumarf9637352015-05-12 12:20:11 +053053 return NULL;
Gautham R Shenoy2dadfd72016-01-27 12:02:26 +053054
55 policy = list_next_entry(policy, policy_list);
Viresh Kumarf9637352015-05-12 12:20:11 +053056 } while (!suitable_policy(policy, active));
57
58 return policy;
59}
60
61static struct cpufreq_policy *first_policy(bool active)
62{
63 struct cpufreq_policy *policy;
64
65 /* No policies in the list */
66 if (list_empty(&cpufreq_policy_list))
67 return NULL;
68
69 policy = list_first_entry(&cpufreq_policy_list, typeof(*policy),
70 policy_list);
71
72 if (!suitable_policy(policy, active))
73 policy = next_policy(policy, active);
74
75 return policy;
76}
77
78/* Macros to iterate over CPU policies */
79#define for_each_suitable_policy(__policy, __active) \
80 for (__policy = first_policy(__active); \
81 __policy; \
82 __policy = next_policy(__policy, __active))
83
84#define for_each_active_policy(__policy) \
85 for_each_suitable_policy(__policy, true)
86#define for_each_inactive_policy(__policy) \
87 for_each_suitable_policy(__policy, false)
88
89#define for_each_policy(__policy) \
Viresh Kumarb4f06762015-01-27 14:06:08 +053090 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list)
91
Viresh Kumarf7b27062015-01-27 14:06:09 +053092/* Iterate over governors */
93static LIST_HEAD(cpufreq_governor_list);
94#define for_each_governor(__governor) \
95 list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/**
Dave Jonescd878472006-08-11 17:59:28 -040098 * The "cpufreq driver" - the arch- or hardware-dependent low
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * level driver of CPUFreq support, and its spinlock. This lock
100 * also protects the cpufreq_cpu_data array.
101 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200102static struct cpufreq_driver *cpufreq_driver;
Mike Travis7a6aedf2008-03-25 15:06:53 -0700103static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
Viresh Kumarbb176f72013-06-19 14:19:33 +0530104static DEFINE_RWLOCK(cpufreq_driver_lock);
Rafael J. Wysocki34e2c552016-02-15 20:20:42 +0100105
106static DEFINE_PER_CPU(struct update_util_data *, cpufreq_update_util_data);
107
108/**
109 * cpufreq_set_update_util_data - Populate the CPU's update_util_data pointer.
110 * @cpu: The CPU to set the pointer for.
111 * @data: New pointer value.
112 *
113 * Set and publish the update_util_data pointer for the given CPU. That pointer
114 * points to a struct update_util_data object containing a callback function
115 * to call from cpufreq_update_util(). That function will be called from an RCU
116 * read-side critical section, so it must not sleep.
117 *
118 * Callers must use RCU callbacks to free any memory that might be accessed
119 * via the old update_util_data pointer or invoke synchronize_rcu() right after
120 * this function to avoid use-after-free.
121 */
122void cpufreq_set_update_util_data(int cpu, struct update_util_data *data)
123{
124 rcu_assign_pointer(per_cpu(cpufreq_update_util_data, cpu), data);
125}
126EXPORT_SYMBOL_GPL(cpufreq_set_update_util_data);
127
128/**
129 * cpufreq_update_util - Take a note about CPU utilization changes.
130 * @time: Current time.
131 * @util: Current utilization.
132 * @max: Utilization ceiling.
133 *
134 * This function is called by the scheduler on every invocation of
135 * update_load_avg() on the CPU whose utilization is being updated.
136 */
137void cpufreq_update_util(u64 time, unsigned long util, unsigned long max)
138{
139 struct update_util_data *data;
140
141 rcu_read_lock();
142
143 data = rcu_dereference(*this_cpu_ptr(&cpufreq_update_util_data));
144 if (data && data->func)
145 data->func(data, time, util, max);
146
147 rcu_read_unlock();
148}
149
Viresh Kumar2f0aea92014-03-04 11:00:26 +0800150/* Flag to suspend/resume CPUFreq governors */
151static bool cpufreq_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530153static inline bool has_target(void)
154{
155 return cpufreq_driver->target_index || cpufreq_driver->target;
156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158/* internal prototypes */
Viresh Kumara1317e02016-02-22 16:36:43 +0530159static int cpufreq_governor(struct cpufreq_policy *policy, unsigned int event);
Viresh Kumard92d50a2015-01-02 12:34:29 +0530160static unsigned int __cpufreq_get(struct cpufreq_policy *policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162/**
Dave Jones32ee8c32006-02-28 00:43:23 -0500163 * Two notifier lists: the "policy" list is involved in the
164 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 * "transition" list for kernel code that needs to handle
166 * changes to devices when the CPU clock speed changes.
167 * The mutex locks both lists.
168 */
Alan Sterne041c682006-03-27 01:16:30 -0800169static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700170static struct srcu_notifier_head cpufreq_transition_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200172static bool init_cpufreq_transition_notifier_list_called;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700173static int __init init_cpufreq_transition_notifier_list(void)
174{
175 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200176 init_cpufreq_transition_notifier_list_called = true;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700177 return 0;
178}
Linus Torvaldsb3438f82006-11-20 11:47:18 -0800179pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400181static int off __read_mostly;
Viresh Kumarda584452012-10-26 00:51:32 +0200182static int cpufreq_disabled(void)
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400183{
184 return off;
185}
186void disable_cpufreq(void)
187{
188 off = 1;
189}
Dave Jones29464f22009-01-18 01:37:11 -0500190static DEFINE_MUTEX(cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000192bool have_governor_per_policy(void)
193{
Viresh Kumar0b981e72013-10-02 14:13:18 +0530194 return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000195}
Viresh Kumar3f869d62013-05-16 05:09:56 +0000196EXPORT_SYMBOL_GPL(have_governor_per_policy);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000197
Viresh Kumar944e9a02013-05-16 05:09:57 +0000198struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
199{
200 if (have_governor_per_policy())
201 return &policy->kobj;
202 else
203 return cpufreq_global_kobject;
204}
205EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
206
Viresh Kumar5a31d592015-07-10 01:43:27 +0200207struct cpufreq_frequency_table *cpufreq_frequency_get_table(unsigned int cpu)
208{
209 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
210
211 return policy && !policy_is_inactive(policy) ?
212 policy->freq_table : NULL;
213}
214EXPORT_SYMBOL_GPL(cpufreq_frequency_get_table);
215
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000216static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
217{
218 u64 idle_time;
219 u64 cur_wall_time;
220 u64 busy_time;
221
222 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
223
224 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
225 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
226 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
227 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
228 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
229 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
230
231 idle_time = cur_wall_time - busy_time;
232 if (wall)
233 *wall = cputime_to_usecs(cur_wall_time);
234
235 return cputime_to_usecs(idle_time);
236}
237
238u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
239{
240 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
241
242 if (idle_time == -1ULL)
243 return get_cpu_idle_time_jiffy(cpu, wall);
244 else if (!io_busy)
245 idle_time += get_cpu_iowait_time_us(cpu, wall);
246
247 return idle_time;
248}
249EXPORT_SYMBOL_GPL(get_cpu_idle_time);
250
Viresh Kumar70e9e772013-10-03 20:29:07 +0530251/*
252 * This is a generic cpufreq init() routine which can be used by cpufreq
253 * drivers of SMP systems. It will do following:
254 * - validate & show freq table passed
255 * - set policies transition latency
256 * - policy->cpus with all possible CPUs
257 */
258int cpufreq_generic_init(struct cpufreq_policy *policy,
259 struct cpufreq_frequency_table *table,
260 unsigned int transition_latency)
261{
262 int ret;
263
264 ret = cpufreq_table_validate_and_show(policy, table);
265 if (ret) {
266 pr_err("%s: invalid frequency table: %d\n", __func__, ret);
267 return ret;
268 }
269
270 policy->cpuinfo.transition_latency = transition_latency;
271
272 /*
Shailendra Verma58405af2015-05-22 22:48:22 +0530273 * The driver only supports the SMP configuration where all processors
Viresh Kumar70e9e772013-10-03 20:29:07 +0530274 * share the clock and voltage and clock.
275 */
276 cpumask_setall(policy->cpus);
277
278 return 0;
279}
280EXPORT_SYMBOL_GPL(cpufreq_generic_init);
281
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200282struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
Viresh Kumar652ed952014-01-09 20:38:43 +0530283{
284 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
285
Viresh Kumar988bed02015-05-08 11:53:45 +0530286 return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
287}
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200288EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
Viresh Kumar988bed02015-05-08 11:53:45 +0530289
290unsigned int cpufreq_generic_get(unsigned int cpu)
291{
292 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
293
Viresh Kumar652ed952014-01-09 20:38:43 +0530294 if (!policy || IS_ERR(policy->clk)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700295 pr_err("%s: No %s associated to cpu: %d\n",
296 __func__, policy ? "clk" : "policy", cpu);
Viresh Kumar652ed952014-01-09 20:38:43 +0530297 return 0;
298 }
299
300 return clk_get_rate(policy->clk) / 1000;
301}
302EXPORT_SYMBOL_GPL(cpufreq_generic_get);
303
Viresh Kumar50e9c852015-02-19 17:02:03 +0530304/**
305 * cpufreq_cpu_get: returns policy for a cpu and marks it busy.
306 *
307 * @cpu: cpu to find policy for.
308 *
309 * This returns policy for 'cpu', returns NULL if it doesn't exist.
310 * It also increments the kobject reference count to mark it busy and so would
311 * require a corresponding call to cpufreq_cpu_put() to decrement it back.
312 * If corresponding call cpufreq_cpu_put() isn't made, the policy wouldn't be
313 * freed as that depends on the kobj count.
314 *
Viresh Kumar50e9c852015-02-19 17:02:03 +0530315 * Return: A valid policy on success, otherwise NULL on failure.
316 */
Viresh Kumar6eed9402013-08-06 22:53:11 +0530317struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530319 struct cpufreq_policy *policy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 unsigned long flags;
321
Viresh Kumar1b947c92015-02-19 17:02:05 +0530322 if (WARN_ON(cpu >= nr_cpu_ids))
Viresh Kumar6eed9402013-08-06 22:53:11 +0530323 return NULL;
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 /* get the cpufreq driver */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000326 read_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Viresh Kumar6eed9402013-08-06 22:53:11 +0530328 if (cpufreq_driver) {
329 /* get the CPU */
Viresh Kumar988bed02015-05-08 11:53:45 +0530330 policy = cpufreq_cpu_get_raw(cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530331 if (policy)
332 kobject_get(&policy->kobj);
333 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200334
Viresh Kumar6eed9402013-08-06 22:53:11 +0530335 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530337 return policy;
Stephen Boyda9144432012-07-20 18:14:38 +0000338}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
340
Viresh Kumar50e9c852015-02-19 17:02:03 +0530341/**
342 * cpufreq_cpu_put: Decrements the usage count of a policy
343 *
344 * @policy: policy earlier returned by cpufreq_cpu_get().
345 *
346 * This decrements the kobject reference count incremented earlier by calling
347 * cpufreq_cpu_get().
Viresh Kumar50e9c852015-02-19 17:02:03 +0530348 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530349void cpufreq_cpu_put(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530351 kobject_put(&policy->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352}
353EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
357 *********************************************************************/
358
359/**
360 * adjust_jiffies - adjust the system "loops_per_jiffy"
361 *
362 * This function alters the system "loops_per_jiffy" for the clock
363 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500364 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * per-CPU loops_per_jiffy value wherever possible.
366 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800367static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
Viresh Kumar39c132e2015-01-02 12:34:34 +0530369#ifndef CONFIG_SMP
370 static unsigned long l_p_j_ref;
371 static unsigned int l_p_j_ref_freq;
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (ci->flags & CPUFREQ_CONST_LOOPS)
374 return;
375
376 if (!l_p_j_ref_freq) {
377 l_p_j_ref = loops_per_jiffy;
378 l_p_j_ref_freq = ci->old;
Joe Perchese837f9b2014-03-11 10:03:00 -0700379 pr_debug("saving %lu as reference value for loops_per_jiffy; freq is %u kHz\n",
380 l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 }
Viresh Kumar0b443ea2014-03-19 11:24:58 +0530382 if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530383 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
384 ci->new);
Joe Perchese837f9b2014-03-11 10:03:00 -0700385 pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
386 loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#endif
Viresh Kumar39c132e2015-01-02 12:34:34 +0530389}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Viresh Kumar0956df9c2013-06-19 14:19:34 +0530391static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530392 struct cpufreq_freqs *freqs, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 BUG_ON(irqs_disabled());
395
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000396 if (cpufreq_disabled())
397 return;
398
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200399 freqs->flags = cpufreq_driver->flags;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200400 pr_debug("notification %u of frequency transition to %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -0700401 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 case CPUFREQ_PRECHANGE:
Dave Jones32ee8c32006-02-28 00:43:23 -0500406 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800407 * which is not equal to what the cpufreq core thinks is
408 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200410 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800411 if ((policy) && (policy->cpu == freqs->cpu) &&
412 (policy->cur) && (policy->cur != freqs->old)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700413 pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
414 freqs->old, policy->cur);
Dave Jonese4472cb2006-01-31 15:53:55 -0800415 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700418 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800419 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
421 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 case CPUFREQ_POSTCHANGE:
424 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Joe Perchese837f9b2014-03-11 10:03:00 -0700425 pr_debug("FREQ: %lu - CPU: %lu\n",
426 (unsigned long)freqs->new, (unsigned long)freqs->cpu);
Thomas Renninger25e41932011-01-03 17:50:44 +0100427 trace_cpu_frequency(freqs->new, freqs->cpu);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700428 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800429 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800430 if (likely(policy) && likely(policy->cpu == freqs->cpu))
431 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 break;
433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
Viresh Kumarbb176f72013-06-19 14:19:33 +0530435
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530436/**
437 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
438 * on frequency transition.
439 *
440 * This function calls the transition notifiers and the "adjust_jiffies"
441 * function. It is called twice on all CPU frequency changes that have
442 * external effects.
443 */
Viresh Kumar236a9802014-03-24 13:35:46 +0530444static void cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530445 struct cpufreq_freqs *freqs, unsigned int state)
446{
447 for_each_cpu(freqs->cpu, policy->cpus)
448 __cpufreq_notify_transition(policy, freqs, state);
449}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530451/* Do post notifications when there are chances that transition has failed */
Viresh Kumar236a9802014-03-24 13:35:46 +0530452static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530453 struct cpufreq_freqs *freqs, int transition_failed)
454{
455 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
456 if (!transition_failed)
457 return;
458
459 swap(freqs->old, freqs->new);
460 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
461 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
462}
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530463
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530464void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
465 struct cpufreq_freqs *freqs)
466{
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530467
468 /*
469 * Catch double invocations of _begin() which lead to self-deadlock.
470 * ASYNC_NOTIFICATION drivers are left out because the cpufreq core
471 * doesn't invoke _begin() on their behalf, and hence the chances of
472 * double invocations are very low. Moreover, there are scenarios
473 * where these checks can emit false-positive warnings in these
474 * drivers; so we avoid that by skipping them altogether.
475 */
476 WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
477 && current == policy->transition_task);
478
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530479wait:
480 wait_event(policy->transition_wait, !policy->transition_ongoing);
481
482 spin_lock(&policy->transition_lock);
483
484 if (unlikely(policy->transition_ongoing)) {
485 spin_unlock(&policy->transition_lock);
486 goto wait;
487 }
488
489 policy->transition_ongoing = true;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530490 policy->transition_task = current;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530491
492 spin_unlock(&policy->transition_lock);
493
494 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
495}
496EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);
497
498void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
499 struct cpufreq_freqs *freqs, int transition_failed)
500{
501 if (unlikely(WARN_ON(!policy->transition_ongoing)))
502 return;
503
504 cpufreq_notify_post_transition(policy, freqs, transition_failed);
505
506 policy->transition_ongoing = false;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530507 policy->transition_task = NULL;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530508
509 wake_up(&policy->transition_wait);
510}
511EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514/*********************************************************************
515 * SYSFS INTERFACE *
516 *********************************************************************/
Rashika Kheria8a5c74a2014-02-26 22:12:42 +0530517static ssize_t show_boost(struct kobject *kobj,
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100518 struct attribute *attr, char *buf)
519{
520 return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
521}
522
523static ssize_t store_boost(struct kobject *kobj, struct attribute *attr,
524 const char *buf, size_t count)
525{
526 int ret, enable;
527
528 ret = sscanf(buf, "%d", &enable);
529 if (ret != 1 || enable < 0 || enable > 1)
530 return -EINVAL;
531
532 if (cpufreq_boost_trigger_state(enable)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700533 pr_err("%s: Cannot %s BOOST!\n",
534 __func__, enable ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100535 return -EINVAL;
536 }
537
Joe Perchese837f9b2014-03-11 10:03:00 -0700538 pr_debug("%s: cpufreq BOOST %s\n",
539 __func__, enable ? "enabled" : "disabled");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100540
541 return count;
542}
543define_one_global_rw(boost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530545static struct cpufreq_governor *find_governor(const char *str_governor)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700546{
547 struct cpufreq_governor *t;
548
Viresh Kumarf7b27062015-01-27 14:06:09 +0530549 for_each_governor(t)
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200550 if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700551 return t;
552
553 return NULL;
554}
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556/**
557 * cpufreq_parse_governor - parse a governor string
558 */
Dave Jones905d77c2008-03-05 14:28:32 -0500559static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 struct cpufreq_governor **governor)
561{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700562 int err = -EINVAL;
563
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200564 if (cpufreq_driver->setpolicy) {
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200565 if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700567 err = 0;
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200568 } else if (!strncasecmp(str_governor, "powersave",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530569 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700571 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Viresh Kumar2e1cc3a2015-01-02 12:34:27 +0530573 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700575
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800576 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700577
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530578 t = find_governor(str_governor);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700579
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700580 if (t == NULL) {
Kees Cook1a8e1462011-05-04 08:38:56 -0700581 int ret;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700582
Kees Cook1a8e1462011-05-04 08:38:56 -0700583 mutex_unlock(&cpufreq_governor_mutex);
584 ret = request_module("cpufreq_%s", str_governor);
585 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700586
Kees Cook1a8e1462011-05-04 08:38:56 -0700587 if (ret == 0)
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530588 t = find_governor(str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700589 }
590
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700591 if (t != NULL) {
592 *governor = t;
593 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700595
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800596 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700598 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530602 * cpufreq_per_cpu_attr_read() / show_##file_name() -
603 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 *
605 * Write out information from cpufreq_driver->policy[cpu]; object must be
606 * "unsigned int".
607 */
608
Dave Jones32ee8c32006-02-28 00:43:23 -0500609#define show_one(file_name, object) \
610static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500611(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500612{ \
Dave Jones29464f22009-01-18 01:37:11 -0500613 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
616show_one(cpuinfo_min_freq, cpuinfo.min_freq);
617show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100618show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619show_one(scaling_min_freq, min);
620show_one(scaling_max_freq, max);
Dirk Brandewiec034b022014-10-13 08:37:40 -0700621
Viresh Kumar09347b22015-01-02 12:34:24 +0530622static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
Dirk Brandewiec034b022014-10-13 08:37:40 -0700623{
624 ssize_t ret;
625
626 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
627 ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
628 else
629 ret = sprintf(buf, "%u\n", policy->cur);
630 return ret;
631}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Viresh Kumar037ce832013-10-02 14:13:16 +0530633static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530634 struct cpufreq_policy *new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636/**
637 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
638 */
639#define store_one(file_name, object) \
640static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500641(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{ \
Vince Hsu619c144c2014-11-10 14:14:50 +0800643 int ret, temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 struct cpufreq_policy new_policy; \
645 \
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530646 memcpy(&new_policy, policy, sizeof(*policy)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 \
Dave Jones29464f22009-01-18 01:37:11 -0500648 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (ret != 1) \
650 return -EINVAL; \
651 \
Vince Hsu619c144c2014-11-10 14:14:50 +0800652 temp = new_policy.object; \
Viresh Kumar037ce832013-10-02 14:13:16 +0530653 ret = cpufreq_set_policy(policy, &new_policy); \
Vince Hsu619c144c2014-11-10 14:14:50 +0800654 if (!ret) \
655 policy->user_policy.object = temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 \
657 return ret ? ret : count; \
658}
659
Dave Jones29464f22009-01-18 01:37:11 -0500660store_one(scaling_min_freq, min);
661store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663/**
664 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
665 */
Dave Jones905d77c2008-03-05 14:28:32 -0500666static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
667 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Viresh Kumard92d50a2015-01-02 12:34:29 +0530669 unsigned int cur_freq = __cpufreq_get(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 if (!cur_freq)
671 return sprintf(buf, "<unknown>");
672 return sprintf(buf, "%u\n", cur_freq);
673}
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675/**
676 * show_scaling_governor - show the current policy for the specified CPU
677 */
Dave Jones905d77c2008-03-05 14:28:32 -0500678static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Dave Jones29464f22009-01-18 01:37:11 -0500680 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return sprintf(buf, "powersave\n");
682 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
683 return sprintf(buf, "performance\n");
684 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200685 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500686 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return -EINVAL;
688}
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690/**
691 * store_scaling_governor - store policy for the specified CPU
692 */
Dave Jones905d77c2008-03-05 14:28:32 -0500693static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
694 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530696 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 char str_governor[16];
698 struct cpufreq_policy new_policy;
699
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530700 memcpy(&new_policy, policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Dave Jones29464f22009-01-18 01:37:11 -0500702 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 if (ret != 1)
704 return -EINVAL;
705
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530706 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
707 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return -EINVAL;
709
Viresh Kumar037ce832013-10-02 14:13:16 +0530710 ret = cpufreq_set_policy(policy, &new_policy);
Viresh Kumar88dc4382015-08-03 08:36:18 +0530711 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714/**
715 * show_scaling_driver - show the cpufreq driver currently loaded
716 */
Dave Jones905d77c2008-03-05 14:28:32 -0500717static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200719 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722/**
723 * show_scaling_available_governors - show the available CPUfreq governors
724 */
Dave Jones905d77c2008-03-05 14:28:32 -0500725static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
726 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 ssize_t i = 0;
729 struct cpufreq_governor *t;
730
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530731 if (!has_target()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 i += sprintf(buf, "performance powersave");
733 goto out;
734 }
735
Viresh Kumarf7b27062015-01-27 14:06:09 +0530736 for_each_governor(t) {
Dave Jones29464f22009-01-18 01:37:11 -0500737 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
738 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200740 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500742out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 i += sprintf(&buf[i], "\n");
744 return i;
745}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700746
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800747ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 ssize_t i = 0;
750 unsigned int cpu;
751
Rusty Russell835481d2009-01-04 05:18:06 -0800752 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (i)
754 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
755 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
756 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500757 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759 i += sprintf(&buf[i], "\n");
760 return i;
761}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800762EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700764/**
765 * show_related_cpus - show the CPUs affected by each transition even if
766 * hw coordination is in use
767 */
768static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
769{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800770 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700771}
772
773/**
774 * show_affected_cpus - show the CPUs affected by each transition
775 */
776static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
777{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800778 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700779}
780
Venki Pallipadi9e769882007-10-26 10:18:21 -0700781static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500782 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700783{
784 unsigned int freq = 0;
785 unsigned int ret;
786
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700787 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700788 return -EINVAL;
789
790 ret = sscanf(buf, "%u", &freq);
791 if (ret != 1)
792 return -EINVAL;
793
794 policy->governor->store_setspeed(policy, freq);
795
796 return count;
797}
798
799static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
800{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700801 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700802 return sprintf(buf, "<unsupported>\n");
803
804 return policy->governor->show_setspeed(policy, buf);
805}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Thomas Renningere2f74f32009-11-19 12:31:01 +0100807/**
viresh kumar8bf1ac722012-10-23 01:23:33 +0200808 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100809 */
810static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
811{
812 unsigned int limit;
813 int ret;
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200814 if (cpufreq_driver->bios_limit) {
815 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100816 if (!ret)
817 return sprintf(buf, "%u\n", limit);
818 }
819 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
820}
821
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200822cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
823cpufreq_freq_attr_ro(cpuinfo_min_freq);
824cpufreq_freq_attr_ro(cpuinfo_max_freq);
825cpufreq_freq_attr_ro(cpuinfo_transition_latency);
826cpufreq_freq_attr_ro(scaling_available_governors);
827cpufreq_freq_attr_ro(scaling_driver);
828cpufreq_freq_attr_ro(scaling_cur_freq);
829cpufreq_freq_attr_ro(bios_limit);
830cpufreq_freq_attr_ro(related_cpus);
831cpufreq_freq_attr_ro(affected_cpus);
832cpufreq_freq_attr_rw(scaling_min_freq);
833cpufreq_freq_attr_rw(scaling_max_freq);
834cpufreq_freq_attr_rw(scaling_governor);
835cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
Dave Jones905d77c2008-03-05 14:28:32 -0500837static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 &cpuinfo_min_freq.attr,
839 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100840 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 &scaling_min_freq.attr,
842 &scaling_max_freq.attr,
843 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700844 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 &scaling_governor.attr,
846 &scaling_driver.attr,
847 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700848 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 NULL
850};
851
Dave Jones29464f22009-01-18 01:37:11 -0500852#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
853#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Dave Jones29464f22009-01-18 01:37:11 -0500855static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Dave Jones905d77c2008-03-05 14:28:32 -0500857 struct cpufreq_policy *policy = to_policy(kobj);
858 struct freq_attr *fattr = to_attr(attr);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530859 ssize_t ret;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530860
viresh kumarad7722d2013-10-18 19:10:15 +0530861 down_read(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800862
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530863 if (fattr->show)
864 ret = fattr->show(policy, buf);
865 else
866 ret = -EIO;
867
viresh kumarad7722d2013-10-18 19:10:15 +0530868 up_read(&policy->rwsem);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return ret;
871}
872
Dave Jones905d77c2008-03-05 14:28:32 -0500873static ssize_t store(struct kobject *kobj, struct attribute *attr,
874 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Dave Jones905d77c2008-03-05 14:28:32 -0500876 struct cpufreq_policy *policy = to_policy(kobj);
877 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500878 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530879
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530880 get_online_cpus();
881
882 if (!cpu_online(policy->cpu))
883 goto unlock;
884
viresh kumarad7722d2013-10-18 19:10:15 +0530885 down_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800886
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530887 if (fattr->store)
888 ret = fattr->store(policy, buf, count);
889 else
890 ret = -EIO;
891
viresh kumarad7722d2013-10-18 19:10:15 +0530892 up_write(&policy->rwsem);
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530893unlock:
894 put_online_cpus();
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 return ret;
897}
898
Dave Jones905d77c2008-03-05 14:28:32 -0500899static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Dave Jones905d77c2008-03-05 14:28:32 -0500901 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200902 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 complete(&policy->kobj_unregister);
904}
905
Emese Revfy52cf25d2010-01-19 02:58:23 +0100906static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 .show = show,
908 .store = store,
909};
910
911static struct kobj_type ktype_cpufreq = {
912 .sysfs_ops = &sysfs_ops,
913 .default_attrs = default_attrs,
914 .release = cpufreq_sysfs_release,
915};
916
Viresh Kumar87549142015-06-10 02:13:21 +0200917static int add_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
918{
919 struct device *cpu_dev;
920
921 pr_debug("%s: Adding symlink for CPU: %u\n", __func__, cpu);
922
923 if (!policy)
924 return 0;
925
926 cpu_dev = get_cpu_device(cpu);
927 if (WARN_ON(!cpu_dev))
928 return 0;
929
930 return sysfs_create_link(&cpu_dev->kobj, &policy->kobj, "cpufreq");
931}
932
933static void remove_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
934{
935 struct device *cpu_dev;
936
937 pr_debug("%s: Removing symlink for CPU: %u\n", __func__, cpu);
938
939 cpu_dev = get_cpu_device(cpu);
940 if (WARN_ON(!cpu_dev))
941 return;
942
943 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
944}
945
946/* Add/remove symlinks for all related CPUs */
Viresh Kumar308b60e2013-07-31 14:35:14 +0200947static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400948{
949 unsigned int j;
950 int ret = 0;
951
Viresh Kumar87549142015-06-10 02:13:21 +0200952 /* Some related CPUs might not be present (physically hotplugged) */
Rafael J. Wysocki559ed402015-07-26 02:07:47 +0200953 for_each_cpu(j, policy->real_cpus) {
Viresh Kumar87549142015-06-10 02:13:21 +0200954 ret = add_cpu_dev_symlink(policy, j);
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200955 if (ret)
956 break;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400957 }
Viresh Kumar87549142015-06-10 02:13:21 +0200958
Dave Jones19d6f7e2009-07-08 17:35:39 -0400959 return ret;
960}
961
Viresh Kumar87549142015-06-10 02:13:21 +0200962static void cpufreq_remove_dev_symlink(struct cpufreq_policy *policy)
963{
964 unsigned int j;
965
966 /* Some related CPUs might not be present (physically hotplugged) */
Viresh Kumar96bdda62015-10-15 21:35:24 +0530967 for_each_cpu(j, policy->real_cpus)
Viresh Kumar87549142015-06-10 02:13:21 +0200968 remove_cpu_dev_symlink(policy, j);
Viresh Kumar87549142015-06-10 02:13:21 +0200969}
970
Rafael J. Wysockid9612a42015-07-27 23:11:37 +0200971static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
Dave Jones909a6942009-07-08 18:05:42 -0400972{
973 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -0400974 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -0400975
Dave Jones909a6942009-07-08 18:05:42 -0400976 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200977 drv_attr = cpufreq_driver->attr;
Viresh Kumarf13f1182015-01-02 12:34:23 +0530978 while (drv_attr && *drv_attr) {
Dave Jones909a6942009-07-08 18:05:42 -0400979 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
980 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100981 return ret;
Dave Jones909a6942009-07-08 18:05:42 -0400982 drv_attr++;
983 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200984 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -0400985 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
986 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100987 return ret;
Dave Jones909a6942009-07-08 18:05:42 -0400988 }
Dirk Brandewiec034b022014-10-13 08:37:40 -0700989
990 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
991 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100992 return ret;
Dirk Brandewiec034b022014-10-13 08:37:40 -0700993
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200994 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100995 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
996 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100997 return ret;
Thomas Renningere2f74f32009-11-19 12:31:01 +0100998 }
Dave Jones909a6942009-07-08 18:05:42 -0400999
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001000 return cpufreq_add_dev_symlink(policy);
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301001}
1002
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001003__weak struct cpufreq_governor *cpufreq_default_governor(void)
1004{
1005 return NULL;
1006}
1007
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301008static int cpufreq_init_policy(struct cpufreq_policy *policy)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301009{
viresh kumar6e2c89d2014-03-04 11:43:59 +08001010 struct cpufreq_governor *gov = NULL;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301011 struct cpufreq_policy new_policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301012
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301013 memcpy(&new_policy, policy, sizeof(*policy));
Jason Barona27a9ab2013-12-19 22:50:50 +00001014
viresh kumar6e2c89d2014-03-04 11:43:59 +08001015 /* Update governor of new_policy to the governor used before hotplug */
Viresh Kumar45732372015-05-12 12:22:34 +05301016 gov = find_governor(policy->last_governor);
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001017 if (gov) {
viresh kumar6e2c89d2014-03-04 11:43:59 +08001018 pr_debug("Restoring governor %s for cpu %d\n",
1019 policy->governor->name, policy->cpu);
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001020 } else {
1021 gov = cpufreq_default_governor();
1022 if (!gov)
1023 return -ENODATA;
1024 }
viresh kumar6e2c89d2014-03-04 11:43:59 +08001025
1026 new_policy.governor = gov;
1027
Srinivas Pandruvada69030dd2015-12-01 16:52:14 -08001028 /* Use the default policy if there is no last_policy. */
1029 if (cpufreq_driver->setpolicy) {
1030 if (policy->last_policy)
1031 new_policy.policy = policy->last_policy;
1032 else
1033 cpufreq_parse_governor(gov->name, &new_policy.policy,
1034 NULL);
1035 }
Dave Jonesecf7e462009-07-08 18:48:47 -04001036 /* set default policy */
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301037 return cpufreq_set_policy(policy, &new_policy);
Dave Jones909a6942009-07-08 18:05:42 -04001038}
1039
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001040static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
Viresh Kumarfcf80582013-01-29 14:39:08 +00001041{
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301042 int ret = 0;
Viresh Kumarfcf80582013-01-29 14:39:08 +00001043
Viresh Kumarbb29ae12015-02-19 17:02:06 +05301044 /* Has this CPU been taken care of already? */
1045 if (cpumask_test_cpu(cpu, policy->cpus))
1046 return 0;
1047
Viresh Kumar49f18562016-02-11 17:31:12 +05301048 down_write(&policy->rwsem);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301049 if (has_target()) {
Viresh Kumara1317e02016-02-22 16:36:43 +05301050 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301051 if (ret) {
1052 pr_err("%s: Failed to stop governor\n", __func__);
Viresh Kumar49f18562016-02-11 17:31:12 +05301053 goto unlock;
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301054 }
1055 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001056
Viresh Kumarfcf80582013-01-29 14:39:08 +00001057 cpumask_set_cpu(cpu, policy->cpus);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301058
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301059 if (has_target()) {
Viresh Kumara1317e02016-02-22 16:36:43 +05301060 ret = cpufreq_governor(policy, CPUFREQ_GOV_START);
Stratos Karafotise5c87b72014-03-19 23:29:17 +02001061 if (!ret)
Viresh Kumara1317e02016-02-22 16:36:43 +05301062 ret = cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Stratos Karafotise5c87b72014-03-19 23:29:17 +02001063
Viresh Kumar49f18562016-02-11 17:31:12 +05301064 if (ret)
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301065 pr_err("%s: Failed to start governor\n", __func__);
Viresh Kumar820c6ca2013-04-22 00:48:03 +02001066 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001067
Viresh Kumar49f18562016-02-11 17:31:12 +05301068unlock:
1069 up_write(&policy->rwsem);
1070 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +00001071}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Viresh Kumar11eb69b2016-02-22 16:36:42 +05301073static void handle_update(struct work_struct *work)
1074{
1075 struct cpufreq_policy *policy =
1076 container_of(work, struct cpufreq_policy, update);
1077 unsigned int cpu = policy->cpu;
1078 pr_debug("handle_update for cpu %u called\n", cpu);
1079 cpufreq_update_policy(cpu);
1080}
1081
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001082static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301083{
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001084 struct device *dev = get_cpu_device(cpu);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301085 struct cpufreq_policy *policy;
1086
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001087 if (WARN_ON(!dev))
1088 return NULL;
1089
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301090 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
1091 if (!policy)
1092 return NULL;
1093
1094 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
1095 goto err_free_policy;
1096
1097 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
1098 goto err_free_cpumask;
1099
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001100 if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
1101 goto err_free_rcpumask;
1102
Viresh Kumar3510fac2015-10-16 12:41:12 +05301103 kobject_init(&policy->kobj, &ktype_cpufreq);
Lukasz Majewskic88a1f82013-08-06 22:53:08 +05301104 INIT_LIST_HEAD(&policy->policy_list);
viresh kumarad7722d2013-10-18 19:10:15 +05301105 init_rwsem(&policy->rwsem);
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +05301106 spin_lock_init(&policy->transition_lock);
1107 init_waitqueue_head(&policy->transition_wait);
Viresh Kumar818c5712015-01-02 12:34:38 +05301108 init_completion(&policy->kobj_unregister);
1109 INIT_WORK(&policy->update, handle_update);
viresh kumarad7722d2013-10-18 19:10:15 +05301110
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001111 policy->cpu = cpu;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301112 return policy;
1113
Viresh Kumar2fc33842015-06-08 18:25:29 +05301114err_free_rcpumask:
1115 free_cpumask_var(policy->related_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301116err_free_cpumask:
1117 free_cpumask_var(policy->cpus);
1118err_free_policy:
1119 kfree(policy);
1120
1121 return NULL;
1122}
1123
Viresh Kumar2fc33842015-06-08 18:25:29 +05301124static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy, bool notify)
Viresh Kumar42f921a2013-12-20 21:26:02 +05301125{
1126 struct kobject *kobj;
1127 struct completion *cmp;
1128
Viresh Kumar2fc33842015-06-08 18:25:29 +05301129 if (notify)
1130 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1131 CPUFREQ_REMOVE_POLICY, policy);
Viresh Kumarfcd7af92014-01-07 07:10:10 +05301132
Viresh Kumar87549142015-06-10 02:13:21 +02001133 down_write(&policy->rwsem);
1134 cpufreq_remove_dev_symlink(policy);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301135 kobj = &policy->kobj;
1136 cmp = &policy->kobj_unregister;
Viresh Kumar87549142015-06-10 02:13:21 +02001137 up_write(&policy->rwsem);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301138 kobject_put(kobj);
1139
1140 /*
1141 * We need to make sure that the underlying kobj is
1142 * actually not referenced anymore by anybody before we
1143 * proceed with unloading.
1144 */
1145 pr_debug("waiting for dropping of refcount\n");
1146 wait_for_completion(cmp);
1147 pr_debug("wait complete\n");
1148}
1149
Viresh Kumar3654c5c2015-06-08 18:25:30 +05301150static void cpufreq_policy_free(struct cpufreq_policy *policy, bool notify)
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301151{
Viresh Kumar988bed02015-05-08 11:53:45 +05301152 unsigned long flags;
1153 int cpu;
1154
1155 /* Remove policy from list */
1156 write_lock_irqsave(&cpufreq_driver_lock, flags);
1157 list_del(&policy->policy_list);
1158
1159 for_each_cpu(cpu, policy->related_cpus)
1160 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1161 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1162
Viresh Kumar3654c5c2015-06-08 18:25:30 +05301163 cpufreq_policy_put_kobj(policy, notify);
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001164 free_cpumask_var(policy->real_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301165 free_cpumask_var(policy->related_cpus);
1166 free_cpumask_var(policy->cpus);
1167 kfree(policy);
1168}
1169
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001170static int cpufreq_online(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Viresh Kumar7f0c0202015-01-02 12:34:32 +05301172 struct cpufreq_policy *policy;
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001173 bool new_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 unsigned long flags;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001175 unsigned int j;
1176 int ret;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001177
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001178 pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301179
Viresh Kumarbb29ae12015-02-19 17:02:06 +05301180 /* Check if this CPU already has a policy to manage it */
Viresh Kumar9104bb22015-05-12 12:22:12 +05301181 policy = per_cpu(cpufreq_cpu_data, cpu);
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001182 if (policy) {
Viresh Kumar9104bb22015-05-12 12:22:12 +05301183 WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001184 if (!policy_is_inactive(policy))
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001185 return cpufreq_add_policy_cpu(policy, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001187 /* This is the only online CPU for the policy. Start over. */
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001188 new_policy = false;
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001189 down_write(&policy->rwsem);
1190 policy->cpu = cpu;
1191 policy->governor = NULL;
1192 up_write(&policy->rwsem);
1193 } else {
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001194 new_policy = true;
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001195 policy = cpufreq_policy_alloc(cpu);
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001196 if (!policy)
Rafael J. Wysockid4d854d2015-07-27 23:11:30 +02001197 return -ENOMEM;
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001198 }
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301199
Rusty Russell835481d2009-01-04 05:18:06 -08001200 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 /* call driver. From then on the cpufreq must be able
1203 * to accept all calls to ->verify and ->setpolicy for this CPU
1204 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001205 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001207 pr_debug("initialization failed\n");
Viresh Kumar8101f992015-07-08 15:12:15 +05301208 goto out_free_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001210
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001211 down_write(&policy->rwsem);
1212
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001213 if (new_policy) {
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001214 /* related_cpus should at least include policy->cpus. */
Viresh Kumar0998a032015-10-15 21:35:21 +05301215 cpumask_copy(policy->related_cpus, policy->cpus);
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001216 /* Remember CPUs present at the policy creation time. */
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001217 cpumask_and(policy->real_cpus, policy->cpus, cpu_present_mask);
Viresh Kumar3510fac2015-10-16 12:41:12 +05301218
1219 /* Name and add the kobject */
1220 ret = kobject_add(&policy->kobj, cpufreq_global_kobject,
1221 "policy%u",
1222 cpumask_first(policy->related_cpus));
1223 if (ret) {
1224 pr_err("%s: failed to add policy->kobj: %d\n", __func__,
1225 ret);
1226 goto out_exit_policy;
1227 }
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001228 }
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001229
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001230 /*
1231 * affected cpus must always be the one, which are online. We aren't
1232 * managing offline cpus here.
1233 */
1234 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1235
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001236 if (new_policy) {
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001237 policy->user_policy.min = policy->min;
1238 policy->user_policy.max = policy->max;
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001239
Viresh Kumar988bed02015-05-08 11:53:45 +05301240 write_lock_irqsave(&cpufreq_driver_lock, flags);
1241 for_each_cpu(j, policy->related_cpus)
1242 per_cpu(cpufreq_cpu_data, j) = policy;
1243 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1244 }
Viresh Kumar652ed952014-01-09 20:38:43 +05301245
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01001246 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Viresh Kumarda60ce92013-10-03 20:28:30 +05301247 policy->cur = cpufreq_driver->get(policy->cpu);
1248 if (!policy->cur) {
1249 pr_err("%s: ->get() failed\n", __func__);
Viresh Kumar8101f992015-07-08 15:12:15 +05301250 goto out_exit_policy;
Viresh Kumarda60ce92013-10-03 20:28:30 +05301251 }
1252 }
1253
Viresh Kumard3916692013-12-03 11:20:46 +05301254 /*
1255 * Sometimes boot loaders set CPU frequency to a value outside of
1256 * frequency table present with cpufreq core. In such cases CPU might be
1257 * unstable if it has to run on that frequency for long duration of time
1258 * and so its better to set it to a frequency which is specified in
1259 * freq-table. This also makes cpufreq stats inconsistent as
1260 * cpufreq-stats would fail to register because current frequency of CPU
1261 * isn't found in freq-table.
1262 *
1263 * Because we don't want this change to effect boot process badly, we go
1264 * for the next freq which is >= policy->cur ('cur' must be set by now,
1265 * otherwise we will end up setting freq to lowest of the table as 'cur'
1266 * is initialized to zero).
1267 *
1268 * We are passing target-freq as "policy->cur - 1" otherwise
1269 * __cpufreq_driver_target() would simply fail, as policy->cur will be
1270 * equal to target-freq.
1271 */
1272 if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
1273 && has_target()) {
1274 /* Are we running at unknown frequency ? */
1275 ret = cpufreq_frequency_table_get_index(policy, policy->cur);
1276 if (ret == -EINVAL) {
1277 /* Warn user and fix it */
1278 pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
1279 __func__, policy->cpu, policy->cur);
1280 ret = __cpufreq_driver_target(policy, policy->cur - 1,
1281 CPUFREQ_RELATION_L);
1282
1283 /*
1284 * Reaching here after boot in a few seconds may not
1285 * mean that system will remain stable at "unknown"
1286 * frequency for longer duration. Hence, a BUG_ON().
1287 */
1288 BUG_ON(ret);
1289 pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
1290 __func__, policy->cpu, policy->cur);
1291 }
1292 }
1293
Thomas Renningera1531ac2008-07-29 22:32:58 -07001294 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1295 CPUFREQ_START, policy);
1296
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001297 if (new_policy) {
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001298 ret = cpufreq_add_dev_interface(policy);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301299 if (ret)
Viresh Kumar8101f992015-07-08 15:12:15 +05301300 goto out_exit_policy;
Viresh Kumarfcd7af92014-01-07 07:10:10 +05301301 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1302 CPUFREQ_CREATE_POLICY, policy);
Dave Jones8ff69732006-03-05 03:37:23 -05001303
Viresh Kumar988bed02015-05-08 11:53:45 +05301304 write_lock_irqsave(&cpufreq_driver_lock, flags);
1305 list_add(&policy->policy_list, &cpufreq_policy_list);
1306 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1307 }
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301308
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301309 ret = cpufreq_init_policy(policy);
1310 if (ret) {
1311 pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
1312 __func__, cpu, ret);
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001313 /* cpufreq_policy_free() will notify based on this */
1314 new_policy = false;
1315 goto out_exit_policy;
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301316 }
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301317
Viresh Kumar4e97b632014-03-04 11:44:01 +08001318 up_write(&policy->rwsem);
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301319
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001320 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301321
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301322 /* Callback for handling stuff after policy is ready */
1323 if (cpufreq_driver->ready)
1324 cpufreq_driver->ready(policy);
1325
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001326 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return 0;
1329
Viresh Kumar8101f992015-07-08 15:12:15 +05301330out_exit_policy:
Prarit Bhargava7106e022014-09-10 10:12:08 -04001331 up_write(&policy->rwsem);
1332
Viresh Kumarda60ce92013-10-03 20:28:30 +05301333 if (cpufreq_driver->exit)
1334 cpufreq_driver->exit(policy);
Viresh Kumar8101f992015-07-08 15:12:15 +05301335out_free_policy:
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001336 cpufreq_policy_free(policy, !new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return ret;
1338}
1339
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001340/**
1341 * cpufreq_add_dev - the cpufreq interface for a CPU device.
1342 * @dev: CPU device.
1343 * @sif: Subsystem interface structure pointer (not used)
1344 */
1345static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1346{
1347 unsigned cpu = dev->id;
1348 int ret;
1349
1350 dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
1351
1352 if (cpu_online(cpu)) {
1353 ret = cpufreq_online(cpu);
1354 } else {
1355 /*
1356 * A hotplug notifier will follow and we will handle it as CPU
1357 * online then. For now, just create the sysfs link, unless
1358 * there is no policy or the link is already present.
1359 */
1360 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
1361
1362 ret = policy && !cpumask_test_and_set_cpu(cpu, policy->real_cpus)
1363 ? add_cpu_dev_symlink(policy, cpu) : 0;
1364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 return ret;
1367}
1368
Viresh Kumar69cee712016-02-11 17:31:11 +05301369static void cpufreq_offline(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301371 struct cpufreq_policy *policy;
Viresh Kumar69cee712016-02-11 17:31:11 +05301372 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001374 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Viresh Kumar988bed02015-05-08 11:53:45 +05301376 policy = cpufreq_cpu_get_raw(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301377 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001378 pr_debug("%s: No cpu_data found\n", __func__);
Rafael J. Wysocki15c0b4d2015-07-27 23:11:09 +02001379 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Viresh Kumar49f18562016-02-11 17:31:12 +05301382 down_write(&policy->rwsem);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301383 if (has_target()) {
Viresh Kumara1317e02016-02-22 16:36:43 +05301384 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001385 if (ret)
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301386 pr_err("%s: Failed to stop governor\n", __func__);
Viresh Kumardb5f2992015-01-02 12:34:25 +05301387 }
Jacob Shin27ecddc2011-04-27 13:32:11 -05001388
Viresh Kumar9591bec2015-06-10 02:20:23 +02001389 cpumask_clear_cpu(cpu, policy->cpus);
Viresh Kumar45732372015-05-12 12:22:34 +05301390
Viresh Kumar9591bec2015-06-10 02:20:23 +02001391 if (policy_is_inactive(policy)) {
1392 if (has_target())
1393 strncpy(policy->last_governor, policy->governor->name,
1394 CPUFREQ_NAME_LEN);
Srinivas Pandruvada69030dd2015-12-01 16:52:14 -08001395 else
1396 policy->last_policy = policy->policy;
Viresh Kumar9591bec2015-06-10 02:20:23 +02001397 } else if (cpu == policy->cpu) {
1398 /* Nominate new CPU */
1399 policy->cpu = cpumask_any(policy->cpus);
1400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Viresh Kumar9591bec2015-06-10 02:20:23 +02001402 /* Start governor again for active policy */
1403 if (!policy_is_inactive(policy)) {
1404 if (has_target()) {
Viresh Kumara1317e02016-02-22 16:36:43 +05301405 ret = cpufreq_governor(policy, CPUFREQ_GOV_START);
Viresh Kumar9591bec2015-06-10 02:20:23 +02001406 if (!ret)
Viresh Kumara1317e02016-02-22 16:36:43 +05301407 ret = cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Viresh Kumar87549142015-06-10 02:13:21 +02001408
Viresh Kumar9591bec2015-06-10 02:20:23 +02001409 if (ret)
1410 pr_err("%s: Failed to start governor\n", __func__);
1411 }
Viresh Kumar69cee712016-02-11 17:31:11 +05301412
Viresh Kumar49f18562016-02-11 17:31:12 +05301413 goto unlock;
Viresh Kumar69cee712016-02-11 17:31:11 +05301414 }
1415
1416 if (cpufreq_driver->stop_cpu)
Dirk Brandewie367dc4a2014-03-19 08:45:53 -07001417 cpufreq_driver->stop_cpu(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Viresh Kumar87549142015-06-10 02:13:21 +02001419 /* If cpu is last user of policy, free policy */
1420 if (has_target()) {
Viresh Kumara1317e02016-02-22 16:36:43 +05301421 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001422 if (ret)
Viresh Kumar87549142015-06-10 02:13:21 +02001423 pr_err("%s: Failed to exit governor\n", __func__);
Viresh Kumar87549142015-06-10 02:13:21 +02001424 }
1425
Viresh Kumar87549142015-06-10 02:13:21 +02001426 /*
1427 * Perform the ->exit() even during light-weight tear-down,
1428 * since this is a core component, and is essential for the
1429 * subsequent light-weight ->init() to succeed.
1430 */
Srinivas Pandruvada55582bc2015-10-07 13:50:44 -07001431 if (cpufreq_driver->exit) {
Viresh Kumar87549142015-06-10 02:13:21 +02001432 cpufreq_driver->exit(policy);
Srinivas Pandruvada55582bc2015-10-07 13:50:44 -07001433 policy->freq_table = NULL;
1434 }
Viresh Kumar49f18562016-02-11 17:31:12 +05301435
1436unlock:
1437 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438}
1439
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301440/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301441 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301442 *
1443 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301444 */
Viresh Kumar71db87b2015-07-30 15:04:01 +05301445static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001446{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001447 unsigned int cpu = dev->id;
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001448 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Venki Pallipadiec282972007-03-26 12:03:19 -07001449
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001450 if (!policy)
Linus Torvalds1af115d2015-08-31 08:47:40 -07001451 return;
Viresh Kumar87549142015-06-10 02:13:21 +02001452
Viresh Kumar69cee712016-02-11 17:31:11 +05301453 if (cpu_online(cpu))
1454 cpufreq_offline(cpu);
Viresh Kumar87549142015-06-10 02:13:21 +02001455
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001456 cpumask_clear_cpu(cpu, policy->real_cpus);
Viresh Kumar96bdda62015-10-15 21:35:24 +05301457 remove_cpu_dev_symlink(policy, cpu);
Viresh Kumarf344dae2015-11-21 09:06:49 +05301458
1459 if (cpumask_empty(policy->real_cpus))
1460 cpufreq_policy_free(policy, true);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001461}
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301464 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1465 * in deep trouble.
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301466 * @policy: policy managing CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 * @new_freq: CPU frequency the CPU actually runs at
1468 *
Dave Jones29464f22009-01-18 01:37:11 -05001469 * We adjust to current frequency first, and need to clean up later.
1470 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 */
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301472static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301473 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474{
1475 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301476
Joe Perchese837f9b2014-03-11 10:03:00 -07001477 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\n",
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301478 policy->cur, new_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301480 freqs.old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301482
Viresh Kumar8fec0512014-03-24 13:35:45 +05301483 cpufreq_freq_transition_begin(policy, &freqs);
1484 cpufreq_freq_transition_end(policy, &freqs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
Dave Jones32ee8c32006-02-28 00:43:23 -05001487/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301488 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001489 * @cpu: CPU number
1490 *
1491 * This is the last known freq, without actually getting it from the driver.
1492 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1493 */
1494unsigned int cpufreq_quick_get(unsigned int cpu)
1495{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001496 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301497 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001498
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001499 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1500 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001501
1502 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001503 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301504 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001505 cpufreq_cpu_put(policy);
1506 }
1507
Dave Jones4d34a672008-02-07 16:33:49 -05001508 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001509}
1510EXPORT_SYMBOL(cpufreq_quick_get);
1511
Jesse Barnes3d737102011-06-28 10:59:12 -07001512/**
1513 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1514 * @cpu: CPU number
1515 *
1516 * Just return the max possible frequency for a given CPU.
1517 */
1518unsigned int cpufreq_quick_get_max(unsigned int cpu)
1519{
1520 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1521 unsigned int ret_freq = 0;
1522
1523 if (policy) {
1524 ret_freq = policy->max;
1525 cpufreq_cpu_put(policy);
1526 }
1527
1528 return ret_freq;
1529}
1530EXPORT_SYMBOL(cpufreq_quick_get_max);
1531
Viresh Kumard92d50a2015-01-02 12:34:29 +05301532static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301534 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001536 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001537 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Viresh Kumard92d50a2015-01-02 12:34:29 +05301539 ret_freq = cpufreq_driver->get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Viresh Kumar11e584c2015-06-10 02:11:45 +02001541 /* Updating inactive policies is invalid, so avoid doing that. */
1542 if (unlikely(policy_is_inactive(policy)))
1543 return ret_freq;
1544
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301545 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001546 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301547 /* verify no discrepancy between actual and
1548 saved value exists */
1549 if (unlikely(ret_freq != policy->cur)) {
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301550 cpufreq_out_of_sync(policy, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 schedule_work(&policy->update);
1552 }
1553 }
1554
Dave Jones4d34a672008-02-07 16:33:49 -05001555 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001556}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001558/**
1559 * cpufreq_get - get the current CPU frequency (in kHz)
1560 * @cpu: CPU number
1561 *
1562 * Get the CPU current (static) CPU frequency
1563 */
1564unsigned int cpufreq_get(unsigned int cpu)
1565{
Aaron Plattner999976e2014-03-04 12:42:15 -08001566 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001567 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001568
Aaron Plattner999976e2014-03-04 12:42:15 -08001569 if (policy) {
1570 down_read(&policy->rwsem);
Viresh Kumard92d50a2015-01-02 12:34:29 +05301571 ret_freq = __cpufreq_get(policy);
Aaron Plattner999976e2014-03-04 12:42:15 -08001572 up_read(&policy->rwsem);
Viresh Kumar26ca8692013-09-20 22:37:31 +05301573
Aaron Plattner999976e2014-03-04 12:42:15 -08001574 cpufreq_cpu_put(policy);
1575 }
Viresh Kumar6eed9402013-08-06 22:53:11 +05301576
Dave Jones4d34a672008-02-07 16:33:49 -05001577 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578}
1579EXPORT_SYMBOL(cpufreq_get);
1580
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001581static struct subsys_interface cpufreq_interface = {
1582 .name = "cpufreq",
1583 .subsys = &cpu_subsys,
1584 .add_dev = cpufreq_add_dev,
1585 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001586};
1587
Viresh Kumare28867e2014-03-04 11:00:27 +08001588/*
1589 * In case platform wants some specific frequency to be configured
1590 * during suspend..
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001591 */
Viresh Kumare28867e2014-03-04 11:00:27 +08001592int cpufreq_generic_suspend(struct cpufreq_policy *policy)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001593{
Viresh Kumare28867e2014-03-04 11:00:27 +08001594 int ret;
Dave Jones4bc5d342009-08-04 14:03:25 -04001595
Viresh Kumare28867e2014-03-04 11:00:27 +08001596 if (!policy->suspend_freq) {
Bartlomiej Zolnierkiewicz201f3712015-09-08 18:41:02 +02001597 pr_debug("%s: suspend_freq not defined\n", __func__);
1598 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001599 }
1600
Viresh Kumare28867e2014-03-04 11:00:27 +08001601 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1602 policy->suspend_freq);
1603
1604 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1605 CPUFREQ_RELATION_H);
1606 if (ret)
1607 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1608 __func__, policy->suspend_freq, ret);
1609
Dave Jonesc9060492008-02-07 16:32:18 -05001610 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001611}
Viresh Kumare28867e2014-03-04 11:00:27 +08001612EXPORT_SYMBOL(cpufreq_generic_suspend);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001613
1614/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001615 * cpufreq_suspend() - Suspend CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001617 * Called during system wide Suspend/Hibernate cycles for suspending governors
1618 * as some platforms can't change frequency after this point in suspend cycle.
1619 * Because some of the devices (like: i2c, regulators, etc) they use for
1620 * changing frequency are suspended quickly after this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001622void cpufreq_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301624 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301625 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001627 if (!cpufreq_driver)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001628 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001630 if (!has_target())
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301631 goto suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001633 pr_debug("%s: Suspending Governors\n", __func__);
1634
Viresh Kumarf9637352015-05-12 12:20:11 +05301635 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301636 down_write(&policy->rwsem);
Viresh Kumara1317e02016-02-22 16:36:43 +05301637 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar49f18562016-02-11 17:31:12 +05301638 up_write(&policy->rwsem);
1639
1640 if (ret)
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001641 pr_err("%s: Failed to stop governor for policy: %p\n",
1642 __func__, policy);
1643 else if (cpufreq_driver->suspend
1644 && cpufreq_driver->suspend(policy))
1645 pr_err("%s: Failed to suspend driver: %p\n", __func__,
1646 policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 }
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301648
1649suspend:
1650 cpufreq_suspended = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001654 * cpufreq_resume() - Resume CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001656 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1657 * are suspended with cpufreq_suspend().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001659void cpufreq_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301662 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001664 if (!cpufreq_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 return;
1666
Lan Tianyu8e304442014-09-18 15:03:07 +08001667 cpufreq_suspended = false;
1668
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001669 if (!has_target())
1670 return;
1671
1672 pr_debug("%s: Resuming Governors\n", __func__);
1673
Viresh Kumarf9637352015-05-12 12:20:11 +05301674 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301675 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
Viresh Kumar0c5aa402014-03-24 12:30:29 +05301676 pr_err("%s: Failed to resume driver: %p\n", __func__,
1677 policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301678 } else {
1679 down_write(&policy->rwsem);
Viresh Kumara1317e02016-02-22 16:36:43 +05301680 ret = cpufreq_governor(policy, CPUFREQ_GOV_START);
Viresh Kumar49f18562016-02-11 17:31:12 +05301681 if (!ret)
Viresh Kumara1317e02016-02-22 16:36:43 +05301682 cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Viresh Kumar49f18562016-02-11 17:31:12 +05301683 up_write(&policy->rwsem);
1684
1685 if (ret)
1686 pr_err("%s: Failed to start governor for policy: %p\n",
1687 __func__, policy);
1688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 }
Viresh Kumarc75de0a2015-04-02 10:21:33 +05301690
1691 /*
1692 * schedule call cpufreq_update_policy() for first-online CPU, as that
1693 * wouldn't be hotplugged-out on suspend. It will verify that the
1694 * current freq is in sync with what we believe it to be.
1695 */
1696 policy = cpufreq_cpu_get_raw(cpumask_first(cpu_online_mask));
1697 if (WARN_ON(!policy))
1698 return;
1699
1700 schedule_work(&policy->update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Borislav Petkov9d950462013-01-20 10:24:28 +00001703/**
1704 * cpufreq_get_current_driver - return current driver's name
1705 *
1706 * Return the name string of the currently loaded cpufreq driver
1707 * or NULL, if none.
1708 */
1709const char *cpufreq_get_current_driver(void)
1710{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001711 if (cpufreq_driver)
1712 return cpufreq_driver->name;
1713
1714 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001715}
1716EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Thomas Petazzoni51315cd2014-10-19 11:30:27 +02001718/**
1719 * cpufreq_get_driver_data - return current driver data
1720 *
1721 * Return the private data of the currently loaded cpufreq
1722 * driver, or NULL if no cpufreq driver is loaded.
1723 */
1724void *cpufreq_get_driver_data(void)
1725{
1726 if (cpufreq_driver)
1727 return cpufreq_driver->driver_data;
1728
1729 return NULL;
1730}
1731EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733/*********************************************************************
1734 * NOTIFIER LISTS INTERFACE *
1735 *********************************************************************/
1736
1737/**
1738 * cpufreq_register_notifier - register a driver with cpufreq
1739 * @nb: notifier function to register
1740 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1741 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001742 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 * are notified about clock rate changes (once before and once after
1744 * the transition), or a list of drivers that are notified about
1745 * changes in cpufreq policy.
1746 *
1747 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001748 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 */
1750int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1751{
1752 int ret;
1753
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001754 if (cpufreq_disabled())
1755 return -EINVAL;
1756
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001757 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 switch (list) {
1760 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001761 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001762 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 break;
1764 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001765 ret = blocking_notifier_chain_register(
1766 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 break;
1768 default:
1769 ret = -EINVAL;
1770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 return ret;
1773}
1774EXPORT_SYMBOL(cpufreq_register_notifier);
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776/**
1777 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1778 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301779 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 *
1781 * Remove a driver from the CPU frequency notifier list.
1782 *
1783 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001784 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 */
1786int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1787{
1788 int ret;
1789
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001790 if (cpufreq_disabled())
1791 return -EINVAL;
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 switch (list) {
1794 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001795 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001796 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 break;
1798 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001799 ret = blocking_notifier_chain_unregister(
1800 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 break;
1802 default:
1803 ret = -EINVAL;
1804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806 return ret;
1807}
1808EXPORT_SYMBOL(cpufreq_unregister_notifier);
1809
1810
1811/*********************************************************************
1812 * GOVERNORS *
1813 *********************************************************************/
1814
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301815/* Must set freqs->new to intermediate frequency */
1816static int __target_intermediate(struct cpufreq_policy *policy,
1817 struct cpufreq_freqs *freqs, int index)
1818{
1819 int ret;
1820
1821 freqs->new = cpufreq_driver->get_intermediate(policy, index);
1822
1823 /* We don't need to switch to intermediate freq */
1824 if (!freqs->new)
1825 return 0;
1826
1827 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
1828 __func__, policy->cpu, freqs->old, freqs->new);
1829
1830 cpufreq_freq_transition_begin(policy, freqs);
1831 ret = cpufreq_driver->target_intermediate(policy, index);
1832 cpufreq_freq_transition_end(policy, freqs, ret);
1833
1834 if (ret)
1835 pr_err("%s: Failed to change to intermediate frequency: %d\n",
1836 __func__, ret);
1837
1838 return ret;
1839}
1840
Viresh Kumar8d657752014-05-21 14:29:29 +05301841static int __target_index(struct cpufreq_policy *policy,
1842 struct cpufreq_frequency_table *freq_table, int index)
1843{
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301844 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
1845 unsigned int intermediate_freq = 0;
Viresh Kumar8d657752014-05-21 14:29:29 +05301846 int retval = -EINVAL;
1847 bool notify;
1848
1849 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
Viresh Kumar8d657752014-05-21 14:29:29 +05301850 if (notify) {
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301851 /* Handle switching to intermediate frequency */
1852 if (cpufreq_driver->get_intermediate) {
1853 retval = __target_intermediate(policy, &freqs, index);
1854 if (retval)
1855 return retval;
Viresh Kumar8d657752014-05-21 14:29:29 +05301856
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301857 intermediate_freq = freqs.new;
1858 /* Set old freq to intermediate */
1859 if (intermediate_freq)
1860 freqs.old = freqs.new;
1861 }
1862
1863 freqs.new = freq_table[index].frequency;
Viresh Kumar8d657752014-05-21 14:29:29 +05301864 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1865 __func__, policy->cpu, freqs.old, freqs.new);
1866
1867 cpufreq_freq_transition_begin(policy, &freqs);
1868 }
1869
1870 retval = cpufreq_driver->target_index(policy, index);
1871 if (retval)
1872 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
1873 retval);
1874
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301875 if (notify) {
Viresh Kumar8d657752014-05-21 14:29:29 +05301876 cpufreq_freq_transition_end(policy, &freqs, retval);
1877
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301878 /*
1879 * Failed after setting to intermediate freq? Driver should have
1880 * reverted back to initial frequency and so should we. Check
1881 * here for intermediate_freq instead of get_intermediate, in
Shailendra Verma58405af2015-05-22 22:48:22 +05301882 * case we haven't switched to intermediate freq at all.
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301883 */
1884 if (unlikely(retval && intermediate_freq)) {
1885 freqs.old = intermediate_freq;
1886 freqs.new = policy->restore_freq;
1887 cpufreq_freq_transition_begin(policy, &freqs);
1888 cpufreq_freq_transition_end(policy, &freqs, 0);
1889 }
1890 }
1891
Viresh Kumar8d657752014-05-21 14:29:29 +05301892 return retval;
1893}
1894
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895int __cpufreq_driver_target(struct cpufreq_policy *policy,
1896 unsigned int target_freq,
1897 unsigned int relation)
1898{
Viresh Kumar72499242012-10-31 01:28:21 +01001899 unsigned int old_target_freq = target_freq;
Viresh Kumar8d657752014-05-21 14:29:29 +05301900 int retval = -EINVAL;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001901
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001902 if (cpufreq_disabled())
1903 return -ENODEV;
1904
Viresh Kumar72499242012-10-31 01:28:21 +01001905 /* Make sure that target_freq is within supported range */
1906 if (target_freq > policy->max)
1907 target_freq = policy->max;
1908 if (target_freq < policy->min)
1909 target_freq = policy->min;
1910
1911 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07001912 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001913
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301914 /*
1915 * This might look like a redundant call as we are checking it again
1916 * after finding index. But it is left intentionally for cases where
1917 * exactly same freq is called again and so we can save on few function
1918 * calls.
1919 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001920 if (target_freq == policy->cur)
1921 return 0;
1922
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301923 /* Save last value to restore later on errors */
1924 policy->restore_freq = policy->cur;
1925
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001926 if (cpufreq_driver->target)
1927 retval = cpufreq_driver->target(policy, target_freq, relation);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301928 else if (cpufreq_driver->target_index) {
1929 struct cpufreq_frequency_table *freq_table;
1930 int index;
Ashok Raj90d45d12005-11-08 21:34:24 -08001931
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301932 freq_table = cpufreq_frequency_get_table(policy->cpu);
1933 if (unlikely(!freq_table)) {
1934 pr_err("%s: Unable to find freq_table\n", __func__);
1935 goto out;
1936 }
1937
1938 retval = cpufreq_frequency_table_target(policy, freq_table,
1939 target_freq, relation, &index);
1940 if (unlikely(retval)) {
1941 pr_err("%s: Unable to find matching freq\n", __func__);
1942 goto out;
1943 }
1944
Viresh Kumard4019f02013-08-14 19:38:24 +05301945 if (freq_table[index].frequency == policy->cur) {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301946 retval = 0;
Viresh Kumard4019f02013-08-14 19:38:24 +05301947 goto out;
1948 }
1949
Viresh Kumar8d657752014-05-21 14:29:29 +05301950 retval = __target_index(policy, freq_table, index);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301951 }
1952
1953out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return retval;
1955}
1956EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958int cpufreq_driver_target(struct cpufreq_policy *policy,
1959 unsigned int target_freq,
1960 unsigned int relation)
1961{
Julia Lawallf1829e42008-07-25 22:44:53 +02001962 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
viresh kumarad7722d2013-10-18 19:10:15 +05301964 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
1966 ret = __cpufreq_driver_target(policy, target_freq, relation);
1967
viresh kumarad7722d2013-10-18 19:10:15 +05301968 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 return ret;
1971}
1972EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1973
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001974__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
1975{
1976 return NULL;
1977}
1978
Viresh Kumara1317e02016-02-22 16:36:43 +05301979static int cpufreq_governor(struct cpufreq_policy *policy, unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
Dave Jonescc993ca2005-07-28 09:43:56 -07001981 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001982
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001983 /* Don't start any governor operations if we are entering suspend */
1984 if (cpufreq_suspended)
1985 return 0;
Ethan Zhaocb57720b2014-12-18 15:28:19 +09001986 /*
1987 * Governor might not be initiated here if ACPI _PPC changed
1988 * notification happened, so check it.
1989 */
1990 if (!policy->governor)
1991 return -EINVAL;
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001992
Thomas Renninger1c256242007-10-02 13:28:12 -07001993 if (policy->governor->max_transition_latency &&
1994 policy->cpuinfo.transition_latency >
1995 policy->governor->max_transition_latency) {
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001996 struct cpufreq_governor *gov = cpufreq_fallback_governor();
1997
1998 if (gov) {
Joe Perchese837f9b2014-03-11 10:03:00 -07001999 pr_warn("%s governor failed, too long transition latency of HW, fallback to %s governor\n",
2000 policy->governor->name, gov->name);
Thomas Renninger6afde102007-10-02 13:28:13 -07002001 policy->governor = gov;
Rafael J. Wysockide1df262016-02-05 02:37:42 +01002002 } else {
2003 return -EINVAL;
Thomas Renninger6afde102007-10-02 13:28:13 -07002004 }
Thomas Renninger1c256242007-10-02 13:28:12 -07002005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Viresh Kumarfe492f32013-08-06 22:53:10 +05302007 if (event == CPUFREQ_GOV_POLICY_INIT)
2008 if (!try_module_get(policy->governor->owner))
2009 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Viresh Kumar63431f72015-07-27 17:58:06 +05302011 pr_debug("%s: for CPU %u, event %u\n", __func__, policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08002012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 ret = policy->governor->governor(policy, event);
2014
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00002015 if (!ret) {
2016 if (event == CPUFREQ_GOV_POLICY_INIT)
2017 policy->governor->initialized++;
2018 else if (event == CPUFREQ_GOV_POLICY_EXIT)
2019 policy->governor->initialized--;
2020 }
Viresh Kumarb3940582013-02-01 05:42:58 +00002021
Viresh Kumarfe492f32013-08-06 22:53:10 +05302022 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
2023 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 module_put(policy->governor->owner);
2025
2026 return ret;
2027}
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029int cpufreq_register_governor(struct cpufreq_governor *governor)
2030{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002031 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
2033 if (!governor)
2034 return -EINVAL;
2035
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002036 if (cpufreq_disabled())
2037 return -ENODEV;
2038
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002039 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05002040
Viresh Kumarb3940582013-02-01 05:42:58 +00002041 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002042 err = -EBUSY;
Viresh Kumar42f91fa2015-01-02 12:34:26 +05302043 if (!find_governor(governor->name)) {
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002044 err = 0;
2045 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Dave Jones32ee8c32006-02-28 00:43:23 -05002048 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002049 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051EXPORT_SYMBOL_GPL(cpufreq_register_governor);
2052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053void cpufreq_unregister_governor(struct cpufreq_governor *governor)
2054{
Viresh Kumar45732372015-05-12 12:22:34 +05302055 struct cpufreq_policy *policy;
2056 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (!governor)
2059 return;
2060
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002061 if (cpufreq_disabled())
2062 return;
2063
Viresh Kumar45732372015-05-12 12:22:34 +05302064 /* clear last_governor for all inactive policies */
2065 read_lock_irqsave(&cpufreq_driver_lock, flags);
2066 for_each_inactive_policy(policy) {
Viresh Kumar18bf3a12015-05-12 12:22:51 +05302067 if (!strcmp(policy->last_governor, governor->name)) {
2068 policy->governor = NULL;
Viresh Kumar45732372015-05-12 12:22:34 +05302069 strcpy(policy->last_governor, "\0");
Viresh Kumar18bf3a12015-05-12 12:22:51 +05302070 }
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002071 }
Viresh Kumar45732372015-05-12 12:22:34 +05302072 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002073
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002074 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002076 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 return;
2078}
2079EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
2080
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082/*********************************************************************
2083 * POLICY INTERFACE *
2084 *********************************************************************/
2085
2086/**
2087 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05002088 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2089 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 *
2091 * Reads the current cpufreq policy.
2092 */
2093int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2094{
2095 struct cpufreq_policy *cpu_policy;
2096 if (!policy)
2097 return -EINVAL;
2098
2099 cpu_policy = cpufreq_cpu_get(cpu);
2100 if (!cpu_policy)
2101 return -EINVAL;
2102
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302103 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 return 0;
2107}
2108EXPORT_SYMBOL(cpufreq_get_policy);
2109
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002110/*
Viresh Kumar037ce832013-10-02 14:13:16 +05302111 * policy : current policy.
2112 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002113 */
Viresh Kumar037ce832013-10-02 14:13:16 +05302114static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302115 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002117 struct cpufreq_governor *old_gov;
2118 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Joe Perchese837f9b2014-03-11 10:03:00 -07002120 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2121 new_policy->cpu, new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302123 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Pan Xinhuifba95732015-07-30 18:10:40 +08002125 /*
2126 * This check works well when we store new min/max freq attributes,
2127 * because new_policy is a copy of policy with one field updated.
2128 */
2129 if (new_policy->min > new_policy->max)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002130 return -EINVAL;
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02002131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302133 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002135 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08002138 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302139 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Viresh Kumarbb176f72013-06-19 14:19:33 +05302141 /*
2142 * verify the cpu speed can be set within this limit, which might be
2143 * different to the first one
2144 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302145 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08002146 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002147 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
2149 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08002150 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302151 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302153 policy->min = new_policy->min;
2154 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002156 pr_debug("new min and max freqs are %u - %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002157 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002159 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302160 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002161 pr_debug("setting range\n");
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002162 return cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 }
2164
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002165 if (new_policy->governor == policy->governor)
2166 goto out;
2167
2168 pr_debug("governor switch\n");
2169
2170 /* save old, working values */
2171 old_gov = policy->governor;
2172 /* end old governor */
2173 if (old_gov) {
Viresh Kumara1317e02016-02-22 16:36:43 +05302174 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302175 if (ret) {
2176 /* This can happen due to race with other operations */
2177 pr_debug("%s: Failed to Stop Governor: %s (%d)\n",
2178 __func__, old_gov->name, ret);
2179 return ret;
2180 }
2181
Viresh Kumara1317e02016-02-22 16:36:43 +05302182 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302183 if (ret) {
2184 pr_err("%s: Failed to Exit Governor: %s (%d)\n",
2185 __func__, old_gov->name, ret);
2186 return ret;
2187 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002188 }
2189
2190 /* start new governor */
2191 policy->governor = new_policy->governor;
Viresh Kumara1317e02016-02-22 16:36:43 +05302192 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302193 if (!ret) {
Viresh Kumara1317e02016-02-22 16:36:43 +05302194 ret = cpufreq_governor(policy, CPUFREQ_GOV_START);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302195 if (!ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002196 goto out;
2197
Viresh Kumara1317e02016-02-22 16:36:43 +05302198 cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002199 }
2200
2201 /* new governor failed, so re-start old one */
2202 pr_debug("starting governor %s failed\n", policy->governor->name);
2203 if (old_gov) {
2204 policy->governor = old_gov;
Viresh Kumara1317e02016-02-22 16:36:43 +05302205 if (cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT))
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302206 policy->governor = NULL;
2207 else
Viresh Kumara1317e02016-02-22 16:36:43 +05302208 cpufreq_governor(policy, CPUFREQ_GOV_START);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002209 }
2210
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302211 return ret;
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002212
2213 out:
2214 pr_debug("governor: change or update limits\n");
Viresh Kumara1317e02016-02-22 16:36:43 +05302215 return cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216}
2217
2218/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2220 * @cpu: CPU which shall be re-evaluated
2221 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002222 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 * at different times.
2224 */
2225int cpufreq_update_policy(unsigned int cpu)
2226{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302227 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2228 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02002229 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002231 if (!policy)
2232 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
viresh kumarad7722d2013-10-18 19:10:15 +05302234 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002236 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302237 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302238 new_policy.min = policy->user_policy.min;
2239 new_policy.max = policy->user_policy.max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Viresh Kumarbb176f72013-06-19 14:19:33 +05302241 /*
2242 * BIOS might change freq behind our back
2243 * -> ask driver for current freq and notify governors about a change
2244 */
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01002245 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302246 new_policy.cur = cpufreq_driver->get(cpu);
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302247 if (WARN_ON(!new_policy.cur)) {
2248 ret = -EIO;
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002249 goto unlock;
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302250 }
2251
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302252 if (!policy->cur) {
Joe Perchese837f9b2014-03-11 10:03:00 -07002253 pr_debug("Driver did not initialize current freq\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302254 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002255 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302256 if (policy->cur != new_policy.cur && has_target())
Viresh Kumara1e1dc42015-01-02 12:34:28 +05302257 cpufreq_out_of_sync(policy, new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002258 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002259 }
2260
Viresh Kumar037ce832013-10-02 14:13:16 +05302261 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002263unlock:
viresh kumarad7722d2013-10-18 19:10:15 +05302264 up_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002265
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302266 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 return ret;
2268}
2269EXPORT_SYMBOL(cpufreq_update_policy);
2270
Paul Gortmaker27609842013-06-19 13:54:04 -04002271static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002272 unsigned long action, void *hcpu)
2273{
2274 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002275
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002276 switch (action & ~CPU_TASKS_FROZEN) {
2277 case CPU_ONLINE:
2278 cpufreq_online(cpu);
2279 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302280
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002281 case CPU_DOWN_PREPARE:
Viresh Kumar69cee712016-02-11 17:31:11 +05302282 cpufreq_offline(cpu);
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002283 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302284
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002285 case CPU_DOWN_FAILED:
2286 cpufreq_online(cpu);
2287 break;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002288 }
2289 return NOTIFY_OK;
2290}
2291
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002292static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302293 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002294};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
2296/*********************************************************************
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002297 * BOOST *
2298 *********************************************************************/
2299static int cpufreq_boost_set_sw(int state)
2300{
2301 struct cpufreq_frequency_table *freq_table;
2302 struct cpufreq_policy *policy;
2303 int ret = -EINVAL;
2304
Viresh Kumarf9637352015-05-12 12:20:11 +05302305 for_each_active_policy(policy) {
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002306 freq_table = cpufreq_frequency_get_table(policy->cpu);
2307 if (freq_table) {
2308 ret = cpufreq_frequency_table_cpuinfo(policy,
2309 freq_table);
2310 if (ret) {
2311 pr_err("%s: Policy frequency update failed\n",
2312 __func__);
2313 break;
2314 }
Viresh Kumar49f18562016-02-11 17:31:12 +05302315
2316 down_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002317 policy->user_policy.max = policy->max;
Viresh Kumara1317e02016-02-22 16:36:43 +05302318 cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Viresh Kumar49f18562016-02-11 17:31:12 +05302319 up_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002320 }
2321 }
2322
2323 return ret;
2324}
2325
2326int cpufreq_boost_trigger_state(int state)
2327{
2328 unsigned long flags;
2329 int ret = 0;
2330
2331 if (cpufreq_driver->boost_enabled == state)
2332 return 0;
2333
2334 write_lock_irqsave(&cpufreq_driver_lock, flags);
2335 cpufreq_driver->boost_enabled = state;
2336 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2337
2338 ret = cpufreq_driver->set_boost(state);
2339 if (ret) {
2340 write_lock_irqsave(&cpufreq_driver_lock, flags);
2341 cpufreq_driver->boost_enabled = !state;
2342 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2343
Joe Perchese837f9b2014-03-11 10:03:00 -07002344 pr_err("%s: Cannot %s BOOST\n",
2345 __func__, state ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002346 }
2347
2348 return ret;
2349}
2350
Rafael J. Wysocki41669da2015-12-27 00:23:48 +01002351static bool cpufreq_boost_supported(void)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002352{
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002353 return likely(cpufreq_driver) && cpufreq_driver->set_boost;
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002354}
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002355
Viresh Kumar44139ed2015-07-29 16:23:09 +05302356static int create_boost_sysfs_file(void)
2357{
2358 int ret;
2359
Viresh Kumarc82bd442015-10-15 21:35:23 +05302360 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302361 if (ret)
2362 pr_err("%s: cannot register global BOOST sysfs file\n",
2363 __func__);
2364
2365 return ret;
2366}
2367
2368static void remove_boost_sysfs_file(void)
2369{
2370 if (cpufreq_boost_supported())
Viresh Kumarc82bd442015-10-15 21:35:23 +05302371 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302372}
2373
2374int cpufreq_enable_boost_support(void)
2375{
2376 if (!cpufreq_driver)
2377 return -EINVAL;
2378
2379 if (cpufreq_boost_supported())
2380 return 0;
2381
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002382 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
Viresh Kumar44139ed2015-07-29 16:23:09 +05302383
2384 /* This will get removed on driver unregister */
2385 return create_boost_sysfs_file();
2386}
2387EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2388
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002389int cpufreq_boost_enabled(void)
2390{
2391 return cpufreq_driver->boost_enabled;
2392}
2393EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2394
2395/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2397 *********************************************************************/
2398
2399/**
2400 * cpufreq_register_driver - register a CPU Frequency driver
2401 * @driver_data: A struct cpufreq_driver containing the values#
2402 * submitted by the CPU Frequency driver.
2403 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302404 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002406 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 *
2408 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002409int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410{
2411 unsigned long flags;
2412 int ret;
2413
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002414 if (cpufreq_disabled())
2415 return -ENODEV;
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302418 !(driver_data->setpolicy || driver_data->target_index ||
Rafael J. Wysocki98322352014-03-19 12:48:30 +01002419 driver_data->target) ||
2420 (driver_data->setpolicy && (driver_data->target_index ||
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302421 driver_data->target)) ||
2422 (!!driver_data->get_intermediate != !!driver_data->target_intermediate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return -EINVAL;
2424
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002425 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002427 /* Protect against concurrent CPU online/offline. */
2428 get_online_cpus();
2429
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002430 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002431 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002432 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002433 ret = -EEXIST;
2434 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002436 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002437 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Viresh Kumarbc68b7d2015-01-02 12:34:30 +05302439 if (driver_data->setpolicy)
2440 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2441
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002442 if (cpufreq_boost_supported()) {
2443 ret = create_boost_sysfs_file();
2444 if (ret)
2445 goto err_null_driver;
2446 }
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002447
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002448 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002449 if (ret)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002450 goto err_boost_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302452 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2453 list_empty(&cpufreq_policy_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 /* if all ->init() calls failed, unregister */
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302455 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2456 driver_data->name);
2457 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 }
2459
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002460 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002461 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002463out:
2464 put_online_cpus();
2465 return ret;
2466
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002467err_if_unreg:
2468 subsys_interface_unregister(&cpufreq_interface);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002469err_boost_unreg:
Viresh Kumar44139ed2015-07-29 16:23:09 +05302470 remove_boost_sysfs_file();
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002471err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002472 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002473 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002474 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002475 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476}
2477EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479/**
2480 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2481 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302482 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 * the right to do so, i.e. if you have succeeded in initialising before!
2484 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2485 * currently not initialised.
2486 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002487int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488{
2489 unsigned long flags;
2490
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002491 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002494 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002496 /* Protect against concurrent cpu hotplug */
2497 get_online_cpus();
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002498 subsys_interface_unregister(&cpufreq_interface);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302499 remove_boost_sysfs_file();
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002500 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002502 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302503
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002504 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302505
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002506 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002507 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 return 0;
2510}
2511EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002512
Doug Anderson90de2a42014-12-23 22:09:48 -08002513/*
2514 * Stop cpufreq at shutdown to make sure it isn't holding any locks
2515 * or mutexes when secondary CPUs are halted.
2516 */
2517static struct syscore_ops cpufreq_syscore_ops = {
2518 .shutdown = cpufreq_suspend,
2519};
2520
Viresh Kumarc82bd442015-10-15 21:35:23 +05302521struct kobject *cpufreq_global_kobject;
2522EXPORT_SYMBOL(cpufreq_global_kobject);
2523
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002524static int __init cpufreq_core_init(void)
2525{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002526 if (cpufreq_disabled())
2527 return -ENODEV;
2528
Viresh Kumar8eec1022015-10-15 21:35:22 +05302529 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002530 BUG_ON(!cpufreq_global_kobject);
2531
Doug Anderson90de2a42014-12-23 22:09:48 -08002532 register_syscore_ops(&cpufreq_syscore_ops);
2533
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002534 return 0;
2535}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002536core_initcall(cpufreq_core_init);