xref: /openbmc/linux/drivers/cpufreq/cpufreq.c (revision 55582bccdc1e89ecc973c260d46e247df675d4df)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  *  linux/drivers/cpufreq/cpufreq.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  *  Copyright (C) 2001 Russell King
51da177e4SLinus Torvalds  *            (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
6bb176f7dSViresh Kumar  *            (C) 2013 Viresh Kumar <viresh.kumar@linaro.org>
71da177e4SLinus Torvalds  *
8c32b6b8eSAshok Raj  *  Oct 2005 - Ashok Raj <ashok.raj@intel.com>
9c32b6b8eSAshok Raj  *	Added handling for CPU hotplug
108ff69732SDave Jones  *  Feb 2006 - Jacob Shin <jacob.shin@amd.com>
118ff69732SDave Jones  *	Fix handling for CPU hotplug -- affected CPUs
12c32b6b8eSAshok Raj  *
131da177e4SLinus Torvalds  * This program is free software; you can redistribute it and/or modify
141da177e4SLinus Torvalds  * it under the terms of the GNU General Public License version 2 as
151da177e4SLinus Torvalds  * published by the Free Software Foundation.
161da177e4SLinus Torvalds  */
171da177e4SLinus Torvalds 
18db701151SViresh Kumar #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19db701151SViresh Kumar 
205ff0a268SViresh Kumar #include <linux/cpu.h>
211da177e4SLinus Torvalds #include <linux/cpufreq.h>
221da177e4SLinus Torvalds #include <linux/delay.h>
231da177e4SLinus Torvalds #include <linux/device.h>
245ff0a268SViresh Kumar #include <linux/init.h>
255ff0a268SViresh Kumar #include <linux/kernel_stat.h>
265ff0a268SViresh Kumar #include <linux/module.h>
273fc54d37Sakpm@osdl.org #include <linux/mutex.h>
285ff0a268SViresh Kumar #include <linux/slab.h>
292f0aea93SViresh Kumar #include <linux/suspend.h>
3090de2a4aSDoug Anderson #include <linux/syscore_ops.h>
315ff0a268SViresh Kumar #include <linux/tick.h>
326f4f2723SThomas Renninger #include <trace/events/power.h>
336f4f2723SThomas Renninger 
34b4f0676fSViresh Kumar static LIST_HEAD(cpufreq_policy_list);
35f963735aSViresh Kumar 
36f963735aSViresh Kumar static inline bool policy_is_inactive(struct cpufreq_policy *policy)
37f963735aSViresh Kumar {
38f963735aSViresh Kumar 	return cpumask_empty(policy->cpus);
39f963735aSViresh Kumar }
40f963735aSViresh Kumar 
41f963735aSViresh Kumar static bool suitable_policy(struct cpufreq_policy *policy, bool active)
42f963735aSViresh Kumar {
43f963735aSViresh Kumar 	return active == !policy_is_inactive(policy);
44f963735aSViresh Kumar }
45f963735aSViresh Kumar 
46f963735aSViresh Kumar /* Finds Next Acive/Inactive policy */
47f963735aSViresh Kumar static struct cpufreq_policy *next_policy(struct cpufreq_policy *policy,
48f963735aSViresh Kumar 					  bool active)
49f963735aSViresh Kumar {
50f963735aSViresh Kumar 	do {
51f963735aSViresh Kumar 		policy = list_next_entry(policy, policy_list);
52f963735aSViresh Kumar 
53f963735aSViresh Kumar 		/* No more policies in the list */
54f963735aSViresh Kumar 		if (&policy->policy_list == &cpufreq_policy_list)
55f963735aSViresh Kumar 			return NULL;
56f963735aSViresh Kumar 	} while (!suitable_policy(policy, active));
57f963735aSViresh Kumar 
58f963735aSViresh Kumar 	return policy;
59f963735aSViresh Kumar }
60f963735aSViresh Kumar 
61f963735aSViresh Kumar static struct cpufreq_policy *first_policy(bool active)
62f963735aSViresh Kumar {
63f963735aSViresh Kumar 	struct cpufreq_policy *policy;
64f963735aSViresh Kumar 
65f963735aSViresh Kumar 	/* No policies in the list */
66f963735aSViresh Kumar 	if (list_empty(&cpufreq_policy_list))
67f963735aSViresh Kumar 		return NULL;
68f963735aSViresh Kumar 
69f963735aSViresh Kumar 	policy = list_first_entry(&cpufreq_policy_list, typeof(*policy),
70f963735aSViresh Kumar 				  policy_list);
71f963735aSViresh Kumar 
72f963735aSViresh Kumar 	if (!suitable_policy(policy, active))
73f963735aSViresh Kumar 		policy = next_policy(policy, active);
74f963735aSViresh Kumar 
75f963735aSViresh Kumar 	return policy;
76f963735aSViresh Kumar }
77f963735aSViresh Kumar 
78f963735aSViresh Kumar /* Macros to iterate over CPU policies */
79f963735aSViresh Kumar #define for_each_suitable_policy(__policy, __active)	\
80f963735aSViresh Kumar 	for (__policy = first_policy(__active);		\
81f963735aSViresh Kumar 	     __policy;					\
82f963735aSViresh Kumar 	     __policy = next_policy(__policy, __active))
83f963735aSViresh Kumar 
84f963735aSViresh Kumar #define for_each_active_policy(__policy)		\
85f963735aSViresh Kumar 	for_each_suitable_policy(__policy, true)
86f963735aSViresh Kumar #define for_each_inactive_policy(__policy)		\
87f963735aSViresh Kumar 	for_each_suitable_policy(__policy, false)
88f963735aSViresh Kumar 
89b4f0676fSViresh Kumar #define for_each_policy(__policy)			\
90b4f0676fSViresh Kumar 	list_for_each_entry(__policy, &cpufreq_policy_list, policy_list)
91b4f0676fSViresh Kumar 
92f7b27061SViresh Kumar /* Iterate over governors */
93f7b27061SViresh Kumar static LIST_HEAD(cpufreq_governor_list);
94f7b27061SViresh Kumar #define for_each_governor(__governor)				\
95f7b27061SViresh Kumar 	list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)
96f7b27061SViresh Kumar 
971da177e4SLinus Torvalds /**
98cd878479SDave Jones  * The "cpufreq driver" - the arch- or hardware-dependent low
991da177e4SLinus Torvalds  * level driver of CPUFreq support, and its spinlock. This lock
1001da177e4SLinus Torvalds  * also protects the cpufreq_cpu_data array.
1011da177e4SLinus Torvalds  */
1021c3d85ddSRafael J. Wysocki static struct cpufreq_driver *cpufreq_driver;
1037a6aedfaSMike Travis static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
104bb176f7dSViresh Kumar static DEFINE_RWLOCK(cpufreq_driver_lock);
1056f1e4efdSJane Li DEFINE_MUTEX(cpufreq_governor_lock);
106bb176f7dSViresh Kumar 
1072f0aea93SViresh Kumar /* Flag to suspend/resume CPUFreq governors */
1082f0aea93SViresh Kumar static bool cpufreq_suspended;
1091da177e4SLinus Torvalds 
1109c0ebcf7SViresh Kumar static inline bool has_target(void)
1119c0ebcf7SViresh Kumar {
1129c0ebcf7SViresh Kumar 	return cpufreq_driver->target_index || cpufreq_driver->target;
1139c0ebcf7SViresh Kumar }
1149c0ebcf7SViresh Kumar 
1151da177e4SLinus Torvalds /* internal prototypes */
11629464f28SDave Jones static int __cpufreq_governor(struct cpufreq_policy *policy,
11729464f28SDave Jones 		unsigned int event);
118d92d50a4SViresh Kumar static unsigned int __cpufreq_get(struct cpufreq_policy *policy);
11965f27f38SDavid Howells static void handle_update(struct work_struct *work);
1201da177e4SLinus Torvalds 
1211da177e4SLinus Torvalds /**
1221da177e4SLinus Torvalds  * Two notifier lists: the "policy" list is involved in the
1231da177e4SLinus Torvalds  * validation process for a new CPU frequency policy; the
1241da177e4SLinus Torvalds  * "transition" list for kernel code that needs to handle
1251da177e4SLinus Torvalds  * changes to devices when the CPU clock speed changes.
1261da177e4SLinus Torvalds  * The mutex locks both lists.
1271da177e4SLinus Torvalds  */
128e041c683SAlan Stern static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
129b4dfdbb3SAlan Stern static struct srcu_notifier_head cpufreq_transition_notifier_list;
1301da177e4SLinus Torvalds 
13174212ca4SCesar Eduardo Barros static bool init_cpufreq_transition_notifier_list_called;
132b4dfdbb3SAlan Stern static int __init init_cpufreq_transition_notifier_list(void)
133b4dfdbb3SAlan Stern {
134b4dfdbb3SAlan Stern 	srcu_init_notifier_head(&cpufreq_transition_notifier_list);
13574212ca4SCesar Eduardo Barros 	init_cpufreq_transition_notifier_list_called = true;
136b4dfdbb3SAlan Stern 	return 0;
137b4dfdbb3SAlan Stern }
138b3438f82SLinus Torvalds pure_initcall(init_cpufreq_transition_notifier_list);
1391da177e4SLinus Torvalds 
140a7b422cdSKonrad Rzeszutek Wilk static int off __read_mostly;
141da584455SViresh Kumar static int cpufreq_disabled(void)
142a7b422cdSKonrad Rzeszutek Wilk {
143a7b422cdSKonrad Rzeszutek Wilk 	return off;
144a7b422cdSKonrad Rzeszutek Wilk }
145a7b422cdSKonrad Rzeszutek Wilk void disable_cpufreq(void)
146a7b422cdSKonrad Rzeszutek Wilk {
147a7b422cdSKonrad Rzeszutek Wilk 	off = 1;
148a7b422cdSKonrad Rzeszutek Wilk }
1493fc54d37Sakpm@osdl.org static DEFINE_MUTEX(cpufreq_governor_mutex);
1501da177e4SLinus Torvalds 
1514d5dcc42SViresh Kumar bool have_governor_per_policy(void)
1524d5dcc42SViresh Kumar {
1530b981e70SViresh Kumar 	return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
1544d5dcc42SViresh Kumar }
1553f869d6dSViresh Kumar EXPORT_SYMBOL_GPL(have_governor_per_policy);
1564d5dcc42SViresh Kumar 
157944e9a03SViresh Kumar struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
158944e9a03SViresh Kumar {
159944e9a03SViresh Kumar 	if (have_governor_per_policy())
160944e9a03SViresh Kumar 		return &policy->kobj;
161944e9a03SViresh Kumar 	else
162944e9a03SViresh Kumar 		return cpufreq_global_kobject;
163944e9a03SViresh Kumar }
164944e9a03SViresh Kumar EXPORT_SYMBOL_GPL(get_governor_parent_kobj);
165944e9a03SViresh Kumar 
1665a31d594SViresh Kumar struct cpufreq_frequency_table *cpufreq_frequency_get_table(unsigned int cpu)
1675a31d594SViresh Kumar {
1685a31d594SViresh Kumar 	struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
1695a31d594SViresh Kumar 
1705a31d594SViresh Kumar 	return policy && !policy_is_inactive(policy) ?
1715a31d594SViresh Kumar 		policy->freq_table : NULL;
1725a31d594SViresh Kumar }
1735a31d594SViresh Kumar EXPORT_SYMBOL_GPL(cpufreq_frequency_get_table);
1745a31d594SViresh Kumar 
17572a4ce34SViresh Kumar static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
17672a4ce34SViresh Kumar {
17772a4ce34SViresh Kumar 	u64 idle_time;
17872a4ce34SViresh Kumar 	u64 cur_wall_time;
17972a4ce34SViresh Kumar 	u64 busy_time;
18072a4ce34SViresh Kumar 
18172a4ce34SViresh Kumar 	cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());
18272a4ce34SViresh Kumar 
18372a4ce34SViresh Kumar 	busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
18472a4ce34SViresh Kumar 	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
18572a4ce34SViresh Kumar 	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
18672a4ce34SViresh Kumar 	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
18772a4ce34SViresh Kumar 	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
18872a4ce34SViresh Kumar 	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];
18972a4ce34SViresh Kumar 
19072a4ce34SViresh Kumar 	idle_time = cur_wall_time - busy_time;
19172a4ce34SViresh Kumar 	if (wall)
19272a4ce34SViresh Kumar 		*wall = cputime_to_usecs(cur_wall_time);
19372a4ce34SViresh Kumar 
19472a4ce34SViresh Kumar 	return cputime_to_usecs(idle_time);
19572a4ce34SViresh Kumar }
19672a4ce34SViresh Kumar 
19772a4ce34SViresh Kumar u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
19872a4ce34SViresh Kumar {
19972a4ce34SViresh Kumar 	u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);
20072a4ce34SViresh Kumar 
20172a4ce34SViresh Kumar 	if (idle_time == -1ULL)
20272a4ce34SViresh Kumar 		return get_cpu_idle_time_jiffy(cpu, wall);
20372a4ce34SViresh Kumar 	else if (!io_busy)
20472a4ce34SViresh Kumar 		idle_time += get_cpu_iowait_time_us(cpu, wall);
20572a4ce34SViresh Kumar 
20672a4ce34SViresh Kumar 	return idle_time;
20772a4ce34SViresh Kumar }
20872a4ce34SViresh Kumar EXPORT_SYMBOL_GPL(get_cpu_idle_time);
20972a4ce34SViresh Kumar 
21070e9e778SViresh Kumar /*
21170e9e778SViresh Kumar  * This is a generic cpufreq init() routine which can be used by cpufreq
21270e9e778SViresh Kumar  * drivers of SMP systems. It will do following:
21370e9e778SViresh Kumar  * - validate & show freq table passed
21470e9e778SViresh Kumar  * - set policies transition latency
21570e9e778SViresh Kumar  * - policy->cpus with all possible CPUs
21670e9e778SViresh Kumar  */
21770e9e778SViresh Kumar int cpufreq_generic_init(struct cpufreq_policy *policy,
21870e9e778SViresh Kumar 		struct cpufreq_frequency_table *table,
21970e9e778SViresh Kumar 		unsigned int transition_latency)
22070e9e778SViresh Kumar {
22170e9e778SViresh Kumar 	int ret;
22270e9e778SViresh Kumar 
22370e9e778SViresh Kumar 	ret = cpufreq_table_validate_and_show(policy, table);
22470e9e778SViresh Kumar 	if (ret) {
22570e9e778SViresh Kumar 		pr_err("%s: invalid frequency table: %d\n", __func__, ret);
22670e9e778SViresh Kumar 		return ret;
22770e9e778SViresh Kumar 	}
22870e9e778SViresh Kumar 
22970e9e778SViresh Kumar 	policy->cpuinfo.transition_latency = transition_latency;
23070e9e778SViresh Kumar 
23170e9e778SViresh Kumar 	/*
23258405af6SShailendra Verma 	 * The driver only supports the SMP configuration where all processors
23370e9e778SViresh Kumar 	 * share the clock and voltage and clock.
23470e9e778SViresh Kumar 	 */
23570e9e778SViresh Kumar 	cpumask_setall(policy->cpus);
23670e9e778SViresh Kumar 
23770e9e778SViresh Kumar 	return 0;
23870e9e778SViresh Kumar }
23970e9e778SViresh Kumar EXPORT_SYMBOL_GPL(cpufreq_generic_init);
24070e9e778SViresh Kumar 
2411f0bd44eSRafael J. Wysocki struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
242652ed95dSViresh Kumar {
243652ed95dSViresh Kumar 	struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
244652ed95dSViresh Kumar 
245988bed09SViresh Kumar 	return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
246988bed09SViresh Kumar }
2471f0bd44eSRafael J. Wysocki EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
248988bed09SViresh Kumar 
249988bed09SViresh Kumar unsigned int cpufreq_generic_get(unsigned int cpu)
250988bed09SViresh Kumar {
251988bed09SViresh Kumar 	struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
252988bed09SViresh Kumar 
253652ed95dSViresh Kumar 	if (!policy || IS_ERR(policy->clk)) {
254e837f9b5SJoe Perches 		pr_err("%s: No %s associated to cpu: %d\n",
255e837f9b5SJoe Perches 		       __func__, policy ? "clk" : "policy", cpu);
256652ed95dSViresh Kumar 		return 0;
257652ed95dSViresh Kumar 	}
258652ed95dSViresh Kumar 
259652ed95dSViresh Kumar 	return clk_get_rate(policy->clk) / 1000;
260652ed95dSViresh Kumar }
261652ed95dSViresh Kumar EXPORT_SYMBOL_GPL(cpufreq_generic_get);
262652ed95dSViresh Kumar 
26350e9c852SViresh Kumar /**
26450e9c852SViresh Kumar  * cpufreq_cpu_get: returns policy for a cpu and marks it busy.
26550e9c852SViresh Kumar  *
26650e9c852SViresh Kumar  * @cpu: cpu to find policy for.
26750e9c852SViresh Kumar  *
26850e9c852SViresh Kumar  * This returns policy for 'cpu', returns NULL if it doesn't exist.
26950e9c852SViresh Kumar  * It also increments the kobject reference count to mark it busy and so would
27050e9c852SViresh Kumar  * require a corresponding call to cpufreq_cpu_put() to decrement it back.
27150e9c852SViresh Kumar  * If corresponding call cpufreq_cpu_put() isn't made, the policy wouldn't be
27250e9c852SViresh Kumar  * freed as that depends on the kobj count.
27350e9c852SViresh Kumar  *
27450e9c852SViresh Kumar  * Return: A valid policy on success, otherwise NULL on failure.
27550e9c852SViresh Kumar  */
2766eed9404SViresh Kumar struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
2771da177e4SLinus Torvalds {
2786eed9404SViresh Kumar 	struct cpufreq_policy *policy = NULL;
2791da177e4SLinus Torvalds 	unsigned long flags;
2801da177e4SLinus Torvalds 
2811b947c90SViresh Kumar 	if (WARN_ON(cpu >= nr_cpu_ids))
2826eed9404SViresh Kumar 		return NULL;
2836eed9404SViresh Kumar 
2841da177e4SLinus Torvalds 	/* get the cpufreq driver */
2850d1857a1SNathan Zimmer 	read_lock_irqsave(&cpufreq_driver_lock, flags);
2861da177e4SLinus Torvalds 
2876eed9404SViresh Kumar 	if (cpufreq_driver) {
2881da177e4SLinus Torvalds 		/* get the CPU */
289988bed09SViresh Kumar 		policy = cpufreq_cpu_get_raw(cpu);
2906eed9404SViresh Kumar 		if (policy)
2916eed9404SViresh Kumar 			kobject_get(&policy->kobj);
2926eed9404SViresh Kumar 	}
2936eed9404SViresh Kumar 
2946eed9404SViresh Kumar 	read_unlock_irqrestore(&cpufreq_driver_lock, flags);
2951da177e4SLinus Torvalds 
2963a3e9e06SViresh Kumar 	return policy;
297a9144436SStephen Boyd }
2981da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
2991da177e4SLinus Torvalds 
30050e9c852SViresh Kumar /**
30150e9c852SViresh Kumar  * cpufreq_cpu_put: Decrements the usage count of a policy
30250e9c852SViresh Kumar  *
30350e9c852SViresh Kumar  * @policy: policy earlier returned by cpufreq_cpu_get().
30450e9c852SViresh Kumar  *
30550e9c852SViresh Kumar  * This decrements the kobject reference count incremented earlier by calling
30650e9c852SViresh Kumar  * cpufreq_cpu_get().
30750e9c852SViresh Kumar  */
3083a3e9e06SViresh Kumar void cpufreq_cpu_put(struct cpufreq_policy *policy)
309a9144436SStephen Boyd {
3106eed9404SViresh Kumar 	kobject_put(&policy->kobj);
311a9144436SStephen Boyd }
3121da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(cpufreq_cpu_put);
3131da177e4SLinus Torvalds 
3141da177e4SLinus Torvalds /*********************************************************************
3151da177e4SLinus Torvalds  *            EXTERNALLY AFFECTING FREQUENCY CHANGES                 *
3161da177e4SLinus Torvalds  *********************************************************************/
3171da177e4SLinus Torvalds 
3181da177e4SLinus Torvalds /**
3191da177e4SLinus Torvalds  * adjust_jiffies - adjust the system "loops_per_jiffy"
3201da177e4SLinus Torvalds  *
3211da177e4SLinus Torvalds  * This function alters the system "loops_per_jiffy" for the clock
3221da177e4SLinus Torvalds  * speed change. Note that loops_per_jiffy cannot be updated on SMP
3231da177e4SLinus Torvalds  * systems as each CPU might be scaled differently. So, use the arch
3241da177e4SLinus Torvalds  * per-CPU loops_per_jiffy value wherever possible.
3251da177e4SLinus Torvalds  */
32639c132eeSViresh Kumar static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
32739c132eeSViresh Kumar {
3281da177e4SLinus Torvalds #ifndef CONFIG_SMP
3291da177e4SLinus Torvalds 	static unsigned long l_p_j_ref;
3301da177e4SLinus Torvalds 	static unsigned int l_p_j_ref_freq;
3311da177e4SLinus Torvalds 
3321da177e4SLinus Torvalds 	if (ci->flags & CPUFREQ_CONST_LOOPS)
3331da177e4SLinus Torvalds 		return;
3341da177e4SLinus Torvalds 
3351da177e4SLinus Torvalds 	if (!l_p_j_ref_freq) {
3361da177e4SLinus Torvalds 		l_p_j_ref = loops_per_jiffy;
3371da177e4SLinus Torvalds 		l_p_j_ref_freq = ci->old;
338e837f9b5SJoe Perches 		pr_debug("saving %lu as reference value for loops_per_jiffy; freq is %u kHz\n",
339e837f9b5SJoe Perches 			 l_p_j_ref, l_p_j_ref_freq);
3401da177e4SLinus Torvalds 	}
3410b443eadSViresh Kumar 	if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
342e08f5f5bSGautham R Shenoy 		loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
343e08f5f5bSGautham R Shenoy 								ci->new);
344e837f9b5SJoe Perches 		pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
345e837f9b5SJoe Perches 			 loops_per_jiffy, ci->new);
3461da177e4SLinus Torvalds 	}
3471da177e4SLinus Torvalds #endif
34839c132eeSViresh Kumar }
3491da177e4SLinus Torvalds 
3500956df9cSViresh Kumar static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
351b43a7ffbSViresh Kumar 		struct cpufreq_freqs *freqs, unsigned int state)
3521da177e4SLinus Torvalds {
3531da177e4SLinus Torvalds 	BUG_ON(irqs_disabled());
3541da177e4SLinus Torvalds 
355d5aaffa9SDirk Brandewie 	if (cpufreq_disabled())
356d5aaffa9SDirk Brandewie 		return;
357d5aaffa9SDirk Brandewie 
3581c3d85ddSRafael J. Wysocki 	freqs->flags = cpufreq_driver->flags;
3592d06d8c4SDominik Brodowski 	pr_debug("notification %u of frequency transition to %u kHz\n",
360e4472cb3SDave Jones 		 state, freqs->new);
3611da177e4SLinus Torvalds 
3621da177e4SLinus Torvalds 	switch (state) {
363e4472cb3SDave Jones 
3641da177e4SLinus Torvalds 	case CPUFREQ_PRECHANGE:
365e4472cb3SDave Jones 		/* detect if the driver reported a value as "old frequency"
366e4472cb3SDave Jones 		 * which is not equal to what the cpufreq core thinks is
367e4472cb3SDave Jones 		 * "old frequency".
3681da177e4SLinus Torvalds 		 */
3691c3d85ddSRafael J. Wysocki 		if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
370e4472cb3SDave Jones 			if ((policy) && (policy->cpu == freqs->cpu) &&
371e4472cb3SDave Jones 			    (policy->cur) && (policy->cur != freqs->old)) {
372e837f9b5SJoe Perches 				pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
373e4472cb3SDave Jones 					 freqs->old, policy->cur);
374e4472cb3SDave Jones 				freqs->old = policy->cur;
3751da177e4SLinus Torvalds 			}
3761da177e4SLinus Torvalds 		}
377b4dfdbb3SAlan Stern 		srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
378e4472cb3SDave Jones 				CPUFREQ_PRECHANGE, freqs);
3791da177e4SLinus Torvalds 		adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
3801da177e4SLinus Torvalds 		break;
381e4472cb3SDave Jones 
3821da177e4SLinus Torvalds 	case CPUFREQ_POSTCHANGE:
3831da177e4SLinus Torvalds 		adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
384e837f9b5SJoe Perches 		pr_debug("FREQ: %lu - CPU: %lu\n",
385e837f9b5SJoe Perches 			 (unsigned long)freqs->new, (unsigned long)freqs->cpu);
38625e41933SThomas Renninger 		trace_cpu_frequency(freqs->new, freqs->cpu);
387b4dfdbb3SAlan Stern 		srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
388e4472cb3SDave Jones 				CPUFREQ_POSTCHANGE, freqs);
389e4472cb3SDave Jones 		if (likely(policy) && likely(policy->cpu == freqs->cpu))
390e4472cb3SDave Jones 			policy->cur = freqs->new;
3911da177e4SLinus Torvalds 		break;
3921da177e4SLinus Torvalds 	}
3931da177e4SLinus Torvalds }
394bb176f7dSViresh Kumar 
395b43a7ffbSViresh Kumar /**
396b43a7ffbSViresh Kumar  * cpufreq_notify_transition - call notifier chain and adjust_jiffies
397b43a7ffbSViresh Kumar  * on frequency transition.
398b43a7ffbSViresh Kumar  *
399b43a7ffbSViresh Kumar  * This function calls the transition notifiers and the "adjust_jiffies"
400b43a7ffbSViresh Kumar  * function. It is called twice on all CPU frequency changes that have
401b43a7ffbSViresh Kumar  * external effects.
402b43a7ffbSViresh Kumar  */
403236a9800SViresh Kumar static void cpufreq_notify_transition(struct cpufreq_policy *policy,
404b43a7ffbSViresh Kumar 		struct cpufreq_freqs *freqs, unsigned int state)
405b43a7ffbSViresh Kumar {
406b43a7ffbSViresh Kumar 	for_each_cpu(freqs->cpu, policy->cpus)
407b43a7ffbSViresh Kumar 		__cpufreq_notify_transition(policy, freqs, state);
408b43a7ffbSViresh Kumar }
4091da177e4SLinus Torvalds 
410f7ba3b41SViresh Kumar /* Do post notifications when there are chances that transition has failed */
411236a9800SViresh Kumar static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
412f7ba3b41SViresh Kumar 		struct cpufreq_freqs *freqs, int transition_failed)
413f7ba3b41SViresh Kumar {
414f7ba3b41SViresh Kumar 	cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
415f7ba3b41SViresh Kumar 	if (!transition_failed)
416f7ba3b41SViresh Kumar 		return;
417f7ba3b41SViresh Kumar 
418f7ba3b41SViresh Kumar 	swap(freqs->old, freqs->new);
419f7ba3b41SViresh Kumar 	cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
420f7ba3b41SViresh Kumar 	cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
421f7ba3b41SViresh Kumar }
422f7ba3b41SViresh Kumar 
42312478cf0SSrivatsa S. Bhat void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
42412478cf0SSrivatsa S. Bhat 		struct cpufreq_freqs *freqs)
42512478cf0SSrivatsa S. Bhat {
426ca654dc3SSrivatsa S. Bhat 
427ca654dc3SSrivatsa S. Bhat 	/*
428ca654dc3SSrivatsa S. Bhat 	 * Catch double invocations of _begin() which lead to self-deadlock.
429ca654dc3SSrivatsa S. Bhat 	 * ASYNC_NOTIFICATION drivers are left out because the cpufreq core
430ca654dc3SSrivatsa S. Bhat 	 * doesn't invoke _begin() on their behalf, and hence the chances of
431ca654dc3SSrivatsa S. Bhat 	 * double invocations are very low. Moreover, there are scenarios
432ca654dc3SSrivatsa S. Bhat 	 * where these checks can emit false-positive warnings in these
433ca654dc3SSrivatsa S. Bhat 	 * drivers; so we avoid that by skipping them altogether.
434ca654dc3SSrivatsa S. Bhat 	 */
435ca654dc3SSrivatsa S. Bhat 	WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
436ca654dc3SSrivatsa S. Bhat 				&& current == policy->transition_task);
437ca654dc3SSrivatsa S. Bhat 
43812478cf0SSrivatsa S. Bhat wait:
43912478cf0SSrivatsa S. Bhat 	wait_event(policy->transition_wait, !policy->transition_ongoing);
44012478cf0SSrivatsa S. Bhat 
44112478cf0SSrivatsa S. Bhat 	spin_lock(&policy->transition_lock);
44212478cf0SSrivatsa S. Bhat 
44312478cf0SSrivatsa S. Bhat 	if (unlikely(policy->transition_ongoing)) {
44412478cf0SSrivatsa S. Bhat 		spin_unlock(&policy->transition_lock);
44512478cf0SSrivatsa S. Bhat 		goto wait;
44612478cf0SSrivatsa S. Bhat 	}
44712478cf0SSrivatsa S. Bhat 
44812478cf0SSrivatsa S. Bhat 	policy->transition_ongoing = true;
449ca654dc3SSrivatsa S. Bhat 	policy->transition_task = current;
45012478cf0SSrivatsa S. Bhat 
45112478cf0SSrivatsa S. Bhat 	spin_unlock(&policy->transition_lock);
45212478cf0SSrivatsa S. Bhat 
45312478cf0SSrivatsa S. Bhat 	cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
45412478cf0SSrivatsa S. Bhat }
45512478cf0SSrivatsa S. Bhat EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);
45612478cf0SSrivatsa S. Bhat 
45712478cf0SSrivatsa S. Bhat void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
45812478cf0SSrivatsa S. Bhat 		struct cpufreq_freqs *freqs, int transition_failed)
45912478cf0SSrivatsa S. Bhat {
46012478cf0SSrivatsa S. Bhat 	if (unlikely(WARN_ON(!policy->transition_ongoing)))
46112478cf0SSrivatsa S. Bhat 		return;
46212478cf0SSrivatsa S. Bhat 
46312478cf0SSrivatsa S. Bhat 	cpufreq_notify_post_transition(policy, freqs, transition_failed);
46412478cf0SSrivatsa S. Bhat 
46512478cf0SSrivatsa S. Bhat 	policy->transition_ongoing = false;
466ca654dc3SSrivatsa S. Bhat 	policy->transition_task = NULL;
46712478cf0SSrivatsa S. Bhat 
46812478cf0SSrivatsa S. Bhat 	wake_up(&policy->transition_wait);
46912478cf0SSrivatsa S. Bhat }
47012478cf0SSrivatsa S. Bhat EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
47112478cf0SSrivatsa S. Bhat 
4721da177e4SLinus Torvalds 
4731da177e4SLinus Torvalds /*********************************************************************
4741da177e4SLinus Torvalds  *                          SYSFS INTERFACE                          *
4751da177e4SLinus Torvalds  *********************************************************************/
4768a5c74a1SRashika Kheria static ssize_t show_boost(struct kobject *kobj,
4776f19efc0SLukasz Majewski 				 struct attribute *attr, char *buf)
4786f19efc0SLukasz Majewski {
4796f19efc0SLukasz Majewski 	return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
4806f19efc0SLukasz Majewski }
4816f19efc0SLukasz Majewski 
4826f19efc0SLukasz Majewski static ssize_t store_boost(struct kobject *kobj, struct attribute *attr,
4836f19efc0SLukasz Majewski 				  const char *buf, size_t count)
4846f19efc0SLukasz Majewski {
4856f19efc0SLukasz Majewski 	int ret, enable;
4866f19efc0SLukasz Majewski 
4876f19efc0SLukasz Majewski 	ret = sscanf(buf, "%d", &enable);
4886f19efc0SLukasz Majewski 	if (ret != 1 || enable < 0 || enable > 1)
4896f19efc0SLukasz Majewski 		return -EINVAL;
4906f19efc0SLukasz Majewski 
4916f19efc0SLukasz Majewski 	if (cpufreq_boost_trigger_state(enable)) {
492e837f9b5SJoe Perches 		pr_err("%s: Cannot %s BOOST!\n",
493e837f9b5SJoe Perches 		       __func__, enable ? "enable" : "disable");
4946f19efc0SLukasz Majewski 		return -EINVAL;
4956f19efc0SLukasz Majewski 	}
4966f19efc0SLukasz Majewski 
497e837f9b5SJoe Perches 	pr_debug("%s: cpufreq BOOST %s\n",
498e837f9b5SJoe Perches 		 __func__, enable ? "enabled" : "disabled");
4996f19efc0SLukasz Majewski 
5006f19efc0SLukasz Majewski 	return count;
5016f19efc0SLukasz Majewski }
5026f19efc0SLukasz Majewski define_one_global_rw(boost);
5031da177e4SLinus Torvalds 
50442f91fa1SViresh Kumar static struct cpufreq_governor *find_governor(const char *str_governor)
5053bcb09a3SJeremy Fitzhardinge {
5063bcb09a3SJeremy Fitzhardinge 	struct cpufreq_governor *t;
5073bcb09a3SJeremy Fitzhardinge 
508f7b27061SViresh Kumar 	for_each_governor(t)
5097c4f4539SRasmus Villemoes 		if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
5103bcb09a3SJeremy Fitzhardinge 			return t;
5113bcb09a3SJeremy Fitzhardinge 
5123bcb09a3SJeremy Fitzhardinge 	return NULL;
5133bcb09a3SJeremy Fitzhardinge }
5143bcb09a3SJeremy Fitzhardinge 
5151da177e4SLinus Torvalds /**
5161da177e4SLinus Torvalds  * cpufreq_parse_governor - parse a governor string
5171da177e4SLinus Torvalds  */
5181da177e4SLinus Torvalds static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
5191da177e4SLinus Torvalds 				struct cpufreq_governor **governor)
5201da177e4SLinus Torvalds {
5213bcb09a3SJeremy Fitzhardinge 	int err = -EINVAL;
5223bcb09a3SJeremy Fitzhardinge 
5231c3d85ddSRafael J. Wysocki 	if (cpufreq_driver->setpolicy) {
5247c4f4539SRasmus Villemoes 		if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
5251da177e4SLinus Torvalds 			*policy = CPUFREQ_POLICY_PERFORMANCE;
5263bcb09a3SJeremy Fitzhardinge 			err = 0;
5277c4f4539SRasmus Villemoes 		} else if (!strncasecmp(str_governor, "powersave",
528e08f5f5bSGautham R Shenoy 						CPUFREQ_NAME_LEN)) {
5291da177e4SLinus Torvalds 			*policy = CPUFREQ_POLICY_POWERSAVE;
5303bcb09a3SJeremy Fitzhardinge 			err = 0;
5311da177e4SLinus Torvalds 		}
5322e1cc3a5SViresh Kumar 	} else {
5331da177e4SLinus Torvalds 		struct cpufreq_governor *t;
5343bcb09a3SJeremy Fitzhardinge 
5353fc54d37Sakpm@osdl.org 		mutex_lock(&cpufreq_governor_mutex);
5363bcb09a3SJeremy Fitzhardinge 
53742f91fa1SViresh Kumar 		t = find_governor(str_governor);
5383bcb09a3SJeremy Fitzhardinge 
539ea714970SJeremy Fitzhardinge 		if (t == NULL) {
540ea714970SJeremy Fitzhardinge 			int ret;
541ea714970SJeremy Fitzhardinge 
542ea714970SJeremy Fitzhardinge 			mutex_unlock(&cpufreq_governor_mutex);
5431a8e1463SKees Cook 			ret = request_module("cpufreq_%s", str_governor);
544ea714970SJeremy Fitzhardinge 			mutex_lock(&cpufreq_governor_mutex);
545ea714970SJeremy Fitzhardinge 
546ea714970SJeremy Fitzhardinge 			if (ret == 0)
54742f91fa1SViresh Kumar 				t = find_governor(str_governor);
548ea714970SJeremy Fitzhardinge 		}
549ea714970SJeremy Fitzhardinge 
5503bcb09a3SJeremy Fitzhardinge 		if (t != NULL) {
5511da177e4SLinus Torvalds 			*governor = t;
5523bcb09a3SJeremy Fitzhardinge 			err = 0;
5531da177e4SLinus Torvalds 		}
5543bcb09a3SJeremy Fitzhardinge 
5553bcb09a3SJeremy Fitzhardinge 		mutex_unlock(&cpufreq_governor_mutex);
5561da177e4SLinus Torvalds 	}
5573bcb09a3SJeremy Fitzhardinge 	return err;
5581da177e4SLinus Torvalds }
5591da177e4SLinus Torvalds 
5601da177e4SLinus Torvalds /**
561e08f5f5bSGautham R Shenoy  * cpufreq_per_cpu_attr_read() / show_##file_name() -
562e08f5f5bSGautham R Shenoy  * print out cpufreq information
5631da177e4SLinus Torvalds  *
5641da177e4SLinus Torvalds  * Write out information from cpufreq_driver->policy[cpu]; object must be
5651da177e4SLinus Torvalds  * "unsigned int".
5661da177e4SLinus Torvalds  */
5671da177e4SLinus Torvalds 
5681da177e4SLinus Torvalds #define show_one(file_name, object)			\
5691da177e4SLinus Torvalds static ssize_t show_##file_name				\
5701da177e4SLinus Torvalds (struct cpufreq_policy *policy, char *buf)		\
5711da177e4SLinus Torvalds {							\
5721da177e4SLinus Torvalds 	return sprintf(buf, "%u\n", policy->object);	\
5731da177e4SLinus Torvalds }
5741da177e4SLinus Torvalds 
5751da177e4SLinus Torvalds show_one(cpuinfo_min_freq, cpuinfo.min_freq);
5761da177e4SLinus Torvalds show_one(cpuinfo_max_freq, cpuinfo.max_freq);
577ed129784SThomas Renninger show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
5781da177e4SLinus Torvalds show_one(scaling_min_freq, min);
5791da177e4SLinus Torvalds show_one(scaling_max_freq, max);
580c034b02eSDirk Brandewie 
58109347b29SViresh Kumar static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
582c034b02eSDirk Brandewie {
583c034b02eSDirk Brandewie 	ssize_t ret;
584c034b02eSDirk Brandewie 
585c034b02eSDirk Brandewie 	if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
586c034b02eSDirk Brandewie 		ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
587c034b02eSDirk Brandewie 	else
588c034b02eSDirk Brandewie 		ret = sprintf(buf, "%u\n", policy->cur);
589c034b02eSDirk Brandewie 	return ret;
590c034b02eSDirk Brandewie }
5911da177e4SLinus Torvalds 
592037ce839SViresh Kumar static int cpufreq_set_policy(struct cpufreq_policy *policy,
5933a3e9e06SViresh Kumar 				struct cpufreq_policy *new_policy);
5947970e08bSThomas Renninger 
5951da177e4SLinus Torvalds /**
5961da177e4SLinus Torvalds  * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
5971da177e4SLinus Torvalds  */
5981da177e4SLinus Torvalds #define store_one(file_name, object)			\
5991da177e4SLinus Torvalds static ssize_t store_##file_name					\
6001da177e4SLinus Torvalds (struct cpufreq_policy *policy, const char *buf, size_t count)		\
6011da177e4SLinus Torvalds {									\
602619c144cSVince Hsu 	int ret, temp;							\
6031da177e4SLinus Torvalds 	struct cpufreq_policy new_policy;				\
6041da177e4SLinus Torvalds 									\
6058fa5b631SViresh Kumar 	memcpy(&new_policy, policy, sizeof(*policy));			\
6061da177e4SLinus Torvalds 									\
6071da177e4SLinus Torvalds 	ret = sscanf(buf, "%u", &new_policy.object);			\
6081da177e4SLinus Torvalds 	if (ret != 1)							\
6091da177e4SLinus Torvalds 		return -EINVAL;						\
6101da177e4SLinus Torvalds 									\
611619c144cSVince Hsu 	temp = new_policy.object;					\
612037ce839SViresh Kumar 	ret = cpufreq_set_policy(policy, &new_policy);		\
613619c144cSVince Hsu 	if (!ret)							\
614619c144cSVince Hsu 		policy->user_policy.object = temp;			\
6151da177e4SLinus Torvalds 									\
6161da177e4SLinus Torvalds 	return ret ? ret : count;					\
6171da177e4SLinus Torvalds }
6181da177e4SLinus Torvalds 
6191da177e4SLinus Torvalds store_one(scaling_min_freq, min);
6201da177e4SLinus Torvalds store_one(scaling_max_freq, max);
6211da177e4SLinus Torvalds 
6221da177e4SLinus Torvalds /**
6231da177e4SLinus Torvalds  * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
6241da177e4SLinus Torvalds  */
625e08f5f5bSGautham R Shenoy static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
626e08f5f5bSGautham R Shenoy 					char *buf)
6271da177e4SLinus Torvalds {
628d92d50a4SViresh Kumar 	unsigned int cur_freq = __cpufreq_get(policy);
6291da177e4SLinus Torvalds 	if (!cur_freq)
6301da177e4SLinus Torvalds 		return sprintf(buf, "<unknown>");
6311da177e4SLinus Torvalds 	return sprintf(buf, "%u\n", cur_freq);
6321da177e4SLinus Torvalds }
6331da177e4SLinus Torvalds 
6341da177e4SLinus Torvalds /**
6351da177e4SLinus Torvalds  * show_scaling_governor - show the current policy for the specified CPU
6361da177e4SLinus Torvalds  */
637905d77cdSDave Jones static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
6381da177e4SLinus Torvalds {
6391da177e4SLinus Torvalds 	if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
6401da177e4SLinus Torvalds 		return sprintf(buf, "powersave\n");
6411da177e4SLinus Torvalds 	else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
6421da177e4SLinus Torvalds 		return sprintf(buf, "performance\n");
6431da177e4SLinus Torvalds 	else if (policy->governor)
6444b972f0bSviresh kumar 		return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
64529464f28SDave Jones 				policy->governor->name);
6461da177e4SLinus Torvalds 	return -EINVAL;
6471da177e4SLinus Torvalds }
6481da177e4SLinus Torvalds 
6491da177e4SLinus Torvalds /**
6501da177e4SLinus Torvalds  * store_scaling_governor - store policy for the specified CPU
6511da177e4SLinus Torvalds  */
6521da177e4SLinus Torvalds static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
6531da177e4SLinus Torvalds 					const char *buf, size_t count)
6541da177e4SLinus Torvalds {
6555136fa56SSrivatsa S. Bhat 	int ret;
6561da177e4SLinus Torvalds 	char	str_governor[16];
6571da177e4SLinus Torvalds 	struct cpufreq_policy new_policy;
6581da177e4SLinus Torvalds 
6598fa5b631SViresh Kumar 	memcpy(&new_policy, policy, sizeof(*policy));
6601da177e4SLinus Torvalds 
6611da177e4SLinus Torvalds 	ret = sscanf(buf, "%15s", str_governor);
6621da177e4SLinus Torvalds 	if (ret != 1)
6631da177e4SLinus Torvalds 		return -EINVAL;
6641da177e4SLinus Torvalds 
665e08f5f5bSGautham R Shenoy 	if (cpufreq_parse_governor(str_governor, &new_policy.policy,
666e08f5f5bSGautham R Shenoy 						&new_policy.governor))
6671da177e4SLinus Torvalds 		return -EINVAL;
6681da177e4SLinus Torvalds 
669037ce839SViresh Kumar 	ret = cpufreq_set_policy(policy, &new_policy);
67088dc4384SViresh Kumar 	return ret ? ret : count;
6711da177e4SLinus Torvalds }
6721da177e4SLinus Torvalds 
6731da177e4SLinus Torvalds /**
6741da177e4SLinus Torvalds  * show_scaling_driver - show the cpufreq driver currently loaded
6751da177e4SLinus Torvalds  */
6761da177e4SLinus Torvalds static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
6771da177e4SLinus Torvalds {
6781c3d85ddSRafael J. Wysocki 	return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
6791da177e4SLinus Torvalds }
6801da177e4SLinus Torvalds 
6811da177e4SLinus Torvalds /**
6821da177e4SLinus Torvalds  * show_scaling_available_governors - show the available CPUfreq governors
6831da177e4SLinus Torvalds  */
6841da177e4SLinus Torvalds static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
6851da177e4SLinus Torvalds 						char *buf)
6861da177e4SLinus Torvalds {
6871da177e4SLinus Torvalds 	ssize_t i = 0;
6881da177e4SLinus Torvalds 	struct cpufreq_governor *t;
6891da177e4SLinus Torvalds 
6909c0ebcf7SViresh Kumar 	if (!has_target()) {
6911da177e4SLinus Torvalds 		i += sprintf(buf, "performance powersave");
6921da177e4SLinus Torvalds 		goto out;
6931da177e4SLinus Torvalds 	}
6941da177e4SLinus Torvalds 
695f7b27061SViresh Kumar 	for_each_governor(t) {
69629464f28SDave Jones 		if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
69729464f28SDave Jones 		    - (CPUFREQ_NAME_LEN + 2)))
6981da177e4SLinus Torvalds 			goto out;
6994b972f0bSviresh kumar 		i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
7001da177e4SLinus Torvalds 	}
7011da177e4SLinus Torvalds out:
7021da177e4SLinus Torvalds 	i += sprintf(&buf[i], "\n");
7031da177e4SLinus Torvalds 	return i;
7041da177e4SLinus Torvalds }
705e8628dd0SDarrick J. Wong 
706f4fd3797SLan Tianyu ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
7071da177e4SLinus Torvalds {
7081da177e4SLinus Torvalds 	ssize_t i = 0;
7091da177e4SLinus Torvalds 	unsigned int cpu;
7101da177e4SLinus Torvalds 
711835481d9SRusty Russell 	for_each_cpu(cpu, mask) {
7121da177e4SLinus Torvalds 		if (i)
7131da177e4SLinus Torvalds 			i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
7141da177e4SLinus Torvalds 		i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
7151da177e4SLinus Torvalds 		if (i >= (PAGE_SIZE - 5))
7161da177e4SLinus Torvalds 			break;
7171da177e4SLinus Torvalds 	}
7181da177e4SLinus Torvalds 	i += sprintf(&buf[i], "\n");
7191da177e4SLinus Torvalds 	return i;
7201da177e4SLinus Torvalds }
721f4fd3797SLan Tianyu EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
7221da177e4SLinus Torvalds 
723e8628dd0SDarrick J. Wong /**
724e8628dd0SDarrick J. Wong  * show_related_cpus - show the CPUs affected by each transition even if
725e8628dd0SDarrick J. Wong  * hw coordination is in use
726e8628dd0SDarrick J. Wong  */
727e8628dd0SDarrick J. Wong static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
728e8628dd0SDarrick J. Wong {
729f4fd3797SLan Tianyu 	return cpufreq_show_cpus(policy->related_cpus, buf);
730e8628dd0SDarrick J. Wong }
731e8628dd0SDarrick J. Wong 
732e8628dd0SDarrick J. Wong /**
733e8628dd0SDarrick J. Wong  * show_affected_cpus - show the CPUs affected by each transition
734e8628dd0SDarrick J. Wong  */
735e8628dd0SDarrick J. Wong static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
736e8628dd0SDarrick J. Wong {
737f4fd3797SLan Tianyu 	return cpufreq_show_cpus(policy->cpus, buf);
738e8628dd0SDarrick J. Wong }
739e8628dd0SDarrick J. Wong 
7409e76988eSVenki Pallipadi static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
7419e76988eSVenki Pallipadi 					const char *buf, size_t count)
7429e76988eSVenki Pallipadi {
7439e76988eSVenki Pallipadi 	unsigned int freq = 0;
7449e76988eSVenki Pallipadi 	unsigned int ret;
7459e76988eSVenki Pallipadi 
746879000f9SCHIKAMA masaki 	if (!policy->governor || !policy->governor->store_setspeed)
7479e76988eSVenki Pallipadi 		return -EINVAL;
7489e76988eSVenki Pallipadi 
7499e76988eSVenki Pallipadi 	ret = sscanf(buf, "%u", &freq);
7509e76988eSVenki Pallipadi 	if (ret != 1)
7519e76988eSVenki Pallipadi 		return -EINVAL;
7529e76988eSVenki Pallipadi 
7539e76988eSVenki Pallipadi 	policy->governor->store_setspeed(policy, freq);
7549e76988eSVenki Pallipadi 
7559e76988eSVenki Pallipadi 	return count;
7569e76988eSVenki Pallipadi }
7579e76988eSVenki Pallipadi 
7589e76988eSVenki Pallipadi static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
7599e76988eSVenki Pallipadi {
760879000f9SCHIKAMA masaki 	if (!policy->governor || !policy->governor->show_setspeed)
7619e76988eSVenki Pallipadi 		return sprintf(buf, "<unsupported>\n");
7629e76988eSVenki Pallipadi 
7639e76988eSVenki Pallipadi 	return policy->governor->show_setspeed(policy, buf);
7649e76988eSVenki Pallipadi }
7651da177e4SLinus Torvalds 
766e2f74f35SThomas Renninger /**
7678bf1ac72Sviresh kumar  * show_bios_limit - show the current cpufreq HW/BIOS limitation
768e2f74f35SThomas Renninger  */
769e2f74f35SThomas Renninger static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
770e2f74f35SThomas Renninger {
771e2f74f35SThomas Renninger 	unsigned int limit;
772e2f74f35SThomas Renninger 	int ret;
7731c3d85ddSRafael J. Wysocki 	if (cpufreq_driver->bios_limit) {
7741c3d85ddSRafael J. Wysocki 		ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
775e2f74f35SThomas Renninger 		if (!ret)
776e2f74f35SThomas Renninger 			return sprintf(buf, "%u\n", limit);
777e2f74f35SThomas Renninger 	}
778e2f74f35SThomas Renninger 	return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
779e2f74f35SThomas Renninger }
780e2f74f35SThomas Renninger 
7816dad2a29SBorislav Petkov cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
7826dad2a29SBorislav Petkov cpufreq_freq_attr_ro(cpuinfo_min_freq);
7836dad2a29SBorislav Petkov cpufreq_freq_attr_ro(cpuinfo_max_freq);
7846dad2a29SBorislav Petkov cpufreq_freq_attr_ro(cpuinfo_transition_latency);
7856dad2a29SBorislav Petkov cpufreq_freq_attr_ro(scaling_available_governors);
7866dad2a29SBorislav Petkov cpufreq_freq_attr_ro(scaling_driver);
7876dad2a29SBorislav Petkov cpufreq_freq_attr_ro(scaling_cur_freq);
7886dad2a29SBorislav Petkov cpufreq_freq_attr_ro(bios_limit);
7896dad2a29SBorislav Petkov cpufreq_freq_attr_ro(related_cpus);
7906dad2a29SBorislav Petkov cpufreq_freq_attr_ro(affected_cpus);
7916dad2a29SBorislav Petkov cpufreq_freq_attr_rw(scaling_min_freq);
7926dad2a29SBorislav Petkov cpufreq_freq_attr_rw(scaling_max_freq);
7936dad2a29SBorislav Petkov cpufreq_freq_attr_rw(scaling_governor);
7946dad2a29SBorislav Petkov cpufreq_freq_attr_rw(scaling_setspeed);
7951da177e4SLinus Torvalds 
7961da177e4SLinus Torvalds static struct attribute *default_attrs[] = {
7971da177e4SLinus Torvalds 	&cpuinfo_min_freq.attr,
7981da177e4SLinus Torvalds 	&cpuinfo_max_freq.attr,
799ed129784SThomas Renninger 	&cpuinfo_transition_latency.attr,
8001da177e4SLinus Torvalds 	&scaling_min_freq.attr,
8011da177e4SLinus Torvalds 	&scaling_max_freq.attr,
8021da177e4SLinus Torvalds 	&affected_cpus.attr,
803e8628dd0SDarrick J. Wong 	&related_cpus.attr,
8041da177e4SLinus Torvalds 	&scaling_governor.attr,
8051da177e4SLinus Torvalds 	&scaling_driver.attr,
8061da177e4SLinus Torvalds 	&scaling_available_governors.attr,
8079e76988eSVenki Pallipadi 	&scaling_setspeed.attr,
8081da177e4SLinus Torvalds 	NULL
8091da177e4SLinus Torvalds };
8101da177e4SLinus Torvalds 
8111da177e4SLinus Torvalds #define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
8121da177e4SLinus Torvalds #define to_attr(a) container_of(a, struct freq_attr, attr)
8131da177e4SLinus Torvalds 
8141da177e4SLinus Torvalds static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
8151da177e4SLinus Torvalds {
8161da177e4SLinus Torvalds 	struct cpufreq_policy *policy = to_policy(kobj);
8171da177e4SLinus Torvalds 	struct freq_attr *fattr = to_attr(attr);
8181b750e3bSViresh Kumar 	ssize_t ret;
8196eed9404SViresh Kumar 
820ad7722daSviresh kumar 	down_read(&policy->rwsem);
8215a01f2e8SVenkatesh Pallipadi 
822e08f5f5bSGautham R Shenoy 	if (fattr->show)
823e08f5f5bSGautham R Shenoy 		ret = fattr->show(policy, buf);
824e08f5f5bSGautham R Shenoy 	else
825e08f5f5bSGautham R Shenoy 		ret = -EIO;
826e08f5f5bSGautham R Shenoy 
827ad7722daSviresh kumar 	up_read(&policy->rwsem);
8281b750e3bSViresh Kumar 
8291da177e4SLinus Torvalds 	return ret;
8301da177e4SLinus Torvalds }
8311da177e4SLinus Torvalds 
8321da177e4SLinus Torvalds static ssize_t store(struct kobject *kobj, struct attribute *attr,
8331da177e4SLinus Torvalds 		     const char *buf, size_t count)
8341da177e4SLinus Torvalds {
8351da177e4SLinus Torvalds 	struct cpufreq_policy *policy = to_policy(kobj);
8361da177e4SLinus Torvalds 	struct freq_attr *fattr = to_attr(attr);
837a07530b4SDave Jones 	ssize_t ret = -EINVAL;
8386eed9404SViresh Kumar 
8394f750c93SSrivatsa S. Bhat 	get_online_cpus();
8404f750c93SSrivatsa S. Bhat 
8414f750c93SSrivatsa S. Bhat 	if (!cpu_online(policy->cpu))
8424f750c93SSrivatsa S. Bhat 		goto unlock;
8434f750c93SSrivatsa S. Bhat 
844ad7722daSviresh kumar 	down_write(&policy->rwsem);
8455a01f2e8SVenkatesh Pallipadi 
84611e584cfSViresh Kumar 	/* Updating inactive policies is invalid, so avoid doing that. */
84711e584cfSViresh Kumar 	if (unlikely(policy_is_inactive(policy))) {
84811e584cfSViresh Kumar 		ret = -EBUSY;
84911e584cfSViresh Kumar 		goto unlock_policy_rwsem;
85011e584cfSViresh Kumar 	}
85111e584cfSViresh Kumar 
852e08f5f5bSGautham R Shenoy 	if (fattr->store)
853e08f5f5bSGautham R Shenoy 		ret = fattr->store(policy, buf, count);
854e08f5f5bSGautham R Shenoy 	else
855e08f5f5bSGautham R Shenoy 		ret = -EIO;
856e08f5f5bSGautham R Shenoy 
85711e584cfSViresh Kumar unlock_policy_rwsem:
858ad7722daSviresh kumar 	up_write(&policy->rwsem);
8594f750c93SSrivatsa S. Bhat unlock:
8604f750c93SSrivatsa S. Bhat 	put_online_cpus();
8614f750c93SSrivatsa S. Bhat 
8621da177e4SLinus Torvalds 	return ret;
8631da177e4SLinus Torvalds }
8641da177e4SLinus Torvalds 
8651da177e4SLinus Torvalds static void cpufreq_sysfs_release(struct kobject *kobj)
8661da177e4SLinus Torvalds {
8671da177e4SLinus Torvalds 	struct cpufreq_policy *policy = to_policy(kobj);
8682d06d8c4SDominik Brodowski 	pr_debug("last reference is dropped\n");
8691da177e4SLinus Torvalds 	complete(&policy->kobj_unregister);
8701da177e4SLinus Torvalds }
8711da177e4SLinus Torvalds 
87252cf25d0SEmese Revfy static const struct sysfs_ops sysfs_ops = {
8731da177e4SLinus Torvalds 	.show	= show,
8741da177e4SLinus Torvalds 	.store	= store,
8751da177e4SLinus Torvalds };
8761da177e4SLinus Torvalds 
8771da177e4SLinus Torvalds static struct kobj_type ktype_cpufreq = {
8781da177e4SLinus Torvalds 	.sysfs_ops	= &sysfs_ops,
8791da177e4SLinus Torvalds 	.default_attrs	= default_attrs,
8801da177e4SLinus Torvalds 	.release	= cpufreq_sysfs_release,
8811da177e4SLinus Torvalds };
8821da177e4SLinus Torvalds 
8832361be23SViresh Kumar struct kobject *cpufreq_global_kobject;
8842361be23SViresh Kumar EXPORT_SYMBOL(cpufreq_global_kobject);
8852361be23SViresh Kumar 
8862361be23SViresh Kumar static int cpufreq_global_kobject_usage;
8872361be23SViresh Kumar 
8882361be23SViresh Kumar int cpufreq_get_global_kobject(void)
8892361be23SViresh Kumar {
8902361be23SViresh Kumar 	if (!cpufreq_global_kobject_usage++)
8912361be23SViresh Kumar 		return kobject_add(cpufreq_global_kobject,
8922361be23SViresh Kumar 				&cpu_subsys.dev_root->kobj, "%s", "cpufreq");
8932361be23SViresh Kumar 
8942361be23SViresh Kumar 	return 0;
8952361be23SViresh Kumar }
8962361be23SViresh Kumar EXPORT_SYMBOL(cpufreq_get_global_kobject);
8972361be23SViresh Kumar 
8982361be23SViresh Kumar void cpufreq_put_global_kobject(void)
8992361be23SViresh Kumar {
9002361be23SViresh Kumar 	if (!--cpufreq_global_kobject_usage)
9012361be23SViresh Kumar 		kobject_del(cpufreq_global_kobject);
9022361be23SViresh Kumar }
9032361be23SViresh Kumar EXPORT_SYMBOL(cpufreq_put_global_kobject);
9042361be23SViresh Kumar 
9052361be23SViresh Kumar int cpufreq_sysfs_create_file(const struct attribute *attr)
9062361be23SViresh Kumar {
9072361be23SViresh Kumar 	int ret = cpufreq_get_global_kobject();
9082361be23SViresh Kumar 
9092361be23SViresh Kumar 	if (!ret) {
9102361be23SViresh Kumar 		ret = sysfs_create_file(cpufreq_global_kobject, attr);
9112361be23SViresh Kumar 		if (ret)
9122361be23SViresh Kumar 			cpufreq_put_global_kobject();
9132361be23SViresh Kumar 	}
9142361be23SViresh Kumar 
9152361be23SViresh Kumar 	return ret;
9162361be23SViresh Kumar }
9172361be23SViresh Kumar EXPORT_SYMBOL(cpufreq_sysfs_create_file);
9182361be23SViresh Kumar 
9192361be23SViresh Kumar void cpufreq_sysfs_remove_file(const struct attribute *attr)
9202361be23SViresh Kumar {
9212361be23SViresh Kumar 	sysfs_remove_file(cpufreq_global_kobject, attr);
9222361be23SViresh Kumar 	cpufreq_put_global_kobject();
9232361be23SViresh Kumar }
9242361be23SViresh Kumar EXPORT_SYMBOL(cpufreq_sysfs_remove_file);
9252361be23SViresh Kumar 
92687549141SViresh Kumar static int add_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
92787549141SViresh Kumar {
92887549141SViresh Kumar 	struct device *cpu_dev;
92987549141SViresh Kumar 
93087549141SViresh Kumar 	pr_debug("%s: Adding symlink for CPU: %u\n", __func__, cpu);
93187549141SViresh Kumar 
93287549141SViresh Kumar 	if (!policy)
93387549141SViresh Kumar 		return 0;
93487549141SViresh Kumar 
93587549141SViresh Kumar 	cpu_dev = get_cpu_device(cpu);
93687549141SViresh Kumar 	if (WARN_ON(!cpu_dev))
93787549141SViresh Kumar 		return 0;
93887549141SViresh Kumar 
93987549141SViresh Kumar 	return sysfs_create_link(&cpu_dev->kobj, &policy->kobj, "cpufreq");
94087549141SViresh Kumar }
94187549141SViresh Kumar 
94287549141SViresh Kumar static void remove_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
94387549141SViresh Kumar {
94487549141SViresh Kumar 	struct device *cpu_dev;
94587549141SViresh Kumar 
94687549141SViresh Kumar 	pr_debug("%s: Removing symlink for CPU: %u\n", __func__, cpu);
94787549141SViresh Kumar 
94887549141SViresh Kumar 	cpu_dev = get_cpu_device(cpu);
94987549141SViresh Kumar 	if (WARN_ON(!cpu_dev))
95087549141SViresh Kumar 		return;
95187549141SViresh Kumar 
95287549141SViresh Kumar 	sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
95387549141SViresh Kumar }
95487549141SViresh Kumar 
95587549141SViresh Kumar /* Add/remove symlinks for all related CPUs */
956308b60e7SViresh Kumar static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
95719d6f7ecSDave Jones {
95819d6f7ecSDave Jones 	unsigned int j;
95919d6f7ecSDave Jones 	int ret = 0;
96019d6f7ecSDave Jones 
96187549141SViresh Kumar 	/* Some related CPUs might not be present (physically hotplugged) */
962559ed407SRafael J. Wysocki 	for_each_cpu(j, policy->real_cpus) {
9639d16f207SSaravana Kannan 		if (j == policy->kobj_cpu)
96419d6f7ecSDave Jones 			continue;
96519d6f7ecSDave Jones 
96687549141SViresh Kumar 		ret = add_cpu_dev_symlink(policy, j);
96771c3461eSRafael J. Wysocki 		if (ret)
96871c3461eSRafael J. Wysocki 			break;
96919d6f7ecSDave Jones 	}
97087549141SViresh Kumar 
97119d6f7ecSDave Jones 	return ret;
97219d6f7ecSDave Jones }
97319d6f7ecSDave Jones 
97487549141SViresh Kumar static void cpufreq_remove_dev_symlink(struct cpufreq_policy *policy)
97587549141SViresh Kumar {
97687549141SViresh Kumar 	unsigned int j;
97787549141SViresh Kumar 
97887549141SViresh Kumar 	/* Some related CPUs might not be present (physically hotplugged) */
979559ed407SRafael J. Wysocki 	for_each_cpu(j, policy->real_cpus) {
98087549141SViresh Kumar 		if (j == policy->kobj_cpu)
98187549141SViresh Kumar 			continue;
98287549141SViresh Kumar 
98387549141SViresh Kumar 		remove_cpu_dev_symlink(policy, j);
98487549141SViresh Kumar 	}
98587549141SViresh Kumar }
98687549141SViresh Kumar 
987d9612a49SRafael J. Wysocki static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
988909a694eSDave Jones {
989909a694eSDave Jones 	struct freq_attr **drv_attr;
990909a694eSDave Jones 	int ret = 0;
991909a694eSDave Jones 
992909a694eSDave Jones 	/* set up files for this cpu device */
9931c3d85ddSRafael J. Wysocki 	drv_attr = cpufreq_driver->attr;
994f13f1184SViresh Kumar 	while (drv_attr && *drv_attr) {
995909a694eSDave Jones 		ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
996909a694eSDave Jones 		if (ret)
9976d4e81edSTomeu Vizoso 			return ret;
998909a694eSDave Jones 		drv_attr++;
999909a694eSDave Jones 	}
10001c3d85ddSRafael J. Wysocki 	if (cpufreq_driver->get) {
1001909a694eSDave Jones 		ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
1002909a694eSDave Jones 		if (ret)
10036d4e81edSTomeu Vizoso 			return ret;
1004909a694eSDave Jones 	}
1005c034b02eSDirk Brandewie 
1006909a694eSDave Jones 	ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
1007909a694eSDave Jones 	if (ret)
10086d4e81edSTomeu Vizoso 		return ret;
1009c034b02eSDirk Brandewie 
10101c3d85ddSRafael J. Wysocki 	if (cpufreq_driver->bios_limit) {
1011e2f74f35SThomas Renninger 		ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
1012e2f74f35SThomas Renninger 		if (ret)
10136d4e81edSTomeu Vizoso 			return ret;
1014e2f74f35SThomas Renninger 	}
1015909a694eSDave Jones 
10166d4e81edSTomeu Vizoso 	return cpufreq_add_dev_symlink(policy);
1017e18f1682SSrivatsa S. Bhat }
1018e18f1682SSrivatsa S. Bhat 
10197f0fa40fSViresh Kumar static int cpufreq_init_policy(struct cpufreq_policy *policy)
1020e18f1682SSrivatsa S. Bhat {
10216e2c89d1Sviresh kumar 	struct cpufreq_governor *gov = NULL;
1022e18f1682SSrivatsa S. Bhat 	struct cpufreq_policy new_policy;
1023e18f1682SSrivatsa S. Bhat 
1024d5b73cd8SViresh Kumar 	memcpy(&new_policy, policy, sizeof(*policy));
1025a27a9ab7SJason Baron 
10266e2c89d1Sviresh kumar 	/* Update governor of new_policy to the governor used before hotplug */
10274573237bSViresh Kumar 	gov = find_governor(policy->last_governor);
10286e2c89d1Sviresh kumar 	if (gov)
10296e2c89d1Sviresh kumar 		pr_debug("Restoring governor %s for cpu %d\n",
10306e2c89d1Sviresh kumar 				policy->governor->name, policy->cpu);
10316e2c89d1Sviresh kumar 	else
10326e2c89d1Sviresh kumar 		gov = CPUFREQ_DEFAULT_GOVERNOR;
10336e2c89d1Sviresh kumar 
10346e2c89d1Sviresh kumar 	new_policy.governor = gov;
10356e2c89d1Sviresh kumar 
1036a27a9ab7SJason Baron 	/* Use the default policy if its valid. */
1037a27a9ab7SJason Baron 	if (cpufreq_driver->setpolicy)
10386e2c89d1Sviresh kumar 		cpufreq_parse_governor(gov->name, &new_policy.policy, NULL);
1039ecf7e461SDave Jones 
1040ecf7e461SDave Jones 	/* set default policy */
10417f0fa40fSViresh Kumar 	return cpufreq_set_policy(policy, &new_policy);
1042909a694eSDave Jones }
1043909a694eSDave Jones 
1044d9612a49SRafael J. Wysocki static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
1045fcf80582SViresh Kumar {
10469c0ebcf7SViresh Kumar 	int ret = 0;
1047fcf80582SViresh Kumar 
1048bb29ae15SViresh Kumar 	/* Has this CPU been taken care of already? */
1049bb29ae15SViresh Kumar 	if (cpumask_test_cpu(cpu, policy->cpus))
1050bb29ae15SViresh Kumar 		return 0;
1051bb29ae15SViresh Kumar 
10529c0ebcf7SViresh Kumar 	if (has_target()) {
10533de9bdebSViresh Kumar 		ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
10543de9bdebSViresh Kumar 		if (ret) {
10553de9bdebSViresh Kumar 			pr_err("%s: Failed to stop governor\n", __func__);
10563de9bdebSViresh Kumar 			return ret;
10573de9bdebSViresh Kumar 		}
10583de9bdebSViresh Kumar 	}
1059fcf80582SViresh Kumar 
1060ad7722daSviresh kumar 	down_write(&policy->rwsem);
1061fcf80582SViresh Kumar 	cpumask_set_cpu(cpu, policy->cpus);
1062ad7722daSviresh kumar 	up_write(&policy->rwsem);
10632eaa3e2dSViresh Kumar 
10649c0ebcf7SViresh Kumar 	if (has_target()) {
1065e5c87b76SStratos Karafotis 		ret = __cpufreq_governor(policy, CPUFREQ_GOV_START);
1066e5c87b76SStratos Karafotis 		if (!ret)
1067e5c87b76SStratos Karafotis 			ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
1068e5c87b76SStratos Karafotis 
1069e5c87b76SStratos Karafotis 		if (ret) {
10703de9bdebSViresh Kumar 			pr_err("%s: Failed to start governor\n", __func__);
10713de9bdebSViresh Kumar 			return ret;
10723de9bdebSViresh Kumar 		}
1073820c6ca2SViresh Kumar 	}
1074fcf80582SViresh Kumar 
107587549141SViresh Kumar 	return 0;
1076fcf80582SViresh Kumar }
10771da177e4SLinus Torvalds 
1078a34e63b1SRafael J. Wysocki static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
10798414809cSSrivatsa S. Bhat {
1080a34e63b1SRafael J. Wysocki 	struct device *dev = get_cpu_device(cpu);
1081e9698cc5SSrivatsa S. Bhat 	struct cpufreq_policy *policy;
10822fc3384dSViresh Kumar 	int ret;
1083e9698cc5SSrivatsa S. Bhat 
1084a34e63b1SRafael J. Wysocki 	if (WARN_ON(!dev))
1085a34e63b1SRafael J. Wysocki 		return NULL;
1086a34e63b1SRafael J. Wysocki 
1087e9698cc5SSrivatsa S. Bhat 	policy = kzalloc(sizeof(*policy), GFP_KERNEL);
1088e9698cc5SSrivatsa S. Bhat 	if (!policy)
1089e9698cc5SSrivatsa S. Bhat 		return NULL;
1090e9698cc5SSrivatsa S. Bhat 
1091e9698cc5SSrivatsa S. Bhat 	if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
1092e9698cc5SSrivatsa S. Bhat 		goto err_free_policy;
1093e9698cc5SSrivatsa S. Bhat 
1094e9698cc5SSrivatsa S. Bhat 	if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
1095e9698cc5SSrivatsa S. Bhat 		goto err_free_cpumask;
1096e9698cc5SSrivatsa S. Bhat 
1097559ed407SRafael J. Wysocki 	if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
1098559ed407SRafael J. Wysocki 		goto err_free_rcpumask;
1099559ed407SRafael J. Wysocki 
11002fc3384dSViresh Kumar 	ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq, &dev->kobj,
11012fc3384dSViresh Kumar 				   "cpufreq");
11022fc3384dSViresh Kumar 	if (ret) {
11032fc3384dSViresh Kumar 		pr_err("%s: failed to init policy->kobj: %d\n", __func__, ret);
1104559ed407SRafael J. Wysocki 		goto err_free_real_cpus;
11052fc3384dSViresh Kumar 	}
11062fc3384dSViresh Kumar 
1107c88a1f8bSLukasz Majewski 	INIT_LIST_HEAD(&policy->policy_list);
1108ad7722daSviresh kumar 	init_rwsem(&policy->rwsem);
110912478cf0SSrivatsa S. Bhat 	spin_lock_init(&policy->transition_lock);
111012478cf0SSrivatsa S. Bhat 	init_waitqueue_head(&policy->transition_wait);
1111818c5712SViresh Kumar 	init_completion(&policy->kobj_unregister);
1112818c5712SViresh Kumar 	INIT_WORK(&policy->update, handle_update);
1113ad7722daSviresh kumar 
1114a34e63b1SRafael J. Wysocki 	policy->cpu = cpu;
111587549141SViresh Kumar 
111687549141SViresh Kumar 	/* Set this once on allocation */
1117a34e63b1SRafael J. Wysocki 	policy->kobj_cpu = cpu;
111887549141SViresh Kumar 
1119e9698cc5SSrivatsa S. Bhat 	return policy;
1120e9698cc5SSrivatsa S. Bhat 
1121559ed407SRafael J. Wysocki err_free_real_cpus:
1122559ed407SRafael J. Wysocki 	free_cpumask_var(policy->real_cpus);
11232fc3384dSViresh Kumar err_free_rcpumask:
11242fc3384dSViresh Kumar 	free_cpumask_var(policy->related_cpus);
1125e9698cc5SSrivatsa S. Bhat err_free_cpumask:
1126e9698cc5SSrivatsa S. Bhat 	free_cpumask_var(policy->cpus);
1127e9698cc5SSrivatsa S. Bhat err_free_policy:
1128e9698cc5SSrivatsa S. Bhat 	kfree(policy);
1129e9698cc5SSrivatsa S. Bhat 
1130e9698cc5SSrivatsa S. Bhat 	return NULL;
1131e9698cc5SSrivatsa S. Bhat }
1132e9698cc5SSrivatsa S. Bhat 
11332fc3384dSViresh Kumar static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy, bool notify)
113442f921a6SViresh Kumar {
113542f921a6SViresh Kumar 	struct kobject *kobj;
113642f921a6SViresh Kumar 	struct completion *cmp;
113742f921a6SViresh Kumar 
11382fc3384dSViresh Kumar 	if (notify)
1139fcd7af91SViresh Kumar 		blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1140fcd7af91SViresh Kumar 					     CPUFREQ_REMOVE_POLICY, policy);
1141fcd7af91SViresh Kumar 
114287549141SViresh Kumar 	down_write(&policy->rwsem);
114387549141SViresh Kumar 	cpufreq_remove_dev_symlink(policy);
114442f921a6SViresh Kumar 	kobj = &policy->kobj;
114542f921a6SViresh Kumar 	cmp = &policy->kobj_unregister;
114687549141SViresh Kumar 	up_write(&policy->rwsem);
114742f921a6SViresh Kumar 	kobject_put(kobj);
114842f921a6SViresh Kumar 
114942f921a6SViresh Kumar 	/*
115042f921a6SViresh Kumar 	 * We need to make sure that the underlying kobj is
115142f921a6SViresh Kumar 	 * actually not referenced anymore by anybody before we
115242f921a6SViresh Kumar 	 * proceed with unloading.
115342f921a6SViresh Kumar 	 */
115442f921a6SViresh Kumar 	pr_debug("waiting for dropping of refcount\n");
115542f921a6SViresh Kumar 	wait_for_completion(cmp);
115642f921a6SViresh Kumar 	pr_debug("wait complete\n");
115742f921a6SViresh Kumar }
115842f921a6SViresh Kumar 
11593654c5ccSViresh Kumar static void cpufreq_policy_free(struct cpufreq_policy *policy, bool notify)
1160e9698cc5SSrivatsa S. Bhat {
1161988bed09SViresh Kumar 	unsigned long flags;
1162988bed09SViresh Kumar 	int cpu;
1163988bed09SViresh Kumar 
1164988bed09SViresh Kumar 	/* Remove policy from list */
1165988bed09SViresh Kumar 	write_lock_irqsave(&cpufreq_driver_lock, flags);
1166988bed09SViresh Kumar 	list_del(&policy->policy_list);
1167988bed09SViresh Kumar 
1168988bed09SViresh Kumar 	for_each_cpu(cpu, policy->related_cpus)
1169988bed09SViresh Kumar 		per_cpu(cpufreq_cpu_data, cpu) = NULL;
1170988bed09SViresh Kumar 	write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1171988bed09SViresh Kumar 
11723654c5ccSViresh Kumar 	cpufreq_policy_put_kobj(policy, notify);
1173559ed407SRafael J. Wysocki 	free_cpumask_var(policy->real_cpus);
1174e9698cc5SSrivatsa S. Bhat 	free_cpumask_var(policy->related_cpus);
1175e9698cc5SSrivatsa S. Bhat 	free_cpumask_var(policy->cpus);
1176e9698cc5SSrivatsa S. Bhat 	kfree(policy);
1177e9698cc5SSrivatsa S. Bhat }
1178e9698cc5SSrivatsa S. Bhat 
11790b275352SRafael J. Wysocki static int cpufreq_online(unsigned int cpu)
11801da177e4SLinus Torvalds {
11817f0c020aSViresh Kumar 	struct cpufreq_policy *policy;
1182194d99c7SRafael J. Wysocki 	bool new_policy;
11831da177e4SLinus Torvalds 	unsigned long flags;
11840b275352SRafael J. Wysocki 	unsigned int j;
11850b275352SRafael J. Wysocki 	int ret;
1186c32b6b8eSAshok Raj 
11870b275352SRafael J. Wysocki 	pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
11886eed9404SViresh Kumar 
1189bb29ae15SViresh Kumar 	/* Check if this CPU already has a policy to manage it */
11909104bb26SViresh Kumar 	policy = per_cpu(cpufreq_cpu_data, cpu);
119111ce707eSRafael J. Wysocki 	if (policy) {
11929104bb26SViresh Kumar 		WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
119311ce707eSRafael J. Wysocki 		if (!policy_is_inactive(policy))
1194d9612a49SRafael J. Wysocki 			return cpufreq_add_policy_cpu(policy, cpu);
11951da177e4SLinus Torvalds 
119611ce707eSRafael J. Wysocki 		/* This is the only online CPU for the policy.  Start over. */
1197194d99c7SRafael J. Wysocki 		new_policy = false;
119811ce707eSRafael J. Wysocki 		down_write(&policy->rwsem);
119911ce707eSRafael J. Wysocki 		policy->cpu = cpu;
120011ce707eSRafael J. Wysocki 		policy->governor = NULL;
120111ce707eSRafael J. Wysocki 		up_write(&policy->rwsem);
120211ce707eSRafael J. Wysocki 	} else {
1203194d99c7SRafael J. Wysocki 		new_policy = true;
1204a34e63b1SRafael J. Wysocki 		policy = cpufreq_policy_alloc(cpu);
1205059019a3SDave Jones 		if (!policy)
1206d4d854d6SRafael J. Wysocki 			return -ENOMEM;
120772368d12SRafael J. Wysocki 	}
12080d66b91eSSrivatsa S. Bhat 
1209835481d9SRusty Russell 	cpumask_copy(policy->cpus, cpumask_of(cpu));
12101da177e4SLinus Torvalds 
12111da177e4SLinus Torvalds 	/* call driver. From then on the cpufreq must be able
12121da177e4SLinus Torvalds 	 * to accept all calls to ->verify and ->setpolicy for this CPU
12131da177e4SLinus Torvalds 	 */
12141c3d85ddSRafael J. Wysocki 	ret = cpufreq_driver->init(policy);
12151da177e4SLinus Torvalds 	if (ret) {
12162d06d8c4SDominik Brodowski 		pr_debug("initialization failed\n");
12178101f997SViresh Kumar 		goto out_free_policy;
12181da177e4SLinus Torvalds 	}
1219643ae6e8SViresh Kumar 
12206d4e81edSTomeu Vizoso 	down_write(&policy->rwsem);
12216d4e81edSTomeu Vizoso 
1222194d99c7SRafael J. Wysocki 	if (new_policy) {
12234d1f3a5bSRafael J. Wysocki 		/* related_cpus should at least include policy->cpus. */
12245a7e56a5SViresh Kumar 		cpumask_or(policy->related_cpus, policy->related_cpus, policy->cpus);
12254d1f3a5bSRafael J. Wysocki 		/* Remember CPUs present at the policy creation time. */
1226559ed407SRafael J. Wysocki 		cpumask_and(policy->real_cpus, policy->cpus, cpu_present_mask);
12274d1f3a5bSRafael J. Wysocki 	}
1228559ed407SRafael J. Wysocki 
12295a7e56a5SViresh Kumar 	/*
12305a7e56a5SViresh Kumar 	 * affected cpus must always be the one, which are online. We aren't
12315a7e56a5SViresh Kumar 	 * managing offline cpus here.
12325a7e56a5SViresh Kumar 	 */
12335a7e56a5SViresh Kumar 	cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);
12345a7e56a5SViresh Kumar 
1235194d99c7SRafael J. Wysocki 	if (new_policy) {
12365a7e56a5SViresh Kumar 		policy->user_policy.min = policy->min;
12375a7e56a5SViresh Kumar 		policy->user_policy.max = policy->max;
12386d4e81edSTomeu Vizoso 
1239652ed95dSViresh Kumar 		write_lock_irqsave(&cpufreq_driver_lock, flags);
1240988bed09SViresh Kumar 		for_each_cpu(j, policy->related_cpus)
1241652ed95dSViresh Kumar 			per_cpu(cpufreq_cpu_data, j) = policy;
1242652ed95dSViresh Kumar 		write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1243988bed09SViresh Kumar 	}
1244652ed95dSViresh Kumar 
12452ed99e39SRafael J. Wysocki 	if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
1246da60ce9fSViresh Kumar 		policy->cur = cpufreq_driver->get(policy->cpu);
1247da60ce9fSViresh Kumar 		if (!policy->cur) {
1248da60ce9fSViresh Kumar 			pr_err("%s: ->get() failed\n", __func__);
12498101f997SViresh Kumar 			goto out_exit_policy;
1250da60ce9fSViresh Kumar 		}
1251da60ce9fSViresh Kumar 	}
1252da60ce9fSViresh Kumar 
1253d3916691SViresh Kumar 	/*
1254d3916691SViresh Kumar 	 * Sometimes boot loaders set CPU frequency to a value outside of
1255d3916691SViresh Kumar 	 * frequency table present with cpufreq core. In such cases CPU might be
1256d3916691SViresh Kumar 	 * unstable if it has to run on that frequency for long duration of time
1257d3916691SViresh Kumar 	 * and so its better to set it to a frequency which is specified in
1258d3916691SViresh Kumar 	 * freq-table. This also makes cpufreq stats inconsistent as
1259d3916691SViresh Kumar 	 * cpufreq-stats would fail to register because current frequency of CPU
1260d3916691SViresh Kumar 	 * isn't found in freq-table.
1261d3916691SViresh Kumar 	 *
1262d3916691SViresh Kumar 	 * Because we don't want this change to effect boot process badly, we go
1263d3916691SViresh Kumar 	 * for the next freq which is >= policy->cur ('cur' must be set by now,
1264d3916691SViresh Kumar 	 * otherwise we will end up setting freq to lowest of the table as 'cur'
1265d3916691SViresh Kumar 	 * is initialized to zero).
1266d3916691SViresh Kumar 	 *
1267d3916691SViresh Kumar 	 * We are passing target-freq as "policy->cur - 1" otherwise
1268d3916691SViresh Kumar 	 * __cpufreq_driver_target() would simply fail, as policy->cur will be
1269d3916691SViresh Kumar 	 * equal to target-freq.
1270d3916691SViresh Kumar 	 */
1271d3916691SViresh Kumar 	if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
1272d3916691SViresh Kumar 	    && has_target()) {
1273d3916691SViresh Kumar 		/* Are we running at unknown frequency ? */
1274d3916691SViresh Kumar 		ret = cpufreq_frequency_table_get_index(policy, policy->cur);
1275d3916691SViresh Kumar 		if (ret == -EINVAL) {
1276d3916691SViresh Kumar 			/* Warn user and fix it */
1277d3916691SViresh Kumar 			pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
1278d3916691SViresh Kumar 				__func__, policy->cpu, policy->cur);
1279d3916691SViresh Kumar 			ret = __cpufreq_driver_target(policy, policy->cur - 1,
1280d3916691SViresh Kumar 				CPUFREQ_RELATION_L);
1281d3916691SViresh Kumar 
1282d3916691SViresh Kumar 			/*
1283d3916691SViresh Kumar 			 * Reaching here after boot in a few seconds may not
1284d3916691SViresh Kumar 			 * mean that system will remain stable at "unknown"
1285d3916691SViresh Kumar 			 * frequency for longer duration. Hence, a BUG_ON().
1286d3916691SViresh Kumar 			 */
1287d3916691SViresh Kumar 			BUG_ON(ret);
1288d3916691SViresh Kumar 			pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
1289d3916691SViresh Kumar 				__func__, policy->cpu, policy->cur);
1290d3916691SViresh Kumar 		}
1291d3916691SViresh Kumar 	}
1292d3916691SViresh Kumar 
1293a1531acdSThomas Renninger 	blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1294a1531acdSThomas Renninger 				     CPUFREQ_START, policy);
1295a1531acdSThomas Renninger 
1296194d99c7SRafael J. Wysocki 	if (new_policy) {
1297d9612a49SRafael J. Wysocki 		ret = cpufreq_add_dev_interface(policy);
129819d6f7ecSDave Jones 		if (ret)
12998101f997SViresh Kumar 			goto out_exit_policy;
1300fcd7af91SViresh Kumar 		blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
1301fcd7af91SViresh Kumar 				CPUFREQ_CREATE_POLICY, policy);
1302c88a1f8bSLukasz Majewski 
1303c88a1f8bSLukasz Majewski 		write_lock_irqsave(&cpufreq_driver_lock, flags);
1304c88a1f8bSLukasz Majewski 		list_add(&policy->policy_list, &cpufreq_policy_list);
1305c88a1f8bSLukasz Majewski 		write_unlock_irqrestore(&cpufreq_driver_lock, flags);
1306988bed09SViresh Kumar 	}
13078ff69732SDave Jones 
13087f0fa40fSViresh Kumar 	ret = cpufreq_init_policy(policy);
13097f0fa40fSViresh Kumar 	if (ret) {
13107f0fa40fSViresh Kumar 		pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
13117f0fa40fSViresh Kumar 		       __func__, cpu, ret);
1312194d99c7SRafael J. Wysocki 		/* cpufreq_policy_free() will notify based on this */
1313194d99c7SRafael J. Wysocki 		new_policy = false;
1314194d99c7SRafael J. Wysocki 		goto out_exit_policy;
131508fd8c1cSViresh Kumar 	}
1316e18f1682SSrivatsa S. Bhat 
13174e97b631SViresh Kumar 	up_write(&policy->rwsem);
131808fd8c1cSViresh Kumar 
1319038c5b3eSGreg Kroah-Hartman 	kobject_uevent(&policy->kobj, KOBJ_ADD);
13207c45cf31SViresh Kumar 
13217c45cf31SViresh Kumar 	/* Callback for handling stuff after policy is ready */
13227c45cf31SViresh Kumar 	if (cpufreq_driver->ready)
13237c45cf31SViresh Kumar 		cpufreq_driver->ready(policy);
13247c45cf31SViresh Kumar 
13252d06d8c4SDominik Brodowski 	pr_debug("initialization complete\n");
13261da177e4SLinus Torvalds 
13271da177e4SLinus Torvalds 	return 0;
13281da177e4SLinus Torvalds 
13298101f997SViresh Kumar out_exit_policy:
13307106e02bSPrarit Bhargava 	up_write(&policy->rwsem);
13317106e02bSPrarit Bhargava 
1332da60ce9fSViresh Kumar 	if (cpufreq_driver->exit)
1333da60ce9fSViresh Kumar 		cpufreq_driver->exit(policy);
13348101f997SViresh Kumar out_free_policy:
1335194d99c7SRafael J. Wysocki 	cpufreq_policy_free(policy, !new_policy);
13361da177e4SLinus Torvalds 	return ret;
13371da177e4SLinus Torvalds }
13381da177e4SLinus Torvalds 
13390b275352SRafael J. Wysocki /**
13400b275352SRafael J. Wysocki  * cpufreq_add_dev - the cpufreq interface for a CPU device.
13410b275352SRafael J. Wysocki  * @dev: CPU device.
13420b275352SRafael J. Wysocki  * @sif: Subsystem interface structure pointer (not used)
13430b275352SRafael J. Wysocki  */
13440b275352SRafael J. Wysocki static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
13450b275352SRafael J. Wysocki {
13460b275352SRafael J. Wysocki 	unsigned cpu = dev->id;
13470b275352SRafael J. Wysocki 	int ret;
13480b275352SRafael J. Wysocki 
13490b275352SRafael J. Wysocki 	dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
13500b275352SRafael J. Wysocki 
13510b275352SRafael J. Wysocki 	if (cpu_online(cpu)) {
13520b275352SRafael J. Wysocki 		ret = cpufreq_online(cpu);
13530b275352SRafael J. Wysocki 	} else {
13540b275352SRafael J. Wysocki 		/*
13550b275352SRafael J. Wysocki 		 * A hotplug notifier will follow and we will handle it as CPU
13560b275352SRafael J. Wysocki 		 * online then.  For now, just create the sysfs link, unless
13570b275352SRafael J. Wysocki 		 * there is no policy or the link is already present.
13580b275352SRafael J. Wysocki 		 */
13590b275352SRafael J. Wysocki 		struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
13600b275352SRafael J. Wysocki 
13610b275352SRafael J. Wysocki 		ret = policy && !cpumask_test_and_set_cpu(cpu, policy->real_cpus)
13620b275352SRafael J. Wysocki 			? add_cpu_dev_symlink(policy, cpu) : 0;
13630b275352SRafael J. Wysocki 	}
13641da177e4SLinus Torvalds 
13651da177e4SLinus Torvalds 	return ret;
13661da177e4SLinus Torvalds }
13671da177e4SLinus Torvalds 
136815c0b4d2SRafael J. Wysocki static void cpufreq_offline_prepare(unsigned int cpu)
13691da177e4SLinus Torvalds {
13703a3e9e06SViresh Kumar 	struct cpufreq_policy *policy;
13711da177e4SLinus Torvalds 
1372b8eed8afSViresh Kumar 	pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
13731da177e4SLinus Torvalds 
1374988bed09SViresh Kumar 	policy = cpufreq_cpu_get_raw(cpu);
13753a3e9e06SViresh Kumar 	if (!policy) {
1376b8eed8afSViresh Kumar 		pr_debug("%s: No cpu_data found\n", __func__);
137715c0b4d2SRafael J. Wysocki 		return;
13781da177e4SLinus Torvalds 	}
13791da177e4SLinus Torvalds 
13809c0ebcf7SViresh Kumar 	if (has_target()) {
138115c0b4d2SRafael J. Wysocki 		int ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1382559ed407SRafael J. Wysocki 		if (ret)
13833de9bdebSViresh Kumar 			pr_err("%s: Failed to stop governor\n", __func__);
1384db5f2995SViresh Kumar 	}
13851da177e4SLinus Torvalds 
13864573237bSViresh Kumar 	down_write(&policy->rwsem);
13879591becbSViresh Kumar 	cpumask_clear_cpu(cpu, policy->cpus);
13884573237bSViresh Kumar 
13899591becbSViresh Kumar 	if (policy_is_inactive(policy)) {
13909591becbSViresh Kumar 		if (has_target())
13914573237bSViresh Kumar 			strncpy(policy->last_governor, policy->governor->name,
13924573237bSViresh Kumar 				CPUFREQ_NAME_LEN);
13939591becbSViresh Kumar 	} else if (cpu == policy->cpu) {
13949591becbSViresh Kumar 		/* Nominate new CPU */
13959591becbSViresh Kumar 		policy->cpu = cpumask_any(policy->cpus);
13969591becbSViresh Kumar 	}
13974573237bSViresh Kumar 	up_write(&policy->rwsem);
13981da177e4SLinus Torvalds 
13999591becbSViresh Kumar 	/* Start governor again for active policy */
14009591becbSViresh Kumar 	if (!policy_is_inactive(policy)) {
14019591becbSViresh Kumar 		if (has_target()) {
140215c0b4d2SRafael J. Wysocki 			int ret = __cpufreq_governor(policy, CPUFREQ_GOV_START);
14039591becbSViresh Kumar 			if (!ret)
14049591becbSViresh Kumar 				ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
140587549141SViresh Kumar 
14069591becbSViresh Kumar 			if (ret)
14079591becbSViresh Kumar 				pr_err("%s: Failed to start governor\n", __func__);
14089591becbSViresh Kumar 		}
14099591becbSViresh Kumar 	} else if (cpufreq_driver->stop_cpu) {
1410367dc4aaSDirk Brandewie 		cpufreq_driver->stop_cpu(policy);
14119591becbSViresh Kumar 	}
1412cedb70afSSrivatsa S. Bhat }
1413cedb70afSSrivatsa S. Bhat 
141415c0b4d2SRafael J. Wysocki static void cpufreq_offline_finish(unsigned int cpu)
1415cedb70afSSrivatsa S. Bhat {
14169591becbSViresh Kumar 	struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
1417cedb70afSSrivatsa S. Bhat 
1418cedb70afSSrivatsa S. Bhat 	if (!policy) {
1419cedb70afSSrivatsa S. Bhat 		pr_debug("%s: No cpu_data found\n", __func__);
142015c0b4d2SRafael J. Wysocki 		return;
1421cedb70afSSrivatsa S. Bhat 	}
1422cedb70afSSrivatsa S. Bhat 
14239591becbSViresh Kumar 	/* Only proceed for inactive policies */
14249591becbSViresh Kumar 	if (!policy_is_inactive(policy))
142515c0b4d2SRafael J. Wysocki 		return;
142687549141SViresh Kumar 
142787549141SViresh Kumar 	/* If cpu is last user of policy, free policy */
142887549141SViresh Kumar 	if (has_target()) {
142915c0b4d2SRafael J. Wysocki 		int ret = __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
1430559ed407SRafael J. Wysocki 		if (ret)
143187549141SViresh Kumar 			pr_err("%s: Failed to exit governor\n", __func__);
14323de9bdebSViresh Kumar 	}
14332a998599SRafael J. Wysocki 
14348414809cSSrivatsa S. Bhat 	/*
14358414809cSSrivatsa S. Bhat 	 * Perform the ->exit() even during light-weight tear-down,
14368414809cSSrivatsa S. Bhat 	 * since this is a core component, and is essential for the
14378414809cSSrivatsa S. Bhat 	 * subsequent light-weight ->init() to succeed.
14388414809cSSrivatsa S. Bhat 	 */
1439*55582bccSSrinivas Pandruvada 	if (cpufreq_driver->exit) {
14403a3e9e06SViresh Kumar 		cpufreq_driver->exit(policy);
1441*55582bccSSrinivas Pandruvada 		policy->freq_table = NULL;
1442*55582bccSSrinivas Pandruvada 	}
14431da177e4SLinus Torvalds }
14441da177e4SLinus Torvalds 
1445cedb70afSSrivatsa S. Bhat /**
144627a862e9SViresh Kumar  * cpufreq_remove_dev - remove a CPU device
1447cedb70afSSrivatsa S. Bhat  *
1448cedb70afSSrivatsa S. Bhat  * Removes the cpufreq interface for a CPU device.
1449cedb70afSSrivatsa S. Bhat  */
145071db87baSViresh Kumar static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
14515a01f2e8SVenkatesh Pallipadi {
14528a25a2fdSKay Sievers 	unsigned int cpu = dev->id;
145387549141SViresh Kumar 	struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
145487549141SViresh Kumar 
145587549141SViresh Kumar 	if (!policy)
145671db87baSViresh Kumar 		return;
1457ec28297aSVenki Pallipadi 
1458559ed407SRafael J. Wysocki 	if (cpu_online(cpu)) {
145915c0b4d2SRafael J. Wysocki 		cpufreq_offline_prepare(cpu);
146015c0b4d2SRafael J. Wysocki 		cpufreq_offline_finish(cpu);
146187549141SViresh Kumar 	}
146287549141SViresh Kumar 
1463559ed407SRafael J. Wysocki 	cpumask_clear_cpu(cpu, policy->real_cpus);
1464559ed407SRafael J. Wysocki 
1465559ed407SRafael J. Wysocki 	if (cpumask_empty(policy->real_cpus)) {
14663654c5ccSViresh Kumar 		cpufreq_policy_free(policy, true);
146771db87baSViresh Kumar 		return;
146887549141SViresh Kumar 	}
146987549141SViresh Kumar 
1470559ed407SRafael J. Wysocki 	if (cpu != policy->kobj_cpu) {
1471559ed407SRafael J. Wysocki 		remove_cpu_dev_symlink(policy, cpu);
1472559ed407SRafael J. Wysocki 	} else {
1473559ed407SRafael J. Wysocki 		/*
1474559ed407SRafael J. Wysocki 		 * The CPU owning the policy object is going away.  Move it to
1475559ed407SRafael J. Wysocki 		 * another suitable CPU.
1476559ed407SRafael J. Wysocki 		 */
1477559ed407SRafael J. Wysocki 		unsigned int new_cpu = cpumask_first(policy->real_cpus);
1478559ed407SRafael J. Wysocki 		struct device *new_dev = get_cpu_device(new_cpu);
147927a862e9SViresh Kumar 
1480559ed407SRafael J. Wysocki 		dev_dbg(dev, "%s: Moving policy object to CPU%u\n", __func__, new_cpu);
148127a862e9SViresh Kumar 
1482559ed407SRafael J. Wysocki 		sysfs_remove_link(&new_dev->kobj, "cpufreq");
1483559ed407SRafael J. Wysocki 		policy->kobj_cpu = new_cpu;
1484559ed407SRafael J. Wysocki 		WARN_ON(kobject_move(&policy->kobj, &new_dev->kobj));
1485559ed407SRafael J. Wysocki 	}
14865a01f2e8SVenkatesh Pallipadi }
14875a01f2e8SVenkatesh Pallipadi 
148865f27f38SDavid Howells static void handle_update(struct work_struct *work)
14891da177e4SLinus Torvalds {
149065f27f38SDavid Howells 	struct cpufreq_policy *policy =
149165f27f38SDavid Howells 		container_of(work, struct cpufreq_policy, update);
149265f27f38SDavid Howells 	unsigned int cpu = policy->cpu;
14932d06d8c4SDominik Brodowski 	pr_debug("handle_update for cpu %u called\n", cpu);
14941da177e4SLinus Torvalds 	cpufreq_update_policy(cpu);
14951da177e4SLinus Torvalds }
14961da177e4SLinus Torvalds 
14971da177e4SLinus Torvalds /**
1498bb176f7dSViresh Kumar  *	cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
1499bb176f7dSViresh Kumar  *	in deep trouble.
1500a1e1dc41SViresh Kumar  *	@policy: policy managing CPUs
15011da177e4SLinus Torvalds  *	@new_freq: CPU frequency the CPU actually runs at
15021da177e4SLinus Torvalds  *
150329464f28SDave Jones  *	We adjust to current frequency first, and need to clean up later.
150429464f28SDave Jones  *	So either call to cpufreq_update_policy() or schedule handle_update()).
15051da177e4SLinus Torvalds  */
1506a1e1dc41SViresh Kumar static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
1507e08f5f5bSGautham R Shenoy 				unsigned int new_freq)
15081da177e4SLinus Torvalds {
15091da177e4SLinus Torvalds 	struct cpufreq_freqs freqs;
1510b43a7ffbSViresh Kumar 
1511e837f9b5SJoe Perches 	pr_debug("Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\n",
1512a1e1dc41SViresh Kumar 		 policy->cur, new_freq);
15131da177e4SLinus Torvalds 
1514a1e1dc41SViresh Kumar 	freqs.old = policy->cur;
15151da177e4SLinus Torvalds 	freqs.new = new_freq;
1516b43a7ffbSViresh Kumar 
15178fec051eSViresh Kumar 	cpufreq_freq_transition_begin(policy, &freqs);
15188fec051eSViresh Kumar 	cpufreq_freq_transition_end(policy, &freqs, 0);
15191da177e4SLinus Torvalds }
15201da177e4SLinus Torvalds 
15211da177e4SLinus Torvalds /**
15224ab70df4SDhaval Giani  * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
152395235ca2SVenkatesh Pallipadi  * @cpu: CPU number
152495235ca2SVenkatesh Pallipadi  *
152595235ca2SVenkatesh Pallipadi  * This is the last known freq, without actually getting it from the driver.
152695235ca2SVenkatesh Pallipadi  * Return value will be same as what is shown in scaling_cur_freq in sysfs.
152795235ca2SVenkatesh Pallipadi  */
152895235ca2SVenkatesh Pallipadi unsigned int cpufreq_quick_get(unsigned int cpu)
152995235ca2SVenkatesh Pallipadi {
15309e21ba8bSDirk Brandewie 	struct cpufreq_policy *policy;
1531e08f5f5bSGautham R Shenoy 	unsigned int ret_freq = 0;
153295235ca2SVenkatesh Pallipadi 
15331c3d85ddSRafael J. Wysocki 	if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
15341c3d85ddSRafael J. Wysocki 		return cpufreq_driver->get(cpu);
15359e21ba8bSDirk Brandewie 
15369e21ba8bSDirk Brandewie 	policy = cpufreq_cpu_get(cpu);
153795235ca2SVenkatesh Pallipadi 	if (policy) {
1538e08f5f5bSGautham R Shenoy 		ret_freq = policy->cur;
153995235ca2SVenkatesh Pallipadi 		cpufreq_cpu_put(policy);
154095235ca2SVenkatesh Pallipadi 	}
154195235ca2SVenkatesh Pallipadi 
15424d34a67dSDave Jones 	return ret_freq;
154395235ca2SVenkatesh Pallipadi }
154495235ca2SVenkatesh Pallipadi EXPORT_SYMBOL(cpufreq_quick_get);
154595235ca2SVenkatesh Pallipadi 
15463d737108SJesse Barnes /**
15473d737108SJesse Barnes  * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
15483d737108SJesse Barnes  * @cpu: CPU number
15493d737108SJesse Barnes  *
15503d737108SJesse Barnes  * Just return the max possible frequency for a given CPU.
15513d737108SJesse Barnes  */
15523d737108SJesse Barnes unsigned int cpufreq_quick_get_max(unsigned int cpu)
15533d737108SJesse Barnes {
15543d737108SJesse Barnes 	struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
15553d737108SJesse Barnes 	unsigned int ret_freq = 0;
15563d737108SJesse Barnes 
15573d737108SJesse Barnes 	if (policy) {
15583d737108SJesse Barnes 		ret_freq = policy->max;
15593d737108SJesse Barnes 		cpufreq_cpu_put(policy);
15603d737108SJesse Barnes 	}
15613d737108SJesse Barnes 
15623d737108SJesse Barnes 	return ret_freq;
15633d737108SJesse Barnes }
15643d737108SJesse Barnes EXPORT_SYMBOL(cpufreq_quick_get_max);
15653d737108SJesse Barnes 
1566d92d50a4SViresh Kumar static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
15671da177e4SLinus Torvalds {
1568e08f5f5bSGautham R Shenoy 	unsigned int ret_freq = 0;
15691da177e4SLinus Torvalds 
15701c3d85ddSRafael J. Wysocki 	if (!cpufreq_driver->get)
15714d34a67dSDave Jones 		return ret_freq;
15721da177e4SLinus Torvalds 
1573d92d50a4SViresh Kumar 	ret_freq = cpufreq_driver->get(policy->cpu);
15741da177e4SLinus Torvalds 
157511e584cfSViresh Kumar 	/* Updating inactive policies is invalid, so avoid doing that. */
157611e584cfSViresh Kumar 	if (unlikely(policy_is_inactive(policy)))
157711e584cfSViresh Kumar 		return ret_freq;
157811e584cfSViresh Kumar 
1579e08f5f5bSGautham R Shenoy 	if (ret_freq && policy->cur &&
15801c3d85ddSRafael J. Wysocki 		!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1581e08f5f5bSGautham R Shenoy 		/* verify no discrepancy between actual and
1582e08f5f5bSGautham R Shenoy 					saved value exists */
1583e08f5f5bSGautham R Shenoy 		if (unlikely(ret_freq != policy->cur)) {
1584a1e1dc41SViresh Kumar 			cpufreq_out_of_sync(policy, ret_freq);
15851da177e4SLinus Torvalds 			schedule_work(&policy->update);
15861da177e4SLinus Torvalds 		}
15871da177e4SLinus Torvalds 	}
15881da177e4SLinus Torvalds 
15894d34a67dSDave Jones 	return ret_freq;
15905a01f2e8SVenkatesh Pallipadi }
15911da177e4SLinus Torvalds 
15925a01f2e8SVenkatesh Pallipadi /**
15935a01f2e8SVenkatesh Pallipadi  * cpufreq_get - get the current CPU frequency (in kHz)
15945a01f2e8SVenkatesh Pallipadi  * @cpu: CPU number
15955a01f2e8SVenkatesh Pallipadi  *
15965a01f2e8SVenkatesh Pallipadi  * Get the CPU current (static) CPU frequency
15975a01f2e8SVenkatesh Pallipadi  */
15985a01f2e8SVenkatesh Pallipadi unsigned int cpufreq_get(unsigned int cpu)
15995a01f2e8SVenkatesh Pallipadi {
1600999976e0SAaron Plattner 	struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
16015a01f2e8SVenkatesh Pallipadi 	unsigned int ret_freq = 0;
16025a01f2e8SVenkatesh Pallipadi 
1603999976e0SAaron Plattner 	if (policy) {
1604ad7722daSviresh kumar 		down_read(&policy->rwsem);
1605d92d50a4SViresh Kumar 		ret_freq = __cpufreq_get(policy);
1606ad7722daSviresh kumar 		up_read(&policy->rwsem);
1607999976e0SAaron Plattner 
1608999976e0SAaron Plattner 		cpufreq_cpu_put(policy);
1609999976e0SAaron Plattner 	}
16106eed9404SViresh Kumar 
16114d34a67dSDave Jones 	return ret_freq;
16121da177e4SLinus Torvalds }
16131da177e4SLinus Torvalds EXPORT_SYMBOL(cpufreq_get);
16141da177e4SLinus Torvalds 
16158a25a2fdSKay Sievers static struct subsys_interface cpufreq_interface = {
16168a25a2fdSKay Sievers 	.name		= "cpufreq",
16178a25a2fdSKay Sievers 	.subsys		= &cpu_subsys,
16188a25a2fdSKay Sievers 	.add_dev	= cpufreq_add_dev,
16198a25a2fdSKay Sievers 	.remove_dev	= cpufreq_remove_dev,
1620e00e56dfSRafael J. Wysocki };
1621e00e56dfSRafael J. Wysocki 
1622e28867eaSViresh Kumar /*
1623e28867eaSViresh Kumar  * In case platform wants some specific frequency to be configured
1624e28867eaSViresh Kumar  * during suspend..
162542d4dc3fSBenjamin Herrenschmidt  */
1626e28867eaSViresh Kumar int cpufreq_generic_suspend(struct cpufreq_policy *policy)
162742d4dc3fSBenjamin Herrenschmidt {
1628e28867eaSViresh Kumar 	int ret;
16294bc5d341SDave Jones 
1630e28867eaSViresh Kumar 	if (!policy->suspend_freq) {
1631201f3716SBartlomiej Zolnierkiewicz 		pr_debug("%s: suspend_freq not defined\n", __func__);
1632201f3716SBartlomiej Zolnierkiewicz 		return 0;
163342d4dc3fSBenjamin Herrenschmidt 	}
163442d4dc3fSBenjamin Herrenschmidt 
1635e28867eaSViresh Kumar 	pr_debug("%s: Setting suspend-freq: %u\n", __func__,
1636e28867eaSViresh Kumar 			policy->suspend_freq);
1637e28867eaSViresh Kumar 
1638e28867eaSViresh Kumar 	ret = __cpufreq_driver_target(policy, policy->suspend_freq,
1639e28867eaSViresh Kumar 			CPUFREQ_RELATION_H);
1640e28867eaSViresh Kumar 	if (ret)
1641e28867eaSViresh Kumar 		pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
1642e28867eaSViresh Kumar 				__func__, policy->suspend_freq, ret);
1643e28867eaSViresh Kumar 
1644c9060494SDave Jones 	return ret;
164542d4dc3fSBenjamin Herrenschmidt }
1646e28867eaSViresh Kumar EXPORT_SYMBOL(cpufreq_generic_suspend);
164742d4dc3fSBenjamin Herrenschmidt 
164842d4dc3fSBenjamin Herrenschmidt /**
16492f0aea93SViresh Kumar  * cpufreq_suspend() - Suspend CPUFreq governors
16501da177e4SLinus Torvalds  *
16512f0aea93SViresh Kumar  * Called during system wide Suspend/Hibernate cycles for suspending governors
16522f0aea93SViresh Kumar  * as some platforms can't change frequency after this point in suspend cycle.
16532f0aea93SViresh Kumar  * Because some of the devices (like: i2c, regulators, etc) they use for
16542f0aea93SViresh Kumar  * changing frequency are suspended quickly after this point.
16551da177e4SLinus Torvalds  */
16562f0aea93SViresh Kumar void cpufreq_suspend(void)
16571da177e4SLinus Torvalds {
16583a3e9e06SViresh Kumar 	struct cpufreq_policy *policy;
16591da177e4SLinus Torvalds 
16602f0aea93SViresh Kumar 	if (!cpufreq_driver)
1661e00e56dfSRafael J. Wysocki 		return;
16621da177e4SLinus Torvalds 
16632f0aea93SViresh Kumar 	if (!has_target())
1664b1b12babSViresh Kumar 		goto suspend;
16651da177e4SLinus Torvalds 
16662f0aea93SViresh Kumar 	pr_debug("%s: Suspending Governors\n", __func__);
16672f0aea93SViresh Kumar 
1668f963735aSViresh Kumar 	for_each_active_policy(policy) {
16692f0aea93SViresh Kumar 		if (__cpufreq_governor(policy, CPUFREQ_GOV_STOP))
16702f0aea93SViresh Kumar 			pr_err("%s: Failed to stop governor for policy: %p\n",
16712f0aea93SViresh Kumar 				__func__, policy);
16722f0aea93SViresh Kumar 		else if (cpufreq_driver->suspend
16732f0aea93SViresh Kumar 		    && cpufreq_driver->suspend(policy))
16742f0aea93SViresh Kumar 			pr_err("%s: Failed to suspend driver: %p\n", __func__,
16752f0aea93SViresh Kumar 				policy);
16761da177e4SLinus Torvalds 	}
1677b1b12babSViresh Kumar 
1678b1b12babSViresh Kumar suspend:
1679b1b12babSViresh Kumar 	cpufreq_suspended = true;
16801da177e4SLinus Torvalds }
16811da177e4SLinus Torvalds 
16821da177e4SLinus Torvalds /**
16832f0aea93SViresh Kumar  * cpufreq_resume() - Resume CPUFreq governors
16841da177e4SLinus Torvalds  *
16852f0aea93SViresh Kumar  * Called during system wide Suspend/Hibernate cycle for resuming governors that
16862f0aea93SViresh Kumar  * are suspended with cpufreq_suspend().
16871da177e4SLinus Torvalds  */
16882f0aea93SViresh Kumar void cpufreq_resume(void)
16891da177e4SLinus Torvalds {
16901da177e4SLinus Torvalds 	struct cpufreq_policy *policy;
16911da177e4SLinus Torvalds 
16922f0aea93SViresh Kumar 	if (!cpufreq_driver)
16931da177e4SLinus Torvalds 		return;
16941da177e4SLinus Torvalds 
16958e30444eSLan Tianyu 	cpufreq_suspended = false;
16968e30444eSLan Tianyu 
16972f0aea93SViresh Kumar 	if (!has_target())
16982f0aea93SViresh Kumar 		return;
16991da177e4SLinus Torvalds 
17002f0aea93SViresh Kumar 	pr_debug("%s: Resuming Governors\n", __func__);
17012f0aea93SViresh Kumar 
1702f963735aSViresh Kumar 	for_each_active_policy(policy) {
17030c5aa405SViresh Kumar 		if (cpufreq_driver->resume && cpufreq_driver->resume(policy))
17040c5aa405SViresh Kumar 			pr_err("%s: Failed to resume driver: %p\n", __func__,
17050c5aa405SViresh Kumar 				policy);
17060c5aa405SViresh Kumar 		else if (__cpufreq_governor(policy, CPUFREQ_GOV_START)
17072f0aea93SViresh Kumar 		    || __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))
17082f0aea93SViresh Kumar 			pr_err("%s: Failed to start governor for policy: %p\n",
17092f0aea93SViresh Kumar 				__func__, policy);
1710c75de0acSViresh Kumar 	}
17112f0aea93SViresh Kumar 
17122f0aea93SViresh Kumar 	/*
1713c75de0acSViresh Kumar 	 * schedule call cpufreq_update_policy() for first-online CPU, as that
1714c75de0acSViresh Kumar 	 * wouldn't be hotplugged-out on suspend. It will verify that the
1715c75de0acSViresh Kumar 	 * current freq is in sync with what we believe it to be.
17162f0aea93SViresh Kumar 	 */
1717c75de0acSViresh Kumar 	policy = cpufreq_cpu_get_raw(cpumask_first(cpu_online_mask));
1718c75de0acSViresh Kumar 	if (WARN_ON(!policy))
1719c75de0acSViresh Kumar 		return;
1720c75de0acSViresh Kumar 
17213a3e9e06SViresh Kumar 	schedule_work(&policy->update);
17221da177e4SLinus Torvalds }
17231da177e4SLinus Torvalds 
17249d95046eSBorislav Petkov /**
17259d95046eSBorislav Petkov  *	cpufreq_get_current_driver - return current driver's name
17269d95046eSBorislav Petkov  *
17279d95046eSBorislav Petkov  *	Return the name string of the currently loaded cpufreq driver
17289d95046eSBorislav Petkov  *	or NULL, if none.
17299d95046eSBorislav Petkov  */
17309d95046eSBorislav Petkov const char *cpufreq_get_current_driver(void)
17319d95046eSBorislav Petkov {
17321c3d85ddSRafael J. Wysocki 	if (cpufreq_driver)
17331c3d85ddSRafael J. Wysocki 		return cpufreq_driver->name;
17341c3d85ddSRafael J. Wysocki 
17351c3d85ddSRafael J. Wysocki 	return NULL;
17369d95046eSBorislav Petkov }
17379d95046eSBorislav Petkov EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
17381da177e4SLinus Torvalds 
173951315cdfSThomas Petazzoni /**
174051315cdfSThomas Petazzoni  *	cpufreq_get_driver_data - return current driver data
174151315cdfSThomas Petazzoni  *
174251315cdfSThomas Petazzoni  *	Return the private data of the currently loaded cpufreq
174351315cdfSThomas Petazzoni  *	driver, or NULL if no cpufreq driver is loaded.
174451315cdfSThomas Petazzoni  */
174551315cdfSThomas Petazzoni void *cpufreq_get_driver_data(void)
174651315cdfSThomas Petazzoni {
174751315cdfSThomas Petazzoni 	if (cpufreq_driver)
174851315cdfSThomas Petazzoni 		return cpufreq_driver->driver_data;
174951315cdfSThomas Petazzoni 
175051315cdfSThomas Petazzoni 	return NULL;
175151315cdfSThomas Petazzoni }
175251315cdfSThomas Petazzoni EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);
175351315cdfSThomas Petazzoni 
17541da177e4SLinus Torvalds /*********************************************************************
17551da177e4SLinus Torvalds  *                     NOTIFIER LISTS INTERFACE                      *
17561da177e4SLinus Torvalds  *********************************************************************/
17571da177e4SLinus Torvalds 
17581da177e4SLinus Torvalds /**
17591da177e4SLinus Torvalds  *	cpufreq_register_notifier - register a driver with cpufreq
17601da177e4SLinus Torvalds  *	@nb: notifier function to register
17611da177e4SLinus Torvalds  *      @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
17621da177e4SLinus Torvalds  *
17631da177e4SLinus Torvalds  *	Add a driver to one of two lists: either a list of drivers that
17641da177e4SLinus Torvalds  *      are notified about clock rate changes (once before and once after
17651da177e4SLinus Torvalds  *      the transition), or a list of drivers that are notified about
17661da177e4SLinus Torvalds  *      changes in cpufreq policy.
17671da177e4SLinus Torvalds  *
17681da177e4SLinus Torvalds  *	This function may sleep, and has the same return conditions as
1769e041c683SAlan Stern  *	blocking_notifier_chain_register.
17701da177e4SLinus Torvalds  */
17711da177e4SLinus Torvalds int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
17721da177e4SLinus Torvalds {
17731da177e4SLinus Torvalds 	int ret;
17741da177e4SLinus Torvalds 
1775d5aaffa9SDirk Brandewie 	if (cpufreq_disabled())
1776d5aaffa9SDirk Brandewie 		return -EINVAL;
1777d5aaffa9SDirk Brandewie 
177874212ca4SCesar Eduardo Barros 	WARN_ON(!init_cpufreq_transition_notifier_list_called);
177974212ca4SCesar Eduardo Barros 
17801da177e4SLinus Torvalds 	switch (list) {
17811da177e4SLinus Torvalds 	case CPUFREQ_TRANSITION_NOTIFIER:
1782b4dfdbb3SAlan Stern 		ret = srcu_notifier_chain_register(
1783e041c683SAlan Stern 				&cpufreq_transition_notifier_list, nb);
17841da177e4SLinus Torvalds 		break;
17851da177e4SLinus Torvalds 	case CPUFREQ_POLICY_NOTIFIER:
1786e041c683SAlan Stern 		ret = blocking_notifier_chain_register(
1787e041c683SAlan Stern 				&cpufreq_policy_notifier_list, nb);
17881da177e4SLinus Torvalds 		break;
17891da177e4SLinus Torvalds 	default:
17901da177e4SLinus Torvalds 		ret = -EINVAL;
17911da177e4SLinus Torvalds 	}
17921da177e4SLinus Torvalds 
17931da177e4SLinus Torvalds 	return ret;
17941da177e4SLinus Torvalds }
17951da177e4SLinus Torvalds EXPORT_SYMBOL(cpufreq_register_notifier);
17961da177e4SLinus Torvalds 
17971da177e4SLinus Torvalds /**
17981da177e4SLinus Torvalds  *	cpufreq_unregister_notifier - unregister a driver with cpufreq
17991da177e4SLinus Torvalds  *	@nb: notifier block to be unregistered
18001da177e4SLinus Torvalds  *	@list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
18011da177e4SLinus Torvalds  *
18021da177e4SLinus Torvalds  *	Remove a driver from the CPU frequency notifier list.
18031da177e4SLinus Torvalds  *
18041da177e4SLinus Torvalds  *	This function may sleep, and has the same return conditions as
1805e041c683SAlan Stern  *	blocking_notifier_chain_unregister.
18061da177e4SLinus Torvalds  */
18071da177e4SLinus Torvalds int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
18081da177e4SLinus Torvalds {
18091da177e4SLinus Torvalds 	int ret;
18101da177e4SLinus Torvalds 
1811d5aaffa9SDirk Brandewie 	if (cpufreq_disabled())
1812d5aaffa9SDirk Brandewie 		return -EINVAL;
1813d5aaffa9SDirk Brandewie 
18141da177e4SLinus Torvalds 	switch (list) {
18151da177e4SLinus Torvalds 	case CPUFREQ_TRANSITION_NOTIFIER:
1816b4dfdbb3SAlan Stern 		ret = srcu_notifier_chain_unregister(
1817e041c683SAlan Stern 				&cpufreq_transition_notifier_list, nb);
18181da177e4SLinus Torvalds 		break;
18191da177e4SLinus Torvalds 	case CPUFREQ_POLICY_NOTIFIER:
1820e041c683SAlan Stern 		ret = blocking_notifier_chain_unregister(
1821e041c683SAlan Stern 				&cpufreq_policy_notifier_list, nb);
18221da177e4SLinus Torvalds 		break;
18231da177e4SLinus Torvalds 	default:
18241da177e4SLinus Torvalds 		ret = -EINVAL;
18251da177e4SLinus Torvalds 	}
18261da177e4SLinus Torvalds 
18271da177e4SLinus Torvalds 	return ret;
18281da177e4SLinus Torvalds }
18291da177e4SLinus Torvalds EXPORT_SYMBOL(cpufreq_unregister_notifier);
18301da177e4SLinus Torvalds 
18311da177e4SLinus Torvalds 
18321da177e4SLinus Torvalds /*********************************************************************
18331da177e4SLinus Torvalds  *                              GOVERNORS                            *
18341da177e4SLinus Torvalds  *********************************************************************/
18351da177e4SLinus Torvalds 
18361c03a2d0SViresh Kumar /* Must set freqs->new to intermediate frequency */
18371c03a2d0SViresh Kumar static int __target_intermediate(struct cpufreq_policy *policy,
18381c03a2d0SViresh Kumar 				 struct cpufreq_freqs *freqs, int index)
18391c03a2d0SViresh Kumar {
18401c03a2d0SViresh Kumar 	int ret;
18411c03a2d0SViresh Kumar 
18421c03a2d0SViresh Kumar 	freqs->new = cpufreq_driver->get_intermediate(policy, index);
18431c03a2d0SViresh Kumar 
18441c03a2d0SViresh Kumar 	/* We don't need to switch to intermediate freq */
18451c03a2d0SViresh Kumar 	if (!freqs->new)
18461c03a2d0SViresh Kumar 		return 0;
18471c03a2d0SViresh Kumar 
18481c03a2d0SViresh Kumar 	pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
18491c03a2d0SViresh Kumar 		 __func__, policy->cpu, freqs->old, freqs->new);
18501c03a2d0SViresh Kumar 
18511c03a2d0SViresh Kumar 	cpufreq_freq_transition_begin(policy, freqs);
18521c03a2d0SViresh Kumar 	ret = cpufreq_driver->target_intermediate(policy, index);
18531c03a2d0SViresh Kumar 	cpufreq_freq_transition_end(policy, freqs, ret);
18541c03a2d0SViresh Kumar 
18551c03a2d0SViresh Kumar 	if (ret)
18561c03a2d0SViresh Kumar 		pr_err("%s: Failed to change to intermediate frequency: %d\n",
18571c03a2d0SViresh Kumar 		       __func__, ret);
18581c03a2d0SViresh Kumar 
18591c03a2d0SViresh Kumar 	return ret;
18601c03a2d0SViresh Kumar }
18611c03a2d0SViresh Kumar 
18628d65775dSViresh Kumar static int __target_index(struct cpufreq_policy *policy,
18638d65775dSViresh Kumar 			  struct cpufreq_frequency_table *freq_table, int index)
18648d65775dSViresh Kumar {
18651c03a2d0SViresh Kumar 	struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
18661c03a2d0SViresh Kumar 	unsigned int intermediate_freq = 0;
18678d65775dSViresh Kumar 	int retval = -EINVAL;
18688d65775dSViresh Kumar 	bool notify;
18698d65775dSViresh Kumar 
18708d65775dSViresh Kumar 	notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
18718d65775dSViresh Kumar 	if (notify) {
18721c03a2d0SViresh Kumar 		/* Handle switching to intermediate frequency */
18731c03a2d0SViresh Kumar 		if (cpufreq_driver->get_intermediate) {
18741c03a2d0SViresh Kumar 			retval = __target_intermediate(policy, &freqs, index);
18751c03a2d0SViresh Kumar 			if (retval)
18761c03a2d0SViresh Kumar 				return retval;
18778d65775dSViresh Kumar 
18781c03a2d0SViresh Kumar 			intermediate_freq = freqs.new;
18791c03a2d0SViresh Kumar 			/* Set old freq to intermediate */
18801c03a2d0SViresh Kumar 			if (intermediate_freq)
18811c03a2d0SViresh Kumar 				freqs.old = freqs.new;
18821c03a2d0SViresh Kumar 		}
18831c03a2d0SViresh Kumar 
18841c03a2d0SViresh Kumar 		freqs.new = freq_table[index].frequency;
18858d65775dSViresh Kumar 		pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
18868d65775dSViresh Kumar 			 __func__, policy->cpu, freqs.old, freqs.new);
18878d65775dSViresh Kumar 
18888d65775dSViresh Kumar 		cpufreq_freq_transition_begin(policy, &freqs);
18898d65775dSViresh Kumar 	}
18908d65775dSViresh Kumar 
18918d65775dSViresh Kumar 	retval = cpufreq_driver->target_index(policy, index);
18928d65775dSViresh Kumar 	if (retval)
18938d65775dSViresh Kumar 		pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
18948d65775dSViresh Kumar 		       retval);
18958d65775dSViresh Kumar 
18961c03a2d0SViresh Kumar 	if (notify) {
18978d65775dSViresh Kumar 		cpufreq_freq_transition_end(policy, &freqs, retval);
18988d65775dSViresh Kumar 
18991c03a2d0SViresh Kumar 		/*
19001c03a2d0SViresh Kumar 		 * Failed after setting to intermediate freq? Driver should have
19011c03a2d0SViresh Kumar 		 * reverted back to initial frequency and so should we. Check
19021c03a2d0SViresh Kumar 		 * here for intermediate_freq instead of get_intermediate, in
190358405af6SShailendra Verma 		 * case we haven't switched to intermediate freq at all.
19041c03a2d0SViresh Kumar 		 */
19051c03a2d0SViresh Kumar 		if (unlikely(retval && intermediate_freq)) {
19061c03a2d0SViresh Kumar 			freqs.old = intermediate_freq;
19071c03a2d0SViresh Kumar 			freqs.new = policy->restore_freq;
19081c03a2d0SViresh Kumar 			cpufreq_freq_transition_begin(policy, &freqs);
19091c03a2d0SViresh Kumar 			cpufreq_freq_transition_end(policy, &freqs, 0);
19101c03a2d0SViresh Kumar 		}
19111c03a2d0SViresh Kumar 	}
19121c03a2d0SViresh Kumar 
19138d65775dSViresh Kumar 	return retval;
19148d65775dSViresh Kumar }
19158d65775dSViresh Kumar 
19161da177e4SLinus Torvalds int __cpufreq_driver_target(struct cpufreq_policy *policy,
19171da177e4SLinus Torvalds 			    unsigned int target_freq,
19181da177e4SLinus Torvalds 			    unsigned int relation)
19191da177e4SLinus Torvalds {
19207249924eSViresh Kumar 	unsigned int old_target_freq = target_freq;
19218d65775dSViresh Kumar 	int retval = -EINVAL;
1922c32b6b8eSAshok Raj 
1923a7b422cdSKonrad Rzeszutek Wilk 	if (cpufreq_disabled())
1924a7b422cdSKonrad Rzeszutek Wilk 		return -ENODEV;
1925a7b422cdSKonrad Rzeszutek Wilk 
19267249924eSViresh Kumar 	/* Make sure that target_freq is within supported range */
19277249924eSViresh Kumar 	if (target_freq > policy->max)
19287249924eSViresh Kumar 		target_freq = policy->max;
19297249924eSViresh Kumar 	if (target_freq < policy->min)
19307249924eSViresh Kumar 		target_freq = policy->min;
19317249924eSViresh Kumar 
19327249924eSViresh Kumar 	pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
19337249924eSViresh Kumar 		 policy->cpu, target_freq, relation, old_target_freq);
19345a1c0228SViresh Kumar 
19359c0ebcf7SViresh Kumar 	/*
19369c0ebcf7SViresh Kumar 	 * This might look like a redundant call as we are checking it again
19379c0ebcf7SViresh Kumar 	 * after finding index. But it is left intentionally for cases where
19389c0ebcf7SViresh Kumar 	 * exactly same freq is called again and so we can save on few function
19399c0ebcf7SViresh Kumar 	 * calls.
19409c0ebcf7SViresh Kumar 	 */
19415a1c0228SViresh Kumar 	if (target_freq == policy->cur)
19425a1c0228SViresh Kumar 		return 0;
19435a1c0228SViresh Kumar 
19441c03a2d0SViresh Kumar 	/* Save last value to restore later on errors */
19451c03a2d0SViresh Kumar 	policy->restore_freq = policy->cur;
19461c03a2d0SViresh Kumar 
19471c3d85ddSRafael J. Wysocki 	if (cpufreq_driver->target)
19481c3d85ddSRafael J. Wysocki 		retval = cpufreq_driver->target(policy, target_freq, relation);
19499c0ebcf7SViresh Kumar 	else if (cpufreq_driver->target_index) {
19509c0ebcf7SViresh Kumar 		struct cpufreq_frequency_table *freq_table;
19519c0ebcf7SViresh Kumar 		int index;
195290d45d17SAshok Raj 
19539c0ebcf7SViresh Kumar 		freq_table = cpufreq_frequency_get_table(policy->cpu);
19549c0ebcf7SViresh Kumar 		if (unlikely(!freq_table)) {
19559c0ebcf7SViresh Kumar 			pr_err("%s: Unable to find freq_table\n", __func__);
19569c0ebcf7SViresh Kumar 			goto out;
19579c0ebcf7SViresh Kumar 		}
19589c0ebcf7SViresh Kumar 
19599c0ebcf7SViresh Kumar 		retval = cpufreq_frequency_table_target(policy, freq_table,
19609c0ebcf7SViresh Kumar 				target_freq, relation, &index);
19619c0ebcf7SViresh Kumar 		if (unlikely(retval)) {
19629c0ebcf7SViresh Kumar 			pr_err("%s: Unable to find matching freq\n", __func__);
19639c0ebcf7SViresh Kumar 			goto out;
19649c0ebcf7SViresh Kumar 		}
19659c0ebcf7SViresh Kumar 
1966d4019f0aSViresh Kumar 		if (freq_table[index].frequency == policy->cur) {
19679c0ebcf7SViresh Kumar 			retval = 0;
1968d4019f0aSViresh Kumar 			goto out;
1969d4019f0aSViresh Kumar 		}
1970d4019f0aSViresh Kumar 
19718d65775dSViresh Kumar 		retval = __target_index(policy, freq_table, index);
19729c0ebcf7SViresh Kumar 	}
19739c0ebcf7SViresh Kumar 
19749c0ebcf7SViresh Kumar out:
19751da177e4SLinus Torvalds 	return retval;
19761da177e4SLinus Torvalds }
19771da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
19781da177e4SLinus Torvalds 
19791da177e4SLinus Torvalds int cpufreq_driver_target(struct cpufreq_policy *policy,
19801da177e4SLinus Torvalds 			  unsigned int target_freq,
19811da177e4SLinus Torvalds 			  unsigned int relation)
19821da177e4SLinus Torvalds {
1983f1829e4aSJulia Lawall 	int ret = -EINVAL;
19841da177e4SLinus Torvalds 
1985ad7722daSviresh kumar 	down_write(&policy->rwsem);
19861da177e4SLinus Torvalds 
19871da177e4SLinus Torvalds 	ret = __cpufreq_driver_target(policy, target_freq, relation);
19881da177e4SLinus Torvalds 
1989ad7722daSviresh kumar 	up_write(&policy->rwsem);
19901da177e4SLinus Torvalds 
19911da177e4SLinus Torvalds 	return ret;
19921da177e4SLinus Torvalds }
19931da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(cpufreq_driver_target);
19941da177e4SLinus Torvalds 
1995e08f5f5bSGautham R Shenoy static int __cpufreq_governor(struct cpufreq_policy *policy,
1996e08f5f5bSGautham R Shenoy 					unsigned int event)
19971da177e4SLinus Torvalds {
1998cc993cabSDave Jones 	int ret;
19996afde10cSThomas Renninger 
20006afde10cSThomas Renninger 	/* Only must be defined when default governor is known to have latency
20016afde10cSThomas Renninger 	   restrictions, like e.g. conservative or ondemand.
20026afde10cSThomas Renninger 	   That this is the case is already ensured in Kconfig
20036afde10cSThomas Renninger 	*/
20046afde10cSThomas Renninger #ifdef CONFIG_CPU_FREQ_GOV_PERFORMANCE
20056afde10cSThomas Renninger 	struct cpufreq_governor *gov = &cpufreq_gov_performance;
20066afde10cSThomas Renninger #else
20076afde10cSThomas Renninger 	struct cpufreq_governor *gov = NULL;
20086afde10cSThomas Renninger #endif
20091c256245SThomas Renninger 
20102f0aea93SViresh Kumar 	/* Don't start any governor operations if we are entering suspend */
20112f0aea93SViresh Kumar 	if (cpufreq_suspended)
20122f0aea93SViresh Kumar 		return 0;
2013cb57720bSEthan Zhao 	/*
2014cb57720bSEthan Zhao 	 * Governor might not be initiated here if ACPI _PPC changed
2015cb57720bSEthan Zhao 	 * notification happened, so check it.
2016cb57720bSEthan Zhao 	 */
2017cb57720bSEthan Zhao 	if (!policy->governor)
2018cb57720bSEthan Zhao 		return -EINVAL;
20192f0aea93SViresh Kumar 
20201c256245SThomas Renninger 	if (policy->governor->max_transition_latency &&
20211c256245SThomas Renninger 	    policy->cpuinfo.transition_latency >
20221c256245SThomas Renninger 	    policy->governor->max_transition_latency) {
20236afde10cSThomas Renninger 		if (!gov)
20246afde10cSThomas Renninger 			return -EINVAL;
20256afde10cSThomas Renninger 		else {
2026e837f9b5SJoe Perches 			pr_warn("%s governor failed, too long transition latency of HW, fallback to %s governor\n",
2027e837f9b5SJoe Perches 				policy->governor->name, gov->name);
20281c256245SThomas Renninger 			policy->governor = gov;
20291c256245SThomas Renninger 		}
20306afde10cSThomas Renninger 	}
20311da177e4SLinus Torvalds 
2032fe492f3fSViresh Kumar 	if (event == CPUFREQ_GOV_POLICY_INIT)
20331da177e4SLinus Torvalds 		if (!try_module_get(policy->governor->owner))
20341da177e4SLinus Torvalds 			return -EINVAL;
20351da177e4SLinus Torvalds 
203663431f78SViresh Kumar 	pr_debug("%s: for CPU %u, event %u\n", __func__, policy->cpu, event);
203795731ebbSXiaoguang Chen 
203895731ebbSXiaoguang Chen 	mutex_lock(&cpufreq_governor_lock);
203956d07db2SSrivatsa S. Bhat 	if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
2040f73d3933SViresh Kumar 	    || (!policy->governor_enabled
2041f73d3933SViresh Kumar 	    && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
204295731ebbSXiaoguang Chen 		mutex_unlock(&cpufreq_governor_lock);
204395731ebbSXiaoguang Chen 		return -EBUSY;
204495731ebbSXiaoguang Chen 	}
204595731ebbSXiaoguang Chen 
204695731ebbSXiaoguang Chen 	if (event == CPUFREQ_GOV_STOP)
204795731ebbSXiaoguang Chen 		policy->governor_enabled = false;
204895731ebbSXiaoguang Chen 	else if (event == CPUFREQ_GOV_START)
204995731ebbSXiaoguang Chen 		policy->governor_enabled = true;
205095731ebbSXiaoguang Chen 
205195731ebbSXiaoguang Chen 	mutex_unlock(&cpufreq_governor_lock);
205295731ebbSXiaoguang Chen 
20531da177e4SLinus Torvalds 	ret = policy->governor->governor(policy, event);
20541da177e4SLinus Torvalds 
20554d5dcc42SViresh Kumar 	if (!ret) {
20564d5dcc42SViresh Kumar 		if (event == CPUFREQ_GOV_POLICY_INIT)
20578e53695fSViresh Kumar 			policy->governor->initialized++;
20584d5dcc42SViresh Kumar 		else if (event == CPUFREQ_GOV_POLICY_EXIT)
20598e53695fSViresh Kumar 			policy->governor->initialized--;
206095731ebbSXiaoguang Chen 	} else {
206195731ebbSXiaoguang Chen 		/* Restore original values */
206295731ebbSXiaoguang Chen 		mutex_lock(&cpufreq_governor_lock);
206395731ebbSXiaoguang Chen 		if (event == CPUFREQ_GOV_STOP)
206495731ebbSXiaoguang Chen 			policy->governor_enabled = true;
206595731ebbSXiaoguang Chen 		else if (event == CPUFREQ_GOV_START)
206695731ebbSXiaoguang Chen 			policy->governor_enabled = false;
206795731ebbSXiaoguang Chen 		mutex_unlock(&cpufreq_governor_lock);
20684d5dcc42SViresh Kumar 	}
2069b394058fSViresh Kumar 
2070fe492f3fSViresh Kumar 	if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
2071fe492f3fSViresh Kumar 			((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
20721da177e4SLinus Torvalds 		module_put(policy->governor->owner);
20731da177e4SLinus Torvalds 
20741da177e4SLinus Torvalds 	return ret;
20751da177e4SLinus Torvalds }
20761da177e4SLinus Torvalds 
20771da177e4SLinus Torvalds int cpufreq_register_governor(struct cpufreq_governor *governor)
20781da177e4SLinus Torvalds {
20793bcb09a3SJeremy Fitzhardinge 	int err;
20801da177e4SLinus Torvalds 
20811da177e4SLinus Torvalds 	if (!governor)
20821da177e4SLinus Torvalds 		return -EINVAL;
20831da177e4SLinus Torvalds 
2084a7b422cdSKonrad Rzeszutek Wilk 	if (cpufreq_disabled())
2085a7b422cdSKonrad Rzeszutek Wilk 		return -ENODEV;
2086a7b422cdSKonrad Rzeszutek Wilk 
20873fc54d37Sakpm@osdl.org 	mutex_lock(&cpufreq_governor_mutex);
20881da177e4SLinus Torvalds 
2089b394058fSViresh Kumar 	governor->initialized = 0;
20903bcb09a3SJeremy Fitzhardinge 	err = -EBUSY;
209142f91fa1SViresh Kumar 	if (!find_governor(governor->name)) {
20923bcb09a3SJeremy Fitzhardinge 		err = 0;
20931da177e4SLinus Torvalds 		list_add(&governor->governor_list, &cpufreq_governor_list);
20943bcb09a3SJeremy Fitzhardinge 	}
20951da177e4SLinus Torvalds 
20963fc54d37Sakpm@osdl.org 	mutex_unlock(&cpufreq_governor_mutex);
20973bcb09a3SJeremy Fitzhardinge 	return err;
20981da177e4SLinus Torvalds }
20991da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(cpufreq_register_governor);
21001da177e4SLinus Torvalds 
21011da177e4SLinus Torvalds void cpufreq_unregister_governor(struct cpufreq_governor *governor)
21021da177e4SLinus Torvalds {
21034573237bSViresh Kumar 	struct cpufreq_policy *policy;
21044573237bSViresh Kumar 	unsigned long flags;
210590e41bacSPrarit Bhargava 
21061da177e4SLinus Torvalds 	if (!governor)
21071da177e4SLinus Torvalds 		return;
21081da177e4SLinus Torvalds 
2109a7b422cdSKonrad Rzeszutek Wilk 	if (cpufreq_disabled())
2110a7b422cdSKonrad Rzeszutek Wilk 		return;
2111a7b422cdSKonrad Rzeszutek Wilk 
21124573237bSViresh Kumar 	/* clear last_governor for all inactive policies */
21134573237bSViresh Kumar 	read_lock_irqsave(&cpufreq_driver_lock, flags);
21144573237bSViresh Kumar 	for_each_inactive_policy(policy) {
211518bf3a12SViresh Kumar 		if (!strcmp(policy->last_governor, governor->name)) {
211618bf3a12SViresh Kumar 			policy->governor = NULL;
21174573237bSViresh Kumar 			strcpy(policy->last_governor, "\0");
211890e41bacSPrarit Bhargava 		}
211918bf3a12SViresh Kumar 	}
21204573237bSViresh Kumar 	read_unlock_irqrestore(&cpufreq_driver_lock, flags);
212190e41bacSPrarit Bhargava 
21223fc54d37Sakpm@osdl.org 	mutex_lock(&cpufreq_governor_mutex);
21231da177e4SLinus Torvalds 	list_del(&governor->governor_list);
21243fc54d37Sakpm@osdl.org 	mutex_unlock(&cpufreq_governor_mutex);
21251da177e4SLinus Torvalds 	return;
21261da177e4SLinus Torvalds }
21271da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
21281da177e4SLinus Torvalds 
21291da177e4SLinus Torvalds 
21301da177e4SLinus Torvalds /*********************************************************************
21311da177e4SLinus Torvalds  *                          POLICY INTERFACE                         *
21321da177e4SLinus Torvalds  *********************************************************************/
21331da177e4SLinus Torvalds 
21341da177e4SLinus Torvalds /**
21351da177e4SLinus Torvalds  * cpufreq_get_policy - get the current cpufreq_policy
213629464f28SDave Jones  * @policy: struct cpufreq_policy into which the current cpufreq_policy
213729464f28SDave Jones  *	is written
21381da177e4SLinus Torvalds  *
21391da177e4SLinus Torvalds  * Reads the current cpufreq policy.
21401da177e4SLinus Torvalds  */
21411da177e4SLinus Torvalds int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
21421da177e4SLinus Torvalds {
21431da177e4SLinus Torvalds 	struct cpufreq_policy *cpu_policy;
21441da177e4SLinus Torvalds 	if (!policy)
21451da177e4SLinus Torvalds 		return -EINVAL;
21461da177e4SLinus Torvalds 
21471da177e4SLinus Torvalds 	cpu_policy = cpufreq_cpu_get(cpu);
21481da177e4SLinus Torvalds 	if (!cpu_policy)
21491da177e4SLinus Torvalds 		return -EINVAL;
21501da177e4SLinus Torvalds 
2151d5b73cd8SViresh Kumar 	memcpy(policy, cpu_policy, sizeof(*policy));
21521da177e4SLinus Torvalds 
21531da177e4SLinus Torvalds 	cpufreq_cpu_put(cpu_policy);
21541da177e4SLinus Torvalds 	return 0;
21551da177e4SLinus Torvalds }
21561da177e4SLinus Torvalds EXPORT_SYMBOL(cpufreq_get_policy);
21571da177e4SLinus Torvalds 
2158153d7f3fSArjan van de Ven /*
2159037ce839SViresh Kumar  * policy : current policy.
2160037ce839SViresh Kumar  * new_policy: policy to be set.
2161153d7f3fSArjan van de Ven  */
2162037ce839SViresh Kumar static int cpufreq_set_policy(struct cpufreq_policy *policy,
21633a3e9e06SViresh Kumar 				struct cpufreq_policy *new_policy)
21641da177e4SLinus Torvalds {
2165d9a789c7SRafael J. Wysocki 	struct cpufreq_governor *old_gov;
2166d9a789c7SRafael J. Wysocki 	int ret;
21671da177e4SLinus Torvalds 
2168e837f9b5SJoe Perches 	pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
2169e837f9b5SJoe Perches 		 new_policy->cpu, new_policy->min, new_policy->max);
21701da177e4SLinus Torvalds 
2171d5b73cd8SViresh Kumar 	memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
21721da177e4SLinus Torvalds 
2173fba9573bSPan Xinhui 	/*
2174fba9573bSPan Xinhui 	* This check works well when we store new min/max freq attributes,
2175fba9573bSPan Xinhui 	* because new_policy is a copy of policy with one field updated.
2176fba9573bSPan Xinhui 	*/
2177fba9573bSPan Xinhui 	if (new_policy->min > new_policy->max)
2178d9a789c7SRafael J. Wysocki 		return -EINVAL;
21799c9a43edSMattia Dongili 
21801da177e4SLinus Torvalds 	/* verify the cpu speed can be set within this limit */
21813a3e9e06SViresh Kumar 	ret = cpufreq_driver->verify(new_policy);
21821da177e4SLinus Torvalds 	if (ret)
2183d9a789c7SRafael J. Wysocki 		return ret;
21841da177e4SLinus Torvalds 
21851da177e4SLinus Torvalds 	/* adjust if necessary - all reasons */
2186e041c683SAlan Stern 	blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
21873a3e9e06SViresh Kumar 			CPUFREQ_ADJUST, new_policy);
21881da177e4SLinus Torvalds 
2189bb176f7dSViresh Kumar 	/*
2190bb176f7dSViresh Kumar 	 * verify the cpu speed can be set within this limit, which might be
2191bb176f7dSViresh Kumar 	 * different to the first one
2192bb176f7dSViresh Kumar 	 */
21933a3e9e06SViresh Kumar 	ret = cpufreq_driver->verify(new_policy);
2194e041c683SAlan Stern 	if (ret)
2195d9a789c7SRafael J. Wysocki 		return ret;
21961da177e4SLinus Torvalds 
21971da177e4SLinus Torvalds 	/* notification of the new policy */
2198e041c683SAlan Stern 	blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
21993a3e9e06SViresh Kumar 			CPUFREQ_NOTIFY, new_policy);
22001da177e4SLinus Torvalds 
22013a3e9e06SViresh Kumar 	policy->min = new_policy->min;
22023a3e9e06SViresh Kumar 	policy->max = new_policy->max;
22031da177e4SLinus Torvalds 
22042d06d8c4SDominik Brodowski 	pr_debug("new min and max freqs are %u - %u kHz\n",
22053a3e9e06SViresh Kumar 		 policy->min, policy->max);
22061da177e4SLinus Torvalds 
22071c3d85ddSRafael J. Wysocki 	if (cpufreq_driver->setpolicy) {
22083a3e9e06SViresh Kumar 		policy->policy = new_policy->policy;
22092d06d8c4SDominik Brodowski 		pr_debug("setting range\n");
2210d9a789c7SRafael J. Wysocki 		return cpufreq_driver->setpolicy(new_policy);
2211d9a789c7SRafael J. Wysocki 	}
2212d9a789c7SRafael J. Wysocki 
2213d9a789c7SRafael J. Wysocki 	if (new_policy->governor == policy->governor)
2214d9a789c7SRafael J. Wysocki 		goto out;
22151da177e4SLinus Torvalds 
22162d06d8c4SDominik Brodowski 	pr_debug("governor switch\n");
22171da177e4SLinus Torvalds 
2218d9a789c7SRafael J. Wysocki 	/* save old, working values */
2219d9a789c7SRafael J. Wysocki 	old_gov = policy->governor;
22201da177e4SLinus Torvalds 	/* end old governor */
2221d9a789c7SRafael J. Wysocki 	if (old_gov) {
22224bc384aeSViresh Kumar 		ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
22234bc384aeSViresh Kumar 		if (ret) {
22244bc384aeSViresh Kumar 			/* This can happen due to race with other operations */
22254bc384aeSViresh Kumar 			pr_debug("%s: Failed to Stop Governor: %s (%d)\n",
22264bc384aeSViresh Kumar 				 __func__, old_gov->name, ret);
22274bc384aeSViresh Kumar 			return ret;
22284bc384aeSViresh Kumar 		}
22294bc384aeSViresh Kumar 
2230ad7722daSviresh kumar 		up_write(&policy->rwsem);
22314bc384aeSViresh Kumar 		ret = __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
2232ad7722daSviresh kumar 		down_write(&policy->rwsem);
22334bc384aeSViresh Kumar 
22344bc384aeSViresh Kumar 		if (ret) {
22354bc384aeSViresh Kumar 			pr_err("%s: Failed to Exit Governor: %s (%d)\n",
22364bc384aeSViresh Kumar 			       __func__, old_gov->name, ret);
22374bc384aeSViresh Kumar 			return ret;
22384bc384aeSViresh Kumar 		}
22397bd353a9SViresh Kumar 	}
22401da177e4SLinus Torvalds 
22411da177e4SLinus Torvalds 	/* start new governor */
22423a3e9e06SViresh Kumar 	policy->governor = new_policy->governor;
22434bc384aeSViresh Kumar 	ret = __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT);
22444bc384aeSViresh Kumar 	if (!ret) {
22454bc384aeSViresh Kumar 		ret = __cpufreq_governor(policy, CPUFREQ_GOV_START);
22464bc384aeSViresh Kumar 		if (!ret)
2247d9a789c7SRafael J. Wysocki 			goto out;
2248d9a789c7SRafael J. Wysocki 
2249ad7722daSviresh kumar 		up_write(&policy->rwsem);
2250d9a789c7SRafael J. Wysocki 		__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
2251ad7722daSviresh kumar 		down_write(&policy->rwsem);
2252955ef483SViresh Kumar 	}
22537bd353a9SViresh Kumar 
22541da177e4SLinus Torvalds 	/* new governor failed, so re-start old one */
2255d9a789c7SRafael J. Wysocki 	pr_debug("starting governor %s failed\n", policy->governor->name);
22561da177e4SLinus Torvalds 	if (old_gov) {
22573a3e9e06SViresh Kumar 		policy->governor = old_gov;
22584bc384aeSViresh Kumar 		if (__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT))
22594bc384aeSViresh Kumar 			policy->governor = NULL;
22604bc384aeSViresh Kumar 		else
2261d9a789c7SRafael J. Wysocki 			__cpufreq_governor(policy, CPUFREQ_GOV_START);
22621da177e4SLinus Torvalds 	}
22631da177e4SLinus Torvalds 
22644bc384aeSViresh Kumar 	return ret;
2265d9a789c7SRafael J. Wysocki 
2266d9a789c7SRafael J. Wysocki  out:
2267d9a789c7SRafael J. Wysocki 	pr_debug("governor: change or update limits\n");
2268d9a789c7SRafael J. Wysocki 	return __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
22691da177e4SLinus Torvalds }
22701da177e4SLinus Torvalds 
22711da177e4SLinus Torvalds /**
22721da177e4SLinus Torvalds  *	cpufreq_update_policy - re-evaluate an existing cpufreq policy
22731da177e4SLinus Torvalds  *	@cpu: CPU which shall be re-evaluated
22741da177e4SLinus Torvalds  *
227525985edcSLucas De Marchi  *	Useful for policy notifiers which have different necessities
22761da177e4SLinus Torvalds  *	at different times.
22771da177e4SLinus Torvalds  */
22781da177e4SLinus Torvalds int cpufreq_update_policy(unsigned int cpu)
22791da177e4SLinus Torvalds {
22803a3e9e06SViresh Kumar 	struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
22813a3e9e06SViresh Kumar 	struct cpufreq_policy new_policy;
2282f1829e4aSJulia Lawall 	int ret;
22831da177e4SLinus Torvalds 
2284fefa8ff8SAaron Plattner 	if (!policy)
2285fefa8ff8SAaron Plattner 		return -ENODEV;
22861da177e4SLinus Torvalds 
2287ad7722daSviresh kumar 	down_write(&policy->rwsem);
22881da177e4SLinus Torvalds 
22892d06d8c4SDominik Brodowski 	pr_debug("updating policy for CPU %u\n", cpu);
2290d5b73cd8SViresh Kumar 	memcpy(&new_policy, policy, sizeof(*policy));
22913a3e9e06SViresh Kumar 	new_policy.min = policy->user_policy.min;
22923a3e9e06SViresh Kumar 	new_policy.max = policy->user_policy.max;
22931da177e4SLinus Torvalds 
2294bb176f7dSViresh Kumar 	/*
2295bb176f7dSViresh Kumar 	 * BIOS might change freq behind our back
2296bb176f7dSViresh Kumar 	 * -> ask driver for current freq and notify governors about a change
2297bb176f7dSViresh Kumar 	 */
22982ed99e39SRafael J. Wysocki 	if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
22993a3e9e06SViresh Kumar 		new_policy.cur = cpufreq_driver->get(cpu);
2300bd0fa9bbSViresh Kumar 		if (WARN_ON(!new_policy.cur)) {
2301bd0fa9bbSViresh Kumar 			ret = -EIO;
2302fefa8ff8SAaron Plattner 			goto unlock;
2303bd0fa9bbSViresh Kumar 		}
2304bd0fa9bbSViresh Kumar 
23053a3e9e06SViresh Kumar 		if (!policy->cur) {
2306e837f9b5SJoe Perches 			pr_debug("Driver did not initialize current freq\n");
23073a3e9e06SViresh Kumar 			policy->cur = new_policy.cur;
2308a85f7bd3SThomas Renninger 		} else {
23099c0ebcf7SViresh Kumar 			if (policy->cur != new_policy.cur && has_target())
2310a1e1dc41SViresh Kumar 				cpufreq_out_of_sync(policy, new_policy.cur);
23110961dd0dSThomas Renninger 		}
2312a85f7bd3SThomas Renninger 	}
23130961dd0dSThomas Renninger 
2314037ce839SViresh Kumar 	ret = cpufreq_set_policy(policy, &new_policy);
23151da177e4SLinus Torvalds 
2316fefa8ff8SAaron Plattner unlock:
2317ad7722daSviresh kumar 	up_write(&policy->rwsem);
23185a01f2e8SVenkatesh Pallipadi 
23193a3e9e06SViresh Kumar 	cpufreq_cpu_put(policy);
23201da177e4SLinus Torvalds 	return ret;
23211da177e4SLinus Torvalds }
23221da177e4SLinus Torvalds EXPORT_SYMBOL(cpufreq_update_policy);
23231da177e4SLinus Torvalds 
23242760984fSPaul Gortmaker static int cpufreq_cpu_callback(struct notifier_block *nfb,
2325c32b6b8eSAshok Raj 					unsigned long action, void *hcpu)
2326c32b6b8eSAshok Raj {
2327c32b6b8eSAshok Raj 	unsigned int cpu = (unsigned long)hcpu;
2328c32b6b8eSAshok Raj 
23295302c3fbSSrivatsa S. Bhat 	switch (action & ~CPU_TASKS_FROZEN) {
2330c32b6b8eSAshok Raj 	case CPU_ONLINE:
23310b275352SRafael J. Wysocki 		cpufreq_online(cpu);
2332c32b6b8eSAshok Raj 		break;
23335302c3fbSSrivatsa S. Bhat 
2334c32b6b8eSAshok Raj 	case CPU_DOWN_PREPARE:
233515c0b4d2SRafael J. Wysocki 		cpufreq_offline_prepare(cpu);
23361aee40acSSrivatsa S. Bhat 		break;
23371aee40acSSrivatsa S. Bhat 
23381aee40acSSrivatsa S. Bhat 	case CPU_POST_DEAD:
233915c0b4d2SRafael J. Wysocki 		cpufreq_offline_finish(cpu);
2340c32b6b8eSAshok Raj 		break;
23415302c3fbSSrivatsa S. Bhat 
23425a01f2e8SVenkatesh Pallipadi 	case CPU_DOWN_FAILED:
23430b275352SRafael J. Wysocki 		cpufreq_online(cpu);
2344c32b6b8eSAshok Raj 		break;
2345c32b6b8eSAshok Raj 	}
2346c32b6b8eSAshok Raj 	return NOTIFY_OK;
2347c32b6b8eSAshok Raj }
2348c32b6b8eSAshok Raj 
23499c36f746SNeal Buckendahl static struct notifier_block __refdata cpufreq_cpu_notifier = {
2350c32b6b8eSAshok Raj 	.notifier_call = cpufreq_cpu_callback,
2351c32b6b8eSAshok Raj };
23521da177e4SLinus Torvalds 
23531da177e4SLinus Torvalds /*********************************************************************
23546f19efc0SLukasz Majewski  *               BOOST						     *
23556f19efc0SLukasz Majewski  *********************************************************************/
23566f19efc0SLukasz Majewski static int cpufreq_boost_set_sw(int state)
23576f19efc0SLukasz Majewski {
23586f19efc0SLukasz Majewski 	struct cpufreq_frequency_table *freq_table;
23596f19efc0SLukasz Majewski 	struct cpufreq_policy *policy;
23606f19efc0SLukasz Majewski 	int ret = -EINVAL;
23616f19efc0SLukasz Majewski 
2362f963735aSViresh Kumar 	for_each_active_policy(policy) {
23636f19efc0SLukasz Majewski 		freq_table = cpufreq_frequency_get_table(policy->cpu);
23646f19efc0SLukasz Majewski 		if (freq_table) {
23656f19efc0SLukasz Majewski 			ret = cpufreq_frequency_table_cpuinfo(policy,
23666f19efc0SLukasz Majewski 							freq_table);
23676f19efc0SLukasz Majewski 			if (ret) {
23686f19efc0SLukasz Majewski 				pr_err("%s: Policy frequency update failed\n",
23696f19efc0SLukasz Majewski 				       __func__);
23706f19efc0SLukasz Majewski 				break;
23716f19efc0SLukasz Majewski 			}
23726f19efc0SLukasz Majewski 			policy->user_policy.max = policy->max;
23736f19efc0SLukasz Majewski 			__cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
23746f19efc0SLukasz Majewski 		}
23756f19efc0SLukasz Majewski 	}
23766f19efc0SLukasz Majewski 
23776f19efc0SLukasz Majewski 	return ret;
23786f19efc0SLukasz Majewski }
23796f19efc0SLukasz Majewski 
23806f19efc0SLukasz Majewski int cpufreq_boost_trigger_state(int state)
23816f19efc0SLukasz Majewski {
23826f19efc0SLukasz Majewski 	unsigned long flags;
23836f19efc0SLukasz Majewski 	int ret = 0;
23846f19efc0SLukasz Majewski 
23856f19efc0SLukasz Majewski 	if (cpufreq_driver->boost_enabled == state)
23866f19efc0SLukasz Majewski 		return 0;
23876f19efc0SLukasz Majewski 
23886f19efc0SLukasz Majewski 	write_lock_irqsave(&cpufreq_driver_lock, flags);
23896f19efc0SLukasz Majewski 	cpufreq_driver->boost_enabled = state;
23906f19efc0SLukasz Majewski 	write_unlock_irqrestore(&cpufreq_driver_lock, flags);
23916f19efc0SLukasz Majewski 
23926f19efc0SLukasz Majewski 	ret = cpufreq_driver->set_boost(state);
23936f19efc0SLukasz Majewski 	if (ret) {
23946f19efc0SLukasz Majewski 		write_lock_irqsave(&cpufreq_driver_lock, flags);
23956f19efc0SLukasz Majewski 		cpufreq_driver->boost_enabled = !state;
23966f19efc0SLukasz Majewski 		write_unlock_irqrestore(&cpufreq_driver_lock, flags);
23976f19efc0SLukasz Majewski 
2398e837f9b5SJoe Perches 		pr_err("%s: Cannot %s BOOST\n",
2399e837f9b5SJoe Perches 		       __func__, state ? "enable" : "disable");
24006f19efc0SLukasz Majewski 	}
24016f19efc0SLukasz Majewski 
24026f19efc0SLukasz Majewski 	return ret;
24036f19efc0SLukasz Majewski }
24046f19efc0SLukasz Majewski 
24056f19efc0SLukasz Majewski int cpufreq_boost_supported(void)
24066f19efc0SLukasz Majewski {
24076f19efc0SLukasz Majewski 	if (likely(cpufreq_driver))
24086f19efc0SLukasz Majewski 		return cpufreq_driver->boost_supported;
24096f19efc0SLukasz Majewski 
24106f19efc0SLukasz Majewski 	return 0;
24116f19efc0SLukasz Majewski }
24126f19efc0SLukasz Majewski EXPORT_SYMBOL_GPL(cpufreq_boost_supported);
24136f19efc0SLukasz Majewski 
241444139ed4SViresh Kumar static int create_boost_sysfs_file(void)
241544139ed4SViresh Kumar {
241644139ed4SViresh Kumar 	int ret;
241744139ed4SViresh Kumar 
241844139ed4SViresh Kumar 	if (!cpufreq_boost_supported())
241944139ed4SViresh Kumar 		return 0;
242044139ed4SViresh Kumar 
242144139ed4SViresh Kumar 	/*
242244139ed4SViresh Kumar 	 * Check if driver provides function to enable boost -
242344139ed4SViresh Kumar 	 * if not, use cpufreq_boost_set_sw as default
242444139ed4SViresh Kumar 	 */
242544139ed4SViresh Kumar 	if (!cpufreq_driver->set_boost)
242644139ed4SViresh Kumar 		cpufreq_driver->set_boost = cpufreq_boost_set_sw;
242744139ed4SViresh Kumar 
242844139ed4SViresh Kumar 	ret = cpufreq_sysfs_create_file(&boost.attr);
242944139ed4SViresh Kumar 	if (ret)
243044139ed4SViresh Kumar 		pr_err("%s: cannot register global BOOST sysfs file\n",
243144139ed4SViresh Kumar 		       __func__);
243244139ed4SViresh Kumar 
243344139ed4SViresh Kumar 	return ret;
243444139ed4SViresh Kumar }
243544139ed4SViresh Kumar 
243644139ed4SViresh Kumar static void remove_boost_sysfs_file(void)
243744139ed4SViresh Kumar {
243844139ed4SViresh Kumar 	if (cpufreq_boost_supported())
243944139ed4SViresh Kumar 		cpufreq_sysfs_remove_file(&boost.attr);
244044139ed4SViresh Kumar }
244144139ed4SViresh Kumar 
244244139ed4SViresh Kumar int cpufreq_enable_boost_support(void)
244344139ed4SViresh Kumar {
244444139ed4SViresh Kumar 	if (!cpufreq_driver)
244544139ed4SViresh Kumar 		return -EINVAL;
244644139ed4SViresh Kumar 
244744139ed4SViresh Kumar 	if (cpufreq_boost_supported())
244844139ed4SViresh Kumar 		return 0;
244944139ed4SViresh Kumar 
245044139ed4SViresh Kumar 	cpufreq_driver->boost_supported = true;
245144139ed4SViresh Kumar 
245244139ed4SViresh Kumar 	/* This will get removed on driver unregister */
245344139ed4SViresh Kumar 	return create_boost_sysfs_file();
245444139ed4SViresh Kumar }
245544139ed4SViresh Kumar EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
245644139ed4SViresh Kumar 
24576f19efc0SLukasz Majewski int cpufreq_boost_enabled(void)
24586f19efc0SLukasz Majewski {
24596f19efc0SLukasz Majewski 	return cpufreq_driver->boost_enabled;
24606f19efc0SLukasz Majewski }
24616f19efc0SLukasz Majewski EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
24626f19efc0SLukasz Majewski 
24636f19efc0SLukasz Majewski /*********************************************************************
24641da177e4SLinus Torvalds  *               REGISTER / UNREGISTER CPUFREQ DRIVER                *
24651da177e4SLinus Torvalds  *********************************************************************/
24661da177e4SLinus Torvalds 
24671da177e4SLinus Torvalds /**
24681da177e4SLinus Torvalds  * cpufreq_register_driver - register a CPU Frequency driver
24691da177e4SLinus Torvalds  * @driver_data: A struct cpufreq_driver containing the values#
24701da177e4SLinus Torvalds  * submitted by the CPU Frequency driver.
24711da177e4SLinus Torvalds  *
24721da177e4SLinus Torvalds  * Registers a CPU Frequency driver to this core code. This code
24731da177e4SLinus Torvalds  * returns zero on success, -EBUSY when another driver got here first
24741da177e4SLinus Torvalds  * (and isn't unregistered in the meantime).
24751da177e4SLinus Torvalds  *
24761da177e4SLinus Torvalds  */
2477221dee28SLinus Torvalds int cpufreq_register_driver(struct cpufreq_driver *driver_data)
24781da177e4SLinus Torvalds {
24791da177e4SLinus Torvalds 	unsigned long flags;
24801da177e4SLinus Torvalds 	int ret;
24811da177e4SLinus Torvalds 
2482a7b422cdSKonrad Rzeszutek Wilk 	if (cpufreq_disabled())
2483a7b422cdSKonrad Rzeszutek Wilk 		return -ENODEV;
2484a7b422cdSKonrad Rzeszutek Wilk 
24851da177e4SLinus Torvalds 	if (!driver_data || !driver_data->verify || !driver_data->init ||
24869c0ebcf7SViresh Kumar 	    !(driver_data->setpolicy || driver_data->target_index ||
24879832235fSRafael J. Wysocki 		    driver_data->target) ||
24889832235fSRafael J. Wysocki 	     (driver_data->setpolicy && (driver_data->target_index ||
24891c03a2d0SViresh Kumar 		    driver_data->target)) ||
24901c03a2d0SViresh Kumar 	     (!!driver_data->get_intermediate != !!driver_data->target_intermediate))
24911da177e4SLinus Torvalds 		return -EINVAL;
24921da177e4SLinus Torvalds 
24932d06d8c4SDominik Brodowski 	pr_debug("trying to register driver %s\n", driver_data->name);
24941da177e4SLinus Torvalds 
2495fdd320daSRafael J. Wysocki 	/* Protect against concurrent CPU online/offline. */
2496fdd320daSRafael J. Wysocki 	get_online_cpus();
2497fdd320daSRafael J. Wysocki 
24980d1857a1SNathan Zimmer 	write_lock_irqsave(&cpufreq_driver_lock, flags);
24991c3d85ddSRafael J. Wysocki 	if (cpufreq_driver) {
25000d1857a1SNathan Zimmer 		write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2501fdd320daSRafael J. Wysocki 		ret = -EEXIST;
2502fdd320daSRafael J. Wysocki 		goto out;
25031da177e4SLinus Torvalds 	}
25041c3d85ddSRafael J. Wysocki 	cpufreq_driver = driver_data;
25050d1857a1SNathan Zimmer 	write_unlock_irqrestore(&cpufreq_driver_lock, flags);
25061da177e4SLinus Torvalds 
2507bc68b7dfSViresh Kumar 	if (driver_data->setpolicy)
2508bc68b7dfSViresh Kumar 		driver_data->flags |= CPUFREQ_CONST_LOOPS;
2509bc68b7dfSViresh Kumar 
251044139ed4SViresh Kumar 	ret = create_boost_sysfs_file();
251144139ed4SViresh Kumar 	if (ret)
25126f19efc0SLukasz Majewski 		goto err_null_driver;
25136f19efc0SLukasz Majewski 
25148a25a2fdSKay Sievers 	ret = subsys_interface_register(&cpufreq_interface);
25158f5bc2abSJiri Slaby 	if (ret)
25166f19efc0SLukasz Majewski 		goto err_boost_unreg;
25171da177e4SLinus Torvalds 
2518ce1bcfe9SViresh Kumar 	if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
2519ce1bcfe9SViresh Kumar 	    list_empty(&cpufreq_policy_list)) {
25201da177e4SLinus Torvalds 		/* if all ->init() calls failed, unregister */
2521ce1bcfe9SViresh Kumar 		pr_debug("%s: No CPU initialized for driver %s\n", __func__,
2522e08f5f5bSGautham R Shenoy 			 driver_data->name);
25238a25a2fdSKay Sievers 		goto err_if_unreg;
25241da177e4SLinus Torvalds 	}
25251da177e4SLinus Torvalds 
252665edc68cSChandra Seetharaman 	register_hotcpu_notifier(&cpufreq_cpu_notifier);
25272d06d8c4SDominik Brodowski 	pr_debug("driver %s up and running\n", driver_data->name);
25281da177e4SLinus Torvalds 
2529fdd320daSRafael J. Wysocki out:
2530fdd320daSRafael J. Wysocki 	put_online_cpus();
2531fdd320daSRafael J. Wysocki 	return ret;
2532fdd320daSRafael J. Wysocki 
25338a25a2fdSKay Sievers err_if_unreg:
25348a25a2fdSKay Sievers 	subsys_interface_unregister(&cpufreq_interface);
25356f19efc0SLukasz Majewski err_boost_unreg:
253644139ed4SViresh Kumar 	remove_boost_sysfs_file();
25378f5bc2abSJiri Slaby err_null_driver:
25380d1857a1SNathan Zimmer 	write_lock_irqsave(&cpufreq_driver_lock, flags);
25391c3d85ddSRafael J. Wysocki 	cpufreq_driver = NULL;
25400d1857a1SNathan Zimmer 	write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2541fdd320daSRafael J. Wysocki 	goto out;
25421da177e4SLinus Torvalds }
25431da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(cpufreq_register_driver);
25441da177e4SLinus Torvalds 
25451da177e4SLinus Torvalds /**
25461da177e4SLinus Torvalds  * cpufreq_unregister_driver - unregister the current CPUFreq driver
25471da177e4SLinus Torvalds  *
25481da177e4SLinus Torvalds  * Unregister the current CPUFreq driver. Only call this if you have
25491da177e4SLinus Torvalds  * the right to do so, i.e. if you have succeeded in initialising before!
25501da177e4SLinus Torvalds  * Returns zero if successful, and -EINVAL if the cpufreq_driver is
25511da177e4SLinus Torvalds  * currently not initialised.
25521da177e4SLinus Torvalds  */
2553221dee28SLinus Torvalds int cpufreq_unregister_driver(struct cpufreq_driver *driver)
25541da177e4SLinus Torvalds {
25551da177e4SLinus Torvalds 	unsigned long flags;
25561da177e4SLinus Torvalds 
25571c3d85ddSRafael J. Wysocki 	if (!cpufreq_driver || (driver != cpufreq_driver))
25581da177e4SLinus Torvalds 		return -EINVAL;
25591da177e4SLinus Torvalds 
25602d06d8c4SDominik Brodowski 	pr_debug("unregistering driver %s\n", driver->name);
25611da177e4SLinus Torvalds 
2562454d3a25SSebastian Andrzej Siewior 	/* Protect against concurrent cpu hotplug */
2563454d3a25SSebastian Andrzej Siewior 	get_online_cpus();
25648a25a2fdSKay Sievers 	subsys_interface_unregister(&cpufreq_interface);
256544139ed4SViresh Kumar 	remove_boost_sysfs_file();
256665edc68cSChandra Seetharaman 	unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
25671da177e4SLinus Torvalds 
25680d1857a1SNathan Zimmer 	write_lock_irqsave(&cpufreq_driver_lock, flags);
25696eed9404SViresh Kumar 
25701c3d85ddSRafael J. Wysocki 	cpufreq_driver = NULL;
25716eed9404SViresh Kumar 
25720d1857a1SNathan Zimmer 	write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2573454d3a25SSebastian Andrzej Siewior 	put_online_cpus();
25741da177e4SLinus Torvalds 
25751da177e4SLinus Torvalds 	return 0;
25761da177e4SLinus Torvalds }
25771da177e4SLinus Torvalds EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
25785a01f2e8SVenkatesh Pallipadi 
257990de2a4aSDoug Anderson /*
258090de2a4aSDoug Anderson  * Stop cpufreq at shutdown to make sure it isn't holding any locks
258190de2a4aSDoug Anderson  * or mutexes when secondary CPUs are halted.
258290de2a4aSDoug Anderson  */
258390de2a4aSDoug Anderson static struct syscore_ops cpufreq_syscore_ops = {
258490de2a4aSDoug Anderson 	.shutdown = cpufreq_suspend,
258590de2a4aSDoug Anderson };
258690de2a4aSDoug Anderson 
25875a01f2e8SVenkatesh Pallipadi static int __init cpufreq_core_init(void)
25885a01f2e8SVenkatesh Pallipadi {
2589a7b422cdSKonrad Rzeszutek Wilk 	if (cpufreq_disabled())
2590a7b422cdSKonrad Rzeszutek Wilk 		return -ENODEV;
2591a7b422cdSKonrad Rzeszutek Wilk 
25922361be23SViresh Kumar 	cpufreq_global_kobject = kobject_create();
25938aa84ad8SThomas Renninger 	BUG_ON(!cpufreq_global_kobject);
25948aa84ad8SThomas Renninger 
259590de2a4aSDoug Anderson 	register_syscore_ops(&cpufreq_syscore_ops);
259690de2a4aSDoug Anderson 
25975a01f2e8SVenkatesh Pallipadi 	return 0;
25985a01f2e8SVenkatesh Pallipadi }
25995a01f2e8SVenkatesh Pallipadi core_initcall(cpufreq_core_init);
2600