blob: 6c9cbb9ebd1f99b970d97a7c8a8214beae09d2aa [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,
848 unsigned int cpu, struct device *dev,
849 bool frozen)
Viresh Kumarfcf80582013-01-29 14:39:08 +0000850{
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530851 int ret = 0;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000852 unsigned long flags;
853
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530854 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530855 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
856 if (ret) {
857 pr_err("%s: Failed to stop governor\n", __func__);
858 return ret;
859 }
860 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000861
viresh kumarad7722d2013-10-18 19:10:15 +0530862 down_write(&policy->rwsem);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530863
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000864 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530865
Viresh Kumarfcf80582013-01-29 14:39:08 +0000866 cpumask_set_cpu(cpu, policy->cpus);
867 per_cpu(cpufreq_cpu_data, cpu) = policy;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000868 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +0000869
viresh kumarad7722d2013-10-18 19:10:15 +0530870 up_write(&policy->rwsem);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530871
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +0530872 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +0530873 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
874 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
875 pr_err("%s: Failed to start governor\n", __func__);
876 return ret;
877 }
Viresh Kumar820c6ca2013-04-22 00:48:03 +0200878 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000879
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530880 /* Don't touch sysfs links during light-weight init */
Rafael J. Wysocki71c34612013-08-04 01:19:34 +0200881 if (!frozen)
882 ret = sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq");
Viresh Kumarfcf80582013-01-29 14:39:08 +0000883
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530884 return ret;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000885}
886#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530888static struct cpufreq_policy *cpufreq_policy_restore(unsigned int cpu)
889{
890 struct cpufreq_policy *policy;
891 unsigned long flags;
892
Lan Tianyu44871c92013-09-11 15:05:05 +0800893 read_lock_irqsave(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530894
895 policy = per_cpu(cpufreq_cpu_data_fallback, cpu);
896
Lan Tianyu44871c92013-09-11 15:05:05 +0800897 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530898
899 return policy;
900}
901
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530902static struct cpufreq_policy *cpufreq_policy_alloc(void)
903{
904 struct cpufreq_policy *policy;
905
906 policy = kzalloc(sizeof(*policy), GFP_KERNEL);
907 if (!policy)
908 return NULL;
909
910 if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
911 goto err_free_policy;
912
913 if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
914 goto err_free_cpumask;
915
Lukasz Majewskic88a1f82013-08-06 22:53:08 +0530916 INIT_LIST_HEAD(&policy->policy_list);
viresh kumarad7722d2013-10-18 19:10:15 +0530917 init_rwsem(&policy->rwsem);
918
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +0530919 return policy;
920
921err_free_cpumask:
922 free_cpumask_var(policy->cpus);
923err_free_policy:
924 kfree(policy);
925
926 return NULL;
927}
928
929static void cpufreq_policy_free(struct cpufreq_policy *policy)
930{
931 free_cpumask_var(policy->related_cpus);
932 free_cpumask_var(policy->cpus);
933 kfree(policy);
934}
935
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530936static void update_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
937{
Srivatsa S. Bhat99ec8992013-09-12 17:29:09 +0530938 if (WARN_ON(cpu == policy->cpu))
Srivatsa S. Bhatcb38ed52013-09-12 01:43:42 +0530939 return;
940
viresh kumarad7722d2013-10-18 19:10:15 +0530941 down_write(&policy->rwsem);
Viresh Kumar8efd5762013-09-17 10:22:11 +0530942
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530943 policy->last_cpu = policy->cpu;
944 policy->cpu = cpu;
945
viresh kumarad7722d2013-10-18 19:10:15 +0530946 up_write(&policy->rwsem);
Viresh Kumar8efd5762013-09-17 10:22:11 +0530947
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530948 cpufreq_frequency_table_update_policy_cpu(policy);
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +0530949 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
950 CPUFREQ_UPDATE_POLICY_CPU, policy);
951}
952
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +0530953static int __cpufreq_add_dev(struct device *dev, struct subsys_interface *sif,
954 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Viresh Kumarfcf80582013-01-29 14:39:08 +0000956 unsigned int j, cpu = dev->id;
Viresh Kumar65922462013-02-07 10:56:03 +0530957 int ret = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 unsigned long flags;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500960#ifdef CONFIG_HOTPLUG_CPU
Viresh Kumar1b274292013-08-20 12:08:26 +0530961 struct cpufreq_policy *tpolicy;
Viresh Kumarfcf80582013-01-29 14:39:08 +0000962 struct cpufreq_governor *gov;
Prarit Bhargava90e41ba2009-11-12 09:18:46 -0500963#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Ashok Rajc32b6b82005-10-30 14:59:54 -0800965 if (cpu_is_offline(cpu))
966 return 0;
967
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +0200968 pr_debug("adding CPU %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970#ifdef CONFIG_SMP
971 /* check whether a different CPU already registered this
972 * CPU because it is in the same boat. */
973 policy = cpufreq_cpu_get(cpu);
974 if (unlikely(policy)) {
Dave Jones8ff69732006-03-05 03:37:23 -0500975 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return 0;
977 }
Li Zhong5025d622013-08-21 01:31:08 +0200978#endif
Viresh Kumarfcf80582013-01-29 14:39:08 +0000979
Viresh Kumar6eed9402013-08-06 22:53:11 +0530980 if (!down_read_trylock(&cpufreq_rwsem))
981 return 0;
982
Viresh Kumarfcf80582013-01-29 14:39:08 +0000983#ifdef CONFIG_HOTPLUG_CPU
984 /* Check if this cpu was hot-unplugged earlier and has siblings */
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000985 read_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +0530986 list_for_each_entry(tpolicy, &cpufreq_policy_list, policy_list) {
987 if (cpumask_test_cpu(cpu, tpolicy->related_cpus)) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000988 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar1b274292013-08-20 12:08:26 +0530989 ret = cpufreq_add_policy_cpu(tpolicy, cpu, dev, frozen);
Viresh Kumar6eed9402013-08-06 22:53:11 +0530990 up_read(&cpufreq_rwsem);
991 return ret;
Viresh Kumar2eaa3e22013-02-07 10:55:00 +0530992 }
Viresh Kumarfcf80582013-01-29 14:39:08 +0000993 }
Nathan Zimmer0d1857a2013-02-22 16:24:34 +0000994 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumarfcf80582013-01-29 14:39:08 +0000995#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Srivatsa S. Bhat84148092013-07-30 04:25:10 +0530997 if (frozen)
998 /* Restore the saved policy when doing light-weight init */
999 policy = cpufreq_policy_restore(cpu);
1000 else
1001 policy = cpufreq_policy_alloc();
1002
Dave Jones059019a2009-07-08 16:30:03 -04001003 if (!policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 goto nomem_out;
Dave Jones059019a2009-07-08 16:30:03 -04001005
Srivatsa S. Bhat0d66b912013-09-12 01:42:59 +05301006
1007 /*
1008 * In the resume path, since we restore a saved policy, the assignment
1009 * to policy->cpu is like an update of the existing policy, rather than
1010 * the creation of a brand new one. So we need to perform this update
1011 * by invoking update_policy_cpu().
1012 */
1013 if (frozen && cpu != policy->cpu)
1014 update_policy_cpu(policy, cpu);
1015 else
1016 policy->cpu = cpu;
1017
Viresh Kumar65922462013-02-07 10:56:03 +05301018 policy->governor = CPUFREQ_DEFAULT_GOVERNOR;
Rusty Russell835481d2009-01-04 05:18:06 -08001019 cpumask_copy(policy->cpus, cpumask_of(cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 init_completion(&policy->kobj_unregister);
David Howells65f27f32006-11-22 14:55:48 +00001022 INIT_WORK(&policy->update, handle_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 /* call driver. From then on the cpufreq must be able
1025 * to accept all calls to ->verify and ->setpolicy for this CPU
1026 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001027 ret = cpufreq_driver->init(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001029 pr_debug("initialization failed\n");
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301030 goto err_set_policy_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001032
Viresh Kumarda60ce92013-10-03 20:28:30 +05301033 if (cpufreq_driver->get) {
1034 policy->cur = cpufreq_driver->get(policy->cpu);
1035 if (!policy->cur) {
1036 pr_err("%s: ->get() failed\n", __func__);
1037 goto err_get_freq;
1038 }
1039 }
1040
Viresh Kumarfcf80582013-01-29 14:39:08 +00001041 /* related cpus should atleast have policy->cpus */
1042 cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
1043
Viresh Kumar643ae6e2013-01-12 05:14:38 +00001044 /*
1045 * affected cpus must always be the one, which are online. We aren't
1046 * managing offline cpus here.
1047 */
1048 cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
1049
Mike Chan187d9f42008-12-04 12:19:17 -08001050 policy->user_policy.min = policy->min;
1051 policy->user_policy.max = policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Thomas Renningera1531ac2008-07-29 22:32:58 -07001053 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1054 CPUFREQ_START, policy);
1055
Viresh Kumarfcf80582013-01-29 14:39:08 +00001056#ifdef CONFIG_HOTPLUG_CPU
1057 gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu));
1058 if (gov) {
1059 policy->governor = gov;
1060 pr_debug("Restoring governor %s for cpu %d\n",
1061 policy->governor->name, cpu);
Thomas Renninger4bfa0422009-07-24 15:25:03 +02001062 }
Viresh Kumarfcf80582013-01-29 14:39:08 +00001063#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301065 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301066 for_each_cpu(j, policy->cpus)
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301067 per_cpu(cpufreq_cpu_data, j) = policy;
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301068 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1069
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301070 if (!frozen) {
Viresh Kumar308b60e2013-07-31 14:35:14 +02001071 ret = cpufreq_add_dev_interface(policy, dev);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301072 if (ret)
1073 goto err_out_unregister;
1074 }
Dave Jones8ff69732006-03-05 03:37:23 -05001075
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301076 write_lock_irqsave(&cpufreq_driver_lock, flags);
1077 list_add(&policy->policy_list, &cpufreq_policy_list);
1078 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1079
Srivatsa S. Bhate18f1682013-07-30 04:24:23 +05301080 cpufreq_init_policy(policy);
1081
Greg Kroah-Hartman038c5b32007-12-17 15:54:39 -04001082 kobject_uevent(&policy->kobj, KOBJ_ADD);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301083 up_read(&cpufreq_rwsem);
1084
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001085 pr_debug("initialization complete\n");
Dave Jones87c32272006-03-29 01:48:37 -05001086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 return 0;
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089err_out_unregister:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001090 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar474deff2013-08-20 12:08:25 +05301091 for_each_cpu(j, policy->cpus)
Mike Travis7a6aedf2008-03-25 15:06:53 -07001092 per_cpu(cpufreq_cpu_data, j) = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001093 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
Viresh Kumarda60ce92013-10-03 20:28:30 +05301095err_get_freq:
1096 if (cpufreq_driver->exit)
1097 cpufreq_driver->exit(policy);
Viresh Kumar2eaa3e22013-02-07 10:55:00 +05301098err_set_policy_cpu:
Srivatsa S. Bhate9698cc2013-07-30 04:24:11 +05301099 cpufreq_policy_free(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100nomem_out:
Viresh Kumar6eed9402013-08-06 22:53:11 +05301101 up_read(&cpufreq_rwsem);
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return ret;
1104}
1105
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301106/**
1107 * cpufreq_add_dev - add a CPU device
1108 *
1109 * Adds the cpufreq interface for a CPU device.
1110 *
1111 * The Oracle says: try running cpufreq registration/unregistration concurrently
1112 * with with cpu hotplugging and all hell will break loose. Tried to clean this
1113 * mess up, but more thorough testing is needed. - Mathieu
1114 */
1115static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
1116{
1117 return __cpufreq_add_dev(dev, sif, false);
1118}
1119
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301120static int cpufreq_nominate_new_policy_cpu(struct cpufreq_policy *policy,
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301121 unsigned int old_cpu, bool frozen)
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301122{
1123 struct device *cpu_dev;
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301124 int ret;
1125
1126 /* first sibling now owns the new sysfs dir */
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301127 cpu_dev = get_cpu_device(cpumask_any_but(policy->cpus, old_cpu));
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301128
1129 /* Don't touch sysfs files during light-weight tear-down */
1130 if (frozen)
1131 return cpu_dev->id;
1132
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301133 sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301134 ret = kobject_move(&policy->kobj, &cpu_dev->kobj);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301135 if (ret) {
1136 pr_err("%s: Failed to move kobj: %d", __func__, ret);
1137
viresh kumarad7722d2013-10-18 19:10:15 +05301138 down_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301139 cpumask_set_cpu(old_cpu, policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301140 up_write(&policy->rwsem);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301141
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301142 ret = sysfs_create_link(&cpu_dev->kobj, &policy->kobj,
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301143 "cpufreq");
1144
1145 return -EINVAL;
1146 }
1147
1148 return cpu_dev->id;
1149}
1150
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301151static int __cpufreq_remove_dev_prepare(struct device *dev,
1152 struct subsys_interface *sif,
1153 bool frozen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301155 unsigned int cpu = dev->id, cpus;
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301156 int new_cpu, ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 unsigned long flags;
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301158 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001160 pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001162 write_lock_irqsave(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301164 policy = per_cpu(cpufreq_cpu_data, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301166 /* Save the policy somewhere when doing a light-weight tear-down */
1167 if (frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301168 per_cpu(cpufreq_cpu_data_fallback, cpu) = policy;
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301169
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00001170 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301172 if (!policy) {
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001173 pr_debug("%s: No cpu_data found\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301177 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301178 ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1179 if (ret) {
1180 pr_err("%s: Failed to stop governor\n", __func__);
1181 return ret;
1182 }
1183 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001184
Jacob Shin27ecddc2011-04-27 13:32:11 -05001185#ifdef CONFIG_HOTPLUG_CPU
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001186 if (!cpufreq_driver->setpolicy)
Dirk Brandewiefa69e332013-02-06 09:02:11 -08001187 strncpy(per_cpu(cpufreq_cpu_governor, cpu),
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301188 policy->governor->name, CPUFREQ_NAME_LEN);
Jacob Shin27ecddc2011-04-27 13:32:11 -05001189#endif
1190
viresh kumarad7722d2013-10-18 19:10:15 +05301191 down_read(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301192 cpus = cpumask_weight(policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301193 up_read(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Srivatsa S. Bhat61173f22013-09-12 01:43:25 +05301195 if (cpu != policy->cpu) {
1196 if (!frozen)
1197 sysfs_remove_link(&dev->kobj, "cpufreq");
Viresh Kumar73bf0fc2013-02-05 22:21:14 +01001198 } else if (cpus > 1) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301199 new_cpu = cpufreq_nominate_new_policy_cpu(policy, cpu, frozen);
Srivatsa S. Bhatf9ba6802013-07-30 04:24:36 +05301200 if (new_cpu >= 0) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301201 update_policy_cpu(policy, new_cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301202
1203 if (!frozen) {
Viresh Kumar75949c92013-10-02 14:13:13 +05301204 pr_debug("%s: policy Kobject moved to cpu: %d from: %d\n",
1205 __func__, new_cpu, cpu);
Srivatsa S. Bhata82fab22013-07-30 04:24:49 +05301206 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001207 }
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001208 }
Venki Pallipadiec282972007-03-26 12:03:19 -07001209
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301210 return 0;
1211}
1212
1213static int __cpufreq_remove_dev_finish(struct device *dev,
1214 struct subsys_interface *sif,
1215 bool frozen)
1216{
1217 unsigned int cpu = dev->id, cpus;
1218 int ret;
1219 unsigned long flags;
1220 struct cpufreq_policy *policy;
1221 struct kobject *kobj;
1222 struct completion *cmp;
1223
1224 read_lock_irqsave(&cpufreq_driver_lock, flags);
1225 policy = per_cpu(cpufreq_cpu_data, cpu);
1226 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1227
1228 if (!policy) {
1229 pr_debug("%s: No cpu_data found\n", __func__);
1230 return -EINVAL;
1231 }
1232
viresh kumarad7722d2013-10-18 19:10:15 +05301233 down_write(&policy->rwsem);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301234 cpus = cpumask_weight(policy->cpus);
Viresh Kumar9c8f1ee2013-09-12 17:06:33 +05301235
1236 if (cpus > 1)
1237 cpumask_clear_cpu(cpu, policy->cpus);
viresh kumarad7722d2013-10-18 19:10:15 +05301238 up_write(&policy->rwsem);
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301239
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001240 /* If cpu is last user of policy, free policy */
1241 if (cpus == 1) {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301242 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301243 ret = __cpufreq_governor(policy,
1244 CPUFREQ_GOV_POLICY_EXIT);
1245 if (ret) {
1246 pr_err("%s: Failed to exit governor\n",
1247 __func__);
1248 return ret;
1249 }
Viresh Kumaredab2fb2013-08-20 12:08:22 +05301250 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001251
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301252 if (!frozen) {
viresh kumarad7722d2013-10-18 19:10:15 +05301253 down_read(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301254 kobj = &policy->kobj;
1255 cmp = &policy->kobj_unregister;
viresh kumarad7722d2013-10-18 19:10:15 +05301256 up_read(&policy->rwsem);
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301257 kobject_put(kobj);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001258
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301259 /*
1260 * We need to make sure that the underlying kobj is
1261 * actually not referenced anymore by anybody before we
1262 * proceed with unloading.
1263 */
1264 pr_debug("waiting for dropping of refcount\n");
1265 wait_for_completion(cmp);
1266 pr_debug("wait complete\n");
1267 }
1268
1269 /*
1270 * Perform the ->exit() even during light-weight tear-down,
1271 * since this is a core component, and is essential for the
1272 * subsequent light-weight ->init() to succeed.
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001273 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001274 if (cpufreq_driver->exit)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301275 cpufreq_driver->exit(policy);
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001276
Viresh Kumar9515f4d2013-08-20 12:08:23 +05301277 /* Remove policy from list of active policies */
1278 write_lock_irqsave(&cpufreq_driver_lock, flags);
1279 list_del(&policy->policy_list);
1280 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1281
Srivatsa S. Bhat84148092013-07-30 04:25:10 +05301282 if (!frozen)
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301283 cpufreq_policy_free(policy);
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001284 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301285 if (has_target()) {
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301286 if ((ret = __cpufreq_governor(policy, CPUFREQ_GOV_START)) ||
1287 (ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))) {
1288 pr_err("%s: Failed to start governor\n",
1289 __func__);
1290 return ret;
1291 }
Rafael J. Wysocki2a998592013-07-30 00:32:00 +02001292 }
Viresh Kumarb8eed8a2013-01-14 13:23:03 +00001293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Viresh Kumar474deff2013-08-20 12:08:25 +05301295 per_cpu(cpufreq_cpu_data, cpu) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return 0;
1297}
1298
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301299/**
Viresh Kumar27a862e2013-10-02 14:13:14 +05301300 * cpufreq_remove_dev - remove a CPU device
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301301 *
1302 * Removes the cpufreq interface for a CPU device.
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05301303 */
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001304static int cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001305{
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001306 unsigned int cpu = dev->id;
Viresh Kumar27a862e2013-10-02 14:13:14 +05301307 int ret;
Venki Pallipadiec282972007-03-26 12:03:19 -07001308
1309 if (cpu_is_offline(cpu))
1310 return 0;
1311
Viresh Kumar27a862e2013-10-02 14:13:14 +05301312 ret = __cpufreq_remove_dev_prepare(dev, sif, false);
1313
1314 if (!ret)
1315 ret = __cpufreq_remove_dev_finish(dev, sif, false);
1316
1317 return ret;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001318}
1319
David Howells65f27f32006-11-22 14:55:48 +00001320static void handle_update(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
David Howells65f27f32006-11-22 14:55:48 +00001322 struct cpufreq_policy *policy =
1323 container_of(work, struct cpufreq_policy, update);
1324 unsigned int cpu = policy->cpu;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001325 pr_debug("handle_update for cpu %u called\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 cpufreq_update_policy(cpu);
1327}
1328
1329/**
Viresh Kumarbb176f72013-06-19 14:19:33 +05301330 * cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1331 * in deep trouble.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 * @cpu: cpu number
1333 * @old_freq: CPU frequency the kernel thinks the CPU runs at
1334 * @new_freq: CPU frequency the CPU actually runs at
1335 *
Dave Jones29464f22009-01-18 01:37:11 -05001336 * We adjust to current frequency first, and need to clean up later.
1337 * So either call to cpufreq_update_policy() or schedule handle_update()).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 */
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301339static void cpufreq_out_of_sync(unsigned int cpu, unsigned int old_freq,
1340 unsigned int new_freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341{
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301342 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 struct cpufreq_freqs freqs;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301344 unsigned long flags;
1345
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001346 pr_debug("Warning: CPU frequency out of sync: cpufreq and timing "
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 "core thinks of %u, is %u kHz.\n", old_freq, new_freq);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 freqs.old = old_freq;
1350 freqs.new = new_freq;
Viresh Kumarb43a7ff2013-03-24 11:56:43 +05301351
1352 read_lock_irqsave(&cpufreq_driver_lock, flags);
1353 policy = per_cpu(cpufreq_cpu_data, cpu);
1354 read_unlock_irqrestore(&cpufreq_driver_lock, flags);
1355
1356 cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE);
1357 cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358}
1359
Dave Jones32ee8c32006-02-28 00:43:23 -05001360/**
Dhaval Giani4ab70df2006-12-13 14:49:15 +05301361 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001362 * @cpu: CPU number
1363 *
1364 * This is the last known freq, without actually getting it from the driver.
1365 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
1366 */
1367unsigned int cpufreq_quick_get(unsigned int cpu)
1368{
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001369 struct cpufreq_policy *policy;
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301370 unsigned int ret_freq = 0;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001371
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001372 if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
1373 return cpufreq_driver->get(cpu);
Dirk Brandewie9e21ba82013-02-06 09:02:08 -08001374
1375 policy = cpufreq_cpu_get(cpu);
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001376 if (policy) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301377 ret_freq = policy->cur;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001378 cpufreq_cpu_put(policy);
1379 }
1380
Dave Jones4d34a672008-02-07 16:33:49 -05001381 return ret_freq;
Venkatesh Pallipadi95235ca2005-12-02 10:43:20 -08001382}
1383EXPORT_SYMBOL(cpufreq_quick_get);
1384
Jesse Barnes3d737102011-06-28 10:59:12 -07001385/**
1386 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
1387 * @cpu: CPU number
1388 *
1389 * Just return the max possible frequency for a given CPU.
1390 */
1391unsigned int cpufreq_quick_get_max(unsigned int cpu)
1392{
1393 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1394 unsigned int ret_freq = 0;
1395
1396 if (policy) {
1397 ret_freq = policy->max;
1398 cpufreq_cpu_put(policy);
1399 }
1400
1401 return ret_freq;
1402}
1403EXPORT_SYMBOL(cpufreq_quick_get_max);
1404
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001405static unsigned int __cpufreq_get(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Mike Travis7a6aedf2008-03-25 15:06:53 -07001407 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301408 unsigned int ret_freq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001410 if (!cpufreq_driver->get)
Dave Jones4d34a672008-02-07 16:33:49 -05001411 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001413 ret_freq = cpufreq_driver->get(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301415 if (ret_freq && policy->cur &&
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001416 !(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301417 /* verify no discrepancy between actual and
1418 saved value exists */
1419 if (unlikely(ret_freq != policy->cur)) {
1420 cpufreq_out_of_sync(cpu, policy->cur, ret_freq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 schedule_work(&policy->update);
1422 }
1423 }
1424
Dave Jones4d34a672008-02-07 16:33:49 -05001425 return ret_freq;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001426}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001428/**
1429 * cpufreq_get - get the current CPU frequency (in kHz)
1430 * @cpu: CPU number
1431 *
1432 * Get the CPU current (static) CPU frequency
1433 */
1434unsigned int cpufreq_get(unsigned int cpu)
1435{
viresh kumarad7722d2013-10-18 19:10:15 +05301436 struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001437 unsigned int ret_freq = 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001438
Viresh Kumar26ca8692013-09-20 22:37:31 +05301439 if (cpufreq_disabled() || !cpufreq_driver)
1440 return -ENOENT;
1441
viresh kumarad7722d2013-10-18 19:10:15 +05301442 BUG_ON(!policy);
1443
Viresh Kumar6eed9402013-08-06 22:53:11 +05301444 if (!down_read_trylock(&cpufreq_rwsem))
1445 return 0;
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001446
viresh kumarad7722d2013-10-18 19:10:15 +05301447 down_read(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08001448
1449 ret_freq = __cpufreq_get(cpu);
1450
viresh kumarad7722d2013-10-18 19:10:15 +05301451 up_read(&policy->rwsem);
Viresh Kumar6eed9402013-08-06 22:53:11 +05301452 up_read(&cpufreq_rwsem);
1453
Dave Jones4d34a672008-02-07 16:33:49 -05001454 return ret_freq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456EXPORT_SYMBOL(cpufreq_get);
1457
Kay Sievers8a25a2f2011-12-21 14:29:42 -08001458static struct subsys_interface cpufreq_interface = {
1459 .name = "cpufreq",
1460 .subsys = &cpu_subsys,
1461 .add_dev = cpufreq_add_dev,
1462 .remove_dev = cpufreq_remove_dev,
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001463};
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001466 * cpufreq_bp_suspend - Prepare the boot CPU for system suspend.
1467 *
1468 * This function is only executed for the boot processor. The other CPUs
1469 * have been put offline by means of CPU hotplug.
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001470 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001471static int cpufreq_bp_suspend(void)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001472{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301473 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001474
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001475 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301476 struct cpufreq_policy *policy;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001477
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001478 pr_debug("suspending cpu %u\n", cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001479
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001480 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301481 policy = cpufreq_cpu_get(cpu);
1482 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001483 return 0;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001484
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001485 if (cpufreq_driver->suspend) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301486 ret = cpufreq_driver->suspend(policy);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001487 if (ret)
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001488 printk(KERN_ERR "cpufreq: suspend failed in ->suspend "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301489 "step on CPU %u\n", policy->cpu);
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001490 }
1491
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301492 cpufreq_cpu_put(policy);
Dave Jonesc9060492008-02-07 16:32:18 -05001493 return ret;
Benjamin Herrenschmidt42d4dc32005-04-29 07:40:12 -07001494}
1495
1496/**
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001497 * cpufreq_bp_resume - Restore proper frequency handling of the boot CPU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 *
1499 * 1.) resume CPUfreq hardware support (cpufreq_driver->resume())
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001500 * 2.) schedule call cpufreq_update_policy() ASAP as interrupts are
1501 * restored. It will verify that the current freq is in sync with
1502 * what we believe it to be. This is a bit later than when it
1503 * should be, but nonethteless it's better than calling
1504 * cpufreq_driver->get() here which might re-enable interrupts...
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001505 *
1506 * This function is only executed for the boot CPU. The other CPUs have not
1507 * been turned on yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 */
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001509static void cpufreq_bp_resume(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301511 int ret = 0;
Dave Jones4bc5d342009-08-04 14:03:25 -04001512
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001513 int cpu = smp_processor_id();
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301514 struct cpufreq_policy *policy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001516 pr_debug("resuming cpu %u\n", cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001518 /* If there's no policy for the boot CPU, we have nothing to do. */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301519 policy = cpufreq_cpu_get(cpu);
1520 if (!policy)
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001521 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001523 if (cpufreq_driver->resume) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301524 ret = cpufreq_driver->resume(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (ret) {
1526 printk(KERN_ERR "cpufreq: resume failed in ->resume "
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301527 "step on CPU %u\n", policy->cpu);
Dave Jonesc9060492008-02-07 16:32:18 -05001528 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530 }
1531
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301532 schedule_work(&policy->update);
Dominik Brodowskice6c3992009-08-07 22:58:51 +02001533
Dave Jonesc9060492008-02-07 16:32:18 -05001534fail:
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301535 cpufreq_cpu_put(policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536}
1537
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01001538static struct syscore_ops cpufreq_syscore_ops = {
1539 .suspend = cpufreq_bp_suspend,
1540 .resume = cpufreq_bp_resume,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541};
1542
Borislav Petkov9d950462013-01-20 10:24:28 +00001543/**
1544 * cpufreq_get_current_driver - return current driver's name
1545 *
1546 * Return the name string of the currently loaded cpufreq driver
1547 * or NULL, if none.
1548 */
1549const char *cpufreq_get_current_driver(void)
1550{
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001551 if (cpufreq_driver)
1552 return cpufreq_driver->name;
1553
1554 return NULL;
Borislav Petkov9d950462013-01-20 10:24:28 +00001555}
1556EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
1558/*********************************************************************
1559 * NOTIFIER LISTS INTERFACE *
1560 *********************************************************************/
1561
1562/**
1563 * cpufreq_register_notifier - register a driver with cpufreq
1564 * @nb: notifier function to register
1565 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
1566 *
Dave Jones32ee8c32006-02-28 00:43:23 -05001567 * Add a driver to one of two lists: either a list of drivers that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 * are notified about clock rate changes (once before and once after
1569 * the transition), or a list of drivers that are notified about
1570 * changes in cpufreq policy.
1571 *
1572 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001573 * blocking_notifier_chain_register.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 */
1575int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
1576{
1577 int ret;
1578
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001579 if (cpufreq_disabled())
1580 return -EINVAL;
1581
Cesar Eduardo Barros74212ca2008-02-16 08:41:24 -02001582 WARN_ON(!init_cpufreq_transition_notifier_list_called);
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 switch (list) {
1585 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001586 ret = srcu_notifier_chain_register(
Alan Sterne041c682006-03-27 01:16:30 -08001587 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 break;
1589 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001590 ret = blocking_notifier_chain_register(
1591 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 break;
1593 default:
1594 ret = -EINVAL;
1595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
1597 return ret;
1598}
1599EXPORT_SYMBOL(cpufreq_register_notifier);
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601/**
1602 * cpufreq_unregister_notifier - unregister a driver with cpufreq
1603 * @nb: notifier block to be unregistered
Viresh Kumarbb176f72013-06-19 14:19:33 +05301604 * @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 *
1606 * Remove a driver from the CPU frequency notifier list.
1607 *
1608 * This function may sleep, and has the same return conditions as
Alan Sterne041c682006-03-27 01:16:30 -08001609 * blocking_notifier_chain_unregister.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 */
1611int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
1612{
1613 int ret;
1614
Dirk Brandewied5aaffa2013-01-17 16:22:21 +00001615 if (cpufreq_disabled())
1616 return -EINVAL;
1617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 switch (list) {
1619 case CPUFREQ_TRANSITION_NOTIFIER:
Alan Sternb4dfdbb2006-10-04 02:17:06 -07001620 ret = srcu_notifier_chain_unregister(
Alan Sterne041c682006-03-27 01:16:30 -08001621 &cpufreq_transition_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 break;
1623 case CPUFREQ_POLICY_NOTIFIER:
Alan Sterne041c682006-03-27 01:16:30 -08001624 ret = blocking_notifier_chain_unregister(
1625 &cpufreq_policy_notifier_list, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 break;
1627 default:
1628 ret = -EINVAL;
1629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 return ret;
1632}
1633EXPORT_SYMBOL(cpufreq_unregister_notifier);
1634
1635
1636/*********************************************************************
1637 * GOVERNORS *
1638 *********************************************************************/
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640int __cpufreq_driver_target(struct cpufreq_policy *policy,
1641 unsigned int target_freq,
1642 unsigned int relation)
1643{
1644 int retval = -EINVAL;
Viresh Kumar72499242012-10-31 01:28:21 +01001645 unsigned int old_target_freq = target_freq;
Ashok Rajc32b6b82005-10-30 14:59:54 -08001646
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001647 if (cpufreq_disabled())
1648 return -ENODEV;
1649
Viresh Kumar72499242012-10-31 01:28:21 +01001650 /* Make sure that target_freq is within supported range */
1651 if (target_freq > policy->max)
1652 target_freq = policy->max;
1653 if (target_freq < policy->min)
1654 target_freq = policy->min;
1655
1656 pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
1657 policy->cpu, target_freq, relation, old_target_freq);
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001658
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301659 /*
1660 * This might look like a redundant call as we are checking it again
1661 * after finding index. But it is left intentionally for cases where
1662 * exactly same freq is called again and so we can save on few function
1663 * calls.
1664 */
Viresh Kumar5a1c0222012-10-31 01:28:15 +01001665 if (target_freq == policy->cur)
1666 return 0;
1667
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001668 if (cpufreq_driver->target)
1669 retval = cpufreq_driver->target(policy, target_freq, relation);
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301670 else if (cpufreq_driver->target_index) {
1671 struct cpufreq_frequency_table *freq_table;
1672 int index;
Ashok Raj90d45d12005-11-08 21:34:24 -08001673
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05301674 freq_table = cpufreq_frequency_get_table(policy->cpu);
1675 if (unlikely(!freq_table)) {
1676 pr_err("%s: Unable to find freq_table\n", __func__);
1677 goto out;
1678 }
1679
1680 retval = cpufreq_frequency_table_target(policy, freq_table,
1681 target_freq, relation, &index);
1682 if (unlikely(retval)) {
1683 pr_err("%s: Unable to find matching freq\n", __func__);
1684 goto out;
1685 }
1686
1687 if (freq_table[index].frequency == policy->cur)
1688 retval = 0;
1689 else
1690 retval = cpufreq_driver->target_index(policy, index);
1691 }
1692
1693out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 return retval;
1695}
1696EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
1697
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698int cpufreq_driver_target(struct cpufreq_policy *policy,
1699 unsigned int target_freq,
1700 unsigned int relation)
1701{
Julia Lawallf1829e42008-07-25 22:44:53 +02001702 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
viresh kumarad7722d2013-10-18 19:10:15 +05301704 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
1706 ret = __cpufreq_driver_target(policy, target_freq, relation);
1707
viresh kumarad7722d2013-10-18 19:10:15 +05301708 up_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 return ret;
1711}
1712EXPORT_SYMBOL_GPL(cpufreq_driver_target);
1713
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001714/*
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001715 * when "event" is CPUFREQ_GOV_LIMITS
1716 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301718static int __cpufreq_governor(struct cpufreq_policy *policy,
1719 unsigned int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Dave Jonescc993ca2005-07-28 09:43:56 -07001721 int ret;
Thomas Renninger6afde102007-10-02 13:28:13 -07001722
1723 /* Only must be defined when default governor is known to have latency
1724 restrictions, like e.g. conservative or ondemand.
1725 That this is the case is already ensured in Kconfig
1726 */
1727#ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
1728 struct cpufreq_governor *gov = &cpufreq_gov_performance;
1729#else
1730 struct cpufreq_governor *gov = NULL;
1731#endif
Thomas Renninger1c256242007-10-02 13:28:12 -07001732
1733 if (policy->governor->max_transition_latency &&
1734 policy->cpuinfo.transition_latency >
1735 policy->governor->max_transition_latency) {
Thomas Renninger6afde102007-10-02 13:28:13 -07001736 if (!gov)
1737 return -EINVAL;
1738 else {
1739 printk(KERN_WARNING "%s governor failed, too long"
1740 " transition latency of HW, fallback"
1741 " to %s governor\n",
1742 policy->governor->name,
1743 gov->name);
1744 policy->governor = gov;
1745 }
Thomas Renninger1c256242007-10-02 13:28:12 -07001746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Viresh Kumarfe492f32013-08-06 22:53:10 +05301748 if (event == CPUFREQ_GOV_POLICY_INIT)
1749 if (!try_module_get(policy->governor->owner))
1750 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001752 pr_debug("__cpufreq_governor for CPU %u, event %u\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301753 policy->cpu, event);
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001754
1755 mutex_lock(&cpufreq_governor_lock);
Srivatsa S. Bhat56d07db2013-09-07 01:23:55 +05301756 if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
Viresh Kumarf73d3932013-08-31 17:53:40 +05301757 || (!policy->governor_enabled
1758 && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001759 mutex_unlock(&cpufreq_governor_lock);
1760 return -EBUSY;
1761 }
1762
1763 if (event == CPUFREQ_GOV_STOP)
1764 policy->governor_enabled = false;
1765 else if (event == CPUFREQ_GOV_START)
1766 policy->governor_enabled = true;
1767
1768 mutex_unlock(&cpufreq_governor_lock);
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 ret = policy->governor->governor(policy, event);
1771
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001772 if (!ret) {
1773 if (event == CPUFREQ_GOV_POLICY_INIT)
1774 policy->governor->initialized++;
1775 else if (event == CPUFREQ_GOV_POLICY_EXIT)
1776 policy->governor->initialized--;
Xiaoguang Chen95731eb2013-06-19 15:00:07 +08001777 } else {
1778 /* Restore original values */
1779 mutex_lock(&cpufreq_governor_lock);
1780 if (event == CPUFREQ_GOV_STOP)
1781 policy->governor_enabled = true;
1782 else if (event == CPUFREQ_GOV_START)
1783 policy->governor_enabled = false;
1784 mutex_unlock(&cpufreq_governor_lock);
Viresh Kumar4d5dcc42013-03-27 15:58:58 +00001785 }
Viresh Kumarb3940582013-02-01 05:42:58 +00001786
Viresh Kumarfe492f32013-08-06 22:53:10 +05301787 if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
1788 ((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 module_put(policy->governor->owner);
1790
1791 return ret;
1792}
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794int cpufreq_register_governor(struct cpufreq_governor *governor)
1795{
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001796 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
1798 if (!governor)
1799 return -EINVAL;
1800
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001801 if (cpufreq_disabled())
1802 return -ENODEV;
1803
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001804 mutex_lock(&cpufreq_governor_mutex);
Dave Jones32ee8c32006-02-28 00:43:23 -05001805
Viresh Kumarb3940582013-02-01 05:42:58 +00001806 governor->initialized = 0;
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001807 err = -EBUSY;
1808 if (__find_governor(governor->name) == NULL) {
1809 err = 0;
1810 list_add(&governor->governor_list, &cpufreq_governor_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Dave Jones32ee8c32006-02-28 00:43:23 -05001813 mutex_unlock(&cpufreq_governor_mutex);
Jeremy Fitzhardinge3bcb09a2006-07-06 12:30:26 -07001814 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816EXPORT_SYMBOL_GPL(cpufreq_register_governor);
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818void cpufreq_unregister_governor(struct cpufreq_governor *governor)
1819{
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001820#ifdef CONFIG_HOTPLUG_CPU
1821 int cpu;
1822#endif
1823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 if (!governor)
1825 return;
1826
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04001827 if (cpufreq_disabled())
1828 return;
1829
Prarit Bhargava90e41ba2009-11-12 09:18:46 -05001830#ifdef CONFIG_HOTPLUG_CPU
1831 for_each_present_cpu(cpu) {
1832 if (cpu_online(cpu))
1833 continue;
1834 if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name))
1835 strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0");
1836 }
1837#endif
1838
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001839 mutex_lock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 list_del(&governor->governor_list);
akpm@osdl.org3fc54d32006-01-13 15:54:22 -08001841 mutex_unlock(&cpufreq_governor_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return;
1843}
1844EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
1845
1846
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847/*********************************************************************
1848 * POLICY INTERFACE *
1849 *********************************************************************/
1850
1851/**
1852 * cpufreq_get_policy - get the current cpufreq_policy
Dave Jones29464f22009-01-18 01:37:11 -05001853 * @policy: struct cpufreq_policy into which the current cpufreq_policy
1854 * is written
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 *
1856 * Reads the current cpufreq policy.
1857 */
1858int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
1859{
1860 struct cpufreq_policy *cpu_policy;
1861 if (!policy)
1862 return -EINVAL;
1863
1864 cpu_policy = cpufreq_cpu_get(cpu);
1865 if (!cpu_policy)
1866 return -EINVAL;
1867
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301868 memcpy(policy, cpu_policy, sizeof(*policy));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 cpufreq_cpu_put(cpu_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 return 0;
1872}
1873EXPORT_SYMBOL(cpufreq_get_policy);
1874
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001875/*
Viresh Kumar037ce832013-10-02 14:13:16 +05301876 * policy : current policy.
1877 * new_policy: policy to be set.
Arjan van de Ven153d7f32006-07-26 15:40:07 +02001878 */
Viresh Kumar037ce832013-10-02 14:13:16 +05301879static int cpufreq_set_policy(struct cpufreq_policy *policy,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301880 struct cpufreq_policy *new_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001882 int ret = 0, failed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301884 pr_debug("setting new policy for CPU %u: %u - %u kHz\n", new_policy->cpu,
1885 new_policy->min, new_policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Viresh Kumard5b73cd2013-08-06 22:53:06 +05301887 memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301889 if (new_policy->min > policy->max || new_policy->max < policy->min) {
Mattia Dongili9c9a43e2006-07-05 23:12:20 +02001890 ret = -EINVAL;
1891 goto error_out;
1892 }
1893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 /* verify the cpu speed can be set within this limit */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301895 ret = cpufreq_driver->verify(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 if (ret)
1897 goto error_out;
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 /* adjust if necessary - all reasons */
Alan Sterne041c682006-03-27 01:16:30 -08001900 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301901 CPUFREQ_ADJUST, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
1903 /* adjust if necessary - hardware incompatibility*/
Alan Sterne041c682006-03-27 01:16:30 -08001904 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301905 CPUFREQ_INCOMPATIBLE, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Viresh Kumarbb176f72013-06-19 14:19:33 +05301907 /*
1908 * verify the cpu speed can be set within this limit, which might be
1909 * different to the first one
1910 */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301911 ret = cpufreq_driver->verify(new_policy);
Alan Sterne041c682006-03-27 01:16:30 -08001912 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
1915 /* notification of the new policy */
Alan Sterne041c682006-03-27 01:16:30 -08001916 blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301917 CPUFREQ_NOTIFY, new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301919 policy->min = new_policy->min;
1920 policy->max = new_policy->max;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001922 pr_debug("new min and max freqs are %u - %u kHz\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301923 policy->min, policy->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02001925 if (cpufreq_driver->setpolicy) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301926 policy->policy = new_policy->policy;
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001927 pr_debug("setting range\n");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301928 ret = cpufreq_driver->setpolicy(new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 } else {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301930 if (new_policy->governor != policy->governor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 /* save old, working values */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301932 struct cpufreq_governor *old_gov = policy->governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001934 pr_debug("governor switch\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
1936 /* end old governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301937 if (policy->governor) {
1938 __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
viresh kumarad7722d2013-10-18 19:10:15 +05301939 up_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301940 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001941 CPUFREQ_GOV_POLICY_EXIT);
viresh kumarad7722d2013-10-18 19:10:15 +05301942 down_write(&policy->rwsem);
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 /* start new governor */
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301946 policy->governor = new_policy->governor;
1947 if (!__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT)) {
1948 if (!__cpufreq_governor(policy, CPUFREQ_GOV_START)) {
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001949 failed = 0;
Viresh Kumar955ef482013-05-16 05:09:58 +00001950 } else {
viresh kumarad7722d2013-10-18 19:10:15 +05301951 up_write(&policy->rwsem);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301952 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001953 CPUFREQ_GOV_POLICY_EXIT);
viresh kumarad7722d2013-10-18 19:10:15 +05301954 down_write(&policy->rwsem);
Viresh Kumar955ef482013-05-16 05:09:58 +00001955 }
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001956 }
1957
1958 if (failed) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 /* new governor failed, so re-start old one */
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001960 pr_debug("starting governor %s failed\n",
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301961 policy->governor->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 if (old_gov) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301963 policy->governor = old_gov;
1964 __cpufreq_governor(policy,
Viresh Kumar7bd353a2013-03-27 15:58:57 +00001965 CPUFREQ_GOV_POLICY_INIT);
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301966 __cpufreq_governor(policy,
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05301967 CPUFREQ_GOV_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
1969 ret = -EINVAL;
1970 goto error_out;
1971 }
1972 /* might be a policy change, too, so fall through */
1973 }
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02001974 pr_debug("governor: change or update limits\n");
Viresh Kumar3de9bde2013-08-06 22:53:13 +05301975 ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 }
1977
Dave Jones7d5e3502006-02-02 17:03:42 -05001978error_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 return ret;
1980}
1981
1982/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 * cpufreq_update_policy - re-evaluate an existing cpufreq policy
1984 * @cpu: CPU which shall be re-evaluated
1985 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001986 * Useful for policy notifiers which have different necessities
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 * at different times.
1988 */
1989int cpufreq_update_policy(unsigned int cpu)
1990{
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301991 struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1992 struct cpufreq_policy new_policy;
Julia Lawallf1829e42008-07-25 22:44:53 +02001993 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05301995 if (!policy) {
Julia Lawallf1829e42008-07-25 22:44:53 +02001996 ret = -ENODEV;
1997 goto no_policy;
1998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
viresh kumarad7722d2013-10-18 19:10:15 +05302000 down_write(&policy->rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002002 pr_debug("updating policy for CPU %u\n", cpu);
Viresh Kumard5b73cd2013-08-06 22:53:06 +05302003 memcpy(&new_policy, policy, sizeof(*policy));
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302004 new_policy.min = policy->user_policy.min;
2005 new_policy.max = policy->user_policy.max;
2006 new_policy.policy = policy->user_policy.policy;
2007 new_policy.governor = policy->user_policy.governor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Viresh Kumarbb176f72013-06-19 14:19:33 +05302009 /*
2010 * BIOS might change freq behind our back
2011 * -> ask driver for current freq and notify governors about a change
2012 */
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002013 if (cpufreq_driver->get) {
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302014 new_policy.cur = cpufreq_driver->get(cpu);
2015 if (!policy->cur) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002016 pr_debug("Driver did not initialize current freq");
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302017 policy->cur = new_policy.cur;
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002018 } else {
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302019 if (policy->cur != new_policy.cur && has_target())
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302020 cpufreq_out_of_sync(cpu, policy->cur,
2021 new_policy.cur);
Thomas Renningera85f7bd2006-02-01 11:36:04 +01002022 }
Thomas Renninger0961dd02006-01-26 18:46:33 +01002023 }
2024
Viresh Kumar037ce832013-10-02 14:13:16 +05302025 ret = cpufreq_set_policy(policy, &new_policy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
viresh kumarad7722d2013-10-18 19:10:15 +05302027 up_write(&policy->rwsem);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002028
Viresh Kumar3a3e9e02013-08-06 22:53:05 +05302029 cpufreq_cpu_put(policy);
Julia Lawallf1829e42008-07-25 22:44:53 +02002030no_policy:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 return ret;
2032}
2033EXPORT_SYMBOL(cpufreq_update_policy);
2034
Paul Gortmaker27609842013-06-19 13:54:04 -04002035static int cpufreq_cpu_callback(struct notifier_block *nfb,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002036 unsigned long action, void *hcpu)
2037{
2038 unsigned int cpu = (unsigned long)hcpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002039 struct device *dev;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302040 bool frozen = false;
Ashok Rajc32b6b82005-10-30 14:59:54 -08002041
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002042 dev = get_cpu_device(cpu);
2043 if (dev) {
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302044
2045 if (action & CPU_TASKS_FROZEN)
2046 frozen = true;
2047
2048 switch (action & ~CPU_TASKS_FROZEN) {
Ashok Rajc32b6b82005-10-30 14:59:54 -08002049 case CPU_ONLINE:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302050 __cpufreq_add_dev(dev, NULL, frozen);
Srivatsa S. Bhat23d328992013-07-30 04:23:56 +05302051 cpufreq_update_policy(cpu);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002052 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302053
Ashok Rajc32b6b82005-10-30 14:59:54 -08002054 case CPU_DOWN_PREPARE:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302055 __cpufreq_remove_dev_prepare(dev, NULL, frozen);
Srivatsa S. Bhat1aee40a2013-09-07 01:23:27 +05302056 break;
2057
2058 case CPU_POST_DEAD:
Srivatsa S. Bhatcedb70a2013-09-07 01:23:09 +05302059 __cpufreq_remove_dev_finish(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002060 break;
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302061
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002062 case CPU_DOWN_FAILED:
Srivatsa S. Bhat5302c3f2013-07-30 04:25:25 +05302063 __cpufreq_add_dev(dev, NULL, frozen);
Ashok Rajc32b6b82005-10-30 14:59:54 -08002064 break;
2065 }
2066 }
2067 return NOTIFY_OK;
2068}
2069
Neal Buckendahl9c36f742010-06-22 22:02:44 -05002070static struct notifier_block __refdata cpufreq_cpu_notifier = {
Viresh Kumarbb176f72013-06-19 14:19:33 +05302071 .notifier_call = cpufreq_cpu_callback,
Ashok Rajc32b6b82005-10-30 14:59:54 -08002072};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
2074/*********************************************************************
2075 * REGISTER / UNREGISTER CPUFREQ DRIVER *
2076 *********************************************************************/
2077
2078/**
2079 * cpufreq_register_driver - register a CPU Frequency driver
2080 * @driver_data: A struct cpufreq_driver containing the values#
2081 * submitted by the CPU Frequency driver.
2082 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302083 * Registers a CPU Frequency driver to this core code. This code
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 * returns zero on success, -EBUSY when another driver got here first
Dave Jones32ee8c32006-02-28 00:43:23 -05002085 * (and isn't unregistered in the meantime).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 *
2087 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002088int cpufreq_register_driver(struct cpufreq_driver *driver_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
2090 unsigned long flags;
2091 int ret;
2092
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002093 if (cpufreq_disabled())
2094 return -ENODEV;
2095
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 if (!driver_data || !driver_data->verify || !driver_data->init ||
Viresh Kumar9c0ebcf2013-10-25 19:45:48 +05302097 !(driver_data->setpolicy || driver_data->target_index ||
2098 driver_data->target))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 return -EINVAL;
2100
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002101 pr_debug("trying to register driver %s\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 if (driver_data->setpolicy)
2104 driver_data->flags |= CPUFREQ_CONST_LOOPS;
2105
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002106 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002107 if (cpufreq_driver) {
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002108 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Yinghai Lu4dea58062013-09-18 21:05:20 -07002109 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 }
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002111 cpufreq_driver = driver_data;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002112 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002114 ret = subsys_interface_register(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002115 if (ret)
2116 goto err_null_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002118 if (!(cpufreq_driver->flags & CPUFREQ_STICKY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 int i;
2120 ret = -ENODEV;
2121
2122 /* check for at least one working CPU */
Mike Travis7a6aedf2008-03-25 15:06:53 -07002123 for (i = 0; i < nr_cpu_ids; i++)
2124 if (cpu_possible(i) && per_cpu(cpufreq_cpu_data, i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 ret = 0;
Mike Travis7a6aedf2008-03-25 15:06:53 -07002126 break;
2127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129 /* if all ->init() calls failed, unregister */
2130 if (ret) {
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002131 pr_debug("no CPU initialized for driver %s\n",
Gautham R Shenoye08f5f52006-10-26 16:20:58 +05302132 driver_data->name);
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002133 goto err_if_unreg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 }
2135 }
2136
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002137 register_hotcpu_notifier(&cpufreq_cpu_notifier);
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002138 pr_debug("driver %s up and running\n", driver_data->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002140 return 0;
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002141err_if_unreg:
2142 subsys_interface_unregister(&cpufreq_interface);
Jiri Slaby8f5bc2a2011-03-01 17:41:10 +01002143err_null_driver:
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002144 write_lock_irqsave(&cpufreq_driver_lock, flags);
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002145 cpufreq_driver = NULL;
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002146 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Dave Jones4d34a672008-02-07 16:33:49 -05002147 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148}
2149EXPORT_SYMBOL_GPL(cpufreq_register_driver);
2150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151/**
2152 * cpufreq_unregister_driver - unregister the current CPUFreq driver
2153 *
Viresh Kumarbb176f72013-06-19 14:19:33 +05302154 * Unregister the current CPUFreq driver. Only call this if you have
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 * the right to do so, i.e. if you have succeeded in initialising before!
2156 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
2157 * currently not initialised.
2158 */
Linus Torvalds221dee22007-02-26 14:55:48 -08002159int cpufreq_unregister_driver(struct cpufreq_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
2161 unsigned long flags;
2162
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002163 if (!cpufreq_driver || (driver != cpufreq_driver))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
Dominik Brodowski2d06d8c2011-03-27 15:04:46 +02002166 pr_debug("unregistering driver %s\n", driver->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Kay Sievers8a25a2f2011-12-21 14:29:42 -08002168 subsys_interface_unregister(&cpufreq_interface);
Chandra Seetharaman65edc682006-06-27 02:54:08 -07002169 unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Viresh Kumar6eed9402013-08-06 22:53:11 +05302171 down_write(&cpufreq_rwsem);
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002172 write_lock_irqsave(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302173
Rafael J. Wysocki1c3d85d2013-04-29 00:08:16 +02002174 cpufreq_driver = NULL;
Viresh Kumar6eed9402013-08-06 22:53:11 +05302175
Nathan Zimmer0d1857a2013-02-22 16:24:34 +00002176 write_unlock_irqrestore(&cpufreq_driver_lock, flags);
Viresh Kumar6eed9402013-08-06 22:53:11 +05302177 up_write(&cpufreq_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 return 0;
2180}
2181EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002182
2183static int __init cpufreq_core_init(void)
2184{
Konrad Rzeszutek Wilka7b422c2012-03-13 19:18:39 -04002185 if (cpufreq_disabled())
2186 return -ENODEV;
2187
Viresh Kumar2361be22013-05-17 16:09:09 +05302188 cpufreq_global_kobject = kobject_create();
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002189 BUG_ON(!cpufreq_global_kobject);
Rafael J. Wysockie00e56d2011-03-23 22:16:32 +01002190 register_syscore_ops(&cpufreq_syscore_ops);
Thomas Renninger8aa84ad2009-07-24 15:25:05 +02002191
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002192 return 0;
2193}
Venkatesh Pallipadi5a01f2e2007-02-05 16:12:44 -08002194core_initcall(cpufreq_core_init);