blob: f13a663d1da500202863f0c9a019fb7b4cb74e5f [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
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +053050static inline bool has_target(void)
51{
52 return cpufreq_driver->target_index || cpufreq_driver->target;
53}
54
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080055/*
Viresh Kumar6eed9402013-08-06 22:53:11 +053056 * rwsem to guarantee that cpufreq driver module doesn't unload during critical
57 * sections
58 */
59static DECLARE_RWSEM(cpufreq_rwsem);
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/* internal prototypes */
Dave Jones29464f22009-01-18 01:37:11 -050062static int __cpufreq_governor(struct cpufreq_policy *policy,
63 unsigned int event);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -080064static unsigned int __cpufreq_get(unsigned int cpu);
David Howells65f27f32006-11-22 14:55:48 +000065static void handle_update(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/**
Dave Jones32ee8c32006-02-28 00:43:23 -050068 * Two notifier lists: the "policy" list is involved in the
69 * validation process for a new CPU frequency policy; the
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * "transition" list for kernel code that needs to handle
71 * changes to devices when the CPU clock speed changes.
72 * The mutex locks both lists.
73 */
Alan Sterne041c682006-03-27 01:16:30 -080074static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
Alan Sternb4dfdbb2006-10-04 02:17:06 -070075static struct srcu_notifier_head cpufreq_transition_notifier_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -020077static bool init_cpufreq_transition_notifier_list_called;
Alan Sternb4dfdbb2006-10-04 02:17:06 -070078static int __init init_cpufreq_transition_notifier_list(void)
79{
80 srcu_init_notifier_head(&cpufreq_transition_notifier_list);
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -020081 init_cpufreq_transition_notifier_list_called = true;
Alan Sternb4dfdbb2006-10-04 02:17:06 -070082 return 0;
83}
Linus Torvaldsb3438f82006-11-20 11:47:18 -080084pure_initcall(init_cpufreq_transition_notifier_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -040086static int off __read_mostly;
Viresh Kumarda584452012-10-26 00:51:32 +020087static int cpufreq_disabled(void)
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -040088{
89 return off;
90}
91void disable_cpufreq(void)
92{
93 off = 1;
94}
Linus Torvalds1da177e2005-04-16 15:20:36 -070095static LIST_HEAD(cpufreq_governor_list);
Dave Jones29464f22009-01-18 01:37:11 -050096static DEFINE_MUTEX(cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Viresh Kumar4d5dcc42013-03-27 15:58:58 +000098bool have_governor_per_policy(void)
99{
Viresh Kumar0b981e72013-10-02 14:13:18 +0530100 return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000101}
Viresh Kumar3f869d62013-05-16 05:09:56 +0000102EXPORT_SYMBOL_GPL(have_governor_per_policy);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +0000103
Viresh Kumar944e9a02013-05-16 05:09:57 +0000104struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
105{
106 if (have_governor_per_policy())
107 return &policy->kobj;
108 else
109 return cpufreq_global_kobject;
110}
111EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
112
Viresh Kumar72a4ce32013-05-17 11:26:32 +0000113static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
114{
115 u64 idle_time;
116 u64 cur_wall_time;
117 u64 busy_time;
118
119 cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
120
121 busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
122 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
123 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
124 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
125 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
126 busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
127
128 idle_time = cur_wall_time - busy_time;
129 if (wall)
130 *wall = cputime_to_usecs(cur_wall_time);
131
132 return cputime_to_usecs(idle_time);
133}
134
135u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
136{
137 u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
138
139 if (idle_time == -1ULL)
140 return get_cpu_idle_time_jiffy(cpu, wall);
141 else if (!io_busy)
142 idle_time += get_cpu_iowait_time_us(cpu, wall);
143
144 return idle_time;
145}
146EXPORT_SYMBOL_GPL(get_cpu_idle_time);
147
Viresh Kumar70e9e772013-10-03 20:29:07 +0530148/*
149 * This is a generic cpufreq init() routine which can be used by cpufreq
150 * drivers of SMP systems. It will do following:
151 * - validate & show freq table passed
152 * - set policies transition latency
153 * - policy->cpus with all possible CPUs
154 */
155int cpufreq_generic_init(struct cpufreq_policy *policy,
156 struct cpufreq_frequency_table *table,
157 unsigned int transition_latency)
158{
159 int ret;
160
161 ret = cpufreq_table_validate_and_show(policy, table);
162 if (ret) {
163 pr_err("%s: invalid frequency table: %d\n", __func__, ret);
164 return ret;
165 }
166
167 policy->cpuinfo.transition_latency = transition_latency;
168
169 /*
170 * The driver only supports the SMP configuartion where all processors
171 * share the clock and voltage and clock.
172 */
173 cpumask_setall(policy->cpus);
174
175 return 0;
176}
177EXPORT_SYMBOL_GPL(cpufreq_generic_init);
178
Viresh Kumar6eed9402013-08-06 22:53:11 +0530179struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Viresh Kumar6eed9402013-08-06 22:53:11 +0530181 struct cpufreq_policy *policy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 unsigned long flags;
183
Viresh Kumar6eed9402013-08-06 22:53:11 +0530184 if (cpufreq_disabled() || (cpu >= nr_cpu_ids))
185 return NULL;
186
187 if (!down_read_trylock(&cpufreq_rwsem))
188 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 /* get the cpufreq driver */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000191 read_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Viresh Kumar6eed9402013-08-06 22:53:11 +0530193 if (cpufreq_driver) {
194 /* get the CPU */
195 policy = per_cpu(cpufreq_cpu_data, cpu);
196 if (policy)
197 kobject_get(&policy->kobj);
198 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200199
Viresh Kumar6eed9402013-08-06 22:53:11 +0530200 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530202 if (!policy)
Viresh Kumar6eed9402013-08-06 22:53:11 +0530203 up_read(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530205 return policy;
Stephen Boyda9144432012-07-20 18:14:38 +0000206}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
208
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530209void cpufreq_cpu_put(struct cpufreq_policy *policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000211 if (cpufreq_disabled())
212 return;
213
Viresh Kumar6eed9402013-08-06 22:53:11 +0530214 kobject_put(&policy->kobj);
215 up_read(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/*********************************************************************
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 * EXTERNALLY AFFECTING FREQUENCY CHANGES *
221 *********************************************************************/
222
223/**
224 * adjust_jiffies - adjust the system "loops_per_jiffy"
225 *
226 * This function alters the system "loops_per_jiffy" for the clock
227 * speed change. Note that loops_per_jiffy cannot be updated on SMP
Dave Jones32ee8c32006-02-28 00:43:23 -0500228 * systems as each CPU might be scaled differently. So, use the arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 * per-CPU loops_per_jiffy value wherever possible.
230 */
231#ifndef CONFIG_SMP
232static unsigned long l_p_j_ref;
Viresh Kumarbb176f72013-06-19 14:19:33 +0530233static unsigned int l_p_j_ref_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Arjan van de Ven858119e2006-01-14 13:20:43 -0800235static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 if (ci->flags & CPUFREQ_CONST_LOOPS)
238 return;
239
240 if (!l_p_j_ref_freq) {
241 l_p_j_ref = loops_per_jiffy;
242 l_p_j_ref_freq = ci->old;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200243 pr_debug("saving %lu as reference value for loops_per_jiffy; "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530244 "freq is %u kHz\n", l_p_j_ref, l_p_j_ref_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
Viresh Kumarbb176f72013-06-19 14:19:33 +0530246 if ((val == CPUFREQ_POSTCHANGE && ci->old != ci->new) ||
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -0700247 (val == CPUFREQ_RESUMECHANGE || val == CPUFREQ_SUSPENDCHANGE)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530248 loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
249 ci->new);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200250 pr_debug("scaling loops_per_jiffy to %lu "
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530251 "for frequency %u kHz\n", loops_per_jiffy, ci->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253}
254#else
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530255static inline void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
256{
257 return;
258}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259#endif
260
Viresh Kumar0956df9c2013-06-19 14:19:34 +0530261static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530262 struct cpufreq_freqs *freqs, unsigned int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 BUG_ON(irqs_disabled());
265
Dirk Brandewied5aaffa2013-01-17 16:22:21 +0000266 if (cpufreq_disabled())
267 return;
268
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200269 freqs->flags = cpufreq_driver->flags;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200270 pr_debug("notification %u of frequency transition to %u kHz\n",
Dave Jonese4472cb2006-01-31 15:53:55 -0800271 state, freqs->new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 switch (state) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 case CPUFREQ_PRECHANGE:
Dave Jones32ee8c32006-02-28 00:43:23 -0500276 /* detect if the driver reported a value as "old frequency"
Dave Jonese4472cb2006-01-31 15:53:55 -0800277 * which is not equal to what the cpufreq core thinks is
278 * "old frequency".
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200280 if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Dave Jonese4472cb2006-01-31 15:53:55 -0800281 if ((policy) && (policy->cpu == freqs->cpu) &&
282 (policy->cur) && (policy->cur != freqs->old)) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200283 pr_debug("Warning: CPU frequency is"
Dave Jonese4472cb2006-01-31 15:53:55 -0800284 " %u, cpufreq assumed %u kHz.\n",
285 freqs->old, policy->cur);
286 freqs->old = policy->cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288 }
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700289 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800290 CPUFREQ_PRECHANGE, freqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
292 break;
Dave Jonese4472cb2006-01-31 15:53:55 -0800293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 case CPUFREQ_POSTCHANGE:
295 adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200296 pr_debug("FREQ: %lu - CPU: %lu", (unsigned long)freqs->new,
Thomas Renninger6f4f2722010-04-20 13:17:36 +0200297 (unsigned long)freqs->cpu);
Thomas Renninger25e41932011-01-03 17:50:44 +0100298 trace_cpu_frequency(freqs->new, freqs->cpu);
Alan Sternb4dfdbb2006-10-04 02:17:06 -0700299 srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
Alan Sterne041c682006-03-27 01:16:30 -0800300 CPUFREQ_POSTCHANGE, freqs);
Dave Jonese4472cb2006-01-31 15:53:55 -0800301 if (likely(policy) && likely(policy->cpu == freqs->cpu))
302 policy->cur = freqs->new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 break;
304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
Viresh Kumarbb176f72013-06-19 14:19:33 +0530306
Viresh Kumarb43a7ff2013-03-24 11:56:43 +0530307/**
308 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
309 * on frequency transition.
310 *
311 * This function calls the transition notifiers and the "adjust_jiffies"
312 * function. It is called twice on all CPU frequency changes that have
313 * external effects.
314 */
315void cpufreq_notify_transition(struct cpufreq_policy *policy,
316 struct cpufreq_freqs *freqs, unsigned int state)
317{
318 for_each_cpu(freqs->cpu, policy->cpus)
319 __cpufreq_notify_transition(policy, freqs, state);
320}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321EXPORT_SYMBOL_GPL(cpufreq_notify_transition);
322
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/*********************************************************************
325 * SYSFS INTERFACE *
326 *********************************************************************/
327
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700328static struct cpufreq_governor *__find_governor(const char *str_governor)
329{
330 struct cpufreq_governor *t;
331
332 list_for_each_entry(t, &cpufreq_governor_list, governor_list)
Dave Jones29464f22009-01-18 01:37:11 -0500333 if (!strnicmp(str_governor, t->name, CPUFREQ_NAME_LEN))
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700334 return t;
335
336 return NULL;
337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/**
340 * cpufreq_parse_governor - parse a governor string
341 */
Dave Jones905d77c2008-03-05 14:28:32 -0500342static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 struct cpufreq_governor **governor)
344{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700345 int err = -EINVAL;
346
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200347 if (!cpufreq_driver)
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700348 goto out;
349
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200350 if (cpufreq_driver->setpolicy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (!strnicmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
352 *policy = CPUFREQ_POLICY_PERFORMANCE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700353 err = 0;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530354 } else if (!strnicmp(str_governor, "powersave",
355 CPUFREQ_NAME_LEN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *policy = CPUFREQ_POLICY_POWERSAVE;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700357 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530359 } else if (has_target()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 struct cpufreq_governor *t;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700361
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800362 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700363
364 t = __find_governor(str_governor);
365
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700366 if (t == NULL) {
Kees Cook1a8e1462011-05-04 08:38:56 -0700367 int ret;
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700368
Kees Cook1a8e1462011-05-04 08:38:56 -0700369 mutex_unlock(&cpufreq_governor_mutex);
370 ret = request_module("cpufreq_%s", str_governor);
371 mutex_lock(&cpufreq_governor_mutex);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700372
Kees Cook1a8e1462011-05-04 08:38:56 -0700373 if (ret == 0)
374 t = __find_governor(str_governor);
Jeremy Fitzhardingeea714972006-07-06 12:32:01 -0700375 }
376
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700377 if (t != NULL) {
378 *governor = t;
379 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700381
akpm@osdl.org3fc54d32006-01-13 15:54:22 -0800382 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
Dave Jones29464f22009-01-18 01:37:11 -0500384out:
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -0700385 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/**
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530389 * cpufreq_per_cpu_attr_read() / show_##file_name() -
390 * print out cpufreq information
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 *
392 * Write out information from cpufreq_driver->policy[cpu]; object must be
393 * "unsigned int".
394 */
395
Dave Jones32ee8c32006-02-28 00:43:23 -0500396#define show_one(file_name, object) \
397static ssize_t show_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500398(struct cpufreq_policy *policy, char *buf) \
Dave Jones32ee8c32006-02-28 00:43:23 -0500399{ \
Dave Jones29464f22009-01-18 01:37:11 -0500400 return sprintf(buf, "%u\n", policy->object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403show_one(cpuinfo_min_freq, cpuinfo.min_freq);
404show_one(cpuinfo_max_freq, cpuinfo.max_freq);
Thomas Renningered129782009-02-04 01:17:41 +0100405show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406show_one(scaling_min_freq, min);
407show_one(scaling_max_freq, max);
408show_one(scaling_cur_freq, cur);
409
Viresh Kumar037ce832013-10-02 14:13:16 +0530410static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +0530411 struct cpufreq_policy *new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/**
414 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
415 */
416#define store_one(file_name, object) \
417static ssize_t store_##file_name \
Dave Jones905d77c2008-03-05 14:28:32 -0500418(struct cpufreq_policy *policy, const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{ \
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530420 int ret; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 struct cpufreq_policy new_policy; \
422 \
423 ret = cpufreq_get_policy(&new_policy, policy->cpu); \
424 if (ret) \
425 return -EINVAL; \
426 \
Dave Jones29464f22009-01-18 01:37:11 -0500427 ret = sscanf(buf, "%u", &new_policy.object); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (ret != 1) \
429 return -EINVAL; \
430 \
Viresh Kumar037ce832013-10-02 14:13:16 +0530431 ret = cpufreq_set_policy(policy, &new_policy); \
Thomas Renninger7970e082006-04-13 15:14:04 +0200432 policy->user_policy.object = policy->object; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 \
434 return ret ? ret : count; \
435}
436
Dave Jones29464f22009-01-18 01:37:11 -0500437store_one(scaling_min_freq, min);
438store_one(scaling_max_freq, max);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440/**
441 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
442 */
Dave Jones905d77c2008-03-05 14:28:32 -0500443static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
444 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800446 unsigned int cur_freq = __cpufreq_get(policy->cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 if (!cur_freq)
448 return sprintf(buf, "<unknown>");
449 return sprintf(buf, "%u\n", cur_freq);
450}
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452/**
453 * show_scaling_governor - show the current policy for the specified CPU
454 */
Dave Jones905d77c2008-03-05 14:28:32 -0500455static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Dave Jones29464f22009-01-18 01:37:11 -0500457 if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return sprintf(buf, "powersave\n");
459 else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
460 return sprintf(buf, "performance\n");
461 else if (policy->governor)
viresh kumar4b972f02012-10-23 01:23:43 +0200462 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
Dave Jones29464f22009-01-18 01:37:11 -0500463 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return -EINVAL;
465}
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467/**
468 * store_scaling_governor - store policy for the specified CPU
469 */
Dave Jones905d77c2008-03-05 14:28:32 -0500470static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
471 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Srivatsa S. Bhat5136fa52013-09-07 01:24:06 +0530473 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 char str_governor[16];
475 struct cpufreq_policy new_policy;
476
477 ret = cpufreq_get_policy(&new_policy, policy->cpu);
478 if (ret)
479 return ret;
480
Dave Jones29464f22009-01-18 01:37:11 -0500481 ret = sscanf(buf, "%15s", str_governor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 if (ret != 1)
483 return -EINVAL;
484
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530485 if (cpufreq_parse_governor(str_governor, &new_policy.policy,
486 &new_policy.governor))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 return -EINVAL;
488
Viresh Kumar037ce832013-10-02 14:13:16 +0530489 ret = cpufreq_set_policy(policy, &new_policy);
Thomas Renninger7970e082006-04-13 15:14:04 +0200490
491 policy->user_policy.policy = policy->policy;
492 policy->user_policy.governor = policy->governor;
Thomas Renninger7970e082006-04-13 15:14:04 +0200493
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530494 if (ret)
495 return ret;
496 else
497 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500/**
501 * show_scaling_driver - show the cpufreq driver currently loaded
502 */
Dave Jones905d77c2008-03-05 14:28:32 -0500503static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200505 return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508/**
509 * show_scaling_available_governors - show the available CPUfreq governors
510 */
Dave Jones905d77c2008-03-05 14:28:32 -0500511static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
512 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 ssize_t i = 0;
515 struct cpufreq_governor *t;
516
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530517 if (!has_target()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 i += sprintf(buf, "performance powersave");
519 goto out;
520 }
521
522 list_for_each_entry(t, &cpufreq_governor_list, governor_list) {
Dave Jones29464f22009-01-18 01:37:11 -0500523 if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
524 - (CPUFREQ_NAME_LEN + 2)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 goto out;
viresh kumar4b972f02012-10-23 01:23:43 +0200526 i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
Dave Jones7d5e3502006-02-02 17:03:42 -0500528out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 i += sprintf(&buf[i], "\n");
530 return i;
531}
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700532
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800533ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
535 ssize_t i = 0;
536 unsigned int cpu;
537
Rusty Russell835481d2009-01-04 05:18:06 -0800538 for_each_cpu(cpu, mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (i)
540 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
541 i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
542 if (i >= (PAGE_SIZE - 5))
Dave Jones29464f22009-01-18 01:37:11 -0500543 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545 i += sprintf(&buf[i], "\n");
546 return i;
547}
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800548EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700550/**
551 * show_related_cpus - show the CPUs affected by each transition even if
552 * hw coordination is in use
553 */
554static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
555{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800556 return cpufreq_show_cpus(policy->related_cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700557}
558
559/**
560 * show_affected_cpus - show the CPUs affected by each transition
561 */
562static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
563{
Lan Tianyuf4fd3792013-06-27 15:08:54 +0800564 return cpufreq_show_cpus(policy->cpus, buf);
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700565}
566
Venki Pallipadi9e769882007-10-26 10:18:21 -0700567static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
Dave Jones905d77c2008-03-05 14:28:32 -0500568 const char *buf, size_t count)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700569{
570 unsigned int freq = 0;
571 unsigned int ret;
572
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700573 if (!policy->governor || !policy->governor->store_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700574 return -EINVAL;
575
576 ret = sscanf(buf, "%u", &freq);
577 if (ret != 1)
578 return -EINVAL;
579
580 policy->governor->store_setspeed(policy, freq);
581
582 return count;
583}
584
585static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
586{
CHIKAMA masaki879000f2008-06-05 22:46:33 -0700587 if (!policy->governor || !policy->governor->show_setspeed)
Venki Pallipadi9e769882007-10-26 10:18:21 -0700588 return sprintf(buf, "<unsupported>\n");
589
590 return policy->governor->show_setspeed(policy, buf);
591}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Thomas Renningere2f74f32009-11-19 12:31:01 +0100593/**
viresh kumar8bf1ac72012-10-23 01:23:33 +0200594 * show_bios_limit - show the current cpufreq HW/BIOS limitation
Thomas Renningere2f74f32009-11-19 12:31:01 +0100595 */
596static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
597{
598 unsigned int limit;
599 int ret;
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200600 if (cpufreq_driver->bios_limit) {
601 ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
Thomas Renningere2f74f32009-11-19 12:31:01 +0100602 if (!ret)
603 return sprintf(buf, "%u\n", limit);
604 }
605 return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
606}
607
Borislav Petkov6dad2a22010-03-31 21:56:46 +0200608cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
609cpufreq_freq_attr_ro(cpuinfo_min_freq);
610cpufreq_freq_attr_ro(cpuinfo_max_freq);
611cpufreq_freq_attr_ro(cpuinfo_transition_latency);
612cpufreq_freq_attr_ro(scaling_available_governors);
613cpufreq_freq_attr_ro(scaling_driver);
614cpufreq_freq_attr_ro(scaling_cur_freq);
615cpufreq_freq_attr_ro(bios_limit);
616cpufreq_freq_attr_ro(related_cpus);
617cpufreq_freq_attr_ro(affected_cpus);
618cpufreq_freq_attr_rw(scaling_min_freq);
619cpufreq_freq_attr_rw(scaling_max_freq);
620cpufreq_freq_attr_rw(scaling_governor);
621cpufreq_freq_attr_rw(scaling_setspeed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Dave Jones905d77c2008-03-05 14:28:32 -0500623static struct attribute *default_attrs[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 &cpuinfo_min_freq.attr,
625 &cpuinfo_max_freq.attr,
Thomas Renningered129782009-02-04 01:17:41 +0100626 &cpuinfo_transition_latency.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 &scaling_min_freq.attr,
628 &scaling_max_freq.attr,
629 &affected_cpus.attr,
Darrick J. Wonge8628dd2008-04-18 13:31:12 -0700630 &related_cpus.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 &scaling_governor.attr,
632 &scaling_driver.attr,
633 &scaling_available_governors.attr,
Venki Pallipadi9e769882007-10-26 10:18:21 -0700634 &scaling_setspeed.attr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 NULL
636};
637
Dave Jones29464f22009-01-18 01:37:11 -0500638#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
639#define to_attr(a) container_of(a, struct freq_attr, attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Dave Jones29464f22009-01-18 01:37:11 -0500641static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Dave Jones905d77c2008-03-05 14:28:32 -0500643 struct cpufreq_policy *policy = to_policy(kobj);
644 struct freq_attr *fattr = to_attr(attr);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530645 ssize_t ret;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530646
647 if (!down_read_trylock(&cpufreq_rwsem))
Viresh Kumar1b750e32013-10-02 14:13:09 +0530648 return -EINVAL;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800649
viresh kumarad7722d2013-10-18 19:10:15 +0530650 down_read(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800651
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530652 if (fattr->show)
653 ret = fattr->show(policy, buf);
654 else
655 ret = -EIO;
656
viresh kumarad7722d2013-10-18 19:10:15 +0530657 up_read(&policy->rwsem);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530658 up_read(&cpufreq_rwsem);
Viresh Kumar1b750e32013-10-02 14:13:09 +0530659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return ret;
661}
662
Dave Jones905d77c2008-03-05 14:28:32 -0500663static ssize_t store(struct kobject *kobj, struct attribute *attr,
664 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Dave Jones905d77c2008-03-05 14:28:32 -0500666 struct cpufreq_policy *policy = to_policy(kobj);
667 struct freq_attr *fattr = to_attr(attr);
Dave Jonesa07530b2008-03-05 14:22:25 -0500668 ssize_t ret = -EINVAL;
Viresh Kumar6eed9402013-08-06 22:53:11 +0530669
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530670 get_online_cpus();
671
672 if (!cpu_online(policy->cpu))
673 goto unlock;
674
Viresh Kumar6eed9402013-08-06 22:53:11 +0530675 if (!down_read_trylock(&cpufreq_rwsem))
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530676 goto unlock;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800677
viresh kumarad7722d2013-10-18 19:10:15 +0530678 down_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -0800679
Gautham R Shenoye08f5f52006-10-26 16:20:58 +0530680 if (fattr->store)
681 ret = fattr->store(policy, buf, count);
682 else
683 ret = -EIO;
684
viresh kumarad7722d2013-10-18 19:10:15 +0530685 up_write(&policy->rwsem);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530686
Viresh Kumar6eed9402013-08-06 22:53:11 +0530687 up_read(&cpufreq_rwsem);
Srivatsa S. Bhat4f750c92013-09-07 01:23:43 +0530688unlock:
689 put_online_cpus();
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return ret;
692}
693
Dave Jones905d77c2008-03-05 14:28:32 -0500694static void cpufreq_sysfs_release(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Dave Jones905d77c2008-03-05 14:28:32 -0500696 struct cpufreq_policy *policy = to_policy(kobj);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200697 pr_debug("last reference is dropped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 complete(&policy->kobj_unregister);
699}
700
Emese Revfy52cf25d2010-01-19 02:58:23 +0100701static const struct sysfs_ops sysfs_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 .show = show,
703 .store = store,
704};
705
706static struct kobj_type ktype_cpufreq = {
707 .sysfs_ops = &sysfs_ops,
708 .default_attrs = default_attrs,
709 .release = cpufreq_sysfs_release,
710};
711
Viresh Kumar2361be22013-05-17 16:09:09 +0530712struct kobject *cpufreq_global_kobject;
713EXPORT_SYMBOL(cpufreq_global_kobject);
714
715static int cpufreq_global_kobject_usage;
716
717int cpufreq_get_global_kobject(void)
718{
719 if (!cpufreq_global_kobject_usage++)
720 return kobject_add(cpufreq_global_kobject,
721 &cpu_subsys.dev_root->kobj, "%s", "cpufreq");
722
723 return 0;
724}
725EXPORT_SYMBOL(cpufreq_get_global_kobject);
726
727void cpufreq_put_global_kobject(void)
728{
729 if (!--cpufreq_global_kobject_usage)
730 kobject_del(cpufreq_global_kobject);
731}
732EXPORT_SYMBOL(cpufreq_put_global_kobject);
733
734int cpufreq_sysfs_create_file(const struct attribute *attr)
735{
736 int ret = cpufreq_get_global_kobject();
737
738 if (!ret) {
739 ret = sysfs_create_file(cpufreq_global_kobject, attr);
740 if (ret)
741 cpufreq_put_global_kobject();
742 }
743
744 return ret;
745}
746EXPORT_SYMBOL(cpufreq_sysfs_create_file);
747
748void cpufreq_sysfs_remove_file(const struct attribute *attr)
749{
750 sysfs_remove_file(cpufreq_global_kobject, attr);
751 cpufreq_put_global_kobject();
752}
753EXPORT_SYMBOL(cpufreq_sysfs_remove_file);
754
Dave Jones19d6f7e2009-07-08 17:35:39 -0400755/* symlink affected CPUs */
Viresh Kumar308b60e2013-07-31 14:35:14 +0200756static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400757{
758 unsigned int j;
759 int ret = 0;
760
761 for_each_cpu(j, policy->cpus) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800762 struct device *cpu_dev;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400763
Viresh Kumar308b60e2013-07-31 14:35:14 +0200764 if (j == policy->cpu)
Dave Jones19d6f7e2009-07-08 17:35:39 -0400765 continue;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400766
Viresh Kumare8fdde12013-07-31 14:31:33 +0200767 pr_debug("Adding link for CPU: %u\n", j);
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800768 cpu_dev = get_cpu_device(j);
769 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Dave Jones19d6f7e2009-07-08 17:35:39 -0400770 "cpufreq");
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200771 if (ret)
772 break;
Dave Jones19d6f7e2009-07-08 17:35:39 -0400773 }
774 return ret;
775}
776
Viresh Kumar308b60e2013-07-31 14:35:14 +0200777static int cpufreq_add_dev_interface(struct cpufreq_policy *policy,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800778 struct device *dev)
Dave Jones909a6942009-07-08 18:05:42 -0400779{
780 struct freq_attr **drv_attr;
Dave Jones909a6942009-07-08 18:05:42 -0400781 int ret = 0;
Dave Jones909a6942009-07-08 18:05:42 -0400782
783 /* prepare interface data */
784 ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800785 &dev->kobj, "cpufreq");
Dave Jones909a6942009-07-08 18:05:42 -0400786 if (ret)
787 return ret;
788
789 /* set up files for this cpu device */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200790 drv_attr = cpufreq_driver->attr;
Dave Jones909a6942009-07-08 18:05:42 -0400791 while ((drv_attr) && (*drv_attr)) {
792 ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
793 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200794 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400795 drv_attr++;
796 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200797 if (cpufreq_driver->get) {
Dave Jones909a6942009-07-08 18:05:42 -0400798 ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
799 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200800 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400801 }
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530802 if (has_target()) {
Dave Jones909a6942009-07-08 18:05:42 -0400803 ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
804 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200805 goto err_out_kobj_put;
Dave Jones909a6942009-07-08 18:05:42 -0400806 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200807 if (cpufreq_driver->bios_limit) {
Thomas Renningere2f74f32009-11-19 12:31:01 +0100808 ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
809 if (ret)
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200810 goto err_out_kobj_put;
Thomas Renningere2f74f32009-11-19 12:31:01 +0100811 }
Dave Jones909a6942009-07-08 18:05:42 -0400812
Viresh Kumar308b60e2013-07-31 14:35:14 +0200813 ret = cpufreq_add_dev_symlink(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400814 if (ret)
815 goto err_out_kobj_put;
816
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +0530817 return ret;
818
819err_out_kobj_put:
820 kobject_put(&policy->kobj);
821 wait_for_completion(&policy->kobj_unregister);
822 return ret;
823}
824
825static void cpufreq_init_policy(struct cpufreq_policy *policy)
826{
827 struct cpufreq_policy new_policy;
828 int ret = 0;
829
Viresh Kumard5b73cd2013-08-06 22:53:06 +0530830 memcpy(&new_policy, policy, sizeof(*policy));
Jason Barona27a9ab2013-12-19 22:50:50 +0000831
832 /* Use the default policy if its valid. */
833 if (cpufreq_driver->setpolicy)
834 cpufreq_parse_governor(policy->governor->name,
835 &new_policy.policy, NULL);
836
Viresh Kumar037ce832013-10-02 14:13:16 +0530837 /* assure that the starting sequence is run in cpufreq_set_policy */
Dave Jonesecf7e462009-07-08 18:48:47 -0400838 policy->governor = NULL;
839
840 /* set default policy */
Viresh Kumar037ce832013-10-02 14:13:16 +0530841 ret = cpufreq_set_policy(policy, &new_policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400842 policy->user_policy.policy = policy->policy;
843 policy->user_policy.governor = policy->governor;
844
845 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200846 pr_debug("setting policy failed\n");
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200847 if (cpufreq_driver->exit)
848 cpufreq_driver->exit(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400849 }
Dave Jones909a6942009-07-08 18:05:42 -0400850}
851
Viresh Kumarfcf80582013-01-29 14:39:08 +0000852#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumard8d3b472013-08-04 01:20:07 +0200853static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy,
Viresh Kumar42f921a2013-12-20 21:26:02 +0530854 unsigned int cpu, struct device *dev)
Viresh Kumarfcf80582013-01-29 14:39:08 +0000855{
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530856 int ret = 0;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000857 unsigned long flags;
858
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530859 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530860 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
861 if (ret) {
862 pr_err("%s: Failed to stop governor\n", __func__);
863 return ret;
864 }
865 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000866
viresh kumarad7722d2013-10-18 19:10:15 +0530867 down_write(&policy->rwsem);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530868
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000869 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530870
Viresh Kumarfcf80582013-01-29 14:39:08 +0000871 cpumask_set_cpu(cpu, policy->cpus);
872 per_cpu(cpufreq_cpu_data, cpu) = policy;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000873 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +0000874
viresh kumarad7722d2013-10-18 19:10:15 +0530875 up_write(&policy->rwsem);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530876
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530877 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530878 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
879 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
880 pr_err("%s: Failed to start governor\n", __func__);
881 return ret;
882 }
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200883 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000884
Viresh Kumar42f921a2013-12-20 21:26:02 +0530885 return sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq");
Viresh Kumarfcf80582013-01-29 14:39:08 +0000886}
887#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530889static struct cpufreq_policy *cpufreq_policy_restore(unsigned int cpu)
890{
891 struct cpufreq_policy *policy;
892 unsigned long flags;
893
Lan Tianyu44871c92013-09-11 15:05:05 +0800894 read_lock_irqsave(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530895
896 policy = per_cpu(cpufreq_cpu_data_fallback, cpu);
897
Lan Tianyu44871c92013-09-11 15:05:05 +0800898 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530899
900 return policy;
901}
902
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530903static struct cpufreq_policy *cpufreq_policy_alloc(void)
904{
905 struct cpufreq_policy *policy;
906
907 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
908 if (!policy)
909 return NULL;
910
911 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
912 goto err_free_policy;
913
914 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
915 goto err_free_cpumask;
916
Lukasz Majewskic88a1f82013-08-06 22:53:08 +0530917 INIT_LIST_HEAD(&policy->policy_list);
viresh kumarad7722d2013-10-18 19:10:15 +0530918 init_rwsem(&policy->rwsem);
919
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530920 return policy;
921
922err_free_cpumask:
923 free_cpumask_var(policy->cpus);
924err_free_policy:
925 kfree(policy);
926
927 return NULL;
928}
929
Viresh Kumar42f921a2013-12-20 21:26:02 +0530930static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy)
931{
932 struct kobject *kobj;
933 struct completion *cmp;
934
935 down_read(&policy->rwsem);
936 kobj = &policy->kobj;
937 cmp = &policy->kobj_unregister;
938 up_read(&policy->rwsem);
939 kobject_put(kobj);
940
941 /*
942 * We need to make sure that the underlying kobj is
943 * actually not referenced anymore by anybody before we
944 * proceed with unloading.
945 */
946 pr_debug("waiting for dropping of refcount\n");
947 wait_for_completion(cmp);
948 pr_debug("wait complete\n");
949}
950
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530951static void cpufreq_policy_free(struct cpufreq_policy *policy)
952{
953 free_cpumask_var(policy->related_cpus);
954 free_cpumask_var(policy->cpus);
955 kfree(policy);
956}
957
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530958static void update_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
959{
Srivatsa S. Bhat99ec8992013-09-12 17:29:09 +0530960 if (WARN_ON(cpu == policy->cpu))
Srivatsa S. Bhatcb38ed52013-09-12 01:43:42 +0530961 return;
962
viresh kumarad7722d2013-10-18 19:10:15 +0530963 down_write(&policy->rwsem);
Viresh Kumar8efd5762013-09-17 10:22:11 +0530964
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530965 policy->last_cpu = policy->cpu;
966 policy->cpu = cpu;
967
viresh kumarad7722d2013-10-18 19:10:15 +0530968 up_write(&policy->rwsem);
Viresh Kumar8efd5762013-09-17 10:22:11 +0530969
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530970 cpufreq_frequency_table_update_policy_cpu(policy);
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530971 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
972 CPUFREQ_UPDATE_POLICY_CPU, policy);
973}
974
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530975static int __cpufreq_add_dev(struct device *dev, struct subsys_interface *sif,
976 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Viresh Kumarfcf80582013-01-29 14:39:08 +0000978 unsigned int j, cpu = dev->id;
Viresh Kumar65922462013-02-07 10:56:03 +0530979 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500982#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumar1b274292013-08-20 12:08:26 +0530983 struct cpufreq_policy *tpolicy;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000984 struct cpufreq_governor *gov;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500985#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Ashok Rajc32b6b82005-10-30 14:59:54 -0800987 if (cpu_is_offline(cpu))
988 return 0;
989
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200990 pr_debug("adding CPU %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992#ifdef CONFIG_SMP
993 /* check whether a different CPU already registered this
994 * CPU because it is in the same boat. */
995 policy = cpufreq_cpu_get(cpu);
996 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500997 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 return 0;
999 }
Li Zhong5025d622013-08-21 01:31:08 +02001000#endif
Viresh Kumarfcf80582013-01-29 14:39:08 +00001001
Viresh Kumar6eed9402013-08-06 22:53:11 +05301002 if (!down_read_trylock(&cpufreq_rwsem))
1003 return 0;
1004
Viresh Kumarfcf80582013-01-29 14:39:08 +00001005#ifdef CONFIG_HOTPLUG_CPU
1006 /* Check if this cpu was hot-unplugged earlier and has siblings */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001007 read_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +05301008 list_for_each_entry(tpolicy, &cpufreq_policy_list, policy_list) {
1009 if (cpumask_test_cpu(cpu, tpolicy->related_cpus)) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001010 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301011 ret = cpufreq_add_policy_cpu(tpolicy, cpu, dev);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301012 up_read(&cpufreq_rwsem);
1013 return ret;
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301014 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001015 }
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001016 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001017#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001019 /*
1020 * Restore the saved policy when doing light-weight init and fall back
1021 * to the full init if that fails.
1022 */
1023 policy = frozen ? cpufreq_policy_restore(cpu) : NULL;
1024 if (!policy) {
1025 frozen = false;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301026 policy = cpufreq_policy_alloc();
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001027 if (!policy)
1028 goto nomem_out;
1029 }
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301030
1031 /*
1032 * In the resume path, since we restore a saved policy, the assignment
1033 * to policy->cpu is like an update of the existing policy, rather than
1034 * the creation of a brand new one. So we need to perform this update
1035 * by invoking update_policy_cpu().
1036 */
1037 if (frozen && cpu != policy->cpu)
1038 update_policy_cpu(policy, cpu);
1039 else
1040 policy->cpu = cpu;
1041
Viresh Kumar65922462013-02-07 10:56:03 +05301042 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Rusty Russell835481d2009-01-04 05:18:06 -08001043 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001046 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 /* call driver. From then on the cpufreq must be able
1049 * to accept all calls to ->verify and ->setpolicy for this CPU
1050 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001051 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001053 pr_debug("initialization failed\n");
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301054 goto err_set_policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001056
Viresh Kumarda60ce92013-10-03 20:28:30 +05301057 if (cpufreq_driver->get) {
1058 policy->cur = cpufreq_driver->get(policy->cpu);
1059 if (!policy->cur) {
1060 pr_err("%s: ->get() failed\n", __func__);
1061 goto err_get_freq;
1062 }
1063 }
1064
Viresh Kumarfcf80582013-01-29 14:39:08 +00001065 /* related cpus should atleast have policy->cpus */
1066 cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
1067
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001068 /*
1069 * affected cpus must always be the one, which are online. We aren't
1070 * managing offline cpus here.
1071 */
1072 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1073
Mike Chan187d9f42008-12-04 12:19:17 -08001074 policy->user_policy.min = policy->min;
1075 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Thomas Renningera1531ac2008-07-29 22:32:58 -07001077 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1078 CPUFREQ_START, policy);
1079
Viresh Kumarfcf80582013-01-29 14:39:08 +00001080#ifdef CONFIG_HOTPLUG_CPU
1081 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
1082 if (gov) {
1083 policy->governor = gov;
1084 pr_debug("Restoring governor %s for cpu %d\n",
1085 policy->governor->name, cpu);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001086 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001087#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301089 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301090 for_each_cpu(j, policy->cpus)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301091 per_cpu(cpufreq_cpu_data, j) = policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301092 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1093
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301094 if (!frozen) {
Viresh Kumar308b60e2013-07-31 14:35:14 +02001095 ret = cpufreq_add_dev_interface(policy, dev);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301096 if (ret)
1097 goto err_out_unregister;
1098 }
Dave Jones8ff69732006-03-05 03:37:23 -05001099
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301100 write_lock_irqsave(&cpufreq_driver_lock, flags);
1101 list_add(&policy->policy_list, &cpufreq_policy_list);
1102 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1103
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301104 cpufreq_init_policy(policy);
1105
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001106 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301107 up_read(&cpufreq_rwsem);
1108
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001109 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return 0;
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113err_out_unregister:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001114 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301115 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001116 per_cpu(cpufreq_cpu_data, j) = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001117 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Viresh Kumarda60ce92013-10-03 20:28:30 +05301119err_get_freq:
1120 if (cpufreq_driver->exit)
1121 cpufreq_driver->exit(policy);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301122err_set_policy_cpu:
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001123 if (frozen) {
1124 /* Do not leave stale fallback data behind. */
1125 per_cpu(cpufreq_cpu_data_fallback, cpu) = NULL;
Viresh Kumar42f921a2013-12-20 21:26:02 +05301126 cpufreq_policy_put_kobj(policy);
Rafael J. Wysocki72368d12013-12-27 01:07:11 +01001127 }
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301128 cpufreq_policy_free(policy);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130nomem_out:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301131 up_read(&cpufreq_rwsem);
1132
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return ret;
1134}
1135
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301136/**
1137 * cpufreq_add_dev - add a CPU device
1138 *
1139 * Adds the cpufreq interface for a CPU device.
1140 *
1141 * The Oracle says: try running cpufreq registration/unregistration concurrently
1142 * with with cpu hotplugging and all hell will break loose. Tried to clean this
1143 * mess up, but more thorough testing is needed. - Mathieu
1144 */
1145static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1146{
1147 return __cpufreq_add_dev(dev, sif, false);
1148}
1149
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301150static int cpufreq_nominate_new_policy_cpu(struct cpufreq_policy *policy,
Viresh Kumar42f921a2013-12-20 21:26:02 +05301151 unsigned int old_cpu)
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301152{
1153 struct device *cpu_dev;
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301154 int ret;
1155
1156 /* first sibling now owns the new sysfs dir */
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301157 cpu_dev = get_cpu_device(cpumask_any_but(policy->cpus, old_cpu));
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301158
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301159 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301160 ret = kobject_move(&policy->kobj, &cpu_dev->kobj);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301161 if (ret) {
1162 pr_err("%s: Failed to move kobj: %d", __func__, ret);
1163
viresh kumarad7722d2013-10-18 19:10:15 +05301164 down_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301165 cpumask_set_cpu(old_cpu, policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301166 up_write(&policy->rwsem);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301167
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301168 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301169 "cpufreq");
1170
1171 return -EINVAL;
1172 }
1173
1174 return cpu_dev->id;
1175}
1176
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301177static int __cpufreq_remove_dev_prepare(struct device *dev,
1178 struct subsys_interface *sif,
1179 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301181 unsigned int cpu = dev->id, cpus;
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301182 int new_cpu, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 unsigned long flags;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301184 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001186 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001188 write_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301190 policy = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301192 /* Save the policy somewhere when doing a light-weight tear-down */
1193 if (frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301194 per_cpu(cpufreq_cpu_data_fallback, cpu) = policy;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301195
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001196 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301198 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001199 pr_debug("%s: No cpu_data found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301203 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301204 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1205 if (ret) {
1206 pr_err("%s: Failed to stop governor\n", __func__);
1207 return ret;
1208 }
1209 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001210
Jacob Shin27ecddc2011-04-27 13:32:11 -05001211#ifdef CONFIG_HOTPLUG_CPU
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001212 if (!cpufreq_driver->setpolicy)
Dirk Brandewiefa69e332013-02-06 09:02:11 -08001213 strncpy(per_cpu(cpufreq_cpu_governor, cpu),
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301214 policy->governor->name, CPUFREQ_NAME_LEN);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001215#endif
1216
viresh kumarad7722d2013-10-18 19:10:15 +05301217 down_read(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301218 cpus = cpumask_weight(policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301219 up_read(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Srivatsa S. Bhat61173f22013-09-12 01:43:25 +05301221 if (cpu != policy->cpu) {
1222 if (!frozen)
1223 sysfs_remove_link(&dev->kobj, "cpufreq");
Viresh Kumar73bf0fc2013-02-05 22:21:14 +01001224 } else if (cpus > 1) {
Viresh Kumar42f921a2013-12-20 21:26:02 +05301225 new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301226 if (new_cpu >= 0) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301227 update_policy_cpu(policy, new_cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301228
1229 if (!frozen) {
Viresh Kumar75949c92013-10-02 14:13:13 +05301230 pr_debug("%s: policy Kobject moved to cpu: %d from: %d\n",
1231 __func__, new_cpu, cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301232 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001233 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001234 }
Venki Pallipadiec282972007-03-26 12:03:19 -07001235
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301236 return 0;
1237}
1238
1239static int __cpufreq_remove_dev_finish(struct device *dev,
1240 struct subsys_interface *sif,
1241 bool frozen)
1242{
1243 unsigned int cpu = dev->id, cpus;
1244 int ret;
1245 unsigned long flags;
1246 struct cpufreq_policy *policy;
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301247
1248 read_lock_irqsave(&cpufreq_driver_lock, flags);
1249 policy = per_cpu(cpufreq_cpu_data, cpu);
1250 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1251
1252 if (!policy) {
1253 pr_debug("%s: No cpu_data found\n", __func__);
1254 return -EINVAL;
1255 }
1256
viresh kumarad7722d2013-10-18 19:10:15 +05301257 down_write(&policy->rwsem);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301258 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301259
1260 if (cpus > 1)
1261 cpumask_clear_cpu(cpu, policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301262 up_write(&policy->rwsem);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301263
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001264 /* If cpu is last user of policy, free policy */
1265 if (cpus == 1) {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301266 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301267 ret = __cpufreq_governor(policy,
1268 CPUFREQ_GOV_POLICY_EXIT);
1269 if (ret) {
1270 pr_err("%s: Failed to exit governor\n",
1271 __func__);
1272 return ret;
1273 }
Viresh Kumaredab2fb2013-08-20 12:08:22 +05301274 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001275
Viresh Kumar42f921a2013-12-20 21:26:02 +05301276 if (!frozen)
1277 cpufreq_policy_put_kobj(policy);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301278
1279 /*
1280 * Perform the ->exit() even during light-weight tear-down,
1281 * since this is a core component, and is essential for the
1282 * subsequent light-weight ->init() to succeed.
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001283 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001284 if (cpufreq_driver->exit)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301285 cpufreq_driver->exit(policy);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001286
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301287 /* Remove policy from list of active policies */
1288 write_lock_irqsave(&cpufreq_driver_lock, flags);
1289 list_del(&policy->policy_list);
1290 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1291
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301292 if (!frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301293 cpufreq_policy_free(policy);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001294 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301295 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301296 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
1297 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
1298 pr_err("%s: Failed to start governor\n",
1299 __func__);
1300 return ret;
1301 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001302 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Viresh Kumar474deff2013-08-20 12:08:25 +05301305 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 return 0;
1307}
1308
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301309/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301310 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301311 *
1312 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301313 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001314static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001315{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001316 unsigned int cpu = dev->id;
Viresh Kumar27a862e2013-10-02 14:13:14 +05301317 int ret;
Venki Pallipadiec282972007-03-26 12:03:19 -07001318
1319 if (cpu_is_offline(cpu))
1320 return 0;
1321
Viresh Kumar27a862e2013-10-02 14:13:14 +05301322 ret = __cpufreq_remove_dev_prepare(dev, sif, false);
1323
1324 if (!ret)
1325 ret = __cpufreq_remove_dev_finish(dev, sif, false);
1326
1327 return ret;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001328}
1329
David Howells65f27f32006-11-22 14:55:48 +00001330static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
David Howells65f27f32006-11-22 14:55:48 +00001332 struct cpufreq_policy *policy =
1333 container_of(work, struct cpufreq_policy, update);
1334 unsigned int cpu = policy->cpu;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001335 pr_debug("handle_update for cpu %u called\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 cpufreq_update_policy(cpu);
1337}
1338
1339/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301340 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1341 * in deep trouble.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 * @cpu: cpu number
1343 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1344 * @new_freq: CPU frequency the CPU actually runs at
1345 *
Dave Jones29464f22009-01-18 01:37:11 -05001346 * We adjust to current frequency first, and need to clean up later.
1347 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301349static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1350 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301352 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301354 unsigned long flags;
1355
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001356 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 freqs.old = old_freq;
1360 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301361
1362 read_lock_irqsave(&cpufreq_driver_lock, flags);
1363 policy = per_cpu(cpufreq_cpu_data, cpu);
1364 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1365
1366 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1367 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Dave Jones32ee8c32006-02-28 00:43:23 -05001370/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301371 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001372 * @cpu: CPU number
1373 *
1374 * This is the last known freq, without actually getting it from the driver.
1375 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1376 */
1377unsigned int cpufreq_quick_get(unsigned int cpu)
1378{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001379 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301380 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001381
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001382 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1383 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001384
1385 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001386 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301387 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001388 cpufreq_cpu_put(policy);
1389 }
1390
Dave Jones4d34a672008-02-07 16:33:49 -05001391 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001392}
1393EXPORT_SYMBOL(cpufreq_quick_get);
1394
Jesse Barnes3d737102011-06-28 10:59:12 -07001395/**
1396 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1397 * @cpu: CPU number
1398 *
1399 * Just return the max possible frequency for a given CPU.
1400 */
1401unsigned int cpufreq_quick_get_max(unsigned int cpu)
1402{
1403 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1404 unsigned int ret_freq = 0;
1405
1406 if (policy) {
1407 ret_freq = policy->max;
1408 cpufreq_cpu_put(policy);
1409 }
1410
1411 return ret_freq;
1412}
1413EXPORT_SYMBOL(cpufreq_quick_get_max);
1414
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001415static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001417 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301418 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001420 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001421 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001423 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301425 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001426 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301427 /* verify no discrepancy between actual and
1428 saved value exists */
1429 if (unlikely(ret_freq != policy->cur)) {
1430 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 schedule_work(&policy->update);
1432 }
1433 }
1434
Dave Jones4d34a672008-02-07 16:33:49 -05001435 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001438/**
1439 * cpufreq_get - get the current CPU frequency (in kHz)
1440 * @cpu: CPU number
1441 *
1442 * Get the CPU current (static) CPU frequency
1443 */
1444unsigned int cpufreq_get(unsigned int cpu)
1445{
viresh kumarad7722d2013-10-18 19:10:15 +05301446 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001447 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001448
Viresh Kumar26ca8692013-09-20 22:37:31 +05301449 if (cpufreq_disabled() || !cpufreq_driver)
1450 return -ENOENT;
1451
viresh kumarad7722d2013-10-18 19:10:15 +05301452 BUG_ON(!policy);
1453
Viresh Kumar6eed9402013-08-06 22:53:11 +05301454 if (!down_read_trylock(&cpufreq_rwsem))
1455 return 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001456
viresh kumarad7722d2013-10-18 19:10:15 +05301457 down_read(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001458
1459 ret_freq = __cpufreq_get(cpu);
1460
viresh kumarad7722d2013-10-18 19:10:15 +05301461 up_read(&policy->rwsem);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301462 up_read(&cpufreq_rwsem);
1463
Dave Jones4d34a672008-02-07 16:33:49 -05001464 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465}
1466EXPORT_SYMBOL(cpufreq_get);
1467
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001468static struct subsys_interface cpufreq_interface = {
1469 .name = "cpufreq",
1470 .subsys = &cpu_subsys,
1471 .add_dev = cpufreq_add_dev,
1472 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001473};
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001476 * cpufreq_bp_suspend - Prepare the boot CPU for system suspend.
1477 *
1478 * This function is only executed for the boot processor. The other CPUs
1479 * have been put offline by means of CPU hotplug.
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001480 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001481static int cpufreq_bp_suspend(void)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001482{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301483 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001484
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001485 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301486 struct cpufreq_policy *policy;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001487
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001488 pr_debug("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001489
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001490 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301491 policy = cpufreq_cpu_get(cpu);
1492 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001493 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001494
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001495 if (cpufreq_driver->suspend) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301496 ret = cpufreq_driver->suspend(policy);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001497 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001498 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301499 "step on CPU %u\n", policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001500 }
1501
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301502 cpufreq_cpu_put(policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001503 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001504}
1505
1506/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001507 * cpufreq_bp_resume - Restore proper frequency handling of the boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 *
1509 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001510 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1511 * restored. It will verify that the current freq is in sync with
1512 * what we believe it to be. This is a bit later than when it
1513 * should be, but nonethteless it's better than calling
1514 * cpufreq_driver->get() here which might re-enable interrupts...
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001515 *
1516 * This function is only executed for the boot CPU. The other CPUs have not
1517 * been turned on yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001519static void cpufreq_bp_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301521 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001522
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001523 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301524 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001526 pr_debug("resuming cpu %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001528 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301529 policy = cpufreq_cpu_get(cpu);
1530 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001531 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001533 if (cpufreq_driver->resume) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301534 ret = cpufreq_driver->resume(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (ret) {
1536 printk(KERN_ERR "cpufreq: resume failed in ->resume "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301537 "step on CPU %u\n", policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001538 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 }
1540 }
1541
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301542 schedule_work(&policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001543
Dave Jonesc9060492008-02-07 16:32:18 -05001544fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301545 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001548static struct syscore_ops cpufreq_syscore_ops = {
1549 .suspend = cpufreq_bp_suspend,
1550 .resume = cpufreq_bp_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551};
1552
Borislav Petkov9d950462013-01-20 10:24:28 +00001553/**
1554 * cpufreq_get_current_driver - return current driver's name
1555 *
1556 * Return the name string of the currently loaded cpufreq driver
1557 * or NULL, if none.
1558 */
1559const char *cpufreq_get_current_driver(void)
1560{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001561 if (cpufreq_driver)
1562 return cpufreq_driver->name;
1563
1564 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001565}
1566EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568/*********************************************************************
1569 * NOTIFIER LISTS INTERFACE *
1570 *********************************************************************/
1571
1572/**
1573 * cpufreq_register_notifier - register a driver with cpufreq
1574 * @nb: notifier function to register
1575 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1576 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001577 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 * are notified about clock rate changes (once before and once after
1579 * the transition), or a list of drivers that are notified about
1580 * changes in cpufreq policy.
1581 *
1582 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001583 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 */
1585int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1586{
1587 int ret;
1588
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001589 if (cpufreq_disabled())
1590 return -EINVAL;
1591
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001592 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 switch (list) {
1595 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001596 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001597 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 break;
1599 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001600 ret = blocking_notifier_chain_register(
1601 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 break;
1603 default:
1604 ret = -EINVAL;
1605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 return ret;
1608}
1609EXPORT_SYMBOL(cpufreq_register_notifier);
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611/**
1612 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1613 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301614 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 *
1616 * Remove a driver from the CPU frequency notifier list.
1617 *
1618 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001619 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 */
1621int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1622{
1623 int ret;
1624
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001625 if (cpufreq_disabled())
1626 return -EINVAL;
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 switch (list) {
1629 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001630 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001631 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 break;
1633 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001634 ret = blocking_notifier_chain_unregister(
1635 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 break;
1637 default:
1638 ret = -EINVAL;
1639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 return ret;
1642}
1643EXPORT_SYMBOL(cpufreq_unregister_notifier);
1644
1645
1646/*********************************************************************
1647 * GOVERNORS *
1648 *********************************************************************/
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650int __cpufreq_driver_target(struct cpufreq_policy *policy,
1651 unsigned int target_freq,
1652 unsigned int relation)
1653{
1654 int retval = -EINVAL;
Viresh Kumar72499242012-10-31 01:28:21 +01001655 unsigned int old_target_freq = target_freq;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001656
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001657 if (cpufreq_disabled())
1658 return -ENODEV;
1659
Viresh Kumar72499242012-10-31 01:28:21 +01001660 /* Make sure that target_freq is within supported range */
1661 if (target_freq > policy->max)
1662 target_freq = policy->max;
1663 if (target_freq < policy->min)
1664 target_freq = policy->min;
1665
1666 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
1667 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001668
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301669 /*
1670 * This might look like a redundant call as we are checking it again
1671 * after finding index. But it is left intentionally for cases where
1672 * exactly same freq is called again and so we can save on few function
1673 * calls.
1674 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001675 if (target_freq == policy->cur)
1676 return 0;
1677
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001678 if (cpufreq_driver->target)
1679 retval = cpufreq_driver->target(policy, target_freq, relation);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301680 else if (cpufreq_driver->target_index) {
1681 struct cpufreq_frequency_table *freq_table;
Viresh Kumard4019f02013-08-14 19:38:24 +05301682 struct cpufreq_freqs freqs;
1683 bool notify;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301684 int index;
Ashok Raj90d45d12005-11-08 21:34:24 -08001685
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301686 freq_table = cpufreq_frequency_get_table(policy->cpu);
1687 if (unlikely(!freq_table)) {
1688 pr_err("%s: Unable to find freq_table\n", __func__);
1689 goto out;
1690 }
1691
1692 retval = cpufreq_frequency_table_target(policy, freq_table,
1693 target_freq, relation, &index);
1694 if (unlikely(retval)) {
1695 pr_err("%s: Unable to find matching freq\n", __func__);
1696 goto out;
1697 }
1698
Viresh Kumard4019f02013-08-14 19:38:24 +05301699 if (freq_table[index].frequency == policy->cur) {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301700 retval = 0;
Viresh Kumard4019f02013-08-14 19:38:24 +05301701 goto out;
1702 }
1703
1704 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
1705
1706 if (notify) {
1707 freqs.old = policy->cur;
1708 freqs.new = freq_table[index].frequency;
1709 freqs.flags = 0;
1710
1711 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1712 __func__, policy->cpu, freqs.old,
1713 freqs.new);
1714
1715 cpufreq_notify_transition(policy, &freqs,
1716 CPUFREQ_PRECHANGE);
1717 }
1718
1719 retval = cpufreq_driver->target_index(policy, index);
1720 if (retval)
1721 pr_err("%s: Failed to change cpu frequency: %d\n",
1722 __func__, retval);
1723
1724 if (notify) {
1725 /*
1726 * Notify with old freq in case we failed to change
1727 * frequency
1728 */
1729 if (retval)
1730 freqs.new = freqs.old;
1731
1732 cpufreq_notify_transition(policy, &freqs,
1733 CPUFREQ_POSTCHANGE);
1734 }
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301735 }
1736
1737out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 return retval;
1739}
1740EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742int cpufreq_driver_target(struct cpufreq_policy *policy,
1743 unsigned int target_freq,
1744 unsigned int relation)
1745{
Julia Lawallf1829e42008-07-25 22:44:53 +02001746 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
viresh kumarad7722d2013-10-18 19:10:15 +05301748 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 ret = __cpufreq_driver_target(policy, target_freq, relation);
1751
viresh kumarad7722d2013-10-18 19:10:15 +05301752 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return ret;
1755}
1756EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1757
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001758/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001759 * when "event" is CPUFREQ_GOV_LIMITS
1760 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301762static int __cpufreq_governor(struct cpufreq_policy *policy,
1763 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764{
Dave Jonescc993ca2005-07-28 09:43:56 -07001765 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001766
1767 /* Only must be defined when default governor is known to have latency
1768 restrictions, like e.g. conservative or ondemand.
1769 That this is the case is already ensured in Kconfig
1770 */
1771#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1772 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1773#else
1774 struct cpufreq_governor *gov = NULL;
1775#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001776
1777 if (policy->governor->max_transition_latency &&
1778 policy->cpuinfo.transition_latency >
1779 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001780 if (!gov)
1781 return -EINVAL;
1782 else {
1783 printk(KERN_WARNING "%s governor failed, too long"
1784 " transition latency of HW, fallback"
1785 " to %s governor\n",
1786 policy->governor->name,
1787 gov->name);
1788 policy->governor = gov;
1789 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Viresh Kumarfe492f32013-08-06 22:53:10 +05301792 if (event == CPUFREQ_GOV_POLICY_INIT)
1793 if (!try_module_get(policy->governor->owner))
1794 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001796 pr_debug("__cpufreq_governor for CPU %u, event %u\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301797 policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001798
1799 mutex_lock(&cpufreq_governor_lock);
Srivatsa S. Bhat56d07db2013-09-07 01:23:55 +05301800 if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
Viresh Kumarf73d3932013-08-31 17:53:40 +05301801 || (!policy->governor_enabled
1802 && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001803 mutex_unlock(&cpufreq_governor_lock);
1804 return -EBUSY;
1805 }
1806
1807 if (event == CPUFREQ_GOV_STOP)
1808 policy->governor_enabled = false;
1809 else if (event == CPUFREQ_GOV_START)
1810 policy->governor_enabled = true;
1811
1812 mutex_unlock(&cpufreq_governor_lock);
1813
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 ret = policy->governor->governor(policy, event);
1815
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001816 if (!ret) {
1817 if (event == CPUFREQ_GOV_POLICY_INIT)
1818 policy->governor->initialized++;
1819 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1820 policy->governor->initialized--;
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001821 } else {
1822 /* Restore original values */
1823 mutex_lock(&cpufreq_governor_lock);
1824 if (event == CPUFREQ_GOV_STOP)
1825 policy->governor_enabled = true;
1826 else if (event == CPUFREQ_GOV_START)
1827 policy->governor_enabled = false;
1828 mutex_unlock(&cpufreq_governor_lock);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001829 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001830
Viresh Kumarfe492f32013-08-06 22:53:10 +05301831 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1832 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 module_put(policy->governor->owner);
1834
1835 return ret;
1836}
1837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838int cpufreq_register_governor(struct cpufreq_governor *governor)
1839{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001840 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842 if (!governor)
1843 return -EINVAL;
1844
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001845 if (cpufreq_disabled())
1846 return -ENODEV;
1847
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001848 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001849
Viresh Kumarb3940582013-02-01 05:42:58 +00001850 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001851 err = -EBUSY;
1852 if (__find_governor(governor->name) == NULL) {
1853 err = 0;
1854 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
Dave Jones32ee8c32006-02-28 00:43:23 -05001857 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001858 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859}
1860EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1863{
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001864#ifdef CONFIG_HOTPLUG_CPU
1865 int cpu;
1866#endif
1867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (!governor)
1869 return;
1870
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001871 if (cpufreq_disabled())
1872 return;
1873
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001874#ifdef CONFIG_HOTPLUG_CPU
1875 for_each_present_cpu(cpu) {
1876 if (cpu_online(cpu))
1877 continue;
1878 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1879 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1880 }
1881#endif
1882
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001883 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001885 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 return;
1887}
1888EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1889
1890
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891/*********************************************************************
1892 * POLICY INTERFACE *
1893 *********************************************************************/
1894
1895/**
1896 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001897 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1898 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 *
1900 * Reads the current cpufreq policy.
1901 */
1902int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1903{
1904 struct cpufreq_policy *cpu_policy;
1905 if (!policy)
1906 return -EINVAL;
1907
1908 cpu_policy = cpufreq_cpu_get(cpu);
1909 if (!cpu_policy)
1910 return -EINVAL;
1911
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301912 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 return 0;
1916}
1917EXPORT_SYMBOL(cpufreq_get_policy);
1918
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001919/*
Viresh Kumar037ce832013-10-02 14:13:16 +05301920 * policy : current policy.
1921 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001922 */
Viresh Kumar037ce832013-10-02 14:13:16 +05301923static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301924 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001926 int ret = 0, failed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301928 pr_debug("setting new policy for CPU %u: %u - %u kHz\n", new_policy->cpu,
1929 new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301931 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301933 if (new_policy->min > policy->max || new_policy->max < policy->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001934 ret = -EINVAL;
1935 goto error_out;
1936 }
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301939 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 if (ret)
1941 goto error_out;
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001944 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301945 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001948 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301949 CPUFREQ_INCOMPATIBLE, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Viresh Kumarbb176f72013-06-19 14:19:33 +05301951 /*
1952 * verify the cpu speed can be set within this limit, which might be
1953 * different to the first one
1954 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301955 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08001956 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001960 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301961 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301963 policy->min = new_policy->min;
1964 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001966 pr_debug("new min and max freqs are %u - %u kHz\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301967 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001969 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301970 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001971 pr_debug("setting range\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301972 ret = cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301974 if (new_policy->governor != policy->governor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 /* save old, working values */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301976 struct cpufreq_governor *old_gov = policy->governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001978 pr_debug("governor switch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 /* end old governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301981 if (policy->governor) {
1982 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
viresh kumarad7722d2013-10-18 19:10:15 +05301983 up_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301984 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001985 CPUFREQ_GOV_POLICY_EXIT);
viresh kumarad7722d2013-10-18 19:10:15 +05301986 down_write(&policy->rwsem);
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 /* start new governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301990 policy->governor = new_policy->governor;
1991 if (!__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT)) {
1992 if (!__cpufreq_governor(policy, CPUFREQ_GOV_START)) {
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001993 failed = 0;
Viresh Kumar955ef482013-05-16 05:09:58 +00001994 } else {
viresh kumarad7722d2013-10-18 19:10:15 +05301995 up_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301996 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001997 CPUFREQ_GOV_POLICY_EXIT);
viresh kumarad7722d2013-10-18 19:10:15 +05301998 down_write(&policy->rwsem);
Viresh Kumar955ef482013-05-16 05:09:58 +00001999 }
Viresh Kumar7bd353a2013-03-27 15:58:57 +00002000 }
2001
2002 if (failed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 /* new governor failed, so re-start old one */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002004 pr_debug("starting governor %s failed\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302005 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (old_gov) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302007 policy->governor = old_gov;
2008 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00002009 CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302010 __cpufreq_governor(policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302011 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 }
2013 ret = -EINVAL;
2014 goto error_out;
2015 }
2016 /* might be a policy change, too, so fall through */
2017 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002018 pr_debug("governor: change or update limits\n");
Viresh Kumar3de9bde2013-08-06 22:53:13 +05302019 ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021
Dave Jones7d5e3502006-02-02 17:03:42 -05002022error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 return ret;
2024}
2025
2026/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2028 * @cpu: CPU which shall be re-evaluated
2029 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002030 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 * at different times.
2032 */
2033int cpufreq_update_policy(unsigned int cpu)
2034{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302035 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2036 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02002037 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302039 if (!policy) {
Julia Lawallf1829e42008-07-25 22:44:53 +02002040 ret = -ENODEV;
2041 goto no_policy;
2042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
viresh kumarad7722d2013-10-18 19:10:15 +05302044 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002046 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302047 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302048 new_policy.min = policy->user_policy.min;
2049 new_policy.max = policy->user_policy.max;
2050 new_policy.policy = policy->user_policy.policy;
2051 new_policy.governor = policy->user_policy.governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Viresh Kumarbb176f72013-06-19 14:19:33 +05302053 /*
2054 * BIOS might change freq behind our back
2055 * -> ask driver for current freq and notify governors about a change
2056 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002057 if (cpufreq_driver->get) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302058 new_policy.cur = cpufreq_driver->get(cpu);
2059 if (!policy->cur) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002060 pr_debug("Driver did not initialize current freq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302061 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002062 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302063 if (policy->cur != new_policy.cur && has_target())
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302064 cpufreq_out_of_sync(cpu, policy->cur,
2065 new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002066 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002067 }
2068
Viresh Kumar037ce832013-10-02 14:13:16 +05302069 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
viresh kumarad7722d2013-10-18 19:10:15 +05302071 up_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002072
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302073 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02002074no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return ret;
2076}
2077EXPORT_SYMBOL(cpufreq_update_policy);
2078
Paul Gortmaker27609842013-06-19 13:54:04 -04002079static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002080 unsigned long action, void *hcpu)
2081{
2082 unsigned int cpu = (unsigned long)hcpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002083 struct device *dev;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302084 bool frozen = false;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002085
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002086 dev = get_cpu_device(cpu);
2087 if (dev) {
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302088
Rafael J. Wysockid4faadd2013-12-08 01:23:58 +01002089 if (action & CPU_TASKS_FROZEN)
2090 frozen = true;
2091
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302092 switch (action & ~CPU_TASKS_FROZEN) {
Ashok Rajc32b6b82005-10-30 14:59:54 -08002093 case CPU_ONLINE:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302094 __cpufreq_add_dev(dev, NULL, frozen);
Srivatsa S. Bhat23d328992013-07-30 04:23:56 +05302095 cpufreq_update_policy(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002096 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302097
Ashok Rajc32b6b82005-10-30 14:59:54 -08002098 case CPU_DOWN_PREPARE:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302099 __cpufreq_remove_dev_prepare(dev, NULL, frozen);
Srivatsa S. Bhat1aee40a2013-09-07 01:23:27 +05302100 break;
2101
2102 case CPU_POST_DEAD:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302103 __cpufreq_remove_dev_finish(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002104 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302105
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002106 case CPU_DOWN_FAILED:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302107 __cpufreq_add_dev(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002108 break;
2109 }
2110 }
2111 return NOTIFY_OK;
2112}
2113
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002114static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302115 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002116};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
2118/*********************************************************************
2119 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2120 *********************************************************************/
2121
2122/**
2123 * cpufreq_register_driver - register a CPU Frequency driver
2124 * @driver_data: A struct cpufreq_driver containing the values#
2125 * submitted by the CPU Frequency driver.
2126 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302127 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002129 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 *
2131 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002132int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133{
2134 unsigned long flags;
2135 int ret;
2136
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002137 if (cpufreq_disabled())
2138 return -ENODEV;
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302141 !(driver_data->setpolicy || driver_data->target_index ||
2142 driver_data->target))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 return -EINVAL;
2144
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002145 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
2147 if (driver_data->setpolicy)
2148 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2149
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002150 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002151 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002152 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Yinghai Lu4dea5802013-09-18 21:05:20 -07002153 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002155 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002156 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002158 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002159 if (ret)
2160 goto err_null_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002162 if (!(cpufreq_driver->flags & CPUFREQ_STICKY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 int i;
2164 ret = -ENODEV;
2165
2166 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07002167 for (i = 0; i < nr_cpu_ids; i++)
2168 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07002170 break;
2171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 /* if all ->init() calls failed, unregister */
2174 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002175 pr_debug("no CPU initialized for driver %s\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302176 driver_data->name);
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002177 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
2179 }
2180
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002181 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002182 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002184 return 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002185err_if_unreg:
2186 subsys_interface_unregister(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002187err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002188 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002189 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002190 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones4d34a672008-02-07 16:33:49 -05002191 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195/**
2196 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2197 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302198 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 * the right to do so, i.e. if you have succeeded in initialising before!
2200 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2201 * currently not initialised.
2202 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002203int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204{
2205 unsigned long flags;
2206
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002207 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002210 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002212 subsys_interface_unregister(&cpufreq_interface);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002213 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Viresh Kumar6eed9402013-08-06 22:53:11 +05302215 down_write(&cpufreq_rwsem);
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002216 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302217
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002218 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302219
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002220 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302221 up_write(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 return 0;
2224}
2225EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002226
2227static int __init cpufreq_core_init(void)
2228{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002229 if (cpufreq_disabled())
2230 return -ENODEV;
2231
Viresh Kumar2361be22013-05-17 16:09:09 +05302232 cpufreq_global_kobject = kobject_create();
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002233 BUG_ON(!cpufreq_global_kobject);
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01002234 register_syscore_ops(&cpufreq_syscore_ops);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002235
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002236 return 0;
2237}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002238core_initcall(cpufreq_core_init);