blob: b87596b591b3ca9fdf332884700e5a3cc96ebf10 [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
Viresh Kumarf9637352015-05-12 12:20:11 +053041/* Macros to iterate over CPU policies */
Eric Biggersfd7dc7e2016-02-21 12:53:12 -060042#define for_each_suitable_policy(__policy, __active) \
43 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list) \
44 if ((__active) == !policy_is_inactive(__policy))
Viresh Kumarf9637352015-05-12 12:20:11 +053045
46#define for_each_active_policy(__policy) \
47 for_each_suitable_policy(__policy, true)
48#define for_each_inactive_policy(__policy) \
49 for_each_suitable_policy(__policy, false)
50
51#define for_each_policy(__policy) \
Viresh Kumarb4f06762015-01-27 14:06:08 +053052 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list)
53
Viresh Kumarf7b27062015-01-27 14:06:09 +053054/* Iterate over governors */
55static LIST_HEAD(cpufreq_governor_list);
56#define for_each_governor(__governor) \
57 list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/**
Dave Jonescd878472006-08-11 17:59:28 -040060 * The "cpufreq driver" - the arch- or hardware-dependent low
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * level driver of CPUFreq support, and its spinlock. This lock
62 * also protects the cpufreq_cpu_data array.
63 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +020064static struct cpufreq_driver *cpufreq_driver;
Mike Travis7a6aedf2008-03-25 15:06:53 -070065static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
Viresh Kumarbb176f72013-06-19 14:19:33 +053066static DEFINE_RWLOCK(cpufreq_driver_lock);
Viresh Kumarbb176f72013-06-19 14:19:33 +053067
Viresh Kumar2f0aea92014-03-04 11:00:26 +080068/* Flag to suspend/resume CPUFreq governors */
69static bool cpufreq_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053071static inline bool has_target(void)
72{
73 return cpufreq_driver->target_index || cpufreq_driver->target;
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* internal prototypes */
Viresh Kumara1317e02016-02-22 16:36:43 +053077static int cpufreq_governor(struct cpufreq_policy *policy, unsigned int event);
Viresh Kumard92d50a2015-01-02 12:34:29 +053078static unsigned int __cpufreq_get(struct cpufreq_policy *policy);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +010079static int cpufreq_start_governor(struct cpufreq_policy *policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/**
Dave Jones32ee8c32006-02-28 00:43:23 -050082 * Two notifier lists: the "policy" list is involved in the
83 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * "transition" list for kernel code that needs to handle
85 * changes to devices when the CPU clock speed changes.
86 * The mutex locks both lists.
87 */
Alan Sterne041c682006-03-27 01:16:30 -080088static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Alan Sternb4dfdbb2006-10-04 02:17:06 -070089static struct srcu_notifier_head cpufreq_transition_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -020091static bool init_cpufreq_transition_notifier_list_called;
Alan Sternb4dfdbb2006-10-04 02:17:06 -070092static int __init init_cpufreq_transition_notifier_list(void)
93{
94 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -020095 init_cpufreq_transition_notifier_list_called = true;
Alan Sternb4dfdbb2006-10-04 02:17:06 -070096 return 0;
97}
Linus Torvaldsb3438f82006-11-20 11:47:18 -080098pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400100static int off __read_mostly;
Viresh Kumarda584452012-10-26 00:51:32 +0200101static int cpufreq_disabled(void)
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400102{
103 return off;
104}
105void disable_cpufreq(void)
106{
107 off = 1;
108}
Dave Jones29464f22009-01-18 01:37:11 -0500109static DEFINE_MUTEX(cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000111bool have_governor_per_policy(void)
112{
Viresh Kumar0b981e72013-10-02 14:13:18 +0530113 return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000114}
Viresh Kumar3f869d62013-05-16 05:09:56 +0000115EXPORT_SYMBOL_GPL(have_governor_per_policy);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000116
Viresh Kumar944e9a02013-05-16 05:09:57 +0000117struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
118{
119 if (have_governor_per_policy())
120 return &policy->kobj;
121 else
122 return cpufreq_global_kobject;
123}
124EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
125
Viresh Kumar5a31d592015-07-10 01:43:27 +0200126struct cpufreq_frequency_table *cpufreq_frequency_get_table(unsigned int cpu)
127{
128 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
129
130 return policy && !policy_is_inactive(policy) ?
131 policy->freq_table : NULL;
132}
133EXPORT_SYMBOL_GPL(cpufreq_frequency_get_table);
134
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000135static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
136{
137 u64 idle_time;
138 u64 cur_wall_time;
139 u64 busy_time;
140
141 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
142
143 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
144 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
145 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
146 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
147 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
148 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
149
150 idle_time = cur_wall_time - busy_time;
151 if (wall)
152 *wall = cputime_to_usecs(cur_wall_time);
153
154 return cputime_to_usecs(idle_time);
155}
156
157u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
158{
159 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
160
161 if (idle_time == -1ULL)
162 return get_cpu_idle_time_jiffy(cpu, wall);
163 else if (!io_busy)
164 idle_time += get_cpu_iowait_time_us(cpu, wall);
165
166 return idle_time;
167}
168EXPORT_SYMBOL_GPL(get_cpu_idle_time);
169
Viresh Kumar70e9e772013-10-03 20:29:07 +0530170/*
171 * This is a generic cpufreq init() routine which can be used by cpufreq
172 * drivers of SMP systems. It will do following:
173 * - validate & show freq table passed
174 * - set policies transition latency
175 * - policy->cpus with all possible CPUs
176 */
177int cpufreq_generic_init(struct cpufreq_policy *policy,
178 struct cpufreq_frequency_table *table,
179 unsigned int transition_latency)
180{
181 int ret;
182
183 ret = cpufreq_table_validate_and_show(policy, table);
184 if (ret) {
185 pr_err("%s: invalid frequency table: %d\n", __func__, ret);
186 return ret;
187 }
188
189 policy->cpuinfo.transition_latency = transition_latency;
190
191 /*
Shailendra Verma58405af2015-05-22 22:48:22 +0530192 * The driver only supports the SMP configuration where all processors
Viresh Kumar70e9e772013-10-03 20:29:07 +0530193 * share the clock and voltage and clock.
194 */
195 cpumask_setall(policy->cpus);
196
197 return 0;
198}
199EXPORT_SYMBOL_GPL(cpufreq_generic_init);
200
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200201struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
Viresh Kumar652ed952014-01-09 20:38:43 +0530202{
203 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
204
Viresh Kumar988bed02015-05-08 11:53:45 +0530205 return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
206}
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200207EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
Viresh Kumar988bed02015-05-08 11:53:45 +0530208
209unsigned int cpufreq_generic_get(unsigned int cpu)
210{
211 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
212
Viresh Kumar652ed952014-01-09 20:38:43 +0530213 if (!policy || IS_ERR(policy->clk)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700214 pr_err("%s: No %s associated to cpu: %d\n",
215 __func__, policy ? "clk" : "policy", cpu);
Viresh Kumar652ed952014-01-09 20:38:43 +0530216 return 0;
217 }
218
219 return clk_get_rate(policy->clk) / 1000;
220}
221EXPORT_SYMBOL_GPL(cpufreq_generic_get);
222
Viresh Kumar50e9c852015-02-19 17:02:03 +0530223/**
224 * cpufreq_cpu_get: returns policy for a cpu and marks it busy.
225 *
226 * @cpu: cpu to find policy for.
227 *
228 * This returns policy for 'cpu', returns NULL if it doesn't exist.
229 * It also increments the kobject reference count to mark it busy and so would
230 * require a corresponding call to cpufreq_cpu_put() to decrement it back.
231 * If corresponding call cpufreq_cpu_put() isn't made, the policy wouldn't be
232 * freed as that depends on the kobj count.
233 *
Viresh Kumar50e9c852015-02-19 17:02:03 +0530234 * Return: A valid policy on success, otherwise NULL on failure.
235 */
Viresh Kumar6eed9402013-08-06 22:53:11 +0530236struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530238 struct cpufreq_policy *policy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 unsigned long flags;
240
Viresh Kumar1b947c92015-02-19 17:02:05 +0530241 if (WARN_ON(cpu >= nr_cpu_ids))
Viresh Kumar6eed9402013-08-06 22:53:11 +0530242 return NULL;
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 /* get the cpufreq driver */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000245 read_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Viresh Kumar6eed9402013-08-06 22:53:11 +0530247 if (cpufreq_driver) {
248 /* get the CPU */
Viresh Kumar988bed02015-05-08 11:53:45 +0530249 policy = cpufreq_cpu_get_raw(cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530250 if (policy)
251 kobject_get(&policy->kobj);
252 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200253
Viresh Kumar6eed9402013-08-06 22:53:11 +0530254 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530256 return policy;
Stephen Boyda9144432012-07-20 18:14:38 +0000257}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
259
Viresh Kumar50e9c852015-02-19 17:02:03 +0530260/**
261 * cpufreq_cpu_put: Decrements the usage count of a policy
262 *
263 * @policy: policy earlier returned by cpufreq_cpu_get().
264 *
265 * This decrements the kobject reference count incremented earlier by calling
266 * cpufreq_cpu_get().
Viresh Kumar50e9c852015-02-19 17:02:03 +0530267 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530268void cpufreq_cpu_put(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530270 kobject_put(&policy->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
276 *********************************************************************/
277
278/**
279 * adjust_jiffies - adjust the system "loops_per_jiffy"
280 *
281 * This function alters the system "loops_per_jiffy" for the clock
282 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500283 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * per-CPU loops_per_jiffy value wherever possible.
285 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800286static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
Viresh Kumar39c132e2015-01-02 12:34:34 +0530288#ifndef CONFIG_SMP
289 static unsigned long l_p_j_ref;
290 static unsigned int l_p_j_ref_freq;
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (ci->flags & CPUFREQ_CONST_LOOPS)
293 return;
294
295 if (!l_p_j_ref_freq) {
296 l_p_j_ref = loops_per_jiffy;
297 l_p_j_ref_freq = ci->old;
Joe Perchese837f9b2014-03-11 10:03:00 -0700298 pr_debug("saving %lu as reference value for loops_per_jiffy; freq is %u kHz\n",
299 l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
Viresh Kumar0b443ea2014-03-19 11:24:58 +0530301 if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530302 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
303 ci->new);
Joe Perchese837f9b2014-03-11 10:03:00 -0700304 pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
305 loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307#endif
Viresh Kumar39c132e2015-01-02 12:34:34 +0530308}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Viresh Kumar0956df9c2013-06-19 14:19:34 +0530310static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530311 struct cpufreq_freqs *freqs, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 BUG_ON(irqs_disabled());
314
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000315 if (cpufreq_disabled())
316 return;
317
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200318 freqs->flags = cpufreq_driver->flags;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200319 pr_debug("notification %u of frequency transition to %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -0700320 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 case CPUFREQ_PRECHANGE:
Dave Jones32ee8c32006-02-28 00:43:23 -0500325 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800326 * which is not equal to what the cpufreq core thinks is
327 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200329 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800330 if ((policy) && (policy->cpu == freqs->cpu) &&
331 (policy->cur) && (policy->cur != freqs->old)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700332 pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
333 freqs->old, policy->cur);
Dave Jonese4472cb2006-01-31 15:53:55 -0800334 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
336 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700337 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800338 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
340 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 case CPUFREQ_POSTCHANGE:
343 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Joe Perchese837f9b2014-03-11 10:03:00 -0700344 pr_debug("FREQ: %lu - CPU: %lu\n",
345 (unsigned long)freqs->new, (unsigned long)freqs->cpu);
Thomas Renninger25e41932011-01-03 17:50:44 +0100346 trace_cpu_frequency(freqs->new, freqs->cpu);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700347 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800348 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800349 if (likely(policy) && likely(policy->cpu == freqs->cpu))
350 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 break;
352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
Viresh Kumarbb176f72013-06-19 14:19:33 +0530354
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530355/**
356 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
357 * on frequency transition.
358 *
359 * This function calls the transition notifiers and the "adjust_jiffies"
360 * function. It is called twice on all CPU frequency changes that have
361 * external effects.
362 */
Viresh Kumar236a9802014-03-24 13:35:46 +0530363static void cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530364 struct cpufreq_freqs *freqs, unsigned int state)
365{
366 for_each_cpu(freqs->cpu, policy->cpus)
367 __cpufreq_notify_transition(policy, freqs, state);
368}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530370/* Do post notifications when there are chances that transition has failed */
Viresh Kumar236a9802014-03-24 13:35:46 +0530371static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530372 struct cpufreq_freqs *freqs, int transition_failed)
373{
374 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
375 if (!transition_failed)
376 return;
377
378 swap(freqs->old, freqs->new);
379 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
380 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
381}
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530382
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530383void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
384 struct cpufreq_freqs *freqs)
385{
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530386
387 /*
388 * Catch double invocations of _begin() which lead to self-deadlock.
389 * ASYNC_NOTIFICATION drivers are left out because the cpufreq core
390 * doesn't invoke _begin() on their behalf, and hence the chances of
391 * double invocations are very low. Moreover, there are scenarios
392 * where these checks can emit false-positive warnings in these
393 * drivers; so we avoid that by skipping them altogether.
394 */
395 WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
396 && current == policy->transition_task);
397
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530398wait:
399 wait_event(policy->transition_wait, !policy->transition_ongoing);
400
401 spin_lock(&policy->transition_lock);
402
403 if (unlikely(policy->transition_ongoing)) {
404 spin_unlock(&policy->transition_lock);
405 goto wait;
406 }
407
408 policy->transition_ongoing = true;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530409 policy->transition_task = current;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530410
411 spin_unlock(&policy->transition_lock);
412
413 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
414}
415EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);
416
417void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
418 struct cpufreq_freqs *freqs, int transition_failed)
419{
420 if (unlikely(WARN_ON(!policy->transition_ongoing)))
421 return;
422
423 cpufreq_notify_post_transition(policy, freqs, transition_failed);
424
425 policy->transition_ongoing = false;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530426 policy->transition_task = NULL;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530427
428 wake_up(&policy->transition_wait);
429}
430EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*********************************************************************
434 * SYSFS INTERFACE *
435 *********************************************************************/
Rashika Kheria8a5c74a2014-02-26 22:12:42 +0530436static ssize_t show_boost(struct kobject *kobj,
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100437 struct attribute *attr, char *buf)
438{
439 return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
440}
441
442static ssize_t store_boost(struct kobject *kobj, struct attribute *attr,
443 const char *buf, size_t count)
444{
445 int ret, enable;
446
447 ret = sscanf(buf, "%d", &enable);
448 if (ret != 1 || enable < 0 || enable > 1)
449 return -EINVAL;
450
451 if (cpufreq_boost_trigger_state(enable)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700452 pr_err("%s: Cannot %s BOOST!\n",
453 __func__, enable ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100454 return -EINVAL;
455 }
456
Joe Perchese837f9b2014-03-11 10:03:00 -0700457 pr_debug("%s: cpufreq BOOST %s\n",
458 __func__, enable ? "enabled" : "disabled");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100459
460 return count;
461}
462define_one_global_rw(boost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530464static struct cpufreq_governor *find_governor(const char *str_governor)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700465{
466 struct cpufreq_governor *t;
467
Viresh Kumarf7b27062015-01-27 14:06:09 +0530468 for_each_governor(t)
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200469 if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700470 return t;
471
472 return NULL;
473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475/**
476 * cpufreq_parse_governor - parse a governor string
477 */
Dave Jones905d77c2008-03-05 14:28:32 -0500478static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 struct cpufreq_governor **governor)
480{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700481 int err = -EINVAL;
482
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200483 if (cpufreq_driver->setpolicy) {
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200484 if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700486 err = 0;
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200487 } else if (!strncasecmp(str_governor, "powersave",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530488 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700490 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
Viresh Kumar2e1cc3a2015-01-02 12:34:27 +0530492 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700494
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800495 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700496
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530497 t = find_governor(str_governor);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700498
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700499 if (t == NULL) {
Kees Cook1a8e1462011-05-04 08:38:56 -0700500 int ret;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700501
Kees Cook1a8e1462011-05-04 08:38:56 -0700502 mutex_unlock(&cpufreq_governor_mutex);
503 ret = request_module("cpufreq_%s", str_governor);
504 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700505
Kees Cook1a8e1462011-05-04 08:38:56 -0700506 if (ret == 0)
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530507 t = find_governor(str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700508 }
509
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700510 if (t != NULL) {
511 *governor = t;
512 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700514
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800515 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700517 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530521 * cpufreq_per_cpu_attr_read() / show_##file_name() -
522 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 *
524 * Write out information from cpufreq_driver->policy[cpu]; object must be
525 * "unsigned int".
526 */
527
Dave Jones32ee8c32006-02-28 00:43:23 -0500528#define show_one(file_name, object) \
529static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500530(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500531{ \
Dave Jones29464f22009-01-18 01:37:11 -0500532 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
535show_one(cpuinfo_min_freq, cpuinfo.min_freq);
536show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100537show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538show_one(scaling_min_freq, min);
539show_one(scaling_max_freq, max);
Dirk Brandewiec034b022014-10-13 08:37:40 -0700540
Viresh Kumar09347b22015-01-02 12:34:24 +0530541static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
Dirk Brandewiec034b022014-10-13 08:37:40 -0700542{
543 ssize_t ret;
544
545 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
546 ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
547 else
548 ret = sprintf(buf, "%u\n", policy->cur);
549 return ret;
550}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Viresh Kumar037ce832013-10-02 14:13:16 +0530552static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530553 struct cpufreq_policy *new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555/**
556 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
557 */
558#define store_one(file_name, object) \
559static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500560(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{ \
Vince Hsu619c144c2014-11-10 14:14:50 +0800562 int ret, temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 struct cpufreq_policy new_policy; \
564 \
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530565 memcpy(&new_policy, policy, sizeof(*policy)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 \
Dave Jones29464f22009-01-18 01:37:11 -0500567 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (ret != 1) \
569 return -EINVAL; \
570 \
Vince Hsu619c144c2014-11-10 14:14:50 +0800571 temp = new_policy.object; \
Viresh Kumar037ce832013-10-02 14:13:16 +0530572 ret = cpufreq_set_policy(policy, &new_policy); \
Vince Hsu619c144c2014-11-10 14:14:50 +0800573 if (!ret) \
574 policy->user_policy.object = temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 \
576 return ret ? ret : count; \
577}
578
Dave Jones29464f22009-01-18 01:37:11 -0500579store_one(scaling_min_freq, min);
580store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582/**
583 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
584 */
Dave Jones905d77c2008-03-05 14:28:32 -0500585static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
586 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
Viresh Kumard92d50a2015-01-02 12:34:29 +0530588 unsigned int cur_freq = __cpufreq_get(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 if (!cur_freq)
590 return sprintf(buf, "<unknown>");
591 return sprintf(buf, "%u\n", cur_freq);
592}
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594/**
595 * show_scaling_governor - show the current policy for the specified CPU
596 */
Dave Jones905d77c2008-03-05 14:28:32 -0500597static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Dave Jones29464f22009-01-18 01:37:11 -0500599 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return sprintf(buf, "powersave\n");
601 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
602 return sprintf(buf, "performance\n");
603 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200604 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500605 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return -EINVAL;
607}
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609/**
610 * store_scaling_governor - store policy for the specified CPU
611 */
Dave Jones905d77c2008-03-05 14:28:32 -0500612static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
613 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530615 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 char str_governor[16];
617 struct cpufreq_policy new_policy;
618
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530619 memcpy(&new_policy, policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Dave Jones29464f22009-01-18 01:37:11 -0500621 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 if (ret != 1)
623 return -EINVAL;
624
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530625 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
626 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 return -EINVAL;
628
Viresh Kumar037ce832013-10-02 14:13:16 +0530629 ret = cpufreq_set_policy(policy, &new_policy);
Viresh Kumar88dc4382015-08-03 08:36:18 +0530630 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633/**
634 * show_scaling_driver - show the cpufreq driver currently loaded
635 */
Dave Jones905d77c2008-03-05 14:28:32 -0500636static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200638 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
641/**
642 * show_scaling_available_governors - show the available CPUfreq governors
643 */
Dave Jones905d77c2008-03-05 14:28:32 -0500644static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
645 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646{
647 ssize_t i = 0;
648 struct cpufreq_governor *t;
649
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530650 if (!has_target()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 i += sprintf(buf, "performance powersave");
652 goto out;
653 }
654
Viresh Kumarf7b27062015-01-27 14:06:09 +0530655 for_each_governor(t) {
Dave Jones29464f22009-01-18 01:37:11 -0500656 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
657 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200659 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500661out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 i += sprintf(&buf[i], "\n");
663 return i;
664}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700665
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800666ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 ssize_t i = 0;
669 unsigned int cpu;
670
Rusty Russell835481d2009-01-04 05:18:06 -0800671 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 if (i)
673 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
674 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
675 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500676 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678 i += sprintf(&buf[i], "\n");
679 return i;
680}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800681EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700683/**
684 * show_related_cpus - show the CPUs affected by each transition even if
685 * hw coordination is in use
686 */
687static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
688{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800689 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700690}
691
692/**
693 * show_affected_cpus - show the CPUs affected by each transition
694 */
695static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
696{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800697 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700698}
699
Venki Pallipadi9e769882007-10-26 10:18:21 -0700700static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500701 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700702{
703 unsigned int freq = 0;
704 unsigned int ret;
705
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700706 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700707 return -EINVAL;
708
709 ret = sscanf(buf, "%u", &freq);
710 if (ret != 1)
711 return -EINVAL;
712
713 policy->governor->store_setspeed(policy, freq);
714
715 return count;
716}
717
718static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
719{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700720 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700721 return sprintf(buf, "<unsupported>\n");
722
723 return policy->governor->show_setspeed(policy, buf);
724}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Thomas Renningere2f74f32009-11-19 12:31:01 +0100726/**
viresh kumar8bf1ac722012-10-23 01:23:33 +0200727 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100728 */
729static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
730{
731 unsigned int limit;
732 int ret;
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200733 if (cpufreq_driver->bios_limit) {
734 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100735 if (!ret)
736 return sprintf(buf, "%u\n", limit);
737 }
738 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
739}
740
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200741cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
742cpufreq_freq_attr_ro(cpuinfo_min_freq);
743cpufreq_freq_attr_ro(cpuinfo_max_freq);
744cpufreq_freq_attr_ro(cpuinfo_transition_latency);
745cpufreq_freq_attr_ro(scaling_available_governors);
746cpufreq_freq_attr_ro(scaling_driver);
747cpufreq_freq_attr_ro(scaling_cur_freq);
748cpufreq_freq_attr_ro(bios_limit);
749cpufreq_freq_attr_ro(related_cpus);
750cpufreq_freq_attr_ro(affected_cpus);
751cpufreq_freq_attr_rw(scaling_min_freq);
752cpufreq_freq_attr_rw(scaling_max_freq);
753cpufreq_freq_attr_rw(scaling_governor);
754cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Dave Jones905d77c2008-03-05 14:28:32 -0500756static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 &cpuinfo_min_freq.attr,
758 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100759 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 &scaling_min_freq.attr,
761 &scaling_max_freq.attr,
762 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700763 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 &scaling_governor.attr,
765 &scaling_driver.attr,
766 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700767 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 NULL
769};
770
Dave Jones29464f22009-01-18 01:37:11 -0500771#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
772#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Dave Jones29464f22009-01-18 01:37:11 -0500774static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Dave Jones905d77c2008-03-05 14:28:32 -0500776 struct cpufreq_policy *policy = to_policy(kobj);
777 struct freq_attr *fattr = to_attr(attr);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530778 ssize_t ret;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530779
viresh kumarad7722d2013-10-18 19:10:15 +0530780 down_read(&policy->rwsem);
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100781 ret = fattr->show(policy, buf);
viresh kumarad7722d2013-10-18 19:10:15 +0530782 up_read(&policy->rwsem);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return ret;
785}
786
Dave Jones905d77c2008-03-05 14:28:32 -0500787static ssize_t store(struct kobject *kobj, struct attribute *attr,
788 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
Dave Jones905d77c2008-03-05 14:28:32 -0500790 struct cpufreq_policy *policy = to_policy(kobj);
791 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500792 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530793
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530794 get_online_cpus();
795
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100796 if (cpu_online(policy->cpu)) {
797 down_write(&policy->rwsem);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530798 ret = fattr->store(policy, buf, count);
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100799 up_write(&policy->rwsem);
800 }
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530801
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530802 put_online_cpus();
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 return ret;
805}
806
Dave Jones905d77c2008-03-05 14:28:32 -0500807static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Dave Jones905d77c2008-03-05 14:28:32 -0500809 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200810 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 complete(&policy->kobj_unregister);
812}
813
Emese Revfy52cf25d2010-01-19 02:58:23 +0100814static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 .show = show,
816 .store = store,
817};
818
819static struct kobj_type ktype_cpufreq = {
820 .sysfs_ops = &sysfs_ops,
821 .default_attrs = default_attrs,
822 .release = cpufreq_sysfs_release,
823};
824
Viresh Kumar87549142015-06-10 02:13:21 +0200825static int add_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
826{
827 struct device *cpu_dev;
828
829 pr_debug("%s: Adding symlink for CPU: %u\n", __func__, cpu);
830
831 if (!policy)
832 return 0;
833
834 cpu_dev = get_cpu_device(cpu);
835 if (WARN_ON(!cpu_dev))
836 return 0;
837
838 return sysfs_create_link(&cpu_dev->kobj, &policy->kobj, "cpufreq");
839}
840
841static void remove_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
842{
843 struct device *cpu_dev;
844
845 pr_debug("%s: Removing symlink for CPU: %u\n", __func__, cpu);
846
847 cpu_dev = get_cpu_device(cpu);
848 if (WARN_ON(!cpu_dev))
849 return;
850
851 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
852}
853
854/* Add/remove symlinks for all related CPUs */
Viresh Kumar308b60e2013-07-31 14:35:14 +0200855static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400856{
857 unsigned int j;
858 int ret = 0;
859
Viresh Kumar87549142015-06-10 02:13:21 +0200860 /* Some related CPUs might not be present (physically hotplugged) */
Rafael J. Wysocki559ed402015-07-26 02:07:47 +0200861 for_each_cpu(j, policy->real_cpus) {
Viresh Kumar87549142015-06-10 02:13:21 +0200862 ret = add_cpu_dev_symlink(policy, j);
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200863 if (ret)
864 break;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400865 }
Viresh Kumar87549142015-06-10 02:13:21 +0200866
Dave Jones19d6f7e2009-07-08 17:35:39 -0400867 return ret;
868}
869
Viresh Kumar87549142015-06-10 02:13:21 +0200870static void cpufreq_remove_dev_symlink(struct cpufreq_policy *policy)
871{
872 unsigned int j;
873
874 /* Some related CPUs might not be present (physically hotplugged) */
Viresh Kumar96bdda62015-10-15 21:35:24 +0530875 for_each_cpu(j, policy->real_cpus)
Viresh Kumar87549142015-06-10 02:13:21 +0200876 remove_cpu_dev_symlink(policy, j);
Viresh Kumar87549142015-06-10 02:13:21 +0200877}
878
Rafael J. Wysockid9612a42015-07-27 23:11:37 +0200879static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
Dave Jones909a6942009-07-08 18:05:42 -0400880{
881 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -0400882 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -0400883
Dave Jones909a6942009-07-08 18:05:42 -0400884 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200885 drv_attr = cpufreq_driver->attr;
Viresh Kumarf13f1182015-01-02 12:34:23 +0530886 while (drv_attr && *drv_attr) {
Dave Jones909a6942009-07-08 18:05:42 -0400887 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
888 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100889 return ret;
Dave Jones909a6942009-07-08 18:05:42 -0400890 drv_attr++;
891 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200892 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -0400893 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
894 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100895 return ret;
Dave Jones909a6942009-07-08 18:05:42 -0400896 }
Dirk Brandewiec034b022014-10-13 08:37:40 -0700897
898 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
899 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100900 return ret;
Dirk Brandewiec034b022014-10-13 08:37:40 -0700901
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200902 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100903 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
904 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100905 return ret;
Thomas Renningere2f74f32009-11-19 12:31:01 +0100906 }
Dave Jones909a6942009-07-08 18:05:42 -0400907
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100908 return cpufreq_add_dev_symlink(policy);
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530909}
910
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100911__weak struct cpufreq_governor *cpufreq_default_governor(void)
912{
913 return NULL;
914}
915
Viresh Kumar7f0fa402015-07-08 15:12:16 +0530916static int cpufreq_init_policy(struct cpufreq_policy *policy)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530917{
viresh kumar6e2c89d2014-03-04 11:43:59 +0800918 struct cpufreq_governor *gov = NULL;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530919 struct cpufreq_policy new_policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530920
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530921 memcpy(&new_policy, policy, sizeof(*policy));
Jason Barona27a9ab2013-12-19 22:50:50 +0000922
viresh kumar6e2c89d2014-03-04 11:43:59 +0800923 /* Update governor of new_policy to the governor used before hotplug */
Viresh Kumar45732372015-05-12 12:22:34 +0530924 gov = find_governor(policy->last_governor);
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100925 if (gov) {
viresh kumar6e2c89d2014-03-04 11:43:59 +0800926 pr_debug("Restoring governor %s for cpu %d\n",
927 policy->governor->name, policy->cpu);
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100928 } else {
929 gov = cpufreq_default_governor();
930 if (!gov)
931 return -ENODATA;
932 }
viresh kumar6e2c89d2014-03-04 11:43:59 +0800933
934 new_policy.governor = gov;
935
Srinivas Pandruvada69030dd2015-12-01 16:52:14 -0800936 /* Use the default policy if there is no last_policy. */
937 if (cpufreq_driver->setpolicy) {
938 if (policy->last_policy)
939 new_policy.policy = policy->last_policy;
940 else
941 cpufreq_parse_governor(gov->name, &new_policy.policy,
942 NULL);
943 }
Dave Jonesecf7e462009-07-08 18:48:47 -0400944 /* set default policy */
Viresh Kumar7f0fa402015-07-08 15:12:16 +0530945 return cpufreq_set_policy(policy, &new_policy);
Dave Jones909a6942009-07-08 18:05:42 -0400946}
947
Rafael J. Wysockid9612a42015-07-27 23:11:37 +0200948static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
Viresh Kumarfcf80582013-01-29 14:39:08 +0000949{
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530950 int ret = 0;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000951
Viresh Kumarbb29ae12015-02-19 17:02:06 +0530952 /* Has this CPU been taken care of already? */
953 if (cpumask_test_cpu(cpu, policy->cpus))
954 return 0;
955
Viresh Kumar49f18562016-02-11 17:31:12 +0530956 down_write(&policy->rwsem);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530957 if (has_target()) {
Viresh Kumara1317e02016-02-22 16:36:43 +0530958 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530959 if (ret) {
960 pr_err("%s: Failed to stop governor\n", __func__);
Viresh Kumar49f18562016-02-11 17:31:12 +0530961 goto unlock;
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530962 }
963 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000964
Viresh Kumarfcf80582013-01-29 14:39:08 +0000965 cpumask_set_cpu(cpu, policy->cpus);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530966
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530967 if (has_target()) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +0100968 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +0530969 if (ret)
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530970 pr_err("%s: Failed to start governor\n", __func__);
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200971 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000972
Viresh Kumar49f18562016-02-11 17:31:12 +0530973unlock:
974 up_write(&policy->rwsem);
975 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000976}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Viresh Kumar11eb69b2016-02-22 16:36:42 +0530978static void handle_update(struct work_struct *work)
979{
980 struct cpufreq_policy *policy =
981 container_of(work, struct cpufreq_policy, update);
982 unsigned int cpu = policy->cpu;
983 pr_debug("handle_update for cpu %u called\n", cpu);
984 cpufreq_update_policy(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +0200987static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530988{
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +0200989 struct device *dev = get_cpu_device(cpu);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530990 struct cpufreq_policy *policy;
Viresh Kumaredd4a892016-03-03 14:51:33 +0530991 int ret;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530992
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +0200993 if (WARN_ON(!dev))
994 return NULL;
995
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530996 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
997 if (!policy)
998 return NULL;
999
1000 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
1001 goto err_free_policy;
1002
1003 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
1004 goto err_free_cpumask;
1005
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001006 if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
1007 goto err_free_rcpumask;
1008
Viresh Kumaredd4a892016-03-03 14:51:33 +05301009 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
1010 cpufreq_global_kobject, "policy%u", cpu);
1011 if (ret) {
1012 pr_err("%s: failed to init policy->kobj: %d\n", __func__, ret);
1013 goto err_free_real_cpus;
1014 }
1015
Lukasz Majewskic88a1f82013-08-06 22:53:08 +05301016 INIT_LIST_HEAD(&policy->policy_list);
viresh kumarad7722d2013-10-18 19:10:15 +05301017 init_rwsem(&policy->rwsem);
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +05301018 spin_lock_init(&policy->transition_lock);
1019 init_waitqueue_head(&policy->transition_wait);
Viresh Kumar818c5712015-01-02 12:34:38 +05301020 init_completion(&policy->kobj_unregister);
1021 INIT_WORK(&policy->update, handle_update);
viresh kumarad7722d2013-10-18 19:10:15 +05301022
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001023 policy->cpu = cpu;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301024 return policy;
1025
Viresh Kumaredd4a892016-03-03 14:51:33 +05301026err_free_real_cpus:
1027 free_cpumask_var(policy->real_cpus);
Viresh Kumar2fc33842015-06-08 18:25:29 +05301028err_free_rcpumask:
1029 free_cpumask_var(policy->related_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301030err_free_cpumask:
1031 free_cpumask_var(policy->cpus);
1032err_free_policy:
1033 kfree(policy);
1034
1035 return NULL;
1036}
1037
Viresh Kumar2fc33842015-06-08 18:25:29 +05301038static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy, bool notify)
Viresh Kumar42f921a2013-12-20 21:26:02 +05301039{
1040 struct kobject *kobj;
1041 struct completion *cmp;
1042
Viresh Kumar2fc33842015-06-08 18:25:29 +05301043 if (notify)
1044 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1045 CPUFREQ_REMOVE_POLICY, policy);
Viresh Kumarfcd7af92014-01-07 07:10:10 +05301046
Viresh Kumar87549142015-06-10 02:13:21 +02001047 down_write(&policy->rwsem);
1048 cpufreq_remove_dev_symlink(policy);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301049 kobj = &policy->kobj;
1050 cmp = &policy->kobj_unregister;
Viresh Kumar87549142015-06-10 02:13:21 +02001051 up_write(&policy->rwsem);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301052 kobject_put(kobj);
1053
1054 /*
1055 * We need to make sure that the underlying kobj is
1056 * actually not referenced anymore by anybody before we
1057 * proceed with unloading.
1058 */
1059 pr_debug("waiting for dropping of refcount\n");
1060 wait_for_completion(cmp);
1061 pr_debug("wait complete\n");
1062}
1063
Viresh Kumar3654c5c2015-06-08 18:25:30 +05301064static void cpufreq_policy_free(struct cpufreq_policy *policy, bool notify)
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301065{
Viresh Kumar988bed02015-05-08 11:53:45 +05301066 unsigned long flags;
1067 int cpu;
1068
1069 /* Remove policy from list */
1070 write_lock_irqsave(&cpufreq_driver_lock, flags);
1071 list_del(&policy->policy_list);
1072
1073 for_each_cpu(cpu, policy->related_cpus)
1074 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1075 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1076
Viresh Kumar3654c5c2015-06-08 18:25:30 +05301077 cpufreq_policy_put_kobj(policy, notify);
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001078 free_cpumask_var(policy->real_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301079 free_cpumask_var(policy->related_cpus);
1080 free_cpumask_var(policy->cpus);
1081 kfree(policy);
1082}
1083
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001084static int cpufreq_online(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Viresh Kumar7f0c0202015-01-02 12:34:32 +05301086 struct cpufreq_policy *policy;
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001087 bool new_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 unsigned long flags;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001089 unsigned int j;
1090 int ret;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001091
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001092 pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301093
Viresh Kumarbb29ae12015-02-19 17:02:06 +05301094 /* Check if this CPU already has a policy to manage it */
Viresh Kumar9104bb22015-05-12 12:22:12 +05301095 policy = per_cpu(cpufreq_cpu_data, cpu);
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001096 if (policy) {
Viresh Kumar9104bb22015-05-12 12:22:12 +05301097 WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001098 if (!policy_is_inactive(policy))
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001099 return cpufreq_add_policy_cpu(policy, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001101 /* This is the only online CPU for the policy. Start over. */
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001102 new_policy = false;
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001103 down_write(&policy->rwsem);
1104 policy->cpu = cpu;
1105 policy->governor = NULL;
1106 up_write(&policy->rwsem);
1107 } else {
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001108 new_policy = true;
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001109 policy = cpufreq_policy_alloc(cpu);
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001110 if (!policy)
Rafael J. Wysockid4d854d2015-07-27 23:11:30 +02001111 return -ENOMEM;
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001112 }
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301113
Rusty Russell835481d2009-01-04 05:18:06 -08001114 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 /* call driver. From then on the cpufreq must be able
1117 * to accept all calls to ->verify and ->setpolicy for this CPU
1118 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001119 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001121 pr_debug("initialization failed\n");
Viresh Kumar8101f992015-07-08 15:12:15 +05301122 goto out_free_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001124
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001125 down_write(&policy->rwsem);
1126
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001127 if (new_policy) {
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001128 /* related_cpus should at least include policy->cpus. */
Viresh Kumar0998a032015-10-15 21:35:21 +05301129 cpumask_copy(policy->related_cpus, policy->cpus);
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001130 /* Remember CPUs present at the policy creation time. */
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001131 cpumask_and(policy->real_cpus, policy->cpus, cpu_present_mask);
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001132 }
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001133
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001134 /*
1135 * affected cpus must always be the one, which are online. We aren't
1136 * managing offline cpus here.
1137 */
1138 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1139
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001140 if (new_policy) {
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001141 policy->user_policy.min = policy->min;
1142 policy->user_policy.max = policy->max;
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001143
Viresh Kumar988bed02015-05-08 11:53:45 +05301144 write_lock_irqsave(&cpufreq_driver_lock, flags);
1145 for_each_cpu(j, policy->related_cpus)
1146 per_cpu(cpufreq_cpu_data, j) = policy;
1147 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1148 }
Viresh Kumar652ed952014-01-09 20:38:43 +05301149
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01001150 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Viresh Kumarda60ce92013-10-03 20:28:30 +05301151 policy->cur = cpufreq_driver->get(policy->cpu);
1152 if (!policy->cur) {
1153 pr_err("%s: ->get() failed\n", __func__);
Viresh Kumar8101f992015-07-08 15:12:15 +05301154 goto out_exit_policy;
Viresh Kumarda60ce92013-10-03 20:28:30 +05301155 }
1156 }
1157
Viresh Kumard3916692013-12-03 11:20:46 +05301158 /*
1159 * Sometimes boot loaders set CPU frequency to a value outside of
1160 * frequency table present with cpufreq core. In such cases CPU might be
1161 * unstable if it has to run on that frequency for long duration of time
1162 * and so its better to set it to a frequency which is specified in
1163 * freq-table. This also makes cpufreq stats inconsistent as
1164 * cpufreq-stats would fail to register because current frequency of CPU
1165 * isn't found in freq-table.
1166 *
1167 * Because we don't want this change to effect boot process badly, we go
1168 * for the next freq which is >= policy->cur ('cur' must be set by now,
1169 * otherwise we will end up setting freq to lowest of the table as 'cur'
1170 * is initialized to zero).
1171 *
1172 * We are passing target-freq as "policy->cur - 1" otherwise
1173 * __cpufreq_driver_target() would simply fail, as policy->cur will be
1174 * equal to target-freq.
1175 */
1176 if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
1177 && has_target()) {
1178 /* Are we running at unknown frequency ? */
1179 ret = cpufreq_frequency_table_get_index(policy, policy->cur);
1180 if (ret == -EINVAL) {
1181 /* Warn user and fix it */
1182 pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
1183 __func__, policy->cpu, policy->cur);
1184 ret = __cpufreq_driver_target(policy, policy->cur - 1,
1185 CPUFREQ_RELATION_L);
1186
1187 /*
1188 * Reaching here after boot in a few seconds may not
1189 * mean that system will remain stable at "unknown"
1190 * frequency for longer duration. Hence, a BUG_ON().
1191 */
1192 BUG_ON(ret);
1193 pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
1194 __func__, policy->cpu, policy->cur);
1195 }
1196 }
1197
Thomas Renningera1531ac2008-07-29 22:32:58 -07001198 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1199 CPUFREQ_START, policy);
1200
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001201 if (new_policy) {
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001202 ret = cpufreq_add_dev_interface(policy);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301203 if (ret)
Viresh Kumar8101f992015-07-08 15:12:15 +05301204 goto out_exit_policy;
Viresh Kumarfcd7af92014-01-07 07:10:10 +05301205 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1206 CPUFREQ_CREATE_POLICY, policy);
Dave Jones8ff69732006-03-05 03:37:23 -05001207
Viresh Kumar988bed02015-05-08 11:53:45 +05301208 write_lock_irqsave(&cpufreq_driver_lock, flags);
1209 list_add(&policy->policy_list, &cpufreq_policy_list);
1210 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1211 }
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301212
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301213 ret = cpufreq_init_policy(policy);
1214 if (ret) {
1215 pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
1216 __func__, cpu, ret);
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001217 /* cpufreq_policy_free() will notify based on this */
1218 new_policy = false;
1219 goto out_exit_policy;
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301220 }
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301221
Viresh Kumar4e97b632014-03-04 11:44:01 +08001222 up_write(&policy->rwsem);
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301223
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001224 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301225
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301226 /* Callback for handling stuff after policy is ready */
1227 if (cpufreq_driver->ready)
1228 cpufreq_driver->ready(policy);
1229
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001230 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 return 0;
1233
Viresh Kumar8101f992015-07-08 15:12:15 +05301234out_exit_policy:
Prarit Bhargava7106e022014-09-10 10:12:08 -04001235 up_write(&policy->rwsem);
1236
Viresh Kumarda60ce92013-10-03 20:28:30 +05301237 if (cpufreq_driver->exit)
1238 cpufreq_driver->exit(policy);
Viresh Kumar8101f992015-07-08 15:12:15 +05301239out_free_policy:
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001240 cpufreq_policy_free(policy, !new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return ret;
1242}
1243
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001244/**
1245 * cpufreq_add_dev - the cpufreq interface for a CPU device.
1246 * @dev: CPU device.
1247 * @sif: Subsystem interface structure pointer (not used)
1248 */
1249static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1250{
1251 unsigned cpu = dev->id;
1252 int ret;
1253
1254 dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
1255
1256 if (cpu_online(cpu)) {
1257 ret = cpufreq_online(cpu);
1258 } else {
1259 /*
1260 * A hotplug notifier will follow and we will handle it as CPU
1261 * online then. For now, just create the sysfs link, unless
1262 * there is no policy or the link is already present.
1263 */
1264 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
1265
1266 ret = policy && !cpumask_test_and_set_cpu(cpu, policy->real_cpus)
1267 ? add_cpu_dev_symlink(policy, cpu) : 0;
1268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 return ret;
1271}
1272
Viresh Kumar69cee712016-02-11 17:31:11 +05301273static void cpufreq_offline(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301275 struct cpufreq_policy *policy;
Viresh Kumar69cee712016-02-11 17:31:11 +05301276 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001278 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Viresh Kumar988bed02015-05-08 11:53:45 +05301280 policy = cpufreq_cpu_get_raw(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301281 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001282 pr_debug("%s: No cpu_data found\n", __func__);
Rafael J. Wysocki15c0b4d2015-07-27 23:11:09 +02001283 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
Viresh Kumar49f18562016-02-11 17:31:12 +05301286 down_write(&policy->rwsem);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301287 if (has_target()) {
Viresh Kumara1317e02016-02-22 16:36:43 +05301288 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001289 if (ret)
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301290 pr_err("%s: Failed to stop governor\n", __func__);
Viresh Kumardb5f2992015-01-02 12:34:25 +05301291 }
Jacob Shin27ecddc2011-04-27 13:32:11 -05001292
Viresh Kumar9591bec2015-06-10 02:20:23 +02001293 cpumask_clear_cpu(cpu, policy->cpus);
Viresh Kumar45732372015-05-12 12:22:34 +05301294
Viresh Kumar9591bec2015-06-10 02:20:23 +02001295 if (policy_is_inactive(policy)) {
1296 if (has_target())
1297 strncpy(policy->last_governor, policy->governor->name,
1298 CPUFREQ_NAME_LEN);
Srinivas Pandruvada69030dd2015-12-01 16:52:14 -08001299 else
1300 policy->last_policy = policy->policy;
Viresh Kumar9591bec2015-06-10 02:20:23 +02001301 } else if (cpu == policy->cpu) {
1302 /* Nominate new CPU */
1303 policy->cpu = cpumask_any(policy->cpus);
1304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Viresh Kumar9591bec2015-06-10 02:20:23 +02001306 /* Start governor again for active policy */
1307 if (!policy_is_inactive(policy)) {
1308 if (has_target()) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001309 ret = cpufreq_start_governor(policy);
Viresh Kumar9591bec2015-06-10 02:20:23 +02001310 if (ret)
1311 pr_err("%s: Failed to start governor\n", __func__);
1312 }
Viresh Kumar69cee712016-02-11 17:31:11 +05301313
Viresh Kumar49f18562016-02-11 17:31:12 +05301314 goto unlock;
Viresh Kumar69cee712016-02-11 17:31:11 +05301315 }
1316
1317 if (cpufreq_driver->stop_cpu)
Dirk Brandewie367dc4a2014-03-19 08:45:53 -07001318 cpufreq_driver->stop_cpu(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Viresh Kumar87549142015-06-10 02:13:21 +02001320 /* If cpu is last user of policy, free policy */
1321 if (has_target()) {
Viresh Kumara1317e02016-02-22 16:36:43 +05301322 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001323 if (ret)
Viresh Kumar87549142015-06-10 02:13:21 +02001324 pr_err("%s: Failed to exit governor\n", __func__);
Viresh Kumar87549142015-06-10 02:13:21 +02001325 }
1326
Viresh Kumar87549142015-06-10 02:13:21 +02001327 /*
1328 * Perform the ->exit() even during light-weight tear-down,
1329 * since this is a core component, and is essential for the
1330 * subsequent light-weight ->init() to succeed.
1331 */
Srinivas Pandruvada55582bc2015-10-07 13:50:44 -07001332 if (cpufreq_driver->exit) {
Viresh Kumar87549142015-06-10 02:13:21 +02001333 cpufreq_driver->exit(policy);
Srinivas Pandruvada55582bc2015-10-07 13:50:44 -07001334 policy->freq_table = NULL;
1335 }
Viresh Kumar49f18562016-02-11 17:31:12 +05301336
1337unlock:
1338 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301341/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301342 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301343 *
1344 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301345 */
Viresh Kumar71db87b2015-07-30 15:04:01 +05301346static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001347{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001348 unsigned int cpu = dev->id;
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001349 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Venki Pallipadiec282972007-03-26 12:03:19 -07001350
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001351 if (!policy)
Linus Torvalds1af115d2015-08-31 08:47:40 -07001352 return;
Viresh Kumar87549142015-06-10 02:13:21 +02001353
Viresh Kumar69cee712016-02-11 17:31:11 +05301354 if (cpu_online(cpu))
1355 cpufreq_offline(cpu);
Viresh Kumar87549142015-06-10 02:13:21 +02001356
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001357 cpumask_clear_cpu(cpu, policy->real_cpus);
Viresh Kumar96bdda62015-10-15 21:35:24 +05301358 remove_cpu_dev_symlink(policy, cpu);
Viresh Kumarf344dae2015-11-21 09:06:49 +05301359
1360 if (cpumask_empty(policy->real_cpus))
1361 cpufreq_policy_free(policy, true);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001362}
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301365 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1366 * in deep trouble.
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301367 * @policy: policy managing CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 * @new_freq: CPU frequency the CPU actually runs at
1369 *
Dave Jones29464f22009-01-18 01:37:11 -05001370 * We adjust to current frequency first, and need to clean up later.
1371 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 */
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301373static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301374 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
1376 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301377
Joe Perchese837f9b2014-03-11 10:03:00 -07001378 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 +05301379 policy->cur, new_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301381 freqs.old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301383
Viresh Kumar8fec0512014-03-24 13:35:45 +05301384 cpufreq_freq_transition_begin(policy, &freqs);
1385 cpufreq_freq_transition_end(policy, &freqs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387
Dave Jones32ee8c32006-02-28 00:43:23 -05001388/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301389 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001390 * @cpu: CPU number
1391 *
1392 * This is the last known freq, without actually getting it from the driver.
1393 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1394 */
1395unsigned int cpufreq_quick_get(unsigned int cpu)
1396{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001397 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301398 unsigned int ret_freq = 0;
Richard Cochranc75361c2016-03-11 09:43:07 +01001399 unsigned long flags;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001400
Richard Cochranc75361c2016-03-11 09:43:07 +01001401 read_lock_irqsave(&cpufreq_driver_lock, flags);
1402
1403 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get) {
1404 ret_freq = cpufreq_driver->get(cpu);
1405 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1406 return ret_freq;
1407 }
1408
1409 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001410
1411 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001412 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301413 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001414 cpufreq_cpu_put(policy);
1415 }
1416
Dave Jones4d34a672008-02-07 16:33:49 -05001417 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001418}
1419EXPORT_SYMBOL(cpufreq_quick_get);
1420
Jesse Barnes3d737102011-06-28 10:59:12 -07001421/**
1422 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1423 * @cpu: CPU number
1424 *
1425 * Just return the max possible frequency for a given CPU.
1426 */
1427unsigned int cpufreq_quick_get_max(unsigned int cpu)
1428{
1429 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1430 unsigned int ret_freq = 0;
1431
1432 if (policy) {
1433 ret_freq = policy->max;
1434 cpufreq_cpu_put(policy);
1435 }
1436
1437 return ret_freq;
1438}
1439EXPORT_SYMBOL(cpufreq_quick_get_max);
1440
Viresh Kumard92d50a2015-01-02 12:34:29 +05301441static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301443 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001445 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001446 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Viresh Kumard92d50a2015-01-02 12:34:29 +05301448 ret_freq = cpufreq_driver->get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Viresh Kumar11e584c2015-06-10 02:11:45 +02001450 /* Updating inactive policies is invalid, so avoid doing that. */
1451 if (unlikely(policy_is_inactive(policy)))
1452 return ret_freq;
1453
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301454 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001455 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301456 /* verify no discrepancy between actual and
1457 saved value exists */
1458 if (unlikely(ret_freq != policy->cur)) {
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301459 cpufreq_out_of_sync(policy, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 schedule_work(&policy->update);
1461 }
1462 }
1463
Dave Jones4d34a672008-02-07 16:33:49 -05001464 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001465}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001467/**
1468 * cpufreq_get - get the current CPU frequency (in kHz)
1469 * @cpu: CPU number
1470 *
1471 * Get the CPU current (static) CPU frequency
1472 */
1473unsigned int cpufreq_get(unsigned int cpu)
1474{
Aaron Plattner999976e2014-03-04 12:42:15 -08001475 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001476 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001477
Aaron Plattner999976e2014-03-04 12:42:15 -08001478 if (policy) {
1479 down_read(&policy->rwsem);
Viresh Kumard92d50a2015-01-02 12:34:29 +05301480 ret_freq = __cpufreq_get(policy);
Aaron Plattner999976e2014-03-04 12:42:15 -08001481 up_read(&policy->rwsem);
Viresh Kumar26ca8692013-09-20 22:37:31 +05301482
Aaron Plattner999976e2014-03-04 12:42:15 -08001483 cpufreq_cpu_put(policy);
1484 }
Viresh Kumar6eed9402013-08-06 22:53:11 +05301485
Dave Jones4d34a672008-02-07 16:33:49 -05001486 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488EXPORT_SYMBOL(cpufreq_get);
1489
Rafael J. Wysocki999f5722016-03-21 15:46:25 +01001490static unsigned int cpufreq_update_current_freq(struct cpufreq_policy *policy)
1491{
1492 unsigned int new_freq;
1493
1494 new_freq = cpufreq_driver->get(policy->cpu);
1495 if (!new_freq)
1496 return 0;
1497
1498 if (!policy->cur) {
1499 pr_debug("cpufreq: Driver did not initialize current freq\n");
1500 policy->cur = new_freq;
1501 } else if (policy->cur != new_freq && has_target()) {
1502 cpufreq_out_of_sync(policy, new_freq);
1503 }
1504
1505 return new_freq;
1506}
1507
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001508static struct subsys_interface cpufreq_interface = {
1509 .name = "cpufreq",
1510 .subsys = &cpu_subsys,
1511 .add_dev = cpufreq_add_dev,
1512 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001513};
1514
Viresh Kumare28867e2014-03-04 11:00:27 +08001515/*
1516 * In case platform wants some specific frequency to be configured
1517 * during suspend..
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001518 */
Viresh Kumare28867e2014-03-04 11:00:27 +08001519int cpufreq_generic_suspend(struct cpufreq_policy *policy)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001520{
Viresh Kumare28867e2014-03-04 11:00:27 +08001521 int ret;
Dave Jones4bc5d342009-08-04 14:03:25 -04001522
Viresh Kumare28867e2014-03-04 11:00:27 +08001523 if (!policy->suspend_freq) {
Bartlomiej Zolnierkiewicz201f3712015-09-08 18:41:02 +02001524 pr_debug("%s: suspend_freq not defined\n", __func__);
1525 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001526 }
1527
Viresh Kumare28867e2014-03-04 11:00:27 +08001528 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1529 policy->suspend_freq);
1530
1531 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1532 CPUFREQ_RELATION_H);
1533 if (ret)
1534 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1535 __func__, policy->suspend_freq, ret);
1536
Dave Jonesc9060492008-02-07 16:32:18 -05001537 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001538}
Viresh Kumare28867e2014-03-04 11:00:27 +08001539EXPORT_SYMBOL(cpufreq_generic_suspend);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001540
1541/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001542 * cpufreq_suspend() - Suspend CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001544 * Called during system wide Suspend/Hibernate cycles for suspending governors
1545 * as some platforms can't change frequency after this point in suspend cycle.
1546 * Because some of the devices (like: i2c, regulators, etc) they use for
1547 * changing frequency are suspended quickly after this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001549void cpufreq_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301551 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301552 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001554 if (!cpufreq_driver)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001555 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001557 if (!has_target())
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301558 goto suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001560 pr_debug("%s: Suspending Governors\n", __func__);
1561
Viresh Kumarf9637352015-05-12 12:20:11 +05301562 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301563 down_write(&policy->rwsem);
Viresh Kumara1317e02016-02-22 16:36:43 +05301564 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar49f18562016-02-11 17:31:12 +05301565 up_write(&policy->rwsem);
1566
1567 if (ret)
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001568 pr_err("%s: Failed to stop governor for policy: %p\n",
1569 __func__, policy);
1570 else if (cpufreq_driver->suspend
1571 && cpufreq_driver->suspend(policy))
1572 pr_err("%s: Failed to suspend driver: %p\n", __func__,
1573 policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301575
1576suspend:
1577 cpufreq_suspended = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578}
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001581 * cpufreq_resume() - Resume CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001583 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1584 * are suspended with cpufreq_suspend().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001586void cpufreq_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301589 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001591 if (!cpufreq_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return;
1593
Lan Tianyu8e304442014-09-18 15:03:07 +08001594 cpufreq_suspended = false;
1595
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001596 if (!has_target())
1597 return;
1598
1599 pr_debug("%s: Resuming Governors\n", __func__);
1600
Viresh Kumarf9637352015-05-12 12:20:11 +05301601 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301602 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
Viresh Kumar0c5aa402014-03-24 12:30:29 +05301603 pr_err("%s: Failed to resume driver: %p\n", __func__,
1604 policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301605 } else {
1606 down_write(&policy->rwsem);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001607 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301608 up_write(&policy->rwsem);
1609
1610 if (ret)
1611 pr_err("%s: Failed to start governor for policy: %p\n",
1612 __func__, policy);
1613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Borislav Petkov9d950462013-01-20 10:24:28 +00001617/**
1618 * cpufreq_get_current_driver - return current driver's name
1619 *
1620 * Return the name string of the currently loaded cpufreq driver
1621 * or NULL, if none.
1622 */
1623const char *cpufreq_get_current_driver(void)
1624{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001625 if (cpufreq_driver)
1626 return cpufreq_driver->name;
1627
1628 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001629}
1630EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Thomas Petazzoni51315cd2014-10-19 11:30:27 +02001632/**
1633 * cpufreq_get_driver_data - return current driver data
1634 *
1635 * Return the private data of the currently loaded cpufreq
1636 * driver, or NULL if no cpufreq driver is loaded.
1637 */
1638void *cpufreq_get_driver_data(void)
1639{
1640 if (cpufreq_driver)
1641 return cpufreq_driver->driver_data;
1642
1643 return NULL;
1644}
1645EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647/*********************************************************************
1648 * NOTIFIER LISTS INTERFACE *
1649 *********************************************************************/
1650
1651/**
1652 * cpufreq_register_notifier - register a driver with cpufreq
1653 * @nb: notifier function to register
1654 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1655 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001656 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 * are notified about clock rate changes (once before and once after
1658 * the transition), or a list of drivers that are notified about
1659 * changes in cpufreq policy.
1660 *
1661 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001662 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 */
1664int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1665{
1666 int ret;
1667
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001668 if (cpufreq_disabled())
1669 return -EINVAL;
1670
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001671 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1672
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 switch (list) {
1674 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001675 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001676 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 break;
1678 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001679 ret = blocking_notifier_chain_register(
1680 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 break;
1682 default:
1683 ret = -EINVAL;
1684 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
1686 return ret;
1687}
1688EXPORT_SYMBOL(cpufreq_register_notifier);
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690/**
1691 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1692 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301693 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 *
1695 * Remove a driver from the CPU frequency notifier list.
1696 *
1697 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001698 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 */
1700int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1701{
1702 int ret;
1703
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001704 if (cpufreq_disabled())
1705 return -EINVAL;
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 switch (list) {
1708 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001709 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001710 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 break;
1712 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001713 ret = blocking_notifier_chain_unregister(
1714 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 break;
1716 default:
1717 ret = -EINVAL;
1718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 return ret;
1721}
1722EXPORT_SYMBOL(cpufreq_unregister_notifier);
1723
1724
1725/*********************************************************************
1726 * GOVERNORS *
1727 *********************************************************************/
1728
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301729/* Must set freqs->new to intermediate frequency */
1730static int __target_intermediate(struct cpufreq_policy *policy,
1731 struct cpufreq_freqs *freqs, int index)
1732{
1733 int ret;
1734
1735 freqs->new = cpufreq_driver->get_intermediate(policy, index);
1736
1737 /* We don't need to switch to intermediate freq */
1738 if (!freqs->new)
1739 return 0;
1740
1741 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
1742 __func__, policy->cpu, freqs->old, freqs->new);
1743
1744 cpufreq_freq_transition_begin(policy, freqs);
1745 ret = cpufreq_driver->target_intermediate(policy, index);
1746 cpufreq_freq_transition_end(policy, freqs, ret);
1747
1748 if (ret)
1749 pr_err("%s: Failed to change to intermediate frequency: %d\n",
1750 __func__, ret);
1751
1752 return ret;
1753}
1754
Viresh Kumar8d657752014-05-21 14:29:29 +05301755static int __target_index(struct cpufreq_policy *policy,
1756 struct cpufreq_frequency_table *freq_table, int index)
1757{
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301758 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
1759 unsigned int intermediate_freq = 0;
Viresh Kumar8d657752014-05-21 14:29:29 +05301760 int retval = -EINVAL;
1761 bool notify;
1762
1763 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
Viresh Kumar8d657752014-05-21 14:29:29 +05301764 if (notify) {
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301765 /* Handle switching to intermediate frequency */
1766 if (cpufreq_driver->get_intermediate) {
1767 retval = __target_intermediate(policy, &freqs, index);
1768 if (retval)
1769 return retval;
Viresh Kumar8d657752014-05-21 14:29:29 +05301770
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301771 intermediate_freq = freqs.new;
1772 /* Set old freq to intermediate */
1773 if (intermediate_freq)
1774 freqs.old = freqs.new;
1775 }
1776
1777 freqs.new = freq_table[index].frequency;
Viresh Kumar8d657752014-05-21 14:29:29 +05301778 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1779 __func__, policy->cpu, freqs.old, freqs.new);
1780
1781 cpufreq_freq_transition_begin(policy, &freqs);
1782 }
1783
1784 retval = cpufreq_driver->target_index(policy, index);
1785 if (retval)
1786 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
1787 retval);
1788
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301789 if (notify) {
Viresh Kumar8d657752014-05-21 14:29:29 +05301790 cpufreq_freq_transition_end(policy, &freqs, retval);
1791
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301792 /*
1793 * Failed after setting to intermediate freq? Driver should have
1794 * reverted back to initial frequency and so should we. Check
1795 * here for intermediate_freq instead of get_intermediate, in
Shailendra Verma58405af2015-05-22 22:48:22 +05301796 * case we haven't switched to intermediate freq at all.
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301797 */
1798 if (unlikely(retval && intermediate_freq)) {
1799 freqs.old = intermediate_freq;
1800 freqs.new = policy->restore_freq;
1801 cpufreq_freq_transition_begin(policy, &freqs);
1802 cpufreq_freq_transition_end(policy, &freqs, 0);
1803 }
1804 }
1805
Viresh Kumar8d657752014-05-21 14:29:29 +05301806 return retval;
1807}
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809int __cpufreq_driver_target(struct cpufreq_policy *policy,
1810 unsigned int target_freq,
1811 unsigned int relation)
1812{
Viresh Kumar72499242012-10-31 01:28:21 +01001813 unsigned int old_target_freq = target_freq;
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001814 struct cpufreq_frequency_table *freq_table;
1815 int index, retval;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001816
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001817 if (cpufreq_disabled())
1818 return -ENODEV;
1819
Viresh Kumar72499242012-10-31 01:28:21 +01001820 /* Make sure that target_freq is within supported range */
1821 if (target_freq > policy->max)
1822 target_freq = policy->max;
1823 if (target_freq < policy->min)
1824 target_freq = policy->min;
1825
1826 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07001827 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001828
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301829 /*
1830 * This might look like a redundant call as we are checking it again
1831 * after finding index. But it is left intentionally for cases where
1832 * exactly same freq is called again and so we can save on few function
1833 * calls.
1834 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001835 if (target_freq == policy->cur)
1836 return 0;
1837
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301838 /* Save last value to restore later on errors */
1839 policy->restore_freq = policy->cur;
1840
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001841 if (cpufreq_driver->target)
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001842 return cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001843
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001844 if (!cpufreq_driver->target_index)
1845 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301846
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001847 freq_table = cpufreq_frequency_get_table(policy->cpu);
1848 if (unlikely(!freq_table)) {
1849 pr_err("%s: Unable to find freq_table\n", __func__);
1850 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301851 }
1852
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001853 retval = cpufreq_frequency_table_target(policy, freq_table, target_freq,
1854 relation, &index);
1855 if (unlikely(retval)) {
1856 pr_err("%s: Unable to find matching freq\n", __func__);
1857 return retval;
1858 }
1859
1860 if (freq_table[index].frequency == policy->cur)
1861 return 0;
1862
1863 return __target_index(policy, freq_table, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
1865EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867int cpufreq_driver_target(struct cpufreq_policy *policy,
1868 unsigned int target_freq,
1869 unsigned int relation)
1870{
Julia Lawallf1829e42008-07-25 22:44:53 +02001871 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
viresh kumarad7722d2013-10-18 19:10:15 +05301873 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 ret = __cpufreq_driver_target(policy, target_freq, relation);
1876
viresh kumarad7722d2013-10-18 19:10:15 +05301877 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return ret;
1880}
1881EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1882
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001883__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
1884{
1885 return NULL;
1886}
1887
Viresh Kumara1317e02016-02-22 16:36:43 +05301888static int cpufreq_governor(struct cpufreq_policy *policy, unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
Dave Jonescc993ca2005-07-28 09:43:56 -07001890 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001891
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001892 /* Don't start any governor operations if we are entering suspend */
1893 if (cpufreq_suspended)
1894 return 0;
Ethan Zhaocb577202014-12-18 15:28:19 +09001895 /*
1896 * Governor might not be initiated here if ACPI _PPC changed
1897 * notification happened, so check it.
1898 */
1899 if (!policy->governor)
1900 return -EINVAL;
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001901
Thomas Renninger1c256242007-10-02 13:28:12 -07001902 if (policy->governor->max_transition_latency &&
1903 policy->cpuinfo.transition_latency >
1904 policy->governor->max_transition_latency) {
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001905 struct cpufreq_governor *gov = cpufreq_fallback_governor();
1906
1907 if (gov) {
Joe Perchese837f9b2014-03-11 10:03:00 -07001908 pr_warn("%s governor failed, too long transition latency of HW, fallback to %s governor\n",
1909 policy->governor->name, gov->name);
Thomas Renninger6afde102007-10-02 13:28:13 -07001910 policy->governor = gov;
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001911 } else {
1912 return -EINVAL;
Thomas Renninger6afde102007-10-02 13:28:13 -07001913 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Viresh Kumarfe492f32013-08-06 22:53:10 +05301916 if (event == CPUFREQ_GOV_POLICY_INIT)
1917 if (!try_module_get(policy->governor->owner))
1918 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Viresh Kumar63431f72015-07-27 17:58:06 +05301920 pr_debug("%s: for CPU %u, event %u\n", __func__, policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001921
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 ret = policy->governor->governor(policy, event);
1923
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001924 if (!ret) {
1925 if (event == CPUFREQ_GOV_POLICY_INIT)
1926 policy->governor->initialized++;
1927 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1928 policy->governor->initialized--;
1929 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001930
Viresh Kumarfe492f32013-08-06 22:53:10 +05301931 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1932 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 module_put(policy->governor->owner);
1934
1935 return ret;
1936}
1937
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001938static int cpufreq_start_governor(struct cpufreq_policy *policy)
1939{
1940 int ret;
1941
Rafael J. Wysocki3bbf8fe2016-03-21 15:47:48 +01001942 if (cpufreq_driver->get && !cpufreq_driver->setpolicy)
1943 cpufreq_update_current_freq(policy);
1944
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001945 ret = cpufreq_governor(policy, CPUFREQ_GOV_START);
1946 return ret ? ret : cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
1947}
1948
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949int cpufreq_register_governor(struct cpufreq_governor *governor)
1950{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001951 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 if (!governor)
1954 return -EINVAL;
1955
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001956 if (cpufreq_disabled())
1957 return -ENODEV;
1958
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001959 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001960
Viresh Kumarb3940582013-02-01 05:42:58 +00001961 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001962 err = -EBUSY;
Viresh Kumar42f91fa2015-01-02 12:34:26 +05301963 if (!find_governor(governor->name)) {
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001964 err = 0;
1965 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Dave Jones32ee8c32006-02-28 00:43:23 -05001968 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001969 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970}
1971EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1972
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1974{
Viresh Kumar45732372015-05-12 12:22:34 +05301975 struct cpufreq_policy *policy;
1976 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 if (!governor)
1979 return;
1980
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001981 if (cpufreq_disabled())
1982 return;
1983
Viresh Kumar45732372015-05-12 12:22:34 +05301984 /* clear last_governor for all inactive policies */
1985 read_lock_irqsave(&cpufreq_driver_lock, flags);
1986 for_each_inactive_policy(policy) {
Viresh Kumar18bf3a12015-05-12 12:22:51 +05301987 if (!strcmp(policy->last_governor, governor->name)) {
1988 policy->governor = NULL;
Viresh Kumar45732372015-05-12 12:22:34 +05301989 strcpy(policy->last_governor, "\0");
Viresh Kumar18bf3a12015-05-12 12:22:51 +05301990 }
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001991 }
Viresh Kumar45732372015-05-12 12:22:34 +05301992 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001993
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001994 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001996 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return;
1998}
1999EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
2000
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002/*********************************************************************
2003 * POLICY INTERFACE *
2004 *********************************************************************/
2005
2006/**
2007 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05002008 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2009 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 *
2011 * Reads the current cpufreq policy.
2012 */
2013int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2014{
2015 struct cpufreq_policy *cpu_policy;
2016 if (!policy)
2017 return -EINVAL;
2018
2019 cpu_policy = cpufreq_cpu_get(cpu);
2020 if (!cpu_policy)
2021 return -EINVAL;
2022
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302023 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return 0;
2027}
2028EXPORT_SYMBOL(cpufreq_get_policy);
2029
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002030/*
Viresh Kumar037ce832013-10-02 14:13:16 +05302031 * policy : current policy.
2032 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002033 */
Viresh Kumar037ce832013-10-02 14:13:16 +05302034static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302035 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002037 struct cpufreq_governor *old_gov;
2038 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Joe Perchese837f9b2014-03-11 10:03:00 -07002040 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2041 new_policy->cpu, new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302043 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
Pan Xinhuifba95732015-07-30 18:10:40 +08002045 /*
2046 * This check works well when we store new min/max freq attributes,
2047 * because new_policy is a copy of policy with one field updated.
2048 */
2049 if (new_policy->min > new_policy->max)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002050 return -EINVAL;
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302053 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002055 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08002058 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302059 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Viresh Kumarbb176f72013-06-19 14:19:33 +05302061 /*
2062 * verify the cpu speed can be set within this limit, which might be
2063 * different to the first one
2064 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302065 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08002066 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002067 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08002070 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302071 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302073 policy->min = new_policy->min;
2074 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002076 pr_debug("new min and max freqs are %u - %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002077 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002079 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302080 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002081 pr_debug("setting range\n");
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002082 return cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002085 if (new_policy->governor == policy->governor) {
2086 pr_debug("cpufreq: governor limits update\n");
2087 return cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
2088 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002089
2090 pr_debug("governor switch\n");
2091
2092 /* save old, working values */
2093 old_gov = policy->governor;
2094 /* end old governor */
2095 if (old_gov) {
Viresh Kumara1317e02016-02-22 16:36:43 +05302096 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302097 if (ret) {
2098 /* This can happen due to race with other operations */
2099 pr_debug("%s: Failed to Stop Governor: %s (%d)\n",
2100 __func__, old_gov->name, ret);
2101 return ret;
2102 }
2103
Viresh Kumara1317e02016-02-22 16:36:43 +05302104 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302105 if (ret) {
2106 pr_err("%s: Failed to Exit Governor: %s (%d)\n",
2107 __func__, old_gov->name, ret);
2108 return ret;
2109 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002110 }
2111
2112 /* start new governor */
2113 policy->governor = new_policy->governor;
Viresh Kumara1317e02016-02-22 16:36:43 +05302114 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302115 if (!ret) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002116 ret = cpufreq_start_governor(policy);
2117 if (!ret) {
2118 pr_debug("cpufreq: governor change\n");
2119 return 0;
2120 }
Viresh Kumara1317e02016-02-22 16:36:43 +05302121 cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002122 }
2123
2124 /* new governor failed, so re-start old one */
2125 pr_debug("starting governor %s failed\n", policy->governor->name);
2126 if (old_gov) {
2127 policy->governor = old_gov;
Viresh Kumara1317e02016-02-22 16:36:43 +05302128 if (cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT))
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302129 policy->governor = NULL;
2130 else
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002131 cpufreq_start_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002132 }
2133
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302134 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135}
2136
2137/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2139 * @cpu: CPU which shall be re-evaluated
2140 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002141 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 * at different times.
2143 */
2144int cpufreq_update_policy(unsigned int cpu)
2145{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302146 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2147 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02002148 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002150 if (!policy)
2151 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
viresh kumarad7722d2013-10-18 19:10:15 +05302153 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002155 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302156 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302157 new_policy.min = policy->user_policy.min;
2158 new_policy.max = policy->user_policy.max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Viresh Kumarbb176f72013-06-19 14:19:33 +05302160 /*
2161 * BIOS might change freq behind our back
2162 * -> ask driver for current freq and notify governors about a change
2163 */
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01002164 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Rafael J. Wysocki999f5722016-03-21 15:46:25 +01002165 new_policy.cur = cpufreq_update_current_freq(policy);
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302166 if (WARN_ON(!new_policy.cur)) {
2167 ret = -EIO;
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002168 goto unlock;
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302169 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002170 }
2171
Viresh Kumar037ce832013-10-02 14:13:16 +05302172 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002174unlock:
viresh kumarad7722d2013-10-18 19:10:15 +05302175 up_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002176
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302177 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 return ret;
2179}
2180EXPORT_SYMBOL(cpufreq_update_policy);
2181
Paul Gortmaker27609842013-06-19 13:54:04 -04002182static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002183 unsigned long action, void *hcpu)
2184{
2185 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002186
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002187 switch (action & ~CPU_TASKS_FROZEN) {
2188 case CPU_ONLINE:
2189 cpufreq_online(cpu);
2190 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302191
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002192 case CPU_DOWN_PREPARE:
Viresh Kumar69cee712016-02-11 17:31:11 +05302193 cpufreq_offline(cpu);
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002194 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302195
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002196 case CPU_DOWN_FAILED:
2197 cpufreq_online(cpu);
2198 break;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002199 }
2200 return NOTIFY_OK;
2201}
2202
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002203static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302204 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002205};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207/*********************************************************************
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002208 * BOOST *
2209 *********************************************************************/
2210static int cpufreq_boost_set_sw(int state)
2211{
2212 struct cpufreq_frequency_table *freq_table;
2213 struct cpufreq_policy *policy;
2214 int ret = -EINVAL;
2215
Viresh Kumarf9637352015-05-12 12:20:11 +05302216 for_each_active_policy(policy) {
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002217 freq_table = cpufreq_frequency_get_table(policy->cpu);
2218 if (freq_table) {
2219 ret = cpufreq_frequency_table_cpuinfo(policy,
2220 freq_table);
2221 if (ret) {
2222 pr_err("%s: Policy frequency update failed\n",
2223 __func__);
2224 break;
2225 }
Viresh Kumar49f18562016-02-11 17:31:12 +05302226
2227 down_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002228 policy->user_policy.max = policy->max;
Viresh Kumara1317e02016-02-22 16:36:43 +05302229 cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Viresh Kumar49f18562016-02-11 17:31:12 +05302230 up_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002231 }
2232 }
2233
2234 return ret;
2235}
2236
2237int cpufreq_boost_trigger_state(int state)
2238{
2239 unsigned long flags;
2240 int ret = 0;
2241
2242 if (cpufreq_driver->boost_enabled == state)
2243 return 0;
2244
2245 write_lock_irqsave(&cpufreq_driver_lock, flags);
2246 cpufreq_driver->boost_enabled = state;
2247 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2248
2249 ret = cpufreq_driver->set_boost(state);
2250 if (ret) {
2251 write_lock_irqsave(&cpufreq_driver_lock, flags);
2252 cpufreq_driver->boost_enabled = !state;
2253 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2254
Joe Perchese837f9b2014-03-11 10:03:00 -07002255 pr_err("%s: Cannot %s BOOST\n",
2256 __func__, state ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002257 }
2258
2259 return ret;
2260}
2261
Rafael J. Wysocki41669da2015-12-27 00:23:48 +01002262static bool cpufreq_boost_supported(void)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002263{
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002264 return likely(cpufreq_driver) && cpufreq_driver->set_boost;
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002265}
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002266
Viresh Kumar44139ed2015-07-29 16:23:09 +05302267static int create_boost_sysfs_file(void)
2268{
2269 int ret;
2270
Viresh Kumarc82bd442015-10-15 21:35:23 +05302271 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302272 if (ret)
2273 pr_err("%s: cannot register global BOOST sysfs file\n",
2274 __func__);
2275
2276 return ret;
2277}
2278
2279static void remove_boost_sysfs_file(void)
2280{
2281 if (cpufreq_boost_supported())
Viresh Kumarc82bd442015-10-15 21:35:23 +05302282 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302283}
2284
2285int cpufreq_enable_boost_support(void)
2286{
2287 if (!cpufreq_driver)
2288 return -EINVAL;
2289
2290 if (cpufreq_boost_supported())
2291 return 0;
2292
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002293 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
Viresh Kumar44139ed2015-07-29 16:23:09 +05302294
2295 /* This will get removed on driver unregister */
2296 return create_boost_sysfs_file();
2297}
2298EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2299
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002300int cpufreq_boost_enabled(void)
2301{
2302 return cpufreq_driver->boost_enabled;
2303}
2304EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2305
2306/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2308 *********************************************************************/
2309
2310/**
2311 * cpufreq_register_driver - register a CPU Frequency driver
2312 * @driver_data: A struct cpufreq_driver containing the values#
2313 * submitted by the CPU Frequency driver.
2314 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302315 * Registers a CPU Frequency driver to this core code. This code
Eric Biggers63af4052016-02-20 21:50:01 -06002316 * returns zero on success, -EEXIST when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002317 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 *
2319 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002320int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321{
2322 unsigned long flags;
2323 int ret;
2324
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002325 if (cpufreq_disabled())
2326 return -ENODEV;
2327
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302329 !(driver_data->setpolicy || driver_data->target_index ||
Rafael J. Wysocki98322352014-03-19 12:48:30 +01002330 driver_data->target) ||
2331 (driver_data->setpolicy && (driver_data->target_index ||
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302332 driver_data->target)) ||
2333 (!!driver_data->get_intermediate != !!driver_data->target_intermediate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 return -EINVAL;
2335
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002336 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002338 /* Protect against concurrent CPU online/offline. */
2339 get_online_cpus();
2340
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002341 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002342 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002343 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002344 ret = -EEXIST;
2345 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002347 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002348 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Viresh Kumarbc68b7d2015-01-02 12:34:30 +05302350 if (driver_data->setpolicy)
2351 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2352
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002353 if (cpufreq_boost_supported()) {
2354 ret = create_boost_sysfs_file();
2355 if (ret)
2356 goto err_null_driver;
2357 }
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002358
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002359 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002360 if (ret)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002361 goto err_boost_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302363 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2364 list_empty(&cpufreq_policy_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 /* if all ->init() calls failed, unregister */
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302366 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2367 driver_data->name);
2368 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 }
2370
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002371 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002372 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002374out:
2375 put_online_cpus();
2376 return ret;
2377
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002378err_if_unreg:
2379 subsys_interface_unregister(&cpufreq_interface);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002380err_boost_unreg:
Viresh Kumar44139ed2015-07-29 16:23:09 +05302381 remove_boost_sysfs_file();
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002382err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002383 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002384 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002385 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002386 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387}
2388EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2389
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390/**
2391 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2392 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302393 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 * the right to do so, i.e. if you have succeeded in initialising before!
2395 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2396 * currently not initialised.
2397 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002398int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399{
2400 unsigned long flags;
2401
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002402 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002405 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002407 /* Protect against concurrent cpu hotplug */
2408 get_online_cpus();
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002409 subsys_interface_unregister(&cpufreq_interface);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302410 remove_boost_sysfs_file();
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002411 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002413 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302414
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002415 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302416
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002417 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002418 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
2420 return 0;
2421}
2422EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002423
Doug Anderson90de2a42014-12-23 22:09:48 -08002424/*
2425 * Stop cpufreq at shutdown to make sure it isn't holding any locks
2426 * or mutexes when secondary CPUs are halted.
2427 */
2428static struct syscore_ops cpufreq_syscore_ops = {
2429 .shutdown = cpufreq_suspend,
2430};
2431
Viresh Kumarc82bd442015-10-15 21:35:23 +05302432struct kobject *cpufreq_global_kobject;
2433EXPORT_SYMBOL(cpufreq_global_kobject);
2434
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002435static int __init cpufreq_core_init(void)
2436{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002437 if (cpufreq_disabled())
2438 return -ENODEV;
2439
Viresh Kumar8eec1022015-10-15 21:35:22 +05302440 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002441 BUG_ON(!cpufreq_global_kobject);
2442
Doug Anderson90de2a42014-12-23 22:09:48 -08002443 register_syscore_ops(&cpufreq_syscore_ops);
2444
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002445 return 0;
2446}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002447core_initcall(cpufreq_core_init);