blob: dbfe219667d3564dcd81452de27f56876a1145f3 [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 kumar8bf1ac72012-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
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530955 policy->last_cpu = policy->cpu;
956 policy->cpu = cpu;
957
958#ifdef CONFIG_CPU_FREQ_TABLE
959 cpufreq_frequency_table_update_policy_cpu(policy);
960#endif
961 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
962 CPUFREQ_UPDATE_POLICY_CPU, policy);
963}
964
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530965static int __cpufreq_add_dev(struct device *dev, struct subsys_interface *sif,
966 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Viresh Kumarfcf80582013-01-29 14:39:08 +0000968 unsigned int j, cpu = dev->id;
Viresh Kumar65922462013-02-07 10:56:03 +0530969 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500972#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumar1b274292013-08-20 12:08:26 +0530973 struct cpufreq_policy *tpolicy;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000974 struct cpufreq_governor *gov;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500975#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Ashok Rajc32b6b82005-10-30 14:59:54 -0800977 if (cpu_is_offline(cpu))
978 return 0;
979
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200980 pr_debug("adding CPU %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
982#ifdef CONFIG_SMP
983 /* check whether a different CPU already registered this
984 * CPU because it is in the same boat. */
985 policy = cpufreq_cpu_get(cpu);
986 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500987 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return 0;
989 }
Li Zhong5025d622013-08-21 01:31:08 +0200990#endif
Viresh Kumarfcf80582013-01-29 14:39:08 +0000991
Viresh Kumar6eed9402013-08-06 22:53:11 +0530992 if (!down_read_trylock(&cpufreq_rwsem))
993 return 0;
994
Viresh Kumarfcf80582013-01-29 14:39:08 +0000995#ifdef CONFIG_HOTPLUG_CPU
996 /* Check if this cpu was hot-unplugged earlier and has siblings */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000997 read_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +0530998 list_for_each_entry(tpolicy, &cpufreq_policy_list, policy_list) {
999 if (cpumask_test_cpu(cpu, tpolicy->related_cpus)) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001000 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +05301001 ret = cpufreq_add_policy_cpu(tpolicy, cpu, dev, frozen);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301002 up_read(&cpufreq_rwsem);
1003 return ret;
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301004 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001005 }
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001006 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001007#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301009 if (frozen)
1010 /* Restore the saved policy when doing light-weight init */
1011 policy = cpufreq_policy_restore(cpu);
1012 else
1013 policy = cpufreq_policy_alloc();
1014
Dave Jones059019a2009-07-08 16:30:03 -04001015 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -04001017
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301018
1019 /*
1020 * In the resume path, since we restore a saved policy, the assignment
1021 * to policy->cpu is like an update of the existing policy, rather than
1022 * the creation of a brand new one. So we need to perform this update
1023 * by invoking update_policy_cpu().
1024 */
1025 if (frozen && cpu != policy->cpu)
1026 update_policy_cpu(policy, cpu);
1027 else
1028 policy->cpu = cpu;
1029
Viresh Kumar65922462013-02-07 10:56:03 +05301030 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Rusty Russell835481d2009-01-04 05:18:06 -08001031 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001034 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
1036 /* call driver. From then on the cpufreq must be able
1037 * to accept all calls to ->verify and ->setpolicy for this CPU
1038 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001039 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001041 pr_debug("initialization failed\n");
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301042 goto err_set_policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001044
Viresh Kumarfcf80582013-01-29 14:39:08 +00001045 /* related cpus should atleast have policy->cpus */
1046 cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
1047
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001048 /*
1049 * affected cpus must always be the one, which are online. We aren't
1050 * managing offline cpus here.
1051 */
1052 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1053
Mike Chan187d9f42008-12-04 12:19:17 -08001054 policy->user_policy.min = policy->min;
1055 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Thomas Renningera1531ac2008-07-29 22:32:58 -07001057 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1058 CPUFREQ_START, policy);
1059
Viresh Kumarfcf80582013-01-29 14:39:08 +00001060#ifdef CONFIG_HOTPLUG_CPU
1061 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
1062 if (gov) {
1063 policy->governor = gov;
1064 pr_debug("Restoring governor %s for cpu %d\n",
1065 policy->governor->name, cpu);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001066 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001067#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301069 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301070 for_each_cpu(j, policy->cpus)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301071 per_cpu(cpufreq_cpu_data, j) = policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301072 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1073
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301074 if (!frozen) {
Viresh Kumar308b60e2013-07-31 14:35:14 +02001075 ret = cpufreq_add_dev_interface(policy, dev);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301076 if (ret)
1077 goto err_out_unregister;
1078 }
Dave Jones8ff69732006-03-05 03:37:23 -05001079
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301080 write_lock_irqsave(&cpufreq_driver_lock, flags);
1081 list_add(&policy->policy_list, &cpufreq_policy_list);
1082 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1083
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301084 cpufreq_init_policy(policy);
1085
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001086 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301087 up_read(&cpufreq_rwsem);
1088
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001089 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return 0;
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093err_out_unregister:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001094 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301095 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001096 per_cpu(cpufreq_cpu_data, j) = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001097 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301099err_set_policy_cpu:
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301100 cpufreq_policy_free(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101nomem_out:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301102 up_read(&cpufreq_rwsem);
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 return ret;
1105}
1106
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301107/**
1108 * cpufreq_add_dev - add a CPU device
1109 *
1110 * Adds the cpufreq interface for a CPU device.
1111 *
1112 * The Oracle says: try running cpufreq registration/unregistration concurrently
1113 * with with cpu hotplugging and all hell will break loose. Tried to clean this
1114 * mess up, but more thorough testing is needed. - Mathieu
1115 */
1116static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1117{
1118 return __cpufreq_add_dev(dev, sif, false);
1119}
1120
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301121static int cpufreq_nominate_new_policy_cpu(struct cpufreq_policy *policy,
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301122 unsigned int old_cpu, bool frozen)
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301123{
1124 struct device *cpu_dev;
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301125 int ret;
1126
1127 /* first sibling now owns the new sysfs dir */
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301128 cpu_dev = get_cpu_device(cpumask_any_but(policy->cpus, old_cpu));
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301129
1130 /* Don't touch sysfs files during light-weight tear-down */
1131 if (frozen)
1132 return cpu_dev->id;
1133
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301134 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301135 ret = kobject_move(&policy->kobj, &cpu_dev->kobj);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301136 if (ret) {
1137 pr_err("%s: Failed to move kobj: %d", __func__, ret);
1138
1139 WARN_ON(lock_policy_rwsem_write(old_cpu));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301140 cpumask_set_cpu(old_cpu, policy->cpus);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301141 unlock_policy_rwsem_write(old_cpu);
1142
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301143 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301144 "cpufreq");
1145
1146 return -EINVAL;
1147 }
1148
1149 return cpu_dev->id;
1150}
1151
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301152static int __cpufreq_remove_dev_prepare(struct device *dev,
1153 struct subsys_interface *sif,
1154 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155{
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301156 unsigned int cpu = dev->id, cpus;
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301157 int new_cpu, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 unsigned long flags;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301159 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001161 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001163 write_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301165 policy = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301167 /* Save the policy somewhere when doing a light-weight tear-down */
1168 if (frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301169 per_cpu(cpufreq_cpu_data_fallback, cpu) = policy;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301170
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001171 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301173 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001174 pr_debug("%s: No cpu_data found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301178 if (cpufreq_driver->target) {
1179 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1180 if (ret) {
1181 pr_err("%s: Failed to stop governor\n", __func__);
1182 return ret;
1183 }
1184 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001185
Jacob Shin27ecddc2011-04-27 13:32:11 -05001186#ifdef CONFIG_HOTPLUG_CPU
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001187 if (!cpufreq_driver->setpolicy)
Dirk Brandewiefa69e332013-02-06 09:02:11 -08001188 strncpy(per_cpu(cpufreq_cpu_governor, cpu),
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301189 policy->governor->name, CPUFREQ_NAME_LEN);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001190#endif
1191
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301192 lock_policy_rwsem_read(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301193 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301194 unlock_policy_rwsem_read(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Srivatsa S. Bhat61173f22013-09-12 01:43:25 +05301196 if (cpu != policy->cpu) {
1197 if (!frozen)
1198 sysfs_remove_link(&dev->kobj, "cpufreq");
Viresh Kumar73bf0fc2013-02-05 22:21:14 +01001199 } else if (cpus > 1) {
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301200
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301201 new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu, frozen);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301202 if (new_cpu >= 0) {
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301203 WARN_ON(lock_policy_rwsem_write(cpu));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301204 update_policy_cpu(policy, new_cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301205 unlock_policy_rwsem_write(cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301206
1207 if (!frozen) {
1208 pr_debug("%s: policy Kobject moved to cpu: %d "
1209 "from: %d\n",__func__, new_cpu, cpu);
1210 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001211 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001212 }
Venki Pallipadiec282972007-03-26 12:03:19 -07001213
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301214 return 0;
1215}
1216
1217static int __cpufreq_remove_dev_finish(struct device *dev,
1218 struct subsys_interface *sif,
1219 bool frozen)
1220{
1221 unsigned int cpu = dev->id, cpus;
1222 int ret;
1223 unsigned long flags;
1224 struct cpufreq_policy *policy;
1225 struct kobject *kobj;
1226 struct completion *cmp;
1227
1228 read_lock_irqsave(&cpufreq_driver_lock, flags);
1229 policy = per_cpu(cpufreq_cpu_data, cpu);
1230 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1231
1232 if (!policy) {
1233 pr_debug("%s: No cpu_data found\n", __func__);
1234 return -EINVAL;
1235 }
1236
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301237 WARN_ON(lock_policy_rwsem_write(cpu));
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301238 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301239
1240 if (cpus > 1)
1241 cpumask_clear_cpu(cpu, policy->cpus);
1242 unlock_policy_rwsem_write(cpu);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301243
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001244 /* If cpu is last user of policy, free policy */
1245 if (cpus == 1) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301246 if (cpufreq_driver->target) {
1247 ret = __cpufreq_governor(policy,
1248 CPUFREQ_GOV_POLICY_EXIT);
1249 if (ret) {
1250 pr_err("%s: Failed to exit governor\n",
1251 __func__);
1252 return ret;
1253 }
Viresh Kumaredab2fb2013-08-20 12:08:22 +05301254 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001255
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301256 if (!frozen) {
1257 lock_policy_rwsem_read(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301258 kobj = &policy->kobj;
1259 cmp = &policy->kobj_unregister;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301260 unlock_policy_rwsem_read(cpu);
1261 kobject_put(kobj);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001262
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301263 /*
1264 * We need to make sure that the underlying kobj is
1265 * actually not referenced anymore by anybody before we
1266 * proceed with unloading.
1267 */
1268 pr_debug("waiting for dropping of refcount\n");
1269 wait_for_completion(cmp);
1270 pr_debug("wait complete\n");
1271 }
1272
1273 /*
1274 * Perform the ->exit() even during light-weight tear-down,
1275 * since this is a core component, and is essential for the
1276 * subsequent light-weight ->init() to succeed.
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001277 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001278 if (cpufreq_driver->exit)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301279 cpufreq_driver->exit(policy);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001280
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301281 /* Remove policy from list of active policies */
1282 write_lock_irqsave(&cpufreq_driver_lock, flags);
1283 list_del(&policy->policy_list);
1284 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1285
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301286 if (!frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301287 cpufreq_policy_free(policy);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001288 } else {
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001289 if (cpufreq_driver->target) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301290 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
1291 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
1292 pr_err("%s: Failed to start governor\n",
1293 __func__);
1294 return ret;
1295 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001296 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Viresh Kumar474deff2013-08-20 12:08:25 +05301299 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 return 0;
1301}
1302
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301303/**
1304 * __cpufreq_remove_dev - remove a CPU device
1305 *
1306 * Removes the cpufreq interface for a CPU device.
1307 * Caller should already have policy_rwsem in write mode for this CPU.
1308 * This routine frees the rwsem before returning.
1309 */
1310static inline int __cpufreq_remove_dev(struct device *dev,
1311 struct subsys_interface *sif,
1312 bool frozen)
1313{
1314 int ret;
1315
1316 ret = __cpufreq_remove_dev_prepare(dev, sif, frozen);
1317
1318 if (!ret)
1319 ret = __cpufreq_remove_dev_finish(dev, sif, frozen);
1320
1321 return ret;
1322}
1323
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001324static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001325{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001326 unsigned int cpu = dev->id;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001327 int retval;
Venki Pallipadiec282972007-03-26 12:03:19 -07001328
1329 if (cpu_is_offline(cpu))
1330 return 0;
1331
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301332 retval = __cpufreq_remove_dev(dev, sif, false);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001333 return retval;
1334}
1335
David Howells65f27f32006-11-22 14:55:48 +00001336static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
David Howells65f27f32006-11-22 14:55:48 +00001338 struct cpufreq_policy *policy =
1339 container_of(work, struct cpufreq_policy, update);
1340 unsigned int cpu = policy->cpu;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001341 pr_debug("handle_update for cpu %u called\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 cpufreq_update_policy(cpu);
1343}
1344
1345/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301346 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1347 * in deep trouble.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 * @cpu: cpu number
1349 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1350 * @new_freq: CPU frequency the CPU actually runs at
1351 *
Dave Jones29464f22009-01-18 01:37:11 -05001352 * We adjust to current frequency first, and need to clean up later.
1353 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301355static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1356 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301358 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301360 unsigned long flags;
1361
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001362 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 freqs.old = old_freq;
1366 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301367
1368 read_lock_irqsave(&cpufreq_driver_lock, flags);
1369 policy = per_cpu(cpufreq_cpu_data, cpu);
1370 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1371
1372 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1373 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374}
1375
Dave Jones32ee8c32006-02-28 00:43:23 -05001376/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301377 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001378 * @cpu: CPU number
1379 *
1380 * This is the last known freq, without actually getting it from the driver.
1381 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1382 */
1383unsigned int cpufreq_quick_get(unsigned int cpu)
1384{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001385 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301386 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001387
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001388 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1389 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001390
1391 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001392 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301393 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001394 cpufreq_cpu_put(policy);
1395 }
1396
Dave Jones4d34a672008-02-07 16:33:49 -05001397 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001398}
1399EXPORT_SYMBOL(cpufreq_quick_get);
1400
Jesse Barnes3d737102011-06-28 10:59:12 -07001401/**
1402 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1403 * @cpu: CPU number
1404 *
1405 * Just return the max possible frequency for a given CPU.
1406 */
1407unsigned int cpufreq_quick_get_max(unsigned int cpu)
1408{
1409 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1410 unsigned int ret_freq = 0;
1411
1412 if (policy) {
1413 ret_freq = policy->max;
1414 cpufreq_cpu_put(policy);
1415 }
1416
1417 return ret_freq;
1418}
1419EXPORT_SYMBOL(cpufreq_quick_get_max);
1420
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001421static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001423 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301424 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001426 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001427 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001429 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301431 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001432 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301433 /* verify no discrepancy between actual and
1434 saved value exists */
1435 if (unlikely(ret_freq != policy->cur)) {
1436 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 schedule_work(&policy->update);
1438 }
1439 }
1440
Dave Jones4d34a672008-02-07 16:33:49 -05001441 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001442}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001444/**
1445 * cpufreq_get - get the current CPU frequency (in kHz)
1446 * @cpu: CPU number
1447 *
1448 * Get the CPU current (static) CPU frequency
1449 */
1450unsigned int cpufreq_get(unsigned int cpu)
1451{
1452 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001453
Viresh Kumar6eed9402013-08-06 22:53:11 +05301454 if (!down_read_trylock(&cpufreq_rwsem))
1455 return 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001456
1457 if (unlikely(lock_policy_rwsem_read(cpu)))
1458 goto out_policy;
1459
1460 ret_freq = __cpufreq_get(cpu);
1461
1462 unlock_policy_rwsem_read(cpu);
1463
1464out_policy:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301465 up_read(&cpufreq_rwsem);
1466
Dave Jones4d34a672008-02-07 16:33:49 -05001467 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469EXPORT_SYMBOL(cpufreq_get);
1470
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001471static struct subsys_interface cpufreq_interface = {
1472 .name = "cpufreq",
1473 .subsys = &cpu_subsys,
1474 .add_dev = cpufreq_add_dev,
1475 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001476};
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001479 * cpufreq_bp_suspend - Prepare the boot CPU for system suspend.
1480 *
1481 * This function is only executed for the boot processor. The other CPUs
1482 * have been put offline by means of CPU hotplug.
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001483 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001484static int cpufreq_bp_suspend(void)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001485{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301486 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001487
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001488 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301489 struct cpufreq_policy *policy;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001490
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001491 pr_debug("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001492
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001493 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301494 policy = cpufreq_cpu_get(cpu);
1495 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001496 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001497
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001498 if (cpufreq_driver->suspend) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301499 ret = cpufreq_driver->suspend(policy);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001500 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001501 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301502 "step on CPU %u\n", policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001503 }
1504
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301505 cpufreq_cpu_put(policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001506 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001507}
1508
1509/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001510 * cpufreq_bp_resume - Restore proper frequency handling of the boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 *
1512 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001513 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1514 * restored. It will verify that the current freq is in sync with
1515 * what we believe it to be. This is a bit later than when it
1516 * should be, but nonethteless it's better than calling
1517 * cpufreq_driver->get() here which might re-enable interrupts...
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001518 *
1519 * This function is only executed for the boot CPU. The other CPUs have not
1520 * been turned on yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001522static void cpufreq_bp_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301524 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001525
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001526 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301527 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001529 pr_debug("resuming cpu %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001531 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301532 policy = cpufreq_cpu_get(cpu);
1533 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001534 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001536 if (cpufreq_driver->resume) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301537 ret = cpufreq_driver->resume(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (ret) {
1539 printk(KERN_ERR "cpufreq: resume failed in ->resume "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301540 "step on CPU %u\n", policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001541 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 }
1543 }
1544
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301545 schedule_work(&policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001546
Dave Jonesc9060492008-02-07 16:32:18 -05001547fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301548 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001551static struct syscore_ops cpufreq_syscore_ops = {
1552 .suspend = cpufreq_bp_suspend,
1553 .resume = cpufreq_bp_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554};
1555
Borislav Petkov9d950462013-01-20 10:24:28 +00001556/**
1557 * cpufreq_get_current_driver - return current driver's name
1558 *
1559 * Return the name string of the currently loaded cpufreq driver
1560 * or NULL, if none.
1561 */
1562const char *cpufreq_get_current_driver(void)
1563{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001564 if (cpufreq_driver)
1565 return cpufreq_driver->name;
1566
1567 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001568}
1569EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571/*********************************************************************
1572 * NOTIFIER LISTS INTERFACE *
1573 *********************************************************************/
1574
1575/**
1576 * cpufreq_register_notifier - register a driver with cpufreq
1577 * @nb: notifier function to register
1578 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1579 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001580 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 * are notified about clock rate changes (once before and once after
1582 * the transition), or a list of drivers that are notified about
1583 * changes in cpufreq policy.
1584 *
1585 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001586 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 */
1588int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1589{
1590 int ret;
1591
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001592 if (cpufreq_disabled())
1593 return -EINVAL;
1594
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001595 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 switch (list) {
1598 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001599 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001600 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 break;
1602 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001603 ret = blocking_notifier_chain_register(
1604 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 break;
1606 default:
1607 ret = -EINVAL;
1608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 return ret;
1611}
1612EXPORT_SYMBOL(cpufreq_register_notifier);
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614/**
1615 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1616 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301617 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 *
1619 * Remove a driver from the CPU frequency notifier list.
1620 *
1621 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001622 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 */
1624int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1625{
1626 int ret;
1627
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001628 if (cpufreq_disabled())
1629 return -EINVAL;
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 switch (list) {
1632 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001633 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001634 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 break;
1636 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001637 ret = blocking_notifier_chain_unregister(
1638 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 break;
1640 default:
1641 ret = -EINVAL;
1642 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643
1644 return ret;
1645}
1646EXPORT_SYMBOL(cpufreq_unregister_notifier);
1647
1648
1649/*********************************************************************
1650 * GOVERNORS *
1651 *********************************************************************/
1652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653int __cpufreq_driver_target(struct cpufreq_policy *policy,
1654 unsigned int target_freq,
1655 unsigned int relation)
1656{
1657 int retval = -EINVAL;
Viresh Kumar72499242012-10-31 01:28:21 +01001658 unsigned int old_target_freq = target_freq;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001659
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001660 if (cpufreq_disabled())
1661 return -ENODEV;
1662
Viresh Kumar72499242012-10-31 01:28:21 +01001663 /* Make sure that target_freq is within supported range */
1664 if (target_freq > policy->max)
1665 target_freq = policy->max;
1666 if (target_freq < policy->min)
1667 target_freq = policy->min;
1668
1669 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
1670 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001671
1672 if (target_freq == policy->cur)
1673 return 0;
1674
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001675 if (cpufreq_driver->target)
1676 retval = cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return retval;
1679}
1680EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682int cpufreq_driver_target(struct cpufreq_policy *policy,
1683 unsigned int target_freq,
1684 unsigned int relation)
1685{
Julia Lawallf1829e42008-07-25 22:44:53 +02001686 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001688 if (unlikely(lock_policy_rwsem_write(policy->cpu)))
Julia Lawallf1829e42008-07-25 22:44:53 +02001689 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691 ret = __cpufreq_driver_target(policy, target_freq, relation);
1692
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001693 unlock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Julia Lawallf1829e42008-07-25 22:44:53 +02001695fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return ret;
1697}
1698EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1699
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001700/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001701 * when "event" is CPUFREQ_GOV_LIMITS
1702 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301704static int __cpufreq_governor(struct cpufreq_policy *policy,
1705 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Dave Jonescc993ca2005-07-28 09:43:56 -07001707 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001708
1709 /* Only must be defined when default governor is known to have latency
1710 restrictions, like e.g. conservative or ondemand.
1711 That this is the case is already ensured in Kconfig
1712 */
1713#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1714 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1715#else
1716 struct cpufreq_governor *gov = NULL;
1717#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001718
1719 if (policy->governor->max_transition_latency &&
1720 policy->cpuinfo.transition_latency >
1721 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001722 if (!gov)
1723 return -EINVAL;
1724 else {
1725 printk(KERN_WARNING "%s governor failed, too long"
1726 " transition latency of HW, fallback"
1727 " to %s governor\n",
1728 policy->governor->name,
1729 gov->name);
1730 policy->governor = gov;
1731 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001732 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Viresh Kumarfe492f32013-08-06 22:53:10 +05301734 if (event == CPUFREQ_GOV_POLICY_INIT)
1735 if (!try_module_get(policy->governor->owner))
1736 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001738 pr_debug("__cpufreq_governor for CPU %u, event %u\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301739 policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001740
1741 mutex_lock(&cpufreq_governor_lock);
Srivatsa S. Bhat56d07db2013-09-07 01:23:55 +05301742 if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
Viresh Kumarf73d3932013-08-31 17:53:40 +05301743 || (!policy->governor_enabled
1744 && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001745 mutex_unlock(&cpufreq_governor_lock);
1746 return -EBUSY;
1747 }
1748
1749 if (event == CPUFREQ_GOV_STOP)
1750 policy->governor_enabled = false;
1751 else if (event == CPUFREQ_GOV_START)
1752 policy->governor_enabled = true;
1753
1754 mutex_unlock(&cpufreq_governor_lock);
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 ret = policy->governor->governor(policy, event);
1757
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001758 if (!ret) {
1759 if (event == CPUFREQ_GOV_POLICY_INIT)
1760 policy->governor->initialized++;
1761 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1762 policy->governor->initialized--;
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001763 } else {
1764 /* Restore original values */
1765 mutex_lock(&cpufreq_governor_lock);
1766 if (event == CPUFREQ_GOV_STOP)
1767 policy->governor_enabled = true;
1768 else if (event == CPUFREQ_GOV_START)
1769 policy->governor_enabled = false;
1770 mutex_unlock(&cpufreq_governor_lock);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001771 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001772
Viresh Kumarfe492f32013-08-06 22:53:10 +05301773 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1774 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 module_put(policy->governor->owner);
1776
1777 return ret;
1778}
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780int cpufreq_register_governor(struct cpufreq_governor *governor)
1781{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001782 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 if (!governor)
1785 return -EINVAL;
1786
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001787 if (cpufreq_disabled())
1788 return -ENODEV;
1789
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001790 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001791
Viresh Kumarb3940582013-02-01 05:42:58 +00001792 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001793 err = -EBUSY;
1794 if (__find_governor(governor->name) == NULL) {
1795 err = 0;
1796 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Dave Jones32ee8c32006-02-28 00:43:23 -05001799 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001800 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1805{
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001806#ifdef CONFIG_HOTPLUG_CPU
1807 int cpu;
1808#endif
1809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 if (!governor)
1811 return;
1812
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001813 if (cpufreq_disabled())
1814 return;
1815
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001816#ifdef CONFIG_HOTPLUG_CPU
1817 for_each_present_cpu(cpu) {
1818 if (cpu_online(cpu))
1819 continue;
1820 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1821 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1822 }
1823#endif
1824
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001825 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001827 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return;
1829}
1830EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1831
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833/*********************************************************************
1834 * POLICY INTERFACE *
1835 *********************************************************************/
1836
1837/**
1838 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001839 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1840 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 *
1842 * Reads the current cpufreq policy.
1843 */
1844int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1845{
1846 struct cpufreq_policy *cpu_policy;
1847 if (!policy)
1848 return -EINVAL;
1849
1850 cpu_policy = cpufreq_cpu_get(cpu);
1851 if (!cpu_policy)
1852 return -EINVAL;
1853
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301854 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 return 0;
1858}
1859EXPORT_SYMBOL(cpufreq_get_policy);
1860
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001861/*
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301862 * data : current policy.
1863 * policy : policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001864 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301865static int __cpufreq_set_policy(struct cpufreq_policy *policy,
1866 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001868 int ret = 0, failed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301870 pr_debug("setting new policy for CPU %u: %u - %u kHz\n", new_policy->cpu,
1871 new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301873 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301875 if (new_policy->min > policy->max || new_policy->max < policy->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001876 ret = -EINVAL;
1877 goto error_out;
1878 }
1879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301881 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 if (ret)
1883 goto error_out;
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001886 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301887 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001890 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301891 CPUFREQ_INCOMPATIBLE, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Viresh Kumarbb176f72013-06-19 14:19:33 +05301893 /*
1894 * verify the cpu speed can be set within this limit, which might be
1895 * different to the first one
1896 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301897 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08001898 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 /* notification of the new policy */
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_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301905 policy->min = new_policy->min;
1906 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001908 pr_debug("new min and max freqs are %u - %u kHz\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301909 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001911 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301912 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001913 pr_debug("setting range\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301914 ret = cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301916 if (new_policy->governor != policy->governor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 /* save old, working values */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301918 struct cpufreq_governor *old_gov = policy->governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001920 pr_debug("governor switch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 /* end old governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301923 if (policy->governor) {
1924 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1925 unlock_policy_rwsem_write(new_policy->cpu);
1926 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001927 CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301928 lock_policy_rwsem_write(new_policy->cpu);
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
1931 /* start new governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301932 policy->governor = new_policy->governor;
1933 if (!__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT)) {
1934 if (!__cpufreq_governor(policy, CPUFREQ_GOV_START)) {
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001935 failed = 0;
Viresh Kumar955ef482013-05-16 05:09:58 +00001936 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301937 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 Kumar955ef482013-05-16 05:09:58 +00001941 }
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001942 }
1943
1944 if (failed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 /* new governor failed, so re-start old one */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001946 pr_debug("starting governor %s failed\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301947 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 if (old_gov) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301949 policy->governor = old_gov;
1950 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001951 CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301952 __cpufreq_governor(policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301953 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
1955 ret = -EINVAL;
1956 goto error_out;
1957 }
1958 /* might be a policy change, too, so fall through */
1959 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001960 pr_debug("governor: change or update limits\n");
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301961 ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963
Dave Jones7d5e3502006-02-02 17:03:42 -05001964error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 return ret;
1966}
1967
1968/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1970 * @cpu: CPU which shall be re-evaluated
1971 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001972 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 * at different times.
1974 */
1975int cpufreq_update_policy(unsigned int cpu)
1976{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301977 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1978 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02001979 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301981 if (!policy) {
Julia Lawallf1829e42008-07-25 22:44:53 +02001982 ret = -ENODEV;
1983 goto no_policy;
1984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Julia Lawallf1829e42008-07-25 22:44:53 +02001986 if (unlikely(lock_policy_rwsem_write(cpu))) {
1987 ret = -EINVAL;
1988 goto fail;
1989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001991 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301992 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301993 new_policy.min = policy->user_policy.min;
1994 new_policy.max = policy->user_policy.max;
1995 new_policy.policy = policy->user_policy.policy;
1996 new_policy.governor = policy->user_policy.governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Viresh Kumarbb176f72013-06-19 14:19:33 +05301998 /*
1999 * BIOS might change freq behind our back
2000 * -> ask driver for current freq and notify governors about a change
2001 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002002 if (cpufreq_driver->get) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302003 new_policy.cur = cpufreq_driver->get(cpu);
2004 if (!policy->cur) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002005 pr_debug("Driver did not initialize current freq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302006 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002007 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302008 if (policy->cur != new_policy.cur && cpufreq_driver->target)
2009 cpufreq_out_of_sync(cpu, policy->cur,
2010 new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002011 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002012 }
2013
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302014 ret = __cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002016 unlock_policy_rwsem_write(cpu);
2017
Julia Lawallf1829e42008-07-25 22:44:53 +02002018fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302019 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02002020no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return ret;
2022}
2023EXPORT_SYMBOL(cpufreq_update_policy);
2024
Paul Gortmaker27609842013-06-19 13:54:04 -04002025static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002026 unsigned long action, void *hcpu)
2027{
2028 unsigned int cpu = (unsigned long)hcpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002029 struct device *dev;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302030 bool frozen = false;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002031
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002032 dev = get_cpu_device(cpu);
2033 if (dev) {
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302034
2035 if (action & CPU_TASKS_FROZEN)
2036 frozen = true;
2037
2038 switch (action & ~CPU_TASKS_FROZEN) {
Ashok Rajc32b6b82005-10-30 14:59:54 -08002039 case CPU_ONLINE:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302040 __cpufreq_add_dev(dev, NULL, frozen);
Srivatsa S. Bhat23d328992013-07-30 04:23:56 +05302041 cpufreq_update_policy(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002042 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302043
Ashok Rajc32b6b82005-10-30 14:59:54 -08002044 case CPU_DOWN_PREPARE:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302045 __cpufreq_remove_dev_prepare(dev, NULL, frozen);
Srivatsa S. Bhat1aee40a2013-09-07 01:23:27 +05302046 break;
2047
2048 case CPU_POST_DEAD:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302049 __cpufreq_remove_dev_finish(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002050 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302051
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002052 case CPU_DOWN_FAILED:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302053 __cpufreq_add_dev(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002054 break;
2055 }
2056 }
2057 return NOTIFY_OK;
2058}
2059
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002060static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302061 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002062};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063
2064/*********************************************************************
2065 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2066 *********************************************************************/
2067
2068/**
2069 * cpufreq_register_driver - register a CPU Frequency driver
2070 * @driver_data: A struct cpufreq_driver containing the values#
2071 * submitted by the CPU Frequency driver.
2072 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302073 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002075 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 *
2077 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002078int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
2080 unsigned long flags;
2081 int ret;
2082
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002083 if (cpufreq_disabled())
2084 return -ENODEV;
2085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 if (!driver_data || !driver_data->verify || !driver_data->init ||
2087 ((!driver_data->setpolicy) && (!driver_data->target)))
2088 return -EINVAL;
2089
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002090 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
2092 if (driver_data->setpolicy)
2093 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2094
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002095 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002096 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002097 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 return -EBUSY;
2099 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002100 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002101 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002103 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002104 if (ret)
2105 goto err_null_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002107 if (!(cpufreq_driver->flags & CPUFREQ_STICKY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 int i;
2109 ret = -ENODEV;
2110
2111 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07002112 for (i = 0; i < nr_cpu_ids; i++)
2113 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07002115 break;
2116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118 /* if all ->init() calls failed, unregister */
2119 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002120 pr_debug("no CPU initialized for driver %s\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302121 driver_data->name);
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002122 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 }
2124 }
2125
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002126 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002127 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002129 return 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002130err_if_unreg:
2131 subsys_interface_unregister(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002132err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002133 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002134 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002135 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones4d34a672008-02-07 16:33:49 -05002136 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137}
2138EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140/**
2141 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2142 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302143 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 * the right to do so, i.e. if you have succeeded in initialising before!
2145 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2146 * currently not initialised.
2147 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002148int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
2150 unsigned long flags;
2151
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002152 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002155 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002157 subsys_interface_unregister(&cpufreq_interface);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002158 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Viresh Kumar6eed9402013-08-06 22:53:11 +05302160 down_write(&cpufreq_rwsem);
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002161 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302162
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002163 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302164
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002165 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302166 up_write(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 return 0;
2169}
2170EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002171
2172static int __init cpufreq_core_init(void)
2173{
2174 int cpu;
2175
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002176 if (cpufreq_disabled())
2177 return -ENODEV;
2178
Viresh Kumar474deff2013-08-20 12:08:25 +05302179 for_each_possible_cpu(cpu)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002180 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002181
Viresh Kumar2361be22013-05-17 16:09:09 +05302182 cpufreq_global_kobject = kobject_create();
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002183 BUG_ON(!cpufreq_global_kobject);
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01002184 register_syscore_ops(&cpufreq_syscore_ops);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002185
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002186 return 0;
2187}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002188core_initcall(cpufreq_core_init);