blob: e93405f0eac46565d18c25873d1113c3a1aa65fd [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
Rafael J. Wysockic9d9c922016-04-10 05:59:33 +02001494 if (cpufreq_suspended)
1495 return 0;
1496
Rafael J. Wysocki999f5722016-03-21 15:46:25 +01001497 new_freq = cpufreq_driver->get(policy->cpu);
1498 if (!new_freq)
1499 return 0;
1500
1501 if (!policy->cur) {
1502 pr_debug("cpufreq: Driver did not initialize current freq\n");
1503 policy->cur = new_freq;
1504 } else if (policy->cur != new_freq && has_target()) {
1505 cpufreq_out_of_sync(policy, new_freq);
1506 }
1507
1508 return new_freq;
1509}
1510
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001511static struct subsys_interface cpufreq_interface = {
1512 .name = "cpufreq",
1513 .subsys = &cpu_subsys,
1514 .add_dev = cpufreq_add_dev,
1515 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001516};
1517
Viresh Kumare28867e2014-03-04 11:00:27 +08001518/*
1519 * In case platform wants some specific frequency to be configured
1520 * during suspend..
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001521 */
Viresh Kumare28867e2014-03-04 11:00:27 +08001522int cpufreq_generic_suspend(struct cpufreq_policy *policy)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001523{
Viresh Kumare28867e2014-03-04 11:00:27 +08001524 int ret;
Dave Jones4bc5d342009-08-04 14:03:25 -04001525
Viresh Kumare28867e2014-03-04 11:00:27 +08001526 if (!policy->suspend_freq) {
Bartlomiej Zolnierkiewicz201f3712015-09-08 18:41:02 +02001527 pr_debug("%s: suspend_freq not defined\n", __func__);
1528 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001529 }
1530
Viresh Kumare28867e2014-03-04 11:00:27 +08001531 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1532 policy->suspend_freq);
1533
1534 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1535 CPUFREQ_RELATION_H);
1536 if (ret)
1537 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1538 __func__, policy->suspend_freq, ret);
1539
Dave Jonesc9060492008-02-07 16:32:18 -05001540 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001541}
Viresh Kumare28867e2014-03-04 11:00:27 +08001542EXPORT_SYMBOL(cpufreq_generic_suspend);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001543
1544/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001545 * cpufreq_suspend() - Suspend CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001547 * Called during system wide Suspend/Hibernate cycles for suspending governors
1548 * as some platforms can't change frequency after this point in suspend cycle.
1549 * Because some of the devices (like: i2c, regulators, etc) they use for
1550 * changing frequency are suspended quickly after this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001552void cpufreq_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301554 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301555 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001557 if (!cpufreq_driver)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001558 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001560 if (!has_target())
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301561 goto suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001563 pr_debug("%s: Suspending Governors\n", __func__);
1564
Viresh Kumarf9637352015-05-12 12:20:11 +05301565 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301566 down_write(&policy->rwsem);
Viresh Kumara1317e02016-02-22 16:36:43 +05301567 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar49f18562016-02-11 17:31:12 +05301568 up_write(&policy->rwsem);
1569
1570 if (ret)
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001571 pr_err("%s: Failed to stop governor for policy: %p\n",
1572 __func__, policy);
1573 else if (cpufreq_driver->suspend
1574 && cpufreq_driver->suspend(policy))
1575 pr_err("%s: Failed to suspend driver: %p\n", __func__,
1576 policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 }
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301578
1579suspend:
1580 cpufreq_suspended = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001584 * cpufreq_resume() - Resume CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001586 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1587 * are suspended with cpufreq_suspend().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001589void cpufreq_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301592 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001594 if (!cpufreq_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 return;
1596
Lan Tianyu8e304442014-09-18 15:03:07 +08001597 cpufreq_suspended = false;
1598
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001599 if (!has_target())
1600 return;
1601
1602 pr_debug("%s: Resuming Governors\n", __func__);
1603
Viresh Kumarf9637352015-05-12 12:20:11 +05301604 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301605 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
Viresh Kumar0c5aa402014-03-24 12:30:29 +05301606 pr_err("%s: Failed to resume driver: %p\n", __func__,
1607 policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301608 } else {
1609 down_write(&policy->rwsem);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001610 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301611 up_write(&policy->rwsem);
1612
1613 if (ret)
1614 pr_err("%s: Failed to start governor for policy: %p\n",
1615 __func__, policy);
1616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Borislav Petkov9d950462013-01-20 10:24:28 +00001620/**
1621 * cpufreq_get_current_driver - return current driver's name
1622 *
1623 * Return the name string of the currently loaded cpufreq driver
1624 * or NULL, if none.
1625 */
1626const char *cpufreq_get_current_driver(void)
1627{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001628 if (cpufreq_driver)
1629 return cpufreq_driver->name;
1630
1631 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001632}
1633EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Thomas Petazzoni51315cd2014-10-19 11:30:27 +02001635/**
1636 * cpufreq_get_driver_data - return current driver data
1637 *
1638 * Return the private data of the currently loaded cpufreq
1639 * driver, or NULL if no cpufreq driver is loaded.
1640 */
1641void *cpufreq_get_driver_data(void)
1642{
1643 if (cpufreq_driver)
1644 return cpufreq_driver->driver_data;
1645
1646 return NULL;
1647}
1648EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650/*********************************************************************
1651 * NOTIFIER LISTS INTERFACE *
1652 *********************************************************************/
1653
1654/**
1655 * cpufreq_register_notifier - register a driver with cpufreq
1656 * @nb: notifier function to register
1657 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1658 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001659 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 * are notified about clock rate changes (once before and once after
1661 * the transition), or a list of drivers that are notified about
1662 * changes in cpufreq policy.
1663 *
1664 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001665 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 */
1667int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1668{
1669 int ret;
1670
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001671 if (cpufreq_disabled())
1672 return -EINVAL;
1673
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001674 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 switch (list) {
1677 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001678 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001679 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 break;
1681 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001682 ret = blocking_notifier_chain_register(
1683 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 break;
1685 default:
1686 ret = -EINVAL;
1687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 return ret;
1690}
1691EXPORT_SYMBOL(cpufreq_register_notifier);
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693/**
1694 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1695 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301696 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 *
1698 * Remove a driver from the CPU frequency notifier list.
1699 *
1700 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001701 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 */
1703int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1704{
1705 int ret;
1706
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001707 if (cpufreq_disabled())
1708 return -EINVAL;
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 switch (list) {
1711 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001712 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001713 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 break;
1715 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001716 ret = blocking_notifier_chain_unregister(
1717 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 break;
1719 default:
1720 ret = -EINVAL;
1721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 return ret;
1724}
1725EXPORT_SYMBOL(cpufreq_unregister_notifier);
1726
1727
1728/*********************************************************************
1729 * GOVERNORS *
1730 *********************************************************************/
1731
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301732/* Must set freqs->new to intermediate frequency */
1733static int __target_intermediate(struct cpufreq_policy *policy,
1734 struct cpufreq_freqs *freqs, int index)
1735{
1736 int ret;
1737
1738 freqs->new = cpufreq_driver->get_intermediate(policy, index);
1739
1740 /* We don't need to switch to intermediate freq */
1741 if (!freqs->new)
1742 return 0;
1743
1744 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
1745 __func__, policy->cpu, freqs->old, freqs->new);
1746
1747 cpufreq_freq_transition_begin(policy, freqs);
1748 ret = cpufreq_driver->target_intermediate(policy, index);
1749 cpufreq_freq_transition_end(policy, freqs, ret);
1750
1751 if (ret)
1752 pr_err("%s: Failed to change to intermediate frequency: %d\n",
1753 __func__, ret);
1754
1755 return ret;
1756}
1757
Viresh Kumar8d657752014-05-21 14:29:29 +05301758static int __target_index(struct cpufreq_policy *policy,
1759 struct cpufreq_frequency_table *freq_table, int index)
1760{
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301761 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
1762 unsigned int intermediate_freq = 0;
Viresh Kumar8d657752014-05-21 14:29:29 +05301763 int retval = -EINVAL;
1764 bool notify;
1765
1766 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
Viresh Kumar8d657752014-05-21 14:29:29 +05301767 if (notify) {
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301768 /* Handle switching to intermediate frequency */
1769 if (cpufreq_driver->get_intermediate) {
1770 retval = __target_intermediate(policy, &freqs, index);
1771 if (retval)
1772 return retval;
Viresh Kumar8d657752014-05-21 14:29:29 +05301773
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301774 intermediate_freq = freqs.new;
1775 /* Set old freq to intermediate */
1776 if (intermediate_freq)
1777 freqs.old = freqs.new;
1778 }
1779
1780 freqs.new = freq_table[index].frequency;
Viresh Kumar8d657752014-05-21 14:29:29 +05301781 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1782 __func__, policy->cpu, freqs.old, freqs.new);
1783
1784 cpufreq_freq_transition_begin(policy, &freqs);
1785 }
1786
1787 retval = cpufreq_driver->target_index(policy, index);
1788 if (retval)
1789 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
1790 retval);
1791
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301792 if (notify) {
Viresh Kumar8d657752014-05-21 14:29:29 +05301793 cpufreq_freq_transition_end(policy, &freqs, retval);
1794
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301795 /*
1796 * Failed after setting to intermediate freq? Driver should have
1797 * reverted back to initial frequency and so should we. Check
1798 * here for intermediate_freq instead of get_intermediate, in
Shailendra Verma58405af2015-05-22 22:48:22 +05301799 * case we haven't switched to intermediate freq at all.
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301800 */
1801 if (unlikely(retval && intermediate_freq)) {
1802 freqs.old = intermediate_freq;
1803 freqs.new = policy->restore_freq;
1804 cpufreq_freq_transition_begin(policy, &freqs);
1805 cpufreq_freq_transition_end(policy, &freqs, 0);
1806 }
1807 }
1808
Viresh Kumar8d657752014-05-21 14:29:29 +05301809 return retval;
1810}
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812int __cpufreq_driver_target(struct cpufreq_policy *policy,
1813 unsigned int target_freq,
1814 unsigned int relation)
1815{
Viresh Kumar72499242012-10-31 01:28:21 +01001816 unsigned int old_target_freq = target_freq;
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001817 struct cpufreq_frequency_table *freq_table;
1818 int index, retval;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001819
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001820 if (cpufreq_disabled())
1821 return -ENODEV;
1822
Viresh Kumar72499242012-10-31 01:28:21 +01001823 /* Make sure that target_freq is within supported range */
1824 if (target_freq > policy->max)
1825 target_freq = policy->max;
1826 if (target_freq < policy->min)
1827 target_freq = policy->min;
1828
1829 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07001830 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001831
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301832 /*
1833 * This might look like a redundant call as we are checking it again
1834 * after finding index. But it is left intentionally for cases where
1835 * exactly same freq is called again and so we can save on few function
1836 * calls.
1837 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001838 if (target_freq == policy->cur)
1839 return 0;
1840
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301841 /* Save last value to restore later on errors */
1842 policy->restore_freq = policy->cur;
1843
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001844 if (cpufreq_driver->target)
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001845 return cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001846
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001847 if (!cpufreq_driver->target_index)
1848 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301849
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001850 freq_table = cpufreq_frequency_get_table(policy->cpu);
1851 if (unlikely(!freq_table)) {
1852 pr_err("%s: Unable to find freq_table\n", __func__);
1853 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301854 }
1855
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001856 retval = cpufreq_frequency_table_target(policy, freq_table, target_freq,
1857 relation, &index);
1858 if (unlikely(retval)) {
1859 pr_err("%s: Unable to find matching freq\n", __func__);
1860 return retval;
1861 }
1862
1863 if (freq_table[index].frequency == policy->cur)
1864 return 0;
1865
1866 return __target_index(policy, freq_table, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867}
1868EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870int cpufreq_driver_target(struct cpufreq_policy *policy,
1871 unsigned int target_freq,
1872 unsigned int relation)
1873{
Julia Lawallf1829e42008-07-25 22:44:53 +02001874 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
viresh kumarad7722d2013-10-18 19:10:15 +05301876 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 ret = __cpufreq_driver_target(policy, target_freq, relation);
1879
viresh kumarad7722d2013-10-18 19:10:15 +05301880 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 return ret;
1883}
1884EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1885
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001886__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
1887{
1888 return NULL;
1889}
1890
Viresh Kumara1317e02016-02-22 16:36:43 +05301891static int cpufreq_governor(struct cpufreq_policy *policy, unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Dave Jonescc993ca2005-07-28 09:43:56 -07001893 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001894
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001895 /* Don't start any governor operations if we are entering suspend */
1896 if (cpufreq_suspended)
1897 return 0;
Ethan Zhaocb577202014-12-18 15:28:19 +09001898 /*
1899 * Governor might not be initiated here if ACPI _PPC changed
1900 * notification happened, so check it.
1901 */
1902 if (!policy->governor)
1903 return -EINVAL;
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001904
Thomas Renninger1c256242007-10-02 13:28:12 -07001905 if (policy->governor->max_transition_latency &&
1906 policy->cpuinfo.transition_latency >
1907 policy->governor->max_transition_latency) {
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001908 struct cpufreq_governor *gov = cpufreq_fallback_governor();
1909
1910 if (gov) {
Joe Perchese837f9b2014-03-11 10:03:00 -07001911 pr_warn("%s governor failed, too long transition latency of HW, fallback to %s governor\n",
1912 policy->governor->name, gov->name);
Thomas Renninger6afde102007-10-02 13:28:13 -07001913 policy->governor = gov;
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001914 } else {
1915 return -EINVAL;
Thomas Renninger6afde102007-10-02 13:28:13 -07001916 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Viresh Kumarfe492f32013-08-06 22:53:10 +05301919 if (event == CPUFREQ_GOV_POLICY_INIT)
1920 if (!try_module_get(policy->governor->owner))
1921 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Viresh Kumar63431f72015-07-27 17:58:06 +05301923 pr_debug("%s: for CPU %u, event %u\n", __func__, policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 ret = policy->governor->governor(policy, event);
1926
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001927 if (!ret) {
1928 if (event == CPUFREQ_GOV_POLICY_INIT)
1929 policy->governor->initialized++;
1930 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1931 policy->governor->initialized--;
1932 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001933
Viresh Kumarfe492f32013-08-06 22:53:10 +05301934 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1935 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 module_put(policy->governor->owner);
1937
1938 return ret;
1939}
1940
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001941static int cpufreq_start_governor(struct cpufreq_policy *policy)
1942{
1943 int ret;
1944
Rafael J. Wysocki3bbf8fe2016-03-21 15:47:48 +01001945 if (cpufreq_driver->get && !cpufreq_driver->setpolicy)
1946 cpufreq_update_current_freq(policy);
1947
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001948 ret = cpufreq_governor(policy, CPUFREQ_GOV_START);
1949 return ret ? ret : cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
1950}
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952int cpufreq_register_governor(struct cpufreq_governor *governor)
1953{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001954 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
1956 if (!governor)
1957 return -EINVAL;
1958
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001959 if (cpufreq_disabled())
1960 return -ENODEV;
1961
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001962 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001963
Viresh Kumarb3940582013-02-01 05:42:58 +00001964 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001965 err = -EBUSY;
Viresh Kumar42f91fa2015-01-02 12:34:26 +05301966 if (!find_governor(governor->name)) {
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001967 err = 0;
1968 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Dave Jones32ee8c32006-02-28 00:43:23 -05001971 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001972 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973}
1974EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1977{
Viresh Kumar45732372015-05-12 12:22:34 +05301978 struct cpufreq_policy *policy;
1979 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001980
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 if (!governor)
1982 return;
1983
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001984 if (cpufreq_disabled())
1985 return;
1986
Viresh Kumar45732372015-05-12 12:22:34 +05301987 /* clear last_governor for all inactive policies */
1988 read_lock_irqsave(&cpufreq_driver_lock, flags);
1989 for_each_inactive_policy(policy) {
Viresh Kumar18bf3a12015-05-12 12:22:51 +05301990 if (!strcmp(policy->last_governor, governor->name)) {
1991 policy->governor = NULL;
Viresh Kumar45732372015-05-12 12:22:34 +05301992 strcpy(policy->last_governor, "\0");
Viresh Kumar18bf3a12015-05-12 12:22:51 +05301993 }
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001994 }
Viresh Kumar45732372015-05-12 12:22:34 +05301995 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001996
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001997 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001999 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return;
2001}
2002EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
2003
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005/*********************************************************************
2006 * POLICY INTERFACE *
2007 *********************************************************************/
2008
2009/**
2010 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05002011 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2012 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 *
2014 * Reads the current cpufreq policy.
2015 */
2016int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2017{
2018 struct cpufreq_policy *cpu_policy;
2019 if (!policy)
2020 return -EINVAL;
2021
2022 cpu_policy = cpufreq_cpu_get(cpu);
2023 if (!cpu_policy)
2024 return -EINVAL;
2025
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302026 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return 0;
2030}
2031EXPORT_SYMBOL(cpufreq_get_policy);
2032
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002033/*
Viresh Kumar037ce832013-10-02 14:13:16 +05302034 * policy : current policy.
2035 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002036 */
Viresh Kumar037ce832013-10-02 14:13:16 +05302037static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302038 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002040 struct cpufreq_governor *old_gov;
2041 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
Joe Perchese837f9b2014-03-11 10:03:00 -07002043 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2044 new_policy->cpu, new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302046 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Pan Xinhuifba95732015-07-30 18:10:40 +08002048 /*
2049 * This check works well when we store new min/max freq attributes,
2050 * because new_policy is a copy of policy with one field updated.
2051 */
2052 if (new_policy->min > new_policy->max)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002053 return -EINVAL;
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02002054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302056 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002058 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08002061 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302062 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
Viresh Kumarbb176f72013-06-19 14:19:33 +05302064 /*
2065 * verify the cpu speed can be set within this limit, which might be
2066 * different to the first one
2067 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302068 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08002069 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002070 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08002073 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302074 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302076 policy->min = new_policy->min;
2077 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002079 pr_debug("new min and max freqs are %u - %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002080 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002082 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302083 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002084 pr_debug("setting range\n");
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002085 return cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 }
2087
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002088 if (new_policy->governor == policy->governor) {
2089 pr_debug("cpufreq: governor limits update\n");
2090 return cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
2091 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002092
2093 pr_debug("governor switch\n");
2094
2095 /* save old, working values */
2096 old_gov = policy->governor;
2097 /* end old governor */
2098 if (old_gov) {
Viresh Kumara1317e02016-02-22 16:36:43 +05302099 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302100 if (ret) {
2101 /* This can happen due to race with other operations */
2102 pr_debug("%s: Failed to Stop Governor: %s (%d)\n",
2103 __func__, old_gov->name, ret);
2104 return ret;
2105 }
2106
Viresh Kumara1317e02016-02-22 16:36:43 +05302107 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302108 if (ret) {
2109 pr_err("%s: Failed to Exit Governor: %s (%d)\n",
2110 __func__, old_gov->name, ret);
2111 return ret;
2112 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002113 }
2114
2115 /* start new governor */
2116 policy->governor = new_policy->governor;
Viresh Kumara1317e02016-02-22 16:36:43 +05302117 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302118 if (!ret) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002119 ret = cpufreq_start_governor(policy);
2120 if (!ret) {
2121 pr_debug("cpufreq: governor change\n");
2122 return 0;
2123 }
Viresh Kumara1317e02016-02-22 16:36:43 +05302124 cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002125 }
2126
2127 /* new governor failed, so re-start old one */
2128 pr_debug("starting governor %s failed\n", policy->governor->name);
2129 if (old_gov) {
2130 policy->governor = old_gov;
Viresh Kumara1317e02016-02-22 16:36:43 +05302131 if (cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT))
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302132 policy->governor = NULL;
2133 else
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002134 cpufreq_start_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002135 }
2136
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302137 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
2139
2140/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2142 * @cpu: CPU which shall be re-evaluated
2143 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002144 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 * at different times.
2146 */
2147int cpufreq_update_policy(unsigned int cpu)
2148{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302149 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2150 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02002151 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002153 if (!policy)
2154 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
viresh kumarad7722d2013-10-18 19:10:15 +05302156 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002158 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302159 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302160 new_policy.min = policy->user_policy.min;
2161 new_policy.max = policy->user_policy.max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Viresh Kumarbb176f72013-06-19 14:19:33 +05302163 /*
2164 * BIOS might change freq behind our back
2165 * -> ask driver for current freq and notify governors about a change
2166 */
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01002167 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Rafael J. Wysocki999f5722016-03-21 15:46:25 +01002168 new_policy.cur = cpufreq_update_current_freq(policy);
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302169 if (WARN_ON(!new_policy.cur)) {
2170 ret = -EIO;
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002171 goto unlock;
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302172 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002173 }
2174
Viresh Kumar037ce832013-10-02 14:13:16 +05302175 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002177unlock:
viresh kumarad7722d2013-10-18 19:10:15 +05302178 up_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002179
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302180 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 return ret;
2182}
2183EXPORT_SYMBOL(cpufreq_update_policy);
2184
Paul Gortmaker27609842013-06-19 13:54:04 -04002185static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002186 unsigned long action, void *hcpu)
2187{
2188 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002189
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002190 switch (action & ~CPU_TASKS_FROZEN) {
2191 case CPU_ONLINE:
2192 cpufreq_online(cpu);
2193 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302194
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002195 case CPU_DOWN_PREPARE:
Viresh Kumar69cee712016-02-11 17:31:11 +05302196 cpufreq_offline(cpu);
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002197 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302198
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002199 case CPU_DOWN_FAILED:
2200 cpufreq_online(cpu);
2201 break;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002202 }
2203 return NOTIFY_OK;
2204}
2205
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002206static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302207 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002208};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210/*********************************************************************
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002211 * BOOST *
2212 *********************************************************************/
2213static int cpufreq_boost_set_sw(int state)
2214{
2215 struct cpufreq_frequency_table *freq_table;
2216 struct cpufreq_policy *policy;
2217 int ret = -EINVAL;
2218
Viresh Kumarf9637352015-05-12 12:20:11 +05302219 for_each_active_policy(policy) {
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002220 freq_table = cpufreq_frequency_get_table(policy->cpu);
2221 if (freq_table) {
2222 ret = cpufreq_frequency_table_cpuinfo(policy,
2223 freq_table);
2224 if (ret) {
2225 pr_err("%s: Policy frequency update failed\n",
2226 __func__);
2227 break;
2228 }
Viresh Kumar49f18562016-02-11 17:31:12 +05302229
2230 down_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002231 policy->user_policy.max = policy->max;
Viresh Kumara1317e02016-02-22 16:36:43 +05302232 cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Viresh Kumar49f18562016-02-11 17:31:12 +05302233 up_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002234 }
2235 }
2236
2237 return ret;
2238}
2239
2240int cpufreq_boost_trigger_state(int state)
2241{
2242 unsigned long flags;
2243 int ret = 0;
2244
2245 if (cpufreq_driver->boost_enabled == state)
2246 return 0;
2247
2248 write_lock_irqsave(&cpufreq_driver_lock, flags);
2249 cpufreq_driver->boost_enabled = state;
2250 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2251
2252 ret = cpufreq_driver->set_boost(state);
2253 if (ret) {
2254 write_lock_irqsave(&cpufreq_driver_lock, flags);
2255 cpufreq_driver->boost_enabled = !state;
2256 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2257
Joe Perchese837f9b2014-03-11 10:03:00 -07002258 pr_err("%s: Cannot %s BOOST\n",
2259 __func__, state ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002260 }
2261
2262 return ret;
2263}
2264
Rafael J. Wysocki41669da2015-12-27 00:23:48 +01002265static bool cpufreq_boost_supported(void)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002266{
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002267 return likely(cpufreq_driver) && cpufreq_driver->set_boost;
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002268}
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002269
Viresh Kumar44139ed2015-07-29 16:23:09 +05302270static int create_boost_sysfs_file(void)
2271{
2272 int ret;
2273
Viresh Kumarc82bd442015-10-15 21:35:23 +05302274 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302275 if (ret)
2276 pr_err("%s: cannot register global BOOST sysfs file\n",
2277 __func__);
2278
2279 return ret;
2280}
2281
2282static void remove_boost_sysfs_file(void)
2283{
2284 if (cpufreq_boost_supported())
Viresh Kumarc82bd442015-10-15 21:35:23 +05302285 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302286}
2287
2288int cpufreq_enable_boost_support(void)
2289{
2290 if (!cpufreq_driver)
2291 return -EINVAL;
2292
2293 if (cpufreq_boost_supported())
2294 return 0;
2295
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002296 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
Viresh Kumar44139ed2015-07-29 16:23:09 +05302297
2298 /* This will get removed on driver unregister */
2299 return create_boost_sysfs_file();
2300}
2301EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2302
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002303int cpufreq_boost_enabled(void)
2304{
2305 return cpufreq_driver->boost_enabled;
2306}
2307EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2308
2309/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2311 *********************************************************************/
2312
2313/**
2314 * cpufreq_register_driver - register a CPU Frequency driver
2315 * @driver_data: A struct cpufreq_driver containing the values#
2316 * submitted by the CPU Frequency driver.
2317 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302318 * Registers a CPU Frequency driver to this core code. This code
Eric Biggers63af4052016-02-20 21:50:01 -06002319 * returns zero on success, -EEXIST when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002320 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 *
2322 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002323int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
2325 unsigned long flags;
2326 int ret;
2327
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002328 if (cpufreq_disabled())
2329 return -ENODEV;
2330
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302332 !(driver_data->setpolicy || driver_data->target_index ||
Rafael J. Wysocki98322352014-03-19 12:48:30 +01002333 driver_data->target) ||
2334 (driver_data->setpolicy && (driver_data->target_index ||
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302335 driver_data->target)) ||
2336 (!!driver_data->get_intermediate != !!driver_data->target_intermediate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return -EINVAL;
2338
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002339 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002341 /* Protect against concurrent CPU online/offline. */
2342 get_online_cpus();
2343
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002344 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002345 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002346 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002347 ret = -EEXIST;
2348 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002350 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002351 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Viresh Kumarbc68b7d2015-01-02 12:34:30 +05302353 if (driver_data->setpolicy)
2354 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2355
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002356 if (cpufreq_boost_supported()) {
2357 ret = create_boost_sysfs_file();
2358 if (ret)
2359 goto err_null_driver;
2360 }
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002361
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002362 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002363 if (ret)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002364 goto err_boost_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302366 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2367 list_empty(&cpufreq_policy_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 /* if all ->init() calls failed, unregister */
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302369 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2370 driver_data->name);
2371 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 }
2373
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002374 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002375 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002377out:
2378 put_online_cpus();
2379 return ret;
2380
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002381err_if_unreg:
2382 subsys_interface_unregister(&cpufreq_interface);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002383err_boost_unreg:
Viresh Kumar44139ed2015-07-29 16:23:09 +05302384 remove_boost_sysfs_file();
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002385err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002386 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002387 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002388 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002389 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390}
2391EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393/**
2394 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2395 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302396 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 * the right to do so, i.e. if you have succeeded in initialising before!
2398 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2399 * currently not initialised.
2400 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002401int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
2403 unsigned long flags;
2404
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002405 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002408 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002410 /* Protect against concurrent cpu hotplug */
2411 get_online_cpus();
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002412 subsys_interface_unregister(&cpufreq_interface);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302413 remove_boost_sysfs_file();
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002414 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002416 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302417
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002418 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302419
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002420 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002421 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 return 0;
2424}
2425EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002426
Doug Anderson90de2a42014-12-23 22:09:48 -08002427/*
2428 * Stop cpufreq at shutdown to make sure it isn't holding any locks
2429 * or mutexes when secondary CPUs are halted.
2430 */
2431static struct syscore_ops cpufreq_syscore_ops = {
2432 .shutdown = cpufreq_suspend,
2433};
2434
Viresh Kumarc82bd442015-10-15 21:35:23 +05302435struct kobject *cpufreq_global_kobject;
2436EXPORT_SYMBOL(cpufreq_global_kobject);
2437
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002438static int __init cpufreq_core_init(void)
2439{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002440 if (cpufreq_disabled())
2441 return -ENODEV;
2442
Viresh Kumar8eec1022015-10-15 21:35:22 +05302443 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002444 BUG_ON(!cpufreq_global_kobject);
2445
Doug Anderson90de2a42014-12-23 22:09:48 -08002446 register_syscore_ops(&cpufreq_syscore_ops);
2447
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002448 return 0;
2449}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002450core_initcall(cpufreq_core_init);