blob: fab042e1ee904c6e892030f8aaa1e03edde0936d [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 kumar8bf1ac722012-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));
Viresh Kumar037ce832013-10-02 14:13:16 +0530831 /* assure that the starting sequence is run in cpufreq_set_policy */
Dave Jonesecf7e462009-07-08 18:48:47 -0400832 policy->governor = NULL;
833
834 /* set default policy */
Viresh Kumar037ce832013-10-02 14:13:16 +0530835 ret = cpufreq_set_policy(policy, &new_policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400836 policy->user_policy.policy = policy->policy;
837 policy->user_policy.governor = policy->governor;
838
839 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200840 pr_debug("setting policy failed\n");
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +0200841 if (cpufreq_driver->exit)
842 cpufreq_driver->exit(policy);
Dave Jonesecf7e462009-07-08 18:48:47 -0400843 }
Dave Jones909a6942009-07-08 18:05:42 -0400844}
845
Viresh Kumarfcf80582013-01-29 14:39:08 +0000846#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumard8d3b472013-08-04 01:20:07 +0200847static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy,
Viresh Kumar42f921a2013-12-20 21:26:02 +0530848 unsigned int cpu, struct device *dev)
Viresh Kumarfcf80582013-01-29 14:39:08 +0000849{
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530850 int ret = 0;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000851 unsigned long flags;
852
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530853 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530854 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
855 if (ret) {
856 pr_err("%s: Failed to stop governor\n", __func__);
857 return ret;
858 }
859 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000860
viresh kumarad7722d2013-10-18 19:10:15 +0530861 down_write(&policy->rwsem);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530862
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000863 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530864
Viresh Kumarfcf80582013-01-29 14:39:08 +0000865 cpumask_set_cpu(cpu, policy->cpus);
866 per_cpu(cpufreq_cpu_data, cpu) = policy;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000867 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +0000868
viresh kumarad7722d2013-10-18 19:10:15 +0530869 up_write(&policy->rwsem);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530870
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530871 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530872 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
873 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
874 pr_err("%s: Failed to start governor\n", __func__);
875 return ret;
876 }
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200877 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000878
Viresh Kumar42f921a2013-12-20 21:26:02 +0530879 return sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq");
Viresh Kumarfcf80582013-01-29 14:39:08 +0000880}
881#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530883static struct cpufreq_policy *cpufreq_policy_restore(unsigned int cpu)
884{
885 struct cpufreq_policy *policy;
886 unsigned long flags;
887
Lan Tianyu44871c92013-09-11 15:05:05 +0800888 read_lock_irqsave(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530889
890 policy = per_cpu(cpufreq_cpu_data_fallback, cpu);
891
Lan Tianyu44871c92013-09-11 15:05:05 +0800892 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530893
894 return policy;
895}
896
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530897static struct cpufreq_policy *cpufreq_policy_alloc(void)
898{
899 struct cpufreq_policy *policy;
900
901 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
902 if (!policy)
903 return NULL;
904
905 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
906 goto err_free_policy;
907
908 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
909 goto err_free_cpumask;
910
Lukasz Majewskic88a1f82013-08-06 22:53:08 +0530911 INIT_LIST_HEAD(&policy->policy_list);
viresh kumarad7722d2013-10-18 19:10:15 +0530912 init_rwsem(&policy->rwsem);
913
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530914 return policy;
915
916err_free_cpumask:
917 free_cpumask_var(policy->cpus);
918err_free_policy:
919 kfree(policy);
920
921 return NULL;
922}
923
Viresh Kumar42f921a2013-12-20 21:26:02 +0530924static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy)
925{
926 struct kobject *kobj;
927 struct completion *cmp;
928
929 down_read(&policy->rwsem);
930 kobj = &policy->kobj;
931 cmp = &policy->kobj_unregister;
932 up_read(&policy->rwsem);
933 kobject_put(kobj);
934
935 /*
936 * We need to make sure that the underlying kobj is
937 * actually not referenced anymore by anybody before we
938 * proceed with unloading.
939 */
940 pr_debug("waiting for dropping of refcount\n");
941 wait_for_completion(cmp);
942 pr_debug("wait complete\n");
943}
944
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530945static void cpufreq_policy_free(struct cpufreq_policy *policy)
946{
947 free_cpumask_var(policy->related_cpus);
948 free_cpumask_var(policy->cpus);
949 kfree(policy);
950}
951
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530952static void update_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
953{
Srivatsa S. Bhat99ec8992013-09-12 17:29:09 +0530954 if (WARN_ON(cpu == policy->cpu))
Srivatsa S. Bhatcb38ed52013-09-12 01:43:42 +0530955 return;
956
viresh kumarad7722d2013-10-18 19:10:15 +0530957 down_write(&policy->rwsem);
Viresh Kumar8efd5762013-09-17 10:22:11 +0530958
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530959 policy->last_cpu = policy->cpu;
960 policy->cpu = cpu;
961
viresh kumarad7722d2013-10-18 19:10:15 +0530962 up_write(&policy->rwsem);
Viresh Kumar8efd5762013-09-17 10:22:11 +0530963
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530964 cpufreq_frequency_table_update_policy_cpu(policy);
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530965 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
966 CPUFREQ_UPDATE_POLICY_CPU, policy);
967}
968
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530969static int __cpufreq_add_dev(struct device *dev, struct subsys_interface *sif,
970 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Viresh Kumarfcf80582013-01-29 14:39:08 +0000972 unsigned int j, cpu = dev->id;
Viresh Kumar65922462013-02-07 10:56:03 +0530973 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500976#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumar1b274292013-08-20 12:08:26 +0530977 struct cpufreq_policy *tpolicy;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000978 struct cpufreq_governor *gov;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500979#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Ashok Rajc32b6b82005-10-30 14:59:54 -0800981 if (cpu_is_offline(cpu))
982 return 0;
983
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200984 pr_debug("adding CPU %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986#ifdef CONFIG_SMP
987 /* check whether a different CPU already registered this
988 * CPU because it is in the same boat. */
989 policy = cpufreq_cpu_get(cpu);
990 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500991 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 return 0;
993 }
Li Zhong5025d622013-08-21 01:31:08 +0200994#endif
Viresh Kumarfcf80582013-01-29 14:39:08 +0000995
Viresh Kumar6eed9402013-08-06 22:53:11 +0530996 if (!down_read_trylock(&cpufreq_rwsem))
997 return 0;
998
Viresh Kumarfcf80582013-01-29 14:39:08 +0000999#ifdef CONFIG_HOTPLUG_CPU
1000 /* Check if this cpu was hot-unplugged earlier and has siblings */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001001 read_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +05301002 list_for_each_entry(tpolicy, &cpufreq_policy_list, policy_list) {
1003 if (cpumask_test_cpu(cpu, tpolicy->related_cpus)) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001004 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301005 ret = cpufreq_add_policy_cpu(tpolicy, cpu, dev);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301006 up_read(&cpufreq_rwsem);
1007 return ret;
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301008 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001009 }
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001010 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +00001011#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301013 if (frozen)
1014 /* Restore the saved policy when doing light-weight init */
1015 policy = cpufreq_policy_restore(cpu);
1016 else
1017 policy = cpufreq_policy_alloc();
1018
Dave Jones059019a2009-07-08 16:30:03 -04001019 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -04001021
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301022
1023 /*
1024 * In the resume path, since we restore a saved policy, the assignment
1025 * to policy->cpu is like an update of the existing policy, rather than
1026 * the creation of a brand new one. So we need to perform this update
1027 * by invoking update_policy_cpu().
1028 */
1029 if (frozen && cpu != policy->cpu)
1030 update_policy_cpu(policy, cpu);
1031 else
1032 policy->cpu = cpu;
1033
Viresh Kumar65922462013-02-07 10:56:03 +05301034 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Rusty Russell835481d2009-01-04 05:18:06 -08001035 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001038 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 /* call driver. From then on the cpufreq must be able
1041 * to accept all calls to ->verify and ->setpolicy for this CPU
1042 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001043 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001045 pr_debug("initialization failed\n");
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301046 goto err_set_policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001048
Viresh Kumarda60ce92013-10-03 20:28:30 +05301049 if (cpufreq_driver->get) {
1050 policy->cur = cpufreq_driver->get(policy->cpu);
1051 if (!policy->cur) {
1052 pr_err("%s: ->get() failed\n", __func__);
1053 goto err_get_freq;
1054 }
1055 }
1056
Viresh Kumarfcf80582013-01-29 14:39:08 +00001057 /* related cpus should atleast have policy->cpus */
1058 cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
1059
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001060 /*
1061 * affected cpus must always be the one, which are online. We aren't
1062 * managing offline cpus here.
1063 */
1064 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1065
Mike Chan187d9f42008-12-04 12:19:17 -08001066 policy->user_policy.min = policy->min;
1067 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Thomas Renningera1531ac2008-07-29 22:32:58 -07001069 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1070 CPUFREQ_START, policy);
1071
Viresh Kumarfcf80582013-01-29 14:39:08 +00001072#ifdef CONFIG_HOTPLUG_CPU
1073 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
1074 if (gov) {
1075 policy->governor = gov;
1076 pr_debug("Restoring governor %s for cpu %d\n",
1077 policy->governor->name, cpu);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001078 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001079#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301081 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301082 for_each_cpu(j, policy->cpus)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301083 per_cpu(cpufreq_cpu_data, j) = policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301084 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1085
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301086 if (!frozen) {
Viresh Kumar308b60e2013-07-31 14:35:14 +02001087 ret = cpufreq_add_dev_interface(policy, dev);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301088 if (ret)
1089 goto err_out_unregister;
1090 }
Dave Jones8ff69732006-03-05 03:37:23 -05001091
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301092 write_lock_irqsave(&cpufreq_driver_lock, flags);
1093 list_add(&policy->policy_list, &cpufreq_policy_list);
1094 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1095
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301096 cpufreq_init_policy(policy);
1097
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001098 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301099 up_read(&cpufreq_rwsem);
1100
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001101 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return 0;
1104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105err_out_unregister:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001106 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301107 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001108 per_cpu(cpufreq_cpu_data, j) = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001109 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Viresh Kumarda60ce92013-10-03 20:28:30 +05301111err_get_freq:
1112 if (cpufreq_driver->exit)
1113 cpufreq_driver->exit(policy);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301114err_set_policy_cpu:
Viresh Kumar42f921a2013-12-20 21:26:02 +05301115 if (frozen)
1116 cpufreq_policy_put_kobj(policy);
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301117 cpufreq_policy_free(policy);
Viresh Kumar42f921a2013-12-20 21:26:02 +05301118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119nomem_out:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301120 up_read(&cpufreq_rwsem);
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return ret;
1123}
1124
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301125/**
1126 * cpufreq_add_dev - add a CPU device
1127 *
1128 * Adds the cpufreq interface for a CPU device.
1129 *
1130 * The Oracle says: try running cpufreq registration/unregistration concurrently
1131 * with with cpu hotplugging and all hell will break loose. Tried to clean this
1132 * mess up, but more thorough testing is needed. - Mathieu
1133 */
1134static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1135{
1136 return __cpufreq_add_dev(dev, sif, false);
1137}
1138
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301139static int cpufreq_nominate_new_policy_cpu(struct cpufreq_policy *policy,
Viresh Kumar42f921a2013-12-20 21:26:02 +05301140 unsigned int old_cpu)
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301141{
1142 struct device *cpu_dev;
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301143 int ret;
1144
1145 /* first sibling now owns the new sysfs dir */
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301146 cpu_dev = get_cpu_device(cpumask_any_but(policy->cpus, old_cpu));
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301147
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301148 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301149 ret = kobject_move(&policy->kobj, &cpu_dev->kobj);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301150 if (ret) {
1151 pr_err("%s: Failed to move kobj: %d", __func__, ret);
1152
viresh kumarad7722d2013-10-18 19:10:15 +05301153 down_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301154 cpumask_set_cpu(old_cpu, policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301155 up_write(&policy->rwsem);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301156
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301157 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301158 "cpufreq");
1159
1160 return -EINVAL;
1161 }
1162
1163 return cpu_dev->id;
1164}
1165
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301166static int __cpufreq_remove_dev_prepare(struct device *dev,
1167 struct subsys_interface *sif,
1168 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301170 unsigned int cpu = dev->id, cpus;
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301171 int new_cpu, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 unsigned long flags;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301173 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001175 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001177 write_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301179 policy = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301181 /* Save the policy somewhere when doing a light-weight tear-down */
1182 if (frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301183 per_cpu(cpufreq_cpu_data_fallback, cpu) = policy;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301184
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001185 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301187 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001188 pr_debug("%s: No cpu_data found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301192 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301193 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1194 if (ret) {
1195 pr_err("%s: Failed to stop governor\n", __func__);
1196 return ret;
1197 }
1198 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001199
Jacob Shin27ecddc2011-04-27 13:32:11 -05001200#ifdef CONFIG_HOTPLUG_CPU
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001201 if (!cpufreq_driver->setpolicy)
Dirk Brandewiefa69e332013-02-06 09:02:11 -08001202 strncpy(per_cpu(cpufreq_cpu_governor, cpu),
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301203 policy->governor->name, CPUFREQ_NAME_LEN);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001204#endif
1205
viresh kumarad7722d2013-10-18 19:10:15 +05301206 down_read(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301207 cpus = cpumask_weight(policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301208 up_read(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Srivatsa S. Bhat61173f22013-09-12 01:43:25 +05301210 if (cpu != policy->cpu) {
1211 if (!frozen)
1212 sysfs_remove_link(&dev->kobj, "cpufreq");
Viresh Kumar73bf0fc2013-02-05 22:21:14 +01001213 } else if (cpus > 1) {
Viresh Kumar42f921a2013-12-20 21:26:02 +05301214 new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301215 if (new_cpu >= 0) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301216 update_policy_cpu(policy, new_cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301217
1218 if (!frozen) {
Viresh Kumar75949c92013-10-02 14:13:13 +05301219 pr_debug("%s: policy Kobject moved to cpu: %d from: %d\n",
1220 __func__, new_cpu, cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301221 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001222 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001223 }
Venki Pallipadiec282972007-03-26 12:03:19 -07001224
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301225 return 0;
1226}
1227
1228static int __cpufreq_remove_dev_finish(struct device *dev,
1229 struct subsys_interface *sif,
1230 bool frozen)
1231{
1232 unsigned int cpu = dev->id, cpus;
1233 int ret;
1234 unsigned long flags;
1235 struct cpufreq_policy *policy;
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301236
1237 read_lock_irqsave(&cpufreq_driver_lock, flags);
1238 policy = per_cpu(cpufreq_cpu_data, cpu);
1239 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1240
1241 if (!policy) {
1242 pr_debug("%s: No cpu_data found\n", __func__);
1243 return -EINVAL;
1244 }
1245
viresh kumarad7722d2013-10-18 19:10:15 +05301246 down_write(&policy->rwsem);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301247 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301248
1249 if (cpus > 1)
1250 cpumask_clear_cpu(cpu, policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301251 up_write(&policy->rwsem);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301252
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001253 /* If cpu is last user of policy, free policy */
1254 if (cpus == 1) {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301255 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301256 ret = __cpufreq_governor(policy,
1257 CPUFREQ_GOV_POLICY_EXIT);
1258 if (ret) {
1259 pr_err("%s: Failed to exit governor\n",
1260 __func__);
1261 return ret;
1262 }
Viresh Kumaredab2fb2013-08-20 12:08:22 +05301263 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001264
Viresh Kumar42f921a2013-12-20 21:26:02 +05301265 if (!frozen)
1266 cpufreq_policy_put_kobj(policy);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301267
1268 /*
1269 * Perform the ->exit() even during light-weight tear-down,
1270 * since this is a core component, and is essential for the
1271 * subsequent light-weight ->init() to succeed.
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001272 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001273 if (cpufreq_driver->exit)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301274 cpufreq_driver->exit(policy);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001275
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301276 /* Remove policy from list of active policies */
1277 write_lock_irqsave(&cpufreq_driver_lock, flags);
1278 list_del(&policy->policy_list);
1279 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1280
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301281 if (!frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301282 cpufreq_policy_free(policy);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001283 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301284 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301285 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
1286 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
1287 pr_err("%s: Failed to start governor\n",
1288 __func__);
1289 return ret;
1290 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001291 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Viresh Kumar474deff2013-08-20 12:08:25 +05301294 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 return 0;
1296}
1297
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301298/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301299 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301300 *
1301 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301302 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001303static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001304{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001305 unsigned int cpu = dev->id;
Viresh Kumar27a862e2013-10-02 14:13:14 +05301306 int ret;
Venki Pallipadiec282972007-03-26 12:03:19 -07001307
1308 if (cpu_is_offline(cpu))
1309 return 0;
1310
Viresh Kumar27a862e2013-10-02 14:13:14 +05301311 ret = __cpufreq_remove_dev_prepare(dev, sif, false);
1312
1313 if (!ret)
1314 ret = __cpufreq_remove_dev_finish(dev, sif, false);
1315
1316 return ret;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001317}
1318
David Howells65f27f32006-11-22 14:55:48 +00001319static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
David Howells65f27f32006-11-22 14:55:48 +00001321 struct cpufreq_policy *policy =
1322 container_of(work, struct cpufreq_policy, update);
1323 unsigned int cpu = policy->cpu;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001324 pr_debug("handle_update for cpu %u called\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 cpufreq_update_policy(cpu);
1326}
1327
1328/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301329 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1330 * in deep trouble.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 * @cpu: cpu number
1332 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1333 * @new_freq: CPU frequency the CPU actually runs at
1334 *
Dave Jones29464f22009-01-18 01:37:11 -05001335 * We adjust to current frequency first, and need to clean up later.
1336 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301338static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1339 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301341 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301343 unsigned long flags;
1344
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001345 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 freqs.old = old_freq;
1349 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301350
1351 read_lock_irqsave(&cpufreq_driver_lock, flags);
1352 policy = per_cpu(cpufreq_cpu_data, cpu);
1353 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1354
1355 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1356 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357}
1358
Dave Jones32ee8c32006-02-28 00:43:23 -05001359/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301360 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001361 * @cpu: CPU number
1362 *
1363 * This is the last known freq, without actually getting it from the driver.
1364 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1365 */
1366unsigned int cpufreq_quick_get(unsigned int cpu)
1367{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001368 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301369 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001370
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001371 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1372 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001373
1374 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001375 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301376 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001377 cpufreq_cpu_put(policy);
1378 }
1379
Dave Jones4d34a672008-02-07 16:33:49 -05001380 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001381}
1382EXPORT_SYMBOL(cpufreq_quick_get);
1383
Jesse Barnes3d737102011-06-28 10:59:12 -07001384/**
1385 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1386 * @cpu: CPU number
1387 *
1388 * Just return the max possible frequency for a given CPU.
1389 */
1390unsigned int cpufreq_quick_get_max(unsigned int cpu)
1391{
1392 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1393 unsigned int ret_freq = 0;
1394
1395 if (policy) {
1396 ret_freq = policy->max;
1397 cpufreq_cpu_put(policy);
1398 }
1399
1400 return ret_freq;
1401}
1402EXPORT_SYMBOL(cpufreq_quick_get_max);
1403
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001404static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001406 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301407 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001409 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001410 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001412 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301414 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001415 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301416 /* verify no discrepancy between actual and
1417 saved value exists */
1418 if (unlikely(ret_freq != policy->cur)) {
1419 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 schedule_work(&policy->update);
1421 }
1422 }
1423
Dave Jones4d34a672008-02-07 16:33:49 -05001424 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001425}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001427/**
1428 * cpufreq_get - get the current CPU frequency (in kHz)
1429 * @cpu: CPU number
1430 *
1431 * Get the CPU current (static) CPU frequency
1432 */
1433unsigned int cpufreq_get(unsigned int cpu)
1434{
viresh kumarad7722d2013-10-18 19:10:15 +05301435 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001436 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001437
Viresh Kumar26ca8692013-09-20 22:37:31 +05301438 if (cpufreq_disabled() || !cpufreq_driver)
1439 return -ENOENT;
1440
viresh kumarad7722d2013-10-18 19:10:15 +05301441 BUG_ON(!policy);
1442
Viresh Kumar6eed9402013-08-06 22:53:11 +05301443 if (!down_read_trylock(&cpufreq_rwsem))
1444 return 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001445
viresh kumarad7722d2013-10-18 19:10:15 +05301446 down_read(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001447
1448 ret_freq = __cpufreq_get(cpu);
1449
viresh kumarad7722d2013-10-18 19:10:15 +05301450 up_read(&policy->rwsem);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301451 up_read(&cpufreq_rwsem);
1452
Dave Jones4d34a672008-02-07 16:33:49 -05001453 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454}
1455EXPORT_SYMBOL(cpufreq_get);
1456
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001457static struct subsys_interface cpufreq_interface = {
1458 .name = "cpufreq",
1459 .subsys = &cpu_subsys,
1460 .add_dev = cpufreq_add_dev,
1461 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001462};
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001465 * cpufreq_bp_suspend - Prepare the boot CPU for system suspend.
1466 *
1467 * This function is only executed for the boot processor. The other CPUs
1468 * have been put offline by means of CPU hotplug.
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001469 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001470static int cpufreq_bp_suspend(void)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001471{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301472 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001473
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001474 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301475 struct cpufreq_policy *policy;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001476
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001477 pr_debug("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001478
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001479 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301480 policy = cpufreq_cpu_get(cpu);
1481 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001482 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001483
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001484 if (cpufreq_driver->suspend) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301485 ret = cpufreq_driver->suspend(policy);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001486 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001487 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301488 "step on CPU %u\n", policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001489 }
1490
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301491 cpufreq_cpu_put(policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001492 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001493}
1494
1495/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001496 * cpufreq_bp_resume - Restore proper frequency handling of the boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 *
1498 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001499 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1500 * restored. It will verify that the current freq is in sync with
1501 * what we believe it to be. This is a bit later than when it
1502 * should be, but nonethteless it's better than calling
1503 * cpufreq_driver->get() here which might re-enable interrupts...
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001504 *
1505 * This function is only executed for the boot CPU. The other CPUs have not
1506 * been turned on yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001508static void cpufreq_bp_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301510 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001511
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001512 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301513 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001515 pr_debug("resuming cpu %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001517 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301518 policy = cpufreq_cpu_get(cpu);
1519 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001520 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001522 if (cpufreq_driver->resume) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301523 ret = cpufreq_driver->resume(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 if (ret) {
1525 printk(KERN_ERR "cpufreq: resume failed in ->resume "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301526 "step on CPU %u\n", policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001527 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529 }
1530
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301531 schedule_work(&policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001532
Dave Jonesc9060492008-02-07 16:32:18 -05001533fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301534 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535}
1536
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001537static struct syscore_ops cpufreq_syscore_ops = {
1538 .suspend = cpufreq_bp_suspend,
1539 .resume = cpufreq_bp_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540};
1541
Borislav Petkov9d950462013-01-20 10:24:28 +00001542/**
1543 * cpufreq_get_current_driver - return current driver's name
1544 *
1545 * Return the name string of the currently loaded cpufreq driver
1546 * or NULL, if none.
1547 */
1548const char *cpufreq_get_current_driver(void)
1549{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001550 if (cpufreq_driver)
1551 return cpufreq_driver->name;
1552
1553 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001554}
1555EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
1557/*********************************************************************
1558 * NOTIFIER LISTS INTERFACE *
1559 *********************************************************************/
1560
1561/**
1562 * cpufreq_register_notifier - register a driver with cpufreq
1563 * @nb: notifier function to register
1564 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1565 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001566 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 * are notified about clock rate changes (once before and once after
1568 * the transition), or a list of drivers that are notified about
1569 * changes in cpufreq policy.
1570 *
1571 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001572 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 */
1574int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1575{
1576 int ret;
1577
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001578 if (cpufreq_disabled())
1579 return -EINVAL;
1580
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001581 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1582
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 switch (list) {
1584 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001585 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001586 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 break;
1588 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001589 ret = blocking_notifier_chain_register(
1590 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 break;
1592 default:
1593 ret = -EINVAL;
1594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 return ret;
1597}
1598EXPORT_SYMBOL(cpufreq_register_notifier);
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600/**
1601 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1602 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301603 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 *
1605 * Remove a driver from the CPU frequency notifier list.
1606 *
1607 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001608 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 */
1610int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1611{
1612 int ret;
1613
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001614 if (cpufreq_disabled())
1615 return -EINVAL;
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 switch (list) {
1618 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001619 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001620 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 break;
1622 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001623 ret = blocking_notifier_chain_unregister(
1624 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 break;
1626 default:
1627 ret = -EINVAL;
1628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 return ret;
1631}
1632EXPORT_SYMBOL(cpufreq_unregister_notifier);
1633
1634
1635/*********************************************************************
1636 * GOVERNORS *
1637 *********************************************************************/
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639int __cpufreq_driver_target(struct cpufreq_policy *policy,
1640 unsigned int target_freq,
1641 unsigned int relation)
1642{
1643 int retval = -EINVAL;
Viresh Kumar72499242012-10-31 01:28:21 +01001644 unsigned int old_target_freq = target_freq;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001645
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001646 if (cpufreq_disabled())
1647 return -ENODEV;
1648
Viresh Kumar72499242012-10-31 01:28:21 +01001649 /* Make sure that target_freq is within supported range */
1650 if (target_freq > policy->max)
1651 target_freq = policy->max;
1652 if (target_freq < policy->min)
1653 target_freq = policy->min;
1654
1655 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
1656 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001657
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301658 /*
1659 * This might look like a redundant call as we are checking it again
1660 * after finding index. But it is left intentionally for cases where
1661 * exactly same freq is called again and so we can save on few function
1662 * calls.
1663 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001664 if (target_freq == policy->cur)
1665 return 0;
1666
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001667 if (cpufreq_driver->target)
1668 retval = cpufreq_driver->target(policy, target_freq, relation);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301669 else if (cpufreq_driver->target_index) {
1670 struct cpufreq_frequency_table *freq_table;
Viresh Kumard4019f02013-08-14 19:38:24 +05301671 struct cpufreq_freqs freqs;
1672 bool notify;
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301673 int index;
Ashok Raj90d45d12005-11-08 21:34:24 -08001674
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301675 freq_table = cpufreq_frequency_get_table(policy->cpu);
1676 if (unlikely(!freq_table)) {
1677 pr_err("%s: Unable to find freq_table\n", __func__);
1678 goto out;
1679 }
1680
1681 retval = cpufreq_frequency_table_target(policy, freq_table,
1682 target_freq, relation, &index);
1683 if (unlikely(retval)) {
1684 pr_err("%s: Unable to find matching freq\n", __func__);
1685 goto out;
1686 }
1687
Viresh Kumard4019f02013-08-14 19:38:24 +05301688 if (freq_table[index].frequency == policy->cur) {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301689 retval = 0;
Viresh Kumard4019f02013-08-14 19:38:24 +05301690 goto out;
1691 }
1692
1693 notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
1694
1695 if (notify) {
1696 freqs.old = policy->cur;
1697 freqs.new = freq_table[index].frequency;
1698 freqs.flags = 0;
1699
1700 pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
1701 __func__, policy->cpu, freqs.old,
1702 freqs.new);
1703
1704 cpufreq_notify_transition(policy, &freqs,
1705 CPUFREQ_PRECHANGE);
1706 }
1707
1708 retval = cpufreq_driver->target_index(policy, index);
1709 if (retval)
1710 pr_err("%s: Failed to change cpu frequency: %d\n",
1711 __func__, retval);
1712
1713 if (notify) {
1714 /*
1715 * Notify with old freq in case we failed to change
1716 * frequency
1717 */
1718 if (retval)
1719 freqs.new = freqs.old;
1720
1721 cpufreq_notify_transition(policy, &freqs,
1722 CPUFREQ_POSTCHANGE);
1723 }
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301724 }
1725
1726out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 return retval;
1728}
1729EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1730
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731int cpufreq_driver_target(struct cpufreq_policy *policy,
1732 unsigned int target_freq,
1733 unsigned int relation)
1734{
Julia Lawallf1829e42008-07-25 22:44:53 +02001735 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
viresh kumarad7722d2013-10-18 19:10:15 +05301737 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739 ret = __cpufreq_driver_target(policy, target_freq, relation);
1740
viresh kumarad7722d2013-10-18 19:10:15 +05301741 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return ret;
1744}
1745EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1746
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001747/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001748 * when "event" is CPUFREQ_GOV_LIMITS
1749 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301751static int __cpufreq_governor(struct cpufreq_policy *policy,
1752 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
Dave Jonescc993ca2005-07-28 09:43:56 -07001754 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001755
1756 /* Only must be defined when default governor is known to have latency
1757 restrictions, like e.g. conservative or ondemand.
1758 That this is the case is already ensured in Kconfig
1759 */
1760#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1761 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1762#else
1763 struct cpufreq_governor *gov = NULL;
1764#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001765
1766 if (policy->governor->max_transition_latency &&
1767 policy->cpuinfo.transition_latency >
1768 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001769 if (!gov)
1770 return -EINVAL;
1771 else {
1772 printk(KERN_WARNING "%s governor failed, too long"
1773 " transition latency of HW, fallback"
1774 " to %s governor\n",
1775 policy->governor->name,
1776 gov->name);
1777 policy->governor = gov;
1778 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Viresh Kumarfe492f32013-08-06 22:53:10 +05301781 if (event == CPUFREQ_GOV_POLICY_INIT)
1782 if (!try_module_get(policy->governor->owner))
1783 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001785 pr_debug("__cpufreq_governor for CPU %u, event %u\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301786 policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001787
1788 mutex_lock(&cpufreq_governor_lock);
Srivatsa S. Bhat56d07db2013-09-07 01:23:55 +05301789 if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
Viresh Kumarf73d3932013-08-31 17:53:40 +05301790 || (!policy->governor_enabled
1791 && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001792 mutex_unlock(&cpufreq_governor_lock);
1793 return -EBUSY;
1794 }
1795
1796 if (event == CPUFREQ_GOV_STOP)
1797 policy->governor_enabled = false;
1798 else if (event == CPUFREQ_GOV_START)
1799 policy->governor_enabled = true;
1800
1801 mutex_unlock(&cpufreq_governor_lock);
1802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 ret = policy->governor->governor(policy, event);
1804
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001805 if (!ret) {
1806 if (event == CPUFREQ_GOV_POLICY_INIT)
1807 policy->governor->initialized++;
1808 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1809 policy->governor->initialized--;
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001810 } else {
1811 /* Restore original values */
1812 mutex_lock(&cpufreq_governor_lock);
1813 if (event == CPUFREQ_GOV_STOP)
1814 policy->governor_enabled = true;
1815 else if (event == CPUFREQ_GOV_START)
1816 policy->governor_enabled = false;
1817 mutex_unlock(&cpufreq_governor_lock);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001818 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001819
Viresh Kumarfe492f32013-08-06 22:53:10 +05301820 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1821 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 module_put(policy->governor->owner);
1823
1824 return ret;
1825}
1826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827int cpufreq_register_governor(struct cpufreq_governor *governor)
1828{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001829 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 if (!governor)
1832 return -EINVAL;
1833
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001834 if (cpufreq_disabled())
1835 return -ENODEV;
1836
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001837 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001838
Viresh Kumarb3940582013-02-01 05:42:58 +00001839 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001840 err = -EBUSY;
1841 if (__find_governor(governor->name) == NULL) {
1842 err = 0;
1843 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Dave Jones32ee8c32006-02-28 00:43:23 -05001846 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001847 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848}
1849EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1852{
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001853#ifdef CONFIG_HOTPLUG_CPU
1854 int cpu;
1855#endif
1856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if (!governor)
1858 return;
1859
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001860 if (cpufreq_disabled())
1861 return;
1862
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001863#ifdef CONFIG_HOTPLUG_CPU
1864 for_each_present_cpu(cpu) {
1865 if (cpu_online(cpu))
1866 continue;
1867 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1868 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1869 }
1870#endif
1871
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001872 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001874 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return;
1876}
1877EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1878
1879
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880/*********************************************************************
1881 * POLICY INTERFACE *
1882 *********************************************************************/
1883
1884/**
1885 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001886 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1887 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 *
1889 * Reads the current cpufreq policy.
1890 */
1891int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1892{
1893 struct cpufreq_policy *cpu_policy;
1894 if (!policy)
1895 return -EINVAL;
1896
1897 cpu_policy = cpufreq_cpu_get(cpu);
1898 if (!cpu_policy)
1899 return -EINVAL;
1900
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301901 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return 0;
1905}
1906EXPORT_SYMBOL(cpufreq_get_policy);
1907
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001908/*
Viresh Kumar037ce832013-10-02 14:13:16 +05301909 * policy : current policy.
1910 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001911 */
Viresh Kumar037ce832013-10-02 14:13:16 +05301912static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301913 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001915 int ret = 0, failed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301917 pr_debug("setting new policy for CPU %u: %u - %u kHz\n", new_policy->cpu,
1918 new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301920 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301922 if (new_policy->min > policy->max || new_policy->max < policy->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001923 ret = -EINVAL;
1924 goto error_out;
1925 }
1926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301928 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 if (ret)
1930 goto error_out;
1931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001933 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301934 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001937 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301938 CPUFREQ_INCOMPATIBLE, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
Viresh Kumarbb176f72013-06-19 14:19:33 +05301940 /*
1941 * verify the cpu speed can be set within this limit, which might be
1942 * different to the first one
1943 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301944 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08001945 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001949 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301950 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301952 policy->min = new_policy->min;
1953 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001955 pr_debug("new min and max freqs are %u - %u kHz\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301956 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001958 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301959 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001960 pr_debug("setting range\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301961 ret = cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301963 if (new_policy->governor != policy->governor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 /* save old, working values */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301965 struct cpufreq_governor *old_gov = policy->governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001967 pr_debug("governor switch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
1969 /* end old governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301970 if (policy->governor) {
1971 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
viresh kumarad7722d2013-10-18 19:10:15 +05301972 up_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301973 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001974 CPUFREQ_GOV_POLICY_EXIT);
viresh kumarad7722d2013-10-18 19:10:15 +05301975 down_write(&policy->rwsem);
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
1978 /* start new governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301979 policy->governor = new_policy->governor;
1980 if (!__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT)) {
1981 if (!__cpufreq_governor(policy, CPUFREQ_GOV_START)) {
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001982 failed = 0;
Viresh Kumar955ef482013-05-16 05:09:58 +00001983 } else {
viresh kumarad7722d2013-10-18 19:10:15 +05301984 up_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301985 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001986 CPUFREQ_GOV_POLICY_EXIT);
viresh kumarad7722d2013-10-18 19:10:15 +05301987 down_write(&policy->rwsem);
Viresh Kumar955ef482013-05-16 05:09:58 +00001988 }
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001989 }
1990
1991 if (failed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 /* new governor failed, so re-start old one */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001993 pr_debug("starting governor %s failed\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301994 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 if (old_gov) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301996 policy->governor = old_gov;
1997 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001998 CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301999 __cpufreq_governor(policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302000 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
2002 ret = -EINVAL;
2003 goto error_out;
2004 }
2005 /* might be a policy change, too, so fall through */
2006 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002007 pr_debug("governor: change or update limits\n");
Viresh Kumar3de9bde2013-08-06 22:53:13 +05302008 ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 }
2010
Dave Jones7d5e3502006-02-02 17:03:42 -05002011error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return ret;
2013}
2014
2015/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
2017 * @cpu: CPU which shall be re-evaluated
2018 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002019 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 * at different times.
2021 */
2022int cpufreq_update_policy(unsigned int cpu)
2023{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302024 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
2025 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02002026 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302028 if (!policy) {
Julia Lawallf1829e42008-07-25 22:44:53 +02002029 ret = -ENODEV;
2030 goto no_policy;
2031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
viresh kumarad7722d2013-10-18 19:10:15 +05302033 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002035 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302036 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302037 new_policy.min = policy->user_policy.min;
2038 new_policy.max = policy->user_policy.max;
2039 new_policy.policy = policy->user_policy.policy;
2040 new_policy.governor = policy->user_policy.governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Viresh Kumarbb176f72013-06-19 14:19:33 +05302042 /*
2043 * BIOS might change freq behind our back
2044 * -> ask driver for current freq and notify governors about a change
2045 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002046 if (cpufreq_driver->get) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302047 new_policy.cur = cpufreq_driver->get(cpu);
2048 if (!policy->cur) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002049 pr_debug("Driver did not initialize current freq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302050 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002051 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302052 if (policy->cur != new_policy.cur && has_target())
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302053 cpufreq_out_of_sync(cpu, policy->cur,
2054 new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002055 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002056 }
2057
Viresh Kumar037ce832013-10-02 14:13:16 +05302058 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
viresh kumarad7722d2013-10-18 19:10:15 +05302060 up_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002061
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302062 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02002063no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 return ret;
2065}
2066EXPORT_SYMBOL(cpufreq_update_policy);
2067
Paul Gortmaker27609842013-06-19 13:54:04 -04002068static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002069 unsigned long action, void *hcpu)
2070{
2071 unsigned int cpu = (unsigned long)hcpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002072 struct device *dev;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302073 bool frozen = false;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002074
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002075 dev = get_cpu_device(cpu);
2076 if (dev) {
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302077
Rafael J. Wysockid4faadd2013-12-08 01:23:58 +01002078 if (action & CPU_TASKS_FROZEN)
2079 frozen = true;
2080
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302081 switch (action & ~CPU_TASKS_FROZEN) {
Ashok Rajc32b6b82005-10-30 14:59:54 -08002082 case CPU_ONLINE:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302083 __cpufreq_add_dev(dev, NULL, frozen);
Srivatsa S. Bhat23d328992013-07-30 04:23:56 +05302084 cpufreq_update_policy(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002085 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302086
Ashok Rajc32b6b82005-10-30 14:59:54 -08002087 case CPU_DOWN_PREPARE:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302088 __cpufreq_remove_dev_prepare(dev, NULL, frozen);
Srivatsa S. Bhat1aee40a2013-09-07 01:23:27 +05302089 break;
2090
2091 case CPU_POST_DEAD:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302092 __cpufreq_remove_dev_finish(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002093 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302094
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002095 case CPU_DOWN_FAILED:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302096 __cpufreq_add_dev(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002097 break;
2098 }
2099 }
2100 return NOTIFY_OK;
2101}
2102
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002103static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302104 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002105};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107/*********************************************************************
2108 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2109 *********************************************************************/
2110
2111/**
2112 * cpufreq_register_driver - register a CPU Frequency driver
2113 * @driver_data: A struct cpufreq_driver containing the values#
2114 * submitted by the CPU Frequency driver.
2115 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302116 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002118 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 *
2120 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002121int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
2123 unsigned long flags;
2124 int ret;
2125
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002126 if (cpufreq_disabled())
2127 return -ENODEV;
2128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302130 !(driver_data->setpolicy || driver_data->target_index ||
2131 driver_data->target))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 return -EINVAL;
2133
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002134 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 if (driver_data->setpolicy)
2137 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2138
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002139 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002140 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002141 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Yinghai Lu4dea58062013-09-18 21:05:20 -07002142 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002144 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002145 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002147 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002148 if (ret)
2149 goto err_null_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002151 if (!(cpufreq_driver->flags & CPUFREQ_STICKY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 int i;
2153 ret = -ENODEV;
2154
2155 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07002156 for (i = 0; i < nr_cpu_ids; i++)
2157 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07002159 break;
2160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
2162 /* if all ->init() calls failed, unregister */
2163 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002164 pr_debug("no CPU initialized for driver %s\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302165 driver_data->name);
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002166 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 }
2168 }
2169
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002170 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002171 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002173 return 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002174err_if_unreg:
2175 subsys_interface_unregister(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002176err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002177 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002178 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002179 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones4d34a672008-02-07 16:33:49 -05002180 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184/**
2185 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2186 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302187 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 * the right to do so, i.e. if you have succeeded in initialising before!
2189 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2190 * currently not initialised.
2191 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002192int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 unsigned long flags;
2195
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002196 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002199 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002201 subsys_interface_unregister(&cpufreq_interface);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002202 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Viresh Kumar6eed9402013-08-06 22:53:11 +05302204 down_write(&cpufreq_rwsem);
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002205 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302206
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002207 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302208
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002209 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302210 up_write(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
2212 return 0;
2213}
2214EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002215
2216static int __init cpufreq_core_init(void)
2217{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002218 if (cpufreq_disabled())
2219 return -ENODEV;
2220
Viresh Kumar2361be22013-05-17 16:09:09 +05302221 cpufreq_global_kobject = kobject_create();
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002222 BUG_ON(!cpufreq_global_kobject);
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01002223 register_syscore_ops(&cpufreq_syscore_ops);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002224
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002225 return 0;
2226}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002227core_initcall(cpufreq_core_init);