blob: 04548f7023af68dee6b36fc590ec59f02c0216f7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/cpufreq/cpufreq.c
3 *
4 * Copyright (C) 2001 Russell King
5 * (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
Viresh Kumarbb176f72013-06-19 14:19:33 +05306 * (C) 2013 Viresh Kumar <viresh.kumar@linaro.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Ashok Rajc32b6b82005-10-30 14:59:54 -08008 * Oct 2005 - Ashok Raj <ashok.raj@intel.com>
Dave Jones32ee8c32006-02-28 00:43:23 -05009 * Added handling for CPU hotplug
Dave Jones8ff69732006-03-05 03:37:23 -050010 * Feb 2006 - Jacob Shin <jacob.shin@amd.com>
11 * Fix handling for CPU hotplug -- affected CPUs
Ashok Rajc32b6b82005-10-30 14:59:54 -080012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Viresh Kumardb701152012-10-23 01:29:03 +020018#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
Viresh Kumar5ff0a262013-08-06 22:53:03 +053020#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/cpufreq.h>
22#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/device.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053024#include <linux/init.h>
25#include <linux/kernel_stat.h>
26#include <linux/module.h>
akpm@osdl.org3fc54d32006-01-13 15:54:22 -080027#include <linux/mutex.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053028#include <linux/slab.h>
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +010029#include <linux/syscore_ops.h>
Viresh Kumar5ff0a262013-08-06 22:53:03 +053030#include <linux/tick.h>
Thomas Renninger6f4f2722010-04-20 13:17:36 +020031#include <trace/events/power.h>
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/**
Dave Jonescd878472006-08-11 17:59:28 -040034 * The "cpufreq driver" - the arch- or hardware-dependent low
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 * level driver of CPUFreq support, and its spinlock. This lock
36 * also protects the cpufreq_cpu_data array.
37 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +020038static struct cpufreq_driver *cpufreq_driver;
Mike Travis7a6aedf2008-03-25 15:06:53 -070039static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +053040static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data_fallback);
Viresh Kumarbb176f72013-06-19 14:19:33 +053041static DEFINE_RWLOCK(cpufreq_driver_lock);
42static DEFINE_MUTEX(cpufreq_governor_lock);
Lukasz Majewskic88a1f82013-08-06 22:53:08 +053043static LIST_HEAD(cpufreq_policy_list);
Viresh Kumarbb176f72013-06-19 14:19:33 +053044
Thomas Renninger084f3492007-07-09 11:35:28 -070045#ifdef CONFIG_HOTPLUG_CPU
46/* This one keeps track of the previously set governor of a removed CPU */
Dmitry Monakhove77b89f2009-10-05 00:38:55 +040047static DEFINE_PER_CPU(char[CPUFREQ_NAME_LEN], cpufreq_cpu_governor);
Thomas Renninger084f3492007-07-09 11:35:28 -070048#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080050/*
51 * cpu_policy_rwsem is a per CPU reader-writer semaphore designed to cure
52 * all cpufreq/hotplug/workqueue/etc related lock issues.
53 *
54 * The rules for this semaphore:
55 * - Any routine that wants to read from the policy structure will
56 * do a down_read on this semaphore.
57 * - Any routine that will write to the policy structure and/or may take away
58 * the policy altogether (eg. CPU hotplug), will hold this lock in write
59 * mode before doing so.
60 *
61 * Additional rules:
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080062 * - Governor routines that can be called in cpufreq hotplug path should not
63 * take this sem as top level hotplug notifier handler takes this.
Mathieu Desnoyers395913d2009-06-08 13:17:31 -040064 * - Lock should not be held across
65 * __cpufreq_governor(data, CPUFREQ_GOV_STOP);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080066 */
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080067static DEFINE_PER_CPU(struct rw_semaphore, cpu_policy_rwsem);
68
69#define lock_policy_rwsem(mode, cpu) \
Viresh Kumarfa1d8af2013-02-07 15:38:42 +053070static int lock_policy_rwsem_##mode(int cpu) \
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080071{ \
Viresh Kumar474deff2013-08-20 12:08:25 +053072 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu); \
73 BUG_ON(!policy); \
74 down_##mode(&per_cpu(cpu_policy_rwsem, policy->cpu)); \
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080075 \
76 return 0; \
77}
78
79lock_policy_rwsem(read, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080080lock_policy_rwsem(write, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080081
Viresh Kumarfa1d8af2013-02-07 15:38:42 +053082#define unlock_policy_rwsem(mode, cpu) \
83static void unlock_policy_rwsem_##mode(int cpu) \
84{ \
Viresh Kumar474deff2013-08-20 12:08:25 +053085 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu); \
86 BUG_ON(!policy); \
87 up_##mode(&per_cpu(cpu_policy_rwsem, policy->cpu)); \
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080088}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080089
Viresh Kumarfa1d8af2013-02-07 15:38:42 +053090unlock_policy_rwsem(read, cpu);
91unlock_policy_rwsem(write, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080092
Viresh Kumar6eed9402013-08-06 22:53:11 +053093/*
94 * rwsem to guarantee that cpufreq driver module doesn't unload during critical
95 * sections
96 */
97static DECLARE_RWSEM(cpufreq_rwsem);
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/* internal prototypes */
Dave Jones29464f22009-01-18 01:37:11 -0500100static int __cpufreq_governor(struct cpufreq_policy *policy,
101 unsigned int event);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800102static unsigned int __cpufreq_get(unsigned int cpu);
David Howells65f27f32006-11-22 14:55:48 +0000103static void handle_update(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/**
Dave Jones32ee8c32006-02-28 00:43:23 -0500106 * Two notifier lists: the "policy" list is involved in the
107 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * "transition" list for kernel code that needs to handle
109 * changes to devices when the CPU clock speed changes.
110 * The mutex locks both lists.
111 */
Alan Sterne041c682006-03-27 01:16:30 -0800112static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700113static struct srcu_notifier_head cpufreq_transition_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200115static bool init_cpufreq_transition_notifier_list_called;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700116static int __init init_cpufreq_transition_notifier_list(void)
117{
118 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200119 init_cpufreq_transition_notifier_list_called = true;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700120 return 0;
121}
Linus Torvaldsb3438f82006-11-20 11:47:18 -0800122pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400124static int off __read_mostly;
Viresh Kumarda584452012-10-26 00:51:32 +0200125static int cpufreq_disabled(void)
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400126{
127 return off;
128}
129void disable_cpufreq(void)
130{
131 off = 1;
132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static LIST_HEAD(cpufreq_governor_list);
Dave Jones29464f22009-01-18 01:37:11 -0500134static DEFINE_MUTEX(cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000136bool have_governor_per_policy(void)
137{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200138 return cpufreq_driver->have_governor_per_policy;
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000139}
Viresh Kumar3f869d62013-05-16 05:09:56 +0000140EXPORT_SYMBOL_GPL(have_governor_per_policy);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000141
Viresh Kumar944e9a02013-05-16 05:09:57 +0000142struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
143{
144 if (have_governor_per_policy())
145 return &policy->kobj;
146 else
147 return cpufreq_global_kobject;
148}
149EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
150
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000151static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
152{
153 u64 idle_time;
154 u64 cur_wall_time;
155 u64 busy_time;
156
157 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
158
159 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
160 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
161 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
162 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
163 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
164 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
165
166 idle_time = cur_wall_time - busy_time;
167 if (wall)
168 *wall = cputime_to_usecs(cur_wall_time);
169
170 return cputime_to_usecs(idle_time);
171}
172
173u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
174{
175 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
176
177 if (idle_time == -1ULL)
178 return get_cpu_idle_time_jiffy(cpu, wall);
179 else if (!io_busy)
180 idle_time += get_cpu_iowait_time_us(cpu, wall);
181
182 return idle_time;
183}
184EXPORT_SYMBOL_GPL(get_cpu_idle_time);
185
Viresh Kumar6eed9402013-08-06 22:53:11 +0530186struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530188 struct cpufreq_policy *policy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 unsigned long flags;
190
Viresh Kumar6eed9402013-08-06 22:53:11 +0530191 if (cpufreq_disabled() || (cpu >= nr_cpu_ids))
192 return NULL;
193
194 if (!down_read_trylock(&cpufreq_rwsem))
195 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197 /* get the cpufreq driver */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000198 read_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Viresh Kumar6eed9402013-08-06 22:53:11 +0530200 if (cpufreq_driver) {
201 /* get the CPU */
202 policy = per_cpu(cpufreq_cpu_data, cpu);
203 if (policy)
204 kobject_get(&policy->kobj);
205 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200206
Viresh Kumar6eed9402013-08-06 22:53:11 +0530207 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530209 if (!policy)
Viresh Kumar6eed9402013-08-06 22:53:11 +0530210 up_read(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530212 return policy;
Stephen Boyda9144432012-07-20 18:14:38 +0000213}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
215
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530216void cpufreq_cpu_put(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000218 if (cpufreq_disabled())
219 return;
220
Viresh Kumar6eed9402013-08-06 22:53:11 +0530221 kobject_put(&policy->kobj);
222 up_read(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
228 *********************************************************************/
229
230/**
231 * adjust_jiffies - adjust the system "loops_per_jiffy"
232 *
233 * This function alters the system "loops_per_jiffy" for the clock
234 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500235 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 * per-CPU loops_per_jiffy value wherever possible.
237 */
238#ifndef CONFIG_SMP
239static unsigned long l_p_j_ref;
Viresh Kumarbb176f72013-06-19 14:19:33 +0530240static unsigned int l_p_j_ref_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Arjan van de Ven858119e2006-01-14 13:20:43 -0800242static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 if (ci->flags & CPUFREQ_CONST_LOOPS)
245 return;
246
247 if (!l_p_j_ref_freq) {
248 l_p_j_ref = loops_per_jiffy;
249 l_p_j_ref_freq = ci->old;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200250 pr_debug("saving %lu as reference value for loops_per_jiffy; "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530251 "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
Viresh Kumarbb176f72013-06-19 14:19:33 +0530253 if ((val == CPUFREQ_POSTCHANGE && ci->old != ci->new) ||
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -0700254 (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530255 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
256 ci->new);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200257 pr_debug("scaling loops_per_jiffy to %lu "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530258 "for frequency %u kHz\n", loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
260}
261#else
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530262static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
263{
264 return;
265}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266#endif
267
Viresh Kumar0956df9c2013-06-19 14:19:34 +0530268static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530269 struct cpufreq_freqs *freqs, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
271 BUG_ON(irqs_disabled());
272
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000273 if (cpufreq_disabled())
274 return;
275
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200276 freqs->flags = cpufreq_driver->flags;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200277 pr_debug("notification %u of frequency transition to %u kHz\n",
Dave Jonese4472cb2006-01-31 15:53:55 -0800278 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 case CPUFREQ_PRECHANGE:
Dave Jones32ee8c32006-02-28 00:43:23 -0500283 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800284 * which is not equal to what the cpufreq core thinks is
285 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200287 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800288 if ((policy) && (policy->cpu == freqs->cpu) &&
289 (policy->cur) && (policy->cur != freqs->old)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200290 pr_debug("Warning: CPU frequency is"
Dave Jonese4472cb2006-01-31 15:53:55 -0800291 " %u, cpufreq assumed %u kHz.\n",
292 freqs->old, policy->cur);
293 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 }
295 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700296 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800297 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
299 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 case CPUFREQ_POSTCHANGE:
302 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200303 pr_debug("FREQ: %lu - CPU: %lu", (unsigned long)freqs->new,
Thomas Renninger6f4f2722010-04-20 13:17:36 +0200304 (unsigned long)freqs->cpu);
Thomas Renninger25e41932011-01-03 17:50:44 +0100305 trace_cpu_frequency(freqs->new, freqs->cpu);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700306 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800307 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800308 if (likely(policy) && likely(policy->cpu == freqs->cpu))
309 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
Viresh Kumarbb176f72013-06-19 14:19:33 +0530313
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530314/**
315 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
316 * on frequency transition.
317 *
318 * This function calls the transition notifiers and the "adjust_jiffies"
319 * function. It is called twice on all CPU frequency changes that have
320 * external effects.
321 */
322void cpufreq_notify_transition(struct cpufreq_policy *policy,
323 struct cpufreq_freqs *freqs, unsigned int state)
324{
325 for_each_cpu(freqs->cpu, policy->cpus)
326 __cpufreq_notify_transition(policy, freqs, state);
327}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
329
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/*********************************************************************
332 * SYSFS INTERFACE *
333 *********************************************************************/
334
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700335static struct cpufreq_governor *__find_governor(const char *str_governor)
336{
337 struct cpufreq_governor *t;
338
339 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
Dave Jones29464f22009-01-18 01:37:11 -0500340 if (!strnicmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700341 return t;
342
343 return NULL;
344}
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346/**
347 * cpufreq_parse_governor - parse a governor string
348 */
Dave Jones905d77c2008-03-05 14:28:32 -0500349static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 struct cpufreq_governor **governor)
351{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700352 int err = -EINVAL;
353
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200354 if (!cpufreq_driver)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700355 goto out;
356
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200357 if (cpufreq_driver->setpolicy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
359 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700360 err = 0;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530361 } else if (!strnicmp(str_governor, "powersave",
362 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700364 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200366 } else if (cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700368
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800369 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700370
371 t = __find_governor(str_governor);
372
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700373 if (t == NULL) {
Kees Cook1a8e1462011-05-04 08:38:56 -0700374 int ret;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700375
Kees Cook1a8e1462011-05-04 08:38:56 -0700376 mutex_unlock(&cpufreq_governor_mutex);
377 ret = request_module("cpufreq_%s", str_governor);
378 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700379
Kees Cook1a8e1462011-05-04 08:38:56 -0700380 if (ret == 0)
381 t = __find_governor(str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700382 }
383
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700384 if (t != NULL) {
385 *governor = t;
386 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700388
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800389 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Dave Jones29464f22009-01-18 01:37:11 -0500391out:
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700392 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530396 * cpufreq_per_cpu_attr_read() / show_##file_name() -
397 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 *
399 * Write out information from cpufreq_driver->policy[cpu]; object must be
400 * "unsigned int".
401 */
402
Dave Jones32ee8c32006-02-28 00:43:23 -0500403#define show_one(file_name, object) \
404static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500405(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500406{ \
Dave Jones29464f22009-01-18 01:37:11 -0500407 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
410show_one(cpuinfo_min_freq, cpuinfo.min_freq);
411show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100412show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413show_one(scaling_min_freq, min);
414show_one(scaling_max_freq, max);
415show_one(scaling_cur_freq, cur);
416
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530417static int __cpufreq_set_policy(struct cpufreq_policy *policy,
418 struct cpufreq_policy *new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/**
421 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
422 */
423#define store_one(file_name, object) \
424static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500425(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{ \
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530427 int ret; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 struct cpufreq_policy new_policy; \
429 \
430 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
431 if (ret) \
432 return -EINVAL; \
433 \
Dave Jones29464f22009-01-18 01:37:11 -0500434 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (ret != 1) \
436 return -EINVAL; \
437 \
Thomas Renninger7970e082006-04-13 15:14:04 +0200438 ret = __cpufreq_set_policy(policy, &new_policy); \
439 policy->user_policy.object = policy->object; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 \
441 return ret ? ret : count; \
442}
443
Dave Jones29464f22009-01-18 01:37:11 -0500444store_one(scaling_min_freq, min);
445store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447/**
448 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
449 */
Dave Jones905d77c2008-03-05 14:28:32 -0500450static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
451 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800453 unsigned int cur_freq = __cpufreq_get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (!cur_freq)
455 return sprintf(buf, "<unknown>");
456 return sprintf(buf, "%u\n", cur_freq);
457}
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459/**
460 * show_scaling_governor - show the current policy for the specified CPU
461 */
Dave Jones905d77c2008-03-05 14:28:32 -0500462static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Dave Jones29464f22009-01-18 01:37:11 -0500464 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return sprintf(buf, "powersave\n");
466 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
467 return sprintf(buf, "performance\n");
468 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200469 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500470 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return -EINVAL;
472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/**
475 * store_scaling_governor - store policy for the specified CPU
476 */
Dave Jones905d77c2008-03-05 14:28:32 -0500477static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
478 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530480 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 char str_governor[16];
482 struct cpufreq_policy new_policy;
483
484 ret = cpufreq_get_policy(&new_policy, policy->cpu);
485 if (ret)
486 return ret;
487
Dave Jones29464f22009-01-18 01:37:11 -0500488 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (ret != 1)
490 return -EINVAL;
491
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530492 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
493 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return -EINVAL;
495
Viresh Kumarbb176f72013-06-19 14:19:33 +0530496 /*
497 * Do not use cpufreq_set_policy here or the user_policy.max
498 * will be wrongly overridden
499 */
Thomas Renninger7970e082006-04-13 15:14:04 +0200500 ret = __cpufreq_set_policy(policy, &new_policy);
501
502 policy->user_policy.policy = policy->policy;
503 policy->user_policy.governor = policy->governor;
Thomas Renninger7970e082006-04-13 15:14:04 +0200504
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530505 if (ret)
506 return ret;
507 else
508 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511/**
512 * show_scaling_driver - show the cpufreq driver currently loaded
513 */
Dave Jones905d77c2008-03-05 14:28:32 -0500514static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200516 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
519/**
520 * show_scaling_available_governors - show the available CPUfreq governors
521 */
Dave Jones905d77c2008-03-05 14:28:32 -0500522static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
523 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 ssize_t i = 0;
526 struct cpufreq_governor *t;
527
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200528 if (!cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 i += sprintf(buf, "performance powersave");
530 goto out;
531 }
532
533 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
Dave Jones29464f22009-01-18 01:37:11 -0500534 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
535 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200537 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500539out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 i += sprintf(&buf[i], "\n");
541 return i;
542}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700543
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800544ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 ssize_t i = 0;
547 unsigned int cpu;
548
Rusty Russell835481d2009-01-04 05:18:06 -0800549 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 if (i)
551 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
552 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
553 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500554 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
556 i += sprintf(&buf[i], "\n");
557 return i;
558}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800559EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700561/**
562 * show_related_cpus - show the CPUs affected by each transition even if
563 * hw coordination is in use
564 */
565static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
566{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800567 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700568}
569
570/**
571 * show_affected_cpus - show the CPUs affected by each transition
572 */
573static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
574{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800575 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700576}
577
Venki Pallipadi9e769882007-10-26 10:18:21 -0700578static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500579 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700580{
581 unsigned int freq = 0;
582 unsigned int ret;
583
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700584 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700585 return -EINVAL;
586
587 ret = sscanf(buf, "%u", &freq);
588 if (ret != 1)
589 return -EINVAL;
590
591 policy->governor->store_setspeed(policy, freq);
592
593 return count;
594}
595
596static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
597{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700598 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700599 return sprintf(buf, "<unsupported>\n");
600
601 return policy->governor->show_setspeed(policy, buf);
602}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Thomas Renningere2f74f32009-11-19 12:31:01 +0100604/**
viresh kumar8bf1ac722012-10-23 01:23:33 +0200605 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100606 */
607static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
608{
609 unsigned int limit;
610 int ret;
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200611 if (cpufreq_driver->bios_limit) {
612 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100613 if (!ret)
614 return sprintf(buf, "%u\n", limit);
615 }
616 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
617}
618
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200619cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
620cpufreq_freq_attr_ro(cpuinfo_min_freq);
621cpufreq_freq_attr_ro(cpuinfo_max_freq);
622cpufreq_freq_attr_ro(cpuinfo_transition_latency);
623cpufreq_freq_attr_ro(scaling_available_governors);
624cpufreq_freq_attr_ro(scaling_driver);
625cpufreq_freq_attr_ro(scaling_cur_freq);
626cpufreq_freq_attr_ro(bios_limit);
627cpufreq_freq_attr_ro(related_cpus);
628cpufreq_freq_attr_ro(affected_cpus);
629cpufreq_freq_attr_rw(scaling_min_freq);
630cpufreq_freq_attr_rw(scaling_max_freq);
631cpufreq_freq_attr_rw(scaling_governor);
632cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Dave Jones905d77c2008-03-05 14:28:32 -0500634static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 &cpuinfo_min_freq.attr,
636 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100637 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 &scaling_min_freq.attr,
639 &scaling_max_freq.attr,
640 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700641 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 &scaling_governor.attr,
643 &scaling_driver.attr,
644 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700645 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 NULL
647};
648
Dave Jones29464f22009-01-18 01:37:11 -0500649#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
650#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Dave Jones29464f22009-01-18 01:37:11 -0500652static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Dave Jones905d77c2008-03-05 14:28:32 -0500654 struct cpufreq_policy *policy = to_policy(kobj);
655 struct freq_attr *fattr = to_attr(attr);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500656 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530657
658 if (!down_read_trylock(&cpufreq_rwsem))
659 goto exit;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800660
661 if (lock_policy_rwsem_read(policy->cpu) < 0)
Viresh Kumar6eed9402013-08-06 22:53:11 +0530662 goto up_read;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800663
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530664 if (fattr->show)
665 ret = fattr->show(policy, buf);
666 else
667 ret = -EIO;
668
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800669 unlock_policy_rwsem_read(policy->cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530670
671up_read:
672 up_read(&cpufreq_rwsem);
673exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return ret;
675}
676
Dave Jones905d77c2008-03-05 14:28:32 -0500677static ssize_t store(struct kobject *kobj, struct attribute *attr,
678 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Dave Jones905d77c2008-03-05 14:28:32 -0500680 struct cpufreq_policy *policy = to_policy(kobj);
681 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500682 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530683
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530684 get_online_cpus();
685
686 if (!cpu_online(policy->cpu))
687 goto unlock;
688
Viresh Kumar6eed9402013-08-06 22:53:11 +0530689 if (!down_read_trylock(&cpufreq_rwsem))
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530690 goto unlock;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800691
692 if (lock_policy_rwsem_write(policy->cpu) < 0)
Viresh Kumar6eed9402013-08-06 22:53:11 +0530693 goto up_read;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800694
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530695 if (fattr->store)
696 ret = fattr->store(policy, buf, count);
697 else
698 ret = -EIO;
699
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800700 unlock_policy_rwsem_write(policy->cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530701
702up_read:
703 up_read(&cpufreq_rwsem);
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530704unlock:
705 put_online_cpus();
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return ret;
708}
709
Dave Jones905d77c2008-03-05 14:28:32 -0500710static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Dave Jones905d77c2008-03-05 14:28:32 -0500712 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200713 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 complete(&policy->kobj_unregister);
715}
716
Emese Revfy52cf25d2010-01-19 02:58:23 +0100717static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 .show = show,
719 .store = store,
720};
721
722static struct kobj_type ktype_cpufreq = {
723 .sysfs_ops = &sysfs_ops,
724 .default_attrs = default_attrs,
725 .release = cpufreq_sysfs_release,
726};
727
Viresh Kumar2361be22013-05-17 16:09:09 +0530728struct kobject *cpufreq_global_kobject;
729EXPORT_SYMBOL(cpufreq_global_kobject);
730
731static int cpufreq_global_kobject_usage;
732
733int cpufreq_get_global_kobject(void)
734{
735 if (!cpufreq_global_kobject_usage++)
736 return kobject_add(cpufreq_global_kobject,
737 &cpu_subsys.dev_root->kobj, "%s", "cpufreq");
738
739 return 0;
740}
741EXPORT_SYMBOL(cpufreq_get_global_kobject);
742
743void cpufreq_put_global_kobject(void)
744{
745 if (!--cpufreq_global_kobject_usage)
746 kobject_del(cpufreq_global_kobject);
747}
748EXPORT_SYMBOL(cpufreq_put_global_kobject);
749
750int cpufreq_sysfs_create_file(const struct attribute *attr)
751{
752 int ret = cpufreq_get_global_kobject();
753
754 if (!ret) {
755 ret = sysfs_create_file(cpufreq_global_kobject, attr);
756 if (ret)
757 cpufreq_put_global_kobject();
758 }
759
760 return ret;
761}
762EXPORT_SYMBOL(cpufreq_sysfs_create_file);
763
764void cpufreq_sysfs_remove_file(const struct attribute *attr)
765{
766 sysfs_remove_file(cpufreq_global_kobject, attr);
767 cpufreq_put_global_kobject();
768}
769EXPORT_SYMBOL(cpufreq_sysfs_remove_file);
770
Dave Jones19d6f7e2009-07-08 17:35:39 -0400771/* symlink affected CPUs */
Viresh Kumar308b60e2013-07-31 14:35:14 +0200772static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400773{
774 unsigned int j;
775 int ret = 0;
776
777 for_each_cpu(j, policy->cpus) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800778 struct device *cpu_dev;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400779
Viresh Kumar308b60e2013-07-31 14:35:14 +0200780 if (j == policy->cpu)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400781 continue;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400782
Viresh Kumare8fdde12013-07-31 14:31:33 +0200783 pr_debug("Adding link for CPU: %u\n", j);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800784 cpu_dev = get_cpu_device(j);
785 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Dave Jones19d6f7e2009-07-08 17:35:39 -0400786 "cpufreq");
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200787 if (ret)
788 break;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400789 }
790 return ret;
791}
792
Viresh Kumar308b60e2013-07-31 14:35:14 +0200793static int cpufreq_add_dev_interface(struct cpufreq_policy *policy,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800794 struct device *dev)
Dave Jones909a6942009-07-08 18:05:42 -0400795{
796 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -0400797 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -0400798
799 /* prepare interface data */
800 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800801 &dev->kobj, "cpufreq");
Dave Jones909a6942009-07-08 18:05:42 -0400802 if (ret)
803 return ret;
804
805 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200806 drv_attr = cpufreq_driver->attr;
Dave Jones909a6942009-07-08 18:05:42 -0400807 while ((drv_attr) && (*drv_attr)) {
808 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
809 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200810 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400811 drv_attr++;
812 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200813 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -0400814 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
815 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200816 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400817 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200818 if (cpufreq_driver->target) {
Dave Jones909a6942009-07-08 18:05:42 -0400819 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
820 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200821 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400822 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200823 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100824 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
825 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200826 goto err_out_kobj_put;
Thomas Renningere2f74f32009-11-19 12:31:01 +0100827 }
Dave Jones909a6942009-07-08 18:05:42 -0400828
Viresh Kumar308b60e2013-07-31 14:35:14 +0200829 ret = cpufreq_add_dev_symlink(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400830 if (ret)
831 goto err_out_kobj_put;
832
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530833 return ret;
834
835err_out_kobj_put:
836 kobject_put(&policy->kobj);
837 wait_for_completion(&policy->kobj_unregister);
838 return ret;
839}
840
841static void cpufreq_init_policy(struct cpufreq_policy *policy)
842{
843 struct cpufreq_policy new_policy;
844 int ret = 0;
845
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530846 memcpy(&new_policy, policy, sizeof(*policy));
Dave Jonesecf7e462009-07-08 18:48:47 -0400847 /* assure that the starting sequence is run in __cpufreq_set_policy */
848 policy->governor = NULL;
849
850 /* set default policy */
851 ret = __cpufreq_set_policy(policy, &new_policy);
852 policy->user_policy.policy = policy->policy;
853 policy->user_policy.governor = policy->governor;
854
855 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200856 pr_debug("setting policy failed\n");
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200857 if (cpufreq_driver->exit)
858 cpufreq_driver->exit(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400859 }
Dave Jones909a6942009-07-08 18:05:42 -0400860}
861
Viresh Kumarfcf80582013-01-29 14:39:08 +0000862#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumard8d3b472013-08-04 01:20:07 +0200863static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy,
864 unsigned int cpu, struct device *dev,
865 bool frozen)
Viresh Kumarfcf80582013-01-29 14:39:08 +0000866{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200867 int ret = 0, has_target = !!cpufreq_driver->target;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000868 unsigned long flags;
869
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530870 if (has_target) {
871 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
872 if (ret) {
873 pr_err("%s: Failed to stop governor\n", __func__);
874 return ret;
875 }
876 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000877
Viresh Kumard8d3b472013-08-04 01:20:07 +0200878 lock_policy_rwsem_write(policy->cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530879
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000880 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530881
Viresh Kumarfcf80582013-01-29 14:39:08 +0000882 cpumask_set_cpu(cpu, policy->cpus);
883 per_cpu(cpufreq_cpu_data, cpu) = policy;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000884 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +0000885
Viresh Kumard8d3b472013-08-04 01:20:07 +0200886 unlock_policy_rwsem_write(policy->cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530887
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200888 if (has_target) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530889 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
890 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
891 pr_err("%s: Failed to start governor\n", __func__);
892 return ret;
893 }
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200894 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000895
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530896 /* Don't touch sysfs links during light-weight init */
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200897 if (!frozen)
898 ret = sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq");
Viresh Kumarfcf80582013-01-29 14:39:08 +0000899
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530900 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000901}
902#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530904static struct cpufreq_policy *cpufreq_policy_restore(unsigned int cpu)
905{
906 struct cpufreq_policy *policy;
907 unsigned long flags;
908
Lan Tianyu44871c92013-09-11 15:05:05 +0800909 read_lock_irqsave(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530910
911 policy = per_cpu(cpufreq_cpu_data_fallback, cpu);
912
Lan Tianyu44871c92013-09-11 15:05:05 +0800913 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530914
915 return policy;
916}
917
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530918static struct cpufreq_policy *cpufreq_policy_alloc(void)
919{
920 struct cpufreq_policy *policy;
921
922 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
923 if (!policy)
924 return NULL;
925
926 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
927 goto err_free_policy;
928
929 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
930 goto err_free_cpumask;
931
Lukasz Majewskic88a1f82013-08-06 22:53:08 +0530932 INIT_LIST_HEAD(&policy->policy_list);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530933 return policy;
934
935err_free_cpumask:
936 free_cpumask_var(policy->cpus);
937err_free_policy:
938 kfree(policy);
939
940 return NULL;
941}
942
943static void cpufreq_policy_free(struct cpufreq_policy *policy)
944{
945 free_cpumask_var(policy->related_cpus);
946 free_cpumask_var(policy->cpus);
947 kfree(policy);
948}
949
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530950static void update_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
951{
Srivatsa S. Bhatcb38ed52013-09-12 01:43:42 +0530952 if (cpu == policy->cpu)
953 return;
954
Viresh Kumar8efd5762013-09-17 10:22:11 +0530955 /*
956 * Take direct locks as lock_policy_rwsem_write wouldn't work here.
957 * Also lock for last cpu is enough here as contention will happen only
958 * after policy->cpu is changed and after it is changed, other threads
959 * will try to acquire lock for new cpu. And policy is already updated
960 * by then.
961 */
962 down_write(&per_cpu(cpu_policy_rwsem, policy->cpu));
963
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530964 policy->last_cpu = policy->cpu;
965 policy->cpu = cpu;
966
Viresh Kumar8efd5762013-09-17 10:22:11 +0530967 up_write(&per_cpu(cpu_policy_rwsem, policy->last_cpu));
968
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530969#ifdef CONFIG_CPU_FREQ_TABLE
970 cpufreq_frequency_table_update_policy_cpu(policy);
971#endif
972 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
973 CPUFREQ_UPDATE_POLICY_CPU, policy);
974}
975
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530976static int __cpufreq_add_dev(struct device *dev, struct subsys_interface *sif,
977 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Viresh Kumarfcf80582013-01-29 14:39:08 +0000979 unsigned int j, cpu = dev->id;
Viresh Kumar65922462013-02-07 10:56:03 +0530980 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500983#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumar1b274292013-08-20 12:08:26 +0530984 struct cpufreq_policy *tpolicy;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000985 struct cpufreq_governor *gov;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500986#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Ashok Rajc32b6b82005-10-30 14:59:54 -0800988 if (cpu_is_offline(cpu))
989 return 0;
990
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200991 pr_debug("adding CPU %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993#ifdef CONFIG_SMP
994 /* check whether a different CPU already registered this
995 * CPU because it is in the same boat. */
996 policy = cpufreq_cpu_get(cpu);
997 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500998 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return 0;
1000 }
Li Zhong5025d622013-08-21 01:31:08 +02001001#endif
Viresh Kumarfcf80582013-01-29 14:39:08 +00001002
Viresh Kumar6eed9402013-08-06 22:53:11 +05301003 if (!down_read_trylock(&cpufreq_rwsem))
1004 return 0;
1005
Viresh Kumarfcf80582013-01-29 14:39:08 +00001006#ifdef CONFIG_HOTPLUG_CPU
1007 /* Check if this cpu was hot-unplugged earlier and has siblings */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001008 read_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +05301009 list_for_each_entry(tpolicy, &cpufreq_policy_list, policy_list) {
1010 if (cpumask_test_cpu(cpu, tpolicy->related_cpus)) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001011 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +05301012 ret = cpufreq_add_policy_cpu(tpolicy, cpu, dev, frozen);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301013 up_read(&cpufreq_rwsem);
1014 return ret;
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301015 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001016 }
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001017 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001018#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301020 if (frozen)
1021 /* Restore the saved policy when doing light-weight init */
1022 policy = cpufreq_policy_restore(cpu);
1023 else
1024 policy = cpufreq_policy_alloc();
1025
Dave Jones059019a2009-07-08 16:30:03 -04001026 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -04001028
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301029
1030 /*
1031 * In the resume path, since we restore a saved policy, the assignment
1032 * to policy->cpu is like an update of the existing policy, rather than
1033 * the creation of a brand new one. So we need to perform this update
1034 * by invoking update_policy_cpu().
1035 */
1036 if (frozen && cpu != policy->cpu)
1037 update_policy_cpu(policy, cpu);
1038 else
1039 policy->cpu = cpu;
1040
Viresh Kumar65922462013-02-07 10:56:03 +05301041 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Rusty Russell835481d2009-01-04 05:18:06 -08001042 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001045 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 /* call driver. From then on the cpufreq must be able
1048 * to accept all calls to ->verify and ->setpolicy for this CPU
1049 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001050 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001052 pr_debug("initialization failed\n");
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301053 goto err_set_policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001055
Viresh Kumarfcf80582013-01-29 14:39:08 +00001056 /* related cpus should atleast have policy->cpus */
1057 cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
1058
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001059 /*
1060 * affected cpus must always be the one, which are online. We aren't
1061 * managing offline cpus here.
1062 */
1063 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1064
Mike Chan187d9f42008-12-04 12:19:17 -08001065 policy->user_policy.min = policy->min;
1066 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
Thomas Renningera1531ac2008-07-29 22:32:58 -07001068 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1069 CPUFREQ_START, policy);
1070
Viresh Kumarfcf80582013-01-29 14:39:08 +00001071#ifdef CONFIG_HOTPLUG_CPU
1072 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
1073 if (gov) {
1074 policy->governor = gov;
1075 pr_debug("Restoring governor %s for cpu %d\n",
1076 policy->governor->name, cpu);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001077 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301080 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301081 for_each_cpu(j, policy->cpus)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301082 per_cpu(cpufreq_cpu_data, j) = policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301083 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1084
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301085 if (!frozen) {
Viresh Kumar308b60e2013-07-31 14:35:14 +02001086 ret = cpufreq_add_dev_interface(policy, dev);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301087 if (ret)
1088 goto err_out_unregister;
1089 }
Dave Jones8ff69732006-03-05 03:37:23 -05001090
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301091 write_lock_irqsave(&cpufreq_driver_lock, flags);
1092 list_add(&policy->policy_list, &cpufreq_policy_list);
1093 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1094
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301095 cpufreq_init_policy(policy);
1096
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001097 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301098 up_read(&cpufreq_rwsem);
1099
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001100 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return 0;
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104err_out_unregister:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001105 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301106 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001107 per_cpu(cpufreq_cpu_data, j) = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001108 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301110err_set_policy_cpu:
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301111 cpufreq_policy_free(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112nomem_out:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301113 up_read(&cpufreq_rwsem);
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 return ret;
1116}
1117
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301118/**
1119 * cpufreq_add_dev - add a CPU device
1120 *
1121 * Adds the cpufreq interface for a CPU device.
1122 *
1123 * The Oracle says: try running cpufreq registration/unregistration concurrently
1124 * with with cpu hotplugging and all hell will break loose. Tried to clean this
1125 * mess up, but more thorough testing is needed. - Mathieu
1126 */
1127static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1128{
1129 return __cpufreq_add_dev(dev, sif, false);
1130}
1131
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301132static int cpufreq_nominate_new_policy_cpu(struct cpufreq_policy *policy,
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301133 unsigned int old_cpu, bool frozen)
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301134{
1135 struct device *cpu_dev;
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301136 int ret;
1137
1138 /* first sibling now owns the new sysfs dir */
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301139 cpu_dev = get_cpu_device(cpumask_any_but(policy->cpus, old_cpu));
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301140
1141 /* Don't touch sysfs files during light-weight tear-down */
1142 if (frozen)
1143 return cpu_dev->id;
1144
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301145 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301146 ret = kobject_move(&policy->kobj, &cpu_dev->kobj);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301147 if (ret) {
1148 pr_err("%s: Failed to move kobj: %d", __func__, ret);
1149
1150 WARN_ON(lock_policy_rwsem_write(old_cpu));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301151 cpumask_set_cpu(old_cpu, policy->cpus);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301152 unlock_policy_rwsem_write(old_cpu);
1153
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301154 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301155 "cpufreq");
1156
1157 return -EINVAL;
1158 }
1159
1160 return cpu_dev->id;
1161}
1162
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301163static int __cpufreq_remove_dev_prepare(struct device *dev,
1164 struct subsys_interface *sif,
1165 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301167 unsigned int cpu = dev->id, cpus;
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301168 int new_cpu, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 unsigned long flags;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301170 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001172 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001174 write_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301176 policy = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301178 /* Save the policy somewhere when doing a light-weight tear-down */
1179 if (frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301180 per_cpu(cpufreq_cpu_data_fallback, cpu) = policy;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301181
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001182 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301184 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001185 pr_debug("%s: No cpu_data found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301189 if (cpufreq_driver->target) {
1190 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1191 if (ret) {
1192 pr_err("%s: Failed to stop governor\n", __func__);
1193 return ret;
1194 }
1195 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001196
Jacob Shin27ecddc2011-04-27 13:32:11 -05001197#ifdef CONFIG_HOTPLUG_CPU
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001198 if (!cpufreq_driver->setpolicy)
Dirk Brandewiefa69e332013-02-06 09:02:11 -08001199 strncpy(per_cpu(cpufreq_cpu_governor, cpu),
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301200 policy->governor->name, CPUFREQ_NAME_LEN);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001201#endif
1202
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301203 lock_policy_rwsem_read(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301204 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301205 unlock_policy_rwsem_read(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Srivatsa S. Bhat61173f22013-09-12 01:43:25 +05301207 if (cpu != policy->cpu) {
1208 if (!frozen)
1209 sysfs_remove_link(&dev->kobj, "cpufreq");
Viresh Kumar73bf0fc2013-02-05 22:21:14 +01001210 } else if (cpus > 1) {
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301211
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301212 new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu, frozen);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301213 if (new_cpu >= 0) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301214 update_policy_cpu(policy, new_cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301215
1216 if (!frozen) {
1217 pr_debug("%s: policy Kobject moved to cpu: %d "
1218 "from: %d\n",__func__, new_cpu, cpu);
1219 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001220 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001221 }
Venki Pallipadiec282972007-03-26 12:03:19 -07001222
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301223 return 0;
1224}
1225
1226static int __cpufreq_remove_dev_finish(struct device *dev,
1227 struct subsys_interface *sif,
1228 bool frozen)
1229{
1230 unsigned int cpu = dev->id, cpus;
1231 int ret;
1232 unsigned long flags;
1233 struct cpufreq_policy *policy;
1234 struct kobject *kobj;
1235 struct completion *cmp;
1236
1237 read_lock_irqsave(&cpufreq_driver_lock, flags);
1238 policy = per_cpu(cpufreq_cpu_data, cpu);
1239 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1240
1241 if (!policy) {
1242 pr_debug("%s: No cpu_data found\n", __func__);
1243 return -EINVAL;
1244 }
1245
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301246 WARN_ON(lock_policy_rwsem_write(cpu));
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301247 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301248
1249 if (cpus > 1)
1250 cpumask_clear_cpu(cpu, policy->cpus);
1251 unlock_policy_rwsem_write(cpu);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301252
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001253 /* If cpu is last user of policy, free policy */
1254 if (cpus == 1) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301255 if (cpufreq_driver->target) {
1256 ret = __cpufreq_governor(policy,
1257 CPUFREQ_GOV_POLICY_EXIT);
1258 if (ret) {
1259 pr_err("%s: Failed to exit governor\n",
1260 __func__);
1261 return ret;
1262 }
Viresh Kumaredab2fb2013-08-20 12:08:22 +05301263 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001264
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301265 if (!frozen) {
1266 lock_policy_rwsem_read(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301267 kobj = &policy->kobj;
1268 cmp = &policy->kobj_unregister;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301269 unlock_policy_rwsem_read(cpu);
1270 kobject_put(kobj);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001271
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301272 /*
1273 * We need to make sure that the underlying kobj is
1274 * actually not referenced anymore by anybody before we
1275 * proceed with unloading.
1276 */
1277 pr_debug("waiting for dropping of refcount\n");
1278 wait_for_completion(cmp);
1279 pr_debug("wait complete\n");
1280 }
1281
1282 /*
1283 * Perform the ->exit() even during light-weight tear-down,
1284 * since this is a core component, and is essential for the
1285 * subsequent light-weight ->init() to succeed.
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001286 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001287 if (cpufreq_driver->exit)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301288 cpufreq_driver->exit(policy);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001289
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301290 /* Remove policy from list of active policies */
1291 write_lock_irqsave(&cpufreq_driver_lock, flags);
1292 list_del(&policy->policy_list);
1293 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1294
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301295 if (!frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301296 cpufreq_policy_free(policy);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001297 } else {
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001298 if (cpufreq_driver->target) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301299 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
1300 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
1301 pr_err("%s: Failed to start governor\n",
1302 __func__);
1303 return ret;
1304 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001305 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307
Viresh Kumar474deff2013-08-20 12:08:25 +05301308 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 return 0;
1310}
1311
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301312/**
1313 * __cpufreq_remove_dev - remove a CPU device
1314 *
1315 * Removes the cpufreq interface for a CPU device.
1316 * Caller should already have policy_rwsem in write mode for this CPU.
1317 * This routine frees the rwsem before returning.
1318 */
1319static inline int __cpufreq_remove_dev(struct device *dev,
1320 struct subsys_interface *sif,
1321 bool frozen)
1322{
1323 int ret;
1324
1325 ret = __cpufreq_remove_dev_prepare(dev, sif, frozen);
1326
1327 if (!ret)
1328 ret = __cpufreq_remove_dev_finish(dev, sif, frozen);
1329
1330 return ret;
1331}
1332
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001333static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001334{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001335 unsigned int cpu = dev->id;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001336 int retval;
Venki Pallipadiec282972007-03-26 12:03:19 -07001337
1338 if (cpu_is_offline(cpu))
1339 return 0;
1340
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301341 retval = __cpufreq_remove_dev(dev, sif, false);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001342 return retval;
1343}
1344
David Howells65f27f32006-11-22 14:55:48 +00001345static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
David Howells65f27f32006-11-22 14:55:48 +00001347 struct cpufreq_policy *policy =
1348 container_of(work, struct cpufreq_policy, update);
1349 unsigned int cpu = policy->cpu;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001350 pr_debug("handle_update for cpu %u called\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 cpufreq_update_policy(cpu);
1352}
1353
1354/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301355 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1356 * in deep trouble.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 * @cpu: cpu number
1358 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1359 * @new_freq: CPU frequency the CPU actually runs at
1360 *
Dave Jones29464f22009-01-18 01:37:11 -05001361 * We adjust to current frequency first, and need to clean up later.
1362 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301364static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1365 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301367 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301369 unsigned long flags;
1370
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001371 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 freqs.old = old_freq;
1375 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301376
1377 read_lock_irqsave(&cpufreq_driver_lock, flags);
1378 policy = per_cpu(cpufreq_cpu_data, cpu);
1379 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1380
1381 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1382 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Dave Jones32ee8c32006-02-28 00:43:23 -05001385/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301386 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001387 * @cpu: CPU number
1388 *
1389 * This is the last known freq, without actually getting it from the driver.
1390 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1391 */
1392unsigned int cpufreq_quick_get(unsigned int cpu)
1393{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001394 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301395 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001396
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001397 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1398 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001399
1400 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001401 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301402 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001403 cpufreq_cpu_put(policy);
1404 }
1405
Dave Jones4d34a672008-02-07 16:33:49 -05001406 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001407}
1408EXPORT_SYMBOL(cpufreq_quick_get);
1409
Jesse Barnes3d737102011-06-28 10:59:12 -07001410/**
1411 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1412 * @cpu: CPU number
1413 *
1414 * Just return the max possible frequency for a given CPU.
1415 */
1416unsigned int cpufreq_quick_get_max(unsigned int cpu)
1417{
1418 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1419 unsigned int ret_freq = 0;
1420
1421 if (policy) {
1422 ret_freq = policy->max;
1423 cpufreq_cpu_put(policy);
1424 }
1425
1426 return ret_freq;
1427}
1428EXPORT_SYMBOL(cpufreq_quick_get_max);
1429
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001430static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001432 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301433 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001435 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001436 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001438 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301440 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001441 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301442 /* verify no discrepancy between actual and
1443 saved value exists */
1444 if (unlikely(ret_freq != policy->cur)) {
1445 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 schedule_work(&policy->update);
1447 }
1448 }
1449
Dave Jones4d34a672008-02-07 16:33:49 -05001450 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001451}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001453/**
1454 * cpufreq_get - get the current CPU frequency (in kHz)
1455 * @cpu: CPU number
1456 *
1457 * Get the CPU current (static) CPU frequency
1458 */
1459unsigned int cpufreq_get(unsigned int cpu)
1460{
1461 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001462
Viresh Kumar26ca8692013-09-20 22:37:31 +05301463 if (cpufreq_disabled() || !cpufreq_driver)
1464 return -ENOENT;
1465
Viresh Kumar6eed9402013-08-06 22:53:11 +05301466 if (!down_read_trylock(&cpufreq_rwsem))
1467 return 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001468
1469 if (unlikely(lock_policy_rwsem_read(cpu)))
1470 goto out_policy;
1471
1472 ret_freq = __cpufreq_get(cpu);
1473
1474 unlock_policy_rwsem_read(cpu);
1475
1476out_policy:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301477 up_read(&cpufreq_rwsem);
1478
Dave Jones4d34a672008-02-07 16:33:49 -05001479 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481EXPORT_SYMBOL(cpufreq_get);
1482
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001483static struct subsys_interface cpufreq_interface = {
1484 .name = "cpufreq",
1485 .subsys = &cpu_subsys,
1486 .add_dev = cpufreq_add_dev,
1487 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001488};
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001491 * cpufreq_bp_suspend - Prepare the boot CPU for system suspend.
1492 *
1493 * This function is only executed for the boot processor. The other CPUs
1494 * have been put offline by means of CPU hotplug.
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001495 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001496static int cpufreq_bp_suspend(void)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001497{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301498 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001499
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001500 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301501 struct cpufreq_policy *policy;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001502
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001503 pr_debug("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001504
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001505 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301506 policy = cpufreq_cpu_get(cpu);
1507 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001508 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001509
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001510 if (cpufreq_driver->suspend) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301511 ret = cpufreq_driver->suspend(policy);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001512 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001513 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301514 "step on CPU %u\n", policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001515 }
1516
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301517 cpufreq_cpu_put(policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001518 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001519}
1520
1521/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001522 * cpufreq_bp_resume - Restore proper frequency handling of the boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 *
1524 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001525 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1526 * restored. It will verify that the current freq is in sync with
1527 * what we believe it to be. This is a bit later than when it
1528 * should be, but nonethteless it's better than calling
1529 * cpufreq_driver->get() here which might re-enable interrupts...
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001530 *
1531 * This function is only executed for the boot CPU. The other CPUs have not
1532 * been turned on yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001534static void cpufreq_bp_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301536 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001537
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001538 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301539 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001541 pr_debug("resuming cpu %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001543 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301544 policy = cpufreq_cpu_get(cpu);
1545 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001546 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001548 if (cpufreq_driver->resume) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301549 ret = cpufreq_driver->resume(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (ret) {
1551 printk(KERN_ERR "cpufreq: resume failed in ->resume "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301552 "step on CPU %u\n", policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001553 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 }
1555 }
1556
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301557 schedule_work(&policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001558
Dave Jonesc9060492008-02-07 16:32:18 -05001559fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301560 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001563static struct syscore_ops cpufreq_syscore_ops = {
1564 .suspend = cpufreq_bp_suspend,
1565 .resume = cpufreq_bp_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566};
1567
Borislav Petkov9d950462013-01-20 10:24:28 +00001568/**
1569 * cpufreq_get_current_driver - return current driver's name
1570 *
1571 * Return the name string of the currently loaded cpufreq driver
1572 * or NULL, if none.
1573 */
1574const char *cpufreq_get_current_driver(void)
1575{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001576 if (cpufreq_driver)
1577 return cpufreq_driver->name;
1578
1579 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001580}
1581EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583/*********************************************************************
1584 * NOTIFIER LISTS INTERFACE *
1585 *********************************************************************/
1586
1587/**
1588 * cpufreq_register_notifier - register a driver with cpufreq
1589 * @nb: notifier function to register
1590 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1591 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001592 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 * are notified about clock rate changes (once before and once after
1594 * the transition), or a list of drivers that are notified about
1595 * changes in cpufreq policy.
1596 *
1597 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001598 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 */
1600int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1601{
1602 int ret;
1603
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001604 if (cpufreq_disabled())
1605 return -EINVAL;
1606
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001607 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 switch (list) {
1610 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001611 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001612 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 break;
1614 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001615 ret = blocking_notifier_chain_register(
1616 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 break;
1618 default:
1619 ret = -EINVAL;
1620 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622 return ret;
1623}
1624EXPORT_SYMBOL(cpufreq_register_notifier);
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626/**
1627 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1628 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301629 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 *
1631 * Remove a driver from the CPU frequency notifier list.
1632 *
1633 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001634 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 */
1636int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1637{
1638 int ret;
1639
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001640 if (cpufreq_disabled())
1641 return -EINVAL;
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 switch (list) {
1644 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001645 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001646 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 break;
1648 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001649 ret = blocking_notifier_chain_unregister(
1650 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 break;
1652 default:
1653 ret = -EINVAL;
1654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 return ret;
1657}
1658EXPORT_SYMBOL(cpufreq_unregister_notifier);
1659
1660
1661/*********************************************************************
1662 * GOVERNORS *
1663 *********************************************************************/
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665int __cpufreq_driver_target(struct cpufreq_policy *policy,
1666 unsigned int target_freq,
1667 unsigned int relation)
1668{
1669 int retval = -EINVAL;
Viresh Kumar72499242012-10-31 01:28:21 +01001670 unsigned int old_target_freq = target_freq;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001671
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001672 if (cpufreq_disabled())
1673 return -ENODEV;
1674
Viresh Kumar72499242012-10-31 01:28:21 +01001675 /* Make sure that target_freq is within supported range */
1676 if (target_freq > policy->max)
1677 target_freq = policy->max;
1678 if (target_freq < policy->min)
1679 target_freq = policy->min;
1680
1681 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
1682 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001683
1684 if (target_freq == policy->cur)
1685 return 0;
1686
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001687 if (cpufreq_driver->target)
1688 retval = cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return retval;
1691}
1692EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694int cpufreq_driver_target(struct cpufreq_policy *policy,
1695 unsigned int target_freq,
1696 unsigned int relation)
1697{
Julia Lawallf1829e42008-07-25 22:44:53 +02001698 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001700 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
Julia Lawallf1829e42008-07-25 22:44:53 +02001701 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 ret = __cpufreq_driver_target(policy, target_freq, relation);
1704
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001705 unlock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Julia Lawallf1829e42008-07-25 22:44:53 +02001707fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 return ret;
1709}
1710EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1711
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001712/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001713 * when "event" is CPUFREQ_GOV_LIMITS
1714 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301716static int __cpufreq_governor(struct cpufreq_policy *policy,
1717 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
Dave Jonescc993ca2005-07-28 09:43:56 -07001719 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001720
1721 /* Only must be defined when default governor is known to have latency
1722 restrictions, like e.g. conservative or ondemand.
1723 That this is the case is already ensured in Kconfig
1724 */
1725#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1726 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1727#else
1728 struct cpufreq_governor *gov = NULL;
1729#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001730
1731 if (policy->governor->max_transition_latency &&
1732 policy->cpuinfo.transition_latency >
1733 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001734 if (!gov)
1735 return -EINVAL;
1736 else {
1737 printk(KERN_WARNING "%s governor failed, too long"
1738 " transition latency of HW, fallback"
1739 " to %s governor\n",
1740 policy->governor->name,
1741 gov->name);
1742 policy->governor = gov;
1743 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Viresh Kumarfe492f32013-08-06 22:53:10 +05301746 if (event == CPUFREQ_GOV_POLICY_INIT)
1747 if (!try_module_get(policy->governor->owner))
1748 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001750 pr_debug("__cpufreq_governor for CPU %u, event %u\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301751 policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001752
1753 mutex_lock(&cpufreq_governor_lock);
Srivatsa S. Bhat56d07db2013-09-07 01:23:55 +05301754 if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
Viresh Kumarf73d3932013-08-31 17:53:40 +05301755 || (!policy->governor_enabled
1756 && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001757 mutex_unlock(&cpufreq_governor_lock);
1758 return -EBUSY;
1759 }
1760
1761 if (event == CPUFREQ_GOV_STOP)
1762 policy->governor_enabled = false;
1763 else if (event == CPUFREQ_GOV_START)
1764 policy->governor_enabled = true;
1765
1766 mutex_unlock(&cpufreq_governor_lock);
1767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 ret = policy->governor->governor(policy, event);
1769
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001770 if (!ret) {
1771 if (event == CPUFREQ_GOV_POLICY_INIT)
1772 policy->governor->initialized++;
1773 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1774 policy->governor->initialized--;
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001775 } else {
1776 /* Restore original values */
1777 mutex_lock(&cpufreq_governor_lock);
1778 if (event == CPUFREQ_GOV_STOP)
1779 policy->governor_enabled = true;
1780 else if (event == CPUFREQ_GOV_START)
1781 policy->governor_enabled = false;
1782 mutex_unlock(&cpufreq_governor_lock);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001783 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001784
Viresh Kumarfe492f32013-08-06 22:53:10 +05301785 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1786 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 module_put(policy->governor->owner);
1788
1789 return ret;
1790}
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792int cpufreq_register_governor(struct cpufreq_governor *governor)
1793{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001794 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
1796 if (!governor)
1797 return -EINVAL;
1798
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001799 if (cpufreq_disabled())
1800 return -ENODEV;
1801
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001802 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001803
Viresh Kumarb3940582013-02-01 05:42:58 +00001804 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001805 err = -EBUSY;
1806 if (__find_governor(governor->name) == NULL) {
1807 err = 0;
1808 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Dave Jones32ee8c32006-02-28 00:43:23 -05001811 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001812 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1817{
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001818#ifdef CONFIG_HOTPLUG_CPU
1819 int cpu;
1820#endif
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (!governor)
1823 return;
1824
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001825 if (cpufreq_disabled())
1826 return;
1827
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001828#ifdef CONFIG_HOTPLUG_CPU
1829 for_each_present_cpu(cpu) {
1830 if (cpu_online(cpu))
1831 continue;
1832 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1833 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1834 }
1835#endif
1836
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001837 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001839 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return;
1841}
1842EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1843
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845/*********************************************************************
1846 * POLICY INTERFACE *
1847 *********************************************************************/
1848
1849/**
1850 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001851 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1852 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 *
1854 * Reads the current cpufreq policy.
1855 */
1856int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1857{
1858 struct cpufreq_policy *cpu_policy;
1859 if (!policy)
1860 return -EINVAL;
1861
1862 cpu_policy = cpufreq_cpu_get(cpu);
1863 if (!cpu_policy)
1864 return -EINVAL;
1865
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301866 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 return 0;
1870}
1871EXPORT_SYMBOL(cpufreq_get_policy);
1872
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001873/*
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301874 * data : current policy.
1875 * policy : policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001876 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301877static int __cpufreq_set_policy(struct cpufreq_policy *policy,
1878 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001880 int ret = 0, failed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301882 pr_debug("setting new policy for CPU %u: %u - %u kHz\n", new_policy->cpu,
1883 new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301885 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301887 if (new_policy->min > policy->max || new_policy->max < policy->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001888 ret = -EINVAL;
1889 goto error_out;
1890 }
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301893 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (ret)
1895 goto error_out;
1896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001898 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301899 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001902 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301903 CPUFREQ_INCOMPATIBLE, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Viresh Kumarbb176f72013-06-19 14:19:33 +05301905 /*
1906 * verify the cpu speed can be set within this limit, which might be
1907 * different to the first one
1908 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301909 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08001910 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001914 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301915 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301917 policy->min = new_policy->min;
1918 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001920 pr_debug("new min and max freqs are %u - %u kHz\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301921 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001923 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301924 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001925 pr_debug("setting range\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301926 ret = cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301928 if (new_policy->governor != policy->governor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 /* save old, working values */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301930 struct cpufreq_governor *old_gov = policy->governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001932 pr_debug("governor switch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934 /* end old governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301935 if (policy->governor) {
1936 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1937 unlock_policy_rwsem_write(new_policy->cpu);
1938 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001939 CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301940 lock_policy_rwsem_write(new_policy->cpu);
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 /* start new governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301944 policy->governor = new_policy->governor;
1945 if (!__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT)) {
1946 if (!__cpufreq_governor(policy, CPUFREQ_GOV_START)) {
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001947 failed = 0;
Viresh Kumar955ef482013-05-16 05:09:58 +00001948 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301949 unlock_policy_rwsem_write(new_policy->cpu);
1950 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001951 CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301952 lock_policy_rwsem_write(new_policy->cpu);
Viresh Kumar955ef482013-05-16 05:09:58 +00001953 }
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001954 }
1955
1956 if (failed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 /* new governor failed, so re-start old one */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001958 pr_debug("starting governor %s failed\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301959 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 if (old_gov) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301961 policy->governor = old_gov;
1962 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001963 CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301964 __cpufreq_governor(policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301965 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
1967 ret = -EINVAL;
1968 goto error_out;
1969 }
1970 /* might be a policy change, too, so fall through */
1971 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001972 pr_debug("governor: change or update limits\n");
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301973 ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 }
1975
Dave Jones7d5e3502006-02-02 17:03:42 -05001976error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 return ret;
1978}
1979
1980/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1982 * @cpu: CPU which shall be re-evaluated
1983 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001984 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 * at different times.
1986 */
1987int cpufreq_update_policy(unsigned int cpu)
1988{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301989 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1990 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02001991 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301993 if (!policy) {
Julia Lawallf1829e42008-07-25 22:44:53 +02001994 ret = -ENODEV;
1995 goto no_policy;
1996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Julia Lawallf1829e42008-07-25 22:44:53 +02001998 if (unlikely(lock_policy_rwsem_write(cpu))) {
1999 ret = -EINVAL;
2000 goto fail;
2001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002003 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302004 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302005 new_policy.min = policy->user_policy.min;
2006 new_policy.max = policy->user_policy.max;
2007 new_policy.policy = policy->user_policy.policy;
2008 new_policy.governor = policy->user_policy.governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Viresh Kumarbb176f72013-06-19 14:19:33 +05302010 /*
2011 * BIOS might change freq behind our back
2012 * -> ask driver for current freq and notify governors about a change
2013 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002014 if (cpufreq_driver->get) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302015 new_policy.cur = cpufreq_driver->get(cpu);
2016 if (!policy->cur) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002017 pr_debug("Driver did not initialize current freq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302018 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002019 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302020 if (policy->cur != new_policy.cur && cpufreq_driver->target)
2021 cpufreq_out_of_sync(cpu, policy->cur,
2022 new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002023 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002024 }
2025
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302026 ret = __cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002028 unlock_policy_rwsem_write(cpu);
2029
Julia Lawallf1829e42008-07-25 22:44:53 +02002030fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302031 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02002032no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return ret;
2034}
2035EXPORT_SYMBOL(cpufreq_update_policy);
2036
Paul Gortmaker27609842013-06-19 13:54:04 -04002037static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002038 unsigned long action, void *hcpu)
2039{
2040 unsigned int cpu = (unsigned long)hcpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002041 struct device *dev;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302042 bool frozen = false;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002043
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002044 dev = get_cpu_device(cpu);
2045 if (dev) {
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302046
2047 if (action & CPU_TASKS_FROZEN)
2048 frozen = true;
2049
2050 switch (action & ~CPU_TASKS_FROZEN) {
Ashok Rajc32b6b82005-10-30 14:59:54 -08002051 case CPU_ONLINE:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302052 __cpufreq_add_dev(dev, NULL, frozen);
Srivatsa S. Bhat23d328992013-07-30 04:23:56 +05302053 cpufreq_update_policy(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002054 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302055
Ashok Rajc32b6b82005-10-30 14:59:54 -08002056 case CPU_DOWN_PREPARE:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302057 __cpufreq_remove_dev_prepare(dev, NULL, frozen);
Srivatsa S. Bhat1aee40a2013-09-07 01:23:27 +05302058 break;
2059
2060 case CPU_POST_DEAD:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302061 __cpufreq_remove_dev_finish(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002062 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302063
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002064 case CPU_DOWN_FAILED:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302065 __cpufreq_add_dev(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002066 break;
2067 }
2068 }
2069 return NOTIFY_OK;
2070}
2071
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002072static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302073 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002074};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076/*********************************************************************
2077 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2078 *********************************************************************/
2079
2080/**
2081 * cpufreq_register_driver - register a CPU Frequency driver
2082 * @driver_data: A struct cpufreq_driver containing the values#
2083 * submitted by the CPU Frequency driver.
2084 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302085 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002087 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 *
2089 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002090int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091{
2092 unsigned long flags;
2093 int ret;
2094
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002095 if (cpufreq_disabled())
2096 return -ENODEV;
2097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 if (!driver_data || !driver_data->verify || !driver_data->init ||
2099 ((!driver_data->setpolicy) && (!driver_data->target)))
2100 return -EINVAL;
2101
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002102 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104 if (driver_data->setpolicy)
2105 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2106
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002107 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002108 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002109 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Yinghai Lu4dea58062013-09-18 21:05:20 -07002110 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002112 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002113 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002115 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002116 if (ret)
2117 goto err_null_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002119 if (!(cpufreq_driver->flags & CPUFREQ_STICKY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 int i;
2121 ret = -ENODEV;
2122
2123 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07002124 for (i = 0; i < nr_cpu_ids; i++)
2125 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07002127 break;
2128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
2130 /* if all ->init() calls failed, unregister */
2131 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002132 pr_debug("no CPU initialized for driver %s\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302133 driver_data->name);
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002134 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 }
2136 }
2137
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002138 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002139 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002141 return 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002142err_if_unreg:
2143 subsys_interface_unregister(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002144err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002145 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002146 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002147 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones4d34a672008-02-07 16:33:49 -05002148 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149}
2150EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2151
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152/**
2153 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2154 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302155 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 * the right to do so, i.e. if you have succeeded in initialising before!
2157 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2158 * currently not initialised.
2159 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002160int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 unsigned long flags;
2163
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002164 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002167 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002169 subsys_interface_unregister(&cpufreq_interface);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002170 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Viresh Kumar6eed9402013-08-06 22:53:11 +05302172 down_write(&cpufreq_rwsem);
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002173 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302174
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002175 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302176
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002177 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302178 up_write(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 return 0;
2181}
2182EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002183
2184static int __init cpufreq_core_init(void)
2185{
2186 int cpu;
2187
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002188 if (cpufreq_disabled())
2189 return -ENODEV;
2190
Viresh Kumar474deff2013-08-20 12:08:25 +05302191 for_each_possible_cpu(cpu)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002192 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002193
Viresh Kumar2361be22013-05-17 16:09:09 +05302194 cpufreq_global_kobject = kobject_create();
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002195 BUG_ON(!cpufreq_global_kobject);
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01002196 register_syscore_ops(&cpufreq_syscore_ops);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002197
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002198 return 0;
2199}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002200core_initcall(cpufreq_core_init);