blob: 43f3912a2ac801d0007c7be2be3fb8b017ae5517 [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
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001490static struct subsys_interface cpufreq_interface = {
1491 .name = "cpufreq",
1492 .subsys = &cpu_subsys,
1493 .add_dev = cpufreq_add_dev,
1494 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001495};
1496
Viresh Kumare28867e2014-03-04 11:00:27 +08001497/*
1498 * In case platform wants some specific frequency to be configured
1499 * during suspend..
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001500 */
Viresh Kumare28867e2014-03-04 11:00:27 +08001501int cpufreq_generic_suspend(struct cpufreq_policy *policy)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001502{
Viresh Kumare28867e2014-03-04 11:00:27 +08001503 int ret;
Dave Jones4bc5d342009-08-04 14:03:25 -04001504
Viresh Kumare28867e2014-03-04 11:00:27 +08001505 if (!policy->suspend_freq) {
Bartlomiej Zolnierkiewicz201f3712015-09-08 18:41:02 +02001506 pr_debug("%s: suspend_freq not defined\n", __func__);
1507 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001508 }
1509
Viresh Kumare28867e2014-03-04 11:00:27 +08001510 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1511 policy->suspend_freq);
1512
1513 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1514 CPUFREQ_RELATION_H);
1515 if (ret)
1516 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1517 __func__, policy->suspend_freq, ret);
1518
Dave Jonesc9060492008-02-07 16:32:18 -05001519 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001520}
Viresh Kumare28867e2014-03-04 11:00:27 +08001521EXPORT_SYMBOL(cpufreq_generic_suspend);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001522
1523/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001524 * cpufreq_suspend() - Suspend CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001526 * Called during system wide Suspend/Hibernate cycles for suspending governors
1527 * as some platforms can't change frequency after this point in suspend cycle.
1528 * Because some of the devices (like: i2c, regulators, etc) they use for
1529 * changing frequency are suspended quickly after this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001531void cpufreq_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301533 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301534 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001536 if (!cpufreq_driver)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001537 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001539 if (!has_target())
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301540 goto suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001542 pr_debug("%s: Suspending Governors\n", __func__);
1543
Viresh Kumarf9637352015-05-12 12:20:11 +05301544 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301545 down_write(&policy->rwsem);
Viresh Kumara1317e02016-02-22 16:36:43 +05301546 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar49f18562016-02-11 17:31:12 +05301547 up_write(&policy->rwsem);
1548
1549 if (ret)
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001550 pr_err("%s: Failed to stop governor for policy: %p\n",
1551 __func__, policy);
1552 else if (cpufreq_driver->suspend
1553 && cpufreq_driver->suspend(policy))
1554 pr_err("%s: Failed to suspend driver: %p\n", __func__,
1555 policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301557
1558suspend:
1559 cpufreq_suspended = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001563 * cpufreq_resume() - Resume CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001565 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1566 * are suspended with cpufreq_suspend().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001568void cpufreq_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301571 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001573 if (!cpufreq_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 return;
1575
Lan Tianyu8e304442014-09-18 15:03:07 +08001576 cpufreq_suspended = false;
1577
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001578 if (!has_target())
1579 return;
1580
1581 pr_debug("%s: Resuming Governors\n", __func__);
1582
Viresh Kumarf9637352015-05-12 12:20:11 +05301583 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301584 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
Viresh Kumar0c5aa402014-03-24 12:30:29 +05301585 pr_err("%s: Failed to resume driver: %p\n", __func__,
1586 policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301587 } else {
1588 down_write(&policy->rwsem);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001589 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301590 up_write(&policy->rwsem);
1591
1592 if (ret)
1593 pr_err("%s: Failed to start governor for policy: %p\n",
1594 __func__, policy);
1595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
Viresh Kumarc75de0a2015-04-02 10:21:33 +05301597
1598 /*
1599 * schedule call cpufreq_update_policy() for first-online CPU, as that
1600 * wouldn't be hotplugged-out on suspend. It will verify that the
1601 * current freq is in sync with what we believe it to be.
1602 */
1603 policy = cpufreq_cpu_get_raw(cpumask_first(cpu_online_mask));
1604 if (WARN_ON(!policy))
1605 return;
1606
1607 schedule_work(&policy->update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Borislav Petkov9d950462013-01-20 10:24:28 +00001610/**
1611 * cpufreq_get_current_driver - return current driver's name
1612 *
1613 * Return the name string of the currently loaded cpufreq driver
1614 * or NULL, if none.
1615 */
1616const char *cpufreq_get_current_driver(void)
1617{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001618 if (cpufreq_driver)
1619 return cpufreq_driver->name;
1620
1621 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001622}
1623EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
Thomas Petazzoni51315cd2014-10-19 11:30:27 +02001625/**
1626 * cpufreq_get_driver_data - return current driver data
1627 *
1628 * Return the private data of the currently loaded cpufreq
1629 * driver, or NULL if no cpufreq driver is loaded.
1630 */
1631void *cpufreq_get_driver_data(void)
1632{
1633 if (cpufreq_driver)
1634 return cpufreq_driver->driver_data;
1635
1636 return NULL;
1637}
1638EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640/*********************************************************************
1641 * NOTIFIER LISTS INTERFACE *
1642 *********************************************************************/
1643
1644/**
1645 * cpufreq_register_notifier - register a driver with cpufreq
1646 * @nb: notifier function to register
1647 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1648 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001649 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 * are notified about clock rate changes (once before and once after
1651 * the transition), or a list of drivers that are notified about
1652 * changes in cpufreq policy.
1653 *
1654 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001655 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 */
1657int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1658{
1659 int ret;
1660
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001661 if (cpufreq_disabled())
1662 return -EINVAL;
1663
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001664 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 switch (list) {
1667 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001668 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001669 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 break;
1671 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001672 ret = blocking_notifier_chain_register(
1673 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 break;
1675 default:
1676 ret = -EINVAL;
1677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 return ret;
1680}
1681EXPORT_SYMBOL(cpufreq_register_notifier);
1682
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683/**
1684 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1685 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301686 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 *
1688 * Remove a driver from the CPU frequency notifier list.
1689 *
1690 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001691 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 */
1693int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1694{
1695 int ret;
1696
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001697 if (cpufreq_disabled())
1698 return -EINVAL;
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 switch (list) {
1701 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001702 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001703 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 break;
1705 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001706 ret = blocking_notifier_chain_unregister(
1707 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 break;
1709 default:
1710 ret = -EINVAL;
1711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 return ret;
1714}
1715EXPORT_SYMBOL(cpufreq_unregister_notifier);
1716
1717
1718/*********************************************************************
1719 * GOVERNORS *
1720 *********************************************************************/
1721
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301722/* Must set freqs->new to intermediate frequency */
1723static int __target_intermediate(struct cpufreq_policy *policy,
1724 struct cpufreq_freqs *freqs, int index)
1725{
1726 int ret;
1727
1728 freqs->new = cpufreq_driver->get_intermediate(policy, index);
1729
1730 /* We don't need to switch to intermediate freq */
1731 if (!freqs->new)
1732 return 0;
1733
1734 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
1735 __func__, policy->cpu, freqs->old, freqs->new);
1736
1737 cpufreq_freq_transition_begin(policy, freqs);
1738 ret = cpufreq_driver->target_intermediate(policy, index);
1739 cpufreq_freq_transition_end(policy, freqs, ret);
1740
1741 if (ret)
1742 pr_err("%s: Failed to change to intermediate frequency: %d\n",
1743 __func__, ret);
1744
1745 return ret;
1746}
1747
Viresh Kumar8d657752014-05-21 14:29:29 +05301748static int __target_index(struct cpufreq_policy *policy,
1749 struct cpufreq_frequency_table *freq_table, int index)
1750{
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301751 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
1752 unsigned int intermediate_freq = 0;
Viresh Kumar8d657752014-05-21 14:29:29 +05301753 int retval = -EINVAL;
1754 bool notify;
1755
1756 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
Viresh Kumar8d657752014-05-21 14:29:29 +05301757 if (notify) {
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301758 /* Handle switching to intermediate frequency */
1759 if (cpufreq_driver->get_intermediate) {
1760 retval = __target_intermediate(policy, &freqs, index);
1761 if (retval)
1762 return retval;
Viresh Kumar8d657752014-05-21 14:29:29 +05301763
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301764 intermediate_freq = freqs.new;
1765 /* Set old freq to intermediate */
1766 if (intermediate_freq)
1767 freqs.old = freqs.new;
1768 }
1769
1770 freqs.new = freq_table[index].frequency;
Viresh Kumar8d657752014-05-21 14:29:29 +05301771 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1772 __func__, policy->cpu, freqs.old, freqs.new);
1773
1774 cpufreq_freq_transition_begin(policy, &freqs);
1775 }
1776
1777 retval = cpufreq_driver->target_index(policy, index);
1778 if (retval)
1779 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
1780 retval);
1781
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301782 if (notify) {
Viresh Kumar8d657752014-05-21 14:29:29 +05301783 cpufreq_freq_transition_end(policy, &freqs, retval);
1784
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301785 /*
1786 * Failed after setting to intermediate freq? Driver should have
1787 * reverted back to initial frequency and so should we. Check
1788 * here for intermediate_freq instead of get_intermediate, in
Shailendra Verma58405af2015-05-22 22:48:22 +05301789 * case we haven't switched to intermediate freq at all.
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301790 */
1791 if (unlikely(retval && intermediate_freq)) {
1792 freqs.old = intermediate_freq;
1793 freqs.new = policy->restore_freq;
1794 cpufreq_freq_transition_begin(policy, &freqs);
1795 cpufreq_freq_transition_end(policy, &freqs, 0);
1796 }
1797 }
1798
Viresh Kumar8d657752014-05-21 14:29:29 +05301799 return retval;
1800}
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802int __cpufreq_driver_target(struct cpufreq_policy *policy,
1803 unsigned int target_freq,
1804 unsigned int relation)
1805{
Viresh Kumar72499242012-10-31 01:28:21 +01001806 unsigned int old_target_freq = target_freq;
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001807 struct cpufreq_frequency_table *freq_table;
1808 int index, retval;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001809
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001810 if (cpufreq_disabled())
1811 return -ENODEV;
1812
Viresh Kumar72499242012-10-31 01:28:21 +01001813 /* Make sure that target_freq is within supported range */
1814 if (target_freq > policy->max)
1815 target_freq = policy->max;
1816 if (target_freq < policy->min)
1817 target_freq = policy->min;
1818
1819 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07001820 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001821
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301822 /*
1823 * This might look like a redundant call as we are checking it again
1824 * after finding index. But it is left intentionally for cases where
1825 * exactly same freq is called again and so we can save on few function
1826 * calls.
1827 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001828 if (target_freq == policy->cur)
1829 return 0;
1830
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301831 /* Save last value to restore later on errors */
1832 policy->restore_freq = policy->cur;
1833
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001834 if (cpufreq_driver->target)
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001835 return cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001836
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001837 if (!cpufreq_driver->target_index)
1838 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301839
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001840 freq_table = cpufreq_frequency_get_table(policy->cpu);
1841 if (unlikely(!freq_table)) {
1842 pr_err("%s: Unable to find freq_table\n", __func__);
1843 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301844 }
1845
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001846 retval = cpufreq_frequency_table_target(policy, freq_table, target_freq,
1847 relation, &index);
1848 if (unlikely(retval)) {
1849 pr_err("%s: Unable to find matching freq\n", __func__);
1850 return retval;
1851 }
1852
1853 if (freq_table[index].frequency == policy->cur)
1854 return 0;
1855
1856 return __target_index(policy, freq_table, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860int cpufreq_driver_target(struct cpufreq_policy *policy,
1861 unsigned int target_freq,
1862 unsigned int relation)
1863{
Julia Lawallf1829e42008-07-25 22:44:53 +02001864 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
viresh kumarad7722d2013-10-18 19:10:15 +05301866 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 ret = __cpufreq_driver_target(policy, target_freq, relation);
1869
viresh kumarad7722d2013-10-18 19:10:15 +05301870 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return ret;
1873}
1874EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1875
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001876__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
1877{
1878 return NULL;
1879}
1880
Viresh Kumara1317e02016-02-22 16:36:43 +05301881static int cpufreq_governor(struct cpufreq_policy *policy, unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
Dave Jonescc993ca2005-07-28 09:43:56 -07001883 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001884
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001885 /* Don't start any governor operations if we are entering suspend */
1886 if (cpufreq_suspended)
1887 return 0;
Ethan Zhaocb577202014-12-18 15:28:19 +09001888 /*
1889 * Governor might not be initiated here if ACPI _PPC changed
1890 * notification happened, so check it.
1891 */
1892 if (!policy->governor)
1893 return -EINVAL;
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001894
Thomas Renninger1c256242007-10-02 13:28:12 -07001895 if (policy->governor->max_transition_latency &&
1896 policy->cpuinfo.transition_latency >
1897 policy->governor->max_transition_latency) {
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001898 struct cpufreq_governor *gov = cpufreq_fallback_governor();
1899
1900 if (gov) {
Joe Perchese837f9b2014-03-11 10:03:00 -07001901 pr_warn("%s governor failed, too long transition latency of HW, fallback to %s governor\n",
1902 policy->governor->name, gov->name);
Thomas Renninger6afde102007-10-02 13:28:13 -07001903 policy->governor = gov;
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001904 } else {
1905 return -EINVAL;
Thomas Renninger6afde102007-10-02 13:28:13 -07001906 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Viresh Kumarfe492f32013-08-06 22:53:10 +05301909 if (event == CPUFREQ_GOV_POLICY_INIT)
1910 if (!try_module_get(policy->governor->owner))
1911 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
Viresh Kumar63431f72015-07-27 17:58:06 +05301913 pr_debug("%s: for CPU %u, event %u\n", __func__, policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 ret = policy->governor->governor(policy, event);
1916
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001917 if (!ret) {
1918 if (event == CPUFREQ_GOV_POLICY_INIT)
1919 policy->governor->initialized++;
1920 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1921 policy->governor->initialized--;
1922 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001923
Viresh Kumarfe492f32013-08-06 22:53:10 +05301924 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1925 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 module_put(policy->governor->owner);
1927
1928 return ret;
1929}
1930
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001931static int cpufreq_start_governor(struct cpufreq_policy *policy)
1932{
1933 int ret;
1934
1935 ret = cpufreq_governor(policy, CPUFREQ_GOV_START);
1936 return ret ? ret : cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
1937}
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939int cpufreq_register_governor(struct cpufreq_governor *governor)
1940{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001941 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 if (!governor)
1944 return -EINVAL;
1945
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001946 if (cpufreq_disabled())
1947 return -ENODEV;
1948
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001949 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001950
Viresh Kumarb3940582013-02-01 05:42:58 +00001951 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001952 err = -EBUSY;
Viresh Kumar42f91fa2015-01-02 12:34:26 +05301953 if (!find_governor(governor->name)) {
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001954 err = 0;
1955 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Dave Jones32ee8c32006-02-28 00:43:23 -05001958 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001959 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960}
1961EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1964{
Viresh Kumar45732372015-05-12 12:22:34 +05301965 struct cpufreq_policy *policy;
1966 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 if (!governor)
1969 return;
1970
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001971 if (cpufreq_disabled())
1972 return;
1973
Viresh Kumar45732372015-05-12 12:22:34 +05301974 /* clear last_governor for all inactive policies */
1975 read_lock_irqsave(&cpufreq_driver_lock, flags);
1976 for_each_inactive_policy(policy) {
Viresh Kumar18bf3a12015-05-12 12:22:51 +05301977 if (!strcmp(policy->last_governor, governor->name)) {
1978 policy->governor = NULL;
Viresh Kumar45732372015-05-12 12:22:34 +05301979 strcpy(policy->last_governor, "\0");
Viresh Kumar18bf3a12015-05-12 12:22:51 +05301980 }
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001981 }
Viresh Kumar45732372015-05-12 12:22:34 +05301982 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001983
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001984 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001986 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 return;
1988}
1989EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1990
1991
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992/*********************************************************************
1993 * POLICY INTERFACE *
1994 *********************************************************************/
1995
1996/**
1997 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001998 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1999 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 *
2001 * Reads the current cpufreq policy.
2002 */
2003int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2004{
2005 struct cpufreq_policy *cpu_policy;
2006 if (!policy)
2007 return -EINVAL;
2008
2009 cpu_policy = cpufreq_cpu_get(cpu);
2010 if (!cpu_policy)
2011 return -EINVAL;
2012
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302013 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
2015 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 return 0;
2017}
2018EXPORT_SYMBOL(cpufreq_get_policy);
2019
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002020/*
Viresh Kumar037ce832013-10-02 14:13:16 +05302021 * policy : current policy.
2022 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002023 */
Viresh Kumar037ce832013-10-02 14:13:16 +05302024static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302025 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002027 struct cpufreq_governor *old_gov;
2028 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Joe Perchese837f9b2014-03-11 10:03:00 -07002030 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2031 new_policy->cpu, new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302033 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Pan Xinhuifba95732015-07-30 18:10:40 +08002035 /*
2036 * This check works well when we store new min/max freq attributes,
2037 * because new_policy is a copy of policy with one field updated.
2038 */
2039 if (new_policy->min > new_policy->max)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002040 return -EINVAL;
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02002041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302043 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002045 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08002048 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302049 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Viresh Kumarbb176f72013-06-19 14:19:33 +05302051 /*
2052 * verify the cpu speed can be set within this limit, which might be
2053 * different to the first one
2054 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302055 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08002056 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002057 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08002060 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302061 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302063 policy->min = new_policy->min;
2064 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002066 pr_debug("new min and max freqs are %u - %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002067 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002069 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302070 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002071 pr_debug("setting range\n");
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002072 return cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 }
2074
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002075 if (new_policy->governor == policy->governor) {
2076 pr_debug("cpufreq: governor limits update\n");
2077 return cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
2078 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002079
2080 pr_debug("governor switch\n");
2081
2082 /* save old, working values */
2083 old_gov = policy->governor;
2084 /* end old governor */
2085 if (old_gov) {
Viresh Kumara1317e02016-02-22 16:36:43 +05302086 ret = cpufreq_governor(policy, CPUFREQ_GOV_STOP);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302087 if (ret) {
2088 /* This can happen due to race with other operations */
2089 pr_debug("%s: Failed to Stop Governor: %s (%d)\n",
2090 __func__, old_gov->name, ret);
2091 return ret;
2092 }
2093
Viresh Kumara1317e02016-02-22 16:36:43 +05302094 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302095 if (ret) {
2096 pr_err("%s: Failed to Exit Governor: %s (%d)\n",
2097 __func__, old_gov->name, ret);
2098 return ret;
2099 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002100 }
2101
2102 /* start new governor */
2103 policy->governor = new_policy->governor;
Viresh Kumara1317e02016-02-22 16:36:43 +05302104 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302105 if (!ret) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002106 ret = cpufreq_start_governor(policy);
2107 if (!ret) {
2108 pr_debug("cpufreq: governor change\n");
2109 return 0;
2110 }
Viresh Kumara1317e02016-02-22 16:36:43 +05302111 cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002112 }
2113
2114 /* new governor failed, so re-start old one */
2115 pr_debug("starting governor %s failed\n", policy->governor->name);
2116 if (old_gov) {
2117 policy->governor = old_gov;
Viresh Kumara1317e02016-02-22 16:36:43 +05302118 if (cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT))
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302119 policy->governor = NULL;
2120 else
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002121 cpufreq_start_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002122 }
2123
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302124 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
2127/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2129 * @cpu: CPU which shall be re-evaluated
2130 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002131 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 * at different times.
2133 */
2134int cpufreq_update_policy(unsigned int cpu)
2135{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302136 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2137 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02002138 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002140 if (!policy)
2141 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
viresh kumarad7722d2013-10-18 19:10:15 +05302143 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002145 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302146 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302147 new_policy.min = policy->user_policy.min;
2148 new_policy.max = policy->user_policy.max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Viresh Kumarbb176f72013-06-19 14:19:33 +05302150 /*
2151 * BIOS might change freq behind our back
2152 * -> ask driver for current freq and notify governors about a change
2153 */
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01002154 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302155 new_policy.cur = cpufreq_driver->get(cpu);
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302156 if (WARN_ON(!new_policy.cur)) {
2157 ret = -EIO;
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002158 goto unlock;
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302159 }
2160
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302161 if (!policy->cur) {
Joe Perchese837f9b2014-03-11 10:03:00 -07002162 pr_debug("Driver did not initialize current freq\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302163 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002164 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302165 if (policy->cur != new_policy.cur && has_target())
Viresh Kumara1e1dc42015-01-02 12:34:28 +05302166 cpufreq_out_of_sync(policy, new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002167 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002168 }
2169
Viresh Kumar037ce832013-10-02 14:13:16 +05302170 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002172unlock:
viresh kumarad7722d2013-10-18 19:10:15 +05302173 up_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002174
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302175 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 return ret;
2177}
2178EXPORT_SYMBOL(cpufreq_update_policy);
2179
Paul Gortmaker27609842013-06-19 13:54:04 -04002180static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002181 unsigned long action, void *hcpu)
2182{
2183 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002184
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002185 switch (action & ~CPU_TASKS_FROZEN) {
2186 case CPU_ONLINE:
2187 cpufreq_online(cpu);
2188 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302189
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002190 case CPU_DOWN_PREPARE:
Viresh Kumar69cee712016-02-11 17:31:11 +05302191 cpufreq_offline(cpu);
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002192 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302193
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002194 case CPU_DOWN_FAILED:
2195 cpufreq_online(cpu);
2196 break;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002197 }
2198 return NOTIFY_OK;
2199}
2200
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002201static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302202 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002203};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
2205/*********************************************************************
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002206 * BOOST *
2207 *********************************************************************/
2208static int cpufreq_boost_set_sw(int state)
2209{
2210 struct cpufreq_frequency_table *freq_table;
2211 struct cpufreq_policy *policy;
2212 int ret = -EINVAL;
2213
Viresh Kumarf9637352015-05-12 12:20:11 +05302214 for_each_active_policy(policy) {
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002215 freq_table = cpufreq_frequency_get_table(policy->cpu);
2216 if (freq_table) {
2217 ret = cpufreq_frequency_table_cpuinfo(policy,
2218 freq_table);
2219 if (ret) {
2220 pr_err("%s: Policy frequency update failed\n",
2221 __func__);
2222 break;
2223 }
Viresh Kumar49f18562016-02-11 17:31:12 +05302224
2225 down_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002226 policy->user_policy.max = policy->max;
Viresh Kumara1317e02016-02-22 16:36:43 +05302227 cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Viresh Kumar49f18562016-02-11 17:31:12 +05302228 up_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002229 }
2230 }
2231
2232 return ret;
2233}
2234
2235int cpufreq_boost_trigger_state(int state)
2236{
2237 unsigned long flags;
2238 int ret = 0;
2239
2240 if (cpufreq_driver->boost_enabled == state)
2241 return 0;
2242
2243 write_lock_irqsave(&cpufreq_driver_lock, flags);
2244 cpufreq_driver->boost_enabled = state;
2245 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2246
2247 ret = cpufreq_driver->set_boost(state);
2248 if (ret) {
2249 write_lock_irqsave(&cpufreq_driver_lock, flags);
2250 cpufreq_driver->boost_enabled = !state;
2251 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2252
Joe Perchese837f9b2014-03-11 10:03:00 -07002253 pr_err("%s: Cannot %s BOOST\n",
2254 __func__, state ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002255 }
2256
2257 return ret;
2258}
2259
Rafael J. Wysocki41669da2015-12-27 00:23:48 +01002260static bool cpufreq_boost_supported(void)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002261{
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002262 return likely(cpufreq_driver) && cpufreq_driver->set_boost;
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002263}
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002264
Viresh Kumar44139ed2015-07-29 16:23:09 +05302265static int create_boost_sysfs_file(void)
2266{
2267 int ret;
2268
Viresh Kumarc82bd442015-10-15 21:35:23 +05302269 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302270 if (ret)
2271 pr_err("%s: cannot register global BOOST sysfs file\n",
2272 __func__);
2273
2274 return ret;
2275}
2276
2277static void remove_boost_sysfs_file(void)
2278{
2279 if (cpufreq_boost_supported())
Viresh Kumarc82bd442015-10-15 21:35:23 +05302280 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302281}
2282
2283int cpufreq_enable_boost_support(void)
2284{
2285 if (!cpufreq_driver)
2286 return -EINVAL;
2287
2288 if (cpufreq_boost_supported())
2289 return 0;
2290
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002291 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
Viresh Kumar44139ed2015-07-29 16:23:09 +05302292
2293 /* This will get removed on driver unregister */
2294 return create_boost_sysfs_file();
2295}
2296EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2297
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002298int cpufreq_boost_enabled(void)
2299{
2300 return cpufreq_driver->boost_enabled;
2301}
2302EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2303
2304/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2306 *********************************************************************/
2307
2308/**
2309 * cpufreq_register_driver - register a CPU Frequency driver
2310 * @driver_data: A struct cpufreq_driver containing the values#
2311 * submitted by the CPU Frequency driver.
2312 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302313 * Registers a CPU Frequency driver to this core code. This code
Eric Biggers63af4052016-02-20 21:50:01 -06002314 * returns zero on success, -EEXIST when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002315 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 *
2317 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002318int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
2320 unsigned long flags;
2321 int ret;
2322
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002323 if (cpufreq_disabled())
2324 return -ENODEV;
2325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302327 !(driver_data->setpolicy || driver_data->target_index ||
Rafael J. Wysocki98322352014-03-19 12:48:30 +01002328 driver_data->target) ||
2329 (driver_data->setpolicy && (driver_data->target_index ||
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302330 driver_data->target)) ||
2331 (!!driver_data->get_intermediate != !!driver_data->target_intermediate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 return -EINVAL;
2333
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002334 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002336 /* Protect against concurrent CPU online/offline. */
2337 get_online_cpus();
2338
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002339 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002340 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002341 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002342 ret = -EEXIST;
2343 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002345 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002346 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
Viresh Kumarbc68b7d2015-01-02 12:34:30 +05302348 if (driver_data->setpolicy)
2349 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2350
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002351 if (cpufreq_boost_supported()) {
2352 ret = create_boost_sysfs_file();
2353 if (ret)
2354 goto err_null_driver;
2355 }
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002356
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002357 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002358 if (ret)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002359 goto err_boost_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302361 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2362 list_empty(&cpufreq_policy_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 /* if all ->init() calls failed, unregister */
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302364 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2365 driver_data->name);
2366 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 }
2368
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002369 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002370 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002372out:
2373 put_online_cpus();
2374 return ret;
2375
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002376err_if_unreg:
2377 subsys_interface_unregister(&cpufreq_interface);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002378err_boost_unreg:
Viresh Kumar44139ed2015-07-29 16:23:09 +05302379 remove_boost_sysfs_file();
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002380err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002381 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002382 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002383 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002384 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
2386EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388/**
2389 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2390 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302391 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 * the right to do so, i.e. if you have succeeded in initialising before!
2393 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2394 * currently not initialised.
2395 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002396int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397{
2398 unsigned long flags;
2399
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002400 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002403 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002405 /* Protect against concurrent cpu hotplug */
2406 get_online_cpus();
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002407 subsys_interface_unregister(&cpufreq_interface);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302408 remove_boost_sysfs_file();
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002409 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002411 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302412
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002413 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302414
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002415 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002416 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
2418 return 0;
2419}
2420EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002421
Doug Anderson90de2a42014-12-23 22:09:48 -08002422/*
2423 * Stop cpufreq at shutdown to make sure it isn't holding any locks
2424 * or mutexes when secondary CPUs are halted.
2425 */
2426static struct syscore_ops cpufreq_syscore_ops = {
2427 .shutdown = cpufreq_suspend,
2428};
2429
Viresh Kumarc82bd442015-10-15 21:35:23 +05302430struct kobject *cpufreq_global_kobject;
2431EXPORT_SYMBOL(cpufreq_global_kobject);
2432
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002433static int __init cpufreq_core_init(void)
2434{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002435 if (cpufreq_disabled())
2436 return -ENODEV;
2437
Viresh Kumar8eec1022015-10-15 21:35:22 +05302438 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002439 BUG_ON(!cpufreq_global_kobject);
2440
Doug Anderson90de2a42014-12-23 22:09:48 -08002441 register_syscore_ops(&cpufreq_syscore_ops);
2442
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002443 return 0;
2444}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002445core_initcall(cpufreq_core_init);