blob: 16d7b4ac94be21210779cd7c87d9440a78666162 [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
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301019 if (frozen)
1020 /* Restore the saved policy when doing light-weight init */
1021 policy = cpufreq_policy_restore(cpu);
1022 else
1023 policy = cpufreq_policy_alloc();
1024
Dave Jones059019a2009-07-08 16:30:03 -04001025 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -04001027
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301028
1029 /*
1030 * In the resume path, since we restore a saved policy, the assignment
1031 * to policy->cpu is like an update of the existing policy, rather than
1032 * the creation of a brand new one. So we need to perform this update
1033 * by invoking update_policy_cpu().
1034 */
1035 if (frozen && cpu != policy->cpu)
1036 update_policy_cpu(policy, cpu);
1037 else
1038 policy->cpu = cpu;
1039
Viresh Kumar65922462013-02-07 10:56:03 +05301040 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Rusty Russell835481d2009-01-04 05:18:06 -08001041 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001044 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 /* call driver. From then on the cpufreq must be able
1047 * to accept all calls to ->verify and ->setpolicy for this CPU
1048 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001049 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001051 pr_debug("initialization failed\n");
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301052 goto err_set_policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001054
Viresh Kumarda60ce92013-10-03 20:28:30 +05301055 if (cpufreq_driver->get) {
1056 policy->cur = cpufreq_driver->get(policy->cpu);
1057 if (!policy->cur) {
1058 pr_err("%s: ->get() failed\n", __func__);
1059 goto err_get_freq;
1060 }
1061 }
1062
Viresh Kumarfcf80582013-01-29 14:39:08 +00001063 /* related cpus should atleast have policy->cpus */
1064 cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
1065
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001066 /*
1067 * affected cpus must always be the one, which are online. We aren't
1068 * managing offline cpus here.
1069 */
1070 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1071
Mike Chan187d9f42008-12-04 12:19:17 -08001072 policy->user_policy.min = policy->min;
1073 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Thomas Renningera1531ac2008-07-29 22:32:58 -07001075 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1076 CPUFREQ_START, policy);
1077
Viresh Kumarfcf80582013-01-29 14:39:08 +00001078#ifdef CONFIG_HOTPLUG_CPU
1079 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
1080 if (gov) {
1081 policy->governor = gov;
1082 pr_debug("Restoring governor %s for cpu %d\n",
1083 policy->governor->name, cpu);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001084 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001085#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301087 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301088 for_each_cpu(j, policy->cpus)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301089 per_cpu(cpufreq_cpu_data, j) = policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301090 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1091
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301092 if (!frozen) {
Viresh Kumar308b60e2013-07-31 14:35:14 +02001093 ret = cpufreq_add_dev_interface(policy, dev);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301094 if (ret)
1095 goto err_out_unregister;
1096 }
Dave Jones8ff69732006-03-05 03:37:23 -05001097
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301098 write_lock_irqsave(&cpufreq_driver_lock, flags);
1099 list_add(&policy->policy_list, &cpufreq_policy_list);
1100 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1101
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301102 cpufreq_init_policy(policy);
1103
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001104 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301105 up_read(&cpufreq_rwsem);
1106
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001107 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 return 0;
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111err_out_unregister:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001112 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301113 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001114 per_cpu(cpufreq_cpu_data, j) = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001115 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Viresh Kumarda60ce92013-10-03 20:28:30 +05301117err_get_freq:
1118 if (cpufreq_driver->exit)
1119 cpufreq_driver->exit(policy);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301120err_set_policy_cpu:
Viresh Kumar42f921a2013-12-20 21:26:02 +05301121 if (frozen)
1122 cpufreq_policy_put_kobj(policy);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301123 cpufreq_policy_free(policy);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125nomem_out:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301126 up_read(&cpufreq_rwsem);
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return ret;
1129}
1130
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301131/**
1132 * cpufreq_add_dev - add a CPU device
1133 *
1134 * Adds the cpufreq interface for a CPU device.
1135 *
1136 * The Oracle says: try running cpufreq registration/unregistration concurrently
1137 * with with cpu hotplugging and all hell will break loose. Tried to clean this
1138 * mess up, but more thorough testing is needed. - Mathieu
1139 */
1140static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1141{
1142 return __cpufreq_add_dev(dev, sif, false);
1143}
1144
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301145static int cpufreq_nominate_new_policy_cpu(struct cpufreq_policy *policy,
Viresh Kumar42f921a2013-12-20 21:26:02 +05301146 unsigned int old_cpu)
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301147{
1148 struct device *cpu_dev;
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301149 int ret;
1150
1151 /* first sibling now owns the new sysfs dir */
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301152 cpu_dev = get_cpu_device(cpumask_any_but(policy->cpus, old_cpu));
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301153
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301154 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301155 ret = kobject_move(&policy->kobj, &cpu_dev->kobj);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301156 if (ret) {
1157 pr_err("%s: Failed to move kobj: %d", __func__, ret);
1158
viresh kumarad7722d2013-10-18 19:10:15 +05301159 down_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301160 cpumask_set_cpu(old_cpu, policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301161 up_write(&policy->rwsem);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301162
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301163 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301164 "cpufreq");
1165
1166 return -EINVAL;
1167 }
1168
1169 return cpu_dev->id;
1170}
1171
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301172static int __cpufreq_remove_dev_prepare(struct device *dev,
1173 struct subsys_interface *sif,
1174 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301176 unsigned int cpu = dev->id, cpus;
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301177 int new_cpu, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 unsigned long flags;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301179 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001181 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001183 write_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301185 policy = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301187 /* Save the policy somewhere when doing a light-weight tear-down */
1188 if (frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301189 per_cpu(cpufreq_cpu_data_fallback, cpu) = policy;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301190
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001191 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301193 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001194 pr_debug("%s: No cpu_data found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301198 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301199 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1200 if (ret) {
1201 pr_err("%s: Failed to stop governor\n", __func__);
1202 return ret;
1203 }
1204 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001205
Jacob Shin27ecddc2011-04-27 13:32:11 -05001206#ifdef CONFIG_HOTPLUG_CPU
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001207 if (!cpufreq_driver->setpolicy)
Dirk Brandewiefa69e332013-02-06 09:02:11 -08001208 strncpy(per_cpu(cpufreq_cpu_governor, cpu),
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301209 policy->governor->name, CPUFREQ_NAME_LEN);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001210#endif
1211
viresh kumarad7722d2013-10-18 19:10:15 +05301212 down_read(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301213 cpus = cpumask_weight(policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301214 up_read(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Srivatsa S. Bhat61173f22013-09-12 01:43:25 +05301216 if (cpu != policy->cpu) {
1217 if (!frozen)
1218 sysfs_remove_link(&dev->kobj, "cpufreq");
Viresh Kumar73bf0fc2013-02-05 22:21:14 +01001219 } else if (cpus > 1) {
Viresh Kumar42f921a2013-12-20 21:26:02 +05301220 new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301221 if (new_cpu >= 0) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301222 update_policy_cpu(policy, new_cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301223
1224 if (!frozen) {
Viresh Kumar75949c92013-10-02 14:13:13 +05301225 pr_debug("%s: policy Kobject moved to cpu: %d from: %d\n",
1226 __func__, new_cpu, cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301227 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001228 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001229 }
Venki Pallipadiec282972007-03-26 12:03:19 -07001230
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301231 return 0;
1232}
1233
1234static int __cpufreq_remove_dev_finish(struct device *dev,
1235 struct subsys_interface *sif,
1236 bool frozen)
1237{
1238 unsigned int cpu = dev->id, cpus;
1239 int ret;
1240 unsigned long flags;
1241 struct cpufreq_policy *policy;
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301242
1243 read_lock_irqsave(&cpufreq_driver_lock, flags);
1244 policy = per_cpu(cpufreq_cpu_data, cpu);
1245 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1246
1247 if (!policy) {
1248 pr_debug("%s: No cpu_data found\n", __func__);
1249 return -EINVAL;
1250 }
1251
viresh kumarad7722d2013-10-18 19:10:15 +05301252 down_write(&policy->rwsem);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301253 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301254
1255 if (cpus > 1)
1256 cpumask_clear_cpu(cpu, policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301257 up_write(&policy->rwsem);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301258
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001259 /* If cpu is last user of policy, free policy */
1260 if (cpus == 1) {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301261 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301262 ret = __cpufreq_governor(policy,
1263 CPUFREQ_GOV_POLICY_EXIT);
1264 if (ret) {
1265 pr_err("%s: Failed to exit governor\n",
1266 __func__);
1267 return ret;
1268 }
Viresh Kumaredab2fb2013-08-20 12:08:22 +05301269 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001270
Viresh Kumar42f921a2013-12-20 21:26:02 +05301271 if (!frozen)
1272 cpufreq_policy_put_kobj(policy);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301273
1274 /*
1275 * Perform the ->exit() even during light-weight tear-down,
1276 * since this is a core component, and is essential for the
1277 * subsequent light-weight ->init() to succeed.
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001278 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001279 if (cpufreq_driver->exit)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301280 cpufreq_driver->exit(policy);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001281
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301282 /* Remove policy from list of active policies */
1283 write_lock_irqsave(&cpufreq_driver_lock, flags);
1284 list_del(&policy->policy_list);
1285 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1286
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301287 if (!frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301288 cpufreq_policy_free(policy);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001289 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301290 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301291 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
1292 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
1293 pr_err("%s: Failed to start governor\n",
1294 __func__);
1295 return ret;
1296 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001297 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Viresh Kumar474deff2013-08-20 12:08:25 +05301300 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 return 0;
1302}
1303
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301304/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301305 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301306 *
1307 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301308 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001309static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001310{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001311 unsigned int cpu = dev->id;
Viresh Kumar27a862e2013-10-02 14:13:14 +05301312 int ret;
Venki Pallipadiec282972007-03-26 12:03:19 -07001313
1314 if (cpu_is_offline(cpu))
1315 return 0;
1316
Viresh Kumar27a862e2013-10-02 14:13:14 +05301317 ret = __cpufreq_remove_dev_prepare(dev, sif, false);
1318
1319 if (!ret)
1320 ret = __cpufreq_remove_dev_finish(dev, sif, false);
1321
1322 return ret;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001323}
1324
David Howells65f27f32006-11-22 14:55:48 +00001325static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
David Howells65f27f32006-11-22 14:55:48 +00001327 struct cpufreq_policy *policy =
1328 container_of(work, struct cpufreq_policy, update);
1329 unsigned int cpu = policy->cpu;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001330 pr_debug("handle_update for cpu %u called\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 cpufreq_update_policy(cpu);
1332}
1333
1334/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301335 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1336 * in deep trouble.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 * @cpu: cpu number
1338 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1339 * @new_freq: CPU frequency the CPU actually runs at
1340 *
Dave Jones29464f22009-01-18 01:37:11 -05001341 * We adjust to current frequency first, and need to clean up later.
1342 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301344static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1345 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301347 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301349 unsigned long flags;
1350
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001351 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 freqs.old = old_freq;
1355 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301356
1357 read_lock_irqsave(&cpufreq_driver_lock, flags);
1358 policy = per_cpu(cpufreq_cpu_data, cpu);
1359 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1360
1361 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1362 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
Dave Jones32ee8c32006-02-28 00:43:23 -05001365/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301366 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001367 * @cpu: CPU number
1368 *
1369 * This is the last known freq, without actually getting it from the driver.
1370 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1371 */
1372unsigned int cpufreq_quick_get(unsigned int cpu)
1373{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001374 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301375 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001376
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001377 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1378 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001379
1380 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001381 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301382 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001383 cpufreq_cpu_put(policy);
1384 }
1385
Dave Jones4d34a672008-02-07 16:33:49 -05001386 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001387}
1388EXPORT_SYMBOL(cpufreq_quick_get);
1389
Jesse Barnes3d737102011-06-28 10:59:12 -07001390/**
1391 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1392 * @cpu: CPU number
1393 *
1394 * Just return the max possible frequency for a given CPU.
1395 */
1396unsigned int cpufreq_quick_get_max(unsigned int cpu)
1397{
1398 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1399 unsigned int ret_freq = 0;
1400
1401 if (policy) {
1402 ret_freq = policy->max;
1403 cpufreq_cpu_put(policy);
1404 }
1405
1406 return ret_freq;
1407}
1408EXPORT_SYMBOL(cpufreq_quick_get_max);
1409
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001410static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001412 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301413 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001415 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001416 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001418 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301420 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001421 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301422 /* verify no discrepancy between actual and
1423 saved value exists */
1424 if (unlikely(ret_freq != policy->cur)) {
1425 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 schedule_work(&policy->update);
1427 }
1428 }
1429
Dave Jones4d34a672008-02-07 16:33:49 -05001430 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001431}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001433/**
1434 * cpufreq_get - get the current CPU frequency (in kHz)
1435 * @cpu: CPU number
1436 *
1437 * Get the CPU current (static) CPU frequency
1438 */
1439unsigned int cpufreq_get(unsigned int cpu)
1440{
viresh kumarad7722d2013-10-18 19:10:15 +05301441 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001442 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001443
Viresh Kumar26ca8692013-09-20 22:37:31 +05301444 if (cpufreq_disabled() || !cpufreq_driver)
1445 return -ENOENT;
1446
viresh kumarad7722d2013-10-18 19:10:15 +05301447 BUG_ON(!policy);
1448
Viresh Kumar6eed9402013-08-06 22:53:11 +05301449 if (!down_read_trylock(&cpufreq_rwsem))
1450 return 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001451
viresh kumarad7722d2013-10-18 19:10:15 +05301452 down_read(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001453
1454 ret_freq = __cpufreq_get(cpu);
1455
viresh kumarad7722d2013-10-18 19:10:15 +05301456 up_read(&policy->rwsem);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301457 up_read(&cpufreq_rwsem);
1458
Dave Jones4d34a672008-02-07 16:33:49 -05001459 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461EXPORT_SYMBOL(cpufreq_get);
1462
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001463static struct subsys_interface cpufreq_interface = {
1464 .name = "cpufreq",
1465 .subsys = &cpu_subsys,
1466 .add_dev = cpufreq_add_dev,
1467 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001468};
1469
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001471 * cpufreq_bp_suspend - Prepare the boot CPU for system suspend.
1472 *
1473 * This function is only executed for the boot processor. The other CPUs
1474 * have been put offline by means of CPU hotplug.
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001475 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001476static int cpufreq_bp_suspend(void)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001477{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301478 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001479
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001480 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301481 struct cpufreq_policy *policy;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001482
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001483 pr_debug("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001484
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001485 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301486 policy = cpufreq_cpu_get(cpu);
1487 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001488 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001489
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001490 if (cpufreq_driver->suspend) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301491 ret = cpufreq_driver->suspend(policy);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001492 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001493 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301494 "step on CPU %u\n", policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001495 }
1496
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301497 cpufreq_cpu_put(policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001498 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001499}
1500
1501/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001502 * cpufreq_bp_resume - Restore proper frequency handling of the boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 *
1504 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001505 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1506 * restored. It will verify that the current freq is in sync with
1507 * what we believe it to be. This is a bit later than when it
1508 * should be, but nonethteless it's better than calling
1509 * cpufreq_driver->get() here which might re-enable interrupts...
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001510 *
1511 * This function is only executed for the boot CPU. The other CPUs have not
1512 * been turned on yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001514static void cpufreq_bp_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301516 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001517
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001518 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301519 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001521 pr_debug("resuming cpu %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001523 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301524 policy = cpufreq_cpu_get(cpu);
1525 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001526 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001528 if (cpufreq_driver->resume) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301529 ret = cpufreq_driver->resume(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (ret) {
1531 printk(KERN_ERR "cpufreq: resume failed in ->resume "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301532 "step on CPU %u\n", policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001533 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
1535 }
1536
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301537 schedule_work(&policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001538
Dave Jonesc9060492008-02-07 16:32:18 -05001539fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301540 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541}
1542
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001543static struct syscore_ops cpufreq_syscore_ops = {
1544 .suspend = cpufreq_bp_suspend,
1545 .resume = cpufreq_bp_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546};
1547
Borislav Petkov9d950462013-01-20 10:24:28 +00001548/**
1549 * cpufreq_get_current_driver - return current driver's name
1550 *
1551 * Return the name string of the currently loaded cpufreq driver
1552 * or NULL, if none.
1553 */
1554const char *cpufreq_get_current_driver(void)
1555{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001556 if (cpufreq_driver)
1557 return cpufreq_driver->name;
1558
1559 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001560}
1561EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563/*********************************************************************
1564 * NOTIFIER LISTS INTERFACE *
1565 *********************************************************************/
1566
1567/**
1568 * cpufreq_register_notifier - register a driver with cpufreq
1569 * @nb: notifier function to register
1570 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1571 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001572 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 * are notified about clock rate changes (once before and once after
1574 * the transition), or a list of drivers that are notified about
1575 * changes in cpufreq policy.
1576 *
1577 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001578 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 */
1580int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1581{
1582 int ret;
1583
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001584 if (cpufreq_disabled())
1585 return -EINVAL;
1586
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001587 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 switch (list) {
1590 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001591 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001592 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 break;
1594 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001595 ret = blocking_notifier_chain_register(
1596 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 break;
1598 default:
1599 ret = -EINVAL;
1600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602 return ret;
1603}
1604EXPORT_SYMBOL(cpufreq_register_notifier);
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606/**
1607 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1608 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301609 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 *
1611 * Remove a driver from the CPU frequency notifier list.
1612 *
1613 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001614 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 */
1616int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1617{
1618 int ret;
1619
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001620 if (cpufreq_disabled())
1621 return -EINVAL;
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 switch (list) {
1624 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001625 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001626 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 break;
1628 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001629 ret = blocking_notifier_chain_unregister(
1630 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 break;
1632 default:
1633 ret = -EINVAL;
1634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 return ret;
1637}
1638EXPORT_SYMBOL(cpufreq_unregister_notifier);
1639
1640
1641/*********************************************************************
1642 * GOVERNORS *
1643 *********************************************************************/
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645int __cpufreq_driver_target(struct cpufreq_policy *policy,
1646 unsigned int target_freq,
1647 unsigned int relation)
1648{
1649 int retval = -EINVAL;
Viresh Kumar72499242012-10-31 01:28:21 +01001650 unsigned int old_target_freq = target_freq;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001651
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001652 if (cpufreq_disabled())
1653 return -ENODEV;
1654
Viresh Kumar72499242012-10-31 01:28:21 +01001655 /* Make sure that target_freq is within supported range */
1656 if (target_freq > policy->max)
1657 target_freq = policy->max;
1658 if (target_freq < policy->min)
1659 target_freq = policy->min;
1660
1661 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
1662 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001663
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301664 /*
1665 * This might look like a redundant call as we are checking it again
1666 * after finding index. But it is left intentionally for cases where
1667 * exactly same freq is called again and so we can save on few function
1668 * calls.
1669 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001670 if (target_freq == policy->cur)
1671 return 0;
1672
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001673 if (cpufreq_driver->target)
1674 retval = cpufreq_driver->target(policy, target_freq, relation);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301675 else if (cpufreq_driver->target_index) {
1676 struct cpufreq_frequency_table *freq_table;
Viresh Kumard4019f02013-08-14 19:38:24 +05301677 struct cpufreq_freqs freqs;
1678 bool notify;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301679 int index;
Ashok Raj90d45d12005-11-08 21:34:24 -08001680
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301681 freq_table = cpufreq_frequency_get_table(policy->cpu);
1682 if (unlikely(!freq_table)) {
1683 pr_err("%s: Unable to find freq_table\n", __func__);
1684 goto out;
1685 }
1686
1687 retval = cpufreq_frequency_table_target(policy, freq_table,
1688 target_freq, relation, &index);
1689 if (unlikely(retval)) {
1690 pr_err("%s: Unable to find matching freq\n", __func__);
1691 goto out;
1692 }
1693
Viresh Kumard4019f02013-08-14 19:38:24 +05301694 if (freq_table[index].frequency == policy->cur) {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301695 retval = 0;
Viresh Kumard4019f02013-08-14 19:38:24 +05301696 goto out;
1697 }
1698
1699 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
1700
1701 if (notify) {
1702 freqs.old = policy->cur;
1703 freqs.new = freq_table[index].frequency;
1704 freqs.flags = 0;
1705
1706 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1707 __func__, policy->cpu, freqs.old,
1708 freqs.new);
1709
1710 cpufreq_notify_transition(policy, &freqs,
1711 CPUFREQ_PRECHANGE);
1712 }
1713
1714 retval = cpufreq_driver->target_index(policy, index);
1715 if (retval)
1716 pr_err("%s: Failed to change cpu frequency: %d\n",
1717 __func__, retval);
1718
1719 if (notify) {
1720 /*
1721 * Notify with old freq in case we failed to change
1722 * frequency
1723 */
1724 if (retval)
1725 freqs.new = freqs.old;
1726
1727 cpufreq_notify_transition(policy, &freqs,
1728 CPUFREQ_POSTCHANGE);
1729 }
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301730 }
1731
1732out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 return retval;
1734}
1735EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737int cpufreq_driver_target(struct cpufreq_policy *policy,
1738 unsigned int target_freq,
1739 unsigned int relation)
1740{
Julia Lawallf1829e42008-07-25 22:44:53 +02001741 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
viresh kumarad7722d2013-10-18 19:10:15 +05301743 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
1745 ret = __cpufreq_driver_target(policy, target_freq, relation);
1746
viresh kumarad7722d2013-10-18 19:10:15 +05301747 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 return ret;
1750}
1751EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1752
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001753/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001754 * when "event" is CPUFREQ_GOV_LIMITS
1755 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301757static int __cpufreq_governor(struct cpufreq_policy *policy,
1758 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Dave Jonescc993ca2005-07-28 09:43:56 -07001760 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001761
1762 /* Only must be defined when default governor is known to have latency
1763 restrictions, like e.g. conservative or ondemand.
1764 That this is the case is already ensured in Kconfig
1765 */
1766#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1767 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1768#else
1769 struct cpufreq_governor *gov = NULL;
1770#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001771
1772 if (policy->governor->max_transition_latency &&
1773 policy->cpuinfo.transition_latency >
1774 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001775 if (!gov)
1776 return -EINVAL;
1777 else {
1778 printk(KERN_WARNING "%s governor failed, too long"
1779 " transition latency of HW, fallback"
1780 " to %s governor\n",
1781 policy->governor->name,
1782 gov->name);
1783 policy->governor = gov;
1784 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001785 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Viresh Kumarfe492f32013-08-06 22:53:10 +05301787 if (event == CPUFREQ_GOV_POLICY_INIT)
1788 if (!try_module_get(policy->governor->owner))
1789 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001791 pr_debug("__cpufreq_governor for CPU %u, event %u\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301792 policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001793
1794 mutex_lock(&cpufreq_governor_lock);
Srivatsa S. Bhat56d07db2013-09-07 01:23:55 +05301795 if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
Viresh Kumarf73d3932013-08-31 17:53:40 +05301796 || (!policy->governor_enabled
1797 && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001798 mutex_unlock(&cpufreq_governor_lock);
1799 return -EBUSY;
1800 }
1801
1802 if (event == CPUFREQ_GOV_STOP)
1803 policy->governor_enabled = false;
1804 else if (event == CPUFREQ_GOV_START)
1805 policy->governor_enabled = true;
1806
1807 mutex_unlock(&cpufreq_governor_lock);
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 ret = policy->governor->governor(policy, event);
1810
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001811 if (!ret) {
1812 if (event == CPUFREQ_GOV_POLICY_INIT)
1813 policy->governor->initialized++;
1814 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1815 policy->governor->initialized--;
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001816 } else {
1817 /* Restore original values */
1818 mutex_lock(&cpufreq_governor_lock);
1819 if (event == CPUFREQ_GOV_STOP)
1820 policy->governor_enabled = true;
1821 else if (event == CPUFREQ_GOV_START)
1822 policy->governor_enabled = false;
1823 mutex_unlock(&cpufreq_governor_lock);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001824 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001825
Viresh Kumarfe492f32013-08-06 22:53:10 +05301826 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1827 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 module_put(policy->governor->owner);
1829
1830 return ret;
1831}
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833int cpufreq_register_governor(struct cpufreq_governor *governor)
1834{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001835 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837 if (!governor)
1838 return -EINVAL;
1839
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001840 if (cpufreq_disabled())
1841 return -ENODEV;
1842
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001843 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001844
Viresh Kumarb3940582013-02-01 05:42:58 +00001845 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001846 err = -EBUSY;
1847 if (__find_governor(governor->name) == NULL) {
1848 err = 0;
1849 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Dave Jones32ee8c32006-02-28 00:43:23 -05001852 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001853 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
1855EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1858{
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001859#ifdef CONFIG_HOTPLUG_CPU
1860 int cpu;
1861#endif
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (!governor)
1864 return;
1865
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001866 if (cpufreq_disabled())
1867 return;
1868
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001869#ifdef CONFIG_HOTPLUG_CPU
1870 for_each_present_cpu(cpu) {
1871 if (cpu_online(cpu))
1872 continue;
1873 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1874 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1875 }
1876#endif
1877
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001878 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001880 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 return;
1882}
1883EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1884
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886/*********************************************************************
1887 * POLICY INTERFACE *
1888 *********************************************************************/
1889
1890/**
1891 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001892 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1893 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 *
1895 * Reads the current cpufreq policy.
1896 */
1897int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1898{
1899 struct cpufreq_policy *cpu_policy;
1900 if (!policy)
1901 return -EINVAL;
1902
1903 cpu_policy = cpufreq_cpu_get(cpu);
1904 if (!cpu_policy)
1905 return -EINVAL;
1906
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301907 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 return 0;
1911}
1912EXPORT_SYMBOL(cpufreq_get_policy);
1913
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001914/*
Viresh Kumar037ce832013-10-02 14:13:16 +05301915 * policy : current policy.
1916 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001917 */
Viresh Kumar037ce832013-10-02 14:13:16 +05301918static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301919 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001921 int ret = 0, failed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301923 pr_debug("setting new policy for CPU %u: %u - %u kHz\n", new_policy->cpu,
1924 new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301926 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301928 if (new_policy->min > policy->max || new_policy->max < policy->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001929 ret = -EINVAL;
1930 goto error_out;
1931 }
1932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301934 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if (ret)
1936 goto error_out;
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001939 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301940 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
1942 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001943 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301944 CPUFREQ_INCOMPATIBLE, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Viresh Kumarbb176f72013-06-19 14:19:33 +05301946 /*
1947 * verify the cpu speed can be set within this limit, which might be
1948 * different to the first one
1949 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301950 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08001951 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001955 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301956 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301958 policy->min = new_policy->min;
1959 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001961 pr_debug("new min and max freqs are %u - %u kHz\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301962 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001964 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301965 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001966 pr_debug("setting range\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301967 ret = cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301969 if (new_policy->governor != policy->governor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 /* save old, working values */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301971 struct cpufreq_governor *old_gov = policy->governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001973 pr_debug("governor switch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
1975 /* end old governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301976 if (policy->governor) {
1977 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
viresh kumarad7722d2013-10-18 19:10:15 +05301978 up_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301979 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001980 CPUFREQ_GOV_POLICY_EXIT);
viresh kumarad7722d2013-10-18 19:10:15 +05301981 down_write(&policy->rwsem);
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 /* start new governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301985 policy->governor = new_policy->governor;
1986 if (!__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT)) {
1987 if (!__cpufreq_governor(policy, CPUFREQ_GOV_START)) {
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001988 failed = 0;
Viresh Kumar955ef482013-05-16 05:09:58 +00001989 } else {
viresh kumarad7722d2013-10-18 19:10:15 +05301990 up_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301991 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001992 CPUFREQ_GOV_POLICY_EXIT);
viresh kumarad7722d2013-10-18 19:10:15 +05301993 down_write(&policy->rwsem);
Viresh Kumar955ef482013-05-16 05:09:58 +00001994 }
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001995 }
1996
1997 if (failed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 /* new governor failed, so re-start old one */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001999 pr_debug("starting governor %s failed\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302000 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 if (old_gov) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302002 policy->governor = old_gov;
2003 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00002004 CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302005 __cpufreq_governor(policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302006 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
2008 ret = -EINVAL;
2009 goto error_out;
2010 }
2011 /* might be a policy change, too, so fall through */
2012 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002013 pr_debug("governor: change or update limits\n");
Viresh Kumar3de9bde2013-08-06 22:53:13 +05302014 ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 }
2016
Dave Jones7d5e3502006-02-02 17:03:42 -05002017error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 return ret;
2019}
2020
2021/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2023 * @cpu: CPU which shall be re-evaluated
2024 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002025 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 * at different times.
2027 */
2028int cpufreq_update_policy(unsigned int cpu)
2029{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302030 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2031 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02002032 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302034 if (!policy) {
Julia Lawallf1829e42008-07-25 22:44:53 +02002035 ret = -ENODEV;
2036 goto no_policy;
2037 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
viresh kumarad7722d2013-10-18 19:10:15 +05302039 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002041 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302042 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302043 new_policy.min = policy->user_policy.min;
2044 new_policy.max = policy->user_policy.max;
2045 new_policy.policy = policy->user_policy.policy;
2046 new_policy.governor = policy->user_policy.governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
Viresh Kumarbb176f72013-06-19 14:19:33 +05302048 /*
2049 * BIOS might change freq behind our back
2050 * -> ask driver for current freq and notify governors about a change
2051 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002052 if (cpufreq_driver->get) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302053 new_policy.cur = cpufreq_driver->get(cpu);
2054 if (!policy->cur) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002055 pr_debug("Driver did not initialize current freq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302056 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002057 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302058 if (policy->cur != new_policy.cur && has_target())
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302059 cpufreq_out_of_sync(cpu, policy->cur,
2060 new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002061 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002062 }
2063
Viresh Kumar037ce832013-10-02 14:13:16 +05302064 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
viresh kumarad7722d2013-10-18 19:10:15 +05302066 up_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002067
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302068 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02002069no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return ret;
2071}
2072EXPORT_SYMBOL(cpufreq_update_policy);
2073
Paul Gortmaker27609842013-06-19 13:54:04 -04002074static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002075 unsigned long action, void *hcpu)
2076{
2077 unsigned int cpu = (unsigned long)hcpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002078 struct device *dev;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302079 bool frozen = false;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002080
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002081 dev = get_cpu_device(cpu);
2082 if (dev) {
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302083
Rafael J. Wysockid4faadd2013-12-08 01:23:58 +01002084 if (action & CPU_TASKS_FROZEN)
2085 frozen = true;
2086
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302087 switch (action & ~CPU_TASKS_FROZEN) {
Ashok Rajc32b6b82005-10-30 14:59:54 -08002088 case CPU_ONLINE:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302089 __cpufreq_add_dev(dev, NULL, frozen);
Srivatsa S. Bhat23d328992013-07-30 04:23:56 +05302090 cpufreq_update_policy(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002091 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302092
Ashok Rajc32b6b82005-10-30 14:59:54 -08002093 case CPU_DOWN_PREPARE:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302094 __cpufreq_remove_dev_prepare(dev, NULL, frozen);
Srivatsa S. Bhat1aee40a2013-09-07 01:23:27 +05302095 break;
2096
2097 case CPU_POST_DEAD:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302098 __cpufreq_remove_dev_finish(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002099 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302100
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002101 case CPU_DOWN_FAILED:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302102 __cpufreq_add_dev(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002103 break;
2104 }
2105 }
2106 return NOTIFY_OK;
2107}
2108
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002109static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302110 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002111};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113/*********************************************************************
2114 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2115 *********************************************************************/
2116
2117/**
2118 * cpufreq_register_driver - register a CPU Frequency driver
2119 * @driver_data: A struct cpufreq_driver containing the values#
2120 * submitted by the CPU Frequency driver.
2121 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302122 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002124 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 *
2126 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002127int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
2129 unsigned long flags;
2130 int ret;
2131
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002132 if (cpufreq_disabled())
2133 return -ENODEV;
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302136 !(driver_data->setpolicy || driver_data->target_index ||
2137 driver_data->target))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 return -EINVAL;
2139
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002140 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 if (driver_data->setpolicy)
2143 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2144
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002145 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002146 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002147 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Yinghai Lu4dea5802013-09-18 21:05:20 -07002148 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002150 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002151 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002153 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002154 if (ret)
2155 goto err_null_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002157 if (!(cpufreq_driver->flags & CPUFREQ_STICKY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 int i;
2159 ret = -ENODEV;
2160
2161 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07002162 for (i = 0; i < nr_cpu_ids; i++)
2163 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07002165 break;
2166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 /* if all ->init() calls failed, unregister */
2169 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002170 pr_debug("no CPU initialized for driver %s\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302171 driver_data->name);
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002172 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
2174 }
2175
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002176 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002177 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002179 return 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002180err_if_unreg:
2181 subsys_interface_unregister(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002182err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002183 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002184 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002185 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones4d34a672008-02-07 16:33:49 -05002186 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187}
2188EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190/**
2191 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2192 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302193 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 * the right to do so, i.e. if you have succeeded in initialising before!
2195 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2196 * currently not initialised.
2197 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002198int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199{
2200 unsigned long flags;
2201
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002202 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002205 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002207 subsys_interface_unregister(&cpufreq_interface);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002208 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Viresh Kumar6eed9402013-08-06 22:53:11 +05302210 down_write(&cpufreq_rwsem);
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002211 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302212
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002213 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302214
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002215 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302216 up_write(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
2218 return 0;
2219}
2220EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002221
2222static int __init cpufreq_core_init(void)
2223{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002224 if (cpufreq_disabled())
2225 return -ENODEV;
2226
Viresh Kumar2361be22013-05-17 16:09:09 +05302227 cpufreq_global_kobject = kobject_create();
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002228 BUG_ON(!cpufreq_global_kobject);
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01002229 register_syscore_ops(&cpufreq_syscore_ops);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002230
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002231 return 0;
2232}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002233core_initcall(cpufreq_core_init);