blob: aee024e42618c744498b2ccbab67ca9320ed7beb [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{
Viresh Kumardf240142019-04-29 15:03:58 +0530343 int cpu;
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 BUG_ON(irqs_disabled());
346
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000347 if (cpufreq_disabled())
348 return;
349
Viresh Kumardf240142019-04-29 15:03:58 +0530350 freqs->policy = policy;
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200351 freqs->flags = cpufreq_driver->flags;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200352 pr_debug("notification %u of frequency transition to %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -0700353 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 switch (state) {
356 case CPUFREQ_PRECHANGE:
Viresh Kumar20b53242018-05-10 15:00:29 +0530357 /*
358 * Detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800359 * which is not equal to what the cpufreq core thinks is
360 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200362 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Viresh Kumar20b53242018-05-10 15:00:29 +0530363 if (policy->cur && (policy->cur != freqs->old)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700364 pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
365 freqs->old, policy->cur);
Dave Jonese4472cb2006-01-31 15:53:55 -0800366 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368 }
Viresh Kumar20b53242018-05-10 15:00:29 +0530369
Viresh Kumardf240142019-04-29 15:03:58 +0530370 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
371 CPUFREQ_PRECHANGE, freqs);
Viresh Kumar20b53242018-05-10 15:00:29 +0530372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
374 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 case CPUFREQ_POSTCHANGE:
377 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Viresh Kumar20b53242018-05-10 15:00:29 +0530378 pr_debug("FREQ: %u - CPUs: %*pbl\n", freqs->new,
379 cpumask_pr_args(policy->cpus));
Viresh Kumarbb176f72013-06-19 14:19:33 +0530380
Viresh Kumardf240142019-04-29 15:03:58 +0530381 for_each_cpu(cpu, policy->cpus)
382 trace_cpu_frequency(freqs->new, cpu);
383
384 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
385 CPUFREQ_POSTCHANGE, freqs);
Viresh Kumar20b53242018-05-10 15:00:29 +0530386
387 cpufreq_stats_record_transition(policy, freqs->new);
388 policy->cur = freqs->new;
389 }
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530390}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530392/* Do post notifications when there are chances that transition has failed */
Viresh Kumar236a9802014-03-24 13:35:46 +0530393static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530394 struct cpufreq_freqs *freqs, int transition_failed)
395{
396 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
397 if (!transition_failed)
398 return;
399
400 swap(freqs->old, freqs->new);
401 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
402 cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
403}
Viresh Kumarf7ba3b42013-12-02 11:04:12 +0530404
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530405void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
406 struct cpufreq_freqs *freqs)
407{
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530408
409 /*
410 * Catch double invocations of _begin() which lead to self-deadlock.
411 * ASYNC_NOTIFICATION drivers are left out because the cpufreq core
412 * doesn't invoke _begin() on their behalf, and hence the chances of
413 * double invocations are very low. Moreover, there are scenarios
414 * where these checks can emit false-positive warnings in these
415 * drivers; so we avoid that by skipping them altogether.
416 */
417 WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
418 && current == policy->transition_task);
419
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530420wait:
421 wait_event(policy->transition_wait, !policy->transition_ongoing);
422
423 spin_lock(&policy->transition_lock);
424
425 if (unlikely(policy->transition_ongoing)) {
426 spin_unlock(&policy->transition_lock);
427 goto wait;
428 }
429
430 policy->transition_ongoing = true;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530431 policy->transition_task = current;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530432
433 spin_unlock(&policy->transition_lock);
434
435 cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
436}
437EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);
438
439void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
440 struct cpufreq_freqs *freqs, int transition_failed)
441{
Igor Stoppa0e7ea2f2018-09-07 19:09:55 +0300442 if (WARN_ON(!policy->transition_ongoing))
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530443 return;
444
445 cpufreq_notify_post_transition(policy, freqs, transition_failed);
446
447 policy->transition_ongoing = false;
Srivatsa S. Bhatca654dc2014-05-05 12:52:39 +0530448 policy->transition_task = NULL;
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +0530449
450 wake_up(&policy->transition_wait);
451}
452EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
453
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200454/*
455 * Fast frequency switching status count. Positive means "enabled", negative
456 * means "disabled" and 0 means "not decided yet".
457 */
458static int cpufreq_fast_switch_count;
459static DEFINE_MUTEX(cpufreq_fast_switch_lock);
460
461static void cpufreq_list_transition_notifiers(void)
462{
463 struct notifier_block *nb;
464
465 pr_info("Registered transition notifiers:\n");
466
467 mutex_lock(&cpufreq_transition_notifier_list.mutex);
468
469 for (nb = cpufreq_transition_notifier_list.head; nb; nb = nb->next)
Sakari Ailusd75f7732019-03-25 21:32:28 +0200470 pr_info("%pS\n", nb->notifier_call);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200471
472 mutex_unlock(&cpufreq_transition_notifier_list.mutex);
473}
474
475/**
476 * cpufreq_enable_fast_switch - Enable fast frequency switching for policy.
477 * @policy: cpufreq policy to enable fast frequency switching for.
478 *
479 * Try to enable fast frequency switching for @policy.
480 *
481 * The attempt will fail if there is at least one transition notifier registered
482 * at this point, as fast frequency switching is quite fundamentally at odds
483 * with transition notifiers. Thus if successful, it will make registration of
484 * transition notifiers fail going forward.
485 */
486void cpufreq_enable_fast_switch(struct cpufreq_policy *policy)
487{
488 lockdep_assert_held(&policy->rwsem);
489
490 if (!policy->fast_switch_possible)
491 return;
492
493 mutex_lock(&cpufreq_fast_switch_lock);
494 if (cpufreq_fast_switch_count >= 0) {
495 cpufreq_fast_switch_count++;
496 policy->fast_switch_enabled = true;
497 } else {
498 pr_warn("CPU%u: Fast frequency switching not enabled\n",
499 policy->cpu);
500 cpufreq_list_transition_notifiers();
501 }
502 mutex_unlock(&cpufreq_fast_switch_lock);
503}
504EXPORT_SYMBOL_GPL(cpufreq_enable_fast_switch);
505
Rafael J. Wysocki6c9d9c82016-04-07 23:38:46 +0200506/**
507 * cpufreq_disable_fast_switch - Disable fast frequency switching for policy.
508 * @policy: cpufreq policy to disable fast frequency switching for.
509 */
510void cpufreq_disable_fast_switch(struct cpufreq_policy *policy)
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +0200511{
512 mutex_lock(&cpufreq_fast_switch_lock);
513 if (policy->fast_switch_enabled) {
514 policy->fast_switch_enabled = false;
515 if (!WARN_ON(cpufreq_fast_switch_count <= 0))
516 cpufreq_fast_switch_count--;
517 }
518 mutex_unlock(&cpufreq_fast_switch_lock);
519}
Rafael J. Wysocki6c9d9c82016-04-07 23:38:46 +0200520EXPORT_SYMBOL_GPL(cpufreq_disable_fast_switch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Steve Mucklee3c06232016-07-13 13:25:25 -0700522/**
523 * cpufreq_driver_resolve_freq - Map a target frequency to a driver-supported
524 * one.
525 * @target_freq: target frequency to resolve.
526 *
527 * The target to driver frequency mapping is cached in the policy.
528 *
529 * Return: Lowest driver-supported frequency greater than or equal to the
530 * given target_freq, subject to policy (min/max) and driver limitations.
531 */
532unsigned int cpufreq_driver_resolve_freq(struct cpufreq_policy *policy,
533 unsigned int target_freq)
534{
535 target_freq = clamp_val(target_freq, policy->min, policy->max);
536 policy->cached_target_freq = target_freq;
Viresh Kumarabe8bd02016-07-21 14:39:26 -0700537
538 if (cpufreq_driver->target_index) {
539 int idx;
540
541 idx = cpufreq_frequency_table_target(policy, target_freq,
542 CPUFREQ_RELATION_L);
543 policy->cached_resolved_idx = idx;
544 return policy->freq_table[idx].frequency;
545 }
546
Steve Mucklee3c06232016-07-13 13:25:25 -0700547 if (cpufreq_driver->resolve_freq)
548 return cpufreq_driver->resolve_freq(policy, target_freq);
Viresh Kumarabe8bd02016-07-21 14:39:26 -0700549
550 return target_freq;
Steve Mucklee3c06232016-07-13 13:25:25 -0700551}
Steve Muckleae2c1ca2016-07-21 19:24:38 -0700552EXPORT_SYMBOL_GPL(cpufreq_driver_resolve_freq);
Steve Mucklee3c06232016-07-13 13:25:25 -0700553
Viresh Kumaraa7519a2017-07-19 15:42:42 +0530554unsigned int cpufreq_policy_transition_delay_us(struct cpufreq_policy *policy)
555{
556 unsigned int latency;
557
558 if (policy->transition_delay_us)
559 return policy->transition_delay_us;
560
561 latency = policy->cpuinfo.transition_latency / NSEC_PER_USEC;
Viresh Kumare948bc82017-08-17 09:12:27 +0530562 if (latency) {
563 /*
564 * For platforms that can change the frequency very fast (< 10
565 * us), the above formula gives a decent transition delay. But
566 * for platforms where transition_latency is in milliseconds, it
567 * ends up giving unrealistic values.
568 *
569 * Cap the default transition delay to 10 ms, which seems to be
570 * a reasonable amount of time after which we should reevaluate
571 * the frequency.
572 */
573 return min(latency * LATENCY_MULTIPLIER, (unsigned int)10000);
574 }
Viresh Kumaraa7519a2017-07-19 15:42:42 +0530575
576 return LATENCY_MULTIPLIER;
577}
578EXPORT_SYMBOL_GPL(cpufreq_policy_transition_delay_us);
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580/*********************************************************************
581 * SYSFS INTERFACE *
582 *********************************************************************/
Rashika Kheria8a5c74a2014-02-26 22:12:42 +0530583static ssize_t show_boost(struct kobject *kobj,
Viresh Kumar625c85a2019-01-25 12:53:07 +0530584 struct kobj_attribute *attr, char *buf)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100585{
586 return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
587}
588
Viresh Kumar625c85a2019-01-25 12:53:07 +0530589static ssize_t store_boost(struct kobject *kobj, struct kobj_attribute *attr,
590 const char *buf, size_t count)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100591{
592 int ret, enable;
593
594 ret = sscanf(buf, "%d", &enable);
595 if (ret != 1 || enable < 0 || enable > 1)
596 return -EINVAL;
597
598 if (cpufreq_boost_trigger_state(enable)) {
Joe Perchese837f9b2014-03-11 10:03:00 -0700599 pr_err("%s: Cannot %s BOOST!\n",
600 __func__, enable ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100601 return -EINVAL;
602 }
603
Joe Perchese837f9b2014-03-11 10:03:00 -0700604 pr_debug("%s: cpufreq BOOST %s\n",
605 __func__, enable ? "enabled" : "disabled");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +0100606
607 return count;
608}
609define_one_global_rw(boost);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530611static struct cpufreq_governor *find_governor(const char *str_governor)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700612{
613 struct cpufreq_governor *t;
614
Viresh Kumarf7b27062015-01-27 14:06:09 +0530615 for_each_governor(t)
Rasmus Villemoes7c4f4532014-09-29 15:50:11 +0200616 if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700617 return t;
618
619 return NULL;
620}
621
Yue Huab05d972019-04-29 15:24:18 +0800622static int cpufreq_parse_policy(char *str_governor,
623 struct cpufreq_policy *policy)
624{
625 if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
626 policy->policy = CPUFREQ_POLICY_PERFORMANCE;
627 return 0;
628 }
629 if (!strncasecmp(str_governor, "powersave", CPUFREQ_NAME_LEN)) {
630 policy->policy = CPUFREQ_POLICY_POWERSAVE;
631 return 0;
632 }
633 return -EINVAL;
634}
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636/**
Yue Huab05d972019-04-29 15:24:18 +0800637 * cpufreq_parse_governor - parse a governor string only for !setpolicy
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 */
Rafael J. Wysockiae0ff892017-11-23 01:24:05 +0100639static int cpufreq_parse_governor(char *str_governor,
640 struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Yue Huab05d972019-04-29 15:24:18 +0800642 struct cpufreq_governor *t;
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100643
Yue Huab05d972019-04-29 15:24:18 +0800644 mutex_lock(&cpufreq_governor_mutex);
645
646 t = find_governor(str_governor);
647 if (!t) {
648 int ret;
649
650 mutex_unlock(&cpufreq_governor_mutex);
651
652 ret = request_module("cpufreq_%s", str_governor);
653 if (ret)
654 return -EINVAL;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700655
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800656 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700657
Viresh Kumar42f91fa2015-01-02 12:34:26 +0530658 t = find_governor(str_governor);
Yue Huab05d972019-04-29 15:24:18 +0800659 }
660 if (t && !try_module_get(t->owner))
661 t = NULL;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700662
Yue Huab05d972019-04-29 15:24:18 +0800663 mutex_unlock(&cpufreq_governor_mutex);
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100664
Yue Huab05d972019-04-29 15:24:18 +0800665 if (t) {
666 policy->governor = t;
667 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
Rafael J. Wysocki045149e2017-11-23 01:23:16 +0100669
670 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530674 * cpufreq_per_cpu_attr_read() / show_##file_name() -
675 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 *
677 * Write out information from cpufreq_driver->policy[cpu]; object must be
678 * "unsigned int".
679 */
680
Dave Jones32ee8c32006-02-28 00:43:23 -0500681#define show_one(file_name, object) \
682static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500683(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500684{ \
Dave Jones29464f22009-01-18 01:37:11 -0500685 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688show_one(cpuinfo_min_freq, cpuinfo.min_freq);
689show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100690show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691show_one(scaling_min_freq, min);
692show_one(scaling_max_freq, max);
Dirk Brandewiec034b022014-10-13 08:37:40 -0700693
Len Brownf8475ce2017-06-23 22:11:52 -0700694__weak unsigned int arch_freq_get_on_cpu(int cpu)
695{
696 return 0;
697}
698
Viresh Kumar09347b22015-01-02 12:34:24 +0530699static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
Dirk Brandewiec034b022014-10-13 08:37:40 -0700700{
701 ssize_t ret;
Len Brownf8475ce2017-06-23 22:11:52 -0700702 unsigned int freq;
Dirk Brandewiec034b022014-10-13 08:37:40 -0700703
Len Brownf8475ce2017-06-23 22:11:52 -0700704 freq = arch_freq_get_on_cpu(policy->cpu);
705 if (freq)
706 ret = sprintf(buf, "%u\n", freq);
707 else if (cpufreq_driver && cpufreq_driver->setpolicy &&
708 cpufreq_driver->get)
Dirk Brandewiec034b022014-10-13 08:37:40 -0700709 ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
710 else
711 ret = sprintf(buf, "%u\n", policy->cur);
712 return ret;
713}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715/**
716 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
717 */
718#define store_one(file_name, object) \
719static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500720(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{ \
Vince Hsu619c144c2014-11-10 14:14:50 +0800722 int ret, temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 struct cpufreq_policy new_policy; \
724 \
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530725 memcpy(&new_policy, policy, sizeof(*policy)); \
Tao Wangc7d1f112018-05-26 15:16:48 +0800726 new_policy.min = policy->user_policy.min; \
727 new_policy.max = policy->user_policy.max; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 \
Dave Jones29464f22009-01-18 01:37:11 -0500729 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (ret != 1) \
731 return -EINVAL; \
732 \
Vince Hsu619c144c2014-11-10 14:14:50 +0800733 temp = new_policy.object; \
Viresh Kumar037ce832013-10-02 14:13:16 +0530734 ret = cpufreq_set_policy(policy, &new_policy); \
Vince Hsu619c144c2014-11-10 14:14:50 +0800735 if (!ret) \
736 policy->user_policy.object = temp; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 \
738 return ret ? ret : count; \
739}
740
Dave Jones29464f22009-01-18 01:37:11 -0500741store_one(scaling_min_freq, min);
742store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
744/**
745 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
746 */
Dave Jones905d77c2008-03-05 14:28:32 -0500747static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
748 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Viresh Kumard92d50a2015-01-02 12:34:29 +0530750 unsigned int cur_freq = __cpufreq_get(policy);
Rafael J. Wysocki9b4f6032017-03-15 00:12:16 +0100751
752 if (cur_freq)
753 return sprintf(buf, "%u\n", cur_freq);
754
755 return sprintf(buf, "<unknown>\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758/**
759 * show_scaling_governor - show the current policy for the specified CPU
760 */
Dave Jones905d77c2008-03-05 14:28:32 -0500761static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Dave Jones29464f22009-01-18 01:37:11 -0500763 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return sprintf(buf, "powersave\n");
765 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
766 return sprintf(buf, "performance\n");
767 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200768 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500769 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return -EINVAL;
771}
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773/**
774 * store_scaling_governor - store policy for the specified CPU
775 */
Dave Jones905d77c2008-03-05 14:28:32 -0500776static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
777 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530779 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 char str_governor[16];
781 struct cpufreq_policy new_policy;
782
Viresh Kumar8fa5b632015-08-03 08:36:15 +0530783 memcpy(&new_policy, policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Dave Jones29464f22009-01-18 01:37:11 -0500785 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (ret != 1)
787 return -EINVAL;
788
Yue Huab05d972019-04-29 15:24:18 +0800789 if (cpufreq_driver->setpolicy) {
790 if (cpufreq_parse_policy(str_governor, &new_policy))
791 return -EINVAL;
792 } else {
793 if (cpufreq_parse_governor(str_governor, &new_policy))
794 return -EINVAL;
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Viresh Kumar037ce832013-10-02 14:13:16 +0530797 ret = cpufreq_set_policy(policy, &new_policy);
Rafael J. Wysockia8b149d2017-11-23 14:27:07 +0100798
799 if (new_policy.governor)
800 module_put(new_policy.governor->owner);
801
Viresh Kumar88dc4382015-08-03 08:36:18 +0530802 return ret ? ret : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
805/**
806 * show_scaling_driver - show the cpufreq driver currently loaded
807 */
Dave Jones905d77c2008-03-05 14:28:32 -0500808static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200810 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
813/**
814 * show_scaling_available_governors - show the available CPUfreq governors
815 */
Dave Jones905d77c2008-03-05 14:28:32 -0500816static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
817 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818{
819 ssize_t i = 0;
820 struct cpufreq_governor *t;
821
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530822 if (!has_target()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 i += sprintf(buf, "performance powersave");
824 goto out;
825 }
826
Viresh Kumarf7b27062015-01-27 14:06:09 +0530827 for_each_governor(t) {
Dave Jones29464f22009-01-18 01:37:11 -0500828 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
829 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200831 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500833out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 i += sprintf(&buf[i], "\n");
835 return i;
836}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700837
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800838ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
840 ssize_t i = 0;
841 unsigned int cpu;
842
Rusty Russell835481d2009-01-04 05:18:06 -0800843 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (i)
845 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
846 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
847 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500848 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850 i += sprintf(&buf[i], "\n");
851 return i;
852}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800853EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700855/**
856 * show_related_cpus - show the CPUs affected by each transition even if
857 * hw coordination is in use
858 */
859static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
860{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800861 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700862}
863
864/**
865 * show_affected_cpus - show the CPUs affected by each transition
866 */
867static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
868{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800869 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700870}
871
Venki Pallipadi9e769882007-10-26 10:18:21 -0700872static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500873 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700874{
875 unsigned int freq = 0;
876 unsigned int ret;
877
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700878 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700879 return -EINVAL;
880
881 ret = sscanf(buf, "%u", &freq);
882 if (ret != 1)
883 return -EINVAL;
884
885 policy->governor->store_setspeed(policy, freq);
886
887 return count;
888}
889
890static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
891{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700892 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700893 return sprintf(buf, "<unsupported>\n");
894
895 return policy->governor->show_setspeed(policy, buf);
896}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Thomas Renningere2f74f32009-11-19 12:31:01 +0100898/**
viresh kumar8bf1ac722012-10-23 01:23:33 +0200899 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100900 */
901static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
902{
903 unsigned int limit;
904 int ret;
Yue Hub23aa312019-04-16 10:40:27 +0800905 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
906 if (!ret)
907 return sprintf(buf, "%u\n", limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100908 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
909}
910
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200911cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
912cpufreq_freq_attr_ro(cpuinfo_min_freq);
913cpufreq_freq_attr_ro(cpuinfo_max_freq);
914cpufreq_freq_attr_ro(cpuinfo_transition_latency);
915cpufreq_freq_attr_ro(scaling_available_governors);
916cpufreq_freq_attr_ro(scaling_driver);
917cpufreq_freq_attr_ro(scaling_cur_freq);
918cpufreq_freq_attr_ro(bios_limit);
919cpufreq_freq_attr_ro(related_cpus);
920cpufreq_freq_attr_ro(affected_cpus);
921cpufreq_freq_attr_rw(scaling_min_freq);
922cpufreq_freq_attr_rw(scaling_max_freq);
923cpufreq_freq_attr_rw(scaling_governor);
924cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925
Dave Jones905d77c2008-03-05 14:28:32 -0500926static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 &cpuinfo_min_freq.attr,
928 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100929 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 &scaling_min_freq.attr,
931 &scaling_max_freq.attr,
932 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700933 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 &scaling_governor.attr,
935 &scaling_driver.attr,
936 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700937 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 NULL
939};
940
Dave Jones29464f22009-01-18 01:37:11 -0500941#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
942#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Dave Jones29464f22009-01-18 01:37:11 -0500944static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Dave Jones905d77c2008-03-05 14:28:32 -0500946 struct cpufreq_policy *policy = to_policy(kobj);
947 struct freq_attr *fattr = to_attr(attr);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530948 ssize_t ret;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530949
viresh kumarad7722d2013-10-18 19:10:15 +0530950 down_read(&policy->rwsem);
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100951 ret = fattr->show(policy, buf);
viresh kumarad7722d2013-10-18 19:10:15 +0530952 up_read(&policy->rwsem);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return ret;
955}
956
Dave Jones905d77c2008-03-05 14:28:32 -0500957static ssize_t store(struct kobject *kobj, struct attribute *attr,
958 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Dave Jones905d77c2008-03-05 14:28:32 -0500960 struct cpufreq_policy *policy = to_policy(kobj);
961 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500962 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530963
Waiman Long9b3d9bb2018-07-24 14:26:05 -0400964 /*
965 * cpus_read_trylock() is used here to work around a circular lock
966 * dependency problem with respect to the cpufreq_register_driver().
967 */
968 if (!cpus_read_trylock())
969 return -EBUSY;
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530970
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100971 if (cpu_online(policy->cpu)) {
972 down_write(&policy->rwsem);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530973 ret = fattr->store(policy, buf, count);
Rafael J. Wysocki6541aef2016-02-12 23:56:21 +0100974 up_write(&policy->rwsem);
975 }
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530976
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +0200977 cpus_read_unlock();
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return ret;
980}
981
Dave Jones905d77c2008-03-05 14:28:32 -0500982static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Dave Jones905d77c2008-03-05 14:28:32 -0500984 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200985 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 complete(&policy->kobj_unregister);
987}
988
Emese Revfy52cf25d2010-01-19 02:58:23 +0100989static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 .show = show,
991 .store = store,
992};
993
994static struct kobj_type ktype_cpufreq = {
995 .sysfs_ops = &sysfs_ops,
996 .default_attrs = default_attrs,
997 .release = cpufreq_sysfs_release,
998};
999
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001000static void add_cpu_dev_symlink(struct cpufreq_policy *policy, unsigned int cpu)
Viresh Kumar87549142015-06-10 02:13:21 +02001001{
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001002 struct device *dev = get_cpu_device(cpu);
1003
1004 if (!dev)
1005 return;
1006
1007 if (cpumask_test_and_set_cpu(cpu, policy->real_cpus))
1008 return;
1009
Viresh Kumar266198042016-09-12 12:07:05 +05301010 dev_dbg(dev, "%s: Adding symlink\n", __func__);
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001011 if (sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq"))
1012 dev_err(dev, "cpufreq symlink creation failed\n");
Viresh Kumar87549142015-06-10 02:13:21 +02001013}
1014
Viresh Kumar266198042016-09-12 12:07:05 +05301015static void remove_cpu_dev_symlink(struct cpufreq_policy *policy,
1016 struct device *dev)
Viresh Kumar87549142015-06-10 02:13:21 +02001017{
Viresh Kumar266198042016-09-12 12:07:05 +05301018 dev_dbg(dev, "%s: Removing symlink\n", __func__);
1019 sysfs_remove_link(&dev->kobj, "cpufreq");
Viresh Kumar87549142015-06-10 02:13:21 +02001020}
1021
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001022static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
Dave Jones909a6942009-07-08 18:05:42 -04001023{
1024 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -04001025 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -04001026
Dave Jones909a6942009-07-08 18:05:42 -04001027 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001028 drv_attr = cpufreq_driver->attr;
Viresh Kumarf13f1182015-01-02 12:34:23 +05301029 while (drv_attr && *drv_attr) {
Dave Jones909a6942009-07-08 18:05:42 -04001030 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
1031 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001032 return ret;
Dave Jones909a6942009-07-08 18:05:42 -04001033 drv_attr++;
1034 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001035 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -04001036 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
1037 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001038 return ret;
Dave Jones909a6942009-07-08 18:05:42 -04001039 }
Dirk Brandewiec034b022014-10-13 08:37:40 -07001040
1041 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
1042 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001043 return ret;
Dirk Brandewiec034b022014-10-13 08:37:40 -07001044
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001045 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +01001046 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
1047 if (ret)
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001048 return ret;
Thomas Renningere2f74f32009-11-19 12:31:01 +01001049 }
Dave Jones909a6942009-07-08 18:05:42 -04001050
Viresh Kumar266198042016-09-12 12:07:05 +05301051 return 0;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301052}
1053
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001054__weak struct cpufreq_governor *cpufreq_default_governor(void)
1055{
1056 return NULL;
1057}
1058
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301059static int cpufreq_init_policy(struct cpufreq_policy *policy)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301060{
Yue Huab05d972019-04-29 15:24:18 +08001061 struct cpufreq_governor *gov = NULL, *def_gov = NULL;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301062 struct cpufreq_policy new_policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301063
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301064 memcpy(&new_policy, policy, sizeof(*policy));
Jason Barona27a9ab2013-12-19 22:50:50 +00001065
Yue Huab05d972019-04-29 15:24:18 +08001066 def_gov = cpufreq_default_governor();
1067
1068 if (has_target()) {
1069 /*
1070 * Update governor of new_policy to the governor used before
1071 * hotplug
1072 */
1073 gov = find_governor(policy->last_governor);
1074 if (gov) {
1075 pr_debug("Restoring governor %s for cpu %d\n",
viresh kumar6e2c89d2014-03-04 11:43:59 +08001076 policy->governor->name, policy->cpu);
Yue Huab05d972019-04-29 15:24:18 +08001077 } else {
1078 if (!def_gov)
1079 return -ENODATA;
1080 gov = def_gov;
1081 }
1082 new_policy.governor = gov;
Rafael J. Wysockide1df262016-02-05 02:37:42 +01001083 } else {
Yue Huab05d972019-04-29 15:24:18 +08001084 /* Use the default policy if there is no last_policy. */
1085 if (policy->last_policy) {
Srinivas Pandruvada69030dd12015-12-01 16:52:14 -08001086 new_policy.policy = policy->last_policy;
Yue Huab05d972019-04-29 15:24:18 +08001087 } else {
1088 if (!def_gov)
1089 return -ENODATA;
1090 cpufreq_parse_policy(def_gov->name, &new_policy);
1091 }
Srinivas Pandruvada69030dd12015-12-01 16:52:14 -08001092 }
Yue Huab05d972019-04-29 15:24:18 +08001093
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301094 return cpufreq_set_policy(policy, &new_policy);
Dave Jones909a6942009-07-08 18:05:42 -04001095}
1096
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001097static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
Viresh Kumarfcf80582013-01-29 14:39:08 +00001098{
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301099 int ret = 0;
Viresh Kumarfcf80582013-01-29 14:39:08 +00001100
Viresh Kumarbb29ae12015-02-19 17:02:06 +05301101 /* Has this CPU been taken care of already? */
1102 if (cpumask_test_cpu(cpu, policy->cpus))
1103 return 0;
1104
Viresh Kumar49f18562016-02-11 17:31:12 +05301105 down_write(&policy->rwsem);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02001106 if (has_target())
1107 cpufreq_stop_governor(policy);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001108
Viresh Kumarfcf80582013-01-29 14:39:08 +00001109 cpumask_set_cpu(cpu, policy->cpus);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301110
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301111 if (has_target()) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001112 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301113 if (ret)
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301114 pr_err("%s: Failed to start governor\n", __func__);
Viresh Kumar820c6ca2013-04-22 00:48:03 +02001115 }
Viresh Kumar49f18562016-02-11 17:31:12 +05301116 up_write(&policy->rwsem);
1117 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +00001118}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Viresh Kumar11eb69b2016-02-22 16:36:42 +05301120static void handle_update(struct work_struct *work)
1121{
1122 struct cpufreq_policy *policy =
1123 container_of(work, struct cpufreq_policy, update);
1124 unsigned int cpu = policy->cpu;
1125 pr_debug("handle_update for cpu %u called\n", cpu);
1126 cpufreq_update_policy(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001129static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301130{
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301131 struct cpufreq_policy *policy;
Viresh Kumaredd4a892016-03-03 14:51:33 +05301132 int ret;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301133
1134 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
1135 if (!policy)
1136 return NULL;
1137
1138 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
1139 goto err_free_policy;
1140
1141 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
1142 goto err_free_cpumask;
1143
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001144 if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
1145 goto err_free_rcpumask;
1146
Viresh Kumaredd4a892016-03-03 14:51:33 +05301147 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
1148 cpufreq_global_kobject, "policy%u", cpu);
1149 if (ret) {
1150 pr_err("%s: failed to init policy->kobj: %d\n", __func__, ret);
Rafael J. Wysocki2acb9bd2019-05-10 12:35:53 +02001151 /*
1152 * The entire policy object will be freed below, but the extra
1153 * memory allocated for the kobject name needs to be freed by
1154 * releasing the kobject.
1155 */
Viresh Kumar4ebe36c2019-04-30 11:35:52 +05301156 kobject_put(&policy->kobj);
Viresh Kumaredd4a892016-03-03 14:51:33 +05301157 goto err_free_real_cpus;
1158 }
1159
Lukasz Majewskic88a1f82013-08-06 22:53:08 +05301160 INIT_LIST_HEAD(&policy->policy_list);
viresh kumarad7722d2013-10-18 19:10:15 +05301161 init_rwsem(&policy->rwsem);
Srivatsa S. Bhat12478cf2014-03-24 13:35:44 +05301162 spin_lock_init(&policy->transition_lock);
1163 init_waitqueue_head(&policy->transition_wait);
Viresh Kumar818c5712015-01-02 12:34:38 +05301164 init_completion(&policy->kobj_unregister);
1165 INIT_WORK(&policy->update, handle_update);
viresh kumarad7722d2013-10-18 19:10:15 +05301166
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001167 policy->cpu = cpu;
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301168 return policy;
1169
Viresh Kumaredd4a892016-03-03 14:51:33 +05301170err_free_real_cpus:
1171 free_cpumask_var(policy->real_cpus);
Viresh Kumar2fc33842015-06-08 18:25:29 +05301172err_free_rcpumask:
1173 free_cpumask_var(policy->related_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301174err_free_cpumask:
1175 free_cpumask_var(policy->cpus);
1176err_free_policy:
1177 kfree(policy);
1178
1179 return NULL;
1180}
1181
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301182static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy)
Viresh Kumar42f921a2013-12-20 21:26:02 +05301183{
1184 struct kobject *kobj;
1185 struct completion *cmp;
1186
Viresh Kumar87549142015-06-10 02:13:21 +02001187 down_write(&policy->rwsem);
Rafael J. Wysocki1aefc752016-05-31 22:14:44 +02001188 cpufreq_stats_free_table(policy);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301189 kobj = &policy->kobj;
1190 cmp = &policy->kobj_unregister;
Viresh Kumar87549142015-06-10 02:13:21 +02001191 up_write(&policy->rwsem);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301192 kobject_put(kobj);
1193
1194 /*
1195 * We need to make sure that the underlying kobj is
1196 * actually not referenced anymore by anybody before we
1197 * proceed with unloading.
1198 */
1199 pr_debug("waiting for dropping of refcount\n");
1200 wait_for_completion(cmp);
1201 pr_debug("wait complete\n");
1202}
1203
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301204static void cpufreq_policy_free(struct cpufreq_policy *policy)
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301205{
Viresh Kumar988bed02015-05-08 11:53:45 +05301206 unsigned long flags;
1207 int cpu;
1208
1209 /* Remove policy from list */
1210 write_lock_irqsave(&cpufreq_driver_lock, flags);
1211 list_del(&policy->policy_list);
1212
1213 for_each_cpu(cpu, policy->related_cpus)
1214 per_cpu(cpufreq_cpu_data, cpu) = NULL;
1215 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1216
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301217 cpufreq_policy_put_kobj(policy);
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001218 free_cpumask_var(policy->real_cpus);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301219 free_cpumask_var(policy->related_cpus);
1220 free_cpumask_var(policy->cpus);
1221 kfree(policy);
1222}
1223
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001224static int cpufreq_online(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
Viresh Kumar7f0c0202015-01-02 12:34:32 +05301226 struct cpufreq_policy *policy;
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001227 bool new_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 unsigned long flags;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001229 unsigned int j;
1230 int ret;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001231
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001232 pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301233
Viresh Kumarbb29ae12015-02-19 17:02:06 +05301234 /* Check if this CPU already has a policy to manage it */
Viresh Kumar9104bb22015-05-12 12:22:12 +05301235 policy = per_cpu(cpufreq_cpu_data, cpu);
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001236 if (policy) {
Viresh Kumar9104bb22015-05-12 12:22:12 +05301237 WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001238 if (!policy_is_inactive(policy))
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001239 return cpufreq_add_policy_cpu(policy, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001241 /* This is the only online CPU for the policy. Start over. */
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001242 new_policy = false;
Rafael J. Wysocki11ce7072015-07-27 23:11:21 +02001243 down_write(&policy->rwsem);
1244 policy->cpu = cpu;
1245 policy->governor = NULL;
1246 up_write(&policy->rwsem);
1247 } else {
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001248 new_policy = true;
Rafael J. Wysockia34e63b2015-07-27 23:11:50 +02001249 policy = cpufreq_policy_alloc(cpu);
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001250 if (!policy)
Rafael J. Wysockid4d854d2015-07-27 23:11:30 +02001251 return -ENOMEM;
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001252 }
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301253
Viresh Kumar91a12e92019-02-12 16:36:04 +05301254 if (!new_policy && cpufreq_driver->online) {
1255 ret = cpufreq_driver->online(policy);
1256 if (ret) {
1257 pr_debug("%s: %d: initialization failed\n", __func__,
1258 __LINE__);
1259 goto out_exit_policy;
1260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Viresh Kumar91a12e92019-02-12 16:36:04 +05301262 /* Recover policy->cpus using related_cpus */
1263 cpumask_copy(policy->cpus, policy->related_cpus);
1264 } else {
1265 cpumask_copy(policy->cpus, cpumask_of(cpu));
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001266
Viresh Kumar91a12e92019-02-12 16:36:04 +05301267 /*
1268 * Call driver. From then on the cpufreq must be able
1269 * to accept all calls to ->verify and ->setpolicy for this CPU.
1270 */
1271 ret = cpufreq_driver->init(policy);
1272 if (ret) {
1273 pr_debug("%s: %d: initialization failed\n", __func__,
1274 __LINE__);
1275 goto out_free_policy;
1276 }
Viresh Kumard417e062018-02-22 11:29:44 +05301277
Viresh Kumar91a12e92019-02-12 16:36:04 +05301278 ret = cpufreq_table_validate_and_sort(policy);
1279 if (ret)
1280 goto out_exit_policy;
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001281
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001282 /* related_cpus should at least include policy->cpus. */
Viresh Kumar0998a032015-10-15 21:35:21 +05301283 cpumask_copy(policy->related_cpus, policy->cpus);
Rafael J. Wysocki4d1f3a52015-07-27 23:11:44 +02001284 }
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001285
Viresh Kumar91a12e92019-02-12 16:36:04 +05301286 down_write(&policy->rwsem);
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001287 /*
1288 * affected cpus must always be the one, which are online. We aren't
1289 * managing offline cpus here.
1290 */
1291 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1292
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001293 if (new_policy) {
Viresh Kumar5a7e56a2014-03-04 11:44:00 +08001294 policy->user_policy.min = policy->min;
1295 policy->user_policy.max = policy->max;
Tomeu Vizoso6d4e81e2014-11-24 10:08:03 +01001296
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001297 for_each_cpu(j, policy->related_cpus) {
Viresh Kumar988bed02015-05-08 11:53:45 +05301298 per_cpu(cpufreq_cpu_data, j) = policy;
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001299 add_cpu_dev_symlink(policy, j);
1300 }
Viresh Kumarff010472017-03-21 11:36:06 +05301301 } else {
1302 policy->min = policy->user_policy.min;
1303 policy->max = policy->user_policy.max;
Viresh Kumar988bed02015-05-08 11:53:45 +05301304 }
Viresh Kumar652ed952014-01-09 20:38:43 +05301305
Rafael J. Wysocki2ed99e32014-03-12 21:49:33 +01001306 if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
Viresh Kumarda60ce92013-10-03 20:28:30 +05301307 policy->cur = cpufreq_driver->get(policy->cpu);
1308 if (!policy->cur) {
1309 pr_err("%s: ->get() failed\n", __func__);
Viresh Kumard417e062018-02-22 11:29:44 +05301310 goto out_destroy_policy;
Viresh Kumarda60ce92013-10-03 20:28:30 +05301311 }
1312 }
1313
Viresh Kumard3916692013-12-03 11:20:46 +05301314 /*
1315 * Sometimes boot loaders set CPU frequency to a value outside of
1316 * frequency table present with cpufreq core. In such cases CPU might be
1317 * unstable if it has to run on that frequency for long duration of time
1318 * and so its better to set it to a frequency which is specified in
1319 * freq-table. This also makes cpufreq stats inconsistent as
1320 * cpufreq-stats would fail to register because current frequency of CPU
1321 * isn't found in freq-table.
1322 *
1323 * Because we don't want this change to effect boot process badly, we go
1324 * for the next freq which is >= policy->cur ('cur' must be set by now,
1325 * otherwise we will end up setting freq to lowest of the table as 'cur'
1326 * is initialized to zero).
1327 *
1328 * We are passing target-freq as "policy->cur - 1" otherwise
1329 * __cpufreq_driver_target() would simply fail, as policy->cur will be
1330 * equal to target-freq.
1331 */
1332 if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
1333 && has_target()) {
1334 /* Are we running at unknown frequency ? */
1335 ret = cpufreq_frequency_table_get_index(policy, policy->cur);
1336 if (ret == -EINVAL) {
1337 /* Warn user and fix it */
1338 pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
1339 __func__, policy->cpu, policy->cur);
1340 ret = __cpufreq_driver_target(policy, policy->cur - 1,
1341 CPUFREQ_RELATION_L);
1342
1343 /*
1344 * Reaching here after boot in a few seconds may not
1345 * mean that system will remain stable at "unknown"
1346 * frequency for longer duration. Hence, a BUG_ON().
1347 */
1348 BUG_ON(ret);
1349 pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
1350 __func__, policy->cpu, policy->cur);
1351 }
1352 }
1353
Rafael J. Wysocki194d99c2015-07-29 03:08:57 +02001354 if (new_policy) {
Rafael J. Wysockid9612a42015-07-27 23:11:37 +02001355 ret = cpufreq_add_dev_interface(policy);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301356 if (ret)
Viresh Kumard417e062018-02-22 11:29:44 +05301357 goto out_destroy_policy;
Rafael J. Wysocki1aefc752016-05-31 22:14:44 +02001358
1359 cpufreq_stats_create_table(policy);
Dave Jones8ff69732006-03-05 03:37:23 -05001360
Viresh Kumar988bed02015-05-08 11:53:45 +05301361 write_lock_irqsave(&cpufreq_driver_lock, flags);
1362 list_add(&policy->policy_list, &cpufreq_policy_list);
1363 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1364 }
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301365
Viresh Kumar7f0fa402015-07-08 15:12:16 +05301366 ret = cpufreq_init_policy(policy);
1367 if (ret) {
1368 pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
1369 __func__, cpu, ret);
Viresh Kumard417e062018-02-22 11:29:44 +05301370 goto out_destroy_policy;
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301371 }
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301372
Viresh Kumar4e97b632014-03-04 11:44:01 +08001373 up_write(&policy->rwsem);
Viresh Kumar08fd8c1c2013-12-24 07:11:01 +05301374
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001375 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301376
Viresh Kumar7c45cf32014-11-27 06:07:51 +05301377 /* Callback for handling stuff after policy is ready */
1378 if (cpufreq_driver->ready)
1379 cpufreq_driver->ready(policy);
1380
Daniel Lezcanobcc61562019-06-25 13:32:41 +02001381 if (cpufreq_thermal_control_enabled(cpufreq_driver))
Amit Kucheria5c238a82019-01-30 10:52:01 +05301382 policy->cdev = of_cpufreq_cooling_register(policy);
1383
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001384 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 return 0;
1387
Viresh Kumard417e062018-02-22 11:29:44 +05301388out_destroy_policy:
Viresh Kumarb24b6472018-02-22 11:29:43 +05301389 for_each_cpu(j, policy->real_cpus)
1390 remove_cpu_dev_symlink(policy, get_cpu_device(j));
1391
Prarit Bhargava7106e022014-09-10 10:12:08 -04001392 up_write(&policy->rwsem);
1393
Viresh Kumard417e062018-02-22 11:29:44 +05301394out_exit_policy:
Viresh Kumarda60ce92013-10-03 20:28:30 +05301395 if (cpufreq_driver->exit)
1396 cpufreq_driver->exit(policy);
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001397
Viresh Kumar8101f992015-07-08 15:12:15 +05301398out_free_policy:
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301399 cpufreq_policy_free(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 return ret;
1401}
1402
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001403/**
1404 * cpufreq_add_dev - the cpufreq interface for a CPU device.
1405 * @dev: CPU device.
1406 * @sif: Subsystem interface structure pointer (not used)
1407 */
1408static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1409{
Rafael J. Wysockia794d612016-04-07 03:31:57 +02001410 struct cpufreq_policy *policy;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001411 unsigned cpu = dev->id;
Viresh Kumar266198042016-09-12 12:07:05 +05301412 int ret;
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001413
1414 dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
1415
Viresh Kumar266198042016-09-12 12:07:05 +05301416 if (cpu_online(cpu)) {
1417 ret = cpufreq_online(cpu);
1418 if (ret)
1419 return ret;
1420 }
Rafael J. Wysocki0b275352015-07-29 03:03:44 +02001421
Viresh Kumar266198042016-09-12 12:07:05 +05301422 /* Create sysfs link on CPU registration */
Rafael J. Wysockia794d612016-04-07 03:31:57 +02001423 policy = per_cpu(cpufreq_cpu_data, cpu);
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001424 if (policy)
1425 add_cpu_dev_symlink(policy, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Rafael J. Wysocki2f0ba792017-03-27 19:33:09 +02001427 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428}
1429
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02001430static int cpufreq_offline(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301432 struct cpufreq_policy *policy;
Viresh Kumar69cee712016-02-11 17:31:11 +05301433 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001435 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Viresh Kumar988bed02015-05-08 11:53:45 +05301437 policy = cpufreq_cpu_get_raw(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301438 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001439 pr_debug("%s: No cpu_data found\n", __func__);
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02001440 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Viresh Kumar49f18562016-02-11 17:31:12 +05301443 down_write(&policy->rwsem);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02001444 if (has_target())
1445 cpufreq_stop_governor(policy);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001446
Viresh Kumar9591bec2015-06-10 02:20:23 +02001447 cpumask_clear_cpu(cpu, policy->cpus);
Viresh Kumar45732372015-05-12 12:22:34 +05301448
Viresh Kumar9591bec2015-06-10 02:20:23 +02001449 if (policy_is_inactive(policy)) {
1450 if (has_target())
1451 strncpy(policy->last_governor, policy->governor->name,
1452 CPUFREQ_NAME_LEN);
Srinivas Pandruvada69030dd12015-12-01 16:52:14 -08001453 else
1454 policy->last_policy = policy->policy;
Viresh Kumar9591bec2015-06-10 02:20:23 +02001455 } else if (cpu == policy->cpu) {
1456 /* Nominate new CPU */
1457 policy->cpu = cpumask_any(policy->cpus);
1458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Viresh Kumar9591bec2015-06-10 02:20:23 +02001460 /* Start governor again for active policy */
1461 if (!policy_is_inactive(policy)) {
1462 if (has_target()) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001463 ret = cpufreq_start_governor(policy);
Viresh Kumar9591bec2015-06-10 02:20:23 +02001464 if (ret)
1465 pr_err("%s: Failed to start governor\n", __func__);
1466 }
Viresh Kumar69cee712016-02-11 17:31:11 +05301467
Viresh Kumar49f18562016-02-11 17:31:12 +05301468 goto unlock;
Viresh Kumar69cee712016-02-11 17:31:11 +05301469 }
1470
Daniel Lezcanobcc61562019-06-25 13:32:41 +02001471 if (cpufreq_thermal_control_enabled(cpufreq_driver)) {
Amit Kucheria5c238a82019-01-30 10:52:01 +05301472 cpufreq_cooling_unregister(policy->cdev);
1473 policy->cdev = NULL;
1474 }
1475
Viresh Kumar69cee712016-02-11 17:31:11 +05301476 if (cpufreq_driver->stop_cpu)
Dirk Brandewie367dc4a2014-03-19 08:45:53 -07001477 cpufreq_driver->stop_cpu(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02001479 if (has_target())
1480 cpufreq_exit_governor(policy);
Viresh Kumar87549142015-06-10 02:13:21 +02001481
Viresh Kumar87549142015-06-10 02:13:21 +02001482 /*
Viresh Kumar91a12e92019-02-12 16:36:04 +05301483 * Perform the ->offline() during light-weight tear-down, as
1484 * that allows fast recovery when the CPU comes back.
Viresh Kumar87549142015-06-10 02:13:21 +02001485 */
Viresh Kumar91a12e92019-02-12 16:36:04 +05301486 if (cpufreq_driver->offline) {
1487 cpufreq_driver->offline(policy);
1488 } else if (cpufreq_driver->exit) {
Viresh Kumar87549142015-06-10 02:13:21 +02001489 cpufreq_driver->exit(policy);
Srinivas Pandruvada55582bc2015-10-07 13:50:44 -07001490 policy->freq_table = NULL;
1491 }
Viresh Kumar49f18562016-02-11 17:31:12 +05301492
1493unlock:
1494 up_write(&policy->rwsem);
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02001495 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496}
1497
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301498/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301499 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301500 *
1501 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301502 */
Viresh Kumar71db87b2015-07-30 15:04:01 +05301503static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001504{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001505 unsigned int cpu = dev->id;
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001506 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Venki Pallipadiec282972007-03-26 12:03:19 -07001507
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001508 if (!policy)
Linus Torvalds1af115d2015-08-31 08:47:40 -07001509 return;
Viresh Kumar87549142015-06-10 02:13:21 +02001510
Viresh Kumar69cee712016-02-11 17:31:11 +05301511 if (cpu_online(cpu))
1512 cpufreq_offline(cpu);
Viresh Kumar87549142015-06-10 02:13:21 +02001513
Rafael J. Wysocki559ed402015-07-26 02:07:47 +02001514 cpumask_clear_cpu(cpu, policy->real_cpus);
Viresh Kumar266198042016-09-12 12:07:05 +05301515 remove_cpu_dev_symlink(policy, dev);
Viresh Kumarf344dae2015-11-21 09:06:49 +05301516
Viresh Kumar91a12e92019-02-12 16:36:04 +05301517 if (cpumask_empty(policy->real_cpus)) {
1518 /* We did light-weight exit earlier, do full tear down now */
1519 if (cpufreq_driver->offline)
1520 cpufreq_driver->exit(policy);
1521
Viresh Kumarf9f41e3e2017-01-05 10:17:27 +05301522 cpufreq_policy_free(policy);
Viresh Kumar91a12e92019-02-12 16:36:04 +05301523 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001524}
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301527 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1528 * in deep trouble.
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301529 * @policy: policy managing CPUs
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 * @new_freq: CPU frequency the CPU actually runs at
1531 *
Dave Jones29464f22009-01-18 01:37:11 -05001532 * We adjust to current frequency first, and need to clean up later.
1533 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 */
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301535static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301536 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537{
1538 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301539
Joe Perchese837f9b2014-03-11 10:03:00 -07001540 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 +05301541 policy->cur, new_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301543 freqs.old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301545
Viresh Kumar8fec0512014-03-24 13:35:45 +05301546 cpufreq_freq_transition_begin(policy, &freqs);
1547 cpufreq_freq_transition_end(policy, &freqs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548}
1549
Dave Jones32ee8c32006-02-28 00:43:23 -05001550/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301551 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001552 * @cpu: CPU number
1553 *
1554 * This is the last known freq, without actually getting it from the driver.
1555 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1556 */
1557unsigned int cpufreq_quick_get(unsigned int cpu)
1558{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001559 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301560 unsigned int ret_freq = 0;
Richard Cochranc75361c2016-03-11 09:43:07 +01001561 unsigned long flags;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001562
Richard Cochranc75361c2016-03-11 09:43:07 +01001563 read_lock_irqsave(&cpufreq_driver_lock, flags);
1564
1565 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get) {
1566 ret_freq = cpufreq_driver->get(cpu);
1567 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1568 return ret_freq;
1569 }
1570
1571 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001572
1573 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001574 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301575 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001576 cpufreq_cpu_put(policy);
1577 }
1578
Dave Jones4d34a672008-02-07 16:33:49 -05001579 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001580}
1581EXPORT_SYMBOL(cpufreq_quick_get);
1582
Jesse Barnes3d737102011-06-28 10:59:12 -07001583/**
1584 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1585 * @cpu: CPU number
1586 *
1587 * Just return the max possible frequency for a given CPU.
1588 */
1589unsigned int cpufreq_quick_get_max(unsigned int cpu)
1590{
1591 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1592 unsigned int ret_freq = 0;
1593
1594 if (policy) {
1595 ret_freq = policy->max;
1596 cpufreq_cpu_put(policy);
1597 }
1598
1599 return ret_freq;
1600}
1601EXPORT_SYMBOL(cpufreq_quick_get_max);
1602
Viresh Kumard92d50a2015-01-02 12:34:29 +05301603static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301605 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Yue Hu4db7c342019-04-19 14:27:58 +08001607 if (unlikely(policy_is_inactive(policy)))
Dave Jones4d34a672008-02-07 16:33:49 -05001608 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Viresh Kumard92d50a2015-01-02 12:34:29 +05301610 ret_freq = cpufreq_driver->get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001612 /*
Sudeep Holla2f661962019-01-07 18:51:53 +00001613 * If fast frequency switching is used with the given policy, the check
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001614 * against policy->cur is pointless, so skip it in that case too.
1615 */
Sudeep Holla2f661962019-01-07 18:51:53 +00001616 if (policy->fast_switch_enabled)
Viresh Kumar11e584c2015-06-10 02:11:45 +02001617 return ret_freq;
1618
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301619 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001620 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301621 /* verify no discrepancy between actual and
1622 saved value exists */
1623 if (unlikely(ret_freq != policy->cur)) {
Viresh Kumara1e1dc42015-01-02 12:34:28 +05301624 cpufreq_out_of_sync(policy, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 schedule_work(&policy->update);
1626 }
1627 }
1628
Dave Jones4d34a672008-02-07 16:33:49 -05001629 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001630}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001632/**
1633 * cpufreq_get - get the current CPU frequency (in kHz)
1634 * @cpu: CPU number
1635 *
1636 * Get the CPU current (static) CPU frequency
1637 */
1638unsigned int cpufreq_get(unsigned int cpu)
1639{
Aaron Plattner999976e2014-03-04 12:42:15 -08001640 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001641 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001642
Aaron Plattner999976e2014-03-04 12:42:15 -08001643 if (policy) {
1644 down_read(&policy->rwsem);
Yue Hu4db7c342019-04-19 14:27:58 +08001645 if (cpufreq_driver->get)
1646 ret_freq = __cpufreq_get(policy);
Aaron Plattner999976e2014-03-04 12:42:15 -08001647 up_read(&policy->rwsem);
Viresh Kumar26ca8692013-09-20 22:37:31 +05301648
Aaron Plattner999976e2014-03-04 12:42:15 -08001649 cpufreq_cpu_put(policy);
1650 }
Viresh Kumar6eed9402013-08-06 22:53:11 +05301651
Dave Jones4d34a672008-02-07 16:33:49 -05001652 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653}
1654EXPORT_SYMBOL(cpufreq_get);
1655
Rafael J. Wysocki999f5722016-03-21 15:46:25 +01001656static unsigned int cpufreq_update_current_freq(struct cpufreq_policy *policy)
1657{
1658 unsigned int new_freq;
1659
1660 new_freq = cpufreq_driver->get(policy->cpu);
1661 if (!new_freq)
1662 return 0;
1663
1664 if (!policy->cur) {
1665 pr_debug("cpufreq: Driver did not initialize current freq\n");
1666 policy->cur = new_freq;
1667 } else if (policy->cur != new_freq && has_target()) {
1668 cpufreq_out_of_sync(policy, new_freq);
1669 }
1670
1671 return new_freq;
1672}
1673
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001674static struct subsys_interface cpufreq_interface = {
1675 .name = "cpufreq",
1676 .subsys = &cpu_subsys,
1677 .add_dev = cpufreq_add_dev,
1678 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001679};
1680
Viresh Kumare28867e2014-03-04 11:00:27 +08001681/*
1682 * In case platform wants some specific frequency to be configured
1683 * during suspend..
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001684 */
Viresh Kumare28867e2014-03-04 11:00:27 +08001685int cpufreq_generic_suspend(struct cpufreq_policy *policy)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001686{
Viresh Kumare28867e2014-03-04 11:00:27 +08001687 int ret;
Dave Jones4bc5d342009-08-04 14:03:25 -04001688
Viresh Kumare28867e2014-03-04 11:00:27 +08001689 if (!policy->suspend_freq) {
Bartlomiej Zolnierkiewicz201f3712015-09-08 18:41:02 +02001690 pr_debug("%s: suspend_freq not defined\n", __func__);
1691 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001692 }
1693
Viresh Kumare28867e2014-03-04 11:00:27 +08001694 pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1695 policy->suspend_freq);
1696
1697 ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1698 CPUFREQ_RELATION_H);
1699 if (ret)
1700 pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1701 __func__, policy->suspend_freq, ret);
1702
Dave Jonesc9060492008-02-07 16:32:18 -05001703 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001704}
Viresh Kumare28867e2014-03-04 11:00:27 +08001705EXPORT_SYMBOL(cpufreq_generic_suspend);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001706
1707/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001708 * cpufreq_suspend() - Suspend CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001710 * Called during system wide Suspend/Hibernate cycles for suspending governors
1711 * as some platforms can't change frequency after this point in suspend cycle.
1712 * Because some of the devices (like: i2c, regulators, etc) they use for
1713 * changing frequency are suspended quickly after this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001715void cpufreq_suspend(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301717 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001719 if (!cpufreq_driver)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001720 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001722 if (!has_target() && !cpufreq_driver->suspend)
Viresh Kumarb1b12bab2014-09-30 09:33:17 +05301723 goto suspend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001725 pr_debug("%s: Suspending Governors\n", __func__);
1726
Viresh Kumarf9637352015-05-12 12:20:11 +05301727 for_each_active_policy(policy) {
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001728 if (has_target()) {
1729 down_write(&policy->rwsem);
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02001730 cpufreq_stop_governor(policy);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001731 up_write(&policy->rwsem);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001732 }
1733
1734 if (cpufreq_driver->suspend && cpufreq_driver->suspend(policy))
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001735 pr_err("%s: Failed to suspend driver: %p\n", __func__,
1736 policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 }
Viresh Kumarb1b12bab2014-09-30 09:33:17 +05301738
1739suspend:
1740 cpufreq_suspended = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743/**
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001744 * cpufreq_resume() - Resume CPUFreq governors
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 *
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001746 * Called during system wide Suspend/Hibernate cycle for resuming governors that
1747 * are suspended with cpufreq_suspend().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 */
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001749void cpufreq_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 struct cpufreq_policy *policy;
Viresh Kumar49f18562016-02-11 17:31:12 +05301752 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001754 if (!cpufreq_driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 return;
1756
Bo Yan703cbaa2018-01-23 13:57:55 -08001757 if (unlikely(!cpufreq_suspended))
1758 return;
1759
Lan Tianyu8e304442014-09-18 15:03:07 +08001760 cpufreq_suspended = false;
1761
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001762 if (!has_target() && !cpufreq_driver->resume)
Viresh Kumar2f0aea92014-03-04 11:00:26 +08001763 return;
1764
1765 pr_debug("%s: Resuming Governors\n", __func__);
1766
Viresh Kumarf9637352015-05-12 12:20:11 +05301767 for_each_active_policy(policy) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301768 if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
Viresh Kumar0c5aa402014-03-24 12:30:29 +05301769 pr_err("%s: Failed to resume driver: %p\n", __func__,
1770 policy);
Rafael J. Wysockiba41e1b2016-05-02 02:27:19 +02001771 } else if (has_target()) {
Viresh Kumar49f18562016-02-11 17:31:12 +05301772 down_write(&policy->rwsem);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01001773 ret = cpufreq_start_governor(policy);
Viresh Kumar49f18562016-02-11 17:31:12 +05301774 up_write(&policy->rwsem);
1775
1776 if (ret)
1777 pr_err("%s: Failed to start governor for policy: %p\n",
1778 __func__, policy);
1779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Borislav Petkov9d950462013-01-20 10:24:28 +00001783/**
1784 * cpufreq_get_current_driver - return current driver's name
1785 *
1786 * Return the name string of the currently loaded cpufreq driver
1787 * or NULL, if none.
1788 */
1789const char *cpufreq_get_current_driver(void)
1790{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001791 if (cpufreq_driver)
1792 return cpufreq_driver->name;
1793
1794 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001795}
1796EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Thomas Petazzoni51315cd2014-10-19 11:30:27 +02001798/**
1799 * cpufreq_get_driver_data - return current driver data
1800 *
1801 * Return the private data of the currently loaded cpufreq
1802 * driver, or NULL if no cpufreq driver is loaded.
1803 */
1804void *cpufreq_get_driver_data(void)
1805{
1806 if (cpufreq_driver)
1807 return cpufreq_driver->driver_data;
1808
1809 return NULL;
1810}
1811EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813/*********************************************************************
1814 * NOTIFIER LISTS INTERFACE *
1815 *********************************************************************/
1816
1817/**
1818 * cpufreq_register_notifier - register a driver with cpufreq
1819 * @nb: notifier function to register
1820 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1821 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001822 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 * are notified about clock rate changes (once before and once after
1824 * the transition), or a list of drivers that are notified about
1825 * changes in cpufreq policy.
1826 *
1827 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001828 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 */
1830int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1831{
1832 int ret;
1833
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001834 if (cpufreq_disabled())
1835 return -EINVAL;
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 switch (list) {
1838 case CPUFREQ_TRANSITION_NOTIFIER:
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001839 mutex_lock(&cpufreq_fast_switch_lock);
1840
1841 if (cpufreq_fast_switch_count > 0) {
1842 mutex_unlock(&cpufreq_fast_switch_lock);
1843 return -EBUSY;
1844 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001845 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001846 &cpufreq_transition_notifier_list, nb);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001847 if (!ret)
1848 cpufreq_fast_switch_count--;
1849
1850 mutex_unlock(&cpufreq_fast_switch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 break;
1852 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001853 ret = blocking_notifier_chain_register(
1854 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 break;
1856 default:
1857 ret = -EINVAL;
1858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 return ret;
1861}
1862EXPORT_SYMBOL(cpufreq_register_notifier);
1863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864/**
1865 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1866 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301867 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 *
1869 * Remove a driver from the CPU frequency notifier list.
1870 *
1871 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001872 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 */
1874int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1875{
1876 int ret;
1877
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001878 if (cpufreq_disabled())
1879 return -EINVAL;
1880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 switch (list) {
1882 case CPUFREQ_TRANSITION_NOTIFIER:
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001883 mutex_lock(&cpufreq_fast_switch_lock);
1884
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001885 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001886 &cpufreq_transition_notifier_list, nb);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001887 if (!ret && !WARN_ON(cpufreq_fast_switch_count >= 0))
1888 cpufreq_fast_switch_count++;
1889
1890 mutex_unlock(&cpufreq_fast_switch_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 break;
1892 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001893 ret = blocking_notifier_chain_unregister(
1894 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 break;
1896 default:
1897 ret = -EINVAL;
1898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900 return ret;
1901}
1902EXPORT_SYMBOL(cpufreq_unregister_notifier);
1903
1904
1905/*********************************************************************
1906 * GOVERNORS *
1907 *********************************************************************/
1908
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001909/**
1910 * cpufreq_driver_fast_switch - Carry out a fast CPU frequency switch.
1911 * @policy: cpufreq policy to switch the frequency for.
1912 * @target_freq: New frequency to set (may be approximate).
1913 *
1914 * Carry out a fast frequency switch without sleeping.
1915 *
1916 * The driver's ->fast_switch() callback invoked by this function must be
1917 * suitable for being called from within RCU-sched read-side critical sections
1918 * and it is expected to select the minimum available frequency greater than or
1919 * equal to @target_freq (CPUFREQ_RELATION_L).
1920 *
1921 * This function must not be called if policy->fast_switch_enabled is unset.
1922 *
1923 * Governors calling this function must guarantee that it will never be invoked
1924 * twice in parallel for the same policy and that it will never be called in
1925 * parallel with either ->target() or ->target_index() for the same policy.
1926 *
Viresh Kumar209887e2017-08-09 10:21:46 +05301927 * Returns the actual frequency set for the CPU.
1928 *
1929 * If 0 is returned by the driver's ->fast_switch() callback to indicate an
1930 * error condition, the hardware configuration must be preserved.
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001931 */
1932unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
1933 unsigned int target_freq)
1934{
Rafael J. Wysockib9af6942016-06-01 22:36:26 +02001935 target_freq = clamp_val(target_freq, policy->min, policy->max);
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02001936
1937 return cpufreq_driver->fast_switch(policy, target_freq);
1938}
1939EXPORT_SYMBOL_GPL(cpufreq_driver_fast_switch);
1940
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301941/* Must set freqs->new to intermediate frequency */
1942static int __target_intermediate(struct cpufreq_policy *policy,
1943 struct cpufreq_freqs *freqs, int index)
1944{
1945 int ret;
1946
1947 freqs->new = cpufreq_driver->get_intermediate(policy, index);
1948
1949 /* We don't need to switch to intermediate freq */
1950 if (!freqs->new)
1951 return 0;
1952
1953 pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
1954 __func__, policy->cpu, freqs->old, freqs->new);
1955
1956 cpufreq_freq_transition_begin(policy, freqs);
1957 ret = cpufreq_driver->target_intermediate(policy, index);
1958 cpufreq_freq_transition_end(policy, freqs, ret);
1959
1960 if (ret)
1961 pr_err("%s: Failed to change to intermediate frequency: %d\n",
1962 __func__, ret);
1963
1964 return ret;
1965}
1966
Viresh Kumar23727842016-06-03 10:58:50 +05301967static int __target_index(struct cpufreq_policy *policy, int index)
Viresh Kumar8d657752014-05-21 14:29:29 +05301968{
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301969 struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
1970 unsigned int intermediate_freq = 0;
Viresh Kumar23727842016-06-03 10:58:50 +05301971 unsigned int newfreq = policy->freq_table[index].frequency;
Viresh Kumar8d657752014-05-21 14:29:29 +05301972 int retval = -EINVAL;
1973 bool notify;
1974
Viresh Kumar23727842016-06-03 10:58:50 +05301975 if (newfreq == policy->cur)
1976 return 0;
1977
Viresh Kumar8d657752014-05-21 14:29:29 +05301978 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
Viresh Kumar8d657752014-05-21 14:29:29 +05301979 if (notify) {
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301980 /* Handle switching to intermediate frequency */
1981 if (cpufreq_driver->get_intermediate) {
1982 retval = __target_intermediate(policy, &freqs, index);
1983 if (retval)
1984 return retval;
Viresh Kumar8d657752014-05-21 14:29:29 +05301985
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05301986 intermediate_freq = freqs.new;
1987 /* Set old freq to intermediate */
1988 if (intermediate_freq)
1989 freqs.old = freqs.new;
1990 }
1991
Viresh Kumar23727842016-06-03 10:58:50 +05301992 freqs.new = newfreq;
Viresh Kumar8d657752014-05-21 14:29:29 +05301993 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1994 __func__, policy->cpu, freqs.old, freqs.new);
1995
1996 cpufreq_freq_transition_begin(policy, &freqs);
1997 }
1998
1999 retval = cpufreq_driver->target_index(policy, index);
2000 if (retval)
2001 pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
2002 retval);
2003
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302004 if (notify) {
Viresh Kumar8d657752014-05-21 14:29:29 +05302005 cpufreq_freq_transition_end(policy, &freqs, retval);
2006
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302007 /*
2008 * Failed after setting to intermediate freq? Driver should have
2009 * reverted back to initial frequency and so should we. Check
2010 * here for intermediate_freq instead of get_intermediate, in
Shailendra Verma58405af2015-05-22 22:48:22 +05302011 * case we haven't switched to intermediate freq at all.
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302012 */
2013 if (unlikely(retval && intermediate_freq)) {
2014 freqs.old = intermediate_freq;
2015 freqs.new = policy->restore_freq;
2016 cpufreq_freq_transition_begin(policy, &freqs);
2017 cpufreq_freq_transition_end(policy, &freqs, 0);
2018 }
2019 }
2020
Viresh Kumar8d657752014-05-21 14:29:29 +05302021 return retval;
2022}
2023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024int __cpufreq_driver_target(struct cpufreq_policy *policy,
2025 unsigned int target_freq,
2026 unsigned int relation)
2027{
Viresh Kumar72499242012-10-31 01:28:21 +01002028 unsigned int old_target_freq = target_freq;
Viresh Kumard218ed72016-06-03 10:58:51 +05302029 int index;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002030
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002031 if (cpufreq_disabled())
2032 return -ENODEV;
2033
Viresh Kumar72499242012-10-31 01:28:21 +01002034 /* Make sure that target_freq is within supported range */
Viresh Kumar910c6e82016-05-26 11:27:24 +05302035 target_freq = clamp_val(target_freq, policy->min, policy->max);
Viresh Kumar72499242012-10-31 01:28:21 +01002036
2037 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002038 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01002039
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302040 /*
2041 * This might look like a redundant call as we are checking it again
2042 * after finding index. But it is left intentionally for cases where
2043 * exactly same freq is called again and so we can save on few function
2044 * calls.
2045 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01002046 if (target_freq == policy->cur)
2047 return 0;
2048
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302049 /* Save last value to restore later on errors */
2050 policy->restore_freq = policy->cur;
2051
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002052 if (cpufreq_driver->target)
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01002053 return cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08002054
Rafael J. Wysocki6019d232016-02-26 00:03:01 +01002055 if (!cpufreq_driver->target_index)
2056 return -EINVAL;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302057
Viresh Kumard218ed72016-06-03 10:58:51 +05302058 index = cpufreq_frequency_table_target(policy, target_freq, relation);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302059
Viresh Kumar23727842016-06-03 10:58:50 +05302060 return __target_index(policy, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
2063
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064int cpufreq_driver_target(struct cpufreq_policy *policy,
2065 unsigned int target_freq,
2066 unsigned int relation)
2067{
Julia Lawallf1829e42008-07-25 22:44:53 +02002068 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069
viresh kumarad7722d2013-10-18 19:10:15 +05302070 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 ret = __cpufreq_driver_target(policy, target_freq, relation);
2073
viresh kumarad7722d2013-10-18 19:10:15 +05302074 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 return ret;
2077}
2078EXPORT_SYMBOL_GPL(cpufreq_driver_target);
2079
Rafael J. Wysockide1df262016-02-05 02:37:42 +01002080__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
2081{
2082 return NULL;
2083}
2084
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002085static int cpufreq_init_governor(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
Dave Jonescc993ca2005-07-28 09:43:56 -07002087 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07002088
Viresh Kumar2f0aea92014-03-04 11:00:26 +08002089 /* Don't start any governor operations if we are entering suspend */
2090 if (cpufreq_suspended)
2091 return 0;
Ethan Zhaocb57720b2014-12-18 15:28:19 +09002092 /*
2093 * Governor might not be initiated here if ACPI _PPC changed
2094 * notification happened, so check it.
2095 */
2096 if (!policy->governor)
2097 return -EINVAL;
Viresh Kumar2f0aea92014-03-04 11:00:26 +08002098
Viresh Kumared4676e2017-07-19 15:42:46 +05302099 /* Platform doesn't want dynamic frequency switching ? */
2100 if (policy->governor->dynamic_switching &&
Viresh Kumarfc4c7092017-07-19 15:42:49 +05302101 cpufreq_driver->flags & CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING) {
Rafael J. Wysockide1df262016-02-05 02:37:42 +01002102 struct cpufreq_governor *gov = cpufreq_fallback_governor();
2103
2104 if (gov) {
Viresh Kumarfe829ed2017-07-19 15:42:48 +05302105 pr_warn("Can't use %s governor as dynamic switching is disallowed. Fallback to %s governor\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002106 policy->governor->name, gov->name);
Thomas Renninger6afde102007-10-02 13:28:13 -07002107 policy->governor = gov;
Rafael J. Wysockide1df262016-02-05 02:37:42 +01002108 } else {
2109 return -EINVAL;
Thomas Renninger6afde102007-10-02 13:28:13 -07002110 }
Thomas Renninger1c256242007-10-02 13:28:12 -07002111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002113 if (!try_module_get(policy->governor->owner))
2114 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002116 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08002117
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002118 if (policy->governor->init) {
2119 ret = policy->governor->init(policy);
2120 if (ret) {
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002121 module_put(policy->governor->owner);
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002122 return ret;
2123 }
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002124 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002126 return 0;
2127}
2128
2129static void cpufreq_exit_governor(struct cpufreq_policy *policy)
2130{
2131 if (cpufreq_suspended || !policy->governor)
2132 return;
2133
2134 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2135
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002136 if (policy->governor->exit)
2137 policy->governor->exit(policy);
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002138
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002139 module_put(policy->governor->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140}
2141
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002142static int cpufreq_start_governor(struct cpufreq_policy *policy)
2143{
2144 int ret;
2145
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002146 if (cpufreq_suspended)
2147 return 0;
2148
2149 if (!policy->governor)
2150 return -EINVAL;
2151
2152 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2153
Rafael J. Wysocki3bbf8fe2016-03-21 15:47:48 +01002154 if (cpufreq_driver->get && !cpufreq_driver->setpolicy)
2155 cpufreq_update_current_freq(policy);
2156
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002157 if (policy->governor->start) {
2158 ret = policy->governor->start(policy);
2159 if (ret)
2160 return ret;
2161 }
Rafael J. Wysockid6ff44d2016-05-14 00:59:27 +02002162
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002163 if (policy->governor->limits)
2164 policy->governor->limits(policy);
2165
Rafael J. Wysockid6ff44d2016-05-14 00:59:27 +02002166 return 0;
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002167}
2168
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002169static void cpufreq_stop_governor(struct cpufreq_policy *policy)
2170{
2171 if (cpufreq_suspended || !policy->governor)
2172 return;
2173
2174 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2175
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002176 if (policy->governor->stop)
2177 policy->governor->stop(policy);
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002178}
2179
2180static void cpufreq_governor_limits(struct cpufreq_policy *policy)
2181{
2182 if (cpufreq_suspended || !policy->governor)
2183 return;
2184
2185 pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
2186
Rafael J. Wysockie7888922016-06-02 23:24:15 +02002187 if (policy->governor->limits)
2188 policy->governor->limits(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191int cpufreq_register_governor(struct cpufreq_governor *governor)
2192{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002193 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 if (!governor)
2196 return -EINVAL;
2197
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002198 if (cpufreq_disabled())
2199 return -ENODEV;
2200
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002201 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05002202
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002203 err = -EBUSY;
Viresh Kumar42f91fa2015-01-02 12:34:26 +05302204 if (!find_governor(governor->name)) {
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002205 err = 0;
2206 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Dave Jones32ee8c32006-02-28 00:43:23 -05002209 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07002210 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211}
2212EXPORT_SYMBOL_GPL(cpufreq_register_governor);
2213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214void cpufreq_unregister_governor(struct cpufreq_governor *governor)
2215{
Viresh Kumar45732372015-05-12 12:22:34 +05302216 struct cpufreq_policy *policy;
2217 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002218
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 if (!governor)
2220 return;
2221
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002222 if (cpufreq_disabled())
2223 return;
2224
Viresh Kumar45732372015-05-12 12:22:34 +05302225 /* clear last_governor for all inactive policies */
2226 read_lock_irqsave(&cpufreq_driver_lock, flags);
2227 for_each_inactive_policy(policy) {
Viresh Kumar18bf3a12015-05-12 12:22:51 +05302228 if (!strcmp(policy->last_governor, governor->name)) {
2229 policy->governor = NULL;
Viresh Kumar45732372015-05-12 12:22:34 +05302230 strcpy(policy->last_governor, "\0");
Viresh Kumar18bf3a12015-05-12 12:22:51 +05302231 }
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002232 }
Viresh Kumar45732372015-05-12 12:22:34 +05302233 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05002234
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002235 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08002237 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238}
2239EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
2240
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242/*********************************************************************
2243 * POLICY INTERFACE *
2244 *********************************************************************/
2245
2246/**
2247 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05002248 * @policy: struct cpufreq_policy into which the current cpufreq_policy
2249 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 *
2251 * Reads the current cpufreq policy.
2252 */
2253int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
2254{
2255 struct cpufreq_policy *cpu_policy;
2256 if (!policy)
2257 return -EINVAL;
2258
2259 cpu_policy = cpufreq_cpu_get(cpu);
2260 if (!cpu_policy)
2261 return -EINVAL;
2262
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302263 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
2265 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 return 0;
2267}
2268EXPORT_SYMBOL(cpufreq_get_policy);
2269
Rafael J. Wysockia0dbb812019-02-20 00:22:51 +01002270/**
2271 * cpufreq_set_policy - Modify cpufreq policy parameters.
2272 * @policy: Policy object to modify.
2273 * @new_policy: New policy data.
2274 *
2275 * Pass @new_policy to the cpufreq driver's ->verify() callback, run the
2276 * installed policy notifiers for it with the CPUFREQ_ADJUST value, pass it to
2277 * the driver's ->verify() callback again and run the notifiers for it again
2278 * with the CPUFREQ_NOTIFY value. Next, copy the min and max parameters
2279 * of @new_policy to @policy and either invoke the driver's ->setpolicy()
2280 * callback (if present) or carry out a governor update for @policy. That is,
2281 * run the current governor's ->limits() callback (if the governor field in
2282 * @new_policy points to the same object as the one in @policy) or replace the
2283 * governor for @policy with the new one stored in @new_policy.
2284 *
2285 * The cpuinfo part of @policy is not updated by this function.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02002286 */
Rafael J. Wysocki9083e492019-03-26 12:19:52 +01002287int cpufreq_set_policy(struct cpufreq_policy *policy,
2288 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002290 struct cpufreq_governor *old_gov;
2291 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Joe Perchese837f9b2014-03-11 10:03:00 -07002293 pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2294 new_policy->cpu, new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302296 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Pan Xinhuifba95732015-07-30 18:10:40 +08002298 /*
2299 * This check works well when we store new min/max freq attributes,
2300 * because new_policy is a copy of policy with one field updated.
2301 */
2302 if (new_policy->min > new_policy->max)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002303 return -EINVAL;
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02002304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302306 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002308 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08002311 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302312 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Viresh Kumarbb176f72013-06-19 14:19:33 +05302314 /*
2315 * verify the cpu speed can be set within this limit, which might be
2316 * different to the first one
2317 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302318 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08002319 if (ret)
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002320 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08002323 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302324 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302326 policy->min = new_policy->min;
2327 policy->max = new_policy->max;
Ruchi Kandoi601b2182018-07-24 10:35:44 -07002328 trace_cpu_frequency_limits(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Steve Mucklee3c06232016-07-13 13:25:25 -07002330 policy->cached_target_freq = UINT_MAX;
2331
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002332 pr_debug("new min and max freqs are %u - %u kHz\n",
Joe Perchese837f9b2014-03-11 10:03:00 -07002333 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002335 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302336 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002337 pr_debug("setting range\n");
Rafael J. Wysocki167a38d2019-02-20 00:26:30 +01002338 return cpufreq_driver->setpolicy(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
2340
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002341 if (new_policy->governor == policy->governor) {
Rafael J. Wysocki2bb40592019-02-20 00:25:18 +01002342 pr_debug("governor limits update\n");
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002343 cpufreq_governor_limits(policy);
Rafael J. Wysockid6ff44d2016-05-14 00:59:27 +02002344 return 0;
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002345 }
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002346
2347 pr_debug("governor switch\n");
2348
2349 /* save old, working values */
2350 old_gov = policy->governor;
2351 /* end old governor */
2352 if (old_gov) {
Rafael J. Wysocki45482c72016-05-12 15:14:12 +02002353 cpufreq_stop_governor(policy);
Rafael J. Wysocki36be3412016-05-12 15:13:35 +02002354 cpufreq_exit_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002355 }
2356
2357 /* start new governor */
2358 policy->governor = new_policy->governor;
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002359 ret = cpufreq_init_governor(policy);
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302360 if (!ret) {
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002361 ret = cpufreq_start_governor(policy);
2362 if (!ret) {
Rafael J. Wysocki2bb40592019-02-20 00:25:18 +01002363 pr_debug("governor change\n");
Quentin Perret531b5c92018-12-03 09:56:21 +00002364 sched_cpufreq_governor_change(policy, old_gov);
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002365 return 0;
2366 }
Rafael J. Wysockib7898fd2016-03-30 03:47:49 +02002367 cpufreq_exit_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002368 }
2369
2370 /* new governor failed, so re-start old one */
2371 pr_debug("starting governor %s failed\n", policy->governor->name);
2372 if (old_gov) {
2373 policy->governor = old_gov;
Rafael J. Wysockia92604b2016-05-14 01:01:46 +02002374 if (cpufreq_init_governor(policy))
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302375 policy->governor = NULL;
2376 else
Rafael J. Wysocki0a300762016-03-21 15:45:24 +01002377 cpufreq_start_governor(policy);
Rafael J. Wysockid9a789c2014-02-17 22:56:35 +01002378 }
2379
Viresh Kumar4bc384a2015-07-18 11:31:03 +05302380 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381}
2382
2383/**
Rafael J. Wysockia0dbb812019-02-20 00:22:51 +01002384 * cpufreq_update_policy - Re-evaluate an existing cpufreq policy.
2385 * @cpu: CPU to re-evaluate the policy for.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 *
Rafael J. Wysockia0dbb812019-02-20 00:22:51 +01002387 * Update the current frequency for the cpufreq policy of @cpu and use
2388 * cpufreq_set_policy() to re-apply the min and max limits saved in the
2389 * user_policy sub-structure of that policy, which triggers the evaluation
2390 * of policy notifiers and the cpufreq driver's ->verify() callback for the
2391 * policy in question, among other things.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 */
Rafael J. Wysocki30248fe2016-11-18 13:59:21 +01002393void cpufreq_update_policy(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394{
Rafael J. Wysocki540a37582019-03-26 12:16:58 +01002395 struct cpufreq_policy *policy = cpufreq_cpu_acquire(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302396 struct cpufreq_policy new_policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002398 if (!policy)
Rafael J. Wysocki30248fe2016-11-18 13:59:21 +01002399 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
Viresh Kumarbb176f72013-06-19 14:19:33 +05302401 /*
2402 * BIOS might change freq behind our back
2403 * -> ask driver for current freq and notify governors about a change
2404 */
Rafael J. Wysocki348a2ec2019-02-20 00:24:25 +01002405 if (cpufreq_driver->get && !cpufreq_driver->setpolicy &&
2406 (cpufreq_suspended || WARN_ON(!cpufreq_update_current_freq(policy))))
2407 goto unlock;
Rafael J. Wysocki30248fe2016-11-18 13:59:21 +01002408
Rafael J. Wysocki348a2ec2019-02-20 00:24:25 +01002409 pr_debug("updating policy for CPU %u\n", cpu);
2410 memcpy(&new_policy, policy, sizeof(*policy));
2411 new_policy.min = policy->user_policy.min;
2412 new_policy.max = policy->user_policy.max;
Thomas Renninger0961dd02006-01-26 18:46:33 +01002413
Rafael J. Wysocki30248fe2016-11-18 13:59:21 +01002414 cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Aaron Plattnerfefa8ff2014-06-18 11:27:32 -07002416unlock:
Rafael J. Wysocki540a37582019-03-26 12:16:58 +01002417 cpufreq_cpu_release(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418}
2419EXPORT_SYMBOL(cpufreq_update_policy);
2420
Rafael J. Wysocki5a25e3f2019-03-26 12:15:13 +01002421/**
2422 * cpufreq_update_limits - Update policy limits for a given CPU.
2423 * @cpu: CPU to update the policy limits for.
2424 *
2425 * Invoke the driver's ->update_limits callback if present or call
2426 * cpufreq_update_policy() for @cpu.
2427 */
2428void cpufreq_update_limits(unsigned int cpu)
2429{
2430 if (cpufreq_driver->update_limits)
2431 cpufreq_driver->update_limits(cpu);
2432 else
2433 cpufreq_update_policy(cpu);
2434}
2435EXPORT_SYMBOL_GPL(cpufreq_update_limits);
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437/*********************************************************************
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002438 * BOOST *
2439 *********************************************************************/
2440static int cpufreq_boost_set_sw(int state)
2441{
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002442 struct cpufreq_policy *policy;
2443 int ret = -EINVAL;
2444
Viresh Kumarf9637352015-05-12 12:20:11 +05302445 for_each_active_policy(policy) {
Viresh Kumarf8bfc112016-06-03 10:58:47 +05302446 if (!policy->freq_table)
2447 continue;
Viresh Kumar49f18562016-02-11 17:31:12 +05302448
Viresh Kumarf8bfc112016-06-03 10:58:47 +05302449 ret = cpufreq_frequency_table_cpuinfo(policy,
2450 policy->freq_table);
2451 if (ret) {
2452 pr_err("%s: Policy frequency update failed\n",
2453 __func__);
2454 break;
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002455 }
Viresh Kumarf8bfc112016-06-03 10:58:47 +05302456
2457 down_write(&policy->rwsem);
2458 policy->user_policy.max = policy->max;
2459 cpufreq_governor_limits(policy);
2460 up_write(&policy->rwsem);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002461 }
2462
2463 return ret;
2464}
2465
2466int cpufreq_boost_trigger_state(int state)
2467{
2468 unsigned long flags;
2469 int ret = 0;
2470
2471 if (cpufreq_driver->boost_enabled == state)
2472 return 0;
2473
2474 write_lock_irqsave(&cpufreq_driver_lock, flags);
2475 cpufreq_driver->boost_enabled = state;
2476 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2477
2478 ret = cpufreq_driver->set_boost(state);
2479 if (ret) {
2480 write_lock_irqsave(&cpufreq_driver_lock, flags);
2481 cpufreq_driver->boost_enabled = !state;
2482 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2483
Joe Perchese837f9b2014-03-11 10:03:00 -07002484 pr_err("%s: Cannot %s BOOST\n",
2485 __func__, state ? "enable" : "disable");
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002486 }
2487
2488 return ret;
2489}
2490
Rafael J. Wysocki41669da2015-12-27 00:23:48 +01002491static bool cpufreq_boost_supported(void)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002492{
Yue Hu89f98d72019-04-09 10:25:36 +08002493 return cpufreq_driver->set_boost;
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002494}
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002495
Viresh Kumar44139ed2015-07-29 16:23:09 +05302496static int create_boost_sysfs_file(void)
2497{
2498 int ret;
2499
Viresh Kumarc82bd442015-10-15 21:35:23 +05302500 ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302501 if (ret)
2502 pr_err("%s: cannot register global BOOST sysfs file\n",
2503 __func__);
2504
2505 return ret;
2506}
2507
2508static void remove_boost_sysfs_file(void)
2509{
2510 if (cpufreq_boost_supported())
Viresh Kumarc82bd442015-10-15 21:35:23 +05302511 sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302512}
2513
2514int cpufreq_enable_boost_support(void)
2515{
2516 if (!cpufreq_driver)
2517 return -EINVAL;
2518
2519 if (cpufreq_boost_supported())
2520 return 0;
2521
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002522 cpufreq_driver->set_boost = cpufreq_boost_set_sw;
Viresh Kumar44139ed2015-07-29 16:23:09 +05302523
2524 /* This will get removed on driver unregister */
2525 return create_boost_sysfs_file();
2526}
2527EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
2528
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002529int cpufreq_boost_enabled(void)
2530{
2531 return cpufreq_driver->boost_enabled;
2532}
2533EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
2534
2535/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2537 *********************************************************************/
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02002538static enum cpuhp_state hp_online;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Chen Yuc4a3fa22017-04-09 13:45:16 +08002540static int cpuhp_cpufreq_online(unsigned int cpu)
2541{
2542 cpufreq_online(cpu);
2543
2544 return 0;
2545}
2546
2547static int cpuhp_cpufreq_offline(unsigned int cpu)
2548{
2549 cpufreq_offline(cpu);
2550
2551 return 0;
2552}
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554/**
2555 * cpufreq_register_driver - register a CPU Frequency driver
2556 * @driver_data: A struct cpufreq_driver containing the values#
2557 * submitted by the CPU Frequency driver.
2558 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302559 * Registers a CPU Frequency driver to this core code. This code
Eric Biggers63af4052016-02-20 21:50:01 -06002560 * returns zero on success, -EEXIST when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002561 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 *
2563 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002564int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565{
2566 unsigned long flags;
2567 int ret;
2568
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002569 if (cpufreq_disabled())
2570 return -ENODEV;
2571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302573 !(driver_data->setpolicy || driver_data->target_index ||
Rafael J. Wysocki98322352014-03-19 12:48:30 +01002574 driver_data->target) ||
2575 (driver_data->setpolicy && (driver_data->target_index ||
Viresh Kumar1c03a2d2014-06-02 22:49:28 +05302576 driver_data->target)) ||
Viresh Kumara9a22b52019-02-14 16:16:21 +05302577 (!driver_data->get_intermediate != !driver_data->target_intermediate) ||
Viresh Kumar91a12e92019-02-12 16:36:04 +05302578 (!driver_data->online != !driver_data->offline))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return -EINVAL;
2580
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002581 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002583 /* Protect against concurrent CPU online/offline. */
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002584 cpus_read_lock();
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002585
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002586 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002587 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002588 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002589 ret = -EEXIST;
2590 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002592 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002593 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Viresh Kumarbc68b7d2015-01-02 12:34:30 +05302595 if (driver_data->setpolicy)
2596 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2597
Rafael J. Wysocki7a6c79f2015-12-27 00:27:38 +01002598 if (cpufreq_boost_supported()) {
2599 ret = create_boost_sysfs_file();
2600 if (ret)
2601 goto err_null_driver;
2602 }
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002603
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002604 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002605 if (ret)
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002606 goto err_boost_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302608 if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2609 list_empty(&cpufreq_policy_list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 /* if all ->init() calls failed, unregister */
David Arcari6c770032017-05-26 11:37:31 -04002611 ret = -ENODEV;
Viresh Kumarce1bcfe2015-01-02 12:34:35 +05302612 pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2613 driver_data->name);
2614 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 }
2616
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002617 ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN,
2618 "cpufreq:online",
2619 cpuhp_cpufreq_online,
2620 cpuhp_cpufreq_offline);
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02002621 if (ret < 0)
2622 goto err_if_unreg;
2623 hp_online = ret;
Sebastian Andrzej Siewior5372e052016-09-20 16:56:28 +02002624 ret = 0;
Sebastian Andrzej Siewior27622b02016-09-06 19:04:48 +02002625
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002626 pr_debug("driver %s up and running\n", driver_data->name);
Pankaj Gupta3834abb2016-05-16 11:07:19 +00002627 goto out;
Rafael J. Wysockifdd320d2015-07-30 01:45:07 +02002628
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002629err_if_unreg:
2630 subsys_interface_unregister(&cpufreq_interface);
Lukasz Majewski6f19efc2013-12-20 15:24:49 +01002631err_boost_unreg:
Viresh Kumar44139ed2015-07-29 16:23:09 +05302632 remove_boost_sysfs_file();
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002633err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002634 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002635 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002636 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Pankaj Gupta3834abb2016-05-16 11:07:19 +00002637out:
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002638 cpus_read_unlock();
Pankaj Gupta3834abb2016-05-16 11:07:19 +00002639 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640}
2641EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643/**
2644 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2645 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302646 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 * the right to do so, i.e. if you have succeeded in initialising before!
2648 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2649 * currently not initialised.
2650 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002651int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652{
2653 unsigned long flags;
2654
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002655 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002658 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659
Sebastian Andrzej Siewior454d3a22015-07-22 17:59:11 +02002660 /* Protect against concurrent cpu hotplug */
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002661 cpus_read_lock();
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002662 subsys_interface_unregister(&cpufreq_interface);
Viresh Kumar44139ed2015-07-29 16:23:09 +05302663 remove_boost_sysfs_file();
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002664 cpuhp_remove_state_nocalls_cpuslocked(hp_online);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002666 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302667
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002668 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302669
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002670 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Sebastian Andrzej Siewiora92551e2017-05-24 10:15:20 +02002671 cpus_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 return 0;
2674}
2675EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002676
Doug Anderson90de2a42014-12-23 22:09:48 -08002677/*
2678 * Stop cpufreq at shutdown to make sure it isn't holding any locks
2679 * or mutexes when secondary CPUs are halted.
2680 */
2681static struct syscore_ops cpufreq_syscore_ops = {
2682 .shutdown = cpufreq_suspend,
2683};
2684
Viresh Kumarc82bd442015-10-15 21:35:23 +05302685struct kobject *cpufreq_global_kobject;
2686EXPORT_SYMBOL(cpufreq_global_kobject);
2687
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002688static int __init cpufreq_core_init(void)
2689{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002690 if (cpufreq_disabled())
2691 return -ENODEV;
2692
Viresh Kumar8eec1022015-10-15 21:35:22 +05302693 cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002694 BUG_ON(!cpufreq_global_kobject);
2695
Doug Anderson90de2a42014-12-23 22:09:48 -08002696 register_syscore_ops(&cpufreq_syscore_ops);
2697
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002698 return 0;
2699}
Len Brownd82f2692017-02-28 16:44:16 -05002700module_param(off, int, 0444);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002701core_initcall(cpufreq_core_init);