blob: 73d53d5a16eee91b94bdc6ca75efae32f13db161 [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:
Viresh Kumar266c13d2013-07-02 16:36:28 +0530283 if (WARN(policy->transition_ongoing ==
284 cpumask_weight(policy->cpus),
Viresh Kumar7c30ed52013-06-19 10:16:55 +0530285 "In middle of another frequency transition\n"))
286 return;
287
Viresh Kumar266c13d2013-07-02 16:36:28 +0530288 policy->transition_ongoing++;
Viresh Kumar7c30ed52013-06-19 10:16:55 +0530289
Dave Jones32ee8c32006-02-28 00:43:23 -0500290 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800291 * which is not equal to what the cpufreq core thinks is
292 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200294 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800295 if ((policy) && (policy->cpu == freqs->cpu) &&
296 (policy->cur) && (policy->cur != freqs->old)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200297 pr_debug("Warning: CPU frequency is"
Dave Jonese4472cb2006-01-31 15:53:55 -0800298 " %u, cpufreq assumed %u kHz.\n",
299 freqs->old, policy->cur);
300 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700303 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800304 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
306 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 case CPUFREQ_POSTCHANGE:
Viresh Kumar7c30ed52013-06-19 10:16:55 +0530309 if (WARN(!policy->transition_ongoing,
310 "No frequency transition in progress\n"))
311 return;
312
Viresh Kumar266c13d2013-07-02 16:36:28 +0530313 policy->transition_ongoing--;
Viresh Kumar7c30ed52013-06-19 10:16:55 +0530314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200316 pr_debug("FREQ: %lu - CPU: %lu", (unsigned long)freqs->new,
Thomas Renninger6f4f2722010-04-20 13:17:36 +0200317 (unsigned long)freqs->cpu);
Thomas Renninger25e41932011-01-03 17:50:44 +0100318 trace_cpu_frequency(freqs->new, freqs->cpu);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700319 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800320 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800321 if (likely(policy) && likely(policy->cpu == freqs->cpu))
322 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 break;
324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
Viresh Kumarbb176f72013-06-19 14:19:33 +0530326
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530327/**
328 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
329 * on frequency transition.
330 *
331 * This function calls the transition notifiers and the "adjust_jiffies"
332 * function. It is called twice on all CPU frequency changes that have
333 * external effects.
334 */
335void cpufreq_notify_transition(struct cpufreq_policy *policy,
336 struct cpufreq_freqs *freqs, unsigned int state)
337{
338 for_each_cpu(freqs->cpu, policy->cpus)
339 __cpufreq_notify_transition(policy, freqs, state);
340}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
342
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/*********************************************************************
345 * SYSFS INTERFACE *
346 *********************************************************************/
347
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700348static struct cpufreq_governor *__find_governor(const char *str_governor)
349{
350 struct cpufreq_governor *t;
351
352 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
Dave Jones29464f22009-01-18 01:37:11 -0500353 if (!strnicmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700354 return t;
355
356 return NULL;
357}
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359/**
360 * cpufreq_parse_governor - parse a governor string
361 */
Dave Jones905d77c2008-03-05 14:28:32 -0500362static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 struct cpufreq_governor **governor)
364{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700365 int err = -EINVAL;
366
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200367 if (!cpufreq_driver)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700368 goto out;
369
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200370 if (cpufreq_driver->setpolicy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
372 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700373 err = 0;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530374 } else if (!strnicmp(str_governor, "powersave",
375 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700377 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200379 } else if (cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700381
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800382 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700383
384 t = __find_governor(str_governor);
385
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700386 if (t == NULL) {
Kees Cook1a8e1462011-05-04 08:38:56 -0700387 int ret;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700388
Kees Cook1a8e1462011-05-04 08:38:56 -0700389 mutex_unlock(&cpufreq_governor_mutex);
390 ret = request_module("cpufreq_%s", str_governor);
391 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700392
Kees Cook1a8e1462011-05-04 08:38:56 -0700393 if (ret == 0)
394 t = __find_governor(str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700395 }
396
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700397 if (t != NULL) {
398 *governor = t;
399 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700401
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800402 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Dave Jones29464f22009-01-18 01:37:11 -0500404out:
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700405 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530409 * cpufreq_per_cpu_attr_read() / show_##file_name() -
410 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *
412 * Write out information from cpufreq_driver->policy[cpu]; object must be
413 * "unsigned int".
414 */
415
Dave Jones32ee8c32006-02-28 00:43:23 -0500416#define show_one(file_name, object) \
417static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500418(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500419{ \
Dave Jones29464f22009-01-18 01:37:11 -0500420 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423show_one(cpuinfo_min_freq, cpuinfo.min_freq);
424show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100425show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426show_one(scaling_min_freq, min);
427show_one(scaling_max_freq, max);
428show_one(scaling_cur_freq, cur);
429
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530430static int __cpufreq_set_policy(struct cpufreq_policy *policy,
431 struct cpufreq_policy *new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/**
434 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
435 */
436#define store_one(file_name, object) \
437static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500438(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{ \
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530440 int ret; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 struct cpufreq_policy new_policy; \
442 \
443 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
444 if (ret) \
445 return -EINVAL; \
446 \
Dave Jones29464f22009-01-18 01:37:11 -0500447 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (ret != 1) \
449 return -EINVAL; \
450 \
Thomas Renninger7970e082006-04-13 15:14:04 +0200451 ret = __cpufreq_set_policy(policy, &new_policy); \
452 policy->user_policy.object = policy->object; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 \
454 return ret ? ret : count; \
455}
456
Dave Jones29464f22009-01-18 01:37:11 -0500457store_one(scaling_min_freq, min);
458store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460/**
461 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
462 */
Dave Jones905d77c2008-03-05 14:28:32 -0500463static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
464 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800466 unsigned int cur_freq = __cpufreq_get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (!cur_freq)
468 return sprintf(buf, "<unknown>");
469 return sprintf(buf, "%u\n", cur_freq);
470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472/**
473 * show_scaling_governor - show the current policy for the specified CPU
474 */
Dave Jones905d77c2008-03-05 14:28:32 -0500475static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
Dave Jones29464f22009-01-18 01:37:11 -0500477 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return sprintf(buf, "powersave\n");
479 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
480 return sprintf(buf, "performance\n");
481 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200482 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500483 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return -EINVAL;
485}
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/**
488 * store_scaling_governor - store policy for the specified CPU
489 */
Dave Jones905d77c2008-03-05 14:28:32 -0500490static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
491 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530493 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 char str_governor[16];
495 struct cpufreq_policy new_policy;
496
497 ret = cpufreq_get_policy(&new_policy, policy->cpu);
498 if (ret)
499 return ret;
500
Dave Jones29464f22009-01-18 01:37:11 -0500501 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (ret != 1)
503 return -EINVAL;
504
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530505 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
506 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return -EINVAL;
508
Viresh Kumarbb176f72013-06-19 14:19:33 +0530509 /*
510 * Do not use cpufreq_set_policy here or the user_policy.max
511 * will be wrongly overridden
512 */
Thomas Renninger7970e082006-04-13 15:14:04 +0200513 ret = __cpufreq_set_policy(policy, &new_policy);
514
515 policy->user_policy.policy = policy->policy;
516 policy->user_policy.governor = policy->governor;
Thomas Renninger7970e082006-04-13 15:14:04 +0200517
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530518 if (ret)
519 return ret;
520 else
521 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524/**
525 * show_scaling_driver - show the cpufreq driver currently loaded
526 */
Dave Jones905d77c2008-03-05 14:28:32 -0500527static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200529 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532/**
533 * show_scaling_available_governors - show the available CPUfreq governors
534 */
Dave Jones905d77c2008-03-05 14:28:32 -0500535static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
536 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 ssize_t i = 0;
539 struct cpufreq_governor *t;
540
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200541 if (!cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 i += sprintf(buf, "performance powersave");
543 goto out;
544 }
545
546 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
Dave Jones29464f22009-01-18 01:37:11 -0500547 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
548 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200550 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500552out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 i += sprintf(&buf[i], "\n");
554 return i;
555}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700556
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800557ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
559 ssize_t i = 0;
560 unsigned int cpu;
561
Rusty Russell835481d2009-01-04 05:18:06 -0800562 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (i)
564 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
565 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
566 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500567 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
569 i += sprintf(&buf[i], "\n");
570 return i;
571}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800572EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700574/**
575 * show_related_cpus - show the CPUs affected by each transition even if
576 * hw coordination is in use
577 */
578static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
579{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800580 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700581}
582
583/**
584 * show_affected_cpus - show the CPUs affected by each transition
585 */
586static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
587{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800588 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700589}
590
Venki Pallipadi9e769882007-10-26 10:18:21 -0700591static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500592 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700593{
594 unsigned int freq = 0;
595 unsigned int ret;
596
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700597 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700598 return -EINVAL;
599
600 ret = sscanf(buf, "%u", &freq);
601 if (ret != 1)
602 return -EINVAL;
603
604 policy->governor->store_setspeed(policy, freq);
605
606 return count;
607}
608
609static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
610{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700611 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700612 return sprintf(buf, "<unsupported>\n");
613
614 return policy->governor->show_setspeed(policy, buf);
615}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Thomas Renningere2f74f32009-11-19 12:31:01 +0100617/**
viresh kumar8bf1ac722012-10-23 01:23:33 +0200618 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100619 */
620static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
621{
622 unsigned int limit;
623 int ret;
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200624 if (cpufreq_driver->bios_limit) {
625 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100626 if (!ret)
627 return sprintf(buf, "%u\n", limit);
628 }
629 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
630}
631
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200632cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
633cpufreq_freq_attr_ro(cpuinfo_min_freq);
634cpufreq_freq_attr_ro(cpuinfo_max_freq);
635cpufreq_freq_attr_ro(cpuinfo_transition_latency);
636cpufreq_freq_attr_ro(scaling_available_governors);
637cpufreq_freq_attr_ro(scaling_driver);
638cpufreq_freq_attr_ro(scaling_cur_freq);
639cpufreq_freq_attr_ro(bios_limit);
640cpufreq_freq_attr_ro(related_cpus);
641cpufreq_freq_attr_ro(affected_cpus);
642cpufreq_freq_attr_rw(scaling_min_freq);
643cpufreq_freq_attr_rw(scaling_max_freq);
644cpufreq_freq_attr_rw(scaling_governor);
645cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Dave Jones905d77c2008-03-05 14:28:32 -0500647static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 &cpuinfo_min_freq.attr,
649 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100650 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 &scaling_min_freq.attr,
652 &scaling_max_freq.attr,
653 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700654 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 &scaling_governor.attr,
656 &scaling_driver.attr,
657 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700658 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 NULL
660};
661
Dave Jones29464f22009-01-18 01:37:11 -0500662#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
663#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Dave Jones29464f22009-01-18 01:37:11 -0500665static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Dave Jones905d77c2008-03-05 14:28:32 -0500667 struct cpufreq_policy *policy = to_policy(kobj);
668 struct freq_attr *fattr = to_attr(attr);
Dave Jones0db4a8a2008-03-05 14:20:57 -0500669 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530670
671 if (!down_read_trylock(&cpufreq_rwsem))
672 goto exit;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800673
674 if (lock_policy_rwsem_read(policy->cpu) < 0)
Viresh Kumar6eed9402013-08-06 22:53:11 +0530675 goto up_read;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800676
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530677 if (fattr->show)
678 ret = fattr->show(policy, buf);
679 else
680 ret = -EIO;
681
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800682 unlock_policy_rwsem_read(policy->cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530683
684up_read:
685 up_read(&cpufreq_rwsem);
686exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return ret;
688}
689
Dave Jones905d77c2008-03-05 14:28:32 -0500690static ssize_t store(struct kobject *kobj, struct attribute *attr,
691 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Dave Jones905d77c2008-03-05 14:28:32 -0500693 struct cpufreq_policy *policy = to_policy(kobj);
694 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500695 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530696
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530697 get_online_cpus();
698
699 if (!cpu_online(policy->cpu))
700 goto unlock;
701
Viresh Kumar6eed9402013-08-06 22:53:11 +0530702 if (!down_read_trylock(&cpufreq_rwsem))
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530703 goto unlock;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800704
705 if (lock_policy_rwsem_write(policy->cpu) < 0)
Viresh Kumar6eed9402013-08-06 22:53:11 +0530706 goto up_read;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800707
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530708 if (fattr->store)
709 ret = fattr->store(policy, buf, count);
710 else
711 ret = -EIO;
712
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800713 unlock_policy_rwsem_write(policy->cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530714
715up_read:
716 up_read(&cpufreq_rwsem);
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530717unlock:
718 put_online_cpus();
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return ret;
721}
722
Dave Jones905d77c2008-03-05 14:28:32 -0500723static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Dave Jones905d77c2008-03-05 14:28:32 -0500725 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200726 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 complete(&policy->kobj_unregister);
728}
729
Emese Revfy52cf25d2010-01-19 02:58:23 +0100730static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 .show = show,
732 .store = store,
733};
734
735static struct kobj_type ktype_cpufreq = {
736 .sysfs_ops = &sysfs_ops,
737 .default_attrs = default_attrs,
738 .release = cpufreq_sysfs_release,
739};
740
Viresh Kumar2361be22013-05-17 16:09:09 +0530741struct kobject *cpufreq_global_kobject;
742EXPORT_SYMBOL(cpufreq_global_kobject);
743
744static int cpufreq_global_kobject_usage;
745
746int cpufreq_get_global_kobject(void)
747{
748 if (!cpufreq_global_kobject_usage++)
749 return kobject_add(cpufreq_global_kobject,
750 &cpu_subsys.dev_root->kobj, "%s", "cpufreq");
751
752 return 0;
753}
754EXPORT_SYMBOL(cpufreq_get_global_kobject);
755
756void cpufreq_put_global_kobject(void)
757{
758 if (!--cpufreq_global_kobject_usage)
759 kobject_del(cpufreq_global_kobject);
760}
761EXPORT_SYMBOL(cpufreq_put_global_kobject);
762
763int cpufreq_sysfs_create_file(const struct attribute *attr)
764{
765 int ret = cpufreq_get_global_kobject();
766
767 if (!ret) {
768 ret = sysfs_create_file(cpufreq_global_kobject, attr);
769 if (ret)
770 cpufreq_put_global_kobject();
771 }
772
773 return ret;
774}
775EXPORT_SYMBOL(cpufreq_sysfs_create_file);
776
777void cpufreq_sysfs_remove_file(const struct attribute *attr)
778{
779 sysfs_remove_file(cpufreq_global_kobject, attr);
780 cpufreq_put_global_kobject();
781}
782EXPORT_SYMBOL(cpufreq_sysfs_remove_file);
783
Dave Jones19d6f7e2009-07-08 17:35:39 -0400784/* symlink affected CPUs */
Viresh Kumar308b60e2013-07-31 14:35:14 +0200785static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400786{
787 unsigned int j;
788 int ret = 0;
789
790 for_each_cpu(j, policy->cpus) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800791 struct device *cpu_dev;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400792
Viresh Kumar308b60e2013-07-31 14:35:14 +0200793 if (j == policy->cpu)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400794 continue;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400795
Viresh Kumare8fdde12013-07-31 14:31:33 +0200796 pr_debug("Adding link for CPU: %u\n", j);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800797 cpu_dev = get_cpu_device(j);
798 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Dave Jones19d6f7e2009-07-08 17:35:39 -0400799 "cpufreq");
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200800 if (ret)
801 break;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400802 }
803 return ret;
804}
805
Viresh Kumar308b60e2013-07-31 14:35:14 +0200806static int cpufreq_add_dev_interface(struct cpufreq_policy *policy,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800807 struct device *dev)
Dave Jones909a6942009-07-08 18:05:42 -0400808{
809 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -0400810 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -0400811
812 /* prepare interface data */
813 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800814 &dev->kobj, "cpufreq");
Dave Jones909a6942009-07-08 18:05:42 -0400815 if (ret)
816 return ret;
817
818 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200819 drv_attr = cpufreq_driver->attr;
Dave Jones909a6942009-07-08 18:05:42 -0400820 while ((drv_attr) && (*drv_attr)) {
821 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
822 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200823 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400824 drv_attr++;
825 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200826 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -0400827 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
828 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200829 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400830 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200831 if (cpufreq_driver->target) {
Dave Jones909a6942009-07-08 18:05:42 -0400832 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
833 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200834 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400835 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200836 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100837 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
838 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200839 goto err_out_kobj_put;
Thomas Renningere2f74f32009-11-19 12:31:01 +0100840 }
Dave Jones909a6942009-07-08 18:05:42 -0400841
Viresh Kumar308b60e2013-07-31 14:35:14 +0200842 ret = cpufreq_add_dev_symlink(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400843 if (ret)
844 goto err_out_kobj_put;
845
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530846 return ret;
847
848err_out_kobj_put:
849 kobject_put(&policy->kobj);
850 wait_for_completion(&policy->kobj_unregister);
851 return ret;
852}
853
854static void cpufreq_init_policy(struct cpufreq_policy *policy)
855{
856 struct cpufreq_policy new_policy;
857 int ret = 0;
858
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530859 memcpy(&new_policy, policy, sizeof(*policy));
Dave Jonesecf7e462009-07-08 18:48:47 -0400860 /* assure that the starting sequence is run in __cpufreq_set_policy */
861 policy->governor = NULL;
862
863 /* set default policy */
864 ret = __cpufreq_set_policy(policy, &new_policy);
865 policy->user_policy.policy = policy->policy;
866 policy->user_policy.governor = policy->governor;
867
868 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200869 pr_debug("setting policy failed\n");
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200870 if (cpufreq_driver->exit)
871 cpufreq_driver->exit(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400872 }
Dave Jones909a6942009-07-08 18:05:42 -0400873}
874
Viresh Kumarfcf80582013-01-29 14:39:08 +0000875#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumard8d3b472013-08-04 01:20:07 +0200876static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy,
877 unsigned int cpu, struct device *dev,
878 bool frozen)
Viresh Kumarfcf80582013-01-29 14:39:08 +0000879{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200880 int ret = 0, has_target = !!cpufreq_driver->target;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000881 unsigned long flags;
882
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530883 if (has_target) {
884 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
885 if (ret) {
886 pr_err("%s: Failed to stop governor\n", __func__);
887 return ret;
888 }
889 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000890
Viresh Kumard8d3b472013-08-04 01:20:07 +0200891 lock_policy_rwsem_write(policy->cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530892
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000893 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530894
Viresh Kumarfcf80582013-01-29 14:39:08 +0000895 cpumask_set_cpu(cpu, policy->cpus);
896 per_cpu(cpufreq_cpu_data, cpu) = policy;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000897 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +0000898
Viresh Kumard8d3b472013-08-04 01:20:07 +0200899 unlock_policy_rwsem_write(policy->cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530900
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200901 if (has_target) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530902 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
903 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
904 pr_err("%s: Failed to start governor\n", __func__);
905 return ret;
906 }
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200907 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000908
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530909 /* Don't touch sysfs links during light-weight init */
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200910 if (!frozen)
911 ret = sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq");
Viresh Kumarfcf80582013-01-29 14:39:08 +0000912
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530913 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000914}
915#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530917static struct cpufreq_policy *cpufreq_policy_restore(unsigned int cpu)
918{
919 struct cpufreq_policy *policy;
920 unsigned long flags;
921
922 write_lock_irqsave(&cpufreq_driver_lock, flags);
923
924 policy = per_cpu(cpufreq_cpu_data_fallback, cpu);
925
926 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
927
928 return policy;
929}
930
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530931static struct cpufreq_policy *cpufreq_policy_alloc(void)
932{
933 struct cpufreq_policy *policy;
934
935 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
936 if (!policy)
937 return NULL;
938
939 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
940 goto err_free_policy;
941
942 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
943 goto err_free_cpumask;
944
Lukasz Majewskic88a1f82013-08-06 22:53:08 +0530945 INIT_LIST_HEAD(&policy->policy_list);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530946 return policy;
947
948err_free_cpumask:
949 free_cpumask_var(policy->cpus);
950err_free_policy:
951 kfree(policy);
952
953 return NULL;
954}
955
956static void cpufreq_policy_free(struct cpufreq_policy *policy)
957{
958 free_cpumask_var(policy->related_cpus);
959 free_cpumask_var(policy->cpus);
960 kfree(policy);
961}
962
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530963static int __cpufreq_add_dev(struct device *dev, struct subsys_interface *sif,
964 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Viresh Kumarfcf80582013-01-29 14:39:08 +0000966 unsigned int j, cpu = dev->id;
Viresh Kumar65922462013-02-07 10:56:03 +0530967 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500970#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumar1b274292013-08-20 12:08:26 +0530971 struct cpufreq_policy *tpolicy;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000972 struct cpufreq_governor *gov;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500973#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Ashok Rajc32b6b82005-10-30 14:59:54 -0800975 if (cpu_is_offline(cpu))
976 return 0;
977
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200978 pr_debug("adding CPU %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980#ifdef CONFIG_SMP
981 /* check whether a different CPU already registered this
982 * CPU because it is in the same boat. */
983 policy = cpufreq_cpu_get(cpu);
984 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500985 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 return 0;
987 }
Li Zhong5025d622013-08-21 01:31:08 +0200988#endif
Viresh Kumarfcf80582013-01-29 14:39:08 +0000989
Viresh Kumar6eed9402013-08-06 22:53:11 +0530990 if (!down_read_trylock(&cpufreq_rwsem))
991 return 0;
992
Viresh Kumarfcf80582013-01-29 14:39:08 +0000993#ifdef CONFIG_HOTPLUG_CPU
994 /* Check if this cpu was hot-unplugged earlier and has siblings */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000995 read_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +0530996 list_for_each_entry(tpolicy, &cpufreq_policy_list, policy_list) {
997 if (cpumask_test_cpu(cpu, tpolicy->related_cpus)) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000998 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +0530999 ret = cpufreq_add_policy_cpu(tpolicy, cpu, dev, frozen);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301000 up_read(&cpufreq_rwsem);
1001 return ret;
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301002 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001003 }
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001004 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001005#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301007 if (frozen)
1008 /* Restore the saved policy when doing light-weight init */
1009 policy = cpufreq_policy_restore(cpu);
1010 else
1011 policy = cpufreq_policy_alloc();
1012
Dave Jones059019a2009-07-08 16:30:03 -04001013 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -04001015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 policy->cpu = cpu;
Viresh Kumar65922462013-02-07 10:56:03 +05301017 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Rusty Russell835481d2009-01-04 05:18:06 -08001018 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001021 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 /* call driver. From then on the cpufreq must be able
1024 * to accept all calls to ->verify and ->setpolicy for this CPU
1025 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001026 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001028 pr_debug("initialization failed\n");
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301029 goto err_set_policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001031
Viresh Kumarfcf80582013-01-29 14:39:08 +00001032 /* related cpus should atleast have policy->cpus */
1033 cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
1034
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001035 /*
1036 * affected cpus must always be the one, which are online. We aren't
1037 * managing offline cpus here.
1038 */
1039 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1040
Mike Chan187d9f42008-12-04 12:19:17 -08001041 policy->user_policy.min = policy->min;
1042 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Thomas Renningera1531ac2008-07-29 22:32:58 -07001044 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1045 CPUFREQ_START, policy);
1046
Viresh Kumarfcf80582013-01-29 14:39:08 +00001047#ifdef CONFIG_HOTPLUG_CPU
1048 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
1049 if (gov) {
1050 policy->governor = gov;
1051 pr_debug("Restoring governor %s for cpu %d\n",
1052 policy->governor->name, cpu);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001053 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001054#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301056 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301057 for_each_cpu(j, policy->cpus)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301058 per_cpu(cpufreq_cpu_data, j) = policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301059 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1060
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301061 if (!frozen) {
Viresh Kumar308b60e2013-07-31 14:35:14 +02001062 ret = cpufreq_add_dev_interface(policy, dev);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301063 if (ret)
1064 goto err_out_unregister;
1065 }
Dave Jones8ff69732006-03-05 03:37:23 -05001066
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301067 write_lock_irqsave(&cpufreq_driver_lock, flags);
1068 list_add(&policy->policy_list, &cpufreq_policy_list);
1069 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1070
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301071 cpufreq_init_policy(policy);
1072
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001073 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301074 up_read(&cpufreq_rwsem);
1075
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001076 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return 0;
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080err_out_unregister:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001081 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301082 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001083 per_cpu(cpufreq_cpu_data, j) = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001084 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301086err_set_policy_cpu:
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301087 cpufreq_policy_free(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088nomem_out:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301089 up_read(&cpufreq_rwsem);
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return ret;
1092}
1093
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301094/**
1095 * cpufreq_add_dev - add a CPU device
1096 *
1097 * Adds the cpufreq interface for a CPU device.
1098 *
1099 * The Oracle says: try running cpufreq registration/unregistration concurrently
1100 * with with cpu hotplugging and all hell will break loose. Tried to clean this
1101 * mess up, but more thorough testing is needed. - Mathieu
1102 */
1103static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1104{
1105 return __cpufreq_add_dev(dev, sif, false);
1106}
1107
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001108static void update_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
1109{
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001110 policy->last_cpu = policy->cpu;
1111 policy->cpu = cpu;
1112
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001113#ifdef CONFIG_CPU_FREQ_TABLE
1114 cpufreq_frequency_table_update_policy_cpu(policy);
1115#endif
1116 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1117 CPUFREQ_UPDATE_POLICY_CPU, policy);
1118}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301120static int cpufreq_nominate_new_policy_cpu(struct cpufreq_policy *policy,
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301121 unsigned int old_cpu, bool frozen)
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301122{
1123 struct device *cpu_dev;
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301124 int ret;
1125
1126 /* first sibling now owns the new sysfs dir */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301127 cpu_dev = get_cpu_device(cpumask_first(policy->cpus));
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301128
1129 /* Don't touch sysfs files during light-weight tear-down */
1130 if (frozen)
1131 return cpu_dev->id;
1132
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301133 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301134 ret = kobject_move(&policy->kobj, &cpu_dev->kobj);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301135 if (ret) {
1136 pr_err("%s: Failed to move kobj: %d", __func__, ret);
1137
1138 WARN_ON(lock_policy_rwsem_write(old_cpu));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301139 cpumask_set_cpu(old_cpu, policy->cpus);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301140 unlock_policy_rwsem_write(old_cpu);
1141
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301142 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301143 "cpufreq");
1144
1145 return -EINVAL;
1146 }
1147
1148 return cpu_dev->id;
1149}
1150
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301151static int __cpufreq_remove_dev_prepare(struct device *dev,
1152 struct subsys_interface *sif,
1153 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301155 unsigned int cpu = dev->id, cpus;
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301156 int new_cpu, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 unsigned long flags;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301158 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001160 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001162 write_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301164 policy = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301166 /* Save the policy somewhere when doing a light-weight tear-down */
1167 if (frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301168 per_cpu(cpufreq_cpu_data_fallback, cpu) = policy;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301169
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001170 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301172 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001173 pr_debug("%s: No cpu_data found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301177 if (cpufreq_driver->target) {
1178 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1179 if (ret) {
1180 pr_err("%s: Failed to stop governor\n", __func__);
1181 return ret;
1182 }
1183 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001184
Jacob Shin27ecddc2011-04-27 13:32:11 -05001185#ifdef CONFIG_HOTPLUG_CPU
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001186 if (!cpufreq_driver->setpolicy)
Dirk Brandewiefa69e332013-02-06 09:02:11 -08001187 strncpy(per_cpu(cpufreq_cpu_governor, cpu),
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301188 policy->governor->name, CPUFREQ_NAME_LEN);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001189#endif
1190
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301191 WARN_ON(lock_policy_rwsem_write(cpu));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301192 cpus = cpumask_weight(policy->cpus);
Viresh Kumare4969eb2013-04-11 08:04:53 +00001193
1194 if (cpus > 1)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301195 cpumask_clear_cpu(cpu, policy->cpus);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301196 unlock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301198 if (cpu != policy->cpu && !frozen) {
Viresh Kumar73bf0fc2013-02-05 22:21:14 +01001199 sysfs_remove_link(&dev->kobj, "cpufreq");
1200 } else if (cpus > 1) {
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301201
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301202 new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu, frozen);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301203 if (new_cpu >= 0) {
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301204 WARN_ON(lock_policy_rwsem_write(cpu));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301205 update_policy_cpu(policy, new_cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301206 unlock_policy_rwsem_write(cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301207
1208 if (!frozen) {
1209 pr_debug("%s: policy Kobject moved to cpu: %d "
1210 "from: %d\n",__func__, new_cpu, cpu);
1211 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001212 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001213 }
Venki Pallipadiec282972007-03-26 12:03:19 -07001214
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301215 return 0;
1216}
1217
1218static int __cpufreq_remove_dev_finish(struct device *dev,
1219 struct subsys_interface *sif,
1220 bool frozen)
1221{
1222 unsigned int cpu = dev->id, cpus;
1223 int ret;
1224 unsigned long flags;
1225 struct cpufreq_policy *policy;
1226 struct kobject *kobj;
1227 struct completion *cmp;
1228
1229 read_lock_irqsave(&cpufreq_driver_lock, flags);
1230 policy = per_cpu(cpufreq_cpu_data, cpu);
1231 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1232
1233 if (!policy) {
1234 pr_debug("%s: No cpu_data found\n", __func__);
1235 return -EINVAL;
1236 }
1237
1238 lock_policy_rwsem_read(cpu);
1239 cpus = cpumask_weight(policy->cpus);
1240 unlock_policy_rwsem_read(cpu);
1241
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001242 /* If cpu is last user of policy, free policy */
1243 if (cpus == 1) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301244 if (cpufreq_driver->target) {
1245 ret = __cpufreq_governor(policy,
1246 CPUFREQ_GOV_POLICY_EXIT);
1247 if (ret) {
1248 pr_err("%s: Failed to exit governor\n",
1249 __func__);
1250 return ret;
1251 }
Viresh Kumaredab2fb2013-08-20 12:08:22 +05301252 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001253
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301254 if (!frozen) {
1255 lock_policy_rwsem_read(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301256 kobj = &policy->kobj;
1257 cmp = &policy->kobj_unregister;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301258 unlock_policy_rwsem_read(cpu);
1259 kobject_put(kobj);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001260
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301261 /*
1262 * We need to make sure that the underlying kobj is
1263 * actually not referenced anymore by anybody before we
1264 * proceed with unloading.
1265 */
1266 pr_debug("waiting for dropping of refcount\n");
1267 wait_for_completion(cmp);
1268 pr_debug("wait complete\n");
1269 }
1270
1271 /*
1272 * Perform the ->exit() even during light-weight tear-down,
1273 * since this is a core component, and is essential for the
1274 * subsequent light-weight ->init() to succeed.
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001275 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001276 if (cpufreq_driver->exit)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301277 cpufreq_driver->exit(policy);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001278
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301279 /* Remove policy from list of active policies */
1280 write_lock_irqsave(&cpufreq_driver_lock, flags);
1281 list_del(&policy->policy_list);
1282 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1283
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301284 if (!frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301285 cpufreq_policy_free(policy);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001286 } else {
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001287 if (cpufreq_driver->target) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301288 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
1289 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
1290 pr_err("%s: Failed to start governor\n",
1291 __func__);
1292 return ret;
1293 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001294 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Viresh Kumar474deff2013-08-20 12:08:25 +05301297 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return 0;
1299}
1300
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301301/**
1302 * __cpufreq_remove_dev - remove a CPU device
1303 *
1304 * Removes the cpufreq interface for a CPU device.
1305 * Caller should already have policy_rwsem in write mode for this CPU.
1306 * This routine frees the rwsem before returning.
1307 */
1308static inline int __cpufreq_remove_dev(struct device *dev,
1309 struct subsys_interface *sif,
1310 bool frozen)
1311{
1312 int ret;
1313
1314 ret = __cpufreq_remove_dev_prepare(dev, sif, frozen);
1315
1316 if (!ret)
1317 ret = __cpufreq_remove_dev_finish(dev, sif, frozen);
1318
1319 return ret;
1320}
1321
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001322static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001323{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001324 unsigned int cpu = dev->id;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001325 int retval;
Venki Pallipadiec282972007-03-26 12:03:19 -07001326
1327 if (cpu_is_offline(cpu))
1328 return 0;
1329
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301330 retval = __cpufreq_remove_dev(dev, sif, false);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001331 return retval;
1332}
1333
David Howells65f27f32006-11-22 14:55:48 +00001334static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335{
David Howells65f27f32006-11-22 14:55:48 +00001336 struct cpufreq_policy *policy =
1337 container_of(work, struct cpufreq_policy, update);
1338 unsigned int cpu = policy->cpu;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001339 pr_debug("handle_update for cpu %u called\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 cpufreq_update_policy(cpu);
1341}
1342
1343/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301344 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1345 * in deep trouble.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 * @cpu: cpu number
1347 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1348 * @new_freq: CPU frequency the CPU actually runs at
1349 *
Dave Jones29464f22009-01-18 01:37:11 -05001350 * We adjust to current frequency first, and need to clean up later.
1351 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301353static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1354 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301356 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301358 unsigned long flags;
1359
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001360 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 freqs.old = old_freq;
1364 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301365
1366 read_lock_irqsave(&cpufreq_driver_lock, flags);
1367 policy = per_cpu(cpufreq_cpu_data, cpu);
1368 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1369
1370 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1371 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
Dave Jones32ee8c32006-02-28 00:43:23 -05001374/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301375 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001376 * @cpu: CPU number
1377 *
1378 * This is the last known freq, without actually getting it from the driver.
1379 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1380 */
1381unsigned int cpufreq_quick_get(unsigned int cpu)
1382{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001383 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301384 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001385
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001386 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1387 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001388
1389 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001390 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301391 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001392 cpufreq_cpu_put(policy);
1393 }
1394
Dave Jones4d34a672008-02-07 16:33:49 -05001395 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001396}
1397EXPORT_SYMBOL(cpufreq_quick_get);
1398
Jesse Barnes3d737102011-06-28 10:59:12 -07001399/**
1400 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1401 * @cpu: CPU number
1402 *
1403 * Just return the max possible frequency for a given CPU.
1404 */
1405unsigned int cpufreq_quick_get_max(unsigned int cpu)
1406{
1407 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1408 unsigned int ret_freq = 0;
1409
1410 if (policy) {
1411 ret_freq = policy->max;
1412 cpufreq_cpu_put(policy);
1413 }
1414
1415 return ret_freq;
1416}
1417EXPORT_SYMBOL(cpufreq_quick_get_max);
1418
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001419static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001421 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301422 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001424 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001425 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001427 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301429 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001430 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301431 /* verify no discrepancy between actual and
1432 saved value exists */
1433 if (unlikely(ret_freq != policy->cur)) {
1434 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 schedule_work(&policy->update);
1436 }
1437 }
1438
Dave Jones4d34a672008-02-07 16:33:49 -05001439 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001440}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001442/**
1443 * cpufreq_get - get the current CPU frequency (in kHz)
1444 * @cpu: CPU number
1445 *
1446 * Get the CPU current (static) CPU frequency
1447 */
1448unsigned int cpufreq_get(unsigned int cpu)
1449{
1450 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001451
Viresh Kumar6eed9402013-08-06 22:53:11 +05301452 if (!down_read_trylock(&cpufreq_rwsem))
1453 return 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001454
1455 if (unlikely(lock_policy_rwsem_read(cpu)))
1456 goto out_policy;
1457
1458 ret_freq = __cpufreq_get(cpu);
1459
1460 unlock_policy_rwsem_read(cpu);
1461
1462out_policy:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301463 up_read(&cpufreq_rwsem);
1464
Dave Jones4d34a672008-02-07 16:33:49 -05001465 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467EXPORT_SYMBOL(cpufreq_get);
1468
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001469static struct subsys_interface cpufreq_interface = {
1470 .name = "cpufreq",
1471 .subsys = &cpu_subsys,
1472 .add_dev = cpufreq_add_dev,
1473 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001474};
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001477 * cpufreq_bp_suspend - Prepare the boot CPU for system suspend.
1478 *
1479 * This function is only executed for the boot processor. The other CPUs
1480 * have been put offline by means of CPU hotplug.
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001481 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001482static int cpufreq_bp_suspend(void)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001483{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301484 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001485
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001486 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301487 struct cpufreq_policy *policy;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001488
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001489 pr_debug("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001490
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001491 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301492 policy = cpufreq_cpu_get(cpu);
1493 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001494 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001495
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001496 if (cpufreq_driver->suspend) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301497 ret = cpufreq_driver->suspend(policy);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001498 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001499 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301500 "step on CPU %u\n", policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001501 }
1502
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301503 cpufreq_cpu_put(policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001504 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001505}
1506
1507/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001508 * cpufreq_bp_resume - Restore proper frequency handling of the boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 *
1510 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001511 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1512 * restored. It will verify that the current freq is in sync with
1513 * what we believe it to be. This is a bit later than when it
1514 * should be, but nonethteless it's better than calling
1515 * cpufreq_driver->get() here which might re-enable interrupts...
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001516 *
1517 * This function is only executed for the boot CPU. The other CPUs have not
1518 * been turned on yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001520static void cpufreq_bp_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301522 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001523
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001524 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301525 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001527 pr_debug("resuming cpu %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001529 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301530 policy = cpufreq_cpu_get(cpu);
1531 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001532 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001534 if (cpufreq_driver->resume) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301535 ret = cpufreq_driver->resume(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 if (ret) {
1537 printk(KERN_ERR "cpufreq: resume failed in ->resume "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301538 "step on CPU %u\n", policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001539 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
1541 }
1542
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301543 schedule_work(&policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001544
Dave Jonesc9060492008-02-07 16:32:18 -05001545fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301546 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547}
1548
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001549static struct syscore_ops cpufreq_syscore_ops = {
1550 .suspend = cpufreq_bp_suspend,
1551 .resume = cpufreq_bp_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552};
1553
Borislav Petkov9d950462013-01-20 10:24:28 +00001554/**
1555 * cpufreq_get_current_driver - return current driver's name
1556 *
1557 * Return the name string of the currently loaded cpufreq driver
1558 * or NULL, if none.
1559 */
1560const char *cpufreq_get_current_driver(void)
1561{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001562 if (cpufreq_driver)
1563 return cpufreq_driver->name;
1564
1565 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001566}
1567EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569/*********************************************************************
1570 * NOTIFIER LISTS INTERFACE *
1571 *********************************************************************/
1572
1573/**
1574 * cpufreq_register_notifier - register a driver with cpufreq
1575 * @nb: notifier function to register
1576 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1577 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001578 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 * are notified about clock rate changes (once before and once after
1580 * the transition), or a list of drivers that are notified about
1581 * changes in cpufreq policy.
1582 *
1583 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001584 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 */
1586int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1587{
1588 int ret;
1589
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001590 if (cpufreq_disabled())
1591 return -EINVAL;
1592
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001593 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 switch (list) {
1596 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001597 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001598 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 break;
1600 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001601 ret = blocking_notifier_chain_register(
1602 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604 default:
1605 ret = -EINVAL;
1606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607
1608 return ret;
1609}
1610EXPORT_SYMBOL(cpufreq_register_notifier);
1611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612/**
1613 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1614 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301615 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 *
1617 * Remove a driver from the CPU frequency notifier list.
1618 *
1619 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001620 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 */
1622int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1623{
1624 int ret;
1625
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001626 if (cpufreq_disabled())
1627 return -EINVAL;
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 switch (list) {
1630 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001631 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001632 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 break;
1634 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001635 ret = blocking_notifier_chain_unregister(
1636 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 break;
1638 default:
1639 ret = -EINVAL;
1640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
1642 return ret;
1643}
1644EXPORT_SYMBOL(cpufreq_unregister_notifier);
1645
1646
1647/*********************************************************************
1648 * GOVERNORS *
1649 *********************************************************************/
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651int __cpufreq_driver_target(struct cpufreq_policy *policy,
1652 unsigned int target_freq,
1653 unsigned int relation)
1654{
1655 int retval = -EINVAL;
Viresh Kumar72499242012-10-31 01:28:21 +01001656 unsigned int old_target_freq = target_freq;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001657
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001658 if (cpufreq_disabled())
1659 return -ENODEV;
Viresh Kumar7c30ed52013-06-19 10:16:55 +05301660 if (policy->transition_ongoing)
1661 return -EBUSY;
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001662
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);