blob: df7d112fe6218f9ea7d9ee89c84bae43bf71d11b [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>
Amit Kucheria5c238a82019-01-30 10:52:01 +053022#include <linux/cpu_cooling.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/device.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053025#include <linux/init.h>
26#include <linux/kernel_stat.h>
27#include <linux/module.h>
akpm@osdl.org3fc54d32006-01-13 15:54:22 -080028#include <linux/mutex.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053029#include <linux/slab.h>
Viresh Kumar2f0aea92014-03-04 11:00:26 +080030#include <linux/suspend.h>
Doug Anderson90de2a42014-12-23 22:09:48 -080031#include <linux/syscore_ops.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053032#include <linux/tick.h>
Thomas Renninger6f4f2722010-04-20 13:17:36 +020033#include <trace/events/power.h>
34
Viresh Kumarb4f06762015-01-27 14:06:08 +053035static LIST_HEAD(cpufreq_policy_list);
Viresh Kumarf9637352015-05-12 12:20:11 +053036
Viresh Kumarf9637352015-05-12 12:20:11 +053037/* Macros to iterate over CPU policies */
Eric Biggersfd7dc7e2016-02-21 12:53:12 -060038#define for_each_suitable_policy(__policy, __active) \
39 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list) \
40 if ((__active) == !policy_is_inactive(__policy))
Viresh Kumarf9637352015-05-12 12:20:11 +053041
42#define for_each_active_policy(__policy) \
43 for_each_suitable_policy(__policy, true)
44#define for_each_inactive_policy(__policy) \
45 for_each_suitable_policy(__policy, false)
46
47#define for_each_policy(__policy) \
Viresh Kumarb4f06762015-01-27 14:06:08 +053048 list_for_each_entry(__policy, &cpufreq_policy_list, policy_list)
49
Viresh Kumarf7b27062015-01-27 14:06:09 +053050/* Iterate over governors */
51static LIST_HEAD(cpufreq_governor_list);
52#define for_each_governor(__governor) \
53 list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/**
Dave Jonescd878472006-08-11 17:59:28 -040056 * The "cpufreq driver" - the arch- or hardware-dependent low
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 * level driver of CPUFreq support, and its spinlock. This lock
58 * also protects the cpufreq_cpu_data array.
59 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +020060static struct cpufreq_driver *cpufreq_driver;
Mike Travis7a6aedf2008-03-25 15:06:53 -070061static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
Viresh Kumarbb176f72013-06-19 14:19:33 +053062static DEFINE_RWLOCK(cpufreq_driver_lock);
Viresh Kumarbb176f72013-06-19 14:19:33 +053063
Viresh Kumar2f0aea92014-03-04 11:00:26 +080064/* Flag to suspend/resume CPUFreq governors */
65static bool cpufreq_suspended;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053067static inline bool has_target(void)
68{
69 return cpufreq_driver->target_index || cpufreq_driver->target;
70}
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* internal prototypes */
Viresh Kumard92d50a2015-01-02 12:34:29 +053073static unsigned int __cpufreq_get(struct cpufreq_policy *policy);
Rafael J. Wysockia92604b2016-05-14 01:01:46 +020074static int cpufreq_init_governor(struct cpufreq_policy *policy);
75static void cpufreq_exit_governor(struct cpufreq_policy *policy);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +010076static int cpufreq_start_governor(struct cpufreq_policy *policy);
Rafael J. Wysockia92604b2016-05-14 01:01:46 +020077static void cpufreq_stop_governor(struct cpufreq_policy *policy);
78static void cpufreq_governor_limits(struct cpufreq_policy *policy);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +020079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/**
Dave Jones32ee8c32006-02-28 00:43:23 -050081 * Two notifier lists: the "policy" list is involved in the
82 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 * "transition" list for kernel code that needs to handle
84 * changes to devices when the CPU clock speed changes.
85 * The mutex locks both lists.
86 */
Alan Sterne041c682006-03-27 01:16:30 -080087static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Sebastian Andrzej Siewiorcc85de32018-05-25 12:19:58 +020088SRCU_NOTIFIER_HEAD_STATIC(cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -040090static int off __read_mostly;
Viresh Kumarda584452012-10-26 00:51:32 +020091static int cpufreq_disabled(void)
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -040092{
93 return off;
94}
95void disable_cpufreq(void)
96{
97 off = 1;
98}
Dave Jones29464f22009-01-18 01:37:11 -050099static DEFINE_MUTEX(cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000101bool have_governor_per_policy(void)
102{
Viresh Kumar0b981e72013-10-02 14:13:18 +0530103 return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000104}
Viresh Kumar3f869d62013-05-16 05:09:56 +0000105EXPORT_SYMBOL_GPL(have_governor_per_policy);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000106
Viresh Kumar944e9a02013-05-16 05:09:57 +0000107struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
108{
109 if (have_governor_per_policy())
110 return &policy->kobj;
111 else
112 return cpufreq_global_kobject;
113}
114EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
115
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000116static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
117{
118 u64 idle_time;
119 u64 cur_wall_time;
120 u64 busy_time;
121
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100122 cur_wall_time = jiffies64_to_nsecs(get_jiffies_64());
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000123
124 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
125 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
126 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
127 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
128 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
129 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
130
131 idle_time = cur_wall_time - busy_time;
132 if (wall)
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100133 *wall = div_u64(cur_wall_time, NSEC_PER_USEC);
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000134
Frederic Weisbecker7fb13272017-01-31 04:09:19 +0100135 return div_u64(idle_time, NSEC_PER_USEC);
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000136}
137
138u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
139{
140 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
141
142 if (idle_time == -1ULL)
143 return get_cpu_idle_time_jiffy(cpu, wall);
144 else if (!io_busy)
145 idle_time += get_cpu_iowait_time_us(cpu, wall);
146
147 return idle_time;
148}
149EXPORT_SYMBOL_GPL(get_cpu_idle_time);
150
Dietmar Eggemanne7d54592017-09-26 17:41:07 +0100151__weak void arch_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq,
152 unsigned long max_freq)
153{
154}
155EXPORT_SYMBOL_GPL(arch_set_freq_scale);
156
Viresh Kumar70e9e772013-10-03 20:29:07 +0530157/*
158 * This is a generic cpufreq init() routine which can be used by cpufreq
159 * drivers of SMP systems. It will do following:
160 * - validate & show freq table passed
161 * - set policies transition latency
162 * - policy->cpus with all possible CPUs
163 */
164int cpufreq_generic_init(struct cpufreq_policy *policy,
165 struct cpufreq_frequency_table *table,
166 unsigned int transition_latency)
167{
Viresh Kumar92c99d12018-02-26 10:38:45 +0530168 policy->freq_table = table;
Viresh Kumar70e9e772013-10-03 20:29:07 +0530169 policy->cpuinfo.transition_latency = transition_latency;
170
171 /*
Shailendra Verma58405af2015-05-22 22:48:22 +0530172 * The driver only supports the SMP configuration where all processors
Viresh Kumar70e9e772013-10-03 20:29:07 +0530173 * share the clock and voltage and clock.
174 */
175 cpumask_setall(policy->cpus);
176
177 return 0;
178}
179EXPORT_SYMBOL_GPL(cpufreq_generic_init);
180
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200181struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
Viresh Kumar652ed952014-01-09 20:38:43 +0530182{
183 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
184
Viresh Kumar988bed02015-05-08 11:53:45 +0530185 return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
186}
Rafael J. Wysocki1f0bd442015-09-16 02:17:49 +0200187EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
Viresh Kumar988bed02015-05-08 11:53:45 +0530188
189unsigned int cpufreq_generic_get(unsigned int cpu)
190{
191 struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
192
Viresh Kumar652ed952014-01-09 20:38:43 +0530193 if (!policy || IS_ERR(policy->clk)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700194 pr_err("%s: No %s associated to cpu: %d\n",
195 __func__, policy ? "clk" : "policy", cpu);
Viresh Kumar652ed952014-01-09 20:38:43 +0530196 return 0;
197 }
198
199 return clk_get_rate(policy->clk) / 1000;
200}
201EXPORT_SYMBOL_GPL(cpufreq_generic_get);
202
Viresh Kumar50e9c852015-02-19 17:02:03 +0530203/**
Rafael J. Wysocki5d094fe2019-03-05 11:44:04 +0100204 * cpufreq_cpu_get - Return policy for a CPU and mark it as busy.
205 * @cpu: CPU to find the policy for.
Viresh Kumar50e9c852015-02-19 17:02:03 +0530206 *
Rafael J. Wysocki5d094fe2019-03-05 11:44:04 +0100207 * Call cpufreq_cpu_get_raw() to obtain a cpufreq policy for @cpu and increment
208 * the kobject reference counter of that policy. Return a valid policy on
209 * success or NULL on failure.
Viresh Kumar50e9c852015-02-19 17:02:03 +0530210 *
Rafael J. Wysocki5d094fe2019-03-05 11:44:04 +0100211 * The policy returned by this function has to be released with the help of
212 * cpufreq_cpu_put() to balance its kobject reference counter properly.
Viresh Kumar50e9c852015-02-19 17:02:03 +0530213 */
Viresh Kumar6eed9402013-08-06 22:53:11 +0530214struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530216 struct cpufreq_policy *policy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 unsigned long flags;
218
Viresh Kumar1b947c902015-02-19 17:02:05 +0530219 if (WARN_ON(cpu >= nr_cpu_ids))
Viresh Kumar6eed9402013-08-06 22:53:11 +0530220 return NULL;
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 /* get the cpufreq driver */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000223 read_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Viresh Kumar6eed9402013-08-06 22:53:11 +0530225 if (cpufreq_driver) {
226 /* get the CPU */
Viresh Kumar988bed02015-05-08 11:53:45 +0530227 policy = cpufreq_cpu_get_raw(cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530228 if (policy)
229 kobject_get(&policy->kobj);
230 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200231
Viresh Kumar6eed9402013-08-06 22:53:11 +0530232 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530234 return policy;
Stephen Boyda9144432012-07-20 18:14:38 +0000235}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
237
Viresh Kumar50e9c852015-02-19 17:02:03 +0530238/**
Rafael J. Wysocki5d094fe2019-03-05 11:44:04 +0100239 * cpufreq_cpu_put - Decrement kobject usage counter for cpufreq policy.
240 * @policy: cpufreq policy returned by cpufreq_cpu_get().
Viresh Kumar50e9c852015-02-19 17:02:03 +0530241 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530242void cpufreq_cpu_put(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530244 kobject_put(&policy->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
247
Rafael J. Wysocki540a37582019-03-26 12:16:58 +0100248/**
249 * cpufreq_cpu_release - Unlock a policy and decrement its usage counter.
250 * @policy: cpufreq policy returned by cpufreq_cpu_acquire().
251 */
Rafael J. Wysocki9083e492019-03-26 12:19:52 +0100252void cpufreq_cpu_release(struct cpufreq_policy *policy)
Rafael J. Wysocki540a37582019-03-26 12:16:58 +0100253{
254 if (WARN_ON(!policy))
255 return;
256
257 lockdep_assert_held(&policy->rwsem);
258
259 up_write(&policy->rwsem);
260
261 cpufreq_cpu_put(policy);
262}
263
264/**
265 * cpufreq_cpu_acquire - Find policy for a CPU, mark it as busy and lock it.
266 * @cpu: CPU to find the policy for.
267 *
268 * Call cpufreq_cpu_get() to get a reference on the cpufreq policy for @cpu and
269 * if the policy returned by it is not NULL, acquire its rwsem for writing.
270 * Return the policy if it is active or release it and return NULL otherwise.
271 *
272 * The policy returned by this function has to be released with the help of
273 * cpufreq_cpu_release() in order to release its rwsem and balance its usage
274 * counter properly.
275 */
Rafael J. Wysocki9083e492019-03-26 12:19:52 +0100276struct cpufreq_policy *cpufreq_cpu_acquire(unsigned int cpu)
Rafael J. Wysocki540a37582019-03-26 12:16:58 +0100277{
278 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
279
280 if (!policy)
281 return NULL;
282
283 down_write(&policy->rwsem);
284
285 if (policy_is_inactive(policy)) {
286 cpufreq_cpu_release(policy);
287 return NULL;
288 }
289
290 return policy;
291}
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
295 *********************************************************************/
296
297/**
298 * adjust_jiffies - adjust the system "loops_per_jiffy"
299 *
300 * This function alters the system "loops_per_jiffy" for the clock
301 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500302 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 * per-CPU loops_per_jiffy value wherever possible.
304 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800305static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
Viresh Kumar39c132e2015-01-02 12:34:34 +0530307#ifndef CONFIG_SMP
308 static unsigned long l_p_j_ref;
309 static unsigned int l_p_j_ref_freq;
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (ci->flags & CPUFREQ_CONST_LOOPS)
312 return;
313
314 if (!l_p_j_ref_freq) {
315 l_p_j_ref = loops_per_jiffy;
316 l_p_j_ref_freq = ci->old;
Joe Perchese837f9b2014-03-11 10:03:00 -0700317 pr_debug("saving %lu as reference value for loops_per_jiffy; freq is %u kHz\n",
318 l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
Viresh Kumar0b443ea2014-03-19 11:24:58 +0530320 if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530321 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
322 ci->new);
Joe Perchese837f9b2014-03-11 10:03:00 -0700323 pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
324 loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#endif
Viresh Kumar39c132e2015-01-02 12:34:34 +0530327}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Viresh Kumar20b53242018-05-10 15:00:29 +0530329/**
330 * cpufreq_notify_transition - Notify frequency transition and adjust_jiffies.
331 * @policy: cpufreq policy to enable fast frequency switching for.
332 * @freqs: contain details of the frequency update.
333 * @state: set to CPUFREQ_PRECHANGE or CPUFREQ_POSTCHANGE.
334 *
335 * This function calls the transition notifiers and the "adjust_jiffies"
336 * function. It is called twice on all CPU frequency changes that have
337 * external effects.
338 */
339static void cpufreq_notify_transition(struct cpufreq_policy *policy,
340 struct cpufreq_freqs *freqs,
341 unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 BUG_ON(irqs_disabled());
344
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000345 if (cpufreq_disabled())
346 return;
347
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200348 freqs->flags = cpufreq_driver->flags;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200349 pr_debug("notification %u of frequency transition to %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -0700350 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 switch (state) {
353 case CPUFREQ_PRECHANGE:
Viresh Kumar20b53242018-05-10 15:00:29 +0530354 /*
355 * Detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800356 * which is not equal to what the cpufreq core thinks is
357 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200359 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Viresh Kumar20b53242018-05-10 15:00:29 +0530360 if (policy->cur && (policy->cur != freqs->old)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700361 pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
362 freqs->old, policy->cur);
Dave Jonese4472cb2006-01-31 15:53:55 -0800363 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365 }
Viresh Kumar20b53242018-05-10 15:00:29 +0530366
367 for_each_cpu(freqs->cpu, policy->cpus) {
368 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
369 CPUFREQ_PRECHANGE, freqs);
370 }
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
373 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 case CPUFREQ_POSTCHANGE:
376 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Viresh Kumar20b53242018-05-10 15:00:29 +0530377 pr_debug("FREQ: %u - CPUs: %*pbl\n", freqs->new,
378 cpumask_pr_args(policy->cpus));
Viresh Kumarbb176f72013-06-19 14:19:33 +0530379
Viresh Kumar20b53242018-05-10 15:00:29 +0530380 for_each_cpu(freqs->cpu, policy->cpus) {
381 trace_cpu_frequency(freqs->new, freqs->cpu);
382 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
383 CPUFREQ_POSTCHANGE, freqs);
384 }
385
386 cpufreq_stats_record_transition(policy, freqs->new);
387 policy->cur = freqs->new;
388 }
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530389}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530391/* Do post notifications when there are chances that transition has failed */
Viresh Kumar236a9802014-03-24 13:35:46 +0530392static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530393 struct cpufreq_freqs *freqs, int transition_failed)
394{
395 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
396 if (!transition_failed)
397 return;
398
399 swap(freqs->old, freqs->new);
400 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
401 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
402}
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530403
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530404void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
405 struct cpufreq_freqs *freqs)
406{
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530407
408 /*
409 * Catch double invocations of _begin() which lead to self-deadlock.
410 * ASYNC_NOTIFICATION drivers are left out because the cpufreq core
411 * doesn't invoke _begin() on their behalf, and hence the chances of
412 * double invocations are very low. Moreover, there are scenarios
413 * where these checks can emit false-positive warnings in these
414 * drivers; so we avoid that by skipping them altogether.
415 */
416 WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
417 && current == policy->transition_task);
418
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530419wait:
420 wait_event(policy->transition_wait, !policy->transition_ongoing);
421
422 spin_lock(&policy->transition_lock);
423
424 if (unlikely(policy->transition_ongoing)) {
425 spin_unlock(&policy->transition_lock);
426 goto wait;
427 }
428
429 policy->transition_ongoing = true;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530430 policy->transition_task = current;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530431
432 spin_unlock(&policy->transition_lock);
433
434 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
435}
436EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);
437
438void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
439 struct cpufreq_freqs *freqs, int transition_failed)
440{
Igor Stoppa0e7ea2f2018-09-07 19:09:55 +0300441 if (WARN_ON(!policy->transition_ongoing))
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530442 return;
443
444 cpufreq_notify_post_transition(policy, freqs, transition_failed);
445
446 policy->transition_ongoing = false;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530447 policy->transition_task = NULL;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530448
449 wake_up(&policy->transition_wait);
450}
451EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
452
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200453/*
454 * Fast frequency switching status count. Positive means "enabled", negative
455 * means "disabled" and 0 means "not decided yet".
456 */
457static int cpufreq_fast_switch_count;
458static DEFINE_MUTEX(cpufreq_fast_switch_lock);
459
460static void cpufreq_list_transition_notifiers(void)
461{
462 struct notifier_block *nb;
463
464 pr_info("Registered transition notifiers:\n");
465
466 mutex_lock(&cpufreq_transition_notifier_list.mutex);
467
468 for (nb = cpufreq_transition_notifier_list.head; nb; nb = nb->next)
469 pr_info("%pF\n", nb->notifier_call);
470
471 mutex_unlock(&cpufreq_transition_notifier_list.mutex);
472}
473
474/**
475 * cpufreq_enable_fast_switch - Enable fast frequency switching for policy.
476 * @policy: cpufreq policy to enable fast frequency switching for.
477 *
478 * Try to enable fast frequency switching for @policy.
479 *
480 * The attempt will fail if there is at least one transition notifier registered
481 * at this point, as fast frequency switching is quite fundamentally at odds
482 * with transition notifiers. Thus if successful, it will make registration of
483 * transition notifiers fail going forward.
484 */
485void cpufreq_enable_fast_switch(struct cpufreq_policy *policy)
486{
487 lockdep_assert_held(&policy->rwsem);
488
489 if (!policy->fast_switch_possible)
490 return;
491
492 mutex_lock(&cpufreq_fast_switch_lock);
493 if (cpufreq_fast_switch_count >= 0) {
494 cpufreq_fast_switch_count++;
495 policy->fast_switch_enabled = true;
496 } else {
497 pr_warn("CPU%u: Fast frequency switching not enabled\n",
498 policy->cpu);
499 cpufreq_list_transition_notifiers();
500 }
501 mutex_unlock(&cpufreq_fast_switch_lock);
502}
503EXPORT_SYMBOL_GPL(cpufreq_enable_fast_switch);
504
Rafael J. Wysocki6c9d9c82016-04-07 23:38:46 +0200505/**
506 * cpufreq_disable_fast_switch - Disable fast frequency switching for policy.
507 * @policy: cpufreq policy to disable fast frequency switching for.
508 */
509void cpufreq_disable_fast_switch(struct cpufreq_policy *policy)
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200510{
511 mutex_lock(&cpufreq_fast_switch_lock);
512 if (policy->fast_switch_enabled) {
513 policy->fast_switch_enabled = false;
514 if (!WARN_ON(cpufreq_fast_switch_count <= 0))
515 cpufreq_fast_switch_count--;
516 }
517 mutex_unlock(&cpufreq_fast_switch_lock);
518}
Rafael J. Wysocki6c9d9c82016-04-07 23:38:46 +0200519EXPORT_SYMBOL_GPL(cpufreq_disable_fast_switch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Steve Mucklee3c06232016-07-13 13:25:25 -0700521/**
522 * cpufreq_driver_resolve_freq - Map a target frequency to a driver-supported
523 * one.
524 * @target_freq: target frequency to resolve.
525 *
526 * The target to driver frequency mapping is cached in the policy.
527 *
528 * Return: Lowest driver-supported frequency greater than or equal to the
529 * given target_freq, subject to policy (min/max) and driver limitations.
530 */
531unsigned int cpufreq_driver_resolve_freq(struct cpufreq_policy *policy,
532 unsigned int target_freq)
533{
534 target_freq = clamp_val(target_freq, policy->min, policy->max);
535 policy->cached_target_freq = target_freq;
Viresh Kumarabe8bd02016-07-21 14:39:26 -0700536
537 if (cpufreq_driver->target_index) {
538 int idx;
539
540 idx = cpufreq_frequency_table_target(policy, target_freq,
541 CPUFREQ_RELATION_L);
542 policy->cached_resolved_idx = idx;
543 return policy->freq_table[idx].frequency;
544 }
545
Steve Mucklee3c06232016-07-13 13:25:25 -0700546 if (cpufreq_driver->resolve_freq)
547 return cpufreq_driver->resolve_freq(policy, target_freq);
Viresh Kumarabe8bd02016-07-21 14:39:26 -0700548
549 return target_freq;
Steve Mucklee3c06232016-07-13 13:25:25 -0700550}
Steve Muckleae2c1ca2016-07-21 19:24:38 -0700551EXPORT_SYMBOL_GPL(cpufreq_driver_resolve_freq);
Steve Mucklee3c06232016-07-13 13:25:25 -0700552
Viresh Kumaraa7519a2017-07-19 15:42:42 +0530553unsigned int cpufreq_policy_transition_delay_us(struct cpufreq_policy *policy)
554{
555 unsigned int latency;
556
557 if (policy->transition_delay_us)
558 return policy->transition_delay_us;
559
560 latency = policy->cpuinfo.transition_latency / NSEC_PER_USEC;
Viresh Kumare948bc82017-08-17 09:12:27 +0530561 if (latency) {
562 /*
563 * For platforms that can change the frequency very fast (< 10
564 * us), the above formula gives a decent transition delay. But
565 * for platforms where transition_latency is in milliseconds, it
566 * ends up giving unrealistic values.
567 *
568 * Cap the default transition delay to 10 ms, which seems to be
569 * a reasonable amount of time after which we should reevaluate
570 * the frequency.
571 */
572 return min(latency * LATENCY_MULTIPLIER, (unsigned int)10000);
573 }
Viresh Kumaraa7519a2017-07-19 15:42:42 +0530574
575 return LATENCY_MULTIPLIER;
576}
577EXPORT_SYMBOL_GPL(cpufreq_policy_transition_delay_us);
578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579/*********************************************************************
580 * SYSFS INTERFACE *
581 *********************************************************************/
Rashika Kheria8a5c74a2014-02-26 22:12:42 +0530582static ssize_t show_boost(struct kobject *kobj,
Viresh Kumar625c85a2019-01-25 12:53:07 +0530583 struct kobj_attribute *attr, char *buf)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100584{
585 return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
586}
587
Viresh Kumar625c85a2019-01-25 12:53:07 +0530588static ssize_t store_boost(struct kobject *kobj, struct kobj_attribute *attr,
589 const char *buf, size_t count)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100590{
591 int ret, enable;
592
593 ret = sscanf(buf, "%d", &enable);
594 if (ret != 1 || enable < 0 || enable > 1)
595 return -EINVAL;
596
597 if (cpufreq_boost_trigger_state(enable)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700598 pr_err("%s: Cannot %s BOOST!\n",
599 __func__, enable ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100600 return -EINVAL;
601 }
602
Joe Perchese837f9b2014-03-11 10:03:00 -0700603 pr_debug("%s: cpufreq BOOST %s\n",
604 __func__, enable ? "enabled" : "disabled");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100605
606 return count;
607}
608define_one_global_rw(boost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530610static struct cpufreq_governor *find_governor(const char *str_governor)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700611{
612 struct cpufreq_governor *t;
613
Viresh Kumarf7b27062015-01-27 14:06:09 +0530614 for_each_governor(t)
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200615 if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700616 return t;
617
618 return NULL;
619}
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621/**
622 * cpufreq_parse_governor - parse a governor string
623 */
Rafael J. Wysockiae0ff892017-11-23 01:24:05 +0100624static int cpufreq_parse_governor(char *str_governor,
625 struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200627 if (cpufreq_driver->setpolicy) {
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200628 if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
Rafael J. Wysockiae0ff892017-11-23 01:24:05 +0100629 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100630 return 0;
631 }
632
633 if (!strncasecmp(str_governor, "powersave", CPUFREQ_NAME_LEN)) {
Rafael J. Wysockiae0ff892017-11-23 01:24:05 +0100634 policy->policy = CPUFREQ_POLICY_POWERSAVE;
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100635 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
Viresh Kumar2e1cc3a2015-01-02 12:34:27 +0530637 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700639
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800640 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700641
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530642 t = find_governor(str_governor);
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100643 if (!t) {
Kees Cook1a8e1462011-05-04 08:38:56 -0700644 int ret;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700645
Kees Cook1a8e1462011-05-04 08:38:56 -0700646 mutex_unlock(&cpufreq_governor_mutex);
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100647
Kees Cook1a8e1462011-05-04 08:38:56 -0700648 ret = request_module("cpufreq_%s", str_governor);
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100649 if (ret)
650 return -EINVAL;
651
Kees Cook1a8e1462011-05-04 08:38:56 -0700652 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700653
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100654 t = find_governor(str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
Rafael J. Wysockia8b149d2017-11-23 14:27:07 +0100656 if (t && !try_module_get(t->owner))
657 t = NULL;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700658
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800659 mutex_unlock(&cpufreq_governor_mutex);
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100660
661 if (t) {
Rafael J. Wysockiae0ff892017-11-23 01:24:05 +0100662 policy->governor = t;
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100663 return 0;
664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100666
667 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530671 * cpufreq_per_cpu_attr_read() / show_##file_name() -
672 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 *
674 * Write out information from cpufreq_driver->policy[cpu]; object must be
675 * "unsigned int".
676 */
677
Dave Jones32ee8c32006-02-28 00:43:23 -0500678#define show_one(file_name, object) \
679static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500680(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500681{ \
Dave Jones29464f22009-01-18 01:37:11 -0500682 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
685show_one(cpuinfo_min_freq, cpuinfo.min_freq);
686show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100687show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688show_one(scaling_min_freq, min);
689show_one(scaling_max_freq, max);
Dirk Brandewiec034b022014-10-13 08:37:40 -0700690
Len Brownf8475ce2017-06-23 22:11:52 -0700691__weak unsigned int arch_freq_get_on_cpu(int cpu)
692{
693 return 0;
694}
695
Viresh Kumar09347b22015-01-02 12:34:24 +0530696static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
Dirk Brandewiec034b022014-10-13 08:37:40 -0700697{
698 ssize_t ret;
Len Brownf8475ce2017-06-23 22:11:52 -0700699 unsigned int freq;
Dirk Brandewiec034b022014-10-13 08:37:40 -0700700
Len Brownf8475ce2017-06-23 22:11:52 -0700701 freq = arch_freq_get_on_cpu(policy->cpu);
702 if (freq)
703 ret = sprintf(buf, "%u\n", freq);
704 else if (cpufreq_driver && cpufreq_driver->setpolicy &&
705 cpufreq_driver->get)
Dirk Brandewiec034b022014-10-13 08:37:40 -0700706 ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
707 else
708 ret = sprintf(buf, "%u\n", policy->cur);
709 return ret;
710}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712/**
713 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
714 */
715#define store_one(file_name, object) \
716static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500717(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{ \
Vince Hsu619c144c2014-11-10 14:14:50 +0800719 int ret, temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 struct cpufreq_policy new_policy; \
721 \
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530722 memcpy(&new_policy, policy, sizeof(*policy)); \
Tao Wangc7d1f112018-05-26 15:16:48 +0800723 new_policy.min = policy->user_policy.min; \
724 new_policy.max = policy->user_policy.max; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 \
Dave Jones29464f22009-01-18 01:37:11 -0500726 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (ret != 1) \
728 return -EINVAL; \
729 \
Vince Hsu619c144c2014-11-10 14:14:50 +0800730 temp = new_policy.object; \
Viresh Kumar037ce832013-10-02 14:13:16 +0530731 ret = cpufreq_set_policy(policy, &new_policy); \
Vince Hsu619c144c2014-11-10 14:14:50 +0800732 if (!ret) \
733 policy->user_policy.object = temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 \
735 return ret ? ret : count; \
736}
737
Dave Jones29464f22009-01-18 01:37:11 -0500738store_one(scaling_min_freq, min);
739store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741/**
742 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
743 */
Dave Jones905d77c2008-03-05 14:28:32 -0500744static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
745 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Viresh Kumard92d50a2015-01-02 12:34:29 +0530747 unsigned int cur_freq = __cpufreq_get(policy);
Rafael J. Wysocki9b4f6032017-03-15 00:12:16 +0100748
749 if (cur_freq)
750 return sprintf(buf, "%u\n", cur_freq);
751
752 return sprintf(buf, "<unknown>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755/**
756 * show_scaling_governor - show the current policy for the specified CPU
757 */
Dave Jones905d77c2008-03-05 14:28:32 -0500758static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Dave Jones29464f22009-01-18 01:37:11 -0500760 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return sprintf(buf, "powersave\n");
762 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
763 return sprintf(buf, "performance\n");
764 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200765 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500766 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return -EINVAL;
768}
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770/**
771 * store_scaling_governor - store policy for the specified CPU
772 */
Dave Jones905d77c2008-03-05 14:28:32 -0500773static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
774 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530776 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 char str_governor[16];
778 struct cpufreq_policy new_policy;
779
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530780 memcpy(&new_policy, policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Dave Jones29464f22009-01-18 01:37:11 -0500782 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (ret != 1)
784 return -EINVAL;
785
Rafael J. Wysockiae0ff892017-11-23 01:24:05 +0100786 if (cpufreq_parse_governor(str_governor, &new_policy))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 return -EINVAL;
788
Viresh Kumar037ce832013-10-02 14:13:16 +0530789 ret = cpufreq_set_policy(policy, &new_policy);
Rafael J. Wysockia8b149d2017-11-23 14:27:07 +0100790
791 if (new_policy.governor)
792 module_put(new_policy.governor->owner);
793
Viresh Kumar88dc4382015-08-03 08:36:18 +0530794 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797/**
798 * show_scaling_driver - show the cpufreq driver currently loaded
799 */
Dave Jones905d77c2008-03-05 14:28:32 -0500800static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200802 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
805/**
806 * show_scaling_available_governors - show the available CPUfreq governors
807 */
Dave Jones905d77c2008-03-05 14:28:32 -0500808static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
809 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 ssize_t i = 0;
812 struct cpufreq_governor *t;
813
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530814 if (!has_target()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 i += sprintf(buf, "performance powersave");
816 goto out;
817 }
818
Viresh Kumarf7b27062015-01-27 14:06:09 +0530819 for_each_governor(t) {
Dave Jones29464f22009-01-18 01:37:11 -0500820 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
821 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200823 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500825out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 i += sprintf(&buf[i], "\n");
827 return i;
828}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700829
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800830ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 ssize_t i = 0;
833 unsigned int cpu;
834
Rusty Russell835481d2009-01-04 05:18:06 -0800835 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (i)
837 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
838 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
839 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500840 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842 i += sprintf(&buf[i], "\n");
843 return i;
844}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800845EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700847/**
848 * show_related_cpus - show the CPUs affected by each transition even if
849 * hw coordination is in use
850 */
851static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
852{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800853 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700854}
855
856/**
857 * show_affected_cpus - show the CPUs affected by each transition
858 */
859static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
860{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800861 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700862}
863
Venki Pallipadi9e769882007-10-26 10:18:21 -0700864static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500865 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700866{
867 unsigned int freq = 0;
868 unsigned int ret;
869
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700870 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700871 return -EINVAL;
872
873 ret = sscanf(buf, "%u", &freq);
874 if (ret != 1)
875 return -EINVAL;
876
877 policy->governor->store_setspeed(policy, freq);
878
879 return count;
880}
881
882static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
883{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700884 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700885 return sprintf(buf, "<unsupported>\n");
886
887 return policy->governor->show_setspeed(policy, buf);
888}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Thomas Renningere2f74f32009-11-19 12:31:01 +0100890/**
viresh kumar8bf1ac722012-10-23 01:23:33 +0200891 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100892 */
893static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
894{
895 unsigned int limit;
896 int ret;
Yue Hub23aa312019-04-16 10:40:27 +0800897 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
898 if (!ret)
899 return sprintf(buf, "%u\n", limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100900 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
901}
902
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200903cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
904cpufreq_freq_attr_ro(cpuinfo_min_freq);
905cpufreq_freq_attr_ro(cpuinfo_max_freq);
906cpufreq_freq_attr_ro(cpuinfo_transition_latency);
907cpufreq_freq_attr_ro(scaling_available_governors);
908cpufreq_freq_attr_ro(scaling_driver);
909cpufreq_freq_attr_ro(scaling_cur_freq);
910cpufreq_freq_attr_ro(bios_limit);
911cpufreq_freq_attr_ro(related_cpus);
912cpufreq_freq_attr_ro(affected_cpus);
913cpufreq_freq_attr_rw(scaling_min_freq);
914cpufreq_freq_attr_rw(scaling_max_freq);
915cpufreq_freq_attr_rw(scaling_governor);
916cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Dave Jones905d77c2008-03-05 14:28:32 -0500918static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 &cpuinfo_min_freq.attr,
920 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100921 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 &scaling_min_freq.attr,
923 &scaling_max_freq.attr,
924 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700925 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 &scaling_governor.attr,
927 &scaling_driver.attr,
928 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700929 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 NULL
931};
932
Dave Jones29464f22009-01-18 01:37:11 -0500933#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
934#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Dave Jones29464f22009-01-18 01:37:11 -0500936static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Dave Jones905d77c2008-03-05 14:28:32 -0500938 struct cpufreq_policy *policy = to_policy(kobj);
939 struct freq_attr *fattr = to_attr(attr);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530940 ssize_t ret;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530941
viresh kumarad7722d2013-10-18 19:10:15 +0530942 down_read(&policy->rwsem);
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100943 ret = fattr->show(policy, buf);
viresh kumarad7722d2013-10-18 19:10:15 +0530944 up_read(&policy->rwsem);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return ret;
947}
948
Dave Jones905d77c2008-03-05 14:28:32 -0500949static ssize_t store(struct kobject *kobj, struct attribute *attr,
950 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Dave Jones905d77c2008-03-05 14:28:32 -0500952 struct cpufreq_policy *policy = to_policy(kobj);
953 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500954 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530955
Waiman Long9b3d9bb2018-07-24 14:26:05 -0400956 /*
957 * cpus_read_trylock() is used here to work around a circular lock
958 * dependency problem with respect to the cpufreq_register_driver().
959 */
960 if (!cpus_read_trylock())
961 return -EBUSY;
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530962
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100963 if (cpu_online(policy->cpu)) {
964 down_write(&policy->rwsem);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530965 ret = fattr->store(policy, buf, count);
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100966 up_write(&policy->rwsem);
967 }
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530968
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +0200969 cpus_read_unlock();
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return ret;
972}
973
Dave Jones905d77c2008-03-05 14:28:32 -0500974static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Dave Jones905d77c2008-03-05 14:28:32 -0500976 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200977 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 complete(&policy->kobj_unregister);
979}
980
Emese Revfy52cf25d2010-01-19 02:58:23 +0100981static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 .show = show,
983 .store = store,
984};
985
986static struct kobj_type ktype_cpufreq = {
987 .sysfs_ops = &sysfs_ops,
988 .default_attrs = default_attrs,
989 .release = cpufreq_sysfs_release,
990};
991
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +0200992static void add_cpu_dev_symlink(struct cpufreq_policy *policy, unsigned int cpu)
Viresh Kumar87549142015-06-10 02:13:21 +0200993{
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +0200994 struct device *dev = get_cpu_device(cpu);
995
996 if (!dev)
997 return;
998
999 if (cpumask_test_and_set_cpu(cpu, policy->real_cpus))
1000 return;
1001
Viresh Kumar266198042016-09-12 12:07:05 +05301002 dev_dbg(dev, "%s: Adding symlink\n", __func__);
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001003 if (sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq"))
1004 dev_err(dev, "cpufreq symlink creation failed\n");
Viresh Kumar87549142015-06-10 02:13:21 +02001005}
1006
Viresh Kumar266198042016-09-12 12:07:05 +05301007static void remove_cpu_dev_symlink(struct cpufreq_policy *policy,
1008 struct device *dev)
Viresh Kumar87549142015-06-10 02:13:21 +02001009{
Viresh Kumar266198042016-09-12 12:07:05 +05301010 dev_dbg(dev, "%s: Removing symlink\n", __func__);
1011 sysfs_remove_link(&dev->kobj, "cpufreq");
Viresh Kumar87549142015-06-10 02:13:21 +02001012}
1013
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001014static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
Dave Jones909a6942009-07-08 18:05:42 -04001015{
1016 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -04001017 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -04001018
Dave Jones909a6942009-07-08 18:05:42 -04001019 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001020 drv_attr = cpufreq_driver->attr;
Viresh Kumarf13f1182015-01-02 12:34:23 +05301021 while (drv_attr && *drv_attr) {
Dave Jones909a6942009-07-08 18:05:42 -04001022 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
1023 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001024 return ret;
Dave Jones909a6942009-07-08 18:05:42 -04001025 drv_attr++;
1026 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001027 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -04001028 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
1029 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001030 return ret;
Dave Jones909a6942009-07-08 18:05:42 -04001031 }
Dirk Brandewiec034b022014-10-13 08:37:40 -07001032
1033 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
1034 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001035 return ret;
Dirk Brandewiec034b022014-10-13 08:37:40 -07001036
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001037 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +01001038 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
1039 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001040 return ret;
Thomas Renningere2f74f32009-11-19 12:31:01 +01001041 }
Dave Jones909a6942009-07-08 18:05:42 -04001042
Viresh Kumar266198042016-09-12 12:07:05 +05301043 return 0;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301044}
1045
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001046__weak struct cpufreq_governor *cpufreq_default_governor(void)
1047{
1048 return NULL;
1049}
1050
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301051static int cpufreq_init_policy(struct cpufreq_policy *policy)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301052{
viresh kumar6e2c89d2014-03-04 11:43:59 +08001053 struct cpufreq_governor *gov = NULL;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301054 struct cpufreq_policy new_policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301055
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301056 memcpy(&new_policy, policy, sizeof(*policy));
Jason Barona27a9ab2013-12-19 22:50:50 +00001057
viresh kumar6e2c89d2014-03-04 11:43:59 +08001058 /* Update governor of new_policy to the governor used before hotplug */
Viresh Kumar45732372015-05-12 12:22:34 +05301059 gov = find_governor(policy->last_governor);
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001060 if (gov) {
viresh kumar6e2c89d2014-03-04 11:43:59 +08001061 pr_debug("Restoring governor %s for cpu %d\n",
1062 policy->governor->name, policy->cpu);
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001063 } else {
1064 gov = cpufreq_default_governor();
1065 if (!gov)
1066 return -ENODATA;
1067 }
viresh kumar6e2c89d2014-03-04 11:43:59 +08001068
1069 new_policy.governor = gov;
1070
Srinivas Pandruvada69030dd12015-12-01 16:52:14 -08001071 /* Use the default policy if there is no last_policy. */
1072 if (cpufreq_driver->setpolicy) {
1073 if (policy->last_policy)
1074 new_policy.policy = policy->last_policy;
1075 else
Rafael J. Wysockiae0ff892017-11-23 01:24:05 +01001076 cpufreq_parse_governor(gov->name, &new_policy);
Srinivas Pandruvada69030dd12015-12-01 16:52:14 -08001077 }
Dave Jonesecf7e462009-07-08 18:48:47 -04001078 /* set default policy */
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301079 return cpufreq_set_policy(policy, &new_policy);
Dave Jones909a6942009-07-08 18:05:42 -04001080}
1081
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001082static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
Viresh Kumarfcf80582013-01-29 14:39:08 +00001083{
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301084 int ret = 0;
Viresh Kumarfcf80582013-01-29 14:39:08 +00001085
Viresh Kumarbb29ae12015-02-19 17:02:06 +05301086 /* Has this CPU been taken care of already? */
1087 if (cpumask_test_cpu(cpu, policy->cpus))
1088 return 0;
1089
Viresh Kumar49f18562016-02-11 17:31:12 +05301090 down_write(&policy->rwsem);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02001091 if (has_target())
1092 cpufreq_stop_governor(policy);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001093
Viresh Kumarfcf80582013-01-29 14:39:08 +00001094 cpumask_set_cpu(cpu, policy->cpus);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301095
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301096 if (has_target()) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001097 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301098 if (ret)
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301099 pr_err("%s: Failed to start governor\n", __func__);
Viresh Kumar820c6ca2013-04-22 00:48:03 +02001100 }
Viresh Kumar49f18562016-02-11 17:31:12 +05301101 up_write(&policy->rwsem);
1102 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +00001103}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Viresh Kumar11eb69b2016-02-22 16:36:42 +05301105static void handle_update(struct work_struct *work)
1106{
1107 struct cpufreq_policy *policy =
1108 container_of(work, struct cpufreq_policy, update);
1109 unsigned int cpu = policy->cpu;
1110 pr_debug("handle_update for cpu %u called\n", cpu);
1111 cpufreq_update_policy(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001114static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301115{
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301116 struct cpufreq_policy *policy;
Viresh Kumaredd4a892016-03-03 14:51:33 +05301117 int ret;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301118
1119 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
1120 if (!policy)
1121 return NULL;
1122
1123 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
1124 goto err_free_policy;
1125
1126 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
1127 goto err_free_cpumask;
1128
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001129 if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
1130 goto err_free_rcpumask;
1131
Viresh Kumaredd4a892016-03-03 14:51:33 +05301132 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
1133 cpufreq_global_kobject, "policy%u", cpu);
1134 if (ret) {
1135 pr_err("%s: failed to init policy->kobj: %d\n", __func__, ret);
1136 goto err_free_real_cpus;
1137 }
1138
Lukasz Majewskic88a1f82013-08-06 22:53:08 +05301139 INIT_LIST_HEAD(&policy->policy_list);
viresh kumarad7722d2013-10-18 19:10:15 +05301140 init_rwsem(&policy->rwsem);
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +05301141 spin_lock_init(&policy->transition_lock);
1142 init_waitqueue_head(&policy->transition_wait);
Viresh Kumar818c5712015-01-02 12:34:38 +05301143 init_completion(&policy->kobj_unregister);
1144 INIT_WORK(&policy->update, handle_update);
viresh kumarad7722d2013-10-18 19:10:15 +05301145
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001146 policy->cpu = cpu;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301147 return policy;
1148
Viresh Kumaredd4a892016-03-03 14:51:33 +05301149err_free_real_cpus:
1150 free_cpumask_var(policy->real_cpus);
Viresh Kumar2fc33842015-06-08 18:25:29 +05301151err_free_rcpumask:
1152 free_cpumask_var(policy->related_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301153err_free_cpumask:
1154 free_cpumask_var(policy->cpus);
1155err_free_policy:
1156 kfree(policy);
1157
1158 return NULL;
1159}
1160
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301161static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy)
Viresh Kumar42f921a2013-12-20 21:26:02 +05301162{
1163 struct kobject *kobj;
1164 struct completion *cmp;
1165
Viresh Kumar87549142015-06-10 02:13:21 +02001166 down_write(&policy->rwsem);
Rafael J. Wysocki1aefc752016-05-31 22:14:44 +02001167 cpufreq_stats_free_table(policy);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301168 kobj = &policy->kobj;
1169 cmp = &policy->kobj_unregister;
Viresh Kumar87549142015-06-10 02:13:21 +02001170 up_write(&policy->rwsem);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301171 kobject_put(kobj);
1172
1173 /*
1174 * We need to make sure that the underlying kobj is
1175 * actually not referenced anymore by anybody before we
1176 * proceed with unloading.
1177 */
1178 pr_debug("waiting for dropping of refcount\n");
1179 wait_for_completion(cmp);
1180 pr_debug("wait complete\n");
1181}
1182
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301183static void cpufreq_policy_free(struct cpufreq_policy *policy)
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301184{
Viresh Kumar988bed02015-05-08 11:53:45 +05301185 unsigned long flags;
1186 int cpu;
1187
1188 /* Remove policy from list */
1189 write_lock_irqsave(&cpufreq_driver_lock, flags);
1190 list_del(&policy->policy_list);
1191
1192 for_each_cpu(cpu, policy->related_cpus)
1193 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1194 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1195
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301196 cpufreq_policy_put_kobj(policy);
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001197 free_cpumask_var(policy->real_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301198 free_cpumask_var(policy->related_cpus);
1199 free_cpumask_var(policy->cpus);
1200 kfree(policy);
1201}
1202
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001203static int cpufreq_online(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Viresh Kumar7f0c0202015-01-02 12:34:32 +05301205 struct cpufreq_policy *policy;
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001206 bool new_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 unsigned long flags;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001208 unsigned int j;
1209 int ret;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001210
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001211 pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301212
Viresh Kumarbb29ae12015-02-19 17:02:06 +05301213 /* Check if this CPU already has a policy to manage it */
Viresh Kumar9104bb22015-05-12 12:22:12 +05301214 policy = per_cpu(cpufreq_cpu_data, cpu);
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001215 if (policy) {
Viresh Kumar9104bb22015-05-12 12:22:12 +05301216 WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001217 if (!policy_is_inactive(policy))
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001218 return cpufreq_add_policy_cpu(policy, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001220 /* This is the only online CPU for the policy. Start over. */
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001221 new_policy = false;
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001222 down_write(&policy->rwsem);
1223 policy->cpu = cpu;
1224 policy->governor = NULL;
1225 up_write(&policy->rwsem);
1226 } else {
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001227 new_policy = true;
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001228 policy = cpufreq_policy_alloc(cpu);
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001229 if (!policy)
Rafael J. Wysockid4d854d2015-07-27 23:11:30 +02001230 return -ENOMEM;
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001231 }
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301232
Viresh Kumar91a12e92019-02-12 16:36:04 +05301233 if (!new_policy && cpufreq_driver->online) {
1234 ret = cpufreq_driver->online(policy);
1235 if (ret) {
1236 pr_debug("%s: %d: initialization failed\n", __func__,
1237 __LINE__);
1238 goto out_exit_policy;
1239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Viresh Kumar91a12e92019-02-12 16:36:04 +05301241 /* Recover policy->cpus using related_cpus */
1242 cpumask_copy(policy->cpus, policy->related_cpus);
1243 } else {
1244 cpumask_copy(policy->cpus, cpumask_of(cpu));
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001245
Viresh Kumar91a12e92019-02-12 16:36:04 +05301246 /*
1247 * Call driver. From then on the cpufreq must be able
1248 * to accept all calls to ->verify and ->setpolicy for this CPU.
1249 */
1250 ret = cpufreq_driver->init(policy);
1251 if (ret) {
1252 pr_debug("%s: %d: initialization failed\n", __func__,
1253 __LINE__);
1254 goto out_free_policy;
1255 }
Viresh Kumard417e062018-02-22 11:29:44 +05301256
Viresh Kumar91a12e92019-02-12 16:36:04 +05301257 ret = cpufreq_table_validate_and_sort(policy);
1258 if (ret)
1259 goto out_exit_policy;
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001260
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001261 /* related_cpus should at least include policy->cpus. */
Viresh Kumar0998a032015-10-15 21:35:21 +05301262 cpumask_copy(policy->related_cpus, policy->cpus);
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001263 }
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001264
Viresh Kumar91a12e92019-02-12 16:36:04 +05301265 down_write(&policy->rwsem);
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001266 /*
1267 * affected cpus must always be the one, which are online. We aren't
1268 * managing offline cpus here.
1269 */
1270 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1271
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001272 if (new_policy) {
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001273 policy->user_policy.min = policy->min;
1274 policy->user_policy.max = policy->max;
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001275
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001276 for_each_cpu(j, policy->related_cpus) {
Viresh Kumar988bed02015-05-08 11:53:45 +05301277 per_cpu(cpufreq_cpu_data, j) = policy;
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001278 add_cpu_dev_symlink(policy, j);
1279 }
Viresh Kumarff010472017-03-21 11:36:06 +05301280 } else {
1281 policy->min = policy->user_policy.min;
1282 policy->max = policy->user_policy.max;
Viresh Kumar988bed02015-05-08 11:53:45 +05301283 }
Viresh Kumar652ed952014-01-09 20:38:43 +05301284
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01001285 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Viresh Kumarda60ce92013-10-03 20:28:30 +05301286 policy->cur = cpufreq_driver->get(policy->cpu);
1287 if (!policy->cur) {
1288 pr_err("%s: ->get() failed\n", __func__);
Viresh Kumard417e062018-02-22 11:29:44 +05301289 goto out_destroy_policy;
Viresh Kumarda60ce92013-10-03 20:28:30 +05301290 }
1291 }
1292
Viresh Kumard3916692013-12-03 11:20:46 +05301293 /*
1294 * Sometimes boot loaders set CPU frequency to a value outside of
1295 * frequency table present with cpufreq core. In such cases CPU might be
1296 * unstable if it has to run on that frequency for long duration of time
1297 * and so its better to set it to a frequency which is specified in
1298 * freq-table. This also makes cpufreq stats inconsistent as
1299 * cpufreq-stats would fail to register because current frequency of CPU
1300 * isn't found in freq-table.
1301 *
1302 * Because we don't want this change to effect boot process badly, we go
1303 * for the next freq which is >= policy->cur ('cur' must be set by now,
1304 * otherwise we will end up setting freq to lowest of the table as 'cur'
1305 * is initialized to zero).
1306 *
1307 * We are passing target-freq as "policy->cur - 1" otherwise
1308 * __cpufreq_driver_target() would simply fail, as policy->cur will be
1309 * equal to target-freq.
1310 */
1311 if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
1312 && has_target()) {
1313 /* Are we running at unknown frequency ? */
1314 ret = cpufreq_frequency_table_get_index(policy, policy->cur);
1315 if (ret == -EINVAL) {
1316 /* Warn user and fix it */
1317 pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
1318 __func__, policy->cpu, policy->cur);
1319 ret = __cpufreq_driver_target(policy, policy->cur - 1,
1320 CPUFREQ_RELATION_L);
1321
1322 /*
1323 * Reaching here after boot in a few seconds may not
1324 * mean that system will remain stable at "unknown"
1325 * frequency for longer duration. Hence, a BUG_ON().
1326 */
1327 BUG_ON(ret);
1328 pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
1329 __func__, policy->cpu, policy->cur);
1330 }
1331 }
1332
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001333 if (new_policy) {
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001334 ret = cpufreq_add_dev_interface(policy);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301335 if (ret)
Viresh Kumard417e062018-02-22 11:29:44 +05301336 goto out_destroy_policy;
Rafael J. Wysocki1aefc752016-05-31 22:14:44 +02001337
1338 cpufreq_stats_create_table(policy);
Dave Jones8ff69732006-03-05 03:37:23 -05001339
Viresh Kumar988bed02015-05-08 11:53:45 +05301340 write_lock_irqsave(&cpufreq_driver_lock, flags);
1341 list_add(&policy->policy_list, &cpufreq_policy_list);
1342 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1343 }
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301344
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301345 ret = cpufreq_init_policy(policy);
1346 if (ret) {
1347 pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
1348 __func__, cpu, ret);
Viresh Kumard417e062018-02-22 11:29:44 +05301349 goto out_destroy_policy;
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301350 }
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301351
Viresh Kumar4e97b632014-03-04 11:44:01 +08001352 up_write(&policy->rwsem);
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301353
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001354 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301355
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301356 /* Callback for handling stuff after policy is ready */
1357 if (cpufreq_driver->ready)
1358 cpufreq_driver->ready(policy);
1359
Amit Kucheria5c238a82019-01-30 10:52:01 +05301360 if (IS_ENABLED(CONFIG_CPU_THERMAL) &&
1361 cpufreq_driver->flags & CPUFREQ_IS_COOLING_DEV)
1362 policy->cdev = of_cpufreq_cooling_register(policy);
1363
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001364 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return 0;
1367
Viresh Kumard417e062018-02-22 11:29:44 +05301368out_destroy_policy:
Viresh Kumarb24b6472018-02-22 11:29:43 +05301369 for_each_cpu(j, policy->real_cpus)
1370 remove_cpu_dev_symlink(policy, get_cpu_device(j));
1371
Prarit Bhargava7106e022014-09-10 10:12:08 -04001372 up_write(&policy->rwsem);
1373
Viresh Kumard417e062018-02-22 11:29:44 +05301374out_exit_policy:
Viresh Kumarda60ce92013-10-03 20:28:30 +05301375 if (cpufreq_driver->exit)
1376 cpufreq_driver->exit(policy);
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001377
Viresh Kumar8101f992015-07-08 15:12:15 +05301378out_free_policy:
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301379 cpufreq_policy_free(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return ret;
1381}
1382
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001383/**
1384 * cpufreq_add_dev - the cpufreq interface for a CPU device.
1385 * @dev: CPU device.
1386 * @sif: Subsystem interface structure pointer (not used)
1387 */
1388static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1389{
Rafael J. Wysockia794d612016-04-07 03:31:57 +02001390 struct cpufreq_policy *policy;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001391 unsigned cpu = dev->id;
Viresh Kumar266198042016-09-12 12:07:05 +05301392 int ret;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001393
1394 dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
1395
Viresh Kumar266198042016-09-12 12:07:05 +05301396 if (cpu_online(cpu)) {
1397 ret = cpufreq_online(cpu);
1398 if (ret)
1399 return ret;
1400 }
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001401
Viresh Kumar266198042016-09-12 12:07:05 +05301402 /* Create sysfs link on CPU registration */
Rafael J. Wysockia794d612016-04-07 03:31:57 +02001403 policy = per_cpu(cpufreq_cpu_data, cpu);
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001404 if (policy)
1405 add_cpu_dev_symlink(policy, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001407 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02001410static int cpufreq_offline(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301412 struct cpufreq_policy *policy;
Viresh Kumar69cee712016-02-11 17:31:11 +05301413 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001415 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Viresh Kumar988bed02015-05-08 11:53:45 +05301417 policy = cpufreq_cpu_get_raw(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301418 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001419 pr_debug("%s: No cpu_data found\n", __func__);
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02001420 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Viresh Kumar49f18562016-02-11 17:31:12 +05301423 down_write(&policy->rwsem);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02001424 if (has_target())
1425 cpufreq_stop_governor(policy);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001426
Viresh Kumar9591bec2015-06-10 02:20:23 +02001427 cpumask_clear_cpu(cpu, policy->cpus);
Viresh Kumar45732372015-05-12 12:22:34 +05301428
Viresh Kumar9591bec2015-06-10 02:20:23 +02001429 if (policy_is_inactive(policy)) {
1430 if (has_target())
1431 strncpy(policy->last_governor, policy->governor->name,
1432 CPUFREQ_NAME_LEN);
Srinivas Pandruvada69030dd12015-12-01 16:52:14 -08001433 else
1434 policy->last_policy = policy->policy;
Viresh Kumar9591bec2015-06-10 02:20:23 +02001435 } else if (cpu == policy->cpu) {
1436 /* Nominate new CPU */
1437 policy->cpu = cpumask_any(policy->cpus);
1438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Viresh Kumar9591bec2015-06-10 02:20:23 +02001440 /* Start governor again for active policy */
1441 if (!policy_is_inactive(policy)) {
1442 if (has_target()) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001443 ret = cpufreq_start_governor(policy);
Viresh Kumar9591bec2015-06-10 02:20:23 +02001444 if (ret)
1445 pr_err("%s: Failed to start governor\n", __func__);
1446 }
Viresh Kumar69cee712016-02-11 17:31:11 +05301447
Viresh Kumar49f18562016-02-11 17:31:12 +05301448 goto unlock;
Viresh Kumar69cee712016-02-11 17:31:11 +05301449 }
1450
Amit Kucheria5c238a82019-01-30 10:52:01 +05301451 if (IS_ENABLED(CONFIG_CPU_THERMAL) &&
1452 cpufreq_driver->flags & CPUFREQ_IS_COOLING_DEV) {
1453 cpufreq_cooling_unregister(policy->cdev);
1454 policy->cdev = NULL;
1455 }
1456
Viresh Kumar69cee712016-02-11 17:31:11 +05301457 if (cpufreq_driver->stop_cpu)
Dirk Brandewie367dc4a2014-03-19 08:45:53 -07001458 cpufreq_driver->stop_cpu(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02001460 if (has_target())
1461 cpufreq_exit_governor(policy);
Viresh Kumar87549142015-06-10 02:13:21 +02001462
Viresh Kumar87549142015-06-10 02:13:21 +02001463 /*
Viresh Kumar91a12e92019-02-12 16:36:04 +05301464 * Perform the ->offline() during light-weight tear-down, as
1465 * that allows fast recovery when the CPU comes back.
Viresh Kumar87549142015-06-10 02:13:21 +02001466 */
Viresh Kumar91a12e92019-02-12 16:36:04 +05301467 if (cpufreq_driver->offline) {
1468 cpufreq_driver->offline(policy);
1469 } else if (cpufreq_driver->exit) {
Viresh Kumar87549142015-06-10 02:13:21 +02001470 cpufreq_driver->exit(policy);
Srinivas Pandruvada55582bc2015-10-07 13:50:44 -07001471 policy->freq_table = NULL;
1472 }
Viresh Kumar49f18562016-02-11 17:31:12 +05301473
1474unlock:
1475 up_write(&policy->rwsem);
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02001476 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477}
1478
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301479/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301480 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301481 *
1482 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301483 */
Viresh Kumar71db87b2015-07-30 15:04:01 +05301484static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001485{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001486 unsigned int cpu = dev->id;
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001487 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Venki Pallipadiec282972007-03-26 12:03:19 -07001488
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001489 if (!policy)
Linus Torvalds1af115d2015-08-31 08:47:40 -07001490 return;
Viresh Kumar87549142015-06-10 02:13:21 +02001491
Viresh Kumar69cee712016-02-11 17:31:11 +05301492 if (cpu_online(cpu))
1493 cpufreq_offline(cpu);
Viresh Kumar87549142015-06-10 02:13:21 +02001494
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001495 cpumask_clear_cpu(cpu, policy->real_cpus);
Viresh Kumar266198042016-09-12 12:07:05 +05301496 remove_cpu_dev_symlink(policy, dev);
Viresh Kumarf344dae2015-11-21 09:06:49 +05301497
Viresh Kumar91a12e92019-02-12 16:36:04 +05301498 if (cpumask_empty(policy->real_cpus)) {
1499 /* We did light-weight exit earlier, do full tear down now */
1500 if (cpufreq_driver->offline)
1501 cpufreq_driver->exit(policy);
1502
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301503 cpufreq_policy_free(policy);
Viresh Kumar91a12e92019-02-12 16:36:04 +05301504 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001505}
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301508 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1509 * in deep trouble.
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301510 * @policy: policy managing CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 * @new_freq: CPU frequency the CPU actually runs at
1512 *
Dave Jones29464f22009-01-18 01:37:11 -05001513 * We adjust to current frequency first, and need to clean up later.
1514 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 */
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301516static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301517 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301520
Joe Perchese837f9b2014-03-11 10:03:00 -07001521 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 +05301522 policy->cur, new_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301524 freqs.old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301526
Viresh Kumar8fec0512014-03-24 13:35:45 +05301527 cpufreq_freq_transition_begin(policy, &freqs);
1528 cpufreq_freq_transition_end(policy, &freqs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
1530
Dave Jones32ee8c32006-02-28 00:43:23 -05001531/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301532 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001533 * @cpu: CPU number
1534 *
1535 * This is the last known freq, without actually getting it from the driver.
1536 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1537 */
1538unsigned int cpufreq_quick_get(unsigned int cpu)
1539{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001540 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301541 unsigned int ret_freq = 0;
Richard Cochranc75361c2016-03-11 09:43:07 +01001542 unsigned long flags;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001543
Richard Cochranc75361c2016-03-11 09:43:07 +01001544 read_lock_irqsave(&cpufreq_driver_lock, flags);
1545
1546 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get) {
1547 ret_freq = cpufreq_driver->get(cpu);
1548 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1549 return ret_freq;
1550 }
1551
1552 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001553
1554 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001555 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301556 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001557 cpufreq_cpu_put(policy);
1558 }
1559
Dave Jones4d34a672008-02-07 16:33:49 -05001560 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001561}
1562EXPORT_SYMBOL(cpufreq_quick_get);
1563
Jesse Barnes3d737102011-06-28 10:59:12 -07001564/**
1565 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1566 * @cpu: CPU number
1567 *
1568 * Just return the max possible frequency for a given CPU.
1569 */
1570unsigned int cpufreq_quick_get_max(unsigned int cpu)
1571{
1572 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1573 unsigned int ret_freq = 0;
1574
1575 if (policy) {
1576 ret_freq = policy->max;
1577 cpufreq_cpu_put(policy);
1578 }
1579
1580 return ret_freq;
1581}
1582EXPORT_SYMBOL(cpufreq_quick_get_max);
1583
Viresh Kumard92d50a2015-01-02 12:34:29 +05301584static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301586 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Sudeep Holla2f661962019-01-07 18:51:53 +00001588 if (unlikely(policy_is_inactive(policy)) || !cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001589 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Viresh Kumard92d50a2015-01-02 12:34:29 +05301591 ret_freq = cpufreq_driver->get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001593 /*
Sudeep Holla2f661962019-01-07 18:51:53 +00001594 * If fast frequency switching is used with the given policy, the check
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001595 * against policy->cur is pointless, so skip it in that case too.
1596 */
Sudeep Holla2f661962019-01-07 18:51:53 +00001597 if (policy->fast_switch_enabled)
Viresh Kumar11e584c2015-06-10 02:11:45 +02001598 return ret_freq;
1599
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301600 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001601 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301602 /* verify no discrepancy between actual and
1603 saved value exists */
1604 if (unlikely(ret_freq != policy->cur)) {
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301605 cpufreq_out_of_sync(policy, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 schedule_work(&policy->update);
1607 }
1608 }
1609
Dave Jones4d34a672008-02-07 16:33:49 -05001610 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001611}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001613/**
1614 * cpufreq_get - get the current CPU frequency (in kHz)
1615 * @cpu: CPU number
1616 *
1617 * Get the CPU current (static) CPU frequency
1618 */
1619unsigned int cpufreq_get(unsigned int cpu)
1620{
Aaron Plattner999976e2014-03-04 12:42:15 -08001621 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001622 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001623
Aaron Plattner999976e2014-03-04 12:42:15 -08001624 if (policy) {
1625 down_read(&policy->rwsem);
Sudeep Holla2f661962019-01-07 18:51:53 +00001626 ret_freq = __cpufreq_get(policy);
Aaron Plattner999976e2014-03-04 12:42:15 -08001627 up_read(&policy->rwsem);
Viresh Kumar26ca8692013-09-20 22:37:31 +05301628
Aaron Plattner999976e2014-03-04 12:42:15 -08001629 cpufreq_cpu_put(policy);
1630 }
Viresh Kumar6eed9402013-08-06 22:53:11 +05301631
Dave Jones4d34a672008-02-07 16:33:49 -05001632 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634EXPORT_SYMBOL(cpufreq_get);
1635
Rafael J. Wysocki999f5722016-03-21 15:46:25 +01001636static unsigned int cpufreq_update_current_freq(struct cpufreq_policy *policy)
1637{
1638 unsigned int new_freq;
1639
1640 new_freq = cpufreq_driver->get(policy->cpu);
1641 if (!new_freq)
1642 return 0;
1643
1644 if (!policy->cur) {
1645 pr_debug("cpufreq: Driver did not initialize current freq\n");
1646 policy->cur = new_freq;
1647 } else if (policy->cur != new_freq && has_target()) {
1648 cpufreq_out_of_sync(policy, new_freq);
1649 }
1650
1651 return new_freq;
1652}
1653
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001654static struct subsys_interface cpufreq_interface = {
1655 .name = "cpufreq",
1656 .subsys = &cpu_subsys,
1657 .add_dev = cpufreq_add_dev,
1658 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001659};
1660
Viresh Kumare28867e2014-03-04 11:00:27 +08001661/*
1662 * In case platform wants some specific frequency to be configured
1663 * during suspend..
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001664 */
Viresh Kumare28867e2014-03-04 11:00:27 +08001665int cpufreq_generic_suspend(struct cpufreq_policy *policy)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001666{
Viresh Kumare28867e2014-03-04 11:00:27 +08001667 int ret;
Dave Jones4bc5d342009-08-04 14:03:25 -04001668
Viresh Kumare28867e2014-03-04 11:00:27 +08001669 if (!policy->suspend_freq) {
Bartlomiej Zolnierkiewicz201f3712015-09-08 18:41:02 +02001670 pr_debug("%s: suspend_freq not defined\n", __func__);
1671 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001672 }
1673
Viresh Kumare28867e2014-03-04 11:00:27 +08001674 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1675 policy->suspend_freq);
1676
1677 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1678 CPUFREQ_RELATION_H);
1679 if (ret)
1680 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1681 __func__, policy->suspend_freq, ret);
1682
Dave Jonesc9060492008-02-07 16:32:18 -05001683 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001684}
Viresh Kumare28867e2014-03-04 11:00:27 +08001685EXPORT_SYMBOL(cpufreq_generic_suspend);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001686
1687/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001688 * cpufreq_suspend() - Suspend CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001690 * Called during system wide Suspend/Hibernate cycles for suspending governors
1691 * as some platforms can't change frequency after this point in suspend cycle.
1692 * Because some of the devices (like: i2c, regulators, etc) they use for
1693 * changing frequency are suspended quickly after this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001695void cpufreq_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301697 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001699 if (!cpufreq_driver)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001700 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001702 if (!has_target() && !cpufreq_driver->suspend)
Viresh Kumarb1b12bab2014-09-30 09:33:17 +05301703 goto suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001705 pr_debug("%s: Suspending Governors\n", __func__);
1706
Viresh Kumarf9637352015-05-12 12:20:11 +05301707 for_each_active_policy(policy) {
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001708 if (has_target()) {
1709 down_write(&policy->rwsem);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02001710 cpufreq_stop_governor(policy);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001711 up_write(&policy->rwsem);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001712 }
1713
1714 if (cpufreq_driver->suspend && cpufreq_driver->suspend(policy))
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001715 pr_err("%s: Failed to suspend driver: %p\n", __func__,
1716 policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
Viresh Kumarb1b12bab2014-09-30 09:33:17 +05301718
1719suspend:
1720 cpufreq_suspended = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001724 * cpufreq_resume() - Resume CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001726 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1727 * are suspended with cpufreq_suspend().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001729void cpufreq_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301732 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001734 if (!cpufreq_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 return;
1736
Bo Yan703cbaa2018-01-23 13:57:55 -08001737 if (unlikely(!cpufreq_suspended))
1738 return;
1739
Lan Tianyu8e304442014-09-18 15:03:07 +08001740 cpufreq_suspended = false;
1741
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001742 if (!has_target() && !cpufreq_driver->resume)
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001743 return;
1744
1745 pr_debug("%s: Resuming Governors\n", __func__);
1746
Viresh Kumarf9637352015-05-12 12:20:11 +05301747 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301748 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
Viresh Kumar0c5aa402014-03-24 12:30:29 +05301749 pr_err("%s: Failed to resume driver: %p\n", __func__,
1750 policy);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001751 } else if (has_target()) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301752 down_write(&policy->rwsem);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001753 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301754 up_write(&policy->rwsem);
1755
1756 if (ret)
1757 pr_err("%s: Failed to start governor for policy: %p\n",
1758 __func__, policy);
1759 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Borislav Petkov9d950462013-01-20 10:24:28 +00001763/**
1764 * cpufreq_get_current_driver - return current driver's name
1765 *
1766 * Return the name string of the currently loaded cpufreq driver
1767 * or NULL, if none.
1768 */
1769const char *cpufreq_get_current_driver(void)
1770{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001771 if (cpufreq_driver)
1772 return cpufreq_driver->name;
1773
1774 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001775}
1776EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Thomas Petazzoni51315cd2014-10-19 11:30:27 +02001778/**
1779 * cpufreq_get_driver_data - return current driver data
1780 *
1781 * Return the private data of the currently loaded cpufreq
1782 * driver, or NULL if no cpufreq driver is loaded.
1783 */
1784void *cpufreq_get_driver_data(void)
1785{
1786 if (cpufreq_driver)
1787 return cpufreq_driver->driver_data;
1788
1789 return NULL;
1790}
1791EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793/*********************************************************************
1794 * NOTIFIER LISTS INTERFACE *
1795 *********************************************************************/
1796
1797/**
1798 * cpufreq_register_notifier - register a driver with cpufreq
1799 * @nb: notifier function to register
1800 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1801 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001802 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 * are notified about clock rate changes (once before and once after
1804 * the transition), or a list of drivers that are notified about
1805 * changes in cpufreq policy.
1806 *
1807 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001808 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 */
1810int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1811{
1812 int ret;
1813
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001814 if (cpufreq_disabled())
1815 return -EINVAL;
1816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 switch (list) {
1818 case CPUFREQ_TRANSITION_NOTIFIER:
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001819 mutex_lock(&cpufreq_fast_switch_lock);
1820
1821 if (cpufreq_fast_switch_count > 0) {
1822 mutex_unlock(&cpufreq_fast_switch_lock);
1823 return -EBUSY;
1824 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001825 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001826 &cpufreq_transition_notifier_list, nb);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001827 if (!ret)
1828 cpufreq_fast_switch_count--;
1829
1830 mutex_unlock(&cpufreq_fast_switch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 break;
1832 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001833 ret = blocking_notifier_chain_register(
1834 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 break;
1836 default:
1837 ret = -EINVAL;
1838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
1840 return ret;
1841}
1842EXPORT_SYMBOL(cpufreq_register_notifier);
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844/**
1845 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1846 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301847 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 *
1849 * Remove a driver from the CPU frequency notifier list.
1850 *
1851 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001852 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 */
1854int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1855{
1856 int ret;
1857
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001858 if (cpufreq_disabled())
1859 return -EINVAL;
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 switch (list) {
1862 case CPUFREQ_TRANSITION_NOTIFIER:
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001863 mutex_lock(&cpufreq_fast_switch_lock);
1864
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001865 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001866 &cpufreq_transition_notifier_list, nb);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001867 if (!ret && !WARN_ON(cpufreq_fast_switch_count >= 0))
1868 cpufreq_fast_switch_count++;
1869
1870 mutex_unlock(&cpufreq_fast_switch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 break;
1872 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001873 ret = blocking_notifier_chain_unregister(
1874 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 break;
1876 default:
1877 ret = -EINVAL;
1878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
1880 return ret;
1881}
1882EXPORT_SYMBOL(cpufreq_unregister_notifier);
1883
1884
1885/*********************************************************************
1886 * GOVERNORS *
1887 *********************************************************************/
1888
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001889/**
1890 * cpufreq_driver_fast_switch - Carry out a fast CPU frequency switch.
1891 * @policy: cpufreq policy to switch the frequency for.
1892 * @target_freq: New frequency to set (may be approximate).
1893 *
1894 * Carry out a fast frequency switch without sleeping.
1895 *
1896 * The driver's ->fast_switch() callback invoked by this function must be
1897 * suitable for being called from within RCU-sched read-side critical sections
1898 * and it is expected to select the minimum available frequency greater than or
1899 * equal to @target_freq (CPUFREQ_RELATION_L).
1900 *
1901 * This function must not be called if policy->fast_switch_enabled is unset.
1902 *
1903 * Governors calling this function must guarantee that it will never be invoked
1904 * twice in parallel for the same policy and that it will never be called in
1905 * parallel with either ->target() or ->target_index() for the same policy.
1906 *
Viresh Kumar209887e2017-08-09 10:21:46 +05301907 * Returns the actual frequency set for the CPU.
1908 *
1909 * If 0 is returned by the driver's ->fast_switch() callback to indicate an
1910 * error condition, the hardware configuration must be preserved.
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001911 */
1912unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
1913 unsigned int target_freq)
1914{
Rafael J. Wysockib9af6942016-06-01 22:36:26 +02001915 target_freq = clamp_val(target_freq, policy->min, policy->max);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001916
1917 return cpufreq_driver->fast_switch(policy, target_freq);
1918}
1919EXPORT_SYMBOL_GPL(cpufreq_driver_fast_switch);
1920
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301921/* Must set freqs->new to intermediate frequency */
1922static int __target_intermediate(struct cpufreq_policy *policy,
1923 struct cpufreq_freqs *freqs, int index)
1924{
1925 int ret;
1926
1927 freqs->new = cpufreq_driver->get_intermediate(policy, index);
1928
1929 /* We don't need to switch to intermediate freq */
1930 if (!freqs->new)
1931 return 0;
1932
1933 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
1934 __func__, policy->cpu, freqs->old, freqs->new);
1935
1936 cpufreq_freq_transition_begin(policy, freqs);
1937 ret = cpufreq_driver->target_intermediate(policy, index);
1938 cpufreq_freq_transition_end(policy, freqs, ret);
1939
1940 if (ret)
1941 pr_err("%s: Failed to change to intermediate frequency: %d\n",
1942 __func__, ret);
1943
1944 return ret;
1945}
1946
Viresh Kumar23727842016-06-03 10:58:50 +05301947static int __target_index(struct cpufreq_policy *policy, int index)
Viresh Kumar8d657752014-05-21 14:29:29 +05301948{
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301949 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
1950 unsigned int intermediate_freq = 0;
Viresh Kumar23727842016-06-03 10:58:50 +05301951 unsigned int newfreq = policy->freq_table[index].frequency;
Viresh Kumar8d657752014-05-21 14:29:29 +05301952 int retval = -EINVAL;
1953 bool notify;
1954
Viresh Kumar23727842016-06-03 10:58:50 +05301955 if (newfreq == policy->cur)
1956 return 0;
1957
Viresh Kumar8d657752014-05-21 14:29:29 +05301958 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
Viresh Kumar8d657752014-05-21 14:29:29 +05301959 if (notify) {
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301960 /* Handle switching to intermediate frequency */
1961 if (cpufreq_driver->get_intermediate) {
1962 retval = __target_intermediate(policy, &freqs, index);
1963 if (retval)
1964 return retval;
Viresh Kumar8d657752014-05-21 14:29:29 +05301965
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301966 intermediate_freq = freqs.new;
1967 /* Set old freq to intermediate */
1968 if (intermediate_freq)
1969 freqs.old = freqs.new;
1970 }
1971
Viresh Kumar23727842016-06-03 10:58:50 +05301972 freqs.new = newfreq;
Viresh Kumar8d657752014-05-21 14:29:29 +05301973 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1974 __func__, policy->cpu, freqs.old, freqs.new);
1975
1976 cpufreq_freq_transition_begin(policy, &freqs);
1977 }
1978
1979 retval = cpufreq_driver->target_index(policy, index);
1980 if (retval)
1981 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
1982 retval);
1983
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301984 if (notify) {
Viresh Kumar8d657752014-05-21 14:29:29 +05301985 cpufreq_freq_transition_end(policy, &freqs, retval);
1986
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301987 /*
1988 * Failed after setting to intermediate freq? Driver should have
1989 * reverted back to initial frequency and so should we. Check
1990 * here for intermediate_freq instead of get_intermediate, in
Shailendra Verma58405af2015-05-22 22:48:22 +05301991 * case we haven't switched to intermediate freq at all.
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301992 */
1993 if (unlikely(retval && intermediate_freq)) {
1994 freqs.old = intermediate_freq;
1995 freqs.new = policy->restore_freq;
1996 cpufreq_freq_transition_begin(policy, &freqs);
1997 cpufreq_freq_transition_end(policy, &freqs, 0);
1998 }
1999 }
2000
Viresh Kumar8d657752014-05-21 14:29:29 +05302001 return retval;
2002}
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004int __cpufreq_driver_target(struct cpufreq_policy *policy,
2005 unsigned int target_freq,
2006 unsigned int relation)
2007{
Viresh Kumar72499242012-10-31 01:28:21 +01002008 unsigned int old_target_freq = target_freq;
Viresh Kumard218ed72016-06-03 10:58:51 +05302009 int index;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002010
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002011 if (cpufreq_disabled())
2012 return -ENODEV;
2013
Viresh Kumar72499242012-10-31 01:28:21 +01002014 /* Make sure that target_freq is within supported range */
Viresh Kumar910c6e82016-05-26 11:27:24 +05302015 target_freq = clamp_val(target_freq, policy->min, policy->max);
Viresh Kumar72499242012-10-31 01:28:21 +01002016
2017 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002018 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01002019
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302020 /*
2021 * This might look like a redundant call as we are checking it again
2022 * after finding index. But it is left intentionally for cases where
2023 * exactly same freq is called again and so we can save on few function
2024 * calls.
2025 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01002026 if (target_freq == policy->cur)
2027 return 0;
2028
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302029 /* Save last value to restore later on errors */
2030 policy->restore_freq = policy->cur;
2031
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002032 if (cpufreq_driver->target)
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01002033 return cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08002034
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01002035 if (!cpufreq_driver->target_index)
2036 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302037
Viresh Kumard218ed72016-06-03 10:58:51 +05302038 index = cpufreq_frequency_table_target(policy, target_freq, relation);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302039
Viresh Kumar23727842016-06-03 10:58:50 +05302040 return __target_index(policy, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041}
2042EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044int cpufreq_driver_target(struct cpufreq_policy *policy,
2045 unsigned int target_freq,
2046 unsigned int relation)
2047{
Julia Lawallf1829e42008-07-25 22:44:53 +02002048 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
viresh kumarad7722d2013-10-18 19:10:15 +05302050 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 ret = __cpufreq_driver_target(policy, target_freq, relation);
2053
viresh kumarad7722d2013-10-18 19:10:15 +05302054 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return ret;
2057}
2058EXPORT_SYMBOL_GPL(cpufreq_driver_target);
2059
Rafael J. Wysockide1df262016-02-05 02:37:42 +01002060__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
2061{
2062 return NULL;
2063}
2064
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002065static int cpufreq_init_governor(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Dave Jonescc993ca2005-07-28 09:43:56 -07002067 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07002068
Viresh Kumar2f0aea92014-03-04 11:00:26 +08002069 /* Don't start any governor operations if we are entering suspend */
2070 if (cpufreq_suspended)
2071 return 0;
Ethan Zhaocb57720b2014-12-18 15:28:19 +09002072 /*
2073 * Governor might not be initiated here if ACPI _PPC changed
2074 * notification happened, so check it.
2075 */
2076 if (!policy->governor)
2077 return -EINVAL;
Viresh Kumar2f0aea92014-03-04 11:00:26 +08002078
Viresh Kumared4676e2017-07-19 15:42:46 +05302079 /* Platform doesn't want dynamic frequency switching ? */
2080 if (policy->governor->dynamic_switching &&
Viresh Kumarfc4c7092017-07-19 15:42:49 +05302081 cpufreq_driver->flags & CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING) {
Rafael J. Wysockide1df262016-02-05 02:37:42 +01002082 struct cpufreq_governor *gov = cpufreq_fallback_governor();
2083
2084 if (gov) {
Viresh Kumarfe829ed2017-07-19 15:42:48 +05302085 pr_warn("Can't use %s governor as dynamic switching is disallowed. Fallback to %s governor\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002086 policy->governor->name, gov->name);
Thomas Renninger6afde102007-10-02 13:28:13 -07002087 policy->governor = gov;
Rafael J. Wysockide1df262016-02-05 02:37:42 +01002088 } else {
2089 return -EINVAL;
Thomas Renninger6afde102007-10-02 13:28:13 -07002090 }
Thomas Renninger1c256242007-10-02 13:28:12 -07002091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002093 if (!try_module_get(policy->governor->owner))
2094 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002096 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08002097
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002098 if (policy->governor->init) {
2099 ret = policy->governor->init(policy);
2100 if (ret) {
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002101 module_put(policy->governor->owner);
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002102 return ret;
2103 }
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002106 return 0;
2107}
2108
2109static void cpufreq_exit_governor(struct cpufreq_policy *policy)
2110{
2111 if (cpufreq_suspended || !policy->governor)
2112 return;
2113
2114 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2115
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002116 if (policy->governor->exit)
2117 policy->governor->exit(policy);
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002118
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002119 module_put(policy->governor->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002122static int cpufreq_start_governor(struct cpufreq_policy *policy)
2123{
2124 int ret;
2125
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002126 if (cpufreq_suspended)
2127 return 0;
2128
2129 if (!policy->governor)
2130 return -EINVAL;
2131
2132 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2133
Rafael J. Wysocki3bbf8fe2016-03-21 15:47:48 +01002134 if (cpufreq_driver->get && !cpufreq_driver->setpolicy)
2135 cpufreq_update_current_freq(policy);
2136
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002137 if (policy->governor->start) {
2138 ret = policy->governor->start(policy);
2139 if (ret)
2140 return ret;
2141 }
Rafael J. Wysockid6ff44d2016-05-14 00:59:27 +02002142
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002143 if (policy->governor->limits)
2144 policy->governor->limits(policy);
2145
Rafael J. Wysockid6ff44d2016-05-14 00:59:27 +02002146 return 0;
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002147}
2148
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002149static void cpufreq_stop_governor(struct cpufreq_policy *policy)
2150{
2151 if (cpufreq_suspended || !policy->governor)
2152 return;
2153
2154 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2155
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002156 if (policy->governor->stop)
2157 policy->governor->stop(policy);
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002158}
2159
2160static void cpufreq_governor_limits(struct cpufreq_policy *policy)
2161{
2162 if (cpufreq_suspended || !policy->governor)
2163 return;
2164
2165 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2166
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002167 if (policy->governor->limits)
2168 policy->governor->limits(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171int cpufreq_register_governor(struct cpufreq_governor *governor)
2172{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002173 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 if (!governor)
2176 return -EINVAL;
2177
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002178 if (cpufreq_disabled())
2179 return -ENODEV;
2180
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002181 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05002182
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002183 err = -EBUSY;
Viresh Kumar42f91fa2015-01-02 12:34:26 +05302184 if (!find_governor(governor->name)) {
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002185 err = 0;
2186 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Dave Jones32ee8c32006-02-28 00:43:23 -05002189 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002190 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191}
2192EXPORT_SYMBOL_GPL(cpufreq_register_governor);
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194void cpufreq_unregister_governor(struct cpufreq_governor *governor)
2195{
Viresh Kumar45732372015-05-12 12:22:34 +05302196 struct cpufreq_policy *policy;
2197 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 if (!governor)
2200 return;
2201
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002202 if (cpufreq_disabled())
2203 return;
2204
Viresh Kumar45732372015-05-12 12:22:34 +05302205 /* clear last_governor for all inactive policies */
2206 read_lock_irqsave(&cpufreq_driver_lock, flags);
2207 for_each_inactive_policy(policy) {
Viresh Kumar18bf3a12015-05-12 12:22:51 +05302208 if (!strcmp(policy->last_governor, governor->name)) {
2209 policy->governor = NULL;
Viresh Kumar45732372015-05-12 12:22:34 +05302210 strcpy(policy->last_governor, "\0");
Viresh Kumar18bf3a12015-05-12 12:22:51 +05302211 }
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002212 }
Viresh Kumar45732372015-05-12 12:22:34 +05302213 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002214
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002215 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002217 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
2220
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222/*********************************************************************
2223 * POLICY INTERFACE *
2224 *********************************************************************/
2225
2226/**
2227 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05002228 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2229 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 *
2231 * Reads the current cpufreq policy.
2232 */
2233int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2234{
2235 struct cpufreq_policy *cpu_policy;
2236 if (!policy)
2237 return -EINVAL;
2238
2239 cpu_policy = cpufreq_cpu_get(cpu);
2240 if (!cpu_policy)
2241 return -EINVAL;
2242
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302243 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 return 0;
2247}
2248EXPORT_SYMBOL(cpufreq_get_policy);
2249
Rafael J. Wysockia0dbb812019-02-20 00:22:51 +01002250/**
2251 * cpufreq_set_policy - Modify cpufreq policy parameters.
2252 * @policy: Policy object to modify.
2253 * @new_policy: New policy data.
2254 *
2255 * Pass @new_policy to the cpufreq driver's ->verify() callback, run the
2256 * installed policy notifiers for it with the CPUFREQ_ADJUST value, pass it to
2257 * the driver's ->verify() callback again and run the notifiers for it again
2258 * with the CPUFREQ_NOTIFY value. Next, copy the min and max parameters
2259 * of @new_policy to @policy and either invoke the driver's ->setpolicy()
2260 * callback (if present) or carry out a governor update for @policy. That is,
2261 * run the current governor's ->limits() callback (if the governor field in
2262 * @new_policy points to the same object as the one in @policy) or replace the
2263 * governor for @policy with the new one stored in @new_policy.
2264 *
2265 * The cpuinfo part of @policy is not updated by this function.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002266 */
Rafael J. Wysocki9083e492019-03-26 12:19:52 +01002267int cpufreq_set_policy(struct cpufreq_policy *policy,
2268 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269{
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002270 struct cpufreq_governor *old_gov;
2271 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Joe Perchese837f9b2014-03-11 10:03:00 -07002273 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2274 new_policy->cpu, new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302276 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
Pan Xinhuifba95732015-07-30 18:10:40 +08002278 /*
2279 * This check works well when we store new min/max freq attributes,
2280 * because new_policy is a copy of policy with one field updated.
2281 */
2282 if (new_policy->min > new_policy->max)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002283 return -EINVAL;
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02002284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302286 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002288 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08002291 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302292 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Viresh Kumarbb176f72013-06-19 14:19:33 +05302294 /*
2295 * verify the cpu speed can be set within this limit, which might be
2296 * different to the first one
2297 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302298 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08002299 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002300 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08002303 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302304 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302306 policy->min = new_policy->min;
2307 policy->max = new_policy->max;
Ruchi Kandoi601b2182018-07-24 10:35:44 -07002308 trace_cpu_frequency_limits(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Steve Mucklee3c06232016-07-13 13:25:25 -07002310 policy->cached_target_freq = UINT_MAX;
2311
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002312 pr_debug("new min and max freqs are %u - %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002313 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002315 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302316 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002317 pr_debug("setting range\n");
Rafael J. Wysocki167a38d2019-02-20 00:26:30 +01002318 return cpufreq_driver->setpolicy(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 }
2320
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002321 if (new_policy->governor == policy->governor) {
Rafael J. Wysocki2bb40592019-02-20 00:25:18 +01002322 pr_debug("governor limits update\n");
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002323 cpufreq_governor_limits(policy);
Rafael J. Wysockid6ff44d2016-05-14 00:59:27 +02002324 return 0;
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002325 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002326
2327 pr_debug("governor switch\n");
2328
2329 /* save old, working values */
2330 old_gov = policy->governor;
2331 /* end old governor */
2332 if (old_gov) {
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02002333 cpufreq_stop_governor(policy);
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002334 cpufreq_exit_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002335 }
2336
2337 /* start new governor */
2338 policy->governor = new_policy->governor;
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002339 ret = cpufreq_init_governor(policy);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302340 if (!ret) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002341 ret = cpufreq_start_governor(policy);
2342 if (!ret) {
Rafael J. Wysocki2bb40592019-02-20 00:25:18 +01002343 pr_debug("governor change\n");
Quentin Perret531b5c92018-12-03 09:56:21 +00002344 sched_cpufreq_governor_change(policy, old_gov);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002345 return 0;
2346 }
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02002347 cpufreq_exit_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002348 }
2349
2350 /* new governor failed, so re-start old one */
2351 pr_debug("starting governor %s failed\n", policy->governor->name);
2352 if (old_gov) {
2353 policy->governor = old_gov;
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002354 if (cpufreq_init_governor(policy))
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302355 policy->governor = NULL;
2356 else
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002357 cpufreq_start_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002358 }
2359
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302360 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
2363/**
Rafael J. Wysockia0dbb812019-02-20 00:22:51 +01002364 * cpufreq_update_policy - Re-evaluate an existing cpufreq policy.
2365 * @cpu: CPU to re-evaluate the policy for.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 *
Rafael J. Wysockia0dbb812019-02-20 00:22:51 +01002367 * Update the current frequency for the cpufreq policy of @cpu and use
2368 * cpufreq_set_policy() to re-apply the min and max limits saved in the
2369 * user_policy sub-structure of that policy, which triggers the evaluation
2370 * of policy notifiers and the cpufreq driver's ->verify() callback for the
2371 * policy in question, among other things.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 */
Rafael J. Wysocki30248fe2016-11-18 13:59:21 +01002373void cpufreq_update_policy(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374{
Rafael J. Wysocki540a37582019-03-26 12:16:58 +01002375 struct cpufreq_policy *policy = cpufreq_cpu_acquire(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302376 struct cpufreq_policy new_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002378 if (!policy)
Rafael J. Wysocki30248fe2016-11-18 13:59:21 +01002379 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Viresh Kumarbb176f72013-06-19 14:19:33 +05302381 /*
2382 * BIOS might change freq behind our back
2383 * -> ask driver for current freq and notify governors about a change
2384 */
Rafael J. Wysocki348a2ec2019-02-20 00:24:25 +01002385 if (cpufreq_driver->get && !cpufreq_driver->setpolicy &&
2386 (cpufreq_suspended || WARN_ON(!cpufreq_update_current_freq(policy))))
2387 goto unlock;
Rafael J. Wysocki30248fe2016-11-18 13:59:21 +01002388
Rafael J. Wysocki348a2ec2019-02-20 00:24:25 +01002389 pr_debug("updating policy for CPU %u\n", cpu);
2390 memcpy(&new_policy, policy, sizeof(*policy));
2391 new_policy.min = policy->user_policy.min;
2392 new_policy.max = policy->user_policy.max;
Thomas Renninger0961dd02006-01-26 18:46:33 +01002393
Rafael J. Wysocki30248fe2016-11-18 13:59:21 +01002394 cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002396unlock:
Rafael J. Wysocki540a37582019-03-26 12:16:58 +01002397 cpufreq_cpu_release(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398}
2399EXPORT_SYMBOL(cpufreq_update_policy);
2400
Rafael J. Wysocki5a25e3f2019-03-26 12:15:13 +01002401/**
2402 * cpufreq_update_limits - Update policy limits for a given CPU.
2403 * @cpu: CPU to update the policy limits for.
2404 *
2405 * Invoke the driver's ->update_limits callback if present or call
2406 * cpufreq_update_policy() for @cpu.
2407 */
2408void cpufreq_update_limits(unsigned int cpu)
2409{
2410 if (cpufreq_driver->update_limits)
2411 cpufreq_driver->update_limits(cpu);
2412 else
2413 cpufreq_update_policy(cpu);
2414}
2415EXPORT_SYMBOL_GPL(cpufreq_update_limits);
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417/*********************************************************************
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002418 * BOOST *
2419 *********************************************************************/
2420static int cpufreq_boost_set_sw(int state)
2421{
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002422 struct cpufreq_policy *policy;
2423 int ret = -EINVAL;
2424
Viresh Kumarf9637352015-05-12 12:20:11 +05302425 for_each_active_policy(policy) {
Viresh Kumarf8bfc112016-06-03 10:58:47 +05302426 if (!policy->freq_table)
2427 continue;
Viresh Kumar49f18562016-02-11 17:31:12 +05302428
Viresh Kumarf8bfc112016-06-03 10:58:47 +05302429 ret = cpufreq_frequency_table_cpuinfo(policy,
2430 policy->freq_table);
2431 if (ret) {
2432 pr_err("%s: Policy frequency update failed\n",
2433 __func__);
2434 break;
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002435 }
Viresh Kumarf8bfc112016-06-03 10:58:47 +05302436
2437 down_write(&policy->rwsem);
2438 policy->user_policy.max = policy->max;
2439 cpufreq_governor_limits(policy);
2440 up_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002441 }
2442
2443 return ret;
2444}
2445
2446int cpufreq_boost_trigger_state(int state)
2447{
2448 unsigned long flags;
2449 int ret = 0;
2450
2451 if (cpufreq_driver->boost_enabled == state)
2452 return 0;
2453
2454 write_lock_irqsave(&cpufreq_driver_lock, flags);
2455 cpufreq_driver->boost_enabled = state;
2456 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2457
2458 ret = cpufreq_driver->set_boost(state);
2459 if (ret) {
2460 write_lock_irqsave(&cpufreq_driver_lock, flags);
2461 cpufreq_driver->boost_enabled = !state;
2462 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2463
Joe Perchese837f9b2014-03-11 10:03:00 -07002464 pr_err("%s: Cannot %s BOOST\n",
2465 __func__, state ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002466 }
2467
2468 return ret;
2469}
2470
Rafael J. Wysocki41669da2015-12-27 00:23:48 +01002471static bool cpufreq_boost_supported(void)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002472{
Yue Hu89f98d72019-04-09 10:25:36 +08002473 return cpufreq_driver->set_boost;
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002474}
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002475
Viresh Kumar44139ed2015-07-29 16:23:09 +05302476static int create_boost_sysfs_file(void)
2477{
2478 int ret;
2479
Viresh Kumarc82bd442015-10-15 21:35:23 +05302480 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302481 if (ret)
2482 pr_err("%s: cannot register global BOOST sysfs file\n",
2483 __func__);
2484
2485 return ret;
2486}
2487
2488static void remove_boost_sysfs_file(void)
2489{
2490 if (cpufreq_boost_supported())
Viresh Kumarc82bd442015-10-15 21:35:23 +05302491 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302492}
2493
2494int cpufreq_enable_boost_support(void)
2495{
2496 if (!cpufreq_driver)
2497 return -EINVAL;
2498
2499 if (cpufreq_boost_supported())
2500 return 0;
2501
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002502 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
Viresh Kumar44139ed2015-07-29 16:23:09 +05302503
2504 /* This will get removed on driver unregister */
2505 return create_boost_sysfs_file();
2506}
2507EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2508
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002509int cpufreq_boost_enabled(void)
2510{
2511 return cpufreq_driver->boost_enabled;
2512}
2513EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2514
2515/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2517 *********************************************************************/
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02002518static enum cpuhp_state hp_online;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Chen Yuc4a3fa22017-04-09 13:45:16 +08002520static int cpuhp_cpufreq_online(unsigned int cpu)
2521{
2522 cpufreq_online(cpu);
2523
2524 return 0;
2525}
2526
2527static int cpuhp_cpufreq_offline(unsigned int cpu)
2528{
2529 cpufreq_offline(cpu);
2530
2531 return 0;
2532}
2533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534/**
2535 * cpufreq_register_driver - register a CPU Frequency driver
2536 * @driver_data: A struct cpufreq_driver containing the values#
2537 * submitted by the CPU Frequency driver.
2538 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302539 * Registers a CPU Frequency driver to this core code. This code
Eric Biggers63af4052016-02-20 21:50:01 -06002540 * returns zero on success, -EEXIST when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002541 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 *
2543 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002544int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545{
2546 unsigned long flags;
2547 int ret;
2548
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002549 if (cpufreq_disabled())
2550 return -ENODEV;
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302553 !(driver_data->setpolicy || driver_data->target_index ||
Rafael J. Wysocki98322352014-03-19 12:48:30 +01002554 driver_data->target) ||
2555 (driver_data->setpolicy && (driver_data->target_index ||
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302556 driver_data->target)) ||
Viresh Kumara9a22b52019-02-14 16:16:21 +05302557 (!driver_data->get_intermediate != !driver_data->target_intermediate) ||
Viresh Kumar91a12e92019-02-12 16:36:04 +05302558 (!driver_data->online != !driver_data->offline))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 return -EINVAL;
2560
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002561 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002563 /* Protect against concurrent CPU online/offline. */
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002564 cpus_read_lock();
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002565
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002566 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002567 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002568 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002569 ret = -EEXIST;
2570 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002572 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002573 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Viresh Kumarbc68b7d2015-01-02 12:34:30 +05302575 if (driver_data->setpolicy)
2576 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2577
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002578 if (cpufreq_boost_supported()) {
2579 ret = create_boost_sysfs_file();
2580 if (ret)
2581 goto err_null_driver;
2582 }
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002583
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002584 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002585 if (ret)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002586 goto err_boost_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302588 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2589 list_empty(&cpufreq_policy_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 /* if all ->init() calls failed, unregister */
David Arcari6c770032017-05-26 11:37:31 -04002591 ret = -ENODEV;
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302592 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2593 driver_data->name);
2594 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 }
2596
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002597 ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN,
2598 "cpufreq:online",
2599 cpuhp_cpufreq_online,
2600 cpuhp_cpufreq_offline);
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02002601 if (ret < 0)
2602 goto err_if_unreg;
2603 hp_online = ret;
Sebastian Andrzej Siewior5372e052016-09-20 16:56:28 +02002604 ret = 0;
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02002605
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002606 pr_debug("driver %s up and running\n", driver_data->name);
Pankaj Gupta3834abb2016-05-16 11:07:19 +00002607 goto out;
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002608
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002609err_if_unreg:
2610 subsys_interface_unregister(&cpufreq_interface);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002611err_boost_unreg:
Viresh Kumar44139ed2015-07-29 16:23:09 +05302612 remove_boost_sysfs_file();
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002613err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002614 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002615 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002616 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Pankaj Gupta3834abb2016-05-16 11:07:19 +00002617out:
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002618 cpus_read_unlock();
Pankaj Gupta3834abb2016-05-16 11:07:19 +00002619 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620}
2621EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623/**
2624 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2625 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302626 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 * the right to do so, i.e. if you have succeeded in initialising before!
2628 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2629 * currently not initialised.
2630 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002631int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
2633 unsigned long flags;
2634
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002635 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002638 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002640 /* Protect against concurrent cpu hotplug */
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002641 cpus_read_lock();
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002642 subsys_interface_unregister(&cpufreq_interface);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302643 remove_boost_sysfs_file();
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002644 cpuhp_remove_state_nocalls_cpuslocked(hp_online);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002646 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302647
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002648 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302649
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002650 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002651 cpus_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
2653 return 0;
2654}
2655EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002656
Doug Anderson90de2a42014-12-23 22:09:48 -08002657/*
2658 * Stop cpufreq at shutdown to make sure it isn't holding any locks
2659 * or mutexes when secondary CPUs are halted.
2660 */
2661static struct syscore_ops cpufreq_syscore_ops = {
2662 .shutdown = cpufreq_suspend,
2663};
2664
Viresh Kumarc82bd442015-10-15 21:35:23 +05302665struct kobject *cpufreq_global_kobject;
2666EXPORT_SYMBOL(cpufreq_global_kobject);
2667
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002668static int __init cpufreq_core_init(void)
2669{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002670 if (cpufreq_disabled())
2671 return -ENODEV;
2672
Viresh Kumar8eec1022015-10-15 21:35:22 +05302673 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002674 BUG_ON(!cpufreq_global_kobject);
2675
Doug Anderson90de2a42014-12-23 22:09:48 -08002676 register_syscore_ops(&cpufreq_syscore_ops);
2677
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002678 return 0;
2679}
Len Brownd82f2692017-02-28 16:44:16 -05002680module_param(off, int, 0444);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002681core_initcall(cpufreq_core_init);