blob: ec391d7f010b531a2fe378df96a88780b5c5faf2 [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 Kumar1b750e32013-10-02 14:13:09 +053070static void 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
77lock_policy_rwsem(read, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080078lock_policy_rwsem(write, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080079
Viresh Kumarfa1d8af2013-02-07 15:38:42 +053080#define unlock_policy_rwsem(mode, cpu) \
81static void unlock_policy_rwsem_##mode(int cpu) \
82{ \
Viresh Kumar474deff2013-08-20 12:08:25 +053083 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu); \
84 BUG_ON(!policy); \
85 up_##mode(&per_cpu(cpu_policy_rwsem, policy->cpu)); \
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080086}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080087
Viresh Kumarfa1d8af2013-02-07 15:38:42 +053088unlock_policy_rwsem(read, cpu);
89unlock_policy_rwsem(write, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080090
Viresh Kumar6eed9402013-08-06 22:53:11 +053091/*
92 * rwsem to guarantee that cpufreq driver module doesn't unload during critical
93 * sections
94 */
95static DECLARE_RWSEM(cpufreq_rwsem);
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/* internal prototypes */
Dave Jones29464f22009-01-18 01:37:11 -050098static int __cpufreq_governor(struct cpufreq_policy *policy,
99 unsigned int event);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800100static unsigned int __cpufreq_get(unsigned int cpu);
David Howells65f27f32006-11-22 14:55:48 +0000101static void handle_update(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/**
Dave Jones32ee8c32006-02-28 00:43:23 -0500104 * Two notifier lists: the "policy" list is involved in the
105 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * "transition" list for kernel code that needs to handle
107 * changes to devices when the CPU clock speed changes.
108 * The mutex locks both lists.
109 */
Alan Sterne041c682006-03-27 01:16:30 -0800110static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700111static struct srcu_notifier_head cpufreq_transition_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200113static bool init_cpufreq_transition_notifier_list_called;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700114static int __init init_cpufreq_transition_notifier_list(void)
115{
116 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -0200117 init_cpufreq_transition_notifier_list_called = true;
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700118 return 0;
119}
Linus Torvaldsb3438f82006-11-20 11:47:18 -0800120pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400122static int off __read_mostly;
Viresh Kumarda584452012-10-26 00:51:32 +0200123static int cpufreq_disabled(void)
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -0400124{
125 return off;
126}
127void disable_cpufreq(void)
128{
129 off = 1;
130}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static LIST_HEAD(cpufreq_governor_list);
Dave Jones29464f22009-01-18 01:37:11 -0500132static DEFINE_MUTEX(cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000134bool have_governor_per_policy(void)
135{
Viresh Kumar0b981e72013-10-02 14:13:18 +0530136 return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000137}
Viresh Kumar3f869d62013-05-16 05:09:56 +0000138EXPORT_SYMBOL_GPL(have_governor_per_policy);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000139
Viresh Kumar944e9a02013-05-16 05:09:57 +0000140struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
141{
142 if (have_governor_per_policy())
143 return &policy->kobj;
144 else
145 return cpufreq_global_kobject;
146}
147EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
148
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000149static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
150{
151 u64 idle_time;
152 u64 cur_wall_time;
153 u64 busy_time;
154
155 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
156
157 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
158 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
159 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
160 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
161 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
162 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
163
164 idle_time = cur_wall_time - busy_time;
165 if (wall)
166 *wall = cputime_to_usecs(cur_wall_time);
167
168 return cputime_to_usecs(idle_time);
169}
170
171u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
172{
173 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
174
175 if (idle_time == -1ULL)
176 return get_cpu_idle_time_jiffy(cpu, wall);
177 else if (!io_busy)
178 idle_time += get_cpu_iowait_time_us(cpu, wall);
179
180 return idle_time;
181}
182EXPORT_SYMBOL_GPL(get_cpu_idle_time);
183
Viresh Kumar70e9e772013-10-03 20:29:07 +0530184/*
185 * This is a generic cpufreq init() routine which can be used by cpufreq
186 * drivers of SMP systems. It will do following:
187 * - validate & show freq table passed
188 * - set policies transition latency
189 * - policy->cpus with all possible CPUs
190 */
191int cpufreq_generic_init(struct cpufreq_policy *policy,
192 struct cpufreq_frequency_table *table,
193 unsigned int transition_latency)
194{
195 int ret;
196
197 ret = cpufreq_table_validate_and_show(policy, table);
198 if (ret) {
199 pr_err("%s: invalid frequency table: %d\n", __func__, ret);
200 return ret;
201 }
202
203 policy->cpuinfo.transition_latency = transition_latency;
204
205 /*
206 * The driver only supports the SMP configuartion where all processors
207 * share the clock and voltage and clock.
208 */
209 cpumask_setall(policy->cpus);
210
211 return 0;
212}
213EXPORT_SYMBOL_GPL(cpufreq_generic_init);
214
Viresh Kumar6eed9402013-08-06 22:53:11 +0530215struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530217 struct cpufreq_policy *policy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 unsigned long flags;
219
Viresh Kumar6eed9402013-08-06 22:53:11 +0530220 if (cpufreq_disabled() || (cpu >= nr_cpu_ids))
221 return NULL;
222
223 if (!down_read_trylock(&cpufreq_rwsem))
224 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /* get the cpufreq driver */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000227 read_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Viresh Kumar6eed9402013-08-06 22:53:11 +0530229 if (cpufreq_driver) {
230 /* get the CPU */
231 policy = per_cpu(cpufreq_cpu_data, cpu);
232 if (policy)
233 kobject_get(&policy->kobj);
234 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200235
Viresh Kumar6eed9402013-08-06 22:53:11 +0530236 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530238 if (!policy)
Viresh Kumar6eed9402013-08-06 22:53:11 +0530239 up_read(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530241 return policy;
Stephen Boyda9144432012-07-20 18:14:38 +0000242}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
244
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530245void cpufreq_cpu_put(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000247 if (cpufreq_disabled())
248 return;
249
Viresh Kumar6eed9402013-08-06 22:53:11 +0530250 kobject_put(&policy->kobj);
251 up_read(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
257 *********************************************************************/
258
259/**
260 * adjust_jiffies - adjust the system "loops_per_jiffy"
261 *
262 * This function alters the system "loops_per_jiffy" for the clock
263 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500264 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 * per-CPU loops_per_jiffy value wherever possible.
266 */
267#ifndef CONFIG_SMP
268static unsigned long l_p_j_ref;
Viresh Kumarbb176f72013-06-19 14:19:33 +0530269static unsigned int l_p_j_ref_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Arjan van de Ven858119e2006-01-14 13:20:43 -0800271static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 if (ci->flags & CPUFREQ_CONST_LOOPS)
274 return;
275
276 if (!l_p_j_ref_freq) {
277 l_p_j_ref = loops_per_jiffy;
278 l_p_j_ref_freq = ci->old;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200279 pr_debug("saving %lu as reference value for loops_per_jiffy; "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530280 "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Viresh Kumarbb176f72013-06-19 14:19:33 +0530282 if ((val == CPUFREQ_POSTCHANGE && ci->old != ci->new) ||
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -0700283 (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530284 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
285 ci->new);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200286 pr_debug("scaling loops_per_jiffy to %lu "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530287 "for frequency %u kHz\n", loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289}
290#else
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530291static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
292{
293 return;
294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295#endif
296
Viresh Kumar0956df9c2013-06-19 14:19:34 +0530297static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530298 struct cpufreq_freqs *freqs, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 BUG_ON(irqs_disabled());
301
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000302 if (cpufreq_disabled())
303 return;
304
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200305 freqs->flags = cpufreq_driver->flags;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200306 pr_debug("notification %u of frequency transition to %u kHz\n",
Dave Jonese4472cb2006-01-31 15:53:55 -0800307 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 case CPUFREQ_PRECHANGE:
Dave Jones32ee8c32006-02-28 00:43:23 -0500312 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800313 * which is not equal to what the cpufreq core thinks is
314 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200316 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800317 if ((policy) && (policy->cpu == freqs->cpu) &&
318 (policy->cur) && (policy->cur != freqs->old)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200319 pr_debug("Warning: CPU frequency is"
Dave Jonese4472cb2006-01-31 15:53:55 -0800320 " %u, cpufreq assumed %u kHz.\n",
321 freqs->old, policy->cur);
322 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700325 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800326 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
328 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 case CPUFREQ_POSTCHANGE:
331 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200332 pr_debug("FREQ: %lu - CPU: %lu", (unsigned long)freqs->new,
Thomas Renninger6f4f2722010-04-20 13:17:36 +0200333 (unsigned long)freqs->cpu);
Thomas Renninger25e41932011-01-03 17:50:44 +0100334 trace_cpu_frequency(freqs->new, freqs->cpu);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700335 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800336 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800337 if (likely(policy) && likely(policy->cpu == freqs->cpu))
338 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 break;
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
Viresh Kumarbb176f72013-06-19 14:19:33 +0530342
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530343/**
344 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
345 * on frequency transition.
346 *
347 * This function calls the transition notifiers and the "adjust_jiffies"
348 * function. It is called twice on all CPU frequency changes that have
349 * external effects.
350 */
351void cpufreq_notify_transition(struct cpufreq_policy *policy,
352 struct cpufreq_freqs *freqs, unsigned int state)
353{
354 for_each_cpu(freqs->cpu, policy->cpus)
355 __cpufreq_notify_transition(policy, freqs, state);
356}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
358
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360/*********************************************************************
361 * SYSFS INTERFACE *
362 *********************************************************************/
363
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700364static struct cpufreq_governor *__find_governor(const char *str_governor)
365{
366 struct cpufreq_governor *t;
367
368 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
Dave Jones29464f22009-01-18 01:37:11 -0500369 if (!strnicmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700370 return t;
371
372 return NULL;
373}
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/**
376 * cpufreq_parse_governor - parse a governor string
377 */
Dave Jones905d77c2008-03-05 14:28:32 -0500378static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 struct cpufreq_governor **governor)
380{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700381 int err = -EINVAL;
382
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200383 if (!cpufreq_driver)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700384 goto out;
385
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200386 if (cpufreq_driver->setpolicy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
388 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700389 err = 0;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530390 } else if (!strnicmp(str_governor, "powersave",
391 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700393 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200395 } else if (cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700397
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800398 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700399
400 t = __find_governor(str_governor);
401
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700402 if (t == NULL) {
Kees Cook1a8e1462011-05-04 08:38:56 -0700403 int ret;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700404
Kees Cook1a8e1462011-05-04 08:38:56 -0700405 mutex_unlock(&cpufreq_governor_mutex);
406 ret = request_module("cpufreq_%s", str_governor);
407 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700408
Kees Cook1a8e1462011-05-04 08:38:56 -0700409 if (ret == 0)
410 t = __find_governor(str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700411 }
412
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700413 if (t != NULL) {
414 *governor = t;
415 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700417
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800418 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
Dave Jones29464f22009-01-18 01:37:11 -0500420out:
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700421 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530425 * cpufreq_per_cpu_attr_read() / show_##file_name() -
426 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 *
428 * Write out information from cpufreq_driver->policy[cpu]; object must be
429 * "unsigned int".
430 */
431
Dave Jones32ee8c32006-02-28 00:43:23 -0500432#define show_one(file_name, object) \
433static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500434(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500435{ \
Dave Jones29464f22009-01-18 01:37:11 -0500436 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439show_one(cpuinfo_min_freq, cpuinfo.min_freq);
440show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100441show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442show_one(scaling_min_freq, min);
443show_one(scaling_max_freq, max);
444show_one(scaling_cur_freq, cur);
445
Viresh Kumar037ce832013-10-02 14:13:16 +0530446static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530447 struct cpufreq_policy *new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449/**
450 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
451 */
452#define store_one(file_name, object) \
453static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500454(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{ \
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530456 int ret; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 struct cpufreq_policy new_policy; \
458 \
459 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
460 if (ret) \
461 return -EINVAL; \
462 \
Dave Jones29464f22009-01-18 01:37:11 -0500463 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (ret != 1) \
465 return -EINVAL; \
466 \
Viresh Kumar037ce832013-10-02 14:13:16 +0530467 ret = cpufreq_set_policy(policy, &new_policy); \
Thomas Renninger7970e082006-04-13 15:14:04 +0200468 policy->user_policy.object = policy->object; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 \
470 return ret ? ret : count; \
471}
472
Dave Jones29464f22009-01-18 01:37:11 -0500473store_one(scaling_min_freq, min);
474store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476/**
477 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
478 */
Dave Jones905d77c2008-03-05 14:28:32 -0500479static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
480 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800482 unsigned int cur_freq = __cpufreq_get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 if (!cur_freq)
484 return sprintf(buf, "<unknown>");
485 return sprintf(buf, "%u\n", cur_freq);
486}
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/**
489 * show_scaling_governor - show the current policy for the specified CPU
490 */
Dave Jones905d77c2008-03-05 14:28:32 -0500491static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
Dave Jones29464f22009-01-18 01:37:11 -0500493 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 return sprintf(buf, "powersave\n");
495 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
496 return sprintf(buf, "performance\n");
497 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200498 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500499 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return -EINVAL;
501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/**
504 * store_scaling_governor - store policy for the specified CPU
505 */
Dave Jones905d77c2008-03-05 14:28:32 -0500506static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
507 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530509 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 char str_governor[16];
511 struct cpufreq_policy new_policy;
512
513 ret = cpufreq_get_policy(&new_policy, policy->cpu);
514 if (ret)
515 return ret;
516
Dave Jones29464f22009-01-18 01:37:11 -0500517 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (ret != 1)
519 return -EINVAL;
520
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530521 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
522 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return -EINVAL;
524
Viresh Kumar037ce832013-10-02 14:13:16 +0530525 ret = cpufreq_set_policy(policy, &new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200526
527 policy->user_policy.policy = policy->policy;
528 policy->user_policy.governor = policy->governor;
Thomas Renninger7970e082006-04-13 15:14:04 +0200529
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530530 if (ret)
531 return ret;
532 else
533 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
536/**
537 * show_scaling_driver - show the cpufreq driver currently loaded
538 */
Dave Jones905d77c2008-03-05 14:28:32 -0500539static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200541 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544/**
545 * show_scaling_available_governors - show the available CPUfreq governors
546 */
Dave Jones905d77c2008-03-05 14:28:32 -0500547static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
548 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 ssize_t i = 0;
551 struct cpufreq_governor *t;
552
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200553 if (!cpufreq_driver->target) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 i += sprintf(buf, "performance powersave");
555 goto out;
556 }
557
558 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
Dave Jones29464f22009-01-18 01:37:11 -0500559 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
560 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200562 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500564out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 i += sprintf(&buf[i], "\n");
566 return i;
567}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700568
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800569ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 ssize_t i = 0;
572 unsigned int cpu;
573
Rusty Russell835481d2009-01-04 05:18:06 -0800574 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (i)
576 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
577 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
578 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500579 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
581 i += sprintf(&buf[i], "\n");
582 return i;
583}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800584EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700586/**
587 * show_related_cpus - show the CPUs affected by each transition even if
588 * hw coordination is in use
589 */
590static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
591{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800592 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700593}
594
595/**
596 * show_affected_cpus - show the CPUs affected by each transition
597 */
598static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
599{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800600 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700601}
602
Venki Pallipadi9e769882007-10-26 10:18:21 -0700603static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500604 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700605{
606 unsigned int freq = 0;
607 unsigned int ret;
608
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700609 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700610 return -EINVAL;
611
612 ret = sscanf(buf, "%u", &freq);
613 if (ret != 1)
614 return -EINVAL;
615
616 policy->governor->store_setspeed(policy, freq);
617
618 return count;
619}
620
621static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
622{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700623 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700624 return sprintf(buf, "<unsupported>\n");
625
626 return policy->governor->show_setspeed(policy, buf);
627}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Thomas Renningere2f74f32009-11-19 12:31:01 +0100629/**
viresh kumar8bf1ac722012-10-23 01:23:33 +0200630 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100631 */
632static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
633{
634 unsigned int limit;
635 int ret;
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200636 if (cpufreq_driver->bios_limit) {
637 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100638 if (!ret)
639 return sprintf(buf, "%u\n", limit);
640 }
641 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
642}
643
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200644cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
645cpufreq_freq_attr_ro(cpuinfo_min_freq);
646cpufreq_freq_attr_ro(cpuinfo_max_freq);
647cpufreq_freq_attr_ro(cpuinfo_transition_latency);
648cpufreq_freq_attr_ro(scaling_available_governors);
649cpufreq_freq_attr_ro(scaling_driver);
650cpufreq_freq_attr_ro(scaling_cur_freq);
651cpufreq_freq_attr_ro(bios_limit);
652cpufreq_freq_attr_ro(related_cpus);
653cpufreq_freq_attr_ro(affected_cpus);
654cpufreq_freq_attr_rw(scaling_min_freq);
655cpufreq_freq_attr_rw(scaling_max_freq);
656cpufreq_freq_attr_rw(scaling_governor);
657cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Dave Jones905d77c2008-03-05 14:28:32 -0500659static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 &cpuinfo_min_freq.attr,
661 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100662 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 &scaling_min_freq.attr,
664 &scaling_max_freq.attr,
665 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700666 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 &scaling_governor.attr,
668 &scaling_driver.attr,
669 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700670 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 NULL
672};
673
Dave Jones29464f22009-01-18 01:37:11 -0500674#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
675#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Dave Jones29464f22009-01-18 01:37:11 -0500677static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Dave Jones905d77c2008-03-05 14:28:32 -0500679 struct cpufreq_policy *policy = to_policy(kobj);
680 struct freq_attr *fattr = to_attr(attr);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530681 ssize_t ret;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530682
683 if (!down_read_trylock(&cpufreq_rwsem))
Viresh Kumar1b750e32013-10-02 14:13:09 +0530684 return -EINVAL;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800685
Viresh Kumar1b750e32013-10-02 14:13:09 +0530686 lock_policy_rwsem_read(policy->cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800687
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530688 if (fattr->show)
689 ret = fattr->show(policy, buf);
690 else
691 ret = -EIO;
692
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800693 unlock_policy_rwsem_read(policy->cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530694 up_read(&cpufreq_rwsem);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return ret;
697}
698
Dave Jones905d77c2008-03-05 14:28:32 -0500699static ssize_t store(struct kobject *kobj, struct attribute *attr,
700 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Dave Jones905d77c2008-03-05 14:28:32 -0500702 struct cpufreq_policy *policy = to_policy(kobj);
703 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500704 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530705
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530706 get_online_cpus();
707
708 if (!cpu_online(policy->cpu))
709 goto unlock;
710
Viresh Kumar6eed9402013-08-06 22:53:11 +0530711 if (!down_read_trylock(&cpufreq_rwsem))
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530712 goto unlock;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800713
Viresh Kumar1b750e32013-10-02 14:13:09 +0530714 lock_policy_rwsem_write(policy->cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800715
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530716 if (fattr->store)
717 ret = fattr->store(policy, buf, count);
718 else
719 ret = -EIO;
720
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800721 unlock_policy_rwsem_write(policy->cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530722
Viresh Kumar6eed9402013-08-06 22:53:11 +0530723 up_read(&cpufreq_rwsem);
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530724unlock:
725 put_online_cpus();
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return ret;
728}
729
Dave Jones905d77c2008-03-05 14:28:32 -0500730static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Dave Jones905d77c2008-03-05 14:28:32 -0500732 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200733 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 complete(&policy->kobj_unregister);
735}
736
Emese Revfy52cf25d2010-01-19 02:58:23 +0100737static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 .show = show,
739 .store = store,
740};
741
742static struct kobj_type ktype_cpufreq = {
743 .sysfs_ops = &sysfs_ops,
744 .default_attrs = default_attrs,
745 .release = cpufreq_sysfs_release,
746};
747
Viresh Kumar2361be22013-05-17 16:09:09 +0530748struct kobject *cpufreq_global_kobject;
749EXPORT_SYMBOL(cpufreq_global_kobject);
750
751static int cpufreq_global_kobject_usage;
752
753int cpufreq_get_global_kobject(void)
754{
755 if (!cpufreq_global_kobject_usage++)
756 return kobject_add(cpufreq_global_kobject,
757 &cpu_subsys.dev_root->kobj, "%s", "cpufreq");
758
759 return 0;
760}
761EXPORT_SYMBOL(cpufreq_get_global_kobject);
762
763void cpufreq_put_global_kobject(void)
764{
765 if (!--cpufreq_global_kobject_usage)
766 kobject_del(cpufreq_global_kobject);
767}
768EXPORT_SYMBOL(cpufreq_put_global_kobject);
769
770int cpufreq_sysfs_create_file(const struct attribute *attr)
771{
772 int ret = cpufreq_get_global_kobject();
773
774 if (!ret) {
775 ret = sysfs_create_file(cpufreq_global_kobject, attr);
776 if (ret)
777 cpufreq_put_global_kobject();
778 }
779
780 return ret;
781}
782EXPORT_SYMBOL(cpufreq_sysfs_create_file);
783
784void cpufreq_sysfs_remove_file(const struct attribute *attr)
785{
786 sysfs_remove_file(cpufreq_global_kobject, attr);
787 cpufreq_put_global_kobject();
788}
789EXPORT_SYMBOL(cpufreq_sysfs_remove_file);
790
Dave Jones19d6f7e2009-07-08 17:35:39 -0400791/* symlink affected CPUs */
Viresh Kumar308b60e2013-07-31 14:35:14 +0200792static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400793{
794 unsigned int j;
795 int ret = 0;
796
797 for_each_cpu(j, policy->cpus) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800798 struct device *cpu_dev;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400799
Viresh Kumar308b60e2013-07-31 14:35:14 +0200800 if (j == policy->cpu)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400801 continue;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400802
Viresh Kumare8fdde12013-07-31 14:31:33 +0200803 pr_debug("Adding link for CPU: %u\n", j);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800804 cpu_dev = get_cpu_device(j);
805 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Dave Jones19d6f7e2009-07-08 17:35:39 -0400806 "cpufreq");
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200807 if (ret)
808 break;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400809 }
810 return ret;
811}
812
Viresh Kumar308b60e2013-07-31 14:35:14 +0200813static int cpufreq_add_dev_interface(struct cpufreq_policy *policy,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800814 struct device *dev)
Dave Jones909a6942009-07-08 18:05:42 -0400815{
816 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -0400817 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -0400818
819 /* prepare interface data */
820 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800821 &dev->kobj, "cpufreq");
Dave Jones909a6942009-07-08 18:05:42 -0400822 if (ret)
823 return ret;
824
825 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200826 drv_attr = cpufreq_driver->attr;
Dave Jones909a6942009-07-08 18:05:42 -0400827 while ((drv_attr) && (*drv_attr)) {
828 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
829 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200830 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400831 drv_attr++;
832 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200833 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -0400834 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
835 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200836 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400837 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200838 if (cpufreq_driver->target) {
Dave Jones909a6942009-07-08 18:05:42 -0400839 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
840 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200841 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400842 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200843 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100844 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
845 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200846 goto err_out_kobj_put;
Thomas Renningere2f74f32009-11-19 12:31:01 +0100847 }
Dave Jones909a6942009-07-08 18:05:42 -0400848
Viresh Kumar308b60e2013-07-31 14:35:14 +0200849 ret = cpufreq_add_dev_symlink(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400850 if (ret)
851 goto err_out_kobj_put;
852
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530853 return ret;
854
855err_out_kobj_put:
856 kobject_put(&policy->kobj);
857 wait_for_completion(&policy->kobj_unregister);
858 return ret;
859}
860
861static void cpufreq_init_policy(struct cpufreq_policy *policy)
862{
863 struct cpufreq_policy new_policy;
864 int ret = 0;
865
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530866 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar037ce832013-10-02 14:13:16 +0530867 /* assure that the starting sequence is run in cpufreq_set_policy */
Dave Jonesecf7e462009-07-08 18:48:47 -0400868 policy->governor = NULL;
869
870 /* set default policy */
Viresh Kumar037ce832013-10-02 14:13:16 +0530871 ret = cpufreq_set_policy(policy, &new_policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400872 policy->user_policy.policy = policy->policy;
873 policy->user_policy.governor = policy->governor;
874
875 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200876 pr_debug("setting policy failed\n");
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200877 if (cpufreq_driver->exit)
878 cpufreq_driver->exit(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400879 }
Dave Jones909a6942009-07-08 18:05:42 -0400880}
881
Viresh Kumarfcf80582013-01-29 14:39:08 +0000882#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumard8d3b472013-08-04 01:20:07 +0200883static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy,
884 unsigned int cpu, struct device *dev,
885 bool frozen)
Viresh Kumarfcf80582013-01-29 14:39:08 +0000886{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200887 int ret = 0, has_target = !!cpufreq_driver->target;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000888 unsigned long flags;
889
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530890 if (has_target) {
891 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
892 if (ret) {
893 pr_err("%s: Failed to stop governor\n", __func__);
894 return ret;
895 }
896 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000897
Viresh Kumard8d3b472013-08-04 01:20:07 +0200898 lock_policy_rwsem_write(policy->cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530899
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000900 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530901
Viresh Kumarfcf80582013-01-29 14:39:08 +0000902 cpumask_set_cpu(cpu, policy->cpus);
903 per_cpu(cpufreq_cpu_data, cpu) = policy;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000904 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +0000905
Viresh Kumard8d3b472013-08-04 01:20:07 +0200906 unlock_policy_rwsem_write(policy->cpu);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530907
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200908 if (has_target) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530909 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
910 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
911 pr_err("%s: Failed to start governor\n", __func__);
912 return ret;
913 }
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200914 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000915
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530916 /* Don't touch sysfs links during light-weight init */
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200917 if (!frozen)
918 ret = sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq");
Viresh Kumarfcf80582013-01-29 14:39:08 +0000919
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530920 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000921}
922#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530924static struct cpufreq_policy *cpufreq_policy_restore(unsigned int cpu)
925{
926 struct cpufreq_policy *policy;
927 unsigned long flags;
928
Lan Tianyu44871c92013-09-11 15:05:05 +0800929 read_lock_irqsave(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530930
931 policy = per_cpu(cpufreq_cpu_data_fallback, cpu);
932
Lan Tianyu44871c92013-09-11 15:05:05 +0800933 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530934
935 return policy;
936}
937
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530938static struct cpufreq_policy *cpufreq_policy_alloc(void)
939{
940 struct cpufreq_policy *policy;
941
942 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
943 if (!policy)
944 return NULL;
945
946 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
947 goto err_free_policy;
948
949 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
950 goto err_free_cpumask;
951
Lukasz Majewskic88a1f82013-08-06 22:53:08 +0530952 INIT_LIST_HEAD(&policy->policy_list);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530953 return policy;
954
955err_free_cpumask:
956 free_cpumask_var(policy->cpus);
957err_free_policy:
958 kfree(policy);
959
960 return NULL;
961}
962
963static void cpufreq_policy_free(struct cpufreq_policy *policy)
964{
965 free_cpumask_var(policy->related_cpus);
966 free_cpumask_var(policy->cpus);
967 kfree(policy);
968}
969
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530970static void update_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
971{
Srivatsa S. Bhat99ec8992013-09-12 17:29:09 +0530972 if (WARN_ON(cpu == policy->cpu))
Srivatsa S. Bhatcb38ed52013-09-12 01:43:42 +0530973 return;
974
Viresh Kumar8efd5762013-09-17 10:22:11 +0530975 /*
976 * Take direct locks as lock_policy_rwsem_write wouldn't work here.
977 * Also lock for last cpu is enough here as contention will happen only
978 * after policy->cpu is changed and after it is changed, other threads
979 * will try to acquire lock for new cpu. And policy is already updated
980 * by then.
981 */
982 down_write(&per_cpu(cpu_policy_rwsem, policy->cpu));
983
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530984 policy->last_cpu = policy->cpu;
985 policy->cpu = cpu;
986
Viresh Kumar8efd5762013-09-17 10:22:11 +0530987 up_write(&per_cpu(cpu_policy_rwsem, policy->last_cpu));
988
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530989 cpufreq_frequency_table_update_policy_cpu(policy);
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530990 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
991 CPUFREQ_UPDATE_POLICY_CPU, policy);
992}
993
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530994static int __cpufreq_add_dev(struct device *dev, struct subsys_interface *sif,
995 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Viresh Kumarfcf80582013-01-29 14:39:08 +0000997 unsigned int j, cpu = dev->id;
Viresh Kumar65922462013-02-07 10:56:03 +0530998 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001001#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumar1b274292013-08-20 12:08:26 +05301002 struct cpufreq_policy *tpolicy;
Viresh Kumarfcf80582013-01-29 14:39:08 +00001003 struct cpufreq_governor *gov;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001004#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Ashok Rajc32b6b82005-10-30 14:59:54 -08001006 if (cpu_is_offline(cpu))
1007 return 0;
1008
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001009 pr_debug("adding CPU %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011#ifdef CONFIG_SMP
1012 /* check whether a different CPU already registered this
1013 * CPU because it is in the same boat. */
1014 policy = cpufreq_cpu_get(cpu);
1015 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -05001016 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return 0;
1018 }
Li Zhong5025d622013-08-21 01:31:08 +02001019#endif
Viresh Kumarfcf80582013-01-29 14:39:08 +00001020
Viresh Kumar6eed9402013-08-06 22:53:11 +05301021 if (!down_read_trylock(&cpufreq_rwsem))
1022 return 0;
1023
Viresh Kumarfcf80582013-01-29 14:39:08 +00001024#ifdef CONFIG_HOTPLUG_CPU
1025 /* Check if this cpu was hot-unplugged earlier and has siblings */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001026 read_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +05301027 list_for_each_entry(tpolicy, &cpufreq_policy_list, policy_list) {
1028 if (cpumask_test_cpu(cpu, tpolicy->related_cpus)) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001029 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +05301030 ret = cpufreq_add_policy_cpu(tpolicy, cpu, dev, frozen);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301031 up_read(&cpufreq_rwsem);
1032 return ret;
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301033 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001034 }
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001035 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001036#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301038 if (frozen)
1039 /* Restore the saved policy when doing light-weight init */
1040 policy = cpufreq_policy_restore(cpu);
1041 else
1042 policy = cpufreq_policy_alloc();
1043
Dave Jones059019a2009-07-08 16:30:03 -04001044 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -04001046
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301047
1048 /*
1049 * In the resume path, since we restore a saved policy, the assignment
1050 * to policy->cpu is like an update of the existing policy, rather than
1051 * the creation of a brand new one. So we need to perform this update
1052 * by invoking update_policy_cpu().
1053 */
1054 if (frozen && cpu != policy->cpu)
1055 update_policy_cpu(policy, cpu);
1056 else
1057 policy->cpu = cpu;
1058
Viresh Kumar65922462013-02-07 10:56:03 +05301059 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Rusty Russell835481d2009-01-04 05:18:06 -08001060 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001063 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 /* call driver. From then on the cpufreq must be able
1066 * to accept all calls to ->verify and ->setpolicy for this CPU
1067 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001068 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001070 pr_debug("initialization failed\n");
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301071 goto err_set_policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001073
Viresh Kumarda60ce92013-10-03 20:28:30 +05301074 if (cpufreq_driver->get) {
1075 policy->cur = cpufreq_driver->get(policy->cpu);
1076 if (!policy->cur) {
1077 pr_err("%s: ->get() failed\n", __func__);
1078 goto err_get_freq;
1079 }
1080 }
1081
Viresh Kumarfcf80582013-01-29 14:39:08 +00001082 /* related cpus should atleast have policy->cpus */
1083 cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
1084
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001085 /*
1086 * affected cpus must always be the one, which are online. We aren't
1087 * managing offline cpus here.
1088 */
1089 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1090
Mike Chan187d9f42008-12-04 12:19:17 -08001091 policy->user_policy.min = policy->min;
1092 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Thomas Renningera1531ac2008-07-29 22:32:58 -07001094 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1095 CPUFREQ_START, policy);
1096
Viresh Kumarfcf80582013-01-29 14:39:08 +00001097#ifdef CONFIG_HOTPLUG_CPU
1098 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
1099 if (gov) {
1100 policy->governor = gov;
1101 pr_debug("Restoring governor %s for cpu %d\n",
1102 policy->governor->name, cpu);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001103 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301106 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301107 for_each_cpu(j, policy->cpus)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301108 per_cpu(cpufreq_cpu_data, j) = policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301109 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1110
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301111 if (!frozen) {
Viresh Kumar308b60e2013-07-31 14:35:14 +02001112 ret = cpufreq_add_dev_interface(policy, dev);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301113 if (ret)
1114 goto err_out_unregister;
1115 }
Dave Jones8ff69732006-03-05 03:37:23 -05001116
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301117 write_lock_irqsave(&cpufreq_driver_lock, flags);
1118 list_add(&policy->policy_list, &cpufreq_policy_list);
1119 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1120
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301121 cpufreq_init_policy(policy);
1122
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001123 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301124 up_read(&cpufreq_rwsem);
1125
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001126 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return 0;
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130err_out_unregister:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001131 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301132 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001133 per_cpu(cpufreq_cpu_data, j) = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001134 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Viresh Kumarda60ce92013-10-03 20:28:30 +05301136err_get_freq:
1137 if (cpufreq_driver->exit)
1138 cpufreq_driver->exit(policy);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301139err_set_policy_cpu:
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301140 cpufreq_policy_free(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141nomem_out:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301142 up_read(&cpufreq_rwsem);
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return ret;
1145}
1146
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301147/**
1148 * cpufreq_add_dev - add a CPU device
1149 *
1150 * Adds the cpufreq interface for a CPU device.
1151 *
1152 * The Oracle says: try running cpufreq registration/unregistration concurrently
1153 * with with cpu hotplugging and all hell will break loose. Tried to clean this
1154 * mess up, but more thorough testing is needed. - Mathieu
1155 */
1156static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1157{
1158 return __cpufreq_add_dev(dev, sif, false);
1159}
1160
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301161static int cpufreq_nominate_new_policy_cpu(struct cpufreq_policy *policy,
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301162 unsigned int old_cpu, bool frozen)
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301163{
1164 struct device *cpu_dev;
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301165 int ret;
1166
1167 /* first sibling now owns the new sysfs dir */
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301168 cpu_dev = get_cpu_device(cpumask_any_but(policy->cpus, old_cpu));
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301169
1170 /* Don't touch sysfs files during light-weight tear-down */
1171 if (frozen)
1172 return cpu_dev->id;
1173
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301174 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301175 ret = kobject_move(&policy->kobj, &cpu_dev->kobj);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301176 if (ret) {
1177 pr_err("%s: Failed to move kobj: %d", __func__, ret);
1178
Viresh Kumar1b750e32013-10-02 14:13:09 +05301179 lock_policy_rwsem_write(old_cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301180 cpumask_set_cpu(old_cpu, policy->cpus);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301181 unlock_policy_rwsem_write(old_cpu);
1182
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301183 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301184 "cpufreq");
1185
1186 return -EINVAL;
1187 }
1188
1189 return cpu_dev->id;
1190}
1191
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301192static int __cpufreq_remove_dev_prepare(struct device *dev,
1193 struct subsys_interface *sif,
1194 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301196 unsigned int cpu = dev->id, cpus;
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301197 int new_cpu, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 unsigned long flags;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301199 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001201 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001203 write_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301205 policy = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301207 /* Save the policy somewhere when doing a light-weight tear-down */
1208 if (frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301209 per_cpu(cpufreq_cpu_data_fallback, cpu) = policy;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301210
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001211 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301213 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001214 pr_debug("%s: No cpu_data found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301218 if (cpufreq_driver->target) {
1219 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1220 if (ret) {
1221 pr_err("%s: Failed to stop governor\n", __func__);
1222 return ret;
1223 }
1224 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001225
Jacob Shin27ecddc2011-04-27 13:32:11 -05001226#ifdef CONFIG_HOTPLUG_CPU
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001227 if (!cpufreq_driver->setpolicy)
Dirk Brandewiefa69e332013-02-06 09:02:11 -08001228 strncpy(per_cpu(cpufreq_cpu_governor, cpu),
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301229 policy->governor->name, CPUFREQ_NAME_LEN);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001230#endif
1231
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301232 lock_policy_rwsem_read(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301233 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301234 unlock_policy_rwsem_read(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Srivatsa S. Bhat61173f22013-09-12 01:43:25 +05301236 if (cpu != policy->cpu) {
1237 if (!frozen)
1238 sysfs_remove_link(&dev->kobj, "cpufreq");
Viresh Kumar73bf0fc2013-02-05 22:21:14 +01001239 } else if (cpus > 1) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301240 new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu, frozen);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301241 if (new_cpu >= 0) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301242 update_policy_cpu(policy, new_cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301243
1244 if (!frozen) {
Viresh Kumar75949c92013-10-02 14:13:13 +05301245 pr_debug("%s: policy Kobject moved to cpu: %d from: %d\n",
1246 __func__, new_cpu, cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301247 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001248 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001249 }
Venki Pallipadiec282972007-03-26 12:03:19 -07001250
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301251 return 0;
1252}
1253
1254static int __cpufreq_remove_dev_finish(struct device *dev,
1255 struct subsys_interface *sif,
1256 bool frozen)
1257{
1258 unsigned int cpu = dev->id, cpus;
1259 int ret;
1260 unsigned long flags;
1261 struct cpufreq_policy *policy;
1262 struct kobject *kobj;
1263 struct completion *cmp;
1264
1265 read_lock_irqsave(&cpufreq_driver_lock, flags);
1266 policy = per_cpu(cpufreq_cpu_data, cpu);
1267 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1268
1269 if (!policy) {
1270 pr_debug("%s: No cpu_data found\n", __func__);
1271 return -EINVAL;
1272 }
1273
Viresh Kumar1b750e32013-10-02 14:13:09 +05301274 lock_policy_rwsem_write(cpu);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301275 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301276
1277 if (cpus > 1)
1278 cpumask_clear_cpu(cpu, policy->cpus);
1279 unlock_policy_rwsem_write(cpu);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301280
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001281 /* If cpu is last user of policy, free policy */
1282 if (cpus == 1) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301283 if (cpufreq_driver->target) {
1284 ret = __cpufreq_governor(policy,
1285 CPUFREQ_GOV_POLICY_EXIT);
1286 if (ret) {
1287 pr_err("%s: Failed to exit governor\n",
1288 __func__);
1289 return ret;
1290 }
Viresh Kumaredab2fb2013-08-20 12:08:22 +05301291 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001292
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301293 if (!frozen) {
1294 lock_policy_rwsem_read(cpu);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301295 kobj = &policy->kobj;
1296 cmp = &policy->kobj_unregister;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301297 unlock_policy_rwsem_read(cpu);
1298 kobject_put(kobj);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001299
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301300 /*
1301 * We need to make sure that the underlying kobj is
1302 * actually not referenced anymore by anybody before we
1303 * proceed with unloading.
1304 */
1305 pr_debug("waiting for dropping of refcount\n");
1306 wait_for_completion(cmp);
1307 pr_debug("wait complete\n");
1308 }
1309
1310 /*
1311 * Perform the ->exit() even during light-weight tear-down,
1312 * since this is a core component, and is essential for the
1313 * subsequent light-weight ->init() to succeed.
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001314 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001315 if (cpufreq_driver->exit)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301316 cpufreq_driver->exit(policy);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001317
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301318 /* Remove policy from list of active policies */
1319 write_lock_irqsave(&cpufreq_driver_lock, flags);
1320 list_del(&policy->policy_list);
1321 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1322
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301323 if (!frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301324 cpufreq_policy_free(policy);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001325 } else {
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001326 if (cpufreq_driver->target) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301327 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
1328 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
1329 pr_err("%s: Failed to start governor\n",
1330 __func__);
1331 return ret;
1332 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001333 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Viresh Kumar474deff2013-08-20 12:08:25 +05301336 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return 0;
1338}
1339
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301340/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301341 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301342 *
1343 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301344 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001345static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001346{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001347 unsigned int cpu = dev->id;
Viresh Kumar27a862e2013-10-02 14:13:14 +05301348 int ret;
Venki Pallipadiec282972007-03-26 12:03:19 -07001349
1350 if (cpu_is_offline(cpu))
1351 return 0;
1352
Viresh Kumar27a862e2013-10-02 14:13:14 +05301353 ret = __cpufreq_remove_dev_prepare(dev, sif, false);
1354
1355 if (!ret)
1356 ret = __cpufreq_remove_dev_finish(dev, sif, false);
1357
1358 return ret;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001359}
1360
David Howells65f27f32006-11-22 14:55:48 +00001361static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362{
David Howells65f27f32006-11-22 14:55:48 +00001363 struct cpufreq_policy *policy =
1364 container_of(work, struct cpufreq_policy, update);
1365 unsigned int cpu = policy->cpu;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001366 pr_debug("handle_update for cpu %u called\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 cpufreq_update_policy(cpu);
1368}
1369
1370/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301371 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1372 * in deep trouble.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 * @cpu: cpu number
1374 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1375 * @new_freq: CPU frequency the CPU actually runs at
1376 *
Dave Jones29464f22009-01-18 01:37:11 -05001377 * We adjust to current frequency first, and need to clean up later.
1378 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301380static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1381 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301383 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301385 unsigned long flags;
1386
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001387 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 freqs.old = old_freq;
1391 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301392
1393 read_lock_irqsave(&cpufreq_driver_lock, flags);
1394 policy = per_cpu(cpufreq_cpu_data, cpu);
1395 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1396
1397 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1398 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399}
1400
Dave Jones32ee8c32006-02-28 00:43:23 -05001401/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301402 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001403 * @cpu: CPU number
1404 *
1405 * This is the last known freq, without actually getting it from the driver.
1406 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1407 */
1408unsigned int cpufreq_quick_get(unsigned int cpu)
1409{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001410 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301411 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001412
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001413 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1414 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001415
1416 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001417 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301418 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001419 cpufreq_cpu_put(policy);
1420 }
1421
Dave Jones4d34a672008-02-07 16:33:49 -05001422 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001423}
1424EXPORT_SYMBOL(cpufreq_quick_get);
1425
Jesse Barnes3d737102011-06-28 10:59:12 -07001426/**
1427 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1428 * @cpu: CPU number
1429 *
1430 * Just return the max possible frequency for a given CPU.
1431 */
1432unsigned int cpufreq_quick_get_max(unsigned int cpu)
1433{
1434 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1435 unsigned int ret_freq = 0;
1436
1437 if (policy) {
1438 ret_freq = policy->max;
1439 cpufreq_cpu_put(policy);
1440 }
1441
1442 return ret_freq;
1443}
1444EXPORT_SYMBOL(cpufreq_quick_get_max);
1445
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001446static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001448 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301449 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001451 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001452 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001454 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301456 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001457 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301458 /* verify no discrepancy between actual and
1459 saved value exists */
1460 if (unlikely(ret_freq != policy->cur)) {
1461 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 schedule_work(&policy->update);
1463 }
1464 }
1465
Dave Jones4d34a672008-02-07 16:33:49 -05001466 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001467}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001469/**
1470 * cpufreq_get - get the current CPU frequency (in kHz)
1471 * @cpu: CPU number
1472 *
1473 * Get the CPU current (static) CPU frequency
1474 */
1475unsigned int cpufreq_get(unsigned int cpu)
1476{
1477 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001478
Viresh Kumar26ca8692013-09-20 22:37:31 +05301479 if (cpufreq_disabled() || !cpufreq_driver)
1480 return -ENOENT;
1481
Viresh Kumar6eed9402013-08-06 22:53:11 +05301482 if (!down_read_trylock(&cpufreq_rwsem))
1483 return 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001484
Viresh Kumar1b750e32013-10-02 14:13:09 +05301485 lock_policy_rwsem_read(cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001486
1487 ret_freq = __cpufreq_get(cpu);
1488
1489 unlock_policy_rwsem_read(cpu);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301490 up_read(&cpufreq_rwsem);
1491
Dave Jones4d34a672008-02-07 16:33:49 -05001492 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493}
1494EXPORT_SYMBOL(cpufreq_get);
1495
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001496static struct subsys_interface cpufreq_interface = {
1497 .name = "cpufreq",
1498 .subsys = &cpu_subsys,
1499 .add_dev = cpufreq_add_dev,
1500 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001501};
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001504 * cpufreq_bp_suspend - Prepare the boot CPU for system suspend.
1505 *
1506 * This function is only executed for the boot processor. The other CPUs
1507 * have been put offline by means of CPU hotplug.
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001508 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001509static int cpufreq_bp_suspend(void)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001510{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301511 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001512
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001513 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301514 struct cpufreq_policy *policy;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001515
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001516 pr_debug("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001517
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001518 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301519 policy = cpufreq_cpu_get(cpu);
1520 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001521 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001522
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001523 if (cpufreq_driver->suspend) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301524 ret = cpufreq_driver->suspend(policy);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001525 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001526 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301527 "step on CPU %u\n", policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001528 }
1529
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301530 cpufreq_cpu_put(policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001531 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001532}
1533
1534/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001535 * cpufreq_bp_resume - Restore proper frequency handling of the boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 *
1537 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001538 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1539 * restored. It will verify that the current freq is in sync with
1540 * what we believe it to be. This is a bit later than when it
1541 * should be, but nonethteless it's better than calling
1542 * cpufreq_driver->get() here which might re-enable interrupts...
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001543 *
1544 * This function is only executed for the boot CPU. The other CPUs have not
1545 * been turned on yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001547static void cpufreq_bp_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301549 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001550
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001551 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301552 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001554 pr_debug("resuming cpu %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001556 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301557 policy = cpufreq_cpu_get(cpu);
1558 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001559 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001561 if (cpufreq_driver->resume) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301562 ret = cpufreq_driver->resume(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if (ret) {
1564 printk(KERN_ERR "cpufreq: resume failed in ->resume "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301565 "step on CPU %u\n", policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001566 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
1568 }
1569
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301570 schedule_work(&policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001571
Dave Jonesc9060492008-02-07 16:32:18 -05001572fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301573 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574}
1575
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001576static struct syscore_ops cpufreq_syscore_ops = {
1577 .suspend = cpufreq_bp_suspend,
1578 .resume = cpufreq_bp_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579};
1580
Borislav Petkov9d950462013-01-20 10:24:28 +00001581/**
1582 * cpufreq_get_current_driver - return current driver's name
1583 *
1584 * Return the name string of the currently loaded cpufreq driver
1585 * or NULL, if none.
1586 */
1587const char *cpufreq_get_current_driver(void)
1588{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001589 if (cpufreq_driver)
1590 return cpufreq_driver->name;
1591
1592 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001593}
1594EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596/*********************************************************************
1597 * NOTIFIER LISTS INTERFACE *
1598 *********************************************************************/
1599
1600/**
1601 * cpufreq_register_notifier - register a driver with cpufreq
1602 * @nb: notifier function to register
1603 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1604 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001605 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 * are notified about clock rate changes (once before and once after
1607 * the transition), or a list of drivers that are notified about
1608 * changes in cpufreq policy.
1609 *
1610 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001611 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 */
1613int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1614{
1615 int ret;
1616
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001617 if (cpufreq_disabled())
1618 return -EINVAL;
1619
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001620 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1621
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 switch (list) {
1623 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001624 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001625 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 break;
1627 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001628 ret = blocking_notifier_chain_register(
1629 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 break;
1631 default:
1632 ret = -EINVAL;
1633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 return ret;
1636}
1637EXPORT_SYMBOL(cpufreq_register_notifier);
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639/**
1640 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1641 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301642 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 *
1644 * Remove a driver from the CPU frequency notifier list.
1645 *
1646 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001647 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 */
1649int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1650{
1651 int ret;
1652
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001653 if (cpufreq_disabled())
1654 return -EINVAL;
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 switch (list) {
1657 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001658 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001659 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 break;
1661 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001662 ret = blocking_notifier_chain_unregister(
1663 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 break;
1665 default:
1666 ret = -EINVAL;
1667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 return ret;
1670}
1671EXPORT_SYMBOL(cpufreq_unregister_notifier);
1672
1673
1674/*********************************************************************
1675 * GOVERNORS *
1676 *********************************************************************/
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678int __cpufreq_driver_target(struct cpufreq_policy *policy,
1679 unsigned int target_freq,
1680 unsigned int relation)
1681{
1682 int retval = -EINVAL;
Viresh Kumar72499242012-10-31 01:28:21 +01001683 unsigned int old_target_freq = target_freq;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001684
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001685 if (cpufreq_disabled())
1686 return -ENODEV;
1687
Viresh Kumar72499242012-10-31 01:28:21 +01001688 /* Make sure that target_freq is within supported range */
1689 if (target_freq > policy->max)
1690 target_freq = policy->max;
1691 if (target_freq < policy->min)
1692 target_freq = policy->min;
1693
1694 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
1695 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001696
1697 if (target_freq == policy->cur)
1698 return 0;
1699
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001700 if (cpufreq_driver->target)
1701 retval = cpufreq_driver->target(policy, target_freq, relation);
Ashok Raj90d45d12005-11-08 21:34:24 -08001702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return retval;
1704}
1705EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1706
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707int cpufreq_driver_target(struct cpufreq_policy *policy,
1708 unsigned int target_freq,
1709 unsigned int relation)
1710{
Julia Lawallf1829e42008-07-25 22:44:53 +02001711 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Viresh Kumar1b750e32013-10-02 14:13:09 +05301713 lock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 ret = __cpufreq_driver_target(policy, target_freq, relation);
1716
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001717 unlock_policy_rwsem_write(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return ret;
1720}
1721EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1722
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001723/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001724 * when "event" is CPUFREQ_GOV_LIMITS
1725 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301727static int __cpufreq_governor(struct cpufreq_policy *policy,
1728 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
Dave Jonescc993ca2005-07-28 09:43:56 -07001730 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001731
1732 /* Only must be defined when default governor is known to have latency
1733 restrictions, like e.g. conservative or ondemand.
1734 That this is the case is already ensured in Kconfig
1735 */
1736#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1737 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1738#else
1739 struct cpufreq_governor *gov = NULL;
1740#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001741
1742 if (policy->governor->max_transition_latency &&
1743 policy->cpuinfo.transition_latency >
1744 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001745 if (!gov)
1746 return -EINVAL;
1747 else {
1748 printk(KERN_WARNING "%s governor failed, too long"
1749 " transition latency of HW, fallback"
1750 " to %s governor\n",
1751 policy->governor->name,
1752 gov->name);
1753 policy->governor = gov;
1754 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Viresh Kumarfe492f32013-08-06 22:53:10 +05301757 if (event == CPUFREQ_GOV_POLICY_INIT)
1758 if (!try_module_get(policy->governor->owner))
1759 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001761 pr_debug("__cpufreq_governor for CPU %u, event %u\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301762 policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001763
1764 mutex_lock(&cpufreq_governor_lock);
Srivatsa S. Bhat56d07db2013-09-07 01:23:55 +05301765 if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
Viresh Kumarf73d3932013-08-31 17:53:40 +05301766 || (!policy->governor_enabled
1767 && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001768 mutex_unlock(&cpufreq_governor_lock);
1769 return -EBUSY;
1770 }
1771
1772 if (event == CPUFREQ_GOV_STOP)
1773 policy->governor_enabled = false;
1774 else if (event == CPUFREQ_GOV_START)
1775 policy->governor_enabled = true;
1776
1777 mutex_unlock(&cpufreq_governor_lock);
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 ret = policy->governor->governor(policy, event);
1780
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001781 if (!ret) {
1782 if (event == CPUFREQ_GOV_POLICY_INIT)
1783 policy->governor->initialized++;
1784 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1785 policy->governor->initialized--;
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001786 } else {
1787 /* Restore original values */
1788 mutex_lock(&cpufreq_governor_lock);
1789 if (event == CPUFREQ_GOV_STOP)
1790 policy->governor_enabled = true;
1791 else if (event == CPUFREQ_GOV_START)
1792 policy->governor_enabled = false;
1793 mutex_unlock(&cpufreq_governor_lock);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001794 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001795
Viresh Kumarfe492f32013-08-06 22:53:10 +05301796 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1797 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 module_put(policy->governor->owner);
1799
1800 return ret;
1801}
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803int cpufreq_register_governor(struct cpufreq_governor *governor)
1804{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001805 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
1807 if (!governor)
1808 return -EINVAL;
1809
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001810 if (cpufreq_disabled())
1811 return -ENODEV;
1812
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001813 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001814
Viresh Kumarb3940582013-02-01 05:42:58 +00001815 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001816 err = -EBUSY;
1817 if (__find_governor(governor->name) == NULL) {
1818 err = 0;
1819 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Dave Jones32ee8c32006-02-28 00:43:23 -05001822 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001823 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824}
1825EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1828{
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001829#ifdef CONFIG_HOTPLUG_CPU
1830 int cpu;
1831#endif
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (!governor)
1834 return;
1835
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001836 if (cpufreq_disabled())
1837 return;
1838
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001839#ifdef CONFIG_HOTPLUG_CPU
1840 for_each_present_cpu(cpu) {
1841 if (cpu_online(cpu))
1842 continue;
1843 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1844 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1845 }
1846#endif
1847
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001848 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001850 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 return;
1852}
1853EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1854
1855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856/*********************************************************************
1857 * POLICY INTERFACE *
1858 *********************************************************************/
1859
1860/**
1861 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001862 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1863 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 *
1865 * Reads the current cpufreq policy.
1866 */
1867int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1868{
1869 struct cpufreq_policy *cpu_policy;
1870 if (!policy)
1871 return -EINVAL;
1872
1873 cpu_policy = cpufreq_cpu_get(cpu);
1874 if (!cpu_policy)
1875 return -EINVAL;
1876
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301877 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return 0;
1881}
1882EXPORT_SYMBOL(cpufreq_get_policy);
1883
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001884/*
Viresh Kumar037ce832013-10-02 14:13:16 +05301885 * policy : current policy.
1886 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001887 */
Viresh Kumar037ce832013-10-02 14:13:16 +05301888static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301889 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001891 int ret = 0, failed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301893 pr_debug("setting new policy for CPU %u: %u - %u kHz\n", new_policy->cpu,
1894 new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301896 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301898 if (new_policy->min > policy->max || new_policy->max < policy->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001899 ret = -EINVAL;
1900 goto error_out;
1901 }
1902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301904 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (ret)
1906 goto error_out;
1907
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001909 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301910 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001913 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301914 CPUFREQ_INCOMPATIBLE, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915
Viresh Kumarbb176f72013-06-19 14:19:33 +05301916 /*
1917 * verify the cpu speed can be set within this limit, which might be
1918 * different to the first one
1919 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301920 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08001921 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001925 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301926 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301928 policy->min = new_policy->min;
1929 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001931 pr_debug("new min and max freqs are %u - %u kHz\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301932 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001934 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301935 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001936 pr_debug("setting range\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301937 ret = cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301939 if (new_policy->governor != policy->governor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 /* save old, working values */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301941 struct cpufreq_governor *old_gov = policy->governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001943 pr_debug("governor switch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 /* end old governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301946 if (policy->governor) {
1947 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1948 unlock_policy_rwsem_write(new_policy->cpu);
1949 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001950 CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301951 lock_policy_rwsem_write(new_policy->cpu);
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 /* start new governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301955 policy->governor = new_policy->governor;
1956 if (!__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT)) {
1957 if (!__cpufreq_governor(policy, CPUFREQ_GOV_START)) {
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001958 failed = 0;
Viresh Kumar955ef482013-05-16 05:09:58 +00001959 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301960 unlock_policy_rwsem_write(new_policy->cpu);
1961 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001962 CPUFREQ_GOV_POLICY_EXIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301963 lock_policy_rwsem_write(new_policy->cpu);
Viresh Kumar955ef482013-05-16 05:09:58 +00001964 }
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001965 }
1966
1967 if (failed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 /* new governor failed, so re-start old one */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001969 pr_debug("starting governor %s failed\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301970 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if (old_gov) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301972 policy->governor = old_gov;
1973 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001974 CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301975 __cpufreq_governor(policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301976 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978 ret = -EINVAL;
1979 goto error_out;
1980 }
1981 /* might be a policy change, too, so fall through */
1982 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001983 pr_debug("governor: change or update limits\n");
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301984 ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 }
1986
Dave Jones7d5e3502006-02-02 17:03:42 -05001987error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 return ret;
1989}
1990
1991/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1993 * @cpu: CPU which shall be re-evaluated
1994 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001995 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 * at different times.
1997 */
1998int cpufreq_update_policy(unsigned int cpu)
1999{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302000 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2001 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02002002 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302004 if (!policy) {
Julia Lawallf1829e42008-07-25 22:44:53 +02002005 ret = -ENODEV;
2006 goto no_policy;
2007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Viresh Kumar1b750e32013-10-02 14:13:09 +05302009 lock_policy_rwsem_write(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002011 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302012 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302013 new_policy.min = policy->user_policy.min;
2014 new_policy.max = policy->user_policy.max;
2015 new_policy.policy = policy->user_policy.policy;
2016 new_policy.governor = policy->user_policy.governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Viresh Kumarbb176f72013-06-19 14:19:33 +05302018 /*
2019 * BIOS might change freq behind our back
2020 * -> ask driver for current freq and notify governors about a change
2021 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002022 if (cpufreq_driver->get) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302023 new_policy.cur = cpufreq_driver->get(cpu);
2024 if (!policy->cur) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002025 pr_debug("Driver did not initialize current freq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302026 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002027 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302028 if (policy->cur != new_policy.cur && cpufreq_driver->target)
2029 cpufreq_out_of_sync(cpu, policy->cur,
2030 new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002031 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002032 }
2033
Viresh Kumar037ce832013-10-02 14:13:16 +05302034 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002036 unlock_policy_rwsem_write(cpu);
2037
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302038 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02002039no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 return ret;
2041}
2042EXPORT_SYMBOL(cpufreq_update_policy);
2043
Paul Gortmaker27609842013-06-19 13:54:04 -04002044static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002045 unsigned long action, void *hcpu)
2046{
2047 unsigned int cpu = (unsigned long)hcpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002048 struct device *dev;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302049 bool frozen = false;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002050
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002051 dev = get_cpu_device(cpu);
2052 if (dev) {
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302053
2054 if (action & CPU_TASKS_FROZEN)
2055 frozen = true;
2056
2057 switch (action & ~CPU_TASKS_FROZEN) {
Ashok Rajc32b6b82005-10-30 14:59:54 -08002058 case CPU_ONLINE:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302059 __cpufreq_add_dev(dev, NULL, frozen);
Srivatsa S. Bhat23d328992013-07-30 04:23:56 +05302060 cpufreq_update_policy(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002061 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302062
Ashok Rajc32b6b82005-10-30 14:59:54 -08002063 case CPU_DOWN_PREPARE:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302064 __cpufreq_remove_dev_prepare(dev, NULL, frozen);
Srivatsa S. Bhat1aee40a2013-09-07 01:23:27 +05302065 break;
2066
2067 case CPU_POST_DEAD:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302068 __cpufreq_remove_dev_finish(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002069 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302070
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002071 case CPU_DOWN_FAILED:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302072 __cpufreq_add_dev(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002073 break;
2074 }
2075 }
2076 return NOTIFY_OK;
2077}
2078
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002079static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302080 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002081};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083/*********************************************************************
2084 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2085 *********************************************************************/
2086
2087/**
2088 * cpufreq_register_driver - register a CPU Frequency driver
2089 * @driver_data: A struct cpufreq_driver containing the values#
2090 * submitted by the CPU Frequency driver.
2091 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302092 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002094 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 *
2096 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002097int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
2099 unsigned long flags;
2100 int ret;
2101
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002102 if (cpufreq_disabled())
2103 return -ENODEV;
2104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 if (!driver_data || !driver_data->verify || !driver_data->init ||
2106 ((!driver_data->setpolicy) && (!driver_data->target)))
2107 return -EINVAL;
2108
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002109 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
2111 if (driver_data->setpolicy)
2112 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2113
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002114 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002115 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002116 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Yinghai Lu4dea58062013-09-18 21:05:20 -07002117 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002119 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002120 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002122 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002123 if (ret)
2124 goto err_null_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002126 if (!(cpufreq_driver->flags & CPUFREQ_STICKY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 int i;
2128 ret = -ENODEV;
2129
2130 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07002131 for (i = 0; i < nr_cpu_ids; i++)
2132 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07002134 break;
2135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
2137 /* if all ->init() calls failed, unregister */
2138 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002139 pr_debug("no CPU initialized for driver %s\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302140 driver_data->name);
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002141 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 }
2143 }
2144
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002145 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002146 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002148 return 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002149err_if_unreg:
2150 subsys_interface_unregister(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002151err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002152 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002153 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002154 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones4d34a672008-02-07 16:33:49 -05002155 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159/**
2160 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2161 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302162 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 * the right to do so, i.e. if you have succeeded in initialising before!
2164 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2165 * currently not initialised.
2166 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002167int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
2169 unsigned long flags;
2170
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002171 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002174 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002176 subsys_interface_unregister(&cpufreq_interface);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002177 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Viresh Kumar6eed9402013-08-06 22:53:11 +05302179 down_write(&cpufreq_rwsem);
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002180 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302181
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002182 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302183
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002184 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302185 up_write(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187 return 0;
2188}
2189EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002190
2191static int __init cpufreq_core_init(void)
2192{
2193 int cpu;
2194
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002195 if (cpufreq_disabled())
2196 return -ENODEV;
2197
Viresh Kumar474deff2013-08-20 12:08:25 +05302198 for_each_possible_cpu(cpu)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002199 init_rwsem(&per_cpu(cpu_policy_rwsem, cpu));
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002200
Viresh Kumar2361be22013-05-17 16:09:09 +05302201 cpufreq_global_kobject = kobject_create();
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002202 BUG_ON(!cpufreq_global_kobject);
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01002203 register_syscore_ops(&cpufreq_syscore_ops);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002204
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002205 return 0;
2206}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002207core_initcall(cpufreq_core_init);