blob: 5617c7087d775ff5f4f93cc084b6bc8769be77ec [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
Rafael J. Wysocki36be3412016-05-12 15:13:35 +020081static inline void cpufreq_exit_governor(struct cpufreq_policy *policy)
Rafael J. Wysocki6c9d9c82016-04-07 23:38:46 +020082{
Rafael J. Wysocki36be3412016-05-12 15:13:35 +020083 (void)cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
Rafael J. Wysocki6c9d9c82016-04-07 23:38:46 +020084}
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Rafael J. Wysocki45482c72016-05-12 15:14:12 +020086static inline void cpufreq_stop_governor(struct cpufreq_policy *policy)
87{
88 (void)cpufreq_governor(policy, CPUFREQ_GOV_STOP);
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/**
Dave Jones32ee8c32006-02-28 00:43:23 -050092 * Two notifier lists: the "policy" list is involved in the
93 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 * "transition" list for kernel code that needs to handle
95 * changes to devices when the CPU clock speed changes.
96 * The mutex locks both lists.
97 */
Alan Sterne041c682006-03-27 01:16:30 -080098static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Alan Sternb4dfdbb2006-10-04 02:17:06 -070099static struct srcu_notifier_head cpufreq_transition_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200101static bool init_cpufreq_transition_notifier_list_called;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700102static int __init init_cpufreq_transition_notifier_list(void)
103{
104 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200105 init_cpufreq_transition_notifier_list_called = true;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700106 return 0;
107}
Linus Torvaldsb3438f82006-11-20 11:47:18 -0800108pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400110static int off __read_mostly;
Viresh Kumarda584452012-10-26 00:51:32 +0200111static int cpufreq_disabled(void)
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400112{
113 return off;
114}
115void disable_cpufreq(void)
116{
117 off = 1;
118}
Dave Jones29464f22009-01-18 01:37:11 -0500119static DEFINE_MUTEX(cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000121bool have_governor_per_policy(void)
122{
Viresh Kumar0b981e72013-10-02 14:13:18 +0530123 return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000124}
Viresh Kumar3f869d62013-05-16 05:09:56 +0000125EXPORT_SYMBOL_GPL(have_governor_per_policy);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000126
Viresh Kumar944e9a02013-05-16 05:09:57 +0000127struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
128{
129 if (have_governor_per_policy())
130 return &policy->kobj;
131 else
132 return cpufreq_global_kobject;
133}
134EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
135
Viresh Kumar5a31d592015-07-10 01:43:27 +0200136struct cpufreq_frequency_table *cpufreq_frequency_get_table(unsigned int cpu)
137{
138 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
139
140 return policy && !policy_is_inactive(policy) ?
141 policy->freq_table : NULL;
142}
143EXPORT_SYMBOL_GPL(cpufreq_frequency_get_table);
144
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000145static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
146{
147 u64 idle_time;
148 u64 cur_wall_time;
149 u64 busy_time;
150
151 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
152
153 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
154 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
155 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
156 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
157 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
158 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
159
160 idle_time = cur_wall_time - busy_time;
161 if (wall)
162 *wall = cputime_to_usecs(cur_wall_time);
163
164 return cputime_to_usecs(idle_time);
165}
166
167u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
168{
169 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
170
171 if (idle_time == -1ULL)
172 return get_cpu_idle_time_jiffy(cpu, wall);
173 else if (!io_busy)
174 idle_time += get_cpu_iowait_time_us(cpu, wall);
175
176 return idle_time;
177}
178EXPORT_SYMBOL_GPL(get_cpu_idle_time);
179
Viresh Kumar70e9e772013-10-03 20:29:07 +0530180/*
181 * This is a generic cpufreq init() routine which can be used by cpufreq
182 * drivers of SMP systems. It will do following:
183 * - validate & show freq table passed
184 * - set policies transition latency
185 * - policy->cpus with all possible CPUs
186 */
187int cpufreq_generic_init(struct cpufreq_policy *policy,
188 struct cpufreq_frequency_table *table,
189 unsigned int transition_latency)
190{
191 int ret;
192
193 ret = cpufreq_table_validate_and_show(policy, table);
194 if (ret) {
195 pr_err("%s: invalid frequency table: %d\n", __func__, ret);
196 return ret;
197 }
198
199 policy->cpuinfo.transition_latency = transition_latency;
200
201 /*
Shailendra Verma58405af2015-05-22 22:48:22 +0530202 * The driver only supports the SMP configuration where all processors
Viresh Kumar70e9e772013-10-03 20:29:07 +0530203 * share the clock and voltage and clock.
204 */
205 cpumask_setall(policy->cpus);
206
207 return 0;
208}
209EXPORT_SYMBOL_GPL(cpufreq_generic_init);
210
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200211struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
Viresh Kumar652ed952014-01-09 20:38:43 +0530212{
213 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
214
Viresh Kumar988bed02015-05-08 11:53:45 +0530215 return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
216}
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200217EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
Viresh Kumar988bed02015-05-08 11:53:45 +0530218
219unsigned int cpufreq_generic_get(unsigned int cpu)
220{
221 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
222
Viresh Kumar652ed952014-01-09 20:38:43 +0530223 if (!policy || IS_ERR(policy->clk)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700224 pr_err("%s: No %s associated to cpu: %d\n",
225 __func__, policy ? "clk" : "policy", cpu);
Viresh Kumar652ed952014-01-09 20:38:43 +0530226 return 0;
227 }
228
229 return clk_get_rate(policy->clk) / 1000;
230}
231EXPORT_SYMBOL_GPL(cpufreq_generic_get);
232
Viresh Kumar50e9c852015-02-19 17:02:03 +0530233/**
234 * cpufreq_cpu_get: returns policy for a cpu and marks it busy.
235 *
236 * @cpu: cpu to find policy for.
237 *
238 * This returns policy for 'cpu', returns NULL if it doesn't exist.
239 * It also increments the kobject reference count to mark it busy and so would
240 * require a corresponding call to cpufreq_cpu_put() to decrement it back.
241 * If corresponding call cpufreq_cpu_put() isn't made, the policy wouldn't be
242 * freed as that depends on the kobj count.
243 *
Viresh Kumar50e9c852015-02-19 17:02:03 +0530244 * Return: A valid policy on success, otherwise NULL on failure.
245 */
Viresh Kumar6eed9402013-08-06 22:53:11 +0530246struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530248 struct cpufreq_policy *policy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 unsigned long flags;
250
Viresh Kumar1b947c92015-02-19 17:02:05 +0530251 if (WARN_ON(cpu >= nr_cpu_ids))
Viresh Kumar6eed9402013-08-06 22:53:11 +0530252 return NULL;
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /* get the cpufreq driver */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000255 read_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Viresh Kumar6eed9402013-08-06 22:53:11 +0530257 if (cpufreq_driver) {
258 /* get the CPU */
Viresh Kumar988bed02015-05-08 11:53:45 +0530259 policy = cpufreq_cpu_get_raw(cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530260 if (policy)
261 kobject_get(&policy->kobj);
262 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200263
Viresh Kumar6eed9402013-08-06 22:53:11 +0530264 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530266 return policy;
Stephen Boyda9144432012-07-20 18:14:38 +0000267}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
269
Viresh Kumar50e9c852015-02-19 17:02:03 +0530270/**
271 * cpufreq_cpu_put: Decrements the usage count of a policy
272 *
273 * @policy: policy earlier returned by cpufreq_cpu_get().
274 *
275 * This decrements the kobject reference count incremented earlier by calling
276 * cpufreq_cpu_get().
Viresh Kumar50e9c852015-02-19 17:02:03 +0530277 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530278void cpufreq_cpu_put(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530280 kobject_put(&policy->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
286 *********************************************************************/
287
288/**
289 * adjust_jiffies - adjust the system "loops_per_jiffy"
290 *
291 * This function alters the system "loops_per_jiffy" for the clock
292 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500293 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * per-CPU loops_per_jiffy value wherever possible.
295 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800296static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{
Viresh Kumar39c132e2015-01-02 12:34:34 +0530298#ifndef CONFIG_SMP
299 static unsigned long l_p_j_ref;
300 static unsigned int l_p_j_ref_freq;
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (ci->flags & CPUFREQ_CONST_LOOPS)
303 return;
304
305 if (!l_p_j_ref_freq) {
306 l_p_j_ref = loops_per_jiffy;
307 l_p_j_ref_freq = ci->old;
Joe Perchese837f9b2014-03-11 10:03:00 -0700308 pr_debug("saving %lu as reference value for loops_per_jiffy; freq is %u kHz\n",
309 l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Viresh Kumar0b443ea2014-03-19 11:24:58 +0530311 if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530312 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
313 ci->new);
Joe Perchese837f9b2014-03-11 10:03:00 -0700314 pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
315 loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#endif
Viresh Kumar39c132e2015-01-02 12:34:34 +0530318}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Viresh Kumar0956df9c2013-06-19 14:19:34 +0530320static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530321 struct cpufreq_freqs *freqs, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 BUG_ON(irqs_disabled());
324
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000325 if (cpufreq_disabled())
326 return;
327
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200328 freqs->flags = cpufreq_driver->flags;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200329 pr_debug("notification %u of frequency transition to %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -0700330 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 case CPUFREQ_PRECHANGE:
Dave Jones32ee8c32006-02-28 00:43:23 -0500335 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800336 * which is not equal to what the cpufreq core thinks is
337 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200339 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800340 if ((policy) && (policy->cpu == freqs->cpu) &&
341 (policy->cur) && (policy->cur != freqs->old)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700342 pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
343 freqs->old, policy->cur);
Dave Jonese4472cb2006-01-31 15:53:55 -0800344 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346 }
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_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
350 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 case CPUFREQ_POSTCHANGE:
353 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Joe Perchese837f9b2014-03-11 10:03:00 -0700354 pr_debug("FREQ: %lu - CPU: %lu\n",
355 (unsigned long)freqs->new, (unsigned long)freqs->cpu);
Thomas Renninger25e41932011-01-03 17:50:44 +0100356 trace_cpu_frequency(freqs->new, freqs->cpu);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700357 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800358 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800359 if (likely(policy) && likely(policy->cpu == freqs->cpu))
360 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 break;
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
Viresh Kumarbb176f72013-06-19 14:19:33 +0530364
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530365/**
366 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
367 * on frequency transition.
368 *
369 * This function calls the transition notifiers and the "adjust_jiffies"
370 * function. It is called twice on all CPU frequency changes that have
371 * external effects.
372 */
Viresh Kumar236a9802014-03-24 13:35:46 +0530373static void cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530374 struct cpufreq_freqs *freqs, unsigned int state)
375{
376 for_each_cpu(freqs->cpu, policy->cpus)
377 __cpufreq_notify_transition(policy, freqs, state);
378}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530380/* Do post notifications when there are chances that transition has failed */
Viresh Kumar236a9802014-03-24 13:35:46 +0530381static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530382 struct cpufreq_freqs *freqs, int transition_failed)
383{
384 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
385 if (!transition_failed)
386 return;
387
388 swap(freqs->old, freqs->new);
389 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
390 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
391}
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530392
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530393void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
394 struct cpufreq_freqs *freqs)
395{
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530396
397 /*
398 * Catch double invocations of _begin() which lead to self-deadlock.
399 * ASYNC_NOTIFICATION drivers are left out because the cpufreq core
400 * doesn't invoke _begin() on their behalf, and hence the chances of
401 * double invocations are very low. Moreover, there are scenarios
402 * where these checks can emit false-positive warnings in these
403 * drivers; so we avoid that by skipping them altogether.
404 */
405 WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
406 && current == policy->transition_task);
407
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530408wait:
409 wait_event(policy->transition_wait, !policy->transition_ongoing);
410
411 spin_lock(&policy->transition_lock);
412
413 if (unlikely(policy->transition_ongoing)) {
414 spin_unlock(&policy->transition_lock);
415 goto wait;
416 }
417
418 policy->transition_ongoing = true;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530419 policy->transition_task = current;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530420
421 spin_unlock(&policy->transition_lock);
422
423 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
424}
425EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);
426
427void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
428 struct cpufreq_freqs *freqs, int transition_failed)
429{
430 if (unlikely(WARN_ON(!policy->transition_ongoing)))
431 return;
432
433 cpufreq_notify_post_transition(policy, freqs, transition_failed);
434
435 policy->transition_ongoing = false;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530436 policy->transition_task = NULL;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530437
438 wake_up(&policy->transition_wait);
439}
440EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
441
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200442/*
443 * Fast frequency switching status count. Positive means "enabled", negative
444 * means "disabled" and 0 means "not decided yet".
445 */
446static int cpufreq_fast_switch_count;
447static DEFINE_MUTEX(cpufreq_fast_switch_lock);
448
449static void cpufreq_list_transition_notifiers(void)
450{
451 struct notifier_block *nb;
452
453 pr_info("Registered transition notifiers:\n");
454
455 mutex_lock(&cpufreq_transition_notifier_list.mutex);
456
457 for (nb = cpufreq_transition_notifier_list.head; nb; nb = nb->next)
458 pr_info("%pF\n", nb->notifier_call);
459
460 mutex_unlock(&cpufreq_transition_notifier_list.mutex);
461}
462
463/**
464 * cpufreq_enable_fast_switch - Enable fast frequency switching for policy.
465 * @policy: cpufreq policy to enable fast frequency switching for.
466 *
467 * Try to enable fast frequency switching for @policy.
468 *
469 * The attempt will fail if there is at least one transition notifier registered
470 * at this point, as fast frequency switching is quite fundamentally at odds
471 * with transition notifiers. Thus if successful, it will make registration of
472 * transition notifiers fail going forward.
473 */
474void cpufreq_enable_fast_switch(struct cpufreq_policy *policy)
475{
476 lockdep_assert_held(&policy->rwsem);
477
478 if (!policy->fast_switch_possible)
479 return;
480
481 mutex_lock(&cpufreq_fast_switch_lock);
482 if (cpufreq_fast_switch_count >= 0) {
483 cpufreq_fast_switch_count++;
484 policy->fast_switch_enabled = true;
485 } else {
486 pr_warn("CPU%u: Fast frequency switching not enabled\n",
487 policy->cpu);
488 cpufreq_list_transition_notifiers();
489 }
490 mutex_unlock(&cpufreq_fast_switch_lock);
491}
492EXPORT_SYMBOL_GPL(cpufreq_enable_fast_switch);
493
Rafael J. Wysocki6c9d9c82016-04-07 23:38:46 +0200494/**
495 * cpufreq_disable_fast_switch - Disable fast frequency switching for policy.
496 * @policy: cpufreq policy to disable fast frequency switching for.
497 */
498void cpufreq_disable_fast_switch(struct cpufreq_policy *policy)
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200499{
500 mutex_lock(&cpufreq_fast_switch_lock);
501 if (policy->fast_switch_enabled) {
502 policy->fast_switch_enabled = false;
503 if (!WARN_ON(cpufreq_fast_switch_count <= 0))
504 cpufreq_fast_switch_count--;
505 }
506 mutex_unlock(&cpufreq_fast_switch_lock);
507}
Rafael J. Wysocki6c9d9c82016-04-07 23:38:46 +0200508EXPORT_SYMBOL_GPL(cpufreq_disable_fast_switch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510/*********************************************************************
511 * SYSFS INTERFACE *
512 *********************************************************************/
Rashika Kheria8a5c74a2014-02-26 22:12:42 +0530513static ssize_t show_boost(struct kobject *kobj,
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100514 struct attribute *attr, char *buf)
515{
516 return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
517}
518
519static ssize_t store_boost(struct kobject *kobj, struct attribute *attr,
520 const char *buf, size_t count)
521{
522 int ret, enable;
523
524 ret = sscanf(buf, "%d", &enable);
525 if (ret != 1 || enable < 0 || enable > 1)
526 return -EINVAL;
527
528 if (cpufreq_boost_trigger_state(enable)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700529 pr_err("%s: Cannot %s BOOST!\n",
530 __func__, enable ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100531 return -EINVAL;
532 }
533
Joe Perchese837f9b2014-03-11 10:03:00 -0700534 pr_debug("%s: cpufreq BOOST %s\n",
535 __func__, enable ? "enabled" : "disabled");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100536
537 return count;
538}
539define_one_global_rw(boost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530541static struct cpufreq_governor *find_governor(const char *str_governor)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700542{
543 struct cpufreq_governor *t;
544
Viresh Kumarf7b27062015-01-27 14:06:09 +0530545 for_each_governor(t)
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200546 if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700547 return t;
548
549 return NULL;
550}
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552/**
553 * cpufreq_parse_governor - parse a governor string
554 */
Dave Jones905d77c2008-03-05 14:28:32 -0500555static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 struct cpufreq_governor **governor)
557{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700558 int err = -EINVAL;
559
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200560 if (cpufreq_driver->setpolicy) {
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200561 if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700563 err = 0;
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200564 } else if (!strncasecmp(str_governor, "powersave",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530565 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700567 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Viresh Kumar2e1cc3a2015-01-02 12:34:27 +0530569 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700571
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800572 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700573
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530574 t = find_governor(str_governor);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700575
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700576 if (t == NULL) {
Kees Cook1a8e1462011-05-04 08:38:56 -0700577 int ret;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700578
Kees Cook1a8e1462011-05-04 08:38:56 -0700579 mutex_unlock(&cpufreq_governor_mutex);
580 ret = request_module("cpufreq_%s", str_governor);
581 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700582
Kees Cook1a8e1462011-05-04 08:38:56 -0700583 if (ret == 0)
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530584 t = find_governor(str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700585 }
586
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700587 if (t != NULL) {
588 *governor = t;
589 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700591
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800592 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700594 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530598 * cpufreq_per_cpu_attr_read() / show_##file_name() -
599 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 *
601 * Write out information from cpufreq_driver->policy[cpu]; object must be
602 * "unsigned int".
603 */
604
Dave Jones32ee8c32006-02-28 00:43:23 -0500605#define show_one(file_name, object) \
606static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500607(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500608{ \
Dave Jones29464f22009-01-18 01:37:11 -0500609 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
612show_one(cpuinfo_min_freq, cpuinfo.min_freq);
613show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100614show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615show_one(scaling_min_freq, min);
616show_one(scaling_max_freq, max);
Dirk Brandewiec034b022014-10-13 08:37:40 -0700617
Viresh Kumar09347b22015-01-02 12:34:24 +0530618static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
Dirk Brandewiec034b022014-10-13 08:37:40 -0700619{
620 ssize_t ret;
621
622 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
623 ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
624 else
625 ret = sprintf(buf, "%u\n", policy->cur);
626 return ret;
627}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Viresh Kumar037ce832013-10-02 14:13:16 +0530629static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530630 struct cpufreq_policy *new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632/**
633 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
634 */
635#define store_one(file_name, object) \
636static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500637(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{ \
Vince Hsu619c144c2014-11-10 14:14:50 +0800639 int ret, temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 struct cpufreq_policy new_policy; \
641 \
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530642 memcpy(&new_policy, policy, sizeof(*policy)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 \
Dave Jones29464f22009-01-18 01:37:11 -0500644 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (ret != 1) \
646 return -EINVAL; \
647 \
Vince Hsu619c144c2014-11-10 14:14:50 +0800648 temp = new_policy.object; \
Viresh Kumar037ce832013-10-02 14:13:16 +0530649 ret = cpufreq_set_policy(policy, &new_policy); \
Vince Hsu619c144c2014-11-10 14:14:50 +0800650 if (!ret) \
651 policy->user_policy.object = temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 \
653 return ret ? ret : count; \
654}
655
Dave Jones29464f22009-01-18 01:37:11 -0500656store_one(scaling_min_freq, min);
657store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659/**
660 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
661 */
Dave Jones905d77c2008-03-05 14:28:32 -0500662static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
663 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Viresh Kumard92d50a2015-01-02 12:34:29 +0530665 unsigned int cur_freq = __cpufreq_get(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (!cur_freq)
667 return sprintf(buf, "<unknown>");
668 return sprintf(buf, "%u\n", cur_freq);
669}
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671/**
672 * show_scaling_governor - show the current policy for the specified CPU
673 */
Dave Jones905d77c2008-03-05 14:28:32 -0500674static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Dave Jones29464f22009-01-18 01:37:11 -0500676 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return sprintf(buf, "powersave\n");
678 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
679 return sprintf(buf, "performance\n");
680 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200681 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500682 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return -EINVAL;
684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686/**
687 * store_scaling_governor - store policy for the specified CPU
688 */
Dave Jones905d77c2008-03-05 14:28:32 -0500689static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
690 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530692 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 char str_governor[16];
694 struct cpufreq_policy new_policy;
695
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530696 memcpy(&new_policy, policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Dave Jones29464f22009-01-18 01:37:11 -0500698 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (ret != 1)
700 return -EINVAL;
701
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530702 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
703 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return -EINVAL;
705
Viresh Kumar037ce832013-10-02 14:13:16 +0530706 ret = cpufreq_set_policy(policy, &new_policy);
Viresh Kumar88dc4382015-08-03 08:36:18 +0530707 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708}
709
710/**
711 * show_scaling_driver - show the cpufreq driver currently loaded
712 */
Dave Jones905d77c2008-03-05 14:28:32 -0500713static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200715 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
718/**
719 * show_scaling_available_governors - show the available CPUfreq governors
720 */
Dave Jones905d77c2008-03-05 14:28:32 -0500721static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
722 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
724 ssize_t i = 0;
725 struct cpufreq_governor *t;
726
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530727 if (!has_target()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 i += sprintf(buf, "performance powersave");
729 goto out;
730 }
731
Viresh Kumarf7b27062015-01-27 14:06:09 +0530732 for_each_governor(t) {
Dave Jones29464f22009-01-18 01:37:11 -0500733 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
734 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200736 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500738out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 i += sprintf(&buf[i], "\n");
740 return i;
741}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700742
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800743ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
745 ssize_t i = 0;
746 unsigned int cpu;
747
Rusty Russell835481d2009-01-04 05:18:06 -0800748 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 if (i)
750 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
751 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
752 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500753 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 }
755 i += sprintf(&buf[i], "\n");
756 return i;
757}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800758EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700760/**
761 * show_related_cpus - show the CPUs affected by each transition even if
762 * hw coordination is in use
763 */
764static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
765{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800766 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700767}
768
769/**
770 * show_affected_cpus - show the CPUs affected by each transition
771 */
772static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
773{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800774 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700775}
776
Venki Pallipadi9e769882007-10-26 10:18:21 -0700777static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500778 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700779{
780 unsigned int freq = 0;
781 unsigned int ret;
782
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700783 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700784 return -EINVAL;
785
786 ret = sscanf(buf, "%u", &freq);
787 if (ret != 1)
788 return -EINVAL;
789
790 policy->governor->store_setspeed(policy, freq);
791
792 return count;
793}
794
795static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
796{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700797 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700798 return sprintf(buf, "<unsupported>\n");
799
800 return policy->governor->show_setspeed(policy, buf);
801}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Thomas Renningere2f74f32009-11-19 12:31:01 +0100803/**
viresh kumar8bf1ac722012-10-23 01:23:33 +0200804 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100805 */
806static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
807{
808 unsigned int limit;
809 int ret;
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200810 if (cpufreq_driver->bios_limit) {
811 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100812 if (!ret)
813 return sprintf(buf, "%u\n", limit);
814 }
815 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
816}
817
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200818cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
819cpufreq_freq_attr_ro(cpuinfo_min_freq);
820cpufreq_freq_attr_ro(cpuinfo_max_freq);
821cpufreq_freq_attr_ro(cpuinfo_transition_latency);
822cpufreq_freq_attr_ro(scaling_available_governors);
823cpufreq_freq_attr_ro(scaling_driver);
824cpufreq_freq_attr_ro(scaling_cur_freq);
825cpufreq_freq_attr_ro(bios_limit);
826cpufreq_freq_attr_ro(related_cpus);
827cpufreq_freq_attr_ro(affected_cpus);
828cpufreq_freq_attr_rw(scaling_min_freq);
829cpufreq_freq_attr_rw(scaling_max_freq);
830cpufreq_freq_attr_rw(scaling_governor);
831cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Dave Jones905d77c2008-03-05 14:28:32 -0500833static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 &cpuinfo_min_freq.attr,
835 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100836 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 &scaling_min_freq.attr,
838 &scaling_max_freq.attr,
839 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700840 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 &scaling_governor.attr,
842 &scaling_driver.attr,
843 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700844 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 NULL
846};
847
Dave Jones29464f22009-01-18 01:37:11 -0500848#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
849#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Dave Jones29464f22009-01-18 01:37:11 -0500851static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Dave Jones905d77c2008-03-05 14:28:32 -0500853 struct cpufreq_policy *policy = to_policy(kobj);
854 struct freq_attr *fattr = to_attr(attr);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530855 ssize_t ret;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530856
viresh kumarad7722d2013-10-18 19:10:15 +0530857 down_read(&policy->rwsem);
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100858 ret = fattr->show(policy, buf);
viresh kumarad7722d2013-10-18 19:10:15 +0530859 up_read(&policy->rwsem);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return ret;
862}
863
Dave Jones905d77c2008-03-05 14:28:32 -0500864static ssize_t store(struct kobject *kobj, struct attribute *attr,
865 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Dave Jones905d77c2008-03-05 14:28:32 -0500867 struct cpufreq_policy *policy = to_policy(kobj);
868 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500869 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530870
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530871 get_online_cpus();
872
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100873 if (cpu_online(policy->cpu)) {
874 down_write(&policy->rwsem);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530875 ret = fattr->store(policy, buf, count);
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100876 up_write(&policy->rwsem);
877 }
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530878
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530879 put_online_cpus();
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 return ret;
882}
883
Dave Jones905d77c2008-03-05 14:28:32 -0500884static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Dave Jones905d77c2008-03-05 14:28:32 -0500886 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200887 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 complete(&policy->kobj_unregister);
889}
890
Emese Revfy52cf25d2010-01-19 02:58:23 +0100891static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 .show = show,
893 .store = store,
894};
895
896static struct kobj_type ktype_cpufreq = {
897 .sysfs_ops = &sysfs_ops,
898 .default_attrs = default_attrs,
899 .release = cpufreq_sysfs_release,
900};
901
Viresh Kumar87549142015-06-10 02:13:21 +0200902static int add_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
903{
904 struct device *cpu_dev;
905
906 pr_debug("%s: Adding symlink for CPU: %u\n", __func__, cpu);
907
908 if (!policy)
909 return 0;
910
911 cpu_dev = get_cpu_device(cpu);
912 if (WARN_ON(!cpu_dev))
913 return 0;
914
915 return sysfs_create_link(&cpu_dev->kobj, &policy->kobj, "cpufreq");
916}
917
918static void remove_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
919{
920 struct device *cpu_dev;
921
922 pr_debug("%s: Removing symlink for CPU: %u\n", __func__, cpu);
923
924 cpu_dev = get_cpu_device(cpu);
925 if (WARN_ON(!cpu_dev))
926 return;
927
928 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
929}
930
931/* Add/remove symlinks for all related CPUs */
Viresh Kumar308b60e2013-07-31 14:35:14 +0200932static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400933{
934 unsigned int j;
935 int ret = 0;
936
Viresh Kumar87549142015-06-10 02:13:21 +0200937 /* Some related CPUs might not be present (physically hotplugged) */
Rafael J. Wysocki559ed402015-07-26 02:07:47 +0200938 for_each_cpu(j, policy->real_cpus) {
Viresh Kumar87549142015-06-10 02:13:21 +0200939 ret = add_cpu_dev_symlink(policy, j);
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200940 if (ret)
941 break;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400942 }
Viresh Kumar87549142015-06-10 02:13:21 +0200943
Dave Jones19d6f7e2009-07-08 17:35:39 -0400944 return ret;
945}
946
Viresh Kumar87549142015-06-10 02:13:21 +0200947static void cpufreq_remove_dev_symlink(struct cpufreq_policy *policy)
948{
949 unsigned int j;
950
951 /* Some related CPUs might not be present (physically hotplugged) */
Viresh Kumar96bdda62015-10-15 21:35:24 +0530952 for_each_cpu(j, policy->real_cpus)
Viresh Kumar87549142015-06-10 02:13:21 +0200953 remove_cpu_dev_symlink(policy, j);
Viresh Kumar87549142015-06-10 02:13:21 +0200954}
955
Rafael J. Wysockid9612a42015-07-27 23:11:37 +0200956static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
Dave Jones909a6942009-07-08 18:05:42 -0400957{
958 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -0400959 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -0400960
Dave Jones909a6942009-07-08 18:05:42 -0400961 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200962 drv_attr = cpufreq_driver->attr;
Viresh Kumarf13f1182015-01-02 12:34:23 +0530963 while (drv_attr && *drv_attr) {
Dave Jones909a6942009-07-08 18:05:42 -0400964 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
965 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100966 return ret;
Dave Jones909a6942009-07-08 18:05:42 -0400967 drv_attr++;
968 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200969 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -0400970 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
971 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100972 return ret;
Dave Jones909a6942009-07-08 18:05:42 -0400973 }
Dirk Brandewiec034b022014-10-13 08:37:40 -0700974
975 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
976 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100977 return ret;
Dirk Brandewiec034b022014-10-13 08:37:40 -0700978
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200979 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100980 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
981 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100982 return ret;
Thomas Renningere2f74f32009-11-19 12:31:01 +0100983 }
Dave Jones909a6942009-07-08 18:05:42 -0400984
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +0100985 return cpufreq_add_dev_symlink(policy);
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530986}
987
Rafael J. Wysockide1df262016-02-05 02:37:42 +0100988__weak struct cpufreq_governor *cpufreq_default_governor(void)
989{
990 return NULL;
991}
992
Viresh Kumar7f0fa402015-07-08 15:12:16 +0530993static int cpufreq_init_policy(struct cpufreq_policy *policy)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530994{
viresh kumar6e2c89d2014-03-04 11:43:59 +0800995 struct cpufreq_governor *gov = NULL;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530996 struct cpufreq_policy new_policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530997
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530998 memcpy(&new_policy, policy, sizeof(*policy));
Jason Barona27a9ab2013-12-19 22:50:50 +0000999
viresh kumar6e2c89d2014-03-04 11:43:59 +08001000 /* Update governor of new_policy to the governor used before hotplug */
Viresh Kumar45732372015-05-12 12:22:34 +05301001 gov = find_governor(policy->last_governor);
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001002 if (gov) {
viresh kumar6e2c89d2014-03-04 11:43:59 +08001003 pr_debug("Restoring governor %s for cpu %d\n",
1004 policy->governor->name, policy->cpu);
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001005 } else {
1006 gov = cpufreq_default_governor();
1007 if (!gov)
1008 return -ENODATA;
1009 }
viresh kumar6e2c89d2014-03-04 11:43:59 +08001010
1011 new_policy.governor = gov;
1012
Srinivas Pandruvada69030dd2015-12-01 16:52:14 -08001013 /* Use the default policy if there is no last_policy. */
1014 if (cpufreq_driver->setpolicy) {
1015 if (policy->last_policy)
1016 new_policy.policy = policy->last_policy;
1017 else
1018 cpufreq_parse_governor(gov->name, &new_policy.policy,
1019 NULL);
1020 }
Dave Jonesecf7e462009-07-08 18:48:47 -04001021 /* set default policy */
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301022 return cpufreq_set_policy(policy, &new_policy);
Dave Jones909a6942009-07-08 18:05:42 -04001023}
1024
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001025static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
Viresh Kumarfcf80582013-01-29 14:39:08 +00001026{
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301027 int ret = 0;
Viresh Kumarfcf80582013-01-29 14:39:08 +00001028
Viresh Kumarbb29ae12015-02-19 17:02:06 +05301029 /* Has this CPU been taken care of already? */
1030 if (cpumask_test_cpu(cpu, policy->cpus))
1031 return 0;
1032
Viresh Kumar49f18562016-02-11 17:31:12 +05301033 down_write(&policy->rwsem);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02001034 if (has_target())
1035 cpufreq_stop_governor(policy);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001036
Viresh Kumarfcf80582013-01-29 14:39:08 +00001037 cpumask_set_cpu(cpu, policy->cpus);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301038
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301039 if (has_target()) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001040 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301041 if (ret)
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301042 pr_err("%s: Failed to start governor\n", __func__);
Viresh Kumar820c6ca2013-04-22 00:48:03 +02001043 }
Viresh Kumar49f18562016-02-11 17:31:12 +05301044 up_write(&policy->rwsem);
1045 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +00001046}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Viresh Kumar11eb69b2016-02-22 16:36:42 +05301048static void handle_update(struct work_struct *work)
1049{
1050 struct cpufreq_policy *policy =
1051 container_of(work, struct cpufreq_policy, update);
1052 unsigned int cpu = policy->cpu;
1053 pr_debug("handle_update for cpu %u called\n", cpu);
1054 cpufreq_update_policy(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055}
1056
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001057static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301058{
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001059 struct device *dev = get_cpu_device(cpu);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301060 struct cpufreq_policy *policy;
Viresh Kumaredd4a892016-03-03 14:51:33 +05301061 int ret;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301062
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001063 if (WARN_ON(!dev))
1064 return NULL;
1065
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301066 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
1067 if (!policy)
1068 return NULL;
1069
1070 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
1071 goto err_free_policy;
1072
1073 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
1074 goto err_free_cpumask;
1075
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001076 if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
1077 goto err_free_rcpumask;
1078
Viresh Kumaredd4a892016-03-03 14:51:33 +05301079 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
1080 cpufreq_global_kobject, "policy%u", cpu);
1081 if (ret) {
1082 pr_err("%s: failed to init policy->kobj: %d\n", __func__, ret);
1083 goto err_free_real_cpus;
1084 }
1085
Lukasz Majewskic88a1f82013-08-06 22:53:08 +05301086 INIT_LIST_HEAD(&policy->policy_list);
viresh kumarad7722d2013-10-18 19:10:15 +05301087 init_rwsem(&policy->rwsem);
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +05301088 spin_lock_init(&policy->transition_lock);
1089 init_waitqueue_head(&policy->transition_wait);
Viresh Kumar818c5712015-01-02 12:34:38 +05301090 init_completion(&policy->kobj_unregister);
1091 INIT_WORK(&policy->update, handle_update);
viresh kumarad7722d2013-10-18 19:10:15 +05301092
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001093 policy->cpu = cpu;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301094 return policy;
1095
Viresh Kumaredd4a892016-03-03 14:51:33 +05301096err_free_real_cpus:
1097 free_cpumask_var(policy->real_cpus);
Viresh Kumar2fc33842015-06-08 18:25:29 +05301098err_free_rcpumask:
1099 free_cpumask_var(policy->related_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301100err_free_cpumask:
1101 free_cpumask_var(policy->cpus);
1102err_free_policy:
1103 kfree(policy);
1104
1105 return NULL;
1106}
1107
Viresh Kumar2fc33842015-06-08 18:25:29 +05301108static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy, bool notify)
Viresh Kumar42f921a2013-12-20 21:26:02 +05301109{
1110 struct kobject *kobj;
1111 struct completion *cmp;
1112
Viresh Kumar2fc33842015-06-08 18:25:29 +05301113 if (notify)
1114 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1115 CPUFREQ_REMOVE_POLICY, policy);
Viresh Kumarfcd7af92014-01-07 07:10:10 +05301116
Viresh Kumar87549142015-06-10 02:13:21 +02001117 down_write(&policy->rwsem);
1118 cpufreq_remove_dev_symlink(policy);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301119 kobj = &policy->kobj;
1120 cmp = &policy->kobj_unregister;
Viresh Kumar87549142015-06-10 02:13:21 +02001121 up_write(&policy->rwsem);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301122 kobject_put(kobj);
1123
1124 /*
1125 * We need to make sure that the underlying kobj is
1126 * actually not referenced anymore by anybody before we
1127 * proceed with unloading.
1128 */
1129 pr_debug("waiting for dropping of refcount\n");
1130 wait_for_completion(cmp);
1131 pr_debug("wait complete\n");
1132}
1133
Viresh Kumar3654c5c2015-06-08 18:25:30 +05301134static void cpufreq_policy_free(struct cpufreq_policy *policy, bool notify)
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301135{
Viresh Kumar988bed02015-05-08 11:53:45 +05301136 unsigned long flags;
1137 int cpu;
1138
1139 /* Remove policy from list */
1140 write_lock_irqsave(&cpufreq_driver_lock, flags);
1141 list_del(&policy->policy_list);
1142
1143 for_each_cpu(cpu, policy->related_cpus)
1144 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1145 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1146
Viresh Kumar3654c5c2015-06-08 18:25:30 +05301147 cpufreq_policy_put_kobj(policy, notify);
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001148 free_cpumask_var(policy->real_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301149 free_cpumask_var(policy->related_cpus);
1150 free_cpumask_var(policy->cpus);
1151 kfree(policy);
1152}
1153
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001154static int cpufreq_online(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Viresh Kumar7f0c0202015-01-02 12:34:32 +05301156 struct cpufreq_policy *policy;
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001157 bool new_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 unsigned long flags;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001159 unsigned int j;
1160 int ret;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001161
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001162 pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301163
Viresh Kumarbb29ae12015-02-19 17:02:06 +05301164 /* Check if this CPU already has a policy to manage it */
Viresh Kumar9104bb22015-05-12 12:22:12 +05301165 policy = per_cpu(cpufreq_cpu_data, cpu);
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001166 if (policy) {
Viresh Kumar9104bb22015-05-12 12:22:12 +05301167 WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001168 if (!policy_is_inactive(policy))
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001169 return cpufreq_add_policy_cpu(policy, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001171 /* This is the only online CPU for the policy. Start over. */
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001172 new_policy = false;
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001173 down_write(&policy->rwsem);
1174 policy->cpu = cpu;
1175 policy->governor = NULL;
1176 up_write(&policy->rwsem);
1177 } else {
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001178 new_policy = true;
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001179 policy = cpufreq_policy_alloc(cpu);
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001180 if (!policy)
Rafael J. Wysockid4d854d2015-07-27 23:11:30 +02001181 return -ENOMEM;
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001182 }
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301183
Rusty Russell835481d2009-01-04 05:18:06 -08001184 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /* call driver. From then on the cpufreq must be able
1187 * to accept all calls to ->verify and ->setpolicy for this CPU
1188 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001189 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001191 pr_debug("initialization failed\n");
Viresh Kumar8101f992015-07-08 15:12:15 +05301192 goto out_free_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001194
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001195 down_write(&policy->rwsem);
1196
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001197 if (new_policy) {
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001198 /* related_cpus should at least include policy->cpus. */
Viresh Kumar0998a032015-10-15 21:35:21 +05301199 cpumask_copy(policy->related_cpus, policy->cpus);
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001200 /* Remember CPUs present at the policy creation time. */
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001201 cpumask_and(policy->real_cpus, policy->cpus, cpu_present_mask);
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001202 }
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001203
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001204 /*
1205 * affected cpus must always be the one, which are online. We aren't
1206 * managing offline cpus here.
1207 */
1208 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1209
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001210 if (new_policy) {
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001211 policy->user_policy.min = policy->min;
1212 policy->user_policy.max = policy->max;
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001213
Viresh Kumar988bed02015-05-08 11:53:45 +05301214 write_lock_irqsave(&cpufreq_driver_lock, flags);
1215 for_each_cpu(j, policy->related_cpus)
1216 per_cpu(cpufreq_cpu_data, j) = policy;
1217 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1218 }
Viresh Kumar652ed952014-01-09 20:38:43 +05301219
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01001220 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Viresh Kumarda60ce92013-10-03 20:28:30 +05301221 policy->cur = cpufreq_driver->get(policy->cpu);
1222 if (!policy->cur) {
1223 pr_err("%s: ->get() failed\n", __func__);
Viresh Kumar8101f992015-07-08 15:12:15 +05301224 goto out_exit_policy;
Viresh Kumarda60ce92013-10-03 20:28:30 +05301225 }
1226 }
1227
Viresh Kumard3916692013-12-03 11:20:46 +05301228 /*
1229 * Sometimes boot loaders set CPU frequency to a value outside of
1230 * frequency table present with cpufreq core. In such cases CPU might be
1231 * unstable if it has to run on that frequency for long duration of time
1232 * and so its better to set it to a frequency which is specified in
1233 * freq-table. This also makes cpufreq stats inconsistent as
1234 * cpufreq-stats would fail to register because current frequency of CPU
1235 * isn't found in freq-table.
1236 *
1237 * Because we don't want this change to effect boot process badly, we go
1238 * for the next freq which is >= policy->cur ('cur' must be set by now,
1239 * otherwise we will end up setting freq to lowest of the table as 'cur'
1240 * is initialized to zero).
1241 *
1242 * We are passing target-freq as "policy->cur - 1" otherwise
1243 * __cpufreq_driver_target() would simply fail, as policy->cur will be
1244 * equal to target-freq.
1245 */
1246 if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
1247 && has_target()) {
1248 /* Are we running at unknown frequency ? */
1249 ret = cpufreq_frequency_table_get_index(policy, policy->cur);
1250 if (ret == -EINVAL) {
1251 /* Warn user and fix it */
1252 pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
1253 __func__, policy->cpu, policy->cur);
1254 ret = __cpufreq_driver_target(policy, policy->cur - 1,
1255 CPUFREQ_RELATION_L);
1256
1257 /*
1258 * Reaching here after boot in a few seconds may not
1259 * mean that system will remain stable at "unknown"
1260 * frequency for longer duration. Hence, a BUG_ON().
1261 */
1262 BUG_ON(ret);
1263 pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
1264 __func__, policy->cpu, policy->cur);
1265 }
1266 }
1267
Thomas Renningera1531ac2008-07-29 22:32:58 -07001268 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1269 CPUFREQ_START, policy);
1270
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001271 if (new_policy) {
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001272 ret = cpufreq_add_dev_interface(policy);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301273 if (ret)
Viresh Kumar8101f992015-07-08 15:12:15 +05301274 goto out_exit_policy;
Viresh Kumarfcd7af92014-01-07 07:10:10 +05301275 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1276 CPUFREQ_CREATE_POLICY, policy);
Dave Jones8ff69732006-03-05 03:37:23 -05001277
Viresh Kumar988bed02015-05-08 11:53:45 +05301278 write_lock_irqsave(&cpufreq_driver_lock, flags);
1279 list_add(&policy->policy_list, &cpufreq_policy_list);
1280 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1281 }
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301282
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301283 ret = cpufreq_init_policy(policy);
1284 if (ret) {
1285 pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
1286 __func__, cpu, ret);
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001287 /* cpufreq_policy_free() will notify based on this */
1288 new_policy = false;
1289 goto out_exit_policy;
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301290 }
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301291
Viresh Kumar4e97b632014-03-04 11:44:01 +08001292 up_write(&policy->rwsem);
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301293
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001294 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301295
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301296 /* Callback for handling stuff after policy is ready */
1297 if (cpufreq_driver->ready)
1298 cpufreq_driver->ready(policy);
1299
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001300 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return 0;
1303
Viresh Kumar8101f992015-07-08 15:12:15 +05301304out_exit_policy:
Prarit Bhargava7106e022014-09-10 10:12:08 -04001305 up_write(&policy->rwsem);
1306
Viresh Kumarda60ce92013-10-03 20:28:30 +05301307 if (cpufreq_driver->exit)
1308 cpufreq_driver->exit(policy);
Viresh Kumar8101f992015-07-08 15:12:15 +05301309out_free_policy:
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001310 cpufreq_policy_free(policy, !new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return ret;
1312}
1313
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001314/**
1315 * cpufreq_add_dev - the cpufreq interface for a CPU device.
1316 * @dev: CPU device.
1317 * @sif: Subsystem interface structure pointer (not used)
1318 */
1319static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1320{
Rafael J. Wysockia794d612016-04-07 03:31:57 +02001321 struct cpufreq_policy *policy;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001322 unsigned cpu = dev->id;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001323
1324 dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
1325
Rafael J. Wysockia794d612016-04-07 03:31:57 +02001326 if (cpu_online(cpu))
1327 return cpufreq_online(cpu);
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001328
Rafael J. Wysockia794d612016-04-07 03:31:57 +02001329 /*
1330 * A hotplug notifier will follow and we will handle it as CPU online
1331 * then. For now, just create the sysfs link, unless there is no policy
1332 * or the link is already present.
1333 */
1334 policy = per_cpu(cpufreq_cpu_data, cpu);
1335 if (!policy || cpumask_test_and_set_cpu(cpu, policy->real_cpus))
1336 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Rafael J. Wysockia794d612016-04-07 03:31:57 +02001338 return add_cpu_dev_symlink(policy, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
Viresh Kumar69cee712016-02-11 17:31:11 +05301341static void cpufreq_offline(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301343 struct cpufreq_policy *policy;
Viresh Kumar69cee712016-02-11 17:31:11 +05301344 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001346 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
Viresh Kumar988bed02015-05-08 11:53:45 +05301348 policy = cpufreq_cpu_get_raw(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301349 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001350 pr_debug("%s: No cpu_data found\n", __func__);
Rafael J. Wysocki15c0b4d2015-07-27 23:11:09 +02001351 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Viresh Kumar49f18562016-02-11 17:31:12 +05301354 down_write(&policy->rwsem);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02001355 if (has_target())
1356 cpufreq_stop_governor(policy);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001357
Viresh Kumar9591bec2015-06-10 02:20:23 +02001358 cpumask_clear_cpu(cpu, policy->cpus);
Viresh Kumar45732372015-05-12 12:22:34 +05301359
Viresh Kumar9591bec2015-06-10 02:20:23 +02001360 if (policy_is_inactive(policy)) {
1361 if (has_target())
1362 strncpy(policy->last_governor, policy->governor->name,
1363 CPUFREQ_NAME_LEN);
Srinivas Pandruvada69030dd2015-12-01 16:52:14 -08001364 else
1365 policy->last_policy = policy->policy;
Viresh Kumar9591bec2015-06-10 02:20:23 +02001366 } else if (cpu == policy->cpu) {
1367 /* Nominate new CPU */
1368 policy->cpu = cpumask_any(policy->cpus);
1369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Viresh Kumar9591bec2015-06-10 02:20:23 +02001371 /* Start governor again for active policy */
1372 if (!policy_is_inactive(policy)) {
1373 if (has_target()) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001374 ret = cpufreq_start_governor(policy);
Viresh Kumar9591bec2015-06-10 02:20:23 +02001375 if (ret)
1376 pr_err("%s: Failed to start governor\n", __func__);
1377 }
Viresh Kumar69cee712016-02-11 17:31:11 +05301378
Viresh Kumar49f18562016-02-11 17:31:12 +05301379 goto unlock;
Viresh Kumar69cee712016-02-11 17:31:11 +05301380 }
1381
1382 if (cpufreq_driver->stop_cpu)
Dirk Brandewie367dc4a2014-03-19 08:45:53 -07001383 cpufreq_driver->stop_cpu(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02001385 if (has_target())
1386 cpufreq_exit_governor(policy);
Viresh Kumar87549142015-06-10 02:13:21 +02001387
Viresh Kumar87549142015-06-10 02:13:21 +02001388 /*
1389 * Perform the ->exit() even during light-weight tear-down,
1390 * since this is a core component, and is essential for the
1391 * subsequent light-weight ->init() to succeed.
1392 */
Srinivas Pandruvada55582bc2015-10-07 13:50:44 -07001393 if (cpufreq_driver->exit) {
Viresh Kumar87549142015-06-10 02:13:21 +02001394 cpufreq_driver->exit(policy);
Srinivas Pandruvada55582bc2015-10-07 13:50:44 -07001395 policy->freq_table = NULL;
1396 }
Viresh Kumar49f18562016-02-11 17:31:12 +05301397
1398unlock:
1399 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301402/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301403 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301404 *
1405 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301406 */
Viresh Kumar71db87b2015-07-30 15:04:01 +05301407static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001408{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001409 unsigned int cpu = dev->id;
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001410 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Venki Pallipadiec282972007-03-26 12:03:19 -07001411
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001412 if (!policy)
Linus Torvalds1af115d2015-08-31 08:47:40 -07001413 return;
Viresh Kumar87549142015-06-10 02:13:21 +02001414
Viresh Kumar69cee712016-02-11 17:31:11 +05301415 if (cpu_online(cpu))
1416 cpufreq_offline(cpu);
Viresh Kumar87549142015-06-10 02:13:21 +02001417
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001418 cpumask_clear_cpu(cpu, policy->real_cpus);
Viresh Kumar96bdda62015-10-15 21:35:24 +05301419 remove_cpu_dev_symlink(policy, cpu);
Viresh Kumarf344dae2015-11-21 09:06:49 +05301420
1421 if (cpumask_empty(policy->real_cpus))
1422 cpufreq_policy_free(policy, true);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001423}
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301426 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1427 * in deep trouble.
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301428 * @policy: policy managing CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 * @new_freq: CPU frequency the CPU actually runs at
1430 *
Dave Jones29464f22009-01-18 01:37:11 -05001431 * We adjust to current frequency first, and need to clean up later.
1432 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 */
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301434static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301435 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
1437 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301438
Joe Perchese837f9b2014-03-11 10:03:00 -07001439 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 +05301440 policy->cur, new_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301442 freqs.old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301444
Viresh Kumar8fec0512014-03-24 13:35:45 +05301445 cpufreq_freq_transition_begin(policy, &freqs);
1446 cpufreq_freq_transition_end(policy, &freqs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
Dave Jones32ee8c32006-02-28 00:43:23 -05001449/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301450 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001451 * @cpu: CPU number
1452 *
1453 * This is the last known freq, without actually getting it from the driver.
1454 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1455 */
1456unsigned int cpufreq_quick_get(unsigned int cpu)
1457{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001458 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301459 unsigned int ret_freq = 0;
Richard Cochranc75361c2016-03-11 09:43:07 +01001460 unsigned long flags;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001461
Richard Cochranc75361c2016-03-11 09:43:07 +01001462 read_lock_irqsave(&cpufreq_driver_lock, flags);
1463
1464 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get) {
1465 ret_freq = cpufreq_driver->get(cpu);
1466 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1467 return ret_freq;
1468 }
1469
1470 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001471
1472 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001473 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301474 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001475 cpufreq_cpu_put(policy);
1476 }
1477
Dave Jones4d34a672008-02-07 16:33:49 -05001478 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001479}
1480EXPORT_SYMBOL(cpufreq_quick_get);
1481
Jesse Barnes3d737102011-06-28 10:59:12 -07001482/**
1483 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1484 * @cpu: CPU number
1485 *
1486 * Just return the max possible frequency for a given CPU.
1487 */
1488unsigned int cpufreq_quick_get_max(unsigned int cpu)
1489{
1490 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1491 unsigned int ret_freq = 0;
1492
1493 if (policy) {
1494 ret_freq = policy->max;
1495 cpufreq_cpu_put(policy);
1496 }
1497
1498 return ret_freq;
1499}
1500EXPORT_SYMBOL(cpufreq_quick_get_max);
1501
Viresh Kumard92d50a2015-01-02 12:34:29 +05301502static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301504 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001506 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001507 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Viresh Kumard92d50a2015-01-02 12:34:29 +05301509 ret_freq = cpufreq_driver->get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001511 /*
1512 * Updating inactive policies is invalid, so avoid doing that. Also
1513 * if fast frequency switching is used with the given policy, the check
1514 * against policy->cur is pointless, so skip it in that case too.
1515 */
1516 if (unlikely(policy_is_inactive(policy)) || policy->fast_switch_enabled)
Viresh Kumar11e584c2015-06-10 02:11:45 +02001517 return ret_freq;
1518
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301519 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001520 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301521 /* verify no discrepancy between actual and
1522 saved value exists */
1523 if (unlikely(ret_freq != policy->cur)) {
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301524 cpufreq_out_of_sync(policy, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 schedule_work(&policy->update);
1526 }
1527 }
1528
Dave Jones4d34a672008-02-07 16:33:49 -05001529 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001530}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001532/**
1533 * cpufreq_get - get the current CPU frequency (in kHz)
1534 * @cpu: CPU number
1535 *
1536 * Get the CPU current (static) CPU frequency
1537 */
1538unsigned int cpufreq_get(unsigned int cpu)
1539{
Aaron Plattner999976e2014-03-04 12:42:15 -08001540 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001541 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001542
Aaron Plattner999976e2014-03-04 12:42:15 -08001543 if (policy) {
1544 down_read(&policy->rwsem);
Viresh Kumard92d50a2015-01-02 12:34:29 +05301545 ret_freq = __cpufreq_get(policy);
Aaron Plattner999976e2014-03-04 12:42:15 -08001546 up_read(&policy->rwsem);
Viresh Kumar26ca8692013-09-20 22:37:31 +05301547
Aaron Plattner999976e2014-03-04 12:42:15 -08001548 cpufreq_cpu_put(policy);
1549 }
Viresh Kumar6eed9402013-08-06 22:53:11 +05301550
Dave Jones4d34a672008-02-07 16:33:49 -05001551 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553EXPORT_SYMBOL(cpufreq_get);
1554
Rafael J. Wysocki999f5722016-03-21 15:46:25 +01001555static unsigned int cpufreq_update_current_freq(struct cpufreq_policy *policy)
1556{
1557 unsigned int new_freq;
1558
Rafael J. Wysockic9d9c922016-04-10 05:59:33 +02001559 if (cpufreq_suspended)
1560 return 0;
1561
Rafael J. Wysocki999f5722016-03-21 15:46:25 +01001562 new_freq = cpufreq_driver->get(policy->cpu);
1563 if (!new_freq)
1564 return 0;
1565
1566 if (!policy->cur) {
1567 pr_debug("cpufreq: Driver did not initialize current freq\n");
1568 policy->cur = new_freq;
1569 } else if (policy->cur != new_freq && has_target()) {
1570 cpufreq_out_of_sync(policy, new_freq);
1571 }
1572
1573 return new_freq;
1574}
1575
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001576static struct subsys_interface cpufreq_interface = {
1577 .name = "cpufreq",
1578 .subsys = &cpu_subsys,
1579 .add_dev = cpufreq_add_dev,
1580 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001581};
1582
Viresh Kumare28867e2014-03-04 11:00:27 +08001583/*
1584 * In case platform wants some specific frequency to be configured
1585 * during suspend..
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001586 */
Viresh Kumare28867e2014-03-04 11:00:27 +08001587int cpufreq_generic_suspend(struct cpufreq_policy *policy)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001588{
Viresh Kumare28867e2014-03-04 11:00:27 +08001589 int ret;
Dave Jones4bc5d342009-08-04 14:03:25 -04001590
Viresh Kumare28867e2014-03-04 11:00:27 +08001591 if (!policy->suspend_freq) {
Bartlomiej Zolnierkiewicz201f3712015-09-08 18:41:02 +02001592 pr_debug("%s: suspend_freq not defined\n", __func__);
1593 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001594 }
1595
Viresh Kumare28867e2014-03-04 11:00:27 +08001596 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1597 policy->suspend_freq);
1598
1599 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1600 CPUFREQ_RELATION_H);
1601 if (ret)
1602 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1603 __func__, policy->suspend_freq, ret);
1604
Dave Jonesc9060492008-02-07 16:32:18 -05001605 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001606}
Viresh Kumare28867e2014-03-04 11:00:27 +08001607EXPORT_SYMBOL(cpufreq_generic_suspend);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001608
1609/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001610 * cpufreq_suspend() - Suspend CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001612 * Called during system wide Suspend/Hibernate cycles for suspending governors
1613 * as some platforms can't change frequency after this point in suspend cycle.
1614 * Because some of the devices (like: i2c, regulators, etc) they use for
1615 * changing frequency are suspended quickly after this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001617void cpufreq_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301619 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001621 if (!cpufreq_driver)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001622 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001624 if (!has_target() && !cpufreq_driver->suspend)
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301625 goto suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001627 pr_debug("%s: Suspending Governors\n", __func__);
1628
Viresh Kumarf9637352015-05-12 12:20:11 +05301629 for_each_active_policy(policy) {
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001630 if (has_target()) {
1631 down_write(&policy->rwsem);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02001632 cpufreq_stop_governor(policy);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001633 up_write(&policy->rwsem);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001634 }
1635
1636 if (cpufreq_driver->suspend && cpufreq_driver->suspend(policy))
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001637 pr_err("%s: Failed to suspend driver: %p\n", __func__,
1638 policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
Viresh Kumarb1b12ba2014-09-30 09:33:17 +05301640
1641suspend:
1642 cpufreq_suspended = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643}
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001646 * cpufreq_resume() - Resume CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001648 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1649 * are suspended with cpufreq_suspend().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001651void cpufreq_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301654 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001656 if (!cpufreq_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 return;
1658
Lan Tianyu8e304442014-09-18 15:03:07 +08001659 cpufreq_suspended = false;
1660
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001661 if (!has_target() && !cpufreq_driver->resume)
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001662 return;
1663
1664 pr_debug("%s: Resuming Governors\n", __func__);
1665
Viresh Kumarf9637352015-05-12 12:20:11 +05301666 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301667 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
Viresh Kumar0c5aa402014-03-24 12:30:29 +05301668 pr_err("%s: Failed to resume driver: %p\n", __func__,
1669 policy);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001670 } else if (has_target()) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301671 down_write(&policy->rwsem);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001672 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301673 up_write(&policy->rwsem);
1674
1675 if (ret)
1676 pr_err("%s: Failed to start governor for policy: %p\n",
1677 __func__, policy);
1678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Borislav Petkov9d950462013-01-20 10:24:28 +00001682/**
1683 * cpufreq_get_current_driver - return current driver's name
1684 *
1685 * Return the name string of the currently loaded cpufreq driver
1686 * or NULL, if none.
1687 */
1688const char *cpufreq_get_current_driver(void)
1689{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001690 if (cpufreq_driver)
1691 return cpufreq_driver->name;
1692
1693 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001694}
1695EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Thomas Petazzoni51315cd2014-10-19 11:30:27 +02001697/**
1698 * cpufreq_get_driver_data - return current driver data
1699 *
1700 * Return the private data of the currently loaded cpufreq
1701 * driver, or NULL if no cpufreq driver is loaded.
1702 */
1703void *cpufreq_get_driver_data(void)
1704{
1705 if (cpufreq_driver)
1706 return cpufreq_driver->driver_data;
1707
1708 return NULL;
1709}
1710EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712/*********************************************************************
1713 * NOTIFIER LISTS INTERFACE *
1714 *********************************************************************/
1715
1716/**
1717 * cpufreq_register_notifier - register a driver with cpufreq
1718 * @nb: notifier function to register
1719 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1720 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001721 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 * are notified about clock rate changes (once before and once after
1723 * the transition), or a list of drivers that are notified about
1724 * changes in cpufreq policy.
1725 *
1726 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001727 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 */
1729int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1730{
1731 int ret;
1732
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001733 if (cpufreq_disabled())
1734 return -EINVAL;
1735
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001736 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 switch (list) {
1739 case CPUFREQ_TRANSITION_NOTIFIER:
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001740 mutex_lock(&cpufreq_fast_switch_lock);
1741
1742 if (cpufreq_fast_switch_count > 0) {
1743 mutex_unlock(&cpufreq_fast_switch_lock);
1744 return -EBUSY;
1745 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001746 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001747 &cpufreq_transition_notifier_list, nb);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001748 if (!ret)
1749 cpufreq_fast_switch_count--;
1750
1751 mutex_unlock(&cpufreq_fast_switch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 break;
1753 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001754 ret = blocking_notifier_chain_register(
1755 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 break;
1757 default:
1758 ret = -EINVAL;
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761 return ret;
1762}
1763EXPORT_SYMBOL(cpufreq_register_notifier);
1764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765/**
1766 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1767 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301768 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 *
1770 * Remove a driver from the CPU frequency notifier list.
1771 *
1772 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001773 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 */
1775int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1776{
1777 int ret;
1778
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001779 if (cpufreq_disabled())
1780 return -EINVAL;
1781
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 switch (list) {
1783 case CPUFREQ_TRANSITION_NOTIFIER:
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001784 mutex_lock(&cpufreq_fast_switch_lock);
1785
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001786 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001787 &cpufreq_transition_notifier_list, nb);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001788 if (!ret && !WARN_ON(cpufreq_fast_switch_count >= 0))
1789 cpufreq_fast_switch_count++;
1790
1791 mutex_unlock(&cpufreq_fast_switch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 break;
1793 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001794 ret = blocking_notifier_chain_unregister(
1795 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 break;
1797 default:
1798 ret = -EINVAL;
1799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
1801 return ret;
1802}
1803EXPORT_SYMBOL(cpufreq_unregister_notifier);
1804
1805
1806/*********************************************************************
1807 * GOVERNORS *
1808 *********************************************************************/
1809
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001810/**
1811 * cpufreq_driver_fast_switch - Carry out a fast CPU frequency switch.
1812 * @policy: cpufreq policy to switch the frequency for.
1813 * @target_freq: New frequency to set (may be approximate).
1814 *
1815 * Carry out a fast frequency switch without sleeping.
1816 *
1817 * The driver's ->fast_switch() callback invoked by this function must be
1818 * suitable for being called from within RCU-sched read-side critical sections
1819 * and it is expected to select the minimum available frequency greater than or
1820 * equal to @target_freq (CPUFREQ_RELATION_L).
1821 *
1822 * This function must not be called if policy->fast_switch_enabled is unset.
1823 *
1824 * Governors calling this function must guarantee that it will never be invoked
1825 * twice in parallel for the same policy and that it will never be called in
1826 * parallel with either ->target() or ->target_index() for the same policy.
1827 *
1828 * If CPUFREQ_ENTRY_INVALID is returned by the driver's ->fast_switch()
1829 * callback to indicate an error condition, the hardware configuration must be
1830 * preserved.
1831 */
1832unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
1833 unsigned int target_freq)
1834{
Rafael J. Wysockib9af6942016-06-01 22:36:26 +02001835 target_freq = clamp_val(target_freq, policy->min, policy->max);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001836
1837 return cpufreq_driver->fast_switch(policy, target_freq);
1838}
1839EXPORT_SYMBOL_GPL(cpufreq_driver_fast_switch);
1840
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301841/* Must set freqs->new to intermediate frequency */
1842static int __target_intermediate(struct cpufreq_policy *policy,
1843 struct cpufreq_freqs *freqs, int index)
1844{
1845 int ret;
1846
1847 freqs->new = cpufreq_driver->get_intermediate(policy, index);
1848
1849 /* We don't need to switch to intermediate freq */
1850 if (!freqs->new)
1851 return 0;
1852
1853 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
1854 __func__, policy->cpu, freqs->old, freqs->new);
1855
1856 cpufreq_freq_transition_begin(policy, freqs);
1857 ret = cpufreq_driver->target_intermediate(policy, index);
1858 cpufreq_freq_transition_end(policy, freqs, ret);
1859
1860 if (ret)
1861 pr_err("%s: Failed to change to intermediate frequency: %d\n",
1862 __func__, ret);
1863
1864 return ret;
1865}
1866
Viresh Kumar8d657752014-05-21 14:29:29 +05301867static int __target_index(struct cpufreq_policy *policy,
1868 struct cpufreq_frequency_table *freq_table, int index)
1869{
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301870 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
1871 unsigned int intermediate_freq = 0;
Viresh Kumar8d657752014-05-21 14:29:29 +05301872 int retval = -EINVAL;
1873 bool notify;
1874
1875 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
Viresh Kumar8d657752014-05-21 14:29:29 +05301876 if (notify) {
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301877 /* Handle switching to intermediate frequency */
1878 if (cpufreq_driver->get_intermediate) {
1879 retval = __target_intermediate(policy, &freqs, index);
1880 if (retval)
1881 return retval;
Viresh Kumar8d657752014-05-21 14:29:29 +05301882
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301883 intermediate_freq = freqs.new;
1884 /* Set old freq to intermediate */
1885 if (intermediate_freq)
1886 freqs.old = freqs.new;
1887 }
1888
1889 freqs.new = freq_table[index].frequency;
Viresh Kumar8d657752014-05-21 14:29:29 +05301890 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1891 __func__, policy->cpu, freqs.old, freqs.new);
1892
1893 cpufreq_freq_transition_begin(policy, &freqs);
1894 }
1895
1896 retval = cpufreq_driver->target_index(policy, index);
1897 if (retval)
1898 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
1899 retval);
1900
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301901 if (notify) {
Viresh Kumar8d657752014-05-21 14:29:29 +05301902 cpufreq_freq_transition_end(policy, &freqs, retval);
1903
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301904 /*
1905 * Failed after setting to intermediate freq? Driver should have
1906 * reverted back to initial frequency and so should we. Check
1907 * here for intermediate_freq instead of get_intermediate, in
Shailendra Verma58405af2015-05-22 22:48:22 +05301908 * case we haven't switched to intermediate freq at all.
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301909 */
1910 if (unlikely(retval && intermediate_freq)) {
1911 freqs.old = intermediate_freq;
1912 freqs.new = policy->restore_freq;
1913 cpufreq_freq_transition_begin(policy, &freqs);
1914 cpufreq_freq_transition_end(policy, &freqs, 0);
1915 }
1916 }
1917
Viresh Kumar8d657752014-05-21 14:29:29 +05301918 return retval;
1919}
1920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921int __cpufreq_driver_target(struct cpufreq_policy *policy,
1922 unsigned int target_freq,
1923 unsigned int relation)
1924{
Viresh Kumar72499242012-10-31 01:28:21 +01001925 unsigned int old_target_freq = target_freq;
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001926 struct cpufreq_frequency_table *freq_table;
1927 int index, retval;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001928
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001929 if (cpufreq_disabled())
1930 return -ENODEV;
1931
Viresh Kumar72499242012-10-31 01:28:21 +01001932 /* Make sure that target_freq is within supported range */
1933 if (target_freq > policy->max)
1934 target_freq = policy->max;
1935 if (target_freq < policy->min)
1936 target_freq = policy->min;
1937
1938 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07001939 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001940
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301941 /*
1942 * This might look like a redundant call as we are checking it again
1943 * after finding index. But it is left intentionally for cases where
1944 * exactly same freq is called again and so we can save on few function
1945 * calls.
1946 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001947 if (target_freq == policy->cur)
1948 return 0;
1949
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301950 /* Save last value to restore later on errors */
1951 policy->restore_freq = policy->cur;
1952
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001953 if (cpufreq_driver->target)
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001954 return cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001955
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001956 if (!cpufreq_driver->target_index)
1957 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301958
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001959 freq_table = cpufreq_frequency_get_table(policy->cpu);
1960 if (unlikely(!freq_table)) {
1961 pr_err("%s: Unable to find freq_table\n", __func__);
1962 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301963 }
1964
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01001965 retval = cpufreq_frequency_table_target(policy, freq_table, target_freq,
1966 relation, &index);
1967 if (unlikely(retval)) {
1968 pr_err("%s: Unable to find matching freq\n", __func__);
1969 return retval;
1970 }
1971
1972 if (freq_table[index].frequency == policy->cur)
1973 return 0;
1974
1975 return __target_index(policy, freq_table, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979int cpufreq_driver_target(struct cpufreq_policy *policy,
1980 unsigned int target_freq,
1981 unsigned int relation)
1982{
Julia Lawallf1829e42008-07-25 22:44:53 +02001983 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984
viresh kumarad7722d2013-10-18 19:10:15 +05301985 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 ret = __cpufreq_driver_target(policy, target_freq, relation);
1988
viresh kumarad7722d2013-10-18 19:10:15 +05301989 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 return ret;
1992}
1993EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1994
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001995__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
1996{
1997 return NULL;
1998}
1999
Viresh Kumara1317e02016-02-22 16:36:43 +05302000static int cpufreq_governor(struct cpufreq_policy *policy, unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Dave Jonescc993ca2005-07-28 09:43:56 -07002002 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07002003
Viresh Kumar2f0aea92014-03-04 11:00:26 +08002004 /* Don't start any governor operations if we are entering suspend */
2005 if (cpufreq_suspended)
2006 return 0;
Ethan Zhaocb577202014-12-18 15:28:19 +09002007 /*
2008 * Governor might not be initiated here if ACPI _PPC changed
2009 * notification happened, so check it.
2010 */
2011 if (!policy->governor)
2012 return -EINVAL;
Viresh Kumar2f0aea92014-03-04 11:00:26 +08002013
Thomas Renninger1c256242007-10-02 13:28:12 -07002014 if (policy->governor->max_transition_latency &&
2015 policy->cpuinfo.transition_latency >
2016 policy->governor->max_transition_latency) {
Rafael J. Wysockide1df262016-02-05 02:37:42 +01002017 struct cpufreq_governor *gov = cpufreq_fallback_governor();
2018
2019 if (gov) {
Joe Perchese837f9b2014-03-11 10:03:00 -07002020 pr_warn("%s governor failed, too long transition latency of HW, fallback to %s governor\n",
2021 policy->governor->name, gov->name);
Thomas Renninger6afde102007-10-02 13:28:13 -07002022 policy->governor = gov;
Rafael J. Wysockide1df262016-02-05 02:37:42 +01002023 } else {
2024 return -EINVAL;
Thomas Renninger6afde102007-10-02 13:28:13 -07002025 }
Thomas Renninger1c256242007-10-02 13:28:12 -07002026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Viresh Kumarfe492f32013-08-06 22:53:10 +05302028 if (event == CPUFREQ_GOV_POLICY_INIT)
2029 if (!try_module_get(policy->governor->owner))
2030 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Viresh Kumar63431f72015-07-27 17:58:06 +05302032 pr_debug("%s: for CPU %u, event %u\n", __func__, policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08002033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 ret = policy->governor->governor(policy, event);
2035
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002036 if (event == CPUFREQ_GOV_POLICY_INIT) {
2037 if (ret)
2038 module_put(policy->governor->owner);
2039 else
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00002040 policy->governor->initialized++;
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002041 } else if (event == CPUFREQ_GOV_POLICY_EXIT) {
2042 policy->governor->initialized--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 module_put(policy->governor->owner);
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 return ret;
2047}
2048
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002049static int cpufreq_start_governor(struct cpufreq_policy *policy)
2050{
2051 int ret;
2052
Rafael J. Wysocki3bbf8fe2016-03-21 15:47:48 +01002053 if (cpufreq_driver->get && !cpufreq_driver->setpolicy)
2054 cpufreq_update_current_freq(policy);
2055
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002056 ret = cpufreq_governor(policy, CPUFREQ_GOV_START);
2057 return ret ? ret : cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
2058}
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060int cpufreq_register_governor(struct cpufreq_governor *governor)
2061{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002062 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064 if (!governor)
2065 return -EINVAL;
2066
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002067 if (cpufreq_disabled())
2068 return -ENODEV;
2069
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002070 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05002071
Viresh Kumarb3940582013-02-01 05:42:58 +00002072 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002073 err = -EBUSY;
Viresh Kumar42f91fa2015-01-02 12:34:26 +05302074 if (!find_governor(governor->name)) {
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002075 err = 0;
2076 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078
Dave Jones32ee8c32006-02-28 00:43:23 -05002079 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002080 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081}
2082EXPORT_SYMBOL_GPL(cpufreq_register_governor);
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084void cpufreq_unregister_governor(struct cpufreq_governor *governor)
2085{
Viresh Kumar45732372015-05-12 12:22:34 +05302086 struct cpufreq_policy *policy;
2087 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 if (!governor)
2090 return;
2091
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002092 if (cpufreq_disabled())
2093 return;
2094
Viresh Kumar45732372015-05-12 12:22:34 +05302095 /* clear last_governor for all inactive policies */
2096 read_lock_irqsave(&cpufreq_driver_lock, flags);
2097 for_each_inactive_policy(policy) {
Viresh Kumar18bf3a12015-05-12 12:22:51 +05302098 if (!strcmp(policy->last_governor, governor->name)) {
2099 policy->governor = NULL;
Viresh Kumar45732372015-05-12 12:22:34 +05302100 strcpy(policy->last_governor, "\0");
Viresh Kumar18bf3a12015-05-12 12:22:51 +05302101 }
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002102 }
Viresh Kumar45732372015-05-12 12:22:34 +05302103 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002104
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002105 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002107 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return;
2109}
2110EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
2111
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113/*********************************************************************
2114 * POLICY INTERFACE *
2115 *********************************************************************/
2116
2117/**
2118 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05002119 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2120 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 *
2122 * Reads the current cpufreq policy.
2123 */
2124int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2125{
2126 struct cpufreq_policy *cpu_policy;
2127 if (!policy)
2128 return -EINVAL;
2129
2130 cpu_policy = cpufreq_cpu_get(cpu);
2131 if (!cpu_policy)
2132 return -EINVAL;
2133
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302134 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 return 0;
2138}
2139EXPORT_SYMBOL(cpufreq_get_policy);
2140
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002141/*
Viresh Kumar037ce832013-10-02 14:13:16 +05302142 * policy : current policy.
2143 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002144 */
Viresh Kumar037ce832013-10-02 14:13:16 +05302145static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302146 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147{
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002148 struct cpufreq_governor *old_gov;
2149 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Joe Perchese837f9b2014-03-11 10:03:00 -07002151 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2152 new_policy->cpu, new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302154 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
Pan Xinhuifba95732015-07-30 18:10:40 +08002156 /*
2157 * This check works well when we store new min/max freq attributes,
2158 * because new_policy is a copy of policy with one field updated.
2159 */
2160 if (new_policy->min > new_policy->max)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002161 return -EINVAL;
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302164 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002166 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08002169 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302170 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Viresh Kumarbb176f72013-06-19 14:19:33 +05302172 /*
2173 * verify the cpu speed can be set within this limit, which might be
2174 * different to the first one
2175 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302176 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08002177 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002178 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08002181 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302182 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302184 policy->min = new_policy->min;
2185 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002187 pr_debug("new min and max freqs are %u - %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002188 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002190 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302191 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002192 pr_debug("setting range\n");
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002193 return cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 }
2195
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002196 if (new_policy->governor == policy->governor) {
2197 pr_debug("cpufreq: governor limits update\n");
2198 return cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
2199 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002200
2201 pr_debug("governor switch\n");
2202
2203 /* save old, working values */
2204 old_gov = policy->governor;
2205 /* end old governor */
2206 if (old_gov) {
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02002207 cpufreq_stop_governor(policy);
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002208 cpufreq_exit_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002209 }
2210
2211 /* start new governor */
2212 policy->governor = new_policy->governor;
Viresh Kumara1317e02016-02-22 16:36:43 +05302213 ret = cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302214 if (!ret) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002215 ret = cpufreq_start_governor(policy);
2216 if (!ret) {
2217 pr_debug("cpufreq: governor change\n");
2218 return 0;
2219 }
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02002220 cpufreq_exit_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002221 }
2222
2223 /* new governor failed, so re-start old one */
2224 pr_debug("starting governor %s failed\n", policy->governor->name);
2225 if (old_gov) {
2226 policy->governor = old_gov;
Viresh Kumara1317e02016-02-22 16:36:43 +05302227 if (cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT))
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302228 policy->governor = NULL;
2229 else
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002230 cpufreq_start_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002231 }
2232
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234}
2235
2236/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2238 * @cpu: CPU which shall be re-evaluated
2239 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002240 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 * at different times.
2242 */
2243int cpufreq_update_policy(unsigned int cpu)
2244{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302245 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2246 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02002247 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002249 if (!policy)
2250 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
viresh kumarad7722d2013-10-18 19:10:15 +05302252 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002254 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302255 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302256 new_policy.min = policy->user_policy.min;
2257 new_policy.max = policy->user_policy.max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Viresh Kumarbb176f72013-06-19 14:19:33 +05302259 /*
2260 * BIOS might change freq behind our back
2261 * -> ask driver for current freq and notify governors about a change
2262 */
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01002263 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Rafael J. Wysocki742c87b2016-06-28 03:29:29 +02002264 if (cpufreq_suspended) {
2265 ret = -EAGAIN;
2266 goto unlock;
2267 }
Rafael J. Wysocki999f5722016-03-21 15:46:25 +01002268 new_policy.cur = cpufreq_update_current_freq(policy);
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302269 if (WARN_ON(!new_policy.cur)) {
2270 ret = -EIO;
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002271 goto unlock;
Viresh Kumarbd0fa9b2014-02-25 14:29:44 +05302272 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002273 }
2274
Viresh Kumar037ce832013-10-02 14:13:16 +05302275 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002277unlock:
viresh kumarad7722d2013-10-18 19:10:15 +05302278 up_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002279
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302280 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 return ret;
2282}
2283EXPORT_SYMBOL(cpufreq_update_policy);
2284
Paul Gortmaker27609842013-06-19 13:54:04 -04002285static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002286 unsigned long action, void *hcpu)
2287{
2288 unsigned int cpu = (unsigned long)hcpu;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002289
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002290 switch (action & ~CPU_TASKS_FROZEN) {
2291 case CPU_ONLINE:
Rafael J. Wysockicd73e9b2016-04-07 03:30:40 +02002292 case CPU_DOWN_FAILED:
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002293 cpufreq_online(cpu);
2294 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302295
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002296 case CPU_DOWN_PREPARE:
Viresh Kumar69cee712016-02-11 17:31:11 +05302297 cpufreq_offline(cpu);
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02002298 break;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002299 }
2300 return NOTIFY_OK;
2301}
2302
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002303static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302304 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002305};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307/*********************************************************************
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002308 * BOOST *
2309 *********************************************************************/
2310static int cpufreq_boost_set_sw(int state)
2311{
2312 struct cpufreq_frequency_table *freq_table;
2313 struct cpufreq_policy *policy;
2314 int ret = -EINVAL;
2315
Viresh Kumarf9637352015-05-12 12:20:11 +05302316 for_each_active_policy(policy) {
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002317 freq_table = cpufreq_frequency_get_table(policy->cpu);
2318 if (freq_table) {
2319 ret = cpufreq_frequency_table_cpuinfo(policy,
2320 freq_table);
2321 if (ret) {
2322 pr_err("%s: Policy frequency update failed\n",
2323 __func__);
2324 break;
2325 }
Viresh Kumar49f18562016-02-11 17:31:12 +05302326
2327 down_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002328 policy->user_policy.max = policy->max;
Viresh Kumara1317e02016-02-22 16:36:43 +05302329 cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Viresh Kumar49f18562016-02-11 17:31:12 +05302330 up_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002331 }
2332 }
2333
2334 return ret;
2335}
2336
2337int cpufreq_boost_trigger_state(int state)
2338{
2339 unsigned long flags;
2340 int ret = 0;
2341
2342 if (cpufreq_driver->boost_enabled == state)
2343 return 0;
2344
2345 write_lock_irqsave(&cpufreq_driver_lock, flags);
2346 cpufreq_driver->boost_enabled = state;
2347 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2348
2349 ret = cpufreq_driver->set_boost(state);
2350 if (ret) {
2351 write_lock_irqsave(&cpufreq_driver_lock, flags);
2352 cpufreq_driver->boost_enabled = !state;
2353 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2354
Joe Perchese837f9b2014-03-11 10:03:00 -07002355 pr_err("%s: Cannot %s BOOST\n",
2356 __func__, state ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002357 }
2358
2359 return ret;
2360}
2361
Rafael J. Wysocki41669da2015-12-27 00:23:48 +01002362static bool cpufreq_boost_supported(void)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002363{
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002364 return likely(cpufreq_driver) && cpufreq_driver->set_boost;
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002365}
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002366
Viresh Kumar44139ed2015-07-29 16:23:09 +05302367static int create_boost_sysfs_file(void)
2368{
2369 int ret;
2370
Viresh Kumarc82bd442015-10-15 21:35:23 +05302371 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302372 if (ret)
2373 pr_err("%s: cannot register global BOOST sysfs file\n",
2374 __func__);
2375
2376 return ret;
2377}
2378
2379static void remove_boost_sysfs_file(void)
2380{
2381 if (cpufreq_boost_supported())
Viresh Kumarc82bd442015-10-15 21:35:23 +05302382 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302383}
2384
2385int cpufreq_enable_boost_support(void)
2386{
2387 if (!cpufreq_driver)
2388 return -EINVAL;
2389
2390 if (cpufreq_boost_supported())
2391 return 0;
2392
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002393 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
Viresh Kumar44139ed2015-07-29 16:23:09 +05302394
2395 /* This will get removed on driver unregister */
2396 return create_boost_sysfs_file();
2397}
2398EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2399
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002400int cpufreq_boost_enabled(void)
2401{
2402 return cpufreq_driver->boost_enabled;
2403}
2404EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2405
2406/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2408 *********************************************************************/
2409
2410/**
2411 * cpufreq_register_driver - register a CPU Frequency driver
2412 * @driver_data: A struct cpufreq_driver containing the values#
2413 * submitted by the CPU Frequency driver.
2414 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302415 * Registers a CPU Frequency driver to this core code. This code
Eric Biggers63af4052016-02-20 21:50:01 -06002416 * returns zero on success, -EEXIST when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002417 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 *
2419 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002420int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
2422 unsigned long flags;
2423 int ret;
2424
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002425 if (cpufreq_disabled())
2426 return -ENODEV;
2427
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302429 !(driver_data->setpolicy || driver_data->target_index ||
Rafael J. Wysocki98322352014-03-19 12:48:30 +01002430 driver_data->target) ||
2431 (driver_data->setpolicy && (driver_data->target_index ||
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302432 driver_data->target)) ||
2433 (!!driver_data->get_intermediate != !!driver_data->target_intermediate))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 return -EINVAL;
2435
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002436 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002438 /* Protect against concurrent CPU online/offline. */
2439 get_online_cpus();
2440
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002441 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002442 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002443 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002444 ret = -EEXIST;
2445 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002447 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002448 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449
Viresh Kumarbc68b7d2015-01-02 12:34:30 +05302450 if (driver_data->setpolicy)
2451 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2452
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002453 if (cpufreq_boost_supported()) {
2454 ret = create_boost_sysfs_file();
2455 if (ret)
2456 goto err_null_driver;
2457 }
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002458
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002459 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002460 if (ret)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002461 goto err_boost_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302463 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2464 list_empty(&cpufreq_policy_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 /* if all ->init() calls failed, unregister */
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302466 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2467 driver_data->name);
2468 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 }
2470
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002471 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002472 pr_debug("driver %s up and running\n", driver_data->name);
Pankaj Gupta3834abb2016-05-16 11:07:19 +00002473 goto out;
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002474
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002475err_if_unreg:
2476 subsys_interface_unregister(&cpufreq_interface);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002477err_boost_unreg:
Viresh Kumar44139ed2015-07-29 16:23:09 +05302478 remove_boost_sysfs_file();
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002479err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002480 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002481 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002482 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Pankaj Gupta3834abb2016-05-16 11:07:19 +00002483out:
2484 put_online_cpus();
2485 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2488
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489/**
2490 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2491 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302492 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 * the right to do so, i.e. if you have succeeded in initialising before!
2494 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2495 * currently not initialised.
2496 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002497int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498{
2499 unsigned long flags;
2500
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002501 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002504 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002506 /* Protect against concurrent cpu hotplug */
2507 get_online_cpus();
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002508 subsys_interface_unregister(&cpufreq_interface);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302509 remove_boost_sysfs_file();
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002510 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002512 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302513
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002514 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302515
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002516 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002517 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
2519 return 0;
2520}
2521EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002522
Doug Anderson90de2a42014-12-23 22:09:48 -08002523/*
2524 * Stop cpufreq at shutdown to make sure it isn't holding any locks
2525 * or mutexes when secondary CPUs are halted.
2526 */
2527static struct syscore_ops cpufreq_syscore_ops = {
2528 .shutdown = cpufreq_suspend,
2529};
2530
Viresh Kumarc82bd442015-10-15 21:35:23 +05302531struct kobject *cpufreq_global_kobject;
2532EXPORT_SYMBOL(cpufreq_global_kobject);
2533
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002534static int __init cpufreq_core_init(void)
2535{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002536 if (cpufreq_disabled())
2537 return -ENODEV;
2538
Viresh Kumar8eec1022015-10-15 21:35:22 +05302539 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002540 BUG_ON(!cpufreq_global_kobject);
2541
Doug Anderson90de2a42014-12-23 22:09:48 -08002542 register_syscore_ops(&cpufreq_syscore_ops);
2543
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002544 return 0;
2545}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002546core_initcall(cpufreq_core_init);