cpufreq.c 65.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 *  linux/drivers/cpufreq/cpufreq.c
 *
 *  Copyright (C) 2001 Russell King
 *            (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
6
 *            (C) 2013 Viresh Kumar <viresh.kumar@linaro.org>
L
Linus Torvalds 已提交
7
 *
8
 *  Oct 2005 - Ashok Raj <ashok.raj@intel.com>
9
 *	Added handling for CPU hotplug
10 11
 *  Feb 2006 - Jacob Shin <jacob.shin@amd.com>
 *	Fix handling for CPU hotplug -- affected CPUs
12
 *
L
Linus Torvalds 已提交
13 14 15 16 17
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

V
Viresh Kumar 已提交
18 19
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

20
#include <linux/cpu.h>
L
Linus Torvalds 已提交
21 22 23
#include <linux/cpufreq.h>
#include <linux/delay.h>
#include <linux/device.h>
24 25 26
#include <linux/init.h>
#include <linux/kernel_stat.h>
#include <linux/module.h>
27
#include <linux/mutex.h>
28
#include <linux/slab.h>
29
#include <linux/suspend.h>
30
#include <linux/syscore_ops.h>
31
#include <linux/tick.h>
32 33
#include <trace/events/power.h>

V
Viresh Kumar 已提交
34
static LIST_HEAD(cpufreq_policy_list);
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

static inline bool policy_is_inactive(struct cpufreq_policy *policy)
{
	return cpumask_empty(policy->cpus);
}

static bool suitable_policy(struct cpufreq_policy *policy, bool active)
{
	return active == !policy_is_inactive(policy);
}

/* Finds Next Acive/Inactive policy */
static struct cpufreq_policy *next_policy(struct cpufreq_policy *policy,
					  bool active)
{
	do {
		/* No more policies in the list */
52
		if (list_is_last(&policy->policy_list, &cpufreq_policy_list))
53
			return NULL;
54 55

		policy = list_next_entry(policy, policy_list);
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
	} while (!suitable_policy(policy, active));

	return policy;
}

static struct cpufreq_policy *first_policy(bool active)
{
	struct cpufreq_policy *policy;

	/* No policies in the list */
	if (list_empty(&cpufreq_policy_list))
		return NULL;

	policy = list_first_entry(&cpufreq_policy_list, typeof(*policy),
				  policy_list);

	if (!suitable_policy(policy, active))
		policy = next_policy(policy, active);

	return policy;
}

/* Macros to iterate over CPU policies */
#define for_each_suitable_policy(__policy, __active)	\
	for (__policy = first_policy(__active);		\
	     __policy;					\
	     __policy = next_policy(__policy, __active))

#define for_each_active_policy(__policy)		\
	for_each_suitable_policy(__policy, true)
#define for_each_inactive_policy(__policy)		\
	for_each_suitable_policy(__policy, false)

#define for_each_policy(__policy)			\
V
Viresh Kumar 已提交
90 91
	list_for_each_entry(__policy, &cpufreq_policy_list, policy_list)

92 93 94 95 96
/* Iterate over governors */
static LIST_HEAD(cpufreq_governor_list);
#define for_each_governor(__governor)				\
	list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)

L
Linus Torvalds 已提交
97
/**
D
Dave Jones 已提交
98
 * The "cpufreq driver" - the arch- or hardware-dependent low
L
Linus Torvalds 已提交
99 100 101
 * level driver of CPUFreq support, and its spinlock. This lock
 * also protects the cpufreq_cpu_data array.
 */
102
static struct cpufreq_driver *cpufreq_driver;
103
static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
104
static DEFINE_RWLOCK(cpufreq_driver_lock);
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149

static DEFINE_PER_CPU(struct update_util_data *, cpufreq_update_util_data);

/**
 * cpufreq_set_update_util_data - Populate the CPU's update_util_data pointer.
 * @cpu: The CPU to set the pointer for.
 * @data: New pointer value.
 *
 * Set and publish the update_util_data pointer for the given CPU.  That pointer
 * points to a struct update_util_data object containing a callback function
 * to call from cpufreq_update_util().  That function will be called from an RCU
 * read-side critical section, so it must not sleep.
 *
 * Callers must use RCU callbacks to free any memory that might be accessed
 * via the old update_util_data pointer or invoke synchronize_rcu() right after
 * this function to avoid use-after-free.
 */
void cpufreq_set_update_util_data(int cpu, struct update_util_data *data)
{
	rcu_assign_pointer(per_cpu(cpufreq_update_util_data, cpu), data);
}
EXPORT_SYMBOL_GPL(cpufreq_set_update_util_data);

/**
 * cpufreq_update_util - Take a note about CPU utilization changes.
 * @time: Current time.
 * @util: Current utilization.
 * @max: Utilization ceiling.
 *
 * This function is called by the scheduler on every invocation of
 * update_load_avg() on the CPU whose utilization is being updated.
 */
void cpufreq_update_util(u64 time, unsigned long util, unsigned long max)
{
	struct update_util_data *data;

	rcu_read_lock();

	data = rcu_dereference(*this_cpu_ptr(&cpufreq_update_util_data));
	if (data && data->func)
		data->func(data, time, util, max);

	rcu_read_unlock();
}

150
DEFINE_MUTEX(cpufreq_governor_lock);
151

152 153
/* Flag to suspend/resume CPUFreq governors */
static bool cpufreq_suspended;
L
Linus Torvalds 已提交
154

155 156 157 158 159
static inline bool has_target(void)
{
	return cpufreq_driver->target_index || cpufreq_driver->target;
}

L
Linus Torvalds 已提交
160
/* internal prototypes */
161 162
static int __cpufreq_governor(struct cpufreq_policy *policy,
		unsigned int event);
163
static unsigned int __cpufreq_get(struct cpufreq_policy *policy);
164
static void handle_update(struct work_struct *work);
L
Linus Torvalds 已提交
165 166

/**
167 168
 * Two notifier lists: the "policy" list is involved in the
 * validation process for a new CPU frequency policy; the
L
Linus Torvalds 已提交
169 170 171 172
 * "transition" list for kernel code that needs to handle
 * changes to devices when the CPU clock speed changes.
 * The mutex locks both lists.
 */
173
static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
174
static struct srcu_notifier_head cpufreq_transition_notifier_list;
L
Linus Torvalds 已提交
175

176
static bool init_cpufreq_transition_notifier_list_called;
177 178 179
static int __init init_cpufreq_transition_notifier_list(void)
{
	srcu_init_notifier_head(&cpufreq_transition_notifier_list);
180
	init_cpufreq_transition_notifier_list_called = true;
181 182
	return 0;
}
183
pure_initcall(init_cpufreq_transition_notifier_list);
L
Linus Torvalds 已提交
184

185
static int off __read_mostly;
186
static int cpufreq_disabled(void)
187 188 189 190 191 192 193
{
	return off;
}
void disable_cpufreq(void)
{
	off = 1;
}
194
static DEFINE_MUTEX(cpufreq_governor_mutex);
L
Linus Torvalds 已提交
195

196 197
bool have_governor_per_policy(void)
{
198
	return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
199
}
200
EXPORT_SYMBOL_GPL(have_governor_per_policy);
201

202 203 204 205 206 207 208 209 210
struct kobject *get_governor_parent_kobj(struct cpufreq_policy *policy)
{
	if (have_governor_per_policy())
		return &policy->kobj;
	else
		return cpufreq_global_kobject;
}
EXPORT_SYMBOL_GPL(get_governor_parent_kobj);

211 212 213 214 215 216 217 218 219
struct cpufreq_frequency_table *cpufreq_frequency_get_table(unsigned int cpu)
{
	struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);

	return policy && !policy_is_inactive(policy) ?
		policy->freq_table : NULL;
}
EXPORT_SYMBOL_GPL(cpufreq_frequency_get_table);

220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
{
	u64 idle_time;
	u64 cur_wall_time;
	u64 busy_time;

	cur_wall_time = jiffies64_to_cputime64(get_jiffies_64());

	busy_time = kcpustat_cpu(cpu).cpustat[CPUTIME_USER];
	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SYSTEM];
	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_IRQ];
	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_SOFTIRQ];
	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_STEAL];
	busy_time += kcpustat_cpu(cpu).cpustat[CPUTIME_NICE];

	idle_time = cur_wall_time - busy_time;
	if (wall)
		*wall = cputime_to_usecs(cur_wall_time);

	return cputime_to_usecs(idle_time);
}

u64 get_cpu_idle_time(unsigned int cpu, u64 *wall, int io_busy)
{
	u64 idle_time = get_cpu_idle_time_us(cpu, io_busy ? wall : NULL);

	if (idle_time == -1ULL)
		return get_cpu_idle_time_jiffy(cpu, wall);
	else if (!io_busy)
		idle_time += get_cpu_iowait_time_us(cpu, wall);

	return idle_time;
}
EXPORT_SYMBOL_GPL(get_cpu_idle_time);

255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
/*
 * This is a generic cpufreq init() routine which can be used by cpufreq
 * drivers of SMP systems. It will do following:
 * - validate & show freq table passed
 * - set policies transition latency
 * - policy->cpus with all possible CPUs
 */
int cpufreq_generic_init(struct cpufreq_policy *policy,
		struct cpufreq_frequency_table *table,
		unsigned int transition_latency)
{
	int ret;

	ret = cpufreq_table_validate_and_show(policy, table);
	if (ret) {
		pr_err("%s: invalid frequency table: %d\n", __func__, ret);
		return ret;
	}

	policy->cpuinfo.transition_latency = transition_latency;

	/*
277
	 * The driver only supports the SMP configuration where all processors
278 279 280 281 282 283 284 285
	 * share the clock and voltage and clock.
	 */
	cpumask_setall(policy->cpus);

	return 0;
}
EXPORT_SYMBOL_GPL(cpufreq_generic_init);

286
struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
287 288 289
{
	struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);

290 291
	return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
}
292
EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
293 294 295 296 297

unsigned int cpufreq_generic_get(unsigned int cpu)
{
	struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);

298
	if (!policy || IS_ERR(policy->clk)) {
299 300
		pr_err("%s: No %s associated to cpu: %d\n",
		       __func__, policy ? "clk" : "policy", cpu);
301 302 303 304 305 306 307
		return 0;
	}

	return clk_get_rate(policy->clk) / 1000;
}
EXPORT_SYMBOL_GPL(cpufreq_generic_get);

308 309 310 311 312 313 314 315 316 317 318 319 320
/**
 * cpufreq_cpu_get: returns policy for a cpu and marks it busy.
 *
 * @cpu: cpu to find policy for.
 *
 * This returns policy for 'cpu', returns NULL if it doesn't exist.
 * It also increments the kobject reference count to mark it busy and so would
 * require a corresponding call to cpufreq_cpu_put() to decrement it back.
 * If corresponding call cpufreq_cpu_put() isn't made, the policy wouldn't be
 * freed as that depends on the kobj count.
 *
 * Return: A valid policy on success, otherwise NULL on failure.
 */
321
struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
L
Linus Torvalds 已提交
322
{
323
	struct cpufreq_policy *policy = NULL;
L
Linus Torvalds 已提交
324 325
	unsigned long flags;

326
	if (WARN_ON(cpu >= nr_cpu_ids))
327 328
		return NULL;

L
Linus Torvalds 已提交
329
	/* get the cpufreq driver */
330
	read_lock_irqsave(&cpufreq_driver_lock, flags);
L
Linus Torvalds 已提交
331

332 333
	if (cpufreq_driver) {
		/* get the CPU */
334
		policy = cpufreq_cpu_get_raw(cpu);
335 336 337
		if (policy)
			kobject_get(&policy->kobj);
	}
L
Linus Torvalds 已提交
338

339
	read_unlock_irqrestore(&cpufreq_driver_lock, flags);
L
Linus Torvalds 已提交
340

341
	return policy;
342
}
L
Linus Torvalds 已提交
343 344
EXPORT_SYMBOL_GPL(cpufreq_cpu_get);

345 346 347 348 349 350 351 352
/**
 * cpufreq_cpu_put: Decrements the usage count of a policy
 *
 * @policy: policy earlier returned by cpufreq_cpu_get().
 *
 * This decrements the kobject reference count incremented earlier by calling
 * cpufreq_cpu_get().
 */
353
void cpufreq_cpu_put(struct cpufreq_policy *policy)
L
Linus Torvalds 已提交
354
{
355
	kobject_put(&policy->kobj);
L
Linus Torvalds 已提交
356 357 358 359 360 361 362 363 364 365 366 367
}
EXPORT_SYMBOL_GPL(cpufreq_cpu_put);

/*********************************************************************
 *            EXTERNALLY AFFECTING FREQUENCY CHANGES                 *
 *********************************************************************/

/**
 * adjust_jiffies - adjust the system "loops_per_jiffy"
 *
 * This function alters the system "loops_per_jiffy" for the clock
 * speed change. Note that loops_per_jiffy cannot be updated on SMP
368
 * systems as each CPU might be scaled differently. So, use the arch
L
Linus Torvalds 已提交
369 370
 * per-CPU loops_per_jiffy value wherever possible.
 */
371
static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
L
Linus Torvalds 已提交
372
{
373 374 375 376
#ifndef CONFIG_SMP
	static unsigned long l_p_j_ref;
	static unsigned int l_p_j_ref_freq;

L
Linus Torvalds 已提交
377 378 379 380 381 382
	if (ci->flags & CPUFREQ_CONST_LOOPS)
		return;

	if (!l_p_j_ref_freq) {
		l_p_j_ref = loops_per_jiffy;
		l_p_j_ref_freq = ci->old;
383 384
		pr_debug("saving %lu as reference value for loops_per_jiffy; freq is %u kHz\n",
			 l_p_j_ref, l_p_j_ref_freq);
L
Linus Torvalds 已提交
385
	}
386
	if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
387 388
		loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
								ci->new);
389 390
		pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
			 loops_per_jiffy, ci->new);
L
Linus Torvalds 已提交
391 392
	}
#endif
393
}
L
Linus Torvalds 已提交
394

395
static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
396
		struct cpufreq_freqs *freqs, unsigned int state)
L
Linus Torvalds 已提交
397 398 399
{
	BUG_ON(irqs_disabled());

400 401 402
	if (cpufreq_disabled())
		return;

403
	freqs->flags = cpufreq_driver->flags;
404
	pr_debug("notification %u of frequency transition to %u kHz\n",
405
		 state, freqs->new);
L
Linus Torvalds 已提交
406 407

	switch (state) {
408

L
Linus Torvalds 已提交
409
	case CPUFREQ_PRECHANGE:
410
		/* detect if the driver reported a value as "old frequency"
411 412
		 * which is not equal to what the cpufreq core thinks is
		 * "old frequency".
L
Linus Torvalds 已提交
413
		 */
414
		if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
415 416
			if ((policy) && (policy->cpu == freqs->cpu) &&
			    (policy->cur) && (policy->cur != freqs->old)) {
417 418
				pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
					 freqs->old, policy->cur);
419
				freqs->old = policy->cur;
L
Linus Torvalds 已提交
420 421
			}
		}
422
		srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
423
				CPUFREQ_PRECHANGE, freqs);
L
Linus Torvalds 已提交
424 425
		adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
		break;
426

L
Linus Torvalds 已提交
427 428
	case CPUFREQ_POSTCHANGE:
		adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
429 430
		pr_debug("FREQ: %lu - CPU: %lu\n",
			 (unsigned long)freqs->new, (unsigned long)freqs->cpu);
431
		trace_cpu_frequency(freqs->new, freqs->cpu);
432
		srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
433
				CPUFREQ_POSTCHANGE, freqs);
434 435
		if (likely(policy) && likely(policy->cpu == freqs->cpu))
			policy->cur = freqs->new;
L
Linus Torvalds 已提交
436 437 438
		break;
	}
}
439

440 441 442 443 444 445 446 447
/**
 * cpufreq_notify_transition - call notifier chain and adjust_jiffies
 * on frequency transition.
 *
 * This function calls the transition notifiers and the "adjust_jiffies"
 * function. It is called twice on all CPU frequency changes that have
 * external effects.
 */
448
static void cpufreq_notify_transition(struct cpufreq_policy *policy,
449 450 451 452 453
		struct cpufreq_freqs *freqs, unsigned int state)
{
	for_each_cpu(freqs->cpu, policy->cpus)
		__cpufreq_notify_transition(policy, freqs, state);
}
L
Linus Torvalds 已提交
454

455
/* Do post notifications when there are chances that transition has failed */
456
static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
457 458 459 460 461 462 463 464 465 466 467
		struct cpufreq_freqs *freqs, int transition_failed)
{
	cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
	if (!transition_failed)
		return;

	swap(freqs->old, freqs->new);
	cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
	cpufreq_notify_transition(policy, freqs, CPUFREQ_POSTCHANGE);
}

468 469 470
void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
		struct cpufreq_freqs *freqs)
{
471 472 473 474 475 476 477 478 479 480 481 482

	/*
	 * Catch double invocations of _begin() which lead to self-deadlock.
	 * ASYNC_NOTIFICATION drivers are left out because the cpufreq core
	 * doesn't invoke _begin() on their behalf, and hence the chances of
	 * double invocations are very low. Moreover, there are scenarios
	 * where these checks can emit false-positive warnings in these
	 * drivers; so we avoid that by skipping them altogether.
	 */
	WARN_ON(!(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION)
				&& current == policy->transition_task);

483 484 485 486 487 488 489 490 491 492 493
wait:
	wait_event(policy->transition_wait, !policy->transition_ongoing);

	spin_lock(&policy->transition_lock);

	if (unlikely(policy->transition_ongoing)) {
		spin_unlock(&policy->transition_lock);
		goto wait;
	}

	policy->transition_ongoing = true;
494
	policy->transition_task = current;
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510

	spin_unlock(&policy->transition_lock);

	cpufreq_notify_transition(policy, freqs, CPUFREQ_PRECHANGE);
}
EXPORT_SYMBOL_GPL(cpufreq_freq_transition_begin);

void cpufreq_freq_transition_end(struct cpufreq_policy *policy,
		struct cpufreq_freqs *freqs, int transition_failed)
{
	if (unlikely(WARN_ON(!policy->transition_ongoing)))
		return;

	cpufreq_notify_post_transition(policy, freqs, transition_failed);

	policy->transition_ongoing = false;
511
	policy->transition_task = NULL;
512 513 514 515 516

	wake_up(&policy->transition_wait);
}
EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);

L
Linus Torvalds 已提交
517 518 519 520

/*********************************************************************
 *                          SYSFS INTERFACE                          *
 *********************************************************************/
521
static ssize_t show_boost(struct kobject *kobj,
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
				 struct attribute *attr, char *buf)
{
	return sprintf(buf, "%d\n", cpufreq_driver->boost_enabled);
}

static ssize_t store_boost(struct kobject *kobj, struct attribute *attr,
				  const char *buf, size_t count)
{
	int ret, enable;

	ret = sscanf(buf, "%d", &enable);
	if (ret != 1 || enable < 0 || enable > 1)
		return -EINVAL;

	if (cpufreq_boost_trigger_state(enable)) {
537 538
		pr_err("%s: Cannot %s BOOST!\n",
		       __func__, enable ? "enable" : "disable");
539 540 541
		return -EINVAL;
	}

542 543
	pr_debug("%s: cpufreq BOOST %s\n",
		 __func__, enable ? "enabled" : "disabled");
544 545 546 547

	return count;
}
define_one_global_rw(boost);
L
Linus Torvalds 已提交
548

549
static struct cpufreq_governor *find_governor(const char *str_governor)
550 551 552
{
	struct cpufreq_governor *t;

553
	for_each_governor(t)
554
		if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
555 556 557 558 559
			return t;

	return NULL;
}

L
Linus Torvalds 已提交
560 561 562
/**
 * cpufreq_parse_governor - parse a governor string
 */
D
Dave Jones 已提交
563
static int cpufreq_parse_governor(char *str_governor, unsigned int *policy,
L
Linus Torvalds 已提交
564 565
				struct cpufreq_governor **governor)
{
566
	int err = -EINVAL;
567 568

	if (cpufreq_driver->setpolicy) {
569
		if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
L
Linus Torvalds 已提交
570
			*policy = CPUFREQ_POLICY_PERFORMANCE;
571
			err = 0;
572
		} else if (!strncasecmp(str_governor, "powersave",
573
						CPUFREQ_NAME_LEN)) {
L
Linus Torvalds 已提交
574
			*policy = CPUFREQ_POLICY_POWERSAVE;
575
			err = 0;
L
Linus Torvalds 已提交
576
		}
577
	} else {
L
Linus Torvalds 已提交
578
		struct cpufreq_governor *t;
579

580
		mutex_lock(&cpufreq_governor_mutex);
581

582
		t = find_governor(str_governor);
583

584
		if (t == NULL) {
585
			int ret;
586

587 588 589
			mutex_unlock(&cpufreq_governor_mutex);
			ret = request_module("cpufreq_%s", str_governor);
			mutex_lock(&cpufreq_governor_mutex);
590

591
			if (ret == 0)
592
				t = find_governor(str_governor);
593 594
		}

595 596 597
		if (t != NULL) {
			*governor = t;
			err = 0;
L
Linus Torvalds 已提交
598
		}
599

600
		mutex_unlock(&cpufreq_governor_mutex);
L
Linus Torvalds 已提交
601
	}
602
	return err;
L
Linus Torvalds 已提交
603 604 605
}

/**
606 607
 * cpufreq_per_cpu_attr_read() / show_##file_name() -
 * print out cpufreq information
L
Linus Torvalds 已提交
608 609 610 611 612
 *
 * Write out information from cpufreq_driver->policy[cpu]; object must be
 * "unsigned int".
 */

613 614
#define show_one(file_name, object)			\
static ssize_t show_##file_name				\
D
Dave Jones 已提交
615
(struct cpufreq_policy *policy, char *buf)		\
616
{							\
617
	return sprintf(buf, "%u\n", policy->object);	\
L
Linus Torvalds 已提交
618 619 620 621
}

show_one(cpuinfo_min_freq, cpuinfo.min_freq);
show_one(cpuinfo_max_freq, cpuinfo.max_freq);
622
show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
L
Linus Torvalds 已提交
623 624
show_one(scaling_min_freq, min);
show_one(scaling_max_freq, max);
625

626
static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
627 628 629 630 631 632 633 634 635
{
	ssize_t ret;

	if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
		ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
	else
		ret = sprintf(buf, "%u\n", policy->cur);
	return ret;
}
L
Linus Torvalds 已提交
636

637
static int cpufreq_set_policy(struct cpufreq_policy *policy,
638
				struct cpufreq_policy *new_policy);
639

L
Linus Torvalds 已提交
640 641 642 643 644
/**
 * cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
 */
#define store_one(file_name, object)			\
static ssize_t store_##file_name					\
D
Dave Jones 已提交
645
(struct cpufreq_policy *policy, const char *buf, size_t count)		\
L
Linus Torvalds 已提交
646
{									\
647
	int ret, temp;							\
L
Linus Torvalds 已提交
648 649
	struct cpufreq_policy new_policy;				\
									\
650
	memcpy(&new_policy, policy, sizeof(*policy));			\
L
Linus Torvalds 已提交
651
									\
652
	ret = sscanf(buf, "%u", &new_policy.object);			\
L
Linus Torvalds 已提交
653 654 655
	if (ret != 1)							\
		return -EINVAL;						\
									\
656
	temp = new_policy.object;					\
657
	ret = cpufreq_set_policy(policy, &new_policy);		\
658 659
	if (!ret)							\
		policy->user_policy.object = temp;			\
L
Linus Torvalds 已提交
660 661 662 663
									\
	return ret ? ret : count;					\
}

664 665
store_one(scaling_min_freq, min);
store_one(scaling_max_freq, max);
L
Linus Torvalds 已提交
666 667 668 669

/**
 * show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
 */
D
Dave Jones 已提交
670 671
static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
					char *buf)
L
Linus Torvalds 已提交
672
{
673
	unsigned int cur_freq = __cpufreq_get(policy);
L
Linus Torvalds 已提交
674 675 676 677 678 679 680 681
	if (!cur_freq)
		return sprintf(buf, "<unknown>");
	return sprintf(buf, "%u\n", cur_freq);
}

/**
 * show_scaling_governor - show the current policy for the specified CPU
 */
D
Dave Jones 已提交
682
static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
L
Linus Torvalds 已提交
683
{
684
	if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
L
Linus Torvalds 已提交
685 686 687 688
		return sprintf(buf, "powersave\n");
	else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
		return sprintf(buf, "performance\n");
	else if (policy->governor)
689
		return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
690
				policy->governor->name);
L
Linus Torvalds 已提交
691 692 693 694 695 696
	return -EINVAL;
}

/**
 * store_scaling_governor - store policy for the specified CPU
 */
D
Dave Jones 已提交
697 698
static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
					const char *buf, size_t count)
L
Linus Torvalds 已提交
699
{
700
	int ret;
L
Linus Torvalds 已提交
701 702 703
	char	str_governor[16];
	struct cpufreq_policy new_policy;

704
	memcpy(&new_policy, policy, sizeof(*policy));
L
Linus Torvalds 已提交
705

706
	ret = sscanf(buf, "%15s", str_governor);
L
Linus Torvalds 已提交
707 708 709
	if (ret != 1)
		return -EINVAL;

710 711
	if (cpufreq_parse_governor(str_governor, &new_policy.policy,
						&new_policy.governor))
L
Linus Torvalds 已提交
712 713
		return -EINVAL;

714
	ret = cpufreq_set_policy(policy, &new_policy);
715
	return ret ? ret : count;
L
Linus Torvalds 已提交
716 717 718 719 720
}

/**
 * show_scaling_driver - show the cpufreq driver currently loaded
 */
D
Dave Jones 已提交
721
static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
L
Linus Torvalds 已提交
722
{
723
	return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
L
Linus Torvalds 已提交
724 725 726 727 728
}

/**
 * show_scaling_available_governors - show the available CPUfreq governors
 */
D
Dave Jones 已提交
729 730
static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
						char *buf)
L
Linus Torvalds 已提交
731 732 733 734
{
	ssize_t i = 0;
	struct cpufreq_governor *t;

735
	if (!has_target()) {
L
Linus Torvalds 已提交
736 737 738 739
		i += sprintf(buf, "performance powersave");
		goto out;
	}

740
	for_each_governor(t) {
741 742
		if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
		    - (CPUFREQ_NAME_LEN + 2)))
L
Linus Torvalds 已提交
743
			goto out;
744
		i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
L
Linus Torvalds 已提交
745
	}
746
out:
L
Linus Torvalds 已提交
747 748 749
	i += sprintf(&buf[i], "\n");
	return i;
}
750

751
ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
L
Linus Torvalds 已提交
752 753 754 755
{
	ssize_t i = 0;
	unsigned int cpu;

756
	for_each_cpu(cpu, mask) {
L
Linus Torvalds 已提交
757 758 759 760
		if (i)
			i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), " ");
		i += scnprintf(&buf[i], (PAGE_SIZE - i - 2), "%u", cpu);
		if (i >= (PAGE_SIZE - 5))
761
			break;
L
Linus Torvalds 已提交
762 763 764 765
	}
	i += sprintf(&buf[i], "\n");
	return i;
}
766
EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
L
Linus Torvalds 已提交
767

768 769 770 771 772 773
/**
 * show_related_cpus - show the CPUs affected by each transition even if
 * hw coordination is in use
 */
static ssize_t show_related_cpus(struct cpufreq_policy *policy, char *buf)
{
774
	return cpufreq_show_cpus(policy->related_cpus, buf);
775 776 777 778 779 780 781
}

/**
 * show_affected_cpus - show the CPUs affected by each transition
 */
static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
{
782
	return cpufreq_show_cpus(policy->cpus, buf);
783 784
}

785
static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
D
Dave Jones 已提交
786
					const char *buf, size_t count)
787 788 789 790
{
	unsigned int freq = 0;
	unsigned int ret;

791
	if (!policy->governor || !policy->governor->store_setspeed)
792 793 794 795 796 797 798 799 800 801 802 803 804
		return -EINVAL;

	ret = sscanf(buf, "%u", &freq);
	if (ret != 1)
		return -EINVAL;

	policy->governor->store_setspeed(policy, freq);

	return count;
}

static ssize_t show_scaling_setspeed(struct cpufreq_policy *policy, char *buf)
{
805
	if (!policy->governor || !policy->governor->show_setspeed)
806 807 808 809
		return sprintf(buf, "<unsupported>\n");

	return policy->governor->show_setspeed(policy, buf);
}
L
Linus Torvalds 已提交
810

811
/**
812
 * show_bios_limit - show the current cpufreq HW/BIOS limitation
813 814 815 816 817
 */
static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
{
	unsigned int limit;
	int ret;
818 819
	if (cpufreq_driver->bios_limit) {
		ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
820 821 822 823 824 825
		if (!ret)
			return sprintf(buf, "%u\n", limit);
	}
	return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
}

826 827 828 829 830 831 832 833 834 835 836 837 838 839
cpufreq_freq_attr_ro_perm(cpuinfo_cur_freq, 0400);
cpufreq_freq_attr_ro(cpuinfo_min_freq);
cpufreq_freq_attr_ro(cpuinfo_max_freq);
cpufreq_freq_attr_ro(cpuinfo_transition_latency);
cpufreq_freq_attr_ro(scaling_available_governors);
cpufreq_freq_attr_ro(scaling_driver);
cpufreq_freq_attr_ro(scaling_cur_freq);
cpufreq_freq_attr_ro(bios_limit);
cpufreq_freq_attr_ro(related_cpus);
cpufreq_freq_attr_ro(affected_cpus);
cpufreq_freq_attr_rw(scaling_min_freq);
cpufreq_freq_attr_rw(scaling_max_freq);
cpufreq_freq_attr_rw(scaling_governor);
cpufreq_freq_attr_rw(scaling_setspeed);
L
Linus Torvalds 已提交
840

D
Dave Jones 已提交
841
static struct attribute *default_attrs[] = {
L
Linus Torvalds 已提交
842 843
	&cpuinfo_min_freq.attr,
	&cpuinfo_max_freq.attr,
844
	&cpuinfo_transition_latency.attr,
L
Linus Torvalds 已提交
845 846 847
	&scaling_min_freq.attr,
	&scaling_max_freq.attr,
	&affected_cpus.attr,
848
	&related_cpus.attr,
L
Linus Torvalds 已提交
849 850 851
	&scaling_governor.attr,
	&scaling_driver.attr,
	&scaling_available_governors.attr,
852
	&scaling_setspeed.attr,
L
Linus Torvalds 已提交
853 854 855
	NULL
};

856 857
#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
#define to_attr(a) container_of(a, struct freq_attr, attr)
L
Linus Torvalds 已提交
858

859
static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
L
Linus Torvalds 已提交
860
{
D
Dave Jones 已提交
861 862
	struct cpufreq_policy *policy = to_policy(kobj);
	struct freq_attr *fattr = to_attr(attr);
863
	ssize_t ret;
864

865
	down_read(&policy->rwsem);
866

867 868 869 870 871
	if (fattr->show)
		ret = fattr->show(policy, buf);
	else
		ret = -EIO;

872
	up_read(&policy->rwsem);
873

L
Linus Torvalds 已提交
874 875 876
	return ret;
}

D
Dave Jones 已提交
877 878
static ssize_t store(struct kobject *kobj, struct attribute *attr,
		     const char *buf, size_t count)
L
Linus Torvalds 已提交
879
{
D
Dave Jones 已提交
880 881
	struct cpufreq_policy *policy = to_policy(kobj);
	struct freq_attr *fattr = to_attr(attr);
882
	ssize_t ret = -EINVAL;
883

884 885 886 887 888
	get_online_cpus();

	if (!cpu_online(policy->cpu))
		goto unlock;

889
	down_write(&policy->rwsem);
890

891 892 893 894 895
	if (fattr->store)
		ret = fattr->store(policy, buf, count);
	else
		ret = -EIO;

896
	up_write(&policy->rwsem);
897 898 899
unlock:
	put_online_cpus();

L
Linus Torvalds 已提交
900 901 902
	return ret;
}

D
Dave Jones 已提交
903
static void cpufreq_sysfs_release(struct kobject *kobj)
L
Linus Torvalds 已提交
904
{
D
Dave Jones 已提交
905
	struct cpufreq_policy *policy = to_policy(kobj);
906
	pr_debug("last reference is dropped\n");
L
Linus Torvalds 已提交
907 908 909
	complete(&policy->kobj_unregister);
}

910
static const struct sysfs_ops sysfs_ops = {
L
Linus Torvalds 已提交
911 912 913 914 915 916 917 918 919 920
	.show	= show,
	.store	= store,
};

static struct kobj_type ktype_cpufreq = {
	.sysfs_ops	= &sysfs_ops,
	.default_attrs	= default_attrs,
	.release	= cpufreq_sysfs_release,
};

921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
static int add_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
{
	struct device *cpu_dev;

	pr_debug("%s: Adding symlink for CPU: %u\n", __func__, cpu);

	if (!policy)
		return 0;

	cpu_dev = get_cpu_device(cpu);
	if (WARN_ON(!cpu_dev))
		return 0;

	return sysfs_create_link(&cpu_dev->kobj, &policy->kobj, "cpufreq");
}

static void remove_cpu_dev_symlink(struct cpufreq_policy *policy, int cpu)
{
	struct device *cpu_dev;

	pr_debug("%s: Removing symlink for CPU: %u\n", __func__, cpu);

	cpu_dev = get_cpu_device(cpu);
	if (WARN_ON(!cpu_dev))
		return;

	sysfs_remove_link(&cpu_dev->kobj, "cpufreq");
}

/* Add/remove symlinks for all related CPUs */
951
static int cpufreq_add_dev_symlink(struct cpufreq_policy *policy)
952 953 954 955
{
	unsigned int j;
	int ret = 0;

956
	/* Some related CPUs might not be present (physically hotplugged) */
957
	for_each_cpu(j, policy->real_cpus) {
958
		ret = add_cpu_dev_symlink(policy, j);
959 960
		if (ret)
			break;
961
	}
962

963 964 965
	return ret;
}

966 967 968 969 970
static void cpufreq_remove_dev_symlink(struct cpufreq_policy *policy)
{
	unsigned int j;

	/* Some related CPUs might not be present (physically hotplugged) */
971
	for_each_cpu(j, policy->real_cpus)
972 973 974
		remove_cpu_dev_symlink(policy, j);
}

975
static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
976 977 978 979 980
{
	struct freq_attr **drv_attr;
	int ret = 0;

	/* set up files for this cpu device */
981
	drv_attr = cpufreq_driver->attr;
V
Viresh Kumar 已提交
982
	while (drv_attr && *drv_attr) {
983 984
		ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
		if (ret)
985
			return ret;
986 987
		drv_attr++;
	}
988
	if (cpufreq_driver->get) {
989 990
		ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
		if (ret)
991
			return ret;
992
	}
993 994 995

	ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
	if (ret)
996
		return ret;
997

998
	if (cpufreq_driver->bios_limit) {
999 1000
		ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
		if (ret)
1001
			return ret;
1002
	}
1003

1004
	return cpufreq_add_dev_symlink(policy);
1005 1006
}

1007 1008 1009 1010 1011
__weak struct cpufreq_governor *cpufreq_default_governor(void)
{
	return NULL;
}

1012
static int cpufreq_init_policy(struct cpufreq_policy *policy)
1013
{
1014
	struct cpufreq_governor *gov = NULL;
1015 1016
	struct cpufreq_policy new_policy;

1017
	memcpy(&new_policy, policy, sizeof(*policy));
1018

1019
	/* Update governor of new_policy to the governor used before hotplug */
1020
	gov = find_governor(policy->last_governor);
1021
	if (gov) {
1022 1023
		pr_debug("Restoring governor %s for cpu %d\n",
				policy->governor->name, policy->cpu);
1024 1025 1026 1027 1028
	} else {
		gov = cpufreq_default_governor();
		if (!gov)
			return -ENODATA;
	}
1029 1030 1031

	new_policy.governor = gov;

1032 1033 1034 1035 1036 1037 1038 1039
	/* Use the default policy if there is no last_policy. */
	if (cpufreq_driver->setpolicy) {
		if (policy->last_policy)
			new_policy.policy = policy->last_policy;
		else
			cpufreq_parse_governor(gov->name, &new_policy.policy,
					       NULL);
	}
1040
	/* set default policy */
1041
	return cpufreq_set_policy(policy, &new_policy);
1042 1043
}

1044
static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
1045
{
1046
	int ret = 0;
1047

1048 1049 1050 1051
	/* Has this CPU been taken care of already? */
	if (cpumask_test_cpu(cpu, policy->cpus))
		return 0;

1052
	if (has_target()) {
1053 1054 1055 1056 1057 1058
		ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
		if (ret) {
			pr_err("%s: Failed to stop governor\n", __func__);
			return ret;
		}
	}
1059

1060
	down_write(&policy->rwsem);
1061
	cpumask_set_cpu(cpu, policy->cpus);
1062
	up_write(&policy->rwsem);
V
Viresh Kumar 已提交
1063

1064
	if (has_target()) {
1065 1066 1067 1068 1069
		ret = __cpufreq_governor(policy, CPUFREQ_GOV_START);
		if (!ret)
			ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);

		if (ret) {
1070 1071 1072
			pr_err("%s: Failed to start governor\n", __func__);
			return ret;
		}
1073
	}
1074

1075
	return 0;
1076
}
L
Linus Torvalds 已提交
1077

1078
static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
1079
{
1080
	struct device *dev = get_cpu_device(cpu);
1081 1082
	struct cpufreq_policy *policy;

1083 1084 1085
	if (WARN_ON(!dev))
		return NULL;

1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
	policy = kzalloc(sizeof(*policy), GFP_KERNEL);
	if (!policy)
		return NULL;

	if (!alloc_cpumask_var(&policy->cpus, GFP_KERNEL))
		goto err_free_policy;

	if (!zalloc_cpumask_var(&policy->related_cpus, GFP_KERNEL))
		goto err_free_cpumask;

1096 1097 1098
	if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
		goto err_free_rcpumask;

1099
	kobject_init(&policy->kobj, &ktype_cpufreq);
1100
	INIT_LIST_HEAD(&policy->policy_list);
1101
	init_rwsem(&policy->rwsem);
1102 1103
	spin_lock_init(&policy->transition_lock);
	init_waitqueue_head(&policy->transition_wait);
1104 1105
	init_completion(&policy->kobj_unregister);
	INIT_WORK(&policy->update, handle_update);
1106

1107
	policy->cpu = cpu;
1108 1109
	return policy;

1110 1111
err_free_rcpumask:
	free_cpumask_var(policy->related_cpus);
1112 1113 1114 1115 1116 1117 1118 1119
err_free_cpumask:
	free_cpumask_var(policy->cpus);
err_free_policy:
	kfree(policy);

	return NULL;
}

1120
static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy, bool notify)
1121 1122 1123 1124
{
	struct kobject *kobj;
	struct completion *cmp;

1125 1126 1127
	if (notify)
		blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
					     CPUFREQ_REMOVE_POLICY, policy);
1128

1129 1130
	down_write(&policy->rwsem);
	cpufreq_remove_dev_symlink(policy);
1131 1132
	kobj = &policy->kobj;
	cmp = &policy->kobj_unregister;
1133
	up_write(&policy->rwsem);
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145
	kobject_put(kobj);

	/*
	 * We need to make sure that the underlying kobj is
	 * actually not referenced anymore by anybody before we
	 * proceed with unloading.
	 */
	pr_debug("waiting for dropping of refcount\n");
	wait_for_completion(cmp);
	pr_debug("wait complete\n");
}

1146
static void cpufreq_policy_free(struct cpufreq_policy *policy, bool notify)
1147
{
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
	unsigned long flags;
	int cpu;

	/* Remove policy from list */
	write_lock_irqsave(&cpufreq_driver_lock, flags);
	list_del(&policy->policy_list);

	for_each_cpu(cpu, policy->related_cpus)
		per_cpu(cpufreq_cpu_data, cpu) = NULL;
	write_unlock_irqrestore(&cpufreq_driver_lock, flags);

1159
	cpufreq_policy_put_kobj(policy, notify);
1160
	free_cpumask_var(policy->real_cpus);
1161 1162 1163 1164 1165
	free_cpumask_var(policy->related_cpus);
	free_cpumask_var(policy->cpus);
	kfree(policy);
}

1166
static int cpufreq_online(unsigned int cpu)
L
Linus Torvalds 已提交
1167
{
1168
	struct cpufreq_policy *policy;
1169
	bool new_policy;
L
Linus Torvalds 已提交
1170
	unsigned long flags;
1171 1172
	unsigned int j;
	int ret;
1173

1174
	pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
1175

1176
	/* Check if this CPU already has a policy to manage it */
1177
	policy = per_cpu(cpufreq_cpu_data, cpu);
1178
	if (policy) {
1179
		WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
1180
		if (!policy_is_inactive(policy))
1181
			return cpufreq_add_policy_cpu(policy, cpu);
L
Linus Torvalds 已提交
1182

1183
		/* This is the only online CPU for the policy.  Start over. */
1184
		new_policy = false;
1185 1186 1187 1188 1189
		down_write(&policy->rwsem);
		policy->cpu = cpu;
		policy->governor = NULL;
		up_write(&policy->rwsem);
	} else {
1190
		new_policy = true;
1191
		policy = cpufreq_policy_alloc(cpu);
1192
		if (!policy)
1193
			return -ENOMEM;
1194
	}
1195

1196
	cpumask_copy(policy->cpus, cpumask_of(cpu));
L
Linus Torvalds 已提交
1197 1198 1199 1200

	/* call driver. From then on the cpufreq must be able
	 * to accept all calls to ->verify and ->setpolicy for this CPU
	 */
1201
	ret = cpufreq_driver->init(policy);
L
Linus Torvalds 已提交
1202
	if (ret) {
1203
		pr_debug("initialization failed\n");
1204
		goto out_free_policy;
L
Linus Torvalds 已提交
1205
	}
V
Viresh Kumar 已提交
1206

1207 1208
	down_write(&policy->rwsem);

1209
	if (new_policy) {
1210
		/* related_cpus should at least include policy->cpus. */
1211
		cpumask_copy(policy->related_cpus, policy->cpus);
1212
		/* Remember CPUs present at the policy creation time. */
1213
		cpumask_and(policy->real_cpus, policy->cpus, cpu_present_mask);
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223

		/* Name and add the kobject */
		ret = kobject_add(&policy->kobj, cpufreq_global_kobject,
				  "policy%u",
				  cpumask_first(policy->related_cpus));
		if (ret) {
			pr_err("%s: failed to add policy->kobj: %d\n", __func__,
			       ret);
			goto out_exit_policy;
		}
1224
	}
1225

1226 1227 1228 1229 1230 1231
	/*
	 * affected cpus must always be the one, which are online. We aren't
	 * managing offline cpus here.
	 */
	cpumask_and(policy->cpus, policy->cpus, cpu_online_mask);

1232
	if (new_policy) {
1233 1234
		policy->user_policy.min = policy->min;
		policy->user_policy.max = policy->max;
1235

1236 1237 1238 1239 1240
		write_lock_irqsave(&cpufreq_driver_lock, flags);
		for_each_cpu(j, policy->related_cpus)
			per_cpu(cpufreq_cpu_data, j) = policy;
		write_unlock_irqrestore(&cpufreq_driver_lock, flags);
	}
1241

1242
	if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
1243 1244 1245
		policy->cur = cpufreq_driver->get(policy->cpu);
		if (!policy->cur) {
			pr_err("%s: ->get() failed\n", __func__);
1246
			goto out_exit_policy;
1247 1248 1249
		}
	}

1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289
	/*
	 * Sometimes boot loaders set CPU frequency to a value outside of
	 * frequency table present with cpufreq core. In such cases CPU might be
	 * unstable if it has to run on that frequency for long duration of time
	 * and so its better to set it to a frequency which is specified in
	 * freq-table. This also makes cpufreq stats inconsistent as
	 * cpufreq-stats would fail to register because current frequency of CPU
	 * isn't found in freq-table.
	 *
	 * Because we don't want this change to effect boot process badly, we go
	 * for the next freq which is >= policy->cur ('cur' must be set by now,
	 * otherwise we will end up setting freq to lowest of the table as 'cur'
	 * is initialized to zero).
	 *
	 * We are passing target-freq as "policy->cur - 1" otherwise
	 * __cpufreq_driver_target() would simply fail, as policy->cur will be
	 * equal to target-freq.
	 */
	if ((cpufreq_driver->flags & CPUFREQ_NEED_INITIAL_FREQ_CHECK)
	    && has_target()) {
		/* Are we running at unknown frequency ? */
		ret = cpufreq_frequency_table_get_index(policy, policy->cur);
		if (ret == -EINVAL) {
			/* Warn user and fix it */
			pr_warn("%s: CPU%d: Running at unlisted freq: %u KHz\n",
				__func__, policy->cpu, policy->cur);
			ret = __cpufreq_driver_target(policy, policy->cur - 1,
				CPUFREQ_RELATION_L);

			/*
			 * Reaching here after boot in a few seconds may not
			 * mean that system will remain stable at "unknown"
			 * frequency for longer duration. Hence, a BUG_ON().
			 */
			BUG_ON(ret);
			pr_warn("%s: CPU%d: Unlisted initial frequency changed to: %u KHz\n",
				__func__, policy->cpu, policy->cur);
		}
	}

1290 1291 1292
	blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
				     CPUFREQ_START, policy);

1293
	if (new_policy) {
1294
		ret = cpufreq_add_dev_interface(policy);
1295
		if (ret)
1296
			goto out_exit_policy;
1297 1298
		blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
				CPUFREQ_CREATE_POLICY, policy);
1299

1300 1301 1302 1303
		write_lock_irqsave(&cpufreq_driver_lock, flags);
		list_add(&policy->policy_list, &cpufreq_policy_list);
		write_unlock_irqrestore(&cpufreq_driver_lock, flags);
	}
1304

1305 1306 1307 1308
	ret = cpufreq_init_policy(policy);
	if (ret) {
		pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
		       __func__, cpu, ret);
1309 1310 1311
		/* cpufreq_policy_free() will notify based on this */
		new_policy = false;
		goto out_exit_policy;
1312
	}
1313

1314
	up_write(&policy->rwsem);
1315

1316
	kobject_uevent(&policy->kobj, KOBJ_ADD);
1317 1318 1319 1320 1321

	/* Callback for handling stuff after policy is ready */
	if (cpufreq_driver->ready)
		cpufreq_driver->ready(policy);

1322
	pr_debug("initialization complete\n");
1323

L
Linus Torvalds 已提交
1324 1325
	return 0;

1326
out_exit_policy:
1327 1328
	up_write(&policy->rwsem);

1329 1330
	if (cpufreq_driver->exit)
		cpufreq_driver->exit(policy);
1331
out_free_policy:
1332
	cpufreq_policy_free(policy, !new_policy);
L
Linus Torvalds 已提交
1333 1334 1335
	return ret;
}

1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
/**
 * cpufreq_add_dev - the cpufreq interface for a CPU device.
 * @dev: CPU device.
 * @sif: Subsystem interface structure pointer (not used)
 */
static int cpufreq_add_dev(struct device *dev, struct subsys_interface *sif)
{
	unsigned cpu = dev->id;
	int ret;

	dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);

	if (cpu_online(cpu)) {
		ret = cpufreq_online(cpu);
	} else {
		/*
		 * A hotplug notifier will follow and we will handle it as CPU
		 * online then.  For now, just create the sysfs link, unless
		 * there is no policy or the link is already present.
		 */
		struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);

		ret = policy && !cpumask_test_and_set_cpu(cpu, policy->real_cpus)
			? add_cpu_dev_symlink(policy, cpu) : 0;
	}
1361

L
Linus Torvalds 已提交
1362 1363 1364
	return ret;
}

1365
static void cpufreq_offline_prepare(unsigned int cpu)
L
Linus Torvalds 已提交
1366
{
1367
	struct cpufreq_policy *policy;
L
Linus Torvalds 已提交
1368

1369
	pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
L
Linus Torvalds 已提交
1370

1371
	policy = cpufreq_cpu_get_raw(cpu);
1372
	if (!policy) {
1373
		pr_debug("%s: No cpu_data found\n", __func__);
1374
		return;
L
Linus Torvalds 已提交
1375 1376
	}

1377
	if (has_target()) {
1378
		int ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
1379
		if (ret)
1380
			pr_err("%s: Failed to stop governor\n", __func__);
1381
	}
L
Linus Torvalds 已提交
1382

1383
	down_write(&policy->rwsem);
1384
	cpumask_clear_cpu(cpu, policy->cpus);
1385

1386 1387 1388 1389
	if (policy_is_inactive(policy)) {
		if (has_target())
			strncpy(policy->last_governor, policy->governor->name,
				CPUFREQ_NAME_LEN);
1390 1391
		else
			policy->last_policy = policy->policy;
1392 1393 1394 1395
	} else if (cpu == policy->cpu) {
		/* Nominate new CPU */
		policy->cpu = cpumask_any(policy->cpus);
	}
1396
	up_write(&policy->rwsem);
1397

1398 1399 1400
	/* Start governor again for active policy */
	if (!policy_is_inactive(policy)) {
		if (has_target()) {
1401
			int ret = __cpufreq_governor(policy, CPUFREQ_GOV_START);
1402 1403
			if (!ret)
				ret = __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
1404

1405 1406 1407 1408
			if (ret)
				pr_err("%s: Failed to start governor\n", __func__);
		}
	} else if (cpufreq_driver->stop_cpu) {
1409
		cpufreq_driver->stop_cpu(policy);
1410
	}
1411 1412
}

1413
static void cpufreq_offline_finish(unsigned int cpu)
1414
{
1415
	struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
1416 1417 1418

	if (!policy) {
		pr_debug("%s: No cpu_data found\n", __func__);
1419
		return;
1420 1421
	}

1422 1423
	/* Only proceed for inactive policies */
	if (!policy_is_inactive(policy))
1424
		return;
1425 1426 1427

	/* If cpu is last user of policy, free policy */
	if (has_target()) {
1428
		int ret = __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
1429
		if (ret)
1430
			pr_err("%s: Failed to exit governor\n", __func__);
1431
	}
L
Linus Torvalds 已提交
1432

1433 1434 1435 1436 1437
	/*
	 * Perform the ->exit() even during light-weight tear-down,
	 * since this is a core component, and is essential for the
	 * subsequent light-weight ->init() to succeed.
	 */
1438
	if (cpufreq_driver->exit) {
1439
		cpufreq_driver->exit(policy);
1440 1441
		policy->freq_table = NULL;
	}
L
Linus Torvalds 已提交
1442 1443
}

1444
/**
1445
 * cpufreq_remove_dev - remove a CPU device
1446 1447 1448
 *
 * Removes the cpufreq interface for a CPU device.
 */
1449
static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
1450
{
1451
	unsigned int cpu = dev->id;
1452
	struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
1453

1454
	if (!policy)
1455
		return;
1456

1457
	if (cpu_online(cpu)) {
1458 1459
		cpufreq_offline_prepare(cpu);
		cpufreq_offline_finish(cpu);
1460
	}
1461

1462
	cpumask_clear_cpu(cpu, policy->real_cpus);
1463
	remove_cpu_dev_symlink(policy, cpu);
1464

1465
	if (cpumask_empty(policy->real_cpus))
1466
		cpufreq_policy_free(policy, true);
1467 1468
}

1469
static void handle_update(struct work_struct *work)
L
Linus Torvalds 已提交
1470
{
1471 1472 1473
	struct cpufreq_policy *policy =
		container_of(work, struct cpufreq_policy, update);
	unsigned int cpu = policy->cpu;
1474
	pr_debug("handle_update for cpu %u called\n", cpu);
L
Linus Torvalds 已提交
1475 1476 1477 1478
	cpufreq_update_policy(cpu);
}

/**
1479 1480
 *	cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
 *	in deep trouble.
1481
 *	@policy: policy managing CPUs
L
Linus Torvalds 已提交
1482 1483
 *	@new_freq: CPU frequency the CPU actually runs at
 *
1484 1485
 *	We adjust to current frequency first, and need to clean up later.
 *	So either call to cpufreq_update_policy() or schedule handle_update()).
L
Linus Torvalds 已提交
1486
 */
1487
static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
1488
				unsigned int new_freq)
L
Linus Torvalds 已提交
1489 1490
{
	struct cpufreq_freqs freqs;
1491

1492
	pr_debug("Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\n",
1493
		 policy->cur, new_freq);
L
Linus Torvalds 已提交
1494

1495
	freqs.old = policy->cur;
L
Linus Torvalds 已提交
1496
	freqs.new = new_freq;
1497

1498 1499
	cpufreq_freq_transition_begin(policy, &freqs);
	cpufreq_freq_transition_end(policy, &freqs, 0);
L
Linus Torvalds 已提交
1500 1501
}

1502
/**
D
Dhaval Giani 已提交
1503
 * cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
1504 1505 1506 1507 1508 1509 1510
 * @cpu: CPU number
 *
 * This is the last known freq, without actually getting it from the driver.
 * Return value will be same as what is shown in scaling_cur_freq in sysfs.
 */
unsigned int cpufreq_quick_get(unsigned int cpu)
{
1511
	struct cpufreq_policy *policy;
1512
	unsigned int ret_freq = 0;
1513

1514 1515
	if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get)
		return cpufreq_driver->get(cpu);
1516 1517

	policy = cpufreq_cpu_get(cpu);
1518
	if (policy) {
1519
		ret_freq = policy->cur;
1520 1521 1522
		cpufreq_cpu_put(policy);
	}

D
Dave Jones 已提交
1523
	return ret_freq;
1524 1525 1526
}
EXPORT_SYMBOL(cpufreq_quick_get);

1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
/**
 * cpufreq_quick_get_max - get the max reported CPU frequency for this CPU
 * @cpu: CPU number
 *
 * Just return the max possible frequency for a given CPU.
 */
unsigned int cpufreq_quick_get_max(unsigned int cpu)
{
	struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
	unsigned int ret_freq = 0;

	if (policy) {
		ret_freq = policy->max;
		cpufreq_cpu_put(policy);
	}

	return ret_freq;
}
EXPORT_SYMBOL(cpufreq_quick_get_max);

1547
static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
L
Linus Torvalds 已提交
1548
{
1549
	unsigned int ret_freq = 0;
1550

1551
	if (!cpufreq_driver->get)
D
Dave Jones 已提交
1552
		return ret_freq;
L
Linus Torvalds 已提交
1553

1554
	ret_freq = cpufreq_driver->get(policy->cpu);
L
Linus Torvalds 已提交
1555

1556 1557 1558 1559
	/* Updating inactive policies is invalid, so avoid doing that. */
	if (unlikely(policy_is_inactive(policy)))
		return ret_freq;

1560
	if (ret_freq && policy->cur &&
1561
		!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
1562 1563 1564
		/* verify no discrepancy between actual and
					saved value exists */
		if (unlikely(ret_freq != policy->cur)) {
1565
			cpufreq_out_of_sync(policy, ret_freq);
L
Linus Torvalds 已提交
1566 1567 1568 1569
			schedule_work(&policy->update);
		}
	}

D
Dave Jones 已提交
1570
	return ret_freq;
1571
}
L
Linus Torvalds 已提交
1572

1573 1574 1575 1576 1577 1578 1579 1580
/**
 * cpufreq_get - get the current CPU frequency (in kHz)
 * @cpu: CPU number
 *
 * Get the CPU current (static) CPU frequency
 */
unsigned int cpufreq_get(unsigned int cpu)
{
1581
	struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
1582 1583
	unsigned int ret_freq = 0;

1584 1585
	if (policy) {
		down_read(&policy->rwsem);
1586
		ret_freq = __cpufreq_get(policy);
1587
		up_read(&policy->rwsem);
1588

1589 1590
		cpufreq_cpu_put(policy);
	}
1591

D
Dave Jones 已提交
1592
	return ret_freq;
L
Linus Torvalds 已提交
1593 1594 1595
}
EXPORT_SYMBOL(cpufreq_get);

1596 1597 1598 1599 1600
static struct subsys_interface cpufreq_interface = {
	.name		= "cpufreq",
	.subsys		= &cpu_subsys,
	.add_dev	= cpufreq_add_dev,
	.remove_dev	= cpufreq_remove_dev,
1601 1602
};

1603 1604 1605 1606 1607 1608 1609 1610 1611
/*
 * In case platform wants some specific frequency to be configured
 * during suspend..
 */
int cpufreq_generic_suspend(struct cpufreq_policy *policy)
{
	int ret;

	if (!policy->suspend_freq) {
1612 1613
		pr_debug("%s: suspend_freq not defined\n", __func__);
		return 0;
1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
	}

	pr_debug("%s: Setting suspend-freq: %u\n", __func__,
			policy->suspend_freq);

	ret = __cpufreq_driver_target(policy, policy->suspend_freq,
			CPUFREQ_RELATION_H);
	if (ret)
		pr_err("%s: unable to set suspend-freq: %u. err: %d\n",
				__func__, policy->suspend_freq, ret);

	return ret;
}
EXPORT_SYMBOL(cpufreq_generic_suspend);

1629
/**
1630
 * cpufreq_suspend() - Suspend CPUFreq governors
1631
 *
1632 1633 1634 1635
 * Called during system wide Suspend/Hibernate cycles for suspending governors
 * as some platforms can't change frequency after this point in suspend cycle.
 * Because some of the devices (like: i2c, regulators, etc) they use for
 * changing frequency are suspended quickly after this point.
1636
 */
1637
void cpufreq_suspend(void)
1638
{
1639
	struct cpufreq_policy *policy;
1640

1641 1642
	if (!cpufreq_driver)
		return;
1643

1644
	if (!has_target())
1645
		goto suspend;
1646

1647 1648
	pr_debug("%s: Suspending Governors\n", __func__);

1649
	for_each_active_policy(policy) {
1650 1651 1652 1653 1654 1655 1656
		if (__cpufreq_governor(policy, CPUFREQ_GOV_STOP))
			pr_err("%s: Failed to stop governor for policy: %p\n",
				__func__, policy);
		else if (cpufreq_driver->suspend
		    && cpufreq_driver->suspend(policy))
			pr_err("%s: Failed to suspend driver: %p\n", __func__,
				policy);
1657
	}
1658 1659 1660

suspend:
	cpufreq_suspended = true;
1661 1662
}

L
Linus Torvalds 已提交
1663
/**
1664
 * cpufreq_resume() - Resume CPUFreq governors
L
Linus Torvalds 已提交
1665
 *
1666 1667
 * Called during system wide Suspend/Hibernate cycle for resuming governors that
 * are suspended with cpufreq_suspend().
L
Linus Torvalds 已提交
1668
 */
1669
void cpufreq_resume(void)
L
Linus Torvalds 已提交
1670
{
1671
	struct cpufreq_policy *policy;
L
Linus Torvalds 已提交
1672

1673 1674
	if (!cpufreq_driver)
		return;
L
Linus Torvalds 已提交
1675

1676 1677
	cpufreq_suspended = false;

1678
	if (!has_target())
1679
		return;
L
Linus Torvalds 已提交
1680

1681
	pr_debug("%s: Resuming Governors\n", __func__);
L
Linus Torvalds 已提交
1682

1683
	for_each_active_policy(policy) {
1684 1685 1686 1687
		if (cpufreq_driver->resume && cpufreq_driver->resume(policy))
			pr_err("%s: Failed to resume driver: %p\n", __func__,
				policy);
		else if (__cpufreq_governor(policy, CPUFREQ_GOV_START)
1688 1689 1690 1691
		    || __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS))
			pr_err("%s: Failed to start governor for policy: %p\n",
				__func__, policy);
	}
1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702

	/*
	 * schedule call cpufreq_update_policy() for first-online CPU, as that
	 * wouldn't be hotplugged-out on suspend. It will verify that the
	 * current freq is in sync with what we believe it to be.
	 */
	policy = cpufreq_cpu_get_raw(cpumask_first(cpu_online_mask));
	if (WARN_ON(!policy))
		return;

	schedule_work(&policy->update);
1703
}
L
Linus Torvalds 已提交
1704

1705 1706 1707 1708 1709 1710 1711 1712
/**
 *	cpufreq_get_current_driver - return current driver's name
 *
 *	Return the name string of the currently loaded cpufreq driver
 *	or NULL, if none.
 */
const char *cpufreq_get_current_driver(void)
{
1713 1714 1715 1716
	if (cpufreq_driver)
		return cpufreq_driver->name;

	return NULL;
1717 1718
}
EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
L
Linus Torvalds 已提交
1719

1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734
/**
 *	cpufreq_get_driver_data - return current driver data
 *
 *	Return the private data of the currently loaded cpufreq
 *	driver, or NULL if no cpufreq driver is loaded.
 */
void *cpufreq_get_driver_data(void)
{
	if (cpufreq_driver)
		return cpufreq_driver->driver_data;

	return NULL;
}
EXPORT_SYMBOL_GPL(cpufreq_get_driver_data);

L
Linus Torvalds 已提交
1735 1736 1737 1738 1739 1740 1741 1742 1743
/*********************************************************************
 *                     NOTIFIER LISTS INTERFACE                      *
 *********************************************************************/

/**
 *	cpufreq_register_notifier - register a driver with cpufreq
 *	@nb: notifier function to register
 *      @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
 *
1744
 *	Add a driver to one of two lists: either a list of drivers that
L
Linus Torvalds 已提交
1745 1746 1747 1748 1749
 *      are notified about clock rate changes (once before and once after
 *      the transition), or a list of drivers that are notified about
 *      changes in cpufreq policy.
 *
 *	This function may sleep, and has the same return conditions as
1750
 *	blocking_notifier_chain_register.
L
Linus Torvalds 已提交
1751 1752 1753 1754 1755
 */
int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
{
	int ret;

1756 1757 1758
	if (cpufreq_disabled())
		return -EINVAL;

1759 1760
	WARN_ON(!init_cpufreq_transition_notifier_list_called);

L
Linus Torvalds 已提交
1761 1762
	switch (list) {
	case CPUFREQ_TRANSITION_NOTIFIER:
1763
		ret = srcu_notifier_chain_register(
1764
				&cpufreq_transition_notifier_list, nb);
L
Linus Torvalds 已提交
1765 1766
		break;
	case CPUFREQ_POLICY_NOTIFIER:
1767 1768
		ret = blocking_notifier_chain_register(
				&cpufreq_policy_notifier_list, nb);
L
Linus Torvalds 已提交
1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780
		break;
	default:
		ret = -EINVAL;
	}

	return ret;
}
EXPORT_SYMBOL(cpufreq_register_notifier);

/**
 *	cpufreq_unregister_notifier - unregister a driver with cpufreq
 *	@nb: notifier block to be unregistered
1781
 *	@list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
L
Linus Torvalds 已提交
1782 1783 1784 1785
 *
 *	Remove a driver from the CPU frequency notifier list.
 *
 *	This function may sleep, and has the same return conditions as
1786
 *	blocking_notifier_chain_unregister.
L
Linus Torvalds 已提交
1787 1788 1789 1790 1791
 */
int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
{
	int ret;

1792 1793 1794
	if (cpufreq_disabled())
		return -EINVAL;

L
Linus Torvalds 已提交
1795 1796
	switch (list) {
	case CPUFREQ_TRANSITION_NOTIFIER:
1797
		ret = srcu_notifier_chain_unregister(
1798
				&cpufreq_transition_notifier_list, nb);
L
Linus Torvalds 已提交
1799 1800
		break;
	case CPUFREQ_POLICY_NOTIFIER:
1801 1802
		ret = blocking_notifier_chain_unregister(
				&cpufreq_policy_notifier_list, nb);
L
Linus Torvalds 已提交
1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
		break;
	default:
		ret = -EINVAL;
	}

	return ret;
}
EXPORT_SYMBOL(cpufreq_unregister_notifier);


/*********************************************************************
 *                              GOVERNORS                            *
 *********************************************************************/

1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842
/* Must set freqs->new to intermediate frequency */
static int __target_intermediate(struct cpufreq_policy *policy,
				 struct cpufreq_freqs *freqs, int index)
{
	int ret;

	freqs->new = cpufreq_driver->get_intermediate(policy, index);

	/* We don't need to switch to intermediate freq */
	if (!freqs->new)
		return 0;

	pr_debug("%s: cpu: %d, switching to intermediate freq: oldfreq: %u, intermediate freq: %u\n",
		 __func__, policy->cpu, freqs->old, freqs->new);

	cpufreq_freq_transition_begin(policy, freqs);
	ret = cpufreq_driver->target_intermediate(policy, index);
	cpufreq_freq_transition_end(policy, freqs, ret);

	if (ret)
		pr_err("%s: Failed to change to intermediate frequency: %d\n",
		       __func__, ret);

	return ret;
}

1843 1844 1845
static int __target_index(struct cpufreq_policy *policy,
			  struct cpufreq_frequency_table *freq_table, int index)
{
1846 1847
	struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
	unsigned int intermediate_freq = 0;
1848 1849 1850 1851 1852
	int retval = -EINVAL;
	bool notify;

	notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
	if (notify) {
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863
		/* Handle switching to intermediate frequency */
		if (cpufreq_driver->get_intermediate) {
			retval = __target_intermediate(policy, &freqs, index);
			if (retval)
				return retval;

			intermediate_freq = freqs.new;
			/* Set old freq to intermediate */
			if (intermediate_freq)
				freqs.old = freqs.new;
		}
1864

1865
		freqs.new = freq_table[index].frequency;
1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876
		pr_debug("%s: cpu: %d, oldfreq: %u, new freq: %u\n",
			 __func__, policy->cpu, freqs.old, freqs.new);

		cpufreq_freq_transition_begin(policy, &freqs);
	}

	retval = cpufreq_driver->target_index(policy, index);
	if (retval)
		pr_err("%s: Failed to change cpu frequency: %d\n", __func__,
		       retval);

1877
	if (notify) {
1878 1879
		cpufreq_freq_transition_end(policy, &freqs, retval);

1880 1881 1882 1883
		/*
		 * Failed after setting to intermediate freq? Driver should have
		 * reverted back to initial frequency and so should we. Check
		 * here for intermediate_freq instead of get_intermediate, in
1884
		 * case we haven't switched to intermediate freq at all.
1885 1886 1887 1888 1889 1890 1891 1892 1893
		 */
		if (unlikely(retval && intermediate_freq)) {
			freqs.old = intermediate_freq;
			freqs.new = policy->restore_freq;
			cpufreq_freq_transition_begin(policy, &freqs);
			cpufreq_freq_transition_end(policy, &freqs, 0);
		}
	}

1894 1895 1896
	return retval;
}

L
Linus Torvalds 已提交
1897 1898 1899 1900
int __cpufreq_driver_target(struct cpufreq_policy *policy,
			    unsigned int target_freq,
			    unsigned int relation)
{
1901
	unsigned int old_target_freq = target_freq;
1902
	int retval = -EINVAL;
1903

1904 1905 1906
	if (cpufreq_disabled())
		return -ENODEV;

1907 1908 1909 1910 1911 1912 1913
	/* Make sure that target_freq is within supported range */
	if (target_freq > policy->max)
		target_freq = policy->max;
	if (target_freq < policy->min)
		target_freq = policy->min;

	pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
1914
		 policy->cpu, target_freq, relation, old_target_freq);
1915

1916 1917 1918 1919 1920 1921
	/*
	 * This might look like a redundant call as we are checking it again
	 * after finding index. But it is left intentionally for cases where
	 * exactly same freq is called again and so we can save on few function
	 * calls.
	 */
1922 1923 1924
	if (target_freq == policy->cur)
		return 0;

1925 1926 1927
	/* Save last value to restore later on errors */
	policy->restore_freq = policy->cur;

1928 1929
	if (cpufreq_driver->target)
		retval = cpufreq_driver->target(policy, target_freq, relation);
1930 1931 1932
	else if (cpufreq_driver->target_index) {
		struct cpufreq_frequency_table *freq_table;
		int index;
1933

1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946
		freq_table = cpufreq_frequency_get_table(policy->cpu);
		if (unlikely(!freq_table)) {
			pr_err("%s: Unable to find freq_table\n", __func__);
			goto out;
		}

		retval = cpufreq_frequency_table_target(policy, freq_table,
				target_freq, relation, &index);
		if (unlikely(retval)) {
			pr_err("%s: Unable to find matching freq\n", __func__);
			goto out;
		}

1947
		if (freq_table[index].frequency == policy->cur) {
1948
			retval = 0;
1949 1950 1951
			goto out;
		}

1952
		retval = __target_index(policy, freq_table, index);
1953 1954 1955
	}

out:
L
Linus Torvalds 已提交
1956 1957 1958 1959 1960 1961 1962 1963
	return retval;
}
EXPORT_SYMBOL_GPL(__cpufreq_driver_target);

int cpufreq_driver_target(struct cpufreq_policy *policy,
			  unsigned int target_freq,
			  unsigned int relation)
{
1964
	int ret = -EINVAL;
L
Linus Torvalds 已提交
1965

1966
	down_write(&policy->rwsem);
L
Linus Torvalds 已提交
1967 1968 1969

	ret = __cpufreq_driver_target(policy, target_freq, relation);

1970
	up_write(&policy->rwsem);
L
Linus Torvalds 已提交
1971 1972 1973 1974 1975

	return ret;
}
EXPORT_SYMBOL_GPL(cpufreq_driver_target);

1976 1977 1978 1979 1980
__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
{
	return NULL;
}

1981 1982
static int __cpufreq_governor(struct cpufreq_policy *policy,
					unsigned int event)
L
Linus Torvalds 已提交
1983
{
1984
	int ret;
1985

1986 1987 1988
	/* Don't start any governor operations if we are entering suspend */
	if (cpufreq_suspended)
		return 0;
1989 1990 1991 1992 1993 1994
	/*
	 * Governor might not be initiated here if ACPI _PPC changed
	 * notification happened, so check it.
	 */
	if (!policy->governor)
		return -EINVAL;
1995

1996 1997 1998
	if (policy->governor->max_transition_latency &&
	    policy->cpuinfo.transition_latency >
	    policy->governor->max_transition_latency) {
1999 2000 2001
		struct cpufreq_governor *gov = cpufreq_fallback_governor();

		if (gov) {
2002 2003
			pr_warn("%s governor failed, too long transition latency of HW, fallback to %s governor\n",
				policy->governor->name, gov->name);
2004
			policy->governor = gov;
2005 2006
		} else {
			return -EINVAL;
2007
		}
2008
	}
L
Linus Torvalds 已提交
2009

2010 2011 2012
	if (event == CPUFREQ_GOV_POLICY_INIT)
		if (!try_module_get(policy->governor->owner))
			return -EINVAL;
L
Linus Torvalds 已提交
2013

2014
	pr_debug("%s: for CPU %u, event %u\n", __func__, policy->cpu, event);
2015 2016

	mutex_lock(&cpufreq_governor_lock);
2017
	if ((policy->governor_enabled && event == CPUFREQ_GOV_START)
2018 2019
	    || (!policy->governor_enabled
	    && (event == CPUFREQ_GOV_LIMITS || event == CPUFREQ_GOV_STOP))) {
2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030
		mutex_unlock(&cpufreq_governor_lock);
		return -EBUSY;
	}

	if (event == CPUFREQ_GOV_STOP)
		policy->governor_enabled = false;
	else if (event == CPUFREQ_GOV_START)
		policy->governor_enabled = true;

	mutex_unlock(&cpufreq_governor_lock);

L
Linus Torvalds 已提交
2031 2032
	ret = policy->governor->governor(policy, event);

2033 2034 2035 2036 2037
	if (!ret) {
		if (event == CPUFREQ_GOV_POLICY_INIT)
			policy->governor->initialized++;
		else if (event == CPUFREQ_GOV_POLICY_EXIT)
			policy->governor->initialized--;
2038 2039 2040 2041 2042 2043 2044 2045
	} else {
		/* Restore original values */
		mutex_lock(&cpufreq_governor_lock);
		if (event == CPUFREQ_GOV_STOP)
			policy->governor_enabled = true;
		else if (event == CPUFREQ_GOV_START)
			policy->governor_enabled = false;
		mutex_unlock(&cpufreq_governor_lock);
2046
	}
2047

2048 2049
	if (((event == CPUFREQ_GOV_POLICY_INIT) && ret) ||
			((event == CPUFREQ_GOV_POLICY_EXIT) && !ret))
L
Linus Torvalds 已提交
2050 2051 2052 2053 2054 2055 2056
		module_put(policy->governor->owner);

	return ret;
}

int cpufreq_register_governor(struct cpufreq_governor *governor)
{
2057
	int err;
L
Linus Torvalds 已提交
2058 2059 2060 2061

	if (!governor)
		return -EINVAL;

2062 2063 2064
	if (cpufreq_disabled())
		return -ENODEV;

2065
	mutex_lock(&cpufreq_governor_mutex);
2066

2067
	governor->initialized = 0;
2068
	err = -EBUSY;
2069
	if (!find_governor(governor->name)) {
2070 2071
		err = 0;
		list_add(&governor->governor_list, &cpufreq_governor_list);
L
Linus Torvalds 已提交
2072 2073
	}

2074
	mutex_unlock(&cpufreq_governor_mutex);
2075
	return err;
L
Linus Torvalds 已提交
2076 2077 2078 2079 2080
}
EXPORT_SYMBOL_GPL(cpufreq_register_governor);

void cpufreq_unregister_governor(struct cpufreq_governor *governor)
{
2081 2082
	struct cpufreq_policy *policy;
	unsigned long flags;
2083

L
Linus Torvalds 已提交
2084 2085 2086
	if (!governor)
		return;

2087 2088 2089
	if (cpufreq_disabled())
		return;

2090 2091 2092
	/* clear last_governor for all inactive policies */
	read_lock_irqsave(&cpufreq_driver_lock, flags);
	for_each_inactive_policy(policy) {
2093 2094
		if (!strcmp(policy->last_governor, governor->name)) {
			policy->governor = NULL;
2095
			strcpy(policy->last_governor, "\0");
2096
		}
2097
	}
2098
	read_unlock_irqrestore(&cpufreq_driver_lock, flags);
2099

2100
	mutex_lock(&cpufreq_governor_mutex);
L
Linus Torvalds 已提交
2101
	list_del(&governor->governor_list);
2102
	mutex_unlock(&cpufreq_governor_mutex);
L
Linus Torvalds 已提交
2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113
	return;
}
EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);


/*********************************************************************
 *                          POLICY INTERFACE                         *
 *********************************************************************/

/**
 * cpufreq_get_policy - get the current cpufreq_policy
2114 2115
 * @policy: struct cpufreq_policy into which the current cpufreq_policy
 *	is written
L
Linus Torvalds 已提交
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128
 *
 * Reads the current cpufreq policy.
 */
int cpufreq_get_policy(struct cpufreq_policy *policy, unsigned int cpu)
{
	struct cpufreq_policy *cpu_policy;
	if (!policy)
		return -EINVAL;

	cpu_policy = cpufreq_cpu_get(cpu);
	if (!cpu_policy)
		return -EINVAL;

2129
	memcpy(policy, cpu_policy, sizeof(*policy));
L
Linus Torvalds 已提交
2130 2131 2132 2133 2134 2135

	cpufreq_cpu_put(cpu_policy);
	return 0;
}
EXPORT_SYMBOL(cpufreq_get_policy);

2136
/*
2137 2138
 * policy : current policy.
 * new_policy: policy to be set.
2139
 */
2140
static int cpufreq_set_policy(struct cpufreq_policy *policy,
2141
				struct cpufreq_policy *new_policy)
L
Linus Torvalds 已提交
2142
{
2143 2144
	struct cpufreq_governor *old_gov;
	int ret;
L
Linus Torvalds 已提交
2145

2146 2147
	pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
		 new_policy->cpu, new_policy->min, new_policy->max);
L
Linus Torvalds 已提交
2148

2149
	memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
L
Linus Torvalds 已提交
2150

2151 2152 2153 2154 2155
	/*
	* This check works well when we store new min/max freq attributes,
	* because new_policy is a copy of policy with one field updated.
	*/
	if (new_policy->min > new_policy->max)
2156
		return -EINVAL;
2157

L
Linus Torvalds 已提交
2158
	/* verify the cpu speed can be set within this limit */
2159
	ret = cpufreq_driver->verify(new_policy);
L
Linus Torvalds 已提交
2160
	if (ret)
2161
		return ret;
L
Linus Torvalds 已提交
2162 2163

	/* adjust if necessary - all reasons */
2164
	blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
2165
			CPUFREQ_ADJUST, new_policy);
L
Linus Torvalds 已提交
2166

2167 2168 2169 2170
	/*
	 * verify the cpu speed can be set within this limit, which might be
	 * different to the first one
	 */
2171
	ret = cpufreq_driver->verify(new_policy);
2172
	if (ret)
2173
		return ret;
L
Linus Torvalds 已提交
2174 2175

	/* notification of the new policy */
2176
	blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
2177
			CPUFREQ_NOTIFY, new_policy);
L
Linus Torvalds 已提交
2178

2179 2180
	policy->min = new_policy->min;
	policy->max = new_policy->max;
L
Linus Torvalds 已提交
2181

2182
	pr_debug("new min and max freqs are %u - %u kHz\n",
2183
		 policy->min, policy->max);
L
Linus Torvalds 已提交
2184

2185
	if (cpufreq_driver->setpolicy) {
2186
		policy->policy = new_policy->policy;
2187
		pr_debug("setting range\n");
2188 2189
		return cpufreq_driver->setpolicy(new_policy);
	}
L
Linus Torvalds 已提交
2190

2191 2192
	if (new_policy->governor == policy->governor)
		goto out;
2193

2194 2195 2196 2197 2198 2199
	pr_debug("governor switch\n");

	/* save old, working values */
	old_gov = policy->governor;
	/* end old governor */
	if (old_gov) {
2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213
		ret = __cpufreq_governor(policy, CPUFREQ_GOV_STOP);
		if (ret) {
			/* This can happen due to race with other operations */
			pr_debug("%s: Failed to Stop Governor: %s (%d)\n",
				 __func__, old_gov->name, ret);
			return ret;
		}

		ret = __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
		if (ret) {
			pr_err("%s: Failed to Exit Governor: %s (%d)\n",
			       __func__, old_gov->name, ret);
			return ret;
		}
L
Linus Torvalds 已提交
2214 2215
	}

2216 2217
	/* start new governor */
	policy->governor = new_policy->governor;
2218 2219 2220 2221
	ret = __cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT);
	if (!ret) {
		ret = __cpufreq_governor(policy, CPUFREQ_GOV_START);
		if (!ret)
2222 2223 2224 2225 2226 2227 2228 2229 2230
			goto out;

		__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_EXIT);
	}

	/* new governor failed, so re-start old one */
	pr_debug("starting governor %s failed\n", policy->governor->name);
	if (old_gov) {
		policy->governor = old_gov;
2231 2232 2233 2234
		if (__cpufreq_governor(policy, CPUFREQ_GOV_POLICY_INIT))
			policy->governor = NULL;
		else
			__cpufreq_governor(policy, CPUFREQ_GOV_START);
2235 2236
	}

2237
	return ret;
2238 2239 2240 2241

 out:
	pr_debug("governor: change or update limits\n");
	return __cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
L
Linus Torvalds 已提交
2242 2243 2244 2245 2246 2247
}

/**
 *	cpufreq_update_policy - re-evaluate an existing cpufreq policy
 *	@cpu: CPU which shall be re-evaluated
 *
L
Lucas De Marchi 已提交
2248
 *	Useful for policy notifiers which have different necessities
L
Linus Torvalds 已提交
2249 2250 2251 2252
 *	at different times.
 */
int cpufreq_update_policy(unsigned int cpu)
{
2253 2254
	struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
	struct cpufreq_policy new_policy;
2255
	int ret;
L
Linus Torvalds 已提交
2256

2257 2258
	if (!policy)
		return -ENODEV;
L
Linus Torvalds 已提交
2259

2260
	down_write(&policy->rwsem);
L
Linus Torvalds 已提交
2261

2262
	pr_debug("updating policy for CPU %u\n", cpu);
2263
	memcpy(&new_policy, policy, sizeof(*policy));
2264 2265
	new_policy.min = policy->user_policy.min;
	new_policy.max = policy->user_policy.max;
L
Linus Torvalds 已提交
2266

2267 2268 2269 2270
	/*
	 * BIOS might change freq behind our back
	 * -> ask driver for current freq and notify governors about a change
	 */
2271
	if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
2272
		new_policy.cur = cpufreq_driver->get(cpu);
2273 2274
		if (WARN_ON(!new_policy.cur)) {
			ret = -EIO;
2275
			goto unlock;
2276 2277
		}

2278
		if (!policy->cur) {
2279
			pr_debug("Driver did not initialize current freq\n");
2280
			policy->cur = new_policy.cur;
2281
		} else {
2282
			if (policy->cur != new_policy.cur && has_target())
2283
				cpufreq_out_of_sync(policy, new_policy.cur);
2284
		}
2285 2286
	}

2287
	ret = cpufreq_set_policy(policy, &new_policy);
L
Linus Torvalds 已提交
2288

2289
unlock:
2290
	up_write(&policy->rwsem);
2291

2292
	cpufreq_cpu_put(policy);
L
Linus Torvalds 已提交
2293 2294 2295 2296
	return ret;
}
EXPORT_SYMBOL(cpufreq_update_policy);

2297
static int cpufreq_cpu_callback(struct notifier_block *nfb,
2298 2299 2300 2301
					unsigned long action, void *hcpu)
{
	unsigned int cpu = (unsigned long)hcpu;

2302 2303 2304 2305
	switch (action & ~CPU_TASKS_FROZEN) {
	case CPU_ONLINE:
		cpufreq_online(cpu);
		break;
2306

2307 2308 2309
	case CPU_DOWN_PREPARE:
		cpufreq_offline_prepare(cpu);
		break;
2310

2311 2312 2313
	case CPU_POST_DEAD:
		cpufreq_offline_finish(cpu);
		break;
2314

2315 2316 2317
	case CPU_DOWN_FAILED:
		cpufreq_online(cpu);
		break;
2318 2319 2320 2321
	}
	return NOTIFY_OK;
}

2322
static struct notifier_block __refdata cpufreq_cpu_notifier = {
2323
	.notifier_call = cpufreq_cpu_callback,
2324
};
L
Linus Torvalds 已提交
2325

2326 2327 2328 2329 2330 2331 2332 2333 2334
/*********************************************************************
 *               BOOST						     *
 *********************************************************************/
static int cpufreq_boost_set_sw(int state)
{
	struct cpufreq_frequency_table *freq_table;
	struct cpufreq_policy *policy;
	int ret = -EINVAL;

2335
	for_each_active_policy(policy) {
2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370
		freq_table = cpufreq_frequency_get_table(policy->cpu);
		if (freq_table) {
			ret = cpufreq_frequency_table_cpuinfo(policy,
							freq_table);
			if (ret) {
				pr_err("%s: Policy frequency update failed\n",
				       __func__);
				break;
			}
			policy->user_policy.max = policy->max;
			__cpufreq_governor(policy, CPUFREQ_GOV_LIMITS);
		}
	}

	return ret;
}

int cpufreq_boost_trigger_state(int state)
{
	unsigned long flags;
	int ret = 0;

	if (cpufreq_driver->boost_enabled == state)
		return 0;

	write_lock_irqsave(&cpufreq_driver_lock, flags);
	cpufreq_driver->boost_enabled = state;
	write_unlock_irqrestore(&cpufreq_driver_lock, flags);

	ret = cpufreq_driver->set_boost(state);
	if (ret) {
		write_lock_irqsave(&cpufreq_driver_lock, flags);
		cpufreq_driver->boost_enabled = !state;
		write_unlock_irqrestore(&cpufreq_driver_lock, flags);

2371 2372
		pr_err("%s: Cannot %s BOOST\n",
		       __func__, state ? "enable" : "disable");
2373 2374 2375 2376 2377
	}

	return ret;
}

2378
static bool cpufreq_boost_supported(void)
2379
{
2380
	return likely(cpufreq_driver) && cpufreq_driver->set_boost;
2381 2382
}

2383 2384 2385 2386
static int create_boost_sysfs_file(void)
{
	int ret;

2387
	ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
2388 2389 2390 2391 2392 2393 2394 2395 2396 2397
	if (ret)
		pr_err("%s: cannot register global BOOST sysfs file\n",
		       __func__);

	return ret;
}

static void remove_boost_sysfs_file(void)
{
	if (cpufreq_boost_supported())
2398
		sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
2399 2400 2401 2402 2403 2404 2405 2406 2407 2408
}

int cpufreq_enable_boost_support(void)
{
	if (!cpufreq_driver)
		return -EINVAL;

	if (cpufreq_boost_supported())
		return 0;

2409
	cpufreq_driver->set_boost = cpufreq_boost_set_sw;
2410 2411 2412 2413 2414 2415

	/* This will get removed on driver unregister */
	return create_boost_sysfs_file();
}
EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);

2416 2417 2418 2419 2420 2421
int cpufreq_boost_enabled(void)
{
	return cpufreq_driver->boost_enabled;
}
EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);

L
Linus Torvalds 已提交
2422 2423 2424 2425 2426 2427 2428 2429 2430
/*********************************************************************
 *               REGISTER / UNREGISTER CPUFREQ DRIVER                *
 *********************************************************************/

/**
 * cpufreq_register_driver - register a CPU Frequency driver
 * @driver_data: A struct cpufreq_driver containing the values#
 * submitted by the CPU Frequency driver.
 *
2431
 * Registers a CPU Frequency driver to this core code. This code
L
Linus Torvalds 已提交
2432
 * returns zero on success, -EBUSY when another driver got here first
2433
 * (and isn't unregistered in the meantime).
L
Linus Torvalds 已提交
2434 2435
 *
 */
2436
int cpufreq_register_driver(struct cpufreq_driver *driver_data)
L
Linus Torvalds 已提交
2437 2438 2439 2440
{
	unsigned long flags;
	int ret;

2441 2442 2443
	if (cpufreq_disabled())
		return -ENODEV;

L
Linus Torvalds 已提交
2444
	if (!driver_data || !driver_data->verify || !driver_data->init ||
2445
	    !(driver_data->setpolicy || driver_data->target_index ||
2446 2447
		    driver_data->target) ||
	     (driver_data->setpolicy && (driver_data->target_index ||
2448 2449
		    driver_data->target)) ||
	     (!!driver_data->get_intermediate != !!driver_data->target_intermediate))
L
Linus Torvalds 已提交
2450 2451
		return -EINVAL;

2452
	pr_debug("trying to register driver %s\n", driver_data->name);
L
Linus Torvalds 已提交
2453

2454 2455 2456
	/* Protect against concurrent CPU online/offline. */
	get_online_cpus();

2457
	write_lock_irqsave(&cpufreq_driver_lock, flags);
2458
	if (cpufreq_driver) {
2459
		write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2460 2461
		ret = -EEXIST;
		goto out;
L
Linus Torvalds 已提交
2462
	}
2463
	cpufreq_driver = driver_data;
2464
	write_unlock_irqrestore(&cpufreq_driver_lock, flags);
L
Linus Torvalds 已提交
2465

2466 2467 2468
	if (driver_data->setpolicy)
		driver_data->flags |= CPUFREQ_CONST_LOOPS;

2469 2470 2471 2472 2473
	if (cpufreq_boost_supported()) {
		ret = create_boost_sysfs_file();
		if (ret)
			goto err_null_driver;
	}
2474

2475
	ret = subsys_interface_register(&cpufreq_interface);
2476
	if (ret)
2477
		goto err_boost_unreg;
L
Linus Torvalds 已提交
2478

2479 2480
	if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
	    list_empty(&cpufreq_policy_list)) {
L
Linus Torvalds 已提交
2481
		/* if all ->init() calls failed, unregister */
2482 2483 2484
		pr_debug("%s: No CPU initialized for driver %s\n", __func__,
			 driver_data->name);
		goto err_if_unreg;
L
Linus Torvalds 已提交
2485 2486
	}

2487
	register_hotcpu_notifier(&cpufreq_cpu_notifier);
2488
	pr_debug("driver %s up and running\n", driver_data->name);
L
Linus Torvalds 已提交
2489

2490 2491 2492 2493
out:
	put_online_cpus();
	return ret;

2494 2495
err_if_unreg:
	subsys_interface_unregister(&cpufreq_interface);
2496
err_boost_unreg:
2497
	remove_boost_sysfs_file();
2498
err_null_driver:
2499
	write_lock_irqsave(&cpufreq_driver_lock, flags);
2500
	cpufreq_driver = NULL;
2501
	write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2502
	goto out;
L
Linus Torvalds 已提交
2503 2504 2505 2506 2507 2508
}
EXPORT_SYMBOL_GPL(cpufreq_register_driver);

/**
 * cpufreq_unregister_driver - unregister the current CPUFreq driver
 *
2509
 * Unregister the current CPUFreq driver. Only call this if you have
L
Linus Torvalds 已提交
2510 2511 2512 2513
 * the right to do so, i.e. if you have succeeded in initialising before!
 * Returns zero if successful, and -EINVAL if the cpufreq_driver is
 * currently not initialised.
 */
2514
int cpufreq_unregister_driver(struct cpufreq_driver *driver)
L
Linus Torvalds 已提交
2515 2516 2517
{
	unsigned long flags;

2518
	if (!cpufreq_driver || (driver != cpufreq_driver))
L
Linus Torvalds 已提交
2519 2520
		return -EINVAL;

2521
	pr_debug("unregistering driver %s\n", driver->name);
L
Linus Torvalds 已提交
2522

2523 2524
	/* Protect against concurrent cpu hotplug */
	get_online_cpus();
2525
	subsys_interface_unregister(&cpufreq_interface);
2526
	remove_boost_sysfs_file();
2527
	unregister_hotcpu_notifier(&cpufreq_cpu_notifier);
L
Linus Torvalds 已提交
2528

2529
	write_lock_irqsave(&cpufreq_driver_lock, flags);
2530

2531
	cpufreq_driver = NULL;
2532

2533
	write_unlock_irqrestore(&cpufreq_driver_lock, flags);
2534
	put_online_cpus();
L
Linus Torvalds 已提交
2535 2536 2537 2538

	return 0;
}
EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
2539

2540 2541 2542 2543 2544 2545 2546 2547
/*
 * Stop cpufreq at shutdown to make sure it isn't holding any locks
 * or mutexes when secondary CPUs are halted.
 */
static struct syscore_ops cpufreq_syscore_ops = {
	.shutdown = cpufreq_suspend,
};

2548 2549 2550
struct kobject *cpufreq_global_kobject;
EXPORT_SYMBOL(cpufreq_global_kobject);

2551 2552
static int __init cpufreq_core_init(void)
{
2553 2554 2555
	if (cpufreq_disabled())
		return -ENODEV;

2556
	cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
2557 2558
	BUG_ON(!cpufreq_global_kobject);

2559 2560
	register_syscore_ops(&cpufreq_syscore_ops);

2561 2562 2563
	return 0;
}
core_initcall(cpufreq_core_init);