2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/drivers/cpufreq/cpufreq.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Russell King
|
|
|
|
* (C) 2002 - 2003 Dominik Brodowski <linux@brodo.de>
|
2013-06-19 08:49:33 +00:00
|
|
|
* (C) 2013 Viresh Kumar <viresh.kumar@linaro.org>
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2005-10-30 22:59:54 +00:00
|
|
|
* Oct 2005 - Ashok Raj <ashok.raj@intel.com>
|
2006-02-28 05:43:23 +00:00
|
|
|
* Added handling for CPU hotplug
|
2006-03-05 08:37:23 +00:00
|
|
|
* Feb 2006 - Jacob Shin <jacob.shin@amd.com>
|
|
|
|
* Fix handling for CPU hotplug -- affected CPUs
|
2005-10-30 22:59:54 +00:00
|
|
|
*
|
2005-04-16 22:20:36 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2012-10-22 23:29:03 +00:00
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
|
|
|
|
|
2013-08-06 17:23:03 +00:00
|
|
|
#include <linux/cpu.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/cpufreq.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/device.h>
|
2013-08-06 17:23:03 +00:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel_stat.h>
|
|
|
|
#include <linux/module.h>
|
2006-01-13 23:54:22 +00:00
|
|
|
#include <linux/mutex.h>
|
2013-08-06 17:23:03 +00:00
|
|
|
#include <linux/slab.h>
|
2014-03-04 03:00:26 +00:00
|
|
|
#include <linux/suspend.h>
|
2014-12-24 06:09:48 +00:00
|
|
|
#include <linux/syscore_ops.h>
|
2013-08-06 17:23:03 +00:00
|
|
|
#include <linux/tick.h>
|
2010-04-20 11:17:36 +00:00
|
|
|
#include <trace/events/power.h>
|
|
|
|
|
2015-01-27 08:36:08 +00:00
|
|
|
static LIST_HEAD(cpufreq_policy_list);
|
2015-05-12 06:50:11 +00:00
|
|
|
|
|
|
|
static inline bool policy_is_inactive(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
return cpumask_empty(policy->cpus);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Macros to iterate over CPU policies */
|
2016-02-21 18:53:12 +00:00
|
|
|
#define for_each_suitable_policy(__policy, __active) \
|
|
|
|
list_for_each_entry(__policy, &cpufreq_policy_list, policy_list) \
|
|
|
|
if ((__active) == !policy_is_inactive(__policy))
|
2015-05-12 06:50:11 +00:00
|
|
|
|
|
|
|
#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) \
|
2015-01-27 08:36:08 +00:00
|
|
|
list_for_each_entry(__policy, &cpufreq_policy_list, policy_list)
|
|
|
|
|
2015-01-27 08:36:09 +00:00
|
|
|
/* Iterate over governors */
|
|
|
|
static LIST_HEAD(cpufreq_governor_list);
|
|
|
|
#define for_each_governor(__governor) \
|
|
|
|
list_for_each_entry(__governor, &cpufreq_governor_list, governor_list)
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
2006-08-11 21:59:28 +00:00
|
|
|
* The "cpufreq driver" - the arch- or hardware-dependent low
|
2005-04-16 22:20:36 +00:00
|
|
|
* level driver of CPUFreq support, and its spinlock. This lock
|
|
|
|
* also protects the cpufreq_cpu_data array.
|
|
|
|
*/
|
2013-04-28 22:08:16 +00:00
|
|
|
static struct cpufreq_driver *cpufreq_driver;
|
2008-03-25 22:06:53 +00:00
|
|
|
static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data);
|
2013-06-19 08:49:33 +00:00
|
|
|
static DEFINE_RWLOCK(cpufreq_driver_lock);
|
|
|
|
|
2014-03-04 03:00:26 +00:00
|
|
|
/* Flag to suspend/resume CPUFreq governors */
|
|
|
|
static bool cpufreq_suspended;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-10-25 14:15:48 +00:00
|
|
|
static inline bool has_target(void)
|
|
|
|
{
|
|
|
|
return cpufreq_driver->target_index || cpufreq_driver->target;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* internal prototypes */
|
2015-01-02 07:04:29 +00:00
|
|
|
static unsigned int __cpufreq_get(struct cpufreq_policy *policy);
|
2016-05-13 23:01:46 +00:00
|
|
|
static int cpufreq_init_governor(struct cpufreq_policy *policy);
|
|
|
|
static void cpufreq_exit_governor(struct cpufreq_policy *policy);
|
2016-03-21 14:45:24 +00:00
|
|
|
static int cpufreq_start_governor(struct cpufreq_policy *policy);
|
2016-05-13 23:01:46 +00:00
|
|
|
static void cpufreq_stop_governor(struct cpufreq_policy *policy);
|
|
|
|
static void cpufreq_governor_limits(struct cpufreq_policy *policy);
|
2016-05-12 13:14:12 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
2006-02-28 05:43:23 +00:00
|
|
|
* Two notifier lists: the "policy" list is involved in the
|
|
|
|
* validation process for a new CPU frequency policy; the
|
2005-04-16 22:20:36 +00:00
|
|
|
* "transition" list for kernel code that needs to handle
|
|
|
|
* changes to devices when the CPU clock speed changes.
|
|
|
|
* The mutex locks both lists.
|
|
|
|
*/
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
static BLOCKING_NOTIFIER_HEAD(cpufreq_policy_notifier_list);
|
2006-10-04 09:17:06 +00:00
|
|
|
static struct srcu_notifier_head cpufreq_transition_notifier_list;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-02-16 10:41:24 +00:00
|
|
|
static bool init_cpufreq_transition_notifier_list_called;
|
2006-10-04 09:17:06 +00:00
|
|
|
static int __init init_cpufreq_transition_notifier_list(void)
|
|
|
|
{
|
|
|
|
srcu_init_notifier_head(&cpufreq_transition_notifier_list);
|
2008-02-16 10:41:24 +00:00
|
|
|
init_cpufreq_transition_notifier_list_called = true;
|
2006-10-04 09:17:06 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2006-11-20 19:47:18 +00:00
|
|
|
pure_initcall(init_cpufreq_transition_notifier_list);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-03-13 23:18:39 +00:00
|
|
|
static int off __read_mostly;
|
2012-10-25 22:51:32 +00:00
|
|
|
static int cpufreq_disabled(void)
|
2012-03-13 23:18:39 +00:00
|
|
|
{
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
void disable_cpufreq(void)
|
|
|
|
{
|
|
|
|
off = 1;
|
|
|
|
}
|
2009-01-18 06:37:11 +00:00
|
|
|
static DEFINE_MUTEX(cpufreq_governor_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-03-27 15:58:58 +00:00
|
|
|
bool have_governor_per_policy(void)
|
|
|
|
{
|
2013-10-02 08:43:18 +00:00
|
|
|
return !!(cpufreq_driver->flags & CPUFREQ_HAVE_GOVERNOR_PER_POLICY);
|
2013-03-27 15:58:58 +00:00
|
|
|
}
|
2013-05-16 05:09:56 +00:00
|
|
|
EXPORT_SYMBOL_GPL(have_governor_per_policy);
|
2013-03-27 15:58:58 +00:00
|
|
|
|
2013-05-16 05:09:57 +00:00
|
|
|
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);
|
|
|
|
|
2013-05-17 11:26:32 +00:00
|
|
|
static inline u64 get_cpu_idle_time_jiffy(unsigned int cpu, u64 *wall)
|
|
|
|
{
|
|
|
|
u64 idle_time;
|
|
|
|
u64 cur_wall_time;
|
|
|
|
u64 busy_time;
|
|
|
|
|
2017-01-31 03:09:19 +00:00
|
|
|
cur_wall_time = jiffies64_to_nsecs(get_jiffies_64());
|
2013-05-17 11:26:32 +00:00
|
|
|
|
|
|
|
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)
|
2017-01-31 03:09:19 +00:00
|
|
|
*wall = div_u64(cur_wall_time, NSEC_PER_USEC);
|
2013-05-17 11:26:32 +00:00
|
|
|
|
2017-01-31 03:09:19 +00:00
|
|
|
return div_u64(idle_time, NSEC_PER_USEC);
|
2013-05-17 11:26:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2017-09-26 16:41:07 +00:00
|
|
|
__weak void arch_set_freq_scale(struct cpumask *cpus, unsigned long cur_freq,
|
|
|
|
unsigned long max_freq)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(arch_set_freq_scale);
|
|
|
|
|
2013-10-03 14:59:07 +00:00
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
/*
|
2015-05-22 17:18:22 +00:00
|
|
|
* The driver only supports the SMP configuration where all processors
|
2013-10-03 14:59:07 +00:00
|
|
|
* share the clock and voltage and clock.
|
|
|
|
*/
|
|
|
|
cpumask_setall(policy->cpus);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_generic_init);
|
|
|
|
|
2015-09-16 00:17:49 +00:00
|
|
|
struct cpufreq_policy *cpufreq_cpu_get_raw(unsigned int cpu)
|
2014-01-09 15:08:43 +00:00
|
|
|
{
|
|
|
|
struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
|
|
|
|
|
2015-05-08 06:23:45 +00:00
|
|
|
return policy && cpumask_test_cpu(cpu, policy->cpus) ? policy : NULL;
|
|
|
|
}
|
2015-09-16 00:17:49 +00:00
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_cpu_get_raw);
|
2015-05-08 06:23:45 +00:00
|
|
|
|
|
|
|
unsigned int cpufreq_generic_get(unsigned int cpu)
|
|
|
|
{
|
|
|
|
struct cpufreq_policy *policy = cpufreq_cpu_get_raw(cpu);
|
|
|
|
|
2014-01-09 15:08:43 +00:00
|
|
|
if (!policy || IS_ERR(policy->clk)) {
|
2014-03-11 17:03:00 +00:00
|
|
|
pr_err("%s: No %s associated to cpu: %d\n",
|
|
|
|
__func__, policy ? "clk" : "policy", cpu);
|
2014-01-09 15:08:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return clk_get_rate(policy->clk) / 1000;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_generic_get);
|
|
|
|
|
2015-02-19 11:32:03 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-08-06 17:23:11 +00:00
|
|
|
struct cpufreq_policy *cpufreq_cpu_get(unsigned int cpu)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-08-06 17:23:11 +00:00
|
|
|
struct cpufreq_policy *policy = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long flags;
|
|
|
|
|
2015-02-19 11:32:05 +00:00
|
|
|
if (WARN_ON(cpu >= nr_cpu_ids))
|
2013-08-06 17:23:11 +00:00
|
|
|
return NULL;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* get the cpufreq driver */
|
2013-04-28 22:08:16 +00:00
|
|
|
read_lock_irqsave(&cpufreq_driver_lock, flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-08-06 17:23:11 +00:00
|
|
|
if (cpufreq_driver) {
|
|
|
|
/* get the CPU */
|
2015-05-08 06:23:45 +00:00
|
|
|
policy = cpufreq_cpu_get_raw(cpu);
|
2013-08-06 17:23:11 +00:00
|
|
|
if (policy)
|
|
|
|
kobject_get(&policy->kobj);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-08-06 17:23:11 +00:00
|
|
|
read_unlock_irqrestore(&cpufreq_driver_lock, flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-08-06 17:23:05 +00:00
|
|
|
return policy;
|
2012-07-20 18:14:38 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_cpu_get);
|
|
|
|
|
2015-02-19 11:32:03 +00:00
|
|
|
/**
|
|
|
|
* 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().
|
|
|
|
*/
|
2013-08-06 17:23:05 +00:00
|
|
|
void cpufreq_cpu_put(struct cpufreq_policy *policy)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-08-06 17:23:11 +00:00
|
|
|
kobject_put(&policy->kobj);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
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
|
2006-02-28 05:43:23 +00:00
|
|
|
* systems as each CPU might be scaled differently. So, use the arch
|
2005-04-16 22:20:36 +00:00
|
|
|
* per-CPU loops_per_jiffy value wherever possible.
|
|
|
|
*/
|
2006-01-14 21:20:43 +00:00
|
|
|
static void adjust_jiffies(unsigned long val, struct cpufreq_freqs *ci)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2015-01-02 07:04:34 +00:00
|
|
|
#ifndef CONFIG_SMP
|
|
|
|
static unsigned long l_p_j_ref;
|
|
|
|
static unsigned int l_p_j_ref_freq;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
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;
|
2014-03-11 17:03:00 +00:00
|
|
|
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);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2014-03-19 05:54:58 +00:00
|
|
|
if (val == CPUFREQ_POSTCHANGE && ci->old != ci->new) {
|
2006-10-26 10:50:58 +00:00
|
|
|
loops_per_jiffy = cpufreq_scale(l_p_j_ref, l_p_j_ref_freq,
|
|
|
|
ci->new);
|
2014-03-11 17:03:00 +00:00
|
|
|
pr_debug("scaling loops_per_jiffy to %lu for frequency %u kHz\n",
|
|
|
|
loops_per_jiffy, ci->new);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
#endif
|
2015-01-02 07:04:34 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-06-19 08:49:34 +00:00
|
|
|
static void __cpufreq_notify_transition(struct cpufreq_policy *policy,
|
2013-03-24 06:26:43 +00:00
|
|
|
struct cpufreq_freqs *freqs, unsigned int state)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
BUG_ON(irqs_disabled());
|
|
|
|
|
2013-01-17 16:22:21 +00:00
|
|
|
if (cpufreq_disabled())
|
|
|
|
return;
|
|
|
|
|
2013-04-28 22:08:16 +00:00
|
|
|
freqs->flags = cpufreq_driver->flags;
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("notification %u of frequency transition to %u kHz\n",
|
2014-03-11 17:03:00 +00:00
|
|
|
state, freqs->new);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
switch (state) {
|
2006-01-31 23:53:55 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
case CPUFREQ_PRECHANGE:
|
2006-02-28 05:43:23 +00:00
|
|
|
/* detect if the driver reported a value as "old frequency"
|
2006-01-31 23:53:55 +00:00
|
|
|
* which is not equal to what the cpufreq core thinks is
|
|
|
|
* "old frequency".
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2013-04-28 22:08:16 +00:00
|
|
|
if (!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
|
2006-01-31 23:53:55 +00:00
|
|
|
if ((policy) && (policy->cpu == freqs->cpu) &&
|
|
|
|
(policy->cur) && (policy->cur != freqs->old)) {
|
2014-03-11 17:03:00 +00:00
|
|
|
pr_debug("Warning: CPU frequency is %u, cpufreq assumed %u kHz\n",
|
|
|
|
freqs->old, policy->cur);
|
2006-01-31 23:53:55 +00:00
|
|
|
freqs->old = policy->cur;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-04 09:17:06 +00:00
|
|
|
srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
CPUFREQ_PRECHANGE, freqs);
|
2005-04-16 22:20:36 +00:00
|
|
|
adjust_jiffies(CPUFREQ_PRECHANGE, freqs);
|
|
|
|
break;
|
2006-01-31 23:53:55 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
case CPUFREQ_POSTCHANGE:
|
|
|
|
adjust_jiffies(CPUFREQ_POSTCHANGE, freqs);
|
2014-03-11 17:03:00 +00:00
|
|
|
pr_debug("FREQ: %lu - CPU: %lu\n",
|
|
|
|
(unsigned long)freqs->new, (unsigned long)freqs->cpu);
|
2011-01-03 16:50:44 +00:00
|
|
|
trace_cpu_frequency(freqs->new, freqs->cpu);
|
2016-05-31 20:14:44 +00:00
|
|
|
cpufreq_stats_record_transition(policy, freqs->new);
|
2006-10-04 09:17:06 +00:00
|
|
|
srcu_notifier_call_chain(&cpufreq_transition_notifier_list,
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
CPUFREQ_POSTCHANGE, freqs);
|
2006-01-31 23:53:55 +00:00
|
|
|
if (likely(policy) && likely(policy->cpu == freqs->cpu))
|
|
|
|
policy->cur = freqs->new;
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-06-19 08:49:33 +00:00
|
|
|
|
2013-03-24 06:26:43 +00:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2014-03-24 08:05:46 +00:00
|
|
|
static void cpufreq_notify_transition(struct cpufreq_policy *policy,
|
2013-03-24 06:26:43 +00:00
|
|
|
struct cpufreq_freqs *freqs, unsigned int state)
|
|
|
|
{
|
|
|
|
for_each_cpu(freqs->cpu, policy->cpus)
|
|
|
|
__cpufreq_notify_transition(policy, freqs, state);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-12-02 05:34:12 +00:00
|
|
|
/* Do post notifications when there are chances that transition has failed */
|
2014-03-24 08:05:46 +00:00
|
|
|
static void cpufreq_notify_post_transition(struct cpufreq_policy *policy,
|
2013-12-02 05:34:12 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
cpufreq: Make sure frequency transitions are serialized
Whenever we change the frequency of a CPU, we call the PRECHANGE and POSTCHANGE
notifiers. They must be serialized, i.e. PRECHANGE and POSTCHANGE notifiers
should strictly alternate, thereby preventing two different sets of PRECHANGE or
POSTCHANGE notifiers from interleaving arbitrarily.
The following examples illustrate why this is important:
Scenario 1:
-----------
A thread reading the value of cpuinfo_cur_freq, will call
__cpufreq_cpu_get()->cpufreq_out_of_sync()->cpufreq_notify_transition()
The ondemand governor can decide to change the frequency of the CPU at the same
time and hence it can end up sending the notifications via ->target().
If the notifiers are not serialized, the following sequence can occur:
- PRECHANGE Notification for freq A (from cpuinfo_cur_freq)
- PRECHANGE Notification for freq B (from target())
- Freq changed by target() to B
- POSTCHANGE Notification for freq B
- POSTCHANGE Notification for freq A
We can see from the above that the last POSTCHANGE Notification happens for freq
A but the hardware is set to run at freq B.
Where would we break then?: adjust_jiffies() in cpufreq.c & cpufreq_callback()
in arch/arm/kernel/smp.c (which also adjusts the jiffies). All the
loops_per_jiffy calculations will get messed up.
Scenario 2:
-----------
The governor calls __cpufreq_driver_target() to change the frequency. At the
same time, if we change scaling_{min|max}_freq from sysfs, it will end up
calling the governor's CPUFREQ_GOV_LIMITS notification, which will also call
__cpufreq_driver_target(). And hence we end up issuing concurrent calls to
->target().
Typically, platforms have the following logic in their ->target() routines:
(Eg: cpufreq-cpu0, omap, exynos, etc)
A. If new freq is more than old: Increase voltage
B. Change freq
C. If new freq is less than old: decrease voltage
Now, if the two concurrent calls to ->target() are X and Y, where X is trying to
increase the freq and Y is trying to decrease it, we get the following race
condition:
X.A: voltage gets increased for larger freq
Y.A: nothing happens
Y.B: freq gets decreased
Y.C: voltage gets decreased
X.B: freq gets increased
X.C: nothing happens
Thus we can end up setting a freq which is not supported by the voltage we have
set. That will probably make the clock to the CPU unstable and the system might
not work properly anymore.
This patch introduces a set of synchronization primitives to serialize frequency
transitions, which are to be used as shown below:
cpufreq_freq_transition_begin();
//Perform the frequency change
cpufreq_freq_transition_end();
The _begin() call sends the PRECHANGE notification whereas the _end() call sends
the POSTCHANGE notification. Also, all the necessary synchronization is handled
within these calls. In particular, even drivers which set the ASYNC_NOTIFICATION
flag can also use these APIs for performing frequency transitions (ie., you can
call _begin() from one task, and call the corresponding _end() from a different
task).
The actual synchronization underneath is not that complicated:
The key challenge is to allow drivers to begin the transition from one thread
and end it in a completely different thread (this is to enable drivers that do
asynchronous POSTCHANGE notification from bottom-halves, to also use the same
interface).
To achieve this, a 'transition_ongoing' flag, a 'transition_lock' spinlock and a
wait-queue are added per-policy. The flag and the wait-queue are used in
conjunction to create an "uninterrupted flow" from _begin() to _end(). The
spinlock is used to ensure that only one such "flow" is in flight at any given
time. Put together, this provides us all the necessary synchronization.
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2014-03-24 08:05:44 +00:00
|
|
|
void cpufreq_freq_transition_begin(struct cpufreq_policy *policy,
|
|
|
|
struct cpufreq_freqs *freqs)
|
|
|
|
{
|
cpufreq: Catch double invocations of cpufreq_freq_transition_begin/end
Some cpufreq drivers were redundantly invoking the _begin() and _end()
APIs around frequency transitions, and this double invocation (one from
the cpufreq core and the other from the cpufreq driver) used to result
in a self-deadlock, leading to system hangs during boot. (The _begin()
API makes contending callers wait until the previous invocation is
complete. Hence, the cpufreq driver would end up waiting on itself!).
Now all such drivers have been fixed, but debugging this issue was not
very straight-forward (even lockdep didn't catch this). So let us add a
debug infrastructure to the cpufreq core to catch such issues more easily
in the future.
We add a new field called 'transition_task' to the policy structure, to keep
track of the task which is performing the frequency transition. Using this
field, we make note of this task during _begin() and print a warning if we
find a case where the same task is calling _begin() again, before completing
the previous frequency transition using the corresponding _end().
We have left out ASYNC_NOTIFICATION drivers from this debug infrastructure
for 2 reasons:
1. At the moment, we have no way to avoid a particular scenario where this
debug infrastructure can emit false-positive warnings for such drivers.
The scenario is depicted below:
Task A Task B
/* 1st freq transition */
Invoke _begin() {
...
...
}
Change the frequency
/* 2nd freq transition */
Invoke _begin() {
... //waiting for B to
... //finish _end() for
... //the 1st transition
... | Got interrupt for successful
... | change of frequency (1st one).
... |
... | /* 1st freq transition */
... | Invoke _end() {
... | ...
... V }
...
...
}
This scenario is actually deadlock-free because, once Task A changes the
frequency, it is Task B's responsibility to invoke the corresponding
_end() for the 1st frequency transition. Hence it is perfectly legal for
Task A to go ahead and attempt another frequency transition in the meantime.
(Of course it won't be able to proceed until Task B finishes the 1st _end(),
but this doesn't cause a deadlock or a hang).
The debug infrastructure cannot handle this scenario and will treat it as
a deadlock and print a warning. To avoid this, we exclude such drivers
from the purview of this code.
2. Luckily, we don't _need_ this infrastructure for ASYNC_NOTIFICATION drivers
at all! The cpufreq core does not automatically invoke the _begin() and
_end() APIs during frequency transitions in such drivers. Thus, the driver
alone is responsible for invoking _begin()/_end() and hence there shouldn't
be any conflicts which lead to double invocations. So, we can skip these
drivers, since the probability that such drivers will hit this problem is
extremely low, as outlined above.
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2014-05-05 07:22:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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);
|
|
|
|
|
cpufreq: Make sure frequency transitions are serialized
Whenever we change the frequency of a CPU, we call the PRECHANGE and POSTCHANGE
notifiers. They must be serialized, i.e. PRECHANGE and POSTCHANGE notifiers
should strictly alternate, thereby preventing two different sets of PRECHANGE or
POSTCHANGE notifiers from interleaving arbitrarily.
The following examples illustrate why this is important:
Scenario 1:
-----------
A thread reading the value of cpuinfo_cur_freq, will call
__cpufreq_cpu_get()->cpufreq_out_of_sync()->cpufreq_notify_transition()
The ondemand governor can decide to change the frequency of the CPU at the same
time and hence it can end up sending the notifications via ->target().
If the notifiers are not serialized, the following sequence can occur:
- PRECHANGE Notification for freq A (from cpuinfo_cur_freq)
- PRECHANGE Notification for freq B (from target())
- Freq changed by target() to B
- POSTCHANGE Notification for freq B
- POSTCHANGE Notification for freq A
We can see from the above that the last POSTCHANGE Notification happens for freq
A but the hardware is set to run at freq B.
Where would we break then?: adjust_jiffies() in cpufreq.c & cpufreq_callback()
in arch/arm/kernel/smp.c (which also adjusts the jiffies). All the
loops_per_jiffy calculations will get messed up.
Scenario 2:
-----------
The governor calls __cpufreq_driver_target() to change the frequency. At the
same time, if we change scaling_{min|max}_freq from sysfs, it will end up
calling the governor's CPUFREQ_GOV_LIMITS notification, which will also call
__cpufreq_driver_target(). And hence we end up issuing concurrent calls to
->target().
Typically, platforms have the following logic in their ->target() routines:
(Eg: cpufreq-cpu0, omap, exynos, etc)
A. If new freq is more than old: Increase voltage
B. Change freq
C. If new freq is less than old: decrease voltage
Now, if the two concurrent calls to ->target() are X and Y, where X is trying to
increase the freq and Y is trying to decrease it, we get the following race
condition:
X.A: voltage gets increased for larger freq
Y.A: nothing happens
Y.B: freq gets decreased
Y.C: voltage gets decreased
X.B: freq gets increased
X.C: nothing happens
Thus we can end up setting a freq which is not supported by the voltage we have
set. That will probably make the clock to the CPU unstable and the system might
not work properly anymore.
This patch introduces a set of synchronization primitives to serialize frequency
transitions, which are to be used as shown below:
cpufreq_freq_transition_begin();
//Perform the frequency change
cpufreq_freq_transition_end();
The _begin() call sends the PRECHANGE notification whereas the _end() call sends
the POSTCHANGE notification. Also, all the necessary synchronization is handled
within these calls. In particular, even drivers which set the ASYNC_NOTIFICATION
flag can also use these APIs for performing frequency transitions (ie., you can
call _begin() from one task, and call the corresponding _end() from a different
task).
The actual synchronization underneath is not that complicated:
The key challenge is to allow drivers to begin the transition from one thread
and end it in a completely different thread (this is to enable drivers that do
asynchronous POSTCHANGE notification from bottom-halves, to also use the same
interface).
To achieve this, a 'transition_ongoing' flag, a 'transition_lock' spinlock and a
wait-queue are added per-policy. The flag and the wait-queue are used in
conjunction to create an "uninterrupted flow" from _begin() to _end(). The
spinlock is used to ensure that only one such "flow" is in flight at any given
time. Put together, this provides us all the necessary synchronization.
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2014-03-24 08:05:44 +00:00
|
|
|
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;
|
cpufreq: Catch double invocations of cpufreq_freq_transition_begin/end
Some cpufreq drivers were redundantly invoking the _begin() and _end()
APIs around frequency transitions, and this double invocation (one from
the cpufreq core and the other from the cpufreq driver) used to result
in a self-deadlock, leading to system hangs during boot. (The _begin()
API makes contending callers wait until the previous invocation is
complete. Hence, the cpufreq driver would end up waiting on itself!).
Now all such drivers have been fixed, but debugging this issue was not
very straight-forward (even lockdep didn't catch this). So let us add a
debug infrastructure to the cpufreq core to catch such issues more easily
in the future.
We add a new field called 'transition_task' to the policy structure, to keep
track of the task which is performing the frequency transition. Using this
field, we make note of this task during _begin() and print a warning if we
find a case where the same task is calling _begin() again, before completing
the previous frequency transition using the corresponding _end().
We have left out ASYNC_NOTIFICATION drivers from this debug infrastructure
for 2 reasons:
1. At the moment, we have no way to avoid a particular scenario where this
debug infrastructure can emit false-positive warnings for such drivers.
The scenario is depicted below:
Task A Task B
/* 1st freq transition */
Invoke _begin() {
...
...
}
Change the frequency
/* 2nd freq transition */
Invoke _begin() {
... //waiting for B to
... //finish _end() for
... //the 1st transition
... | Got interrupt for successful
... | change of frequency (1st one).
... |
... | /* 1st freq transition */
... | Invoke _end() {
... | ...
... V }
...
...
}
This scenario is actually deadlock-free because, once Task A changes the
frequency, it is Task B's responsibility to invoke the corresponding
_end() for the 1st frequency transition. Hence it is perfectly legal for
Task A to go ahead and attempt another frequency transition in the meantime.
(Of course it won't be able to proceed until Task B finishes the 1st _end(),
but this doesn't cause a deadlock or a hang).
The debug infrastructure cannot handle this scenario and will treat it as
a deadlock and print a warning. To avoid this, we exclude such drivers
from the purview of this code.
2. Luckily, we don't _need_ this infrastructure for ASYNC_NOTIFICATION drivers
at all! The cpufreq core does not automatically invoke the _begin() and
_end() APIs during frequency transitions in such drivers. Thus, the driver
alone is responsible for invoking _begin()/_end() and hence there shouldn't
be any conflicts which lead to double invocations. So, we can skip these
drivers, since the probability that such drivers will hit this problem is
extremely low, as outlined above.
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2014-05-05 07:22:39 +00:00
|
|
|
policy->transition_task = current;
|
cpufreq: Make sure frequency transitions are serialized
Whenever we change the frequency of a CPU, we call the PRECHANGE and POSTCHANGE
notifiers. They must be serialized, i.e. PRECHANGE and POSTCHANGE notifiers
should strictly alternate, thereby preventing two different sets of PRECHANGE or
POSTCHANGE notifiers from interleaving arbitrarily.
The following examples illustrate why this is important:
Scenario 1:
-----------
A thread reading the value of cpuinfo_cur_freq, will call
__cpufreq_cpu_get()->cpufreq_out_of_sync()->cpufreq_notify_transition()
The ondemand governor can decide to change the frequency of the CPU at the same
time and hence it can end up sending the notifications via ->target().
If the notifiers are not serialized, the following sequence can occur:
- PRECHANGE Notification for freq A (from cpuinfo_cur_freq)
- PRECHANGE Notification for freq B (from target())
- Freq changed by target() to B
- POSTCHANGE Notification for freq B
- POSTCHANGE Notification for freq A
We can see from the above that the last POSTCHANGE Notification happens for freq
A but the hardware is set to run at freq B.
Where would we break then?: adjust_jiffies() in cpufreq.c & cpufreq_callback()
in arch/arm/kernel/smp.c (which also adjusts the jiffies). All the
loops_per_jiffy calculations will get messed up.
Scenario 2:
-----------
The governor calls __cpufreq_driver_target() to change the frequency. At the
same time, if we change scaling_{min|max}_freq from sysfs, it will end up
calling the governor's CPUFREQ_GOV_LIMITS notification, which will also call
__cpufreq_driver_target(). And hence we end up issuing concurrent calls to
->target().
Typically, platforms have the following logic in their ->target() routines:
(Eg: cpufreq-cpu0, omap, exynos, etc)
A. If new freq is more than old: Increase voltage
B. Change freq
C. If new freq is less than old: decrease voltage
Now, if the two concurrent calls to ->target() are X and Y, where X is trying to
increase the freq and Y is trying to decrease it, we get the following race
condition:
X.A: voltage gets increased for larger freq
Y.A: nothing happens
Y.B: freq gets decreased
Y.C: voltage gets decreased
X.B: freq gets increased
X.C: nothing happens
Thus we can end up setting a freq which is not supported by the voltage we have
set. That will probably make the clock to the CPU unstable and the system might
not work properly anymore.
This patch introduces a set of synchronization primitives to serialize frequency
transitions, which are to be used as shown below:
cpufreq_freq_transition_begin();
//Perform the frequency change
cpufreq_freq_transition_end();
The _begin() call sends the PRECHANGE notification whereas the _end() call sends
the POSTCHANGE notification. Also, all the necessary synchronization is handled
within these calls. In particular, even drivers which set the ASYNC_NOTIFICATION
flag can also use these APIs for performing frequency transitions (ie., you can
call _begin() from one task, and call the corresponding _end() from a different
task).
The actual synchronization underneath is not that complicated:
The key challenge is to allow drivers to begin the transition from one thread
and end it in a completely different thread (this is to enable drivers that do
asynchronous POSTCHANGE notification from bottom-halves, to also use the same
interface).
To achieve this, a 'transition_ongoing' flag, a 'transition_lock' spinlock and a
wait-queue are added per-policy. The flag and the wait-queue are used in
conjunction to create an "uninterrupted flow" from _begin() to _end(). The
spinlock is used to ensure that only one such "flow" is in flight at any given
time. Put together, this provides us all the necessary synchronization.
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2014-03-24 08:05:44 +00:00
|
|
|
|
|
|
|
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;
|
cpufreq: Catch double invocations of cpufreq_freq_transition_begin/end
Some cpufreq drivers were redundantly invoking the _begin() and _end()
APIs around frequency transitions, and this double invocation (one from
the cpufreq core and the other from the cpufreq driver) used to result
in a self-deadlock, leading to system hangs during boot. (The _begin()
API makes contending callers wait until the previous invocation is
complete. Hence, the cpufreq driver would end up waiting on itself!).
Now all such drivers have been fixed, but debugging this issue was not
very straight-forward (even lockdep didn't catch this). So let us add a
debug infrastructure to the cpufreq core to catch such issues more easily
in the future.
We add a new field called 'transition_task' to the policy structure, to keep
track of the task which is performing the frequency transition. Using this
field, we make note of this task during _begin() and print a warning if we
find a case where the same task is calling _begin() again, before completing
the previous frequency transition using the corresponding _end().
We have left out ASYNC_NOTIFICATION drivers from this debug infrastructure
for 2 reasons:
1. At the moment, we have no way to avoid a particular scenario where this
debug infrastructure can emit false-positive warnings for such drivers.
The scenario is depicted below:
Task A Task B
/* 1st freq transition */
Invoke _begin() {
...
...
}
Change the frequency
/* 2nd freq transition */
Invoke _begin() {
... //waiting for B to
... //finish _end() for
... //the 1st transition
... | Got interrupt for successful
... | change of frequency (1st one).
... |
... | /* 1st freq transition */
... | Invoke _end() {
... | ...
... V }
...
...
}
This scenario is actually deadlock-free because, once Task A changes the
frequency, it is Task B's responsibility to invoke the corresponding
_end() for the 1st frequency transition. Hence it is perfectly legal for
Task A to go ahead and attempt another frequency transition in the meantime.
(Of course it won't be able to proceed until Task B finishes the 1st _end(),
but this doesn't cause a deadlock or a hang).
The debug infrastructure cannot handle this scenario and will treat it as
a deadlock and print a warning. To avoid this, we exclude such drivers
from the purview of this code.
2. Luckily, we don't _need_ this infrastructure for ASYNC_NOTIFICATION drivers
at all! The cpufreq core does not automatically invoke the _begin() and
_end() APIs during frequency transitions in such drivers. Thus, the driver
alone is responsible for invoking _begin()/_end() and hence there shouldn't
be any conflicts which lead to double invocations. So, we can skip these
drivers, since the probability that such drivers will hit this problem is
extremely low, as outlined above.
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2014-05-05 07:22:39 +00:00
|
|
|
policy->transition_task = NULL;
|
cpufreq: Make sure frequency transitions are serialized
Whenever we change the frequency of a CPU, we call the PRECHANGE and POSTCHANGE
notifiers. They must be serialized, i.e. PRECHANGE and POSTCHANGE notifiers
should strictly alternate, thereby preventing two different sets of PRECHANGE or
POSTCHANGE notifiers from interleaving arbitrarily.
The following examples illustrate why this is important:
Scenario 1:
-----------
A thread reading the value of cpuinfo_cur_freq, will call
__cpufreq_cpu_get()->cpufreq_out_of_sync()->cpufreq_notify_transition()
The ondemand governor can decide to change the frequency of the CPU at the same
time and hence it can end up sending the notifications via ->target().
If the notifiers are not serialized, the following sequence can occur:
- PRECHANGE Notification for freq A (from cpuinfo_cur_freq)
- PRECHANGE Notification for freq B (from target())
- Freq changed by target() to B
- POSTCHANGE Notification for freq B
- POSTCHANGE Notification for freq A
We can see from the above that the last POSTCHANGE Notification happens for freq
A but the hardware is set to run at freq B.
Where would we break then?: adjust_jiffies() in cpufreq.c & cpufreq_callback()
in arch/arm/kernel/smp.c (which also adjusts the jiffies). All the
loops_per_jiffy calculations will get messed up.
Scenario 2:
-----------
The governor calls __cpufreq_driver_target() to change the frequency. At the
same time, if we change scaling_{min|max}_freq from sysfs, it will end up
calling the governor's CPUFREQ_GOV_LIMITS notification, which will also call
__cpufreq_driver_target(). And hence we end up issuing concurrent calls to
->target().
Typically, platforms have the following logic in their ->target() routines:
(Eg: cpufreq-cpu0, omap, exynos, etc)
A. If new freq is more than old: Increase voltage
B. Change freq
C. If new freq is less than old: decrease voltage
Now, if the two concurrent calls to ->target() are X and Y, where X is trying to
increase the freq and Y is trying to decrease it, we get the following race
condition:
X.A: voltage gets increased for larger freq
Y.A: nothing happens
Y.B: freq gets decreased
Y.C: voltage gets decreased
X.B: freq gets increased
X.C: nothing happens
Thus we can end up setting a freq which is not supported by the voltage we have
set. That will probably make the clock to the CPU unstable and the system might
not work properly anymore.
This patch introduces a set of synchronization primitives to serialize frequency
transitions, which are to be used as shown below:
cpufreq_freq_transition_begin();
//Perform the frequency change
cpufreq_freq_transition_end();
The _begin() call sends the PRECHANGE notification whereas the _end() call sends
the POSTCHANGE notification. Also, all the necessary synchronization is handled
within these calls. In particular, even drivers which set the ASYNC_NOTIFICATION
flag can also use these APIs for performing frequency transitions (ie., you can
call _begin() from one task, and call the corresponding _end() from a different
task).
The actual synchronization underneath is not that complicated:
The key challenge is to allow drivers to begin the transition from one thread
and end it in a completely different thread (this is to enable drivers that do
asynchronous POSTCHANGE notification from bottom-halves, to also use the same
interface).
To achieve this, a 'transition_ongoing' flag, a 'transition_lock' spinlock and a
wait-queue are added per-policy. The flag and the wait-queue are used in
conjunction to create an "uninterrupted flow" from _begin() to _end(). The
spinlock is used to ensure that only one such "flow" is in flight at any given
time. Put together, this provides us all the necessary synchronization.
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2014-03-24 08:05:44 +00:00
|
|
|
|
|
|
|
wake_up(&policy->transition_wait);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_freq_transition_end);
|
|
|
|
|
2016-03-30 01:47:49 +00:00
|
|
|
/*
|
|
|
|
* Fast frequency switching status count. Positive means "enabled", negative
|
|
|
|
* means "disabled" and 0 means "not decided yet".
|
|
|
|
*/
|
|
|
|
static int cpufreq_fast_switch_count;
|
|
|
|
static DEFINE_MUTEX(cpufreq_fast_switch_lock);
|
|
|
|
|
|
|
|
static void cpufreq_list_transition_notifiers(void)
|
|
|
|
{
|
|
|
|
struct notifier_block *nb;
|
|
|
|
|
|
|
|
pr_info("Registered transition notifiers:\n");
|
|
|
|
|
|
|
|
mutex_lock(&cpufreq_transition_notifier_list.mutex);
|
|
|
|
|
|
|
|
for (nb = cpufreq_transition_notifier_list.head; nb; nb = nb->next)
|
|
|
|
pr_info("%pF\n", nb->notifier_call);
|
|
|
|
|
|
|
|
mutex_unlock(&cpufreq_transition_notifier_list.mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cpufreq_enable_fast_switch - Enable fast frequency switching for policy.
|
|
|
|
* @policy: cpufreq policy to enable fast frequency switching for.
|
|
|
|
*
|
|
|
|
* Try to enable fast frequency switching for @policy.
|
|
|
|
*
|
|
|
|
* The attempt will fail if there is at least one transition notifier registered
|
|
|
|
* at this point, as fast frequency switching is quite fundamentally at odds
|
|
|
|
* with transition notifiers. Thus if successful, it will make registration of
|
|
|
|
* transition notifiers fail going forward.
|
|
|
|
*/
|
|
|
|
void cpufreq_enable_fast_switch(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
lockdep_assert_held(&policy->rwsem);
|
|
|
|
|
|
|
|
if (!policy->fast_switch_possible)
|
|
|
|
return;
|
|
|
|
|
|
|
|
mutex_lock(&cpufreq_fast_switch_lock);
|
|
|
|
if (cpufreq_fast_switch_count >= 0) {
|
|
|
|
cpufreq_fast_switch_count++;
|
|
|
|
policy->fast_switch_enabled = true;
|
|
|
|
} else {
|
|
|
|
pr_warn("CPU%u: Fast frequency switching not enabled\n",
|
|
|
|
policy->cpu);
|
|
|
|
cpufreq_list_transition_notifiers();
|
|
|
|
}
|
|
|
|
mutex_unlock(&cpufreq_fast_switch_lock);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_enable_fast_switch);
|
|
|
|
|
2016-04-07 21:38:46 +00:00
|
|
|
/**
|
|
|
|
* cpufreq_disable_fast_switch - Disable fast frequency switching for policy.
|
|
|
|
* @policy: cpufreq policy to disable fast frequency switching for.
|
|
|
|
*/
|
|
|
|
void cpufreq_disable_fast_switch(struct cpufreq_policy *policy)
|
2016-03-30 01:47:49 +00:00
|
|
|
{
|
|
|
|
mutex_lock(&cpufreq_fast_switch_lock);
|
|
|
|
if (policy->fast_switch_enabled) {
|
|
|
|
policy->fast_switch_enabled = false;
|
|
|
|
if (!WARN_ON(cpufreq_fast_switch_count <= 0))
|
|
|
|
cpufreq_fast_switch_count--;
|
|
|
|
}
|
|
|
|
mutex_unlock(&cpufreq_fast_switch_lock);
|
|
|
|
}
|
2016-04-07 21:38:46 +00:00
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_disable_fast_switch);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-07-13 20:25:25 +00:00
|
|
|
/**
|
|
|
|
* cpufreq_driver_resolve_freq - Map a target frequency to a driver-supported
|
|
|
|
* one.
|
|
|
|
* @target_freq: target frequency to resolve.
|
|
|
|
*
|
|
|
|
* The target to driver frequency mapping is cached in the policy.
|
|
|
|
*
|
|
|
|
* Return: Lowest driver-supported frequency greater than or equal to the
|
|
|
|
* given target_freq, subject to policy (min/max) and driver limitations.
|
|
|
|
*/
|
|
|
|
unsigned int cpufreq_driver_resolve_freq(struct cpufreq_policy *policy,
|
|
|
|
unsigned int target_freq)
|
|
|
|
{
|
|
|
|
target_freq = clamp_val(target_freq, policy->min, policy->max);
|
|
|
|
policy->cached_target_freq = target_freq;
|
2016-07-21 21:39:26 +00:00
|
|
|
|
|
|
|
if (cpufreq_driver->target_index) {
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
idx = cpufreq_frequency_table_target(policy, target_freq,
|
|
|
|
CPUFREQ_RELATION_L);
|
|
|
|
policy->cached_resolved_idx = idx;
|
|
|
|
return policy->freq_table[idx].frequency;
|
|
|
|
}
|
|
|
|
|
2016-07-13 20:25:25 +00:00
|
|
|
if (cpufreq_driver->resolve_freq)
|
|
|
|
return cpufreq_driver->resolve_freq(policy, target_freq);
|
2016-07-21 21:39:26 +00:00
|
|
|
|
|
|
|
return target_freq;
|
2016-07-13 20:25:25 +00:00
|
|
|
}
|
2016-07-22 02:24:38 +00:00
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_driver_resolve_freq);
|
2016-07-13 20:25:25 +00:00
|
|
|
|
2017-07-19 10:12:42 +00:00
|
|
|
unsigned int cpufreq_policy_transition_delay_us(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
unsigned int latency;
|
|
|
|
|
|
|
|
if (policy->transition_delay_us)
|
|
|
|
return policy->transition_delay_us;
|
|
|
|
|
|
|
|
latency = policy->cpuinfo.transition_latency / NSEC_PER_USEC;
|
2017-08-17 03:42:27 +00:00
|
|
|
if (latency) {
|
|
|
|
/*
|
|
|
|
* For platforms that can change the frequency very fast (< 10
|
|
|
|
* us), the above formula gives a decent transition delay. But
|
|
|
|
* for platforms where transition_latency is in milliseconds, it
|
|
|
|
* ends up giving unrealistic values.
|
|
|
|
*
|
|
|
|
* Cap the default transition delay to 10 ms, which seems to be
|
|
|
|
* a reasonable amount of time after which we should reevaluate
|
|
|
|
* the frequency.
|
|
|
|
*/
|
|
|
|
return min(latency * LATENCY_MULTIPLIER, (unsigned int)10000);
|
|
|
|
}
|
2017-07-19 10:12:42 +00:00
|
|
|
|
|
|
|
return LATENCY_MULTIPLIER;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_policy_transition_delay_us);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*********************************************************************
|
|
|
|
* SYSFS INTERFACE *
|
|
|
|
*********************************************************************/
|
2014-02-26 16:42:42 +00:00
|
|
|
static ssize_t show_boost(struct kobject *kobj,
|
2013-12-20 14:24:49 +00:00
|
|
|
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)) {
|
2014-03-11 17:03:00 +00:00
|
|
|
pr_err("%s: Cannot %s BOOST!\n",
|
|
|
|
__func__, enable ? "enable" : "disable");
|
2013-12-20 14:24:49 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2014-03-11 17:03:00 +00:00
|
|
|
pr_debug("%s: cpufreq BOOST %s\n",
|
|
|
|
__func__, enable ? "enabled" : "disabled");
|
2013-12-20 14:24:49 +00:00
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
define_one_global_rw(boost);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-01-02 07:04:26 +00:00
|
|
|
static struct cpufreq_governor *find_governor(const char *str_governor)
|
2006-07-06 19:30:26 +00:00
|
|
|
{
|
|
|
|
struct cpufreq_governor *t;
|
|
|
|
|
2015-01-27 08:36:09 +00:00
|
|
|
for_each_governor(t)
|
2014-09-29 13:50:11 +00:00
|
|
|
if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN))
|
2006-07-06 19:30:26 +00:00
|
|
|
return t;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
|
|
|
* cpufreq_parse_governor - parse a governor string
|
|
|
|
*/
|
2017-11-23 00:24:05 +00:00
|
|
|
static int cpufreq_parse_governor(char *str_governor,
|
|
|
|
struct cpufreq_policy *policy)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-04-28 22:08:16 +00:00
|
|
|
if (cpufreq_driver->setpolicy) {
|
2014-09-29 13:50:11 +00:00
|
|
|
if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) {
|
2017-11-23 00:24:05 +00:00
|
|
|
policy->policy = CPUFREQ_POLICY_PERFORMANCE;
|
2017-11-23 00:23:16 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strncasecmp(str_governor, "powersave", CPUFREQ_NAME_LEN)) {
|
2017-11-23 00:24:05 +00:00
|
|
|
policy->policy = CPUFREQ_POLICY_POWERSAVE;
|
2017-11-23 00:23:16 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2015-01-02 07:04:27 +00:00
|
|
|
} else {
|
2005-04-16 22:20:36 +00:00
|
|
|
struct cpufreq_governor *t;
|
2006-07-06 19:30:26 +00:00
|
|
|
|
2006-01-13 23:54:22 +00:00
|
|
|
mutex_lock(&cpufreq_governor_mutex);
|
2006-07-06 19:30:26 +00:00
|
|
|
|
2015-01-02 07:04:26 +00:00
|
|
|
t = find_governor(str_governor);
|
2017-11-23 00:23:16 +00:00
|
|
|
if (!t) {
|
2011-05-04 15:38:56 +00:00
|
|
|
int ret;
|
2006-07-06 19:32:01 +00:00
|
|
|
|
2011-05-04 15:38:56 +00:00
|
|
|
mutex_unlock(&cpufreq_governor_mutex);
|
2017-11-23 00:23:16 +00:00
|
|
|
|
2011-05-04 15:38:56 +00:00
|
|
|
ret = request_module("cpufreq_%s", str_governor);
|
2017-11-23 00:23:16 +00:00
|
|
|
if (ret)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2011-05-04 15:38:56 +00:00
|
|
|
mutex_lock(&cpufreq_governor_mutex);
|
2006-07-06 19:32:01 +00:00
|
|
|
|
2017-11-23 00:23:16 +00:00
|
|
|
t = find_governor(str_governor);
|
2006-07-06 19:32:01 +00:00
|
|
|
}
|
2017-11-23 13:27:07 +00:00
|
|
|
if (t && !try_module_get(t->owner))
|
|
|
|
t = NULL;
|
2006-07-06 19:32:01 +00:00
|
|
|
|
2017-11-23 00:23:16 +00:00
|
|
|
mutex_unlock(&cpufreq_governor_mutex);
|
|
|
|
|
|
|
|
if (t) {
|
2017-11-23 00:24:05 +00:00
|
|
|
policy->governor = t;
|
2017-11-23 00:23:16 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-23 00:23:16 +00:00
|
|
|
|
|
|
|
return -EINVAL;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-10-26 10:50:58 +00:00
|
|
|
* cpufreq_per_cpu_attr_read() / show_##file_name() -
|
|
|
|
* print out cpufreq information
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Write out information from cpufreq_driver->policy[cpu]; object must be
|
|
|
|
* "unsigned int".
|
|
|
|
*/
|
|
|
|
|
2006-02-28 05:43:23 +00:00
|
|
|
#define show_one(file_name, object) \
|
|
|
|
static ssize_t show_##file_name \
|
2008-03-05 19:28:32 +00:00
|
|
|
(struct cpufreq_policy *policy, char *buf) \
|
2006-02-28 05:43:23 +00:00
|
|
|
{ \
|
2009-01-18 06:37:11 +00:00
|
|
|
return sprintf(buf, "%u\n", policy->object); \
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
show_one(cpuinfo_min_freq, cpuinfo.min_freq);
|
|
|
|
show_one(cpuinfo_max_freq, cpuinfo.max_freq);
|
2009-02-04 00:17:41 +00:00
|
|
|
show_one(cpuinfo_transition_latency, cpuinfo.transition_latency);
|
2005-04-16 22:20:36 +00:00
|
|
|
show_one(scaling_min_freq, min);
|
|
|
|
show_one(scaling_max_freq, max);
|
2014-10-13 15:37:40 +00:00
|
|
|
|
2017-06-24 05:11:52 +00:00
|
|
|
__weak unsigned int arch_freq_get_on_cpu(int cpu)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-02 07:04:24 +00:00
|
|
|
static ssize_t show_scaling_cur_freq(struct cpufreq_policy *policy, char *buf)
|
2014-10-13 15:37:40 +00:00
|
|
|
{
|
|
|
|
ssize_t ret;
|
2017-06-24 05:11:52 +00:00
|
|
|
unsigned int freq;
|
2014-10-13 15:37:40 +00:00
|
|
|
|
2017-06-24 05:11:52 +00:00
|
|
|
freq = arch_freq_get_on_cpu(policy->cpu);
|
|
|
|
if (freq)
|
|
|
|
ret = sprintf(buf, "%u\n", freq);
|
|
|
|
else if (cpufreq_driver && cpufreq_driver->setpolicy &&
|
|
|
|
cpufreq_driver->get)
|
2014-10-13 15:37:40 +00:00
|
|
|
ret = sprintf(buf, "%u\n", cpufreq_driver->get(policy->cpu));
|
|
|
|
else
|
|
|
|
ret = sprintf(buf, "%u\n", policy->cur);
|
|
|
|
return ret;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-10-02 08:43:16 +00:00
|
|
|
static int cpufreq_set_policy(struct cpufreq_policy *policy,
|
2013-08-06 17:23:05 +00:00
|
|
|
struct cpufreq_policy *new_policy);
|
2006-04-13 13:14:04 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
|
|
|
* cpufreq_per_cpu_attr_write() / store_##file_name() - sysfs write access
|
|
|
|
*/
|
|
|
|
#define store_one(file_name, object) \
|
|
|
|
static ssize_t store_##file_name \
|
2008-03-05 19:28:32 +00:00
|
|
|
(struct cpufreq_policy *policy, const char *buf, size_t count) \
|
2005-04-16 22:20:36 +00:00
|
|
|
{ \
|
2014-11-10 06:14:50 +00:00
|
|
|
int ret, temp; \
|
2005-04-16 22:20:36 +00:00
|
|
|
struct cpufreq_policy new_policy; \
|
|
|
|
\
|
2015-08-03 03:06:15 +00:00
|
|
|
memcpy(&new_policy, policy, sizeof(*policy)); \
|
2005-04-16 22:20:36 +00:00
|
|
|
\
|
2009-01-18 06:37:11 +00:00
|
|
|
ret = sscanf(buf, "%u", &new_policy.object); \
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ret != 1) \
|
|
|
|
return -EINVAL; \
|
|
|
|
\
|
2014-11-10 06:14:50 +00:00
|
|
|
temp = new_policy.object; \
|
2013-10-02 08:43:16 +00:00
|
|
|
ret = cpufreq_set_policy(policy, &new_policy); \
|
2014-11-10 06:14:50 +00:00
|
|
|
if (!ret) \
|
|
|
|
policy->user_policy.object = temp; \
|
2005-04-16 22:20:36 +00:00
|
|
|
\
|
|
|
|
return ret ? ret : count; \
|
|
|
|
}
|
|
|
|
|
2009-01-18 06:37:11 +00:00
|
|
|
store_one(scaling_min_freq, min);
|
|
|
|
store_one(scaling_max_freq, max);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* show_cpuinfo_cur_freq - current CPU frequency as detected by hardware
|
|
|
|
*/
|
2008-03-05 19:28:32 +00:00
|
|
|
static ssize_t show_cpuinfo_cur_freq(struct cpufreq_policy *policy,
|
|
|
|
char *buf)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2015-01-02 07:04:29 +00:00
|
|
|
unsigned int cur_freq = __cpufreq_get(policy);
|
2017-03-14 23:12:16 +00:00
|
|
|
|
|
|
|
if (cur_freq)
|
|
|
|
return sprintf(buf, "%u\n", cur_freq);
|
|
|
|
|
|
|
|
return sprintf(buf, "<unknown>\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show_scaling_governor - show the current policy for the specified CPU
|
|
|
|
*/
|
2008-03-05 19:28:32 +00:00
|
|
|
static ssize_t show_scaling_governor(struct cpufreq_policy *policy, char *buf)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-01-18 06:37:11 +00:00
|
|
|
if (policy->policy == CPUFREQ_POLICY_POWERSAVE)
|
2005-04-16 22:20:36 +00:00
|
|
|
return sprintf(buf, "powersave\n");
|
|
|
|
else if (policy->policy == CPUFREQ_POLICY_PERFORMANCE)
|
|
|
|
return sprintf(buf, "performance\n");
|
|
|
|
else if (policy->governor)
|
2012-10-22 23:23:43 +00:00
|
|
|
return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n",
|
2009-01-18 06:37:11 +00:00
|
|
|
policy->governor->name);
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* store_scaling_governor - store policy for the specified CPU
|
|
|
|
*/
|
2008-03-05 19:28:32 +00:00
|
|
|
static ssize_t store_scaling_governor(struct cpufreq_policy *policy,
|
|
|
|
const char *buf, size_t count)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-09-06 19:54:06 +00:00
|
|
|
int ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
char str_governor[16];
|
|
|
|
struct cpufreq_policy new_policy;
|
|
|
|
|
2015-08-03 03:06:15 +00:00
|
|
|
memcpy(&new_policy, policy, sizeof(*policy));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-01-18 06:37:11 +00:00
|
|
|
ret = sscanf(buf, "%15s", str_governor);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ret != 1)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2017-11-23 00:24:05 +00:00
|
|
|
if (cpufreq_parse_governor(str_governor, &new_policy))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2013-10-02 08:43:16 +00:00
|
|
|
ret = cpufreq_set_policy(policy, &new_policy);
|
2017-11-23 13:27:07 +00:00
|
|
|
|
|
|
|
if (new_policy.governor)
|
|
|
|
module_put(new_policy.governor->owner);
|
|
|
|
|
2015-08-03 03:06:18 +00:00
|
|
|
return ret ? ret : count;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show_scaling_driver - show the cpufreq driver currently loaded
|
|
|
|
*/
|
2008-03-05 19:28:32 +00:00
|
|
|
static ssize_t show_scaling_driver(struct cpufreq_policy *policy, char *buf)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-04-28 22:08:16 +00:00
|
|
|
return scnprintf(buf, CPUFREQ_NAME_PLEN, "%s\n", cpufreq_driver->name);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show_scaling_available_governors - show the available CPUfreq governors
|
|
|
|
*/
|
2008-03-05 19:28:32 +00:00
|
|
|
static ssize_t show_scaling_available_governors(struct cpufreq_policy *policy,
|
|
|
|
char *buf)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
ssize_t i = 0;
|
|
|
|
struct cpufreq_governor *t;
|
|
|
|
|
2013-10-25 14:15:48 +00:00
|
|
|
if (!has_target()) {
|
2005-04-16 22:20:36 +00:00
|
|
|
i += sprintf(buf, "performance powersave");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2015-01-27 08:36:09 +00:00
|
|
|
for_each_governor(t) {
|
2009-01-18 06:37:11 +00:00
|
|
|
if (i >= (ssize_t) ((PAGE_SIZE / sizeof(char))
|
|
|
|
- (CPUFREQ_NAME_LEN + 2)))
|
2005-04-16 22:20:36 +00:00
|
|
|
goto out;
|
2012-10-22 23:23:43 +00:00
|
|
|
i += scnprintf(&buf[i], CPUFREQ_NAME_PLEN, "%s ", t->name);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2006-02-02 22:03:42 +00:00
|
|
|
out:
|
2005-04-16 22:20:36 +00:00
|
|
|
i += sprintf(&buf[i], "\n");
|
|
|
|
return i;
|
|
|
|
}
|
2008-04-18 20:31:12 +00:00
|
|
|
|
2013-06-27 07:08:54 +00:00
|
|
|
ssize_t cpufreq_show_cpus(const struct cpumask *mask, char *buf)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
ssize_t i = 0;
|
|
|
|
unsigned int cpu;
|
|
|
|
|
2009-01-04 13:18:06 +00:00
|
|
|
for_each_cpu(cpu, mask) {
|
2005-04-16 22:20:36 +00:00
|
|
|
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))
|
2009-01-18 06:37:11 +00:00
|
|
|
break;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
i += sprintf(&buf[i], "\n");
|
|
|
|
return i;
|
|
|
|
}
|
2013-06-27 07:08:54 +00:00
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_show_cpus);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-04-18 20:31:12 +00:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2013-06-27 07:08:54 +00:00
|
|
|
return cpufreq_show_cpus(policy->related_cpus, buf);
|
2008-04-18 20:31:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show_affected_cpus - show the CPUs affected by each transition
|
|
|
|
*/
|
|
|
|
static ssize_t show_affected_cpus(struct cpufreq_policy *policy, char *buf)
|
|
|
|
{
|
2013-06-27 07:08:54 +00:00
|
|
|
return cpufreq_show_cpus(policy->cpus, buf);
|
2008-04-18 20:31:12 +00:00
|
|
|
}
|
|
|
|
|
2007-10-26 17:18:21 +00:00
|
|
|
static ssize_t store_scaling_setspeed(struct cpufreq_policy *policy,
|
2008-03-05 19:28:32 +00:00
|
|
|
const char *buf, size_t count)
|
2007-10-26 17:18:21 +00:00
|
|
|
{
|
|
|
|
unsigned int freq = 0;
|
|
|
|
unsigned int ret;
|
|
|
|
|
2008-06-06 05:46:33 +00:00
|
|
|
if (!policy->governor || !policy->governor->store_setspeed)
|
2007-10-26 17:18:21 +00:00
|
|
|
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)
|
|
|
|
{
|
2008-06-06 05:46:33 +00:00
|
|
|
if (!policy->governor || !policy->governor->show_setspeed)
|
2007-10-26 17:18:21 +00:00
|
|
|
return sprintf(buf, "<unsupported>\n");
|
|
|
|
|
|
|
|
return policy->governor->show_setspeed(policy, buf);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-11-19 11:31:01 +00:00
|
|
|
/**
|
2012-10-22 23:23:33 +00:00
|
|
|
* show_bios_limit - show the current cpufreq HW/BIOS limitation
|
2009-11-19 11:31:01 +00:00
|
|
|
*/
|
|
|
|
static ssize_t show_bios_limit(struct cpufreq_policy *policy, char *buf)
|
|
|
|
{
|
|
|
|
unsigned int limit;
|
|
|
|
int ret;
|
2013-04-28 22:08:16 +00:00
|
|
|
if (cpufreq_driver->bios_limit) {
|
|
|
|
ret = cpufreq_driver->bios_limit(policy->cpu, &limit);
|
2009-11-19 11:31:01 +00:00
|
|
|
if (!ret)
|
|
|
|
return sprintf(buf, "%u\n", limit);
|
|
|
|
}
|
|
|
|
return sprintf(buf, "%u\n", policy->cpuinfo.max_freq);
|
|
|
|
}
|
|
|
|
|
2010-03-31 19:56:46 +00:00
|
|
|
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);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-03-05 19:28:32 +00:00
|
|
|
static struct attribute *default_attrs[] = {
|
2005-04-16 22:20:36 +00:00
|
|
|
&cpuinfo_min_freq.attr,
|
|
|
|
&cpuinfo_max_freq.attr,
|
2009-02-04 00:17:41 +00:00
|
|
|
&cpuinfo_transition_latency.attr,
|
2005-04-16 22:20:36 +00:00
|
|
|
&scaling_min_freq.attr,
|
|
|
|
&scaling_max_freq.attr,
|
|
|
|
&affected_cpus.attr,
|
2008-04-18 20:31:12 +00:00
|
|
|
&related_cpus.attr,
|
2005-04-16 22:20:36 +00:00
|
|
|
&scaling_governor.attr,
|
|
|
|
&scaling_driver.attr,
|
|
|
|
&scaling_available_governors.attr,
|
2007-10-26 17:18:21 +00:00
|
|
|
&scaling_setspeed.attr,
|
2005-04-16 22:20:36 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2009-01-18 06:37:11 +00:00
|
|
|
#define to_policy(k) container_of(k, struct cpufreq_policy, kobj)
|
|
|
|
#define to_attr(a) container_of(a, struct freq_attr, attr)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-01-18 06:37:11 +00:00
|
|
|
static ssize_t show(struct kobject *kobj, struct attribute *attr, char *buf)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-03-05 19:28:32 +00:00
|
|
|
struct cpufreq_policy *policy = to_policy(kobj);
|
|
|
|
struct freq_attr *fattr = to_attr(attr);
|
2013-10-02 08:43:09 +00:00
|
|
|
ssize_t ret;
|
2013-08-06 17:23:11 +00:00
|
|
|
|
2013-10-18 13:40:15 +00:00
|
|
|
down_read(&policy->rwsem);
|
2016-02-12 22:56:21 +00:00
|
|
|
ret = fattr->show(policy, buf);
|
2013-10-18 13:40:15 +00:00
|
|
|
up_read(&policy->rwsem);
|
2013-10-02 08:43:09 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-03-05 19:28:32 +00:00
|
|
|
static ssize_t store(struct kobject *kobj, struct attribute *attr,
|
|
|
|
const char *buf, size_t count)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-03-05 19:28:32 +00:00
|
|
|
struct cpufreq_policy *policy = to_policy(kobj);
|
|
|
|
struct freq_attr *fattr = to_attr(attr);
|
2008-03-05 19:22:25 +00:00
|
|
|
ssize_t ret = -EINVAL;
|
2013-08-06 17:23:11 +00:00
|
|
|
|
2017-05-24 08:15:20 +00:00
|
|
|
cpus_read_lock();
|
2013-09-06 19:53:43 +00:00
|
|
|
|
2016-02-12 22:56:21 +00:00
|
|
|
if (cpu_online(policy->cpu)) {
|
|
|
|
down_write(&policy->rwsem);
|
2006-10-26 10:50:58 +00:00
|
|
|
ret = fattr->store(policy, buf, count);
|
2016-02-12 22:56:21 +00:00
|
|
|
up_write(&policy->rwsem);
|
|
|
|
}
|
2006-10-26 10:50:58 +00:00
|
|
|
|
2017-05-24 08:15:20 +00:00
|
|
|
cpus_read_unlock();
|
2013-09-06 19:53:43 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-03-05 19:28:32 +00:00
|
|
|
static void cpufreq_sysfs_release(struct kobject *kobj)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-03-05 19:28:32 +00:00
|
|
|
struct cpufreq_policy *policy = to_policy(kobj);
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("last reference is dropped\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
complete(&policy->kobj_unregister);
|
|
|
|
}
|
|
|
|
|
2010-01-19 01:58:23 +00:00
|
|
|
static const struct sysfs_ops sysfs_ops = {
|
2005-04-16 22:20:36 +00:00
|
|
|
.show = show,
|
|
|
|
.store = store,
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct kobj_type ktype_cpufreq = {
|
|
|
|
.sysfs_ops = &sysfs_ops,
|
|
|
|
.default_attrs = default_attrs,
|
|
|
|
.release = cpufreq_sysfs_release,
|
|
|
|
};
|
|
|
|
|
2017-03-27 17:33:09 +00:00
|
|
|
static void add_cpu_dev_symlink(struct cpufreq_policy *policy, unsigned int cpu)
|
2015-06-10 00:13:21 +00:00
|
|
|
{
|
2017-03-27 17:33:09 +00:00
|
|
|
struct device *dev = get_cpu_device(cpu);
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (cpumask_test_and_set_cpu(cpu, policy->real_cpus))
|
|
|
|
return;
|
|
|
|
|
cpufreq: create link to policy only for registered CPUs
If a cpufreq driver is registered very early in the boot stage (e.g.
registered from postcore_initcall()), then cpufreq core may generate
kernel warnings for it.
In this case, the CPUs are brought online, then the cpufreq driver is
registered, and then the CPU topology devices are registered. However,
by the time cpufreq_add_dev() gets called, the cpu device isn't stored
in the per-cpu variable (cpu_sys_devices,) which is read by
get_cpu_device().
So the cpufreq core fails to get device for the CPU, for which
cpufreq_add_dev() was called in the first place and we will hit a
WARN_ON(!cpu_dev).
Even if we reuse the 'dev' parameter passed to cpufreq_add_dev() to
avoid that warning, there might be other CPUs online that share the
policy with the cpu for which cpufreq_add_dev() is called. Eventually
get_cpu_device() will return NULL for them as well, and we will hit the
same WARN_ON() again.
In order to fix these issues, change cpufreq core to create links to the
policy for a cpu only when cpufreq_add_dev() is called for that CPU.
Reuse the 'real_cpus' mask to track that as well.
Note that cpufreq_remove_dev() already handles removal of the links for
individual CPUs and cpufreq_add_dev() has aligned with that now.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-12 06:37:05 +00:00
|
|
|
dev_dbg(dev, "%s: Adding symlink\n", __func__);
|
2017-03-27 17:33:09 +00:00
|
|
|
if (sysfs_create_link(&dev->kobj, &policy->kobj, "cpufreq"))
|
|
|
|
dev_err(dev, "cpufreq symlink creation failed\n");
|
2015-06-10 00:13:21 +00:00
|
|
|
}
|
|
|
|
|
cpufreq: create link to policy only for registered CPUs
If a cpufreq driver is registered very early in the boot stage (e.g.
registered from postcore_initcall()), then cpufreq core may generate
kernel warnings for it.
In this case, the CPUs are brought online, then the cpufreq driver is
registered, and then the CPU topology devices are registered. However,
by the time cpufreq_add_dev() gets called, the cpu device isn't stored
in the per-cpu variable (cpu_sys_devices,) which is read by
get_cpu_device().
So the cpufreq core fails to get device for the CPU, for which
cpufreq_add_dev() was called in the first place and we will hit a
WARN_ON(!cpu_dev).
Even if we reuse the 'dev' parameter passed to cpufreq_add_dev() to
avoid that warning, there might be other CPUs online that share the
policy with the cpu for which cpufreq_add_dev() is called. Eventually
get_cpu_device() will return NULL for them as well, and we will hit the
same WARN_ON() again.
In order to fix these issues, change cpufreq core to create links to the
policy for a cpu only when cpufreq_add_dev() is called for that CPU.
Reuse the 'real_cpus' mask to track that as well.
Note that cpufreq_remove_dev() already handles removal of the links for
individual CPUs and cpufreq_add_dev() has aligned with that now.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-12 06:37:05 +00:00
|
|
|
static void remove_cpu_dev_symlink(struct cpufreq_policy *policy,
|
|
|
|
struct device *dev)
|
2015-06-10 00:13:21 +00:00
|
|
|
{
|
cpufreq: create link to policy only for registered CPUs
If a cpufreq driver is registered very early in the boot stage (e.g.
registered from postcore_initcall()), then cpufreq core may generate
kernel warnings for it.
In this case, the CPUs are brought online, then the cpufreq driver is
registered, and then the CPU topology devices are registered. However,
by the time cpufreq_add_dev() gets called, the cpu device isn't stored
in the per-cpu variable (cpu_sys_devices,) which is read by
get_cpu_device().
So the cpufreq core fails to get device for the CPU, for which
cpufreq_add_dev() was called in the first place and we will hit a
WARN_ON(!cpu_dev).
Even if we reuse the 'dev' parameter passed to cpufreq_add_dev() to
avoid that warning, there might be other CPUs online that share the
policy with the cpu for which cpufreq_add_dev() is called. Eventually
get_cpu_device() will return NULL for them as well, and we will hit the
same WARN_ON() again.
In order to fix these issues, change cpufreq core to create links to the
policy for a cpu only when cpufreq_add_dev() is called for that CPU.
Reuse the 'real_cpus' mask to track that as well.
Note that cpufreq_remove_dev() already handles removal of the links for
individual CPUs and cpufreq_add_dev() has aligned with that now.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-12 06:37:05 +00:00
|
|
|
dev_dbg(dev, "%s: Removing symlink\n", __func__);
|
|
|
|
sysfs_remove_link(&dev->kobj, "cpufreq");
|
2015-06-10 00:13:21 +00:00
|
|
|
}
|
|
|
|
|
2015-07-27 21:11:37 +00:00
|
|
|
static int cpufreq_add_dev_interface(struct cpufreq_policy *policy)
|
2009-07-08 22:05:42 +00:00
|
|
|
{
|
|
|
|
struct freq_attr **drv_attr;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
/* set up files for this cpu device */
|
2013-04-28 22:08:16 +00:00
|
|
|
drv_attr = cpufreq_driver->attr;
|
2015-01-02 07:04:23 +00:00
|
|
|
while (drv_attr && *drv_attr) {
|
2009-07-08 22:05:42 +00:00
|
|
|
ret = sysfs_create_file(&policy->kobj, &((*drv_attr)->attr));
|
|
|
|
if (ret)
|
2014-11-24 09:08:03 +00:00
|
|
|
return ret;
|
2009-07-08 22:05:42 +00:00
|
|
|
drv_attr++;
|
|
|
|
}
|
2013-04-28 22:08:16 +00:00
|
|
|
if (cpufreq_driver->get) {
|
2009-07-08 22:05:42 +00:00
|
|
|
ret = sysfs_create_file(&policy->kobj, &cpuinfo_cur_freq.attr);
|
|
|
|
if (ret)
|
2014-11-24 09:08:03 +00:00
|
|
|
return ret;
|
2009-07-08 22:05:42 +00:00
|
|
|
}
|
2014-10-13 15:37:40 +00:00
|
|
|
|
|
|
|
ret = sysfs_create_file(&policy->kobj, &scaling_cur_freq.attr);
|
|
|
|
if (ret)
|
2014-11-24 09:08:03 +00:00
|
|
|
return ret;
|
2014-10-13 15:37:40 +00:00
|
|
|
|
2013-04-28 22:08:16 +00:00
|
|
|
if (cpufreq_driver->bios_limit) {
|
2009-11-19 11:31:01 +00:00
|
|
|
ret = sysfs_create_file(&policy->kobj, &bios_limit.attr);
|
|
|
|
if (ret)
|
2014-11-24 09:08:03 +00:00
|
|
|
return ret;
|
2009-11-19 11:31:01 +00:00
|
|
|
}
|
2009-07-08 22:05:42 +00:00
|
|
|
|
cpufreq: create link to policy only for registered CPUs
If a cpufreq driver is registered very early in the boot stage (e.g.
registered from postcore_initcall()), then cpufreq core may generate
kernel warnings for it.
In this case, the CPUs are brought online, then the cpufreq driver is
registered, and then the CPU topology devices are registered. However,
by the time cpufreq_add_dev() gets called, the cpu device isn't stored
in the per-cpu variable (cpu_sys_devices,) which is read by
get_cpu_device().
So the cpufreq core fails to get device for the CPU, for which
cpufreq_add_dev() was called in the first place and we will hit a
WARN_ON(!cpu_dev).
Even if we reuse the 'dev' parameter passed to cpufreq_add_dev() to
avoid that warning, there might be other CPUs online that share the
policy with the cpu for which cpufreq_add_dev() is called. Eventually
get_cpu_device() will return NULL for them as well, and we will hit the
same WARN_ON() again.
In order to fix these issues, change cpufreq core to create links to the
policy for a cpu only when cpufreq_add_dev() is called for that CPU.
Reuse the 'real_cpus' mask to track that as well.
Note that cpufreq_remove_dev() already handles removal of the links for
individual CPUs and cpufreq_add_dev() has aligned with that now.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-12 06:37:05 +00:00
|
|
|
return 0;
|
2013-07-29 22:54:23 +00:00
|
|
|
}
|
|
|
|
|
2016-02-05 01:37:42 +00:00
|
|
|
__weak struct cpufreq_governor *cpufreq_default_governor(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-07-08 09:42:16 +00:00
|
|
|
static int cpufreq_init_policy(struct cpufreq_policy *policy)
|
2013-07-29 22:54:23 +00:00
|
|
|
{
|
2014-03-04 03:43:59 +00:00
|
|
|
struct cpufreq_governor *gov = NULL;
|
2013-07-29 22:54:23 +00:00
|
|
|
struct cpufreq_policy new_policy;
|
|
|
|
|
2013-08-06 17:23:06 +00:00
|
|
|
memcpy(&new_policy, policy, sizeof(*policy));
|
2013-12-19 22:50:50 +00:00
|
|
|
|
2014-03-04 03:43:59 +00:00
|
|
|
/* Update governor of new_policy to the governor used before hotplug */
|
2015-05-12 06:52:34 +00:00
|
|
|
gov = find_governor(policy->last_governor);
|
2016-02-05 01:37:42 +00:00
|
|
|
if (gov) {
|
2014-03-04 03:43:59 +00:00
|
|
|
pr_debug("Restoring governor %s for cpu %d\n",
|
|
|
|
policy->governor->name, policy->cpu);
|
2016-02-05 01:37:42 +00:00
|
|
|
} else {
|
|
|
|
gov = cpufreq_default_governor();
|
|
|
|
if (!gov)
|
|
|
|
return -ENODATA;
|
|
|
|
}
|
2014-03-04 03:43:59 +00:00
|
|
|
|
|
|
|
new_policy.governor = gov;
|
|
|
|
|
2015-12-02 00:52:14 +00:00
|
|
|
/* 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
|
2017-11-23 00:24:05 +00:00
|
|
|
cpufreq_parse_governor(gov->name, &new_policy);
|
2015-12-02 00:52:14 +00:00
|
|
|
}
|
2009-07-08 22:48:47 +00:00
|
|
|
/* set default policy */
|
2015-07-08 09:42:16 +00:00
|
|
|
return cpufreq_set_policy(policy, &new_policy);
|
2009-07-08 22:05:42 +00:00
|
|
|
}
|
|
|
|
|
2015-07-27 21:11:37 +00:00
|
|
|
static int cpufreq_add_policy_cpu(struct cpufreq_policy *policy, unsigned int cpu)
|
2013-01-29 14:39:08 +00:00
|
|
|
{
|
2013-10-25 14:15:48 +00:00
|
|
|
int ret = 0;
|
2013-01-29 14:39:08 +00:00
|
|
|
|
2015-02-19 11:32:06 +00:00
|
|
|
/* Has this CPU been taken care of already? */
|
|
|
|
if (cpumask_test_cpu(cpu, policy->cpus))
|
|
|
|
return 0;
|
|
|
|
|
2016-02-11 12:01:12 +00:00
|
|
|
down_write(&policy->rwsem);
|
2016-05-12 13:14:12 +00:00
|
|
|
if (has_target())
|
|
|
|
cpufreq_stop_governor(policy);
|
2013-01-29 14:39:08 +00:00
|
|
|
|
|
|
|
cpumask_set_cpu(cpu, policy->cpus);
|
2013-02-07 05:25:00 +00:00
|
|
|
|
2013-10-25 14:15:48 +00:00
|
|
|
if (has_target()) {
|
2016-03-21 14:45:24 +00:00
|
|
|
ret = cpufreq_start_governor(policy);
|
2016-02-11 12:01:12 +00:00
|
|
|
if (ret)
|
2013-08-06 17:23:13 +00:00
|
|
|
pr_err("%s: Failed to start governor\n", __func__);
|
2013-04-21 22:48:03 +00:00
|
|
|
}
|
2016-02-11 12:01:12 +00:00
|
|
|
up_write(&policy->rwsem);
|
|
|
|
return ret;
|
2013-01-29 14:39:08 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-02-22 11:06:42 +00:00
|
|
|
static void handle_update(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct cpufreq_policy *policy =
|
|
|
|
container_of(work, struct cpufreq_policy, update);
|
|
|
|
unsigned int cpu = policy->cpu;
|
|
|
|
pr_debug("handle_update for cpu %u called\n", cpu);
|
|
|
|
cpufreq_update_policy(cpu);
|
2013-01-29 14:39:08 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-07-27 21:11:50 +00:00
|
|
|
static struct cpufreq_policy *cpufreq_policy_alloc(unsigned int cpu)
|
2013-07-29 22:54:11 +00:00
|
|
|
{
|
|
|
|
struct cpufreq_policy *policy;
|
2016-03-03 09:21:33 +00:00
|
|
|
int ret;
|
2013-07-29 22:54:11 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
cpufreq: Avoid attempts to create duplicate symbolic links
After commit 87549141d516 (cpufreq: Stop migrating sysfs files on
hotplug) there is a problem with CPUs that share cpufreq policy
objects with other CPUs and are initially offline.
Say CPU1 shares a policy with CPU0 which is online and is registered
first. As part of the registration process, cpufreq_add_dev() is
called for it. It creates the policy object and a symbolic link
to it from the CPU1's sysfs directory. If CPU1 is registered
subsequently and it is offline at that time, cpufreq_add_dev() will
attempt to create a symbolic link to the policy object for it, but
that link is present already, so a warning about that will be
triggered.
To avoid that warning, make cpufreq use an additional CPU mask
containing related CPUs that are actually present for each policy
object. That mask is initialized when the policy object is populated
after its creation (for the first online CPU using it) and it includes
CPUs from the "policy CPUs" mask returned by the cpufreq driver's
->init() callback that are physically present at that time. Symbolic
links to the policy are created only for the CPUs in that mask.
If cpufreq_add_dev() is invoked for an offline CPU, it checks the
new mask and only creates the symlink if the CPU was not in it (the
CPU is added to the mask at the same time).
In turn, cpufreq_remove_dev() drops the given CPU from the new mask,
removes its symlink to the policy object and returns, unless it is
the CPU owning the policy object. In that case, the policy object
is moved to a new CPU's sysfs directory or deleted if the CPU being
removed was the last user of the policy.
While at it, notice that cpufreq_remove_dev() can't fail, because
its return value is ignored, so make it ignore return values from
__cpufreq_remove_dev_prepare() and __cpufreq_remove_dev_finish()
and prevent these functions from aborting on errors returned by
__cpufreq_governor(). Also drop the now unused sif argument from
them.
Fixes: 87549141d516 (cpufreq: Stop migrating sysfs files on hotplug)
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reported-and-tested-by: Russell King <linux@arm.linux.org.uk>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
2015-07-26 00:07:47 +00:00
|
|
|
if (!zalloc_cpumask_var(&policy->real_cpus, GFP_KERNEL))
|
|
|
|
goto err_free_rcpumask;
|
|
|
|
|
2016-03-03 09:21:33 +00:00
|
|
|
ret = kobject_init_and_add(&policy->kobj, &ktype_cpufreq,
|
|
|
|
cpufreq_global_kobject, "policy%u", cpu);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("%s: failed to init policy->kobj: %d\n", __func__, ret);
|
|
|
|
goto err_free_real_cpus;
|
|
|
|
}
|
|
|
|
|
2013-08-06 17:23:08 +00:00
|
|
|
INIT_LIST_HEAD(&policy->policy_list);
|
2013-10-18 13:40:15 +00:00
|
|
|
init_rwsem(&policy->rwsem);
|
cpufreq: Make sure frequency transitions are serialized
Whenever we change the frequency of a CPU, we call the PRECHANGE and POSTCHANGE
notifiers. They must be serialized, i.e. PRECHANGE and POSTCHANGE notifiers
should strictly alternate, thereby preventing two different sets of PRECHANGE or
POSTCHANGE notifiers from interleaving arbitrarily.
The following examples illustrate why this is important:
Scenario 1:
-----------
A thread reading the value of cpuinfo_cur_freq, will call
__cpufreq_cpu_get()->cpufreq_out_of_sync()->cpufreq_notify_transition()
The ondemand governor can decide to change the frequency of the CPU at the same
time and hence it can end up sending the notifications via ->target().
If the notifiers are not serialized, the following sequence can occur:
- PRECHANGE Notification for freq A (from cpuinfo_cur_freq)
- PRECHANGE Notification for freq B (from target())
- Freq changed by target() to B
- POSTCHANGE Notification for freq B
- POSTCHANGE Notification for freq A
We can see from the above that the last POSTCHANGE Notification happens for freq
A but the hardware is set to run at freq B.
Where would we break then?: adjust_jiffies() in cpufreq.c & cpufreq_callback()
in arch/arm/kernel/smp.c (which also adjusts the jiffies). All the
loops_per_jiffy calculations will get messed up.
Scenario 2:
-----------
The governor calls __cpufreq_driver_target() to change the frequency. At the
same time, if we change scaling_{min|max}_freq from sysfs, it will end up
calling the governor's CPUFREQ_GOV_LIMITS notification, which will also call
__cpufreq_driver_target(). And hence we end up issuing concurrent calls to
->target().
Typically, platforms have the following logic in their ->target() routines:
(Eg: cpufreq-cpu0, omap, exynos, etc)
A. If new freq is more than old: Increase voltage
B. Change freq
C. If new freq is less than old: decrease voltage
Now, if the two concurrent calls to ->target() are X and Y, where X is trying to
increase the freq and Y is trying to decrease it, we get the following race
condition:
X.A: voltage gets increased for larger freq
Y.A: nothing happens
Y.B: freq gets decreased
Y.C: voltage gets decreased
X.B: freq gets increased
X.C: nothing happens
Thus we can end up setting a freq which is not supported by the voltage we have
set. That will probably make the clock to the CPU unstable and the system might
not work properly anymore.
This patch introduces a set of synchronization primitives to serialize frequency
transitions, which are to be used as shown below:
cpufreq_freq_transition_begin();
//Perform the frequency change
cpufreq_freq_transition_end();
The _begin() call sends the PRECHANGE notification whereas the _end() call sends
the POSTCHANGE notification. Also, all the necessary synchronization is handled
within these calls. In particular, even drivers which set the ASYNC_NOTIFICATION
flag can also use these APIs for performing frequency transitions (ie., you can
call _begin() from one task, and call the corresponding _end() from a different
task).
The actual synchronization underneath is not that complicated:
The key challenge is to allow drivers to begin the transition from one thread
and end it in a completely different thread (this is to enable drivers that do
asynchronous POSTCHANGE notification from bottom-halves, to also use the same
interface).
To achieve this, a 'transition_ongoing' flag, a 'transition_lock' spinlock and a
wait-queue are added per-policy. The flag and the wait-queue are used in
conjunction to create an "uninterrupted flow" from _begin() to _end(). The
spinlock is used to ensure that only one such "flow" is in flight at any given
time. Put together, this provides us all the necessary synchronization.
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2014-03-24 08:05:44 +00:00
|
|
|
spin_lock_init(&policy->transition_lock);
|
|
|
|
init_waitqueue_head(&policy->transition_wait);
|
2015-01-02 07:04:38 +00:00
|
|
|
init_completion(&policy->kobj_unregister);
|
|
|
|
INIT_WORK(&policy->update, handle_update);
|
2013-10-18 13:40:15 +00:00
|
|
|
|
2015-07-27 21:11:50 +00:00
|
|
|
policy->cpu = cpu;
|
2013-07-29 22:54:11 +00:00
|
|
|
return policy;
|
|
|
|
|
2016-03-03 09:21:33 +00:00
|
|
|
err_free_real_cpus:
|
|
|
|
free_cpumask_var(policy->real_cpus);
|
2015-06-08 12:55:29 +00:00
|
|
|
err_free_rcpumask:
|
|
|
|
free_cpumask_var(policy->related_cpus);
|
2013-07-29 22:54:11 +00:00
|
|
|
err_free_cpumask:
|
|
|
|
free_cpumask_var(policy->cpus);
|
|
|
|
err_free_policy:
|
|
|
|
kfree(policy);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2017-01-05 04:47:27 +00:00
|
|
|
static void cpufreq_policy_put_kobj(struct cpufreq_policy *policy)
|
2013-12-20 15:56:02 +00:00
|
|
|
{
|
|
|
|
struct kobject *kobj;
|
|
|
|
struct completion *cmp;
|
|
|
|
|
2015-06-10 00:13:21 +00:00
|
|
|
down_write(&policy->rwsem);
|
2016-05-31 20:14:44 +00:00
|
|
|
cpufreq_stats_free_table(policy);
|
2013-12-20 15:56:02 +00:00
|
|
|
kobj = &policy->kobj;
|
|
|
|
cmp = &policy->kobj_unregister;
|
2015-06-10 00:13:21 +00:00
|
|
|
up_write(&policy->rwsem);
|
2013-12-20 15:56:02 +00:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2017-01-05 04:47:27 +00:00
|
|
|
static void cpufreq_policy_free(struct cpufreq_policy *policy)
|
2013-07-29 22:54:11 +00:00
|
|
|
{
|
2015-05-08 06:23:45 +00:00
|
|
|
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);
|
|
|
|
|
2017-01-05 04:47:27 +00:00
|
|
|
cpufreq_policy_put_kobj(policy);
|
cpufreq: Avoid attempts to create duplicate symbolic links
After commit 87549141d516 (cpufreq: Stop migrating sysfs files on
hotplug) there is a problem with CPUs that share cpufreq policy
objects with other CPUs and are initially offline.
Say CPU1 shares a policy with CPU0 which is online and is registered
first. As part of the registration process, cpufreq_add_dev() is
called for it. It creates the policy object and a symbolic link
to it from the CPU1's sysfs directory. If CPU1 is registered
subsequently and it is offline at that time, cpufreq_add_dev() will
attempt to create a symbolic link to the policy object for it, but
that link is present already, so a warning about that will be
triggered.
To avoid that warning, make cpufreq use an additional CPU mask
containing related CPUs that are actually present for each policy
object. That mask is initialized when the policy object is populated
after its creation (for the first online CPU using it) and it includes
CPUs from the "policy CPUs" mask returned by the cpufreq driver's
->init() callback that are physically present at that time. Symbolic
links to the policy are created only for the CPUs in that mask.
If cpufreq_add_dev() is invoked for an offline CPU, it checks the
new mask and only creates the symlink if the CPU was not in it (the
CPU is added to the mask at the same time).
In turn, cpufreq_remove_dev() drops the given CPU from the new mask,
removes its symlink to the policy object and returns, unless it is
the CPU owning the policy object. In that case, the policy object
is moved to a new CPU's sysfs directory or deleted if the CPU being
removed was the last user of the policy.
While at it, notice that cpufreq_remove_dev() can't fail, because
its return value is ignored, so make it ignore return values from
__cpufreq_remove_dev_prepare() and __cpufreq_remove_dev_finish()
and prevent these functions from aborting on errors returned by
__cpufreq_governor(). Also drop the now unused sif argument from
them.
Fixes: 87549141d516 (cpufreq: Stop migrating sysfs files on hotplug)
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reported-and-tested-by: Russell King <linux@arm.linux.org.uk>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
2015-07-26 00:07:47 +00:00
|
|
|
free_cpumask_var(policy->real_cpus);
|
2013-07-29 22:54:11 +00:00
|
|
|
free_cpumask_var(policy->related_cpus);
|
|
|
|
free_cpumask_var(policy->cpus);
|
|
|
|
kfree(policy);
|
|
|
|
}
|
|
|
|
|
2015-07-29 01:03:44 +00:00
|
|
|
static int cpufreq_online(unsigned int cpu)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2015-01-02 07:04:32 +00:00
|
|
|
struct cpufreq_policy *policy;
|
2015-07-29 01:08:57 +00:00
|
|
|
bool new_policy;
|
2005-04-16 22:20:36 +00:00
|
|
|
unsigned long flags;
|
2015-07-29 01:03:44 +00:00
|
|
|
unsigned int j;
|
|
|
|
int ret;
|
2015-06-10 00:13:21 +00:00
|
|
|
|
2015-07-29 01:03:44 +00:00
|
|
|
pr_debug("%s: bringing CPU%u online\n", __func__, cpu);
|
2013-08-06 17:23:11 +00:00
|
|
|
|
2015-02-19 11:32:06 +00:00
|
|
|
/* Check if this CPU already has a policy to manage it */
|
2015-05-12 06:52:12 +00:00
|
|
|
policy = per_cpu(cpufreq_cpu_data, cpu);
|
2015-07-27 21:11:21 +00:00
|
|
|
if (policy) {
|
2015-05-12 06:52:12 +00:00
|
|
|
WARN_ON(!cpumask_test_cpu(cpu, policy->related_cpus));
|
2015-07-27 21:11:21 +00:00
|
|
|
if (!policy_is_inactive(policy))
|
2015-07-27 21:11:37 +00:00
|
|
|
return cpufreq_add_policy_cpu(policy, cpu);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-07-27 21:11:21 +00:00
|
|
|
/* This is the only online CPU for the policy. Start over. */
|
2015-07-29 01:08:57 +00:00
|
|
|
new_policy = false;
|
2015-07-27 21:11:21 +00:00
|
|
|
down_write(&policy->rwsem);
|
|
|
|
policy->cpu = cpu;
|
|
|
|
policy->governor = NULL;
|
|
|
|
up_write(&policy->rwsem);
|
|
|
|
} else {
|
2015-07-29 01:08:57 +00:00
|
|
|
new_policy = true;
|
2015-07-27 21:11:50 +00:00
|
|
|
policy = cpufreq_policy_alloc(cpu);
|
2013-12-27 00:07:11 +00:00
|
|
|
if (!policy)
|
2015-07-27 21:11:30 +00:00
|
|
|
return -ENOMEM;
|
2013-12-27 00:07:11 +00:00
|
|
|
}
|
cpufreq: Fix crash in cpufreq-stats during suspend/resume
Stephen Warren reported that the cpufreq-stats code hits a NULL pointer
dereference during the second attempt to suspend a system. He also
pin-pointed the problem to commit 5302c3f "cpufreq: Perform light-weight
init/teardown during suspend/resume".
That commit actually ensured that the cpufreq-stats table and the
cpufreq-stats sysfs entries are *not* torn down (ie., not freed) during
suspend/resume, which makes it all the more surprising. However, it turns
out that the root-cause is not that we access an already freed memory, but
that the reference to the allocated memory gets moved around and we lose
track of that during resume, leading to the reported crash in a subsequent
suspend attempt.
In the suspend path, during CPU offline, the value of policy->cpu is updated
by choosing one of the surviving CPUs in that policy, as long as there is
atleast one CPU in that policy. And cpufreq_stats_update_policy_cpu() is
invoked to update the reference to the stats structure by assigning it to
the new CPU. However, in the resume path, during CPU online, we end up
assigning a fresh CPU as the policy->cpu, without letting cpufreq-stats
know about this. Thus the reference to the stats structure remains
(incorrectly) associated with the old CPU. So, in a subsequent suspend attempt,
during CPU offline, we end up accessing an incorrect location to get the
stats structure, which eventually leads to the NULL pointer dereference.
Fix this by letting cpufreq-stats know about the update of the policy->cpu
during CPU online in the resume path. (Also, move the update_policy_cpu()
function higher up in the file, so that __cpufreq_add_dev() can invoke
it).
Reported-and-tested-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2013-09-11 20:12:59 +00:00
|
|
|
|
2009-01-04 13:18:06 +00:00
|
|
|
cpumask_copy(policy->cpus, cpumask_of(cpu));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* call driver. From then on the cpufreq must be able
|
|
|
|
* to accept all calls to ->verify and ->setpolicy for this CPU
|
|
|
|
*/
|
2013-04-28 22:08:16 +00:00
|
|
|
ret = cpufreq_driver->init(policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ret) {
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("initialization failed\n");
|
2015-07-08 09:42:15 +00:00
|
|
|
goto out_free_policy;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2013-01-12 05:14:38 +00:00
|
|
|
|
2014-11-24 09:08:03 +00:00
|
|
|
down_write(&policy->rwsem);
|
|
|
|
|
2015-07-29 01:08:57 +00:00
|
|
|
if (new_policy) {
|
2015-07-27 21:11:44 +00:00
|
|
|
/* related_cpus should at least include policy->cpus. */
|
2015-10-15 16:05:21 +00:00
|
|
|
cpumask_copy(policy->related_cpus, policy->cpus);
|
2015-07-27 21:11:44 +00:00
|
|
|
}
|
cpufreq: Avoid attempts to create duplicate symbolic links
After commit 87549141d516 (cpufreq: Stop migrating sysfs files on
hotplug) there is a problem with CPUs that share cpufreq policy
objects with other CPUs and are initially offline.
Say CPU1 shares a policy with CPU0 which is online and is registered
first. As part of the registration process, cpufreq_add_dev() is
called for it. It creates the policy object and a symbolic link
to it from the CPU1's sysfs directory. If CPU1 is registered
subsequently and it is offline at that time, cpufreq_add_dev() will
attempt to create a symbolic link to the policy object for it, but
that link is present already, so a warning about that will be
triggered.
To avoid that warning, make cpufreq use an additional CPU mask
containing related CPUs that are actually present for each policy
object. That mask is initialized when the policy object is populated
after its creation (for the first online CPU using it) and it includes
CPUs from the "policy CPUs" mask returned by the cpufreq driver's
->init() callback that are physically present at that time. Symbolic
links to the policy are created only for the CPUs in that mask.
If cpufreq_add_dev() is invoked for an offline CPU, it checks the
new mask and only creates the symlink if the CPU was not in it (the
CPU is added to the mask at the same time).
In turn, cpufreq_remove_dev() drops the given CPU from the new mask,
removes its symlink to the policy object and returns, unless it is
the CPU owning the policy object. In that case, the policy object
is moved to a new CPU's sysfs directory or deleted if the CPU being
removed was the last user of the policy.
While at it, notice that cpufreq_remove_dev() can't fail, because
its return value is ignored, so make it ignore return values from
__cpufreq_remove_dev_prepare() and __cpufreq_remove_dev_finish()
and prevent these functions from aborting on errors returned by
__cpufreq_governor(). Also drop the now unused sif argument from
them.
Fixes: 87549141d516 (cpufreq: Stop migrating sysfs files on hotplug)
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reported-and-tested-by: Russell King <linux@arm.linux.org.uk>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
2015-07-26 00:07:47 +00:00
|
|
|
|
2014-03-04 03:44:00 +00:00
|
|
|
/*
|
|
|
|
* 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);
|
|
|
|
|
2015-07-29 01:08:57 +00:00
|
|
|
if (new_policy) {
|
2014-03-04 03:44:00 +00:00
|
|
|
policy->user_policy.min = policy->min;
|
|
|
|
policy->user_policy.max = policy->max;
|
2014-11-24 09:08:03 +00:00
|
|
|
|
2017-03-27 17:33:09 +00:00
|
|
|
for_each_cpu(j, policy->related_cpus) {
|
2015-05-08 06:23:45 +00:00
|
|
|
per_cpu(cpufreq_cpu_data, j) = policy;
|
2017-03-27 17:33:09 +00:00
|
|
|
add_cpu_dev_symlink(policy, j);
|
|
|
|
}
|
2017-03-21 06:06:06 +00:00
|
|
|
} else {
|
|
|
|
policy->min = policy->user_policy.min;
|
|
|
|
policy->max = policy->user_policy.max;
|
2015-05-08 06:23:45 +00:00
|
|
|
}
|
2014-01-09 15:08:43 +00:00
|
|
|
|
2014-03-12 20:49:33 +00:00
|
|
|
if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
|
2013-10-03 14:58:30 +00:00
|
|
|
policy->cur = cpufreq_driver->get(policy->cpu);
|
|
|
|
if (!policy->cur) {
|
|
|
|
pr_err("%s: ->get() failed\n", __func__);
|
2015-07-08 09:42:15 +00:00
|
|
|
goto out_exit_policy;
|
2013-10-03 14:58:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-03 05:50:46 +00:00
|
|
|
/*
|
|
|
|
* 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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-29 01:08:57 +00:00
|
|
|
if (new_policy) {
|
2015-07-27 21:11:37 +00:00
|
|
|
ret = cpufreq_add_dev_interface(policy);
|
2013-07-29 22:54:49 +00:00
|
|
|
if (ret)
|
2015-07-08 09:42:15 +00:00
|
|
|
goto out_exit_policy;
|
2016-05-31 20:14:44 +00:00
|
|
|
|
|
|
|
cpufreq_stats_create_table(policy);
|
2006-03-05 08:37:23 +00:00
|
|
|
|
2015-05-08 06:23:45 +00:00
|
|
|
write_lock_irqsave(&cpufreq_driver_lock, flags);
|
|
|
|
list_add(&policy->policy_list, &cpufreq_policy_list);
|
|
|
|
write_unlock_irqrestore(&cpufreq_driver_lock, flags);
|
|
|
|
}
|
2013-08-20 06:38:23 +00:00
|
|
|
|
2015-07-08 09:42:16 +00:00
|
|
|
ret = cpufreq_init_policy(policy);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("%s: Failed to initialize policy for cpu: %d (%d)\n",
|
|
|
|
__func__, cpu, ret);
|
2015-07-29 01:08:57 +00:00
|
|
|
/* cpufreq_policy_free() will notify based on this */
|
|
|
|
new_policy = false;
|
|
|
|
goto out_exit_policy;
|
2013-12-24 01:41:01 +00:00
|
|
|
}
|
2013-07-29 22:54:23 +00:00
|
|
|
|
2014-03-04 03:44:01 +00:00
|
|
|
up_write(&policy->rwsem);
|
2013-12-24 01:41:01 +00:00
|
|
|
|
2007-12-17 19:54:39 +00:00
|
|
|
kobject_uevent(&policy->kobj, KOBJ_ADD);
|
2014-11-27 00:37:51 +00:00
|
|
|
|
|
|
|
/* Callback for handling stuff after policy is ready */
|
|
|
|
if (cpufreq_driver->ready)
|
|
|
|
cpufreq_driver->ready(policy);
|
|
|
|
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("initialization complete\n");
|
2006-03-29 06:48:37 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
|
2015-07-08 09:42:15 +00:00
|
|
|
out_exit_policy:
|
2018-02-22 05:59:43 +00:00
|
|
|
for_each_cpu(j, policy->real_cpus)
|
|
|
|
remove_cpu_dev_symlink(policy, get_cpu_device(j));
|
|
|
|
|
2014-09-10 14:12:08 +00:00
|
|
|
up_write(&policy->rwsem);
|
|
|
|
|
2013-10-03 14:58:30 +00:00
|
|
|
if (cpufreq_driver->exit)
|
|
|
|
cpufreq_driver->exit(policy);
|
2017-03-27 17:33:09 +00:00
|
|
|
|
2015-07-08 09:42:15 +00:00
|
|
|
out_free_policy:
|
2017-01-05 04:47:27 +00:00
|
|
|
cpufreq_policy_free(policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-07-29 01:03:44 +00:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2016-04-07 01:31:57 +00:00
|
|
|
struct cpufreq_policy *policy;
|
2015-07-29 01:03:44 +00:00
|
|
|
unsigned cpu = dev->id;
|
cpufreq: create link to policy only for registered CPUs
If a cpufreq driver is registered very early in the boot stage (e.g.
registered from postcore_initcall()), then cpufreq core may generate
kernel warnings for it.
In this case, the CPUs are brought online, then the cpufreq driver is
registered, and then the CPU topology devices are registered. However,
by the time cpufreq_add_dev() gets called, the cpu device isn't stored
in the per-cpu variable (cpu_sys_devices,) which is read by
get_cpu_device().
So the cpufreq core fails to get device for the CPU, for which
cpufreq_add_dev() was called in the first place and we will hit a
WARN_ON(!cpu_dev).
Even if we reuse the 'dev' parameter passed to cpufreq_add_dev() to
avoid that warning, there might be other CPUs online that share the
policy with the cpu for which cpufreq_add_dev() is called. Eventually
get_cpu_device() will return NULL for them as well, and we will hit the
same WARN_ON() again.
In order to fix these issues, change cpufreq core to create links to the
policy for a cpu only when cpufreq_add_dev() is called for that CPU.
Reuse the 'real_cpus' mask to track that as well.
Note that cpufreq_remove_dev() already handles removal of the links for
individual CPUs and cpufreq_add_dev() has aligned with that now.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-12 06:37:05 +00:00
|
|
|
int ret;
|
2015-07-29 01:03:44 +00:00
|
|
|
|
|
|
|
dev_dbg(dev, "%s: adding CPU%u\n", __func__, cpu);
|
|
|
|
|
cpufreq: create link to policy only for registered CPUs
If a cpufreq driver is registered very early in the boot stage (e.g.
registered from postcore_initcall()), then cpufreq core may generate
kernel warnings for it.
In this case, the CPUs are brought online, then the cpufreq driver is
registered, and then the CPU topology devices are registered. However,
by the time cpufreq_add_dev() gets called, the cpu device isn't stored
in the per-cpu variable (cpu_sys_devices,) which is read by
get_cpu_device().
So the cpufreq core fails to get device for the CPU, for which
cpufreq_add_dev() was called in the first place and we will hit a
WARN_ON(!cpu_dev).
Even if we reuse the 'dev' parameter passed to cpufreq_add_dev() to
avoid that warning, there might be other CPUs online that share the
policy with the cpu for which cpufreq_add_dev() is called. Eventually
get_cpu_device() will return NULL for them as well, and we will hit the
same WARN_ON() again.
In order to fix these issues, change cpufreq core to create links to the
policy for a cpu only when cpufreq_add_dev() is called for that CPU.
Reuse the 'real_cpus' mask to track that as well.
Note that cpufreq_remove_dev() already handles removal of the links for
individual CPUs and cpufreq_add_dev() has aligned with that now.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-12 06:37:05 +00:00
|
|
|
if (cpu_online(cpu)) {
|
|
|
|
ret = cpufreq_online(cpu);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
2015-07-29 01:03:44 +00:00
|
|
|
|
cpufreq: create link to policy only for registered CPUs
If a cpufreq driver is registered very early in the boot stage (e.g.
registered from postcore_initcall()), then cpufreq core may generate
kernel warnings for it.
In this case, the CPUs are brought online, then the cpufreq driver is
registered, and then the CPU topology devices are registered. However,
by the time cpufreq_add_dev() gets called, the cpu device isn't stored
in the per-cpu variable (cpu_sys_devices,) which is read by
get_cpu_device().
So the cpufreq core fails to get device for the CPU, for which
cpufreq_add_dev() was called in the first place and we will hit a
WARN_ON(!cpu_dev).
Even if we reuse the 'dev' parameter passed to cpufreq_add_dev() to
avoid that warning, there might be other CPUs online that share the
policy with the cpu for which cpufreq_add_dev() is called. Eventually
get_cpu_device() will return NULL for them as well, and we will hit the
same WARN_ON() again.
In order to fix these issues, change cpufreq core to create links to the
policy for a cpu only when cpufreq_add_dev() is called for that CPU.
Reuse the 'real_cpus' mask to track that as well.
Note that cpufreq_remove_dev() already handles removal of the links for
individual CPUs and cpufreq_add_dev() has aligned with that now.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-12 06:37:05 +00:00
|
|
|
/* Create sysfs link on CPU registration */
|
2016-04-07 01:31:57 +00:00
|
|
|
policy = per_cpu(cpufreq_cpu_data, cpu);
|
2017-03-27 17:33:09 +00:00
|
|
|
if (policy)
|
|
|
|
add_cpu_dev_symlink(policy, cpu);
|
cpufreq: create link to policy only for registered CPUs
If a cpufreq driver is registered very early in the boot stage (e.g.
registered from postcore_initcall()), then cpufreq core may generate
kernel warnings for it.
In this case, the CPUs are brought online, then the cpufreq driver is
registered, and then the CPU topology devices are registered. However,
by the time cpufreq_add_dev() gets called, the cpu device isn't stored
in the per-cpu variable (cpu_sys_devices,) which is read by
get_cpu_device().
So the cpufreq core fails to get device for the CPU, for which
cpufreq_add_dev() was called in the first place and we will hit a
WARN_ON(!cpu_dev).
Even if we reuse the 'dev' parameter passed to cpufreq_add_dev() to
avoid that warning, there might be other CPUs online that share the
policy with the cpu for which cpufreq_add_dev() is called. Eventually
get_cpu_device() will return NULL for them as well, and we will hit the
same WARN_ON() again.
In order to fix these issues, change cpufreq core to create links to the
policy for a cpu only when cpufreq_add_dev() is called for that CPU.
Reuse the 'real_cpus' mask to track that as well.
Note that cpufreq_remove_dev() already handles removal of the links for
individual CPUs and cpufreq_add_dev() has aligned with that now.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-12 06:37:05 +00:00
|
|
|
|
2017-03-27 17:33:09 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2016-09-06 17:04:48 +00:00
|
|
|
static int cpufreq_offline(unsigned int cpu)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-08-06 17:23:05 +00:00
|
|
|
struct cpufreq_policy *policy;
|
2016-02-11 12:01:11 +00:00
|
|
|
int ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-01-14 13:23:03 +00:00
|
|
|
pr_debug("%s: unregistering CPU %u\n", __func__, cpu);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-05-08 06:23:45 +00:00
|
|
|
policy = cpufreq_cpu_get_raw(cpu);
|
2013-08-06 17:23:05 +00:00
|
|
|
if (!policy) {
|
2013-01-14 13:23:03 +00:00
|
|
|
pr_debug("%s: No cpu_data found\n", __func__);
|
2016-09-06 17:04:48 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 12:01:12 +00:00
|
|
|
down_write(&policy->rwsem);
|
2016-05-12 13:14:12 +00:00
|
|
|
if (has_target())
|
|
|
|
cpufreq_stop_governor(policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-06-10 00:20:23 +00:00
|
|
|
cpumask_clear_cpu(cpu, policy->cpus);
|
2015-05-12 06:52:34 +00:00
|
|
|
|
2015-06-10 00:20:23 +00:00
|
|
|
if (policy_is_inactive(policy)) {
|
|
|
|
if (has_target())
|
|
|
|
strncpy(policy->last_governor, policy->governor->name,
|
|
|
|
CPUFREQ_NAME_LEN);
|
2015-12-02 00:52:14 +00:00
|
|
|
else
|
|
|
|
policy->last_policy = policy->policy;
|
2015-06-10 00:20:23 +00:00
|
|
|
} else if (cpu == policy->cpu) {
|
|
|
|
/* Nominate new CPU */
|
|
|
|
policy->cpu = cpumask_any(policy->cpus);
|
|
|
|
}
|
2007-07-09 18:35:28 +00:00
|
|
|
|
2015-06-10 00:20:23 +00:00
|
|
|
/* Start governor again for active policy */
|
|
|
|
if (!policy_is_inactive(policy)) {
|
|
|
|
if (has_target()) {
|
2016-03-21 14:45:24 +00:00
|
|
|
ret = cpufreq_start_governor(policy);
|
2015-06-10 00:20:23 +00:00
|
|
|
if (ret)
|
|
|
|
pr_err("%s: Failed to start governor\n", __func__);
|
|
|
|
}
|
2013-09-06 19:53:09 +00:00
|
|
|
|
2016-02-11 12:01:12 +00:00
|
|
|
goto unlock;
|
2013-09-06 19:53:09 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 12:01:11 +00:00
|
|
|
if (cpufreq_driver->stop_cpu)
|
|
|
|
cpufreq_driver->stop_cpu(policy);
|
2015-06-10 00:13:21 +00:00
|
|
|
|
2016-05-12 13:13:35 +00:00
|
|
|
if (has_target())
|
|
|
|
cpufreq_exit_governor(policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-06-10 00:13:21 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2015-10-07 20:50:44 +00:00
|
|
|
if (cpufreq_driver->exit) {
|
2015-06-10 00:13:21 +00:00
|
|
|
cpufreq_driver->exit(policy);
|
2015-10-07 20:50:44 +00:00
|
|
|
policy->freq_table = NULL;
|
|
|
|
}
|
2016-02-11 12:01:12 +00:00
|
|
|
|
|
|
|
unlock:
|
|
|
|
up_write(&policy->rwsem);
|
2016-09-06 17:04:48 +00:00
|
|
|
return 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2013-09-06 19:53:09 +00:00
|
|
|
/**
|
2013-10-02 08:43:14 +00:00
|
|
|
* cpufreq_remove_dev - remove a CPU device
|
2013-09-06 19:53:09 +00:00
|
|
|
*
|
|
|
|
* Removes the cpufreq interface for a CPU device.
|
|
|
|
*/
|
2015-07-30 09:34:01 +00:00
|
|
|
static void cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif)
|
2007-02-06 00:12:44 +00:00
|
|
|
{
|
2011-12-21 22:29:42 +00:00
|
|
|
unsigned int cpu = dev->id;
|
cpufreq: Avoid attempts to create duplicate symbolic links
After commit 87549141d516 (cpufreq: Stop migrating sysfs files on
hotplug) there is a problem with CPUs that share cpufreq policy
objects with other CPUs and are initially offline.
Say CPU1 shares a policy with CPU0 which is online and is registered
first. As part of the registration process, cpufreq_add_dev() is
called for it. It creates the policy object and a symbolic link
to it from the CPU1's sysfs directory. If CPU1 is registered
subsequently and it is offline at that time, cpufreq_add_dev() will
attempt to create a symbolic link to the policy object for it, but
that link is present already, so a warning about that will be
triggered.
To avoid that warning, make cpufreq use an additional CPU mask
containing related CPUs that are actually present for each policy
object. That mask is initialized when the policy object is populated
after its creation (for the first online CPU using it) and it includes
CPUs from the "policy CPUs" mask returned by the cpufreq driver's
->init() callback that are physically present at that time. Symbolic
links to the policy are created only for the CPUs in that mask.
If cpufreq_add_dev() is invoked for an offline CPU, it checks the
new mask and only creates the symlink if the CPU was not in it (the
CPU is added to the mask at the same time).
In turn, cpufreq_remove_dev() drops the given CPU from the new mask,
removes its symlink to the policy object and returns, unless it is
the CPU owning the policy object. In that case, the policy object
is moved to a new CPU's sysfs directory or deleted if the CPU being
removed was the last user of the policy.
While at it, notice that cpufreq_remove_dev() can't fail, because
its return value is ignored, so make it ignore return values from
__cpufreq_remove_dev_prepare() and __cpufreq_remove_dev_finish()
and prevent these functions from aborting on errors returned by
__cpufreq_governor(). Also drop the now unused sif argument from
them.
Fixes: 87549141d516 (cpufreq: Stop migrating sysfs files on hotplug)
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reported-and-tested-by: Russell King <linux@arm.linux.org.uk>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
2015-07-26 00:07:47 +00:00
|
|
|
struct cpufreq_policy *policy = per_cpu(cpufreq_cpu_data, cpu);
|
2015-06-10 00:13:21 +00:00
|
|
|
|
cpufreq: Avoid attempts to create duplicate symbolic links
After commit 87549141d516 (cpufreq: Stop migrating sysfs files on
hotplug) there is a problem with CPUs that share cpufreq policy
objects with other CPUs and are initially offline.
Say CPU1 shares a policy with CPU0 which is online and is registered
first. As part of the registration process, cpufreq_add_dev() is
called for it. It creates the policy object and a symbolic link
to it from the CPU1's sysfs directory. If CPU1 is registered
subsequently and it is offline at that time, cpufreq_add_dev() will
attempt to create a symbolic link to the policy object for it, but
that link is present already, so a warning about that will be
triggered.
To avoid that warning, make cpufreq use an additional CPU mask
containing related CPUs that are actually present for each policy
object. That mask is initialized when the policy object is populated
after its creation (for the first online CPU using it) and it includes
CPUs from the "policy CPUs" mask returned by the cpufreq driver's
->init() callback that are physically present at that time. Symbolic
links to the policy are created only for the CPUs in that mask.
If cpufreq_add_dev() is invoked for an offline CPU, it checks the
new mask and only creates the symlink if the CPU was not in it (the
CPU is added to the mask at the same time).
In turn, cpufreq_remove_dev() drops the given CPU from the new mask,
removes its symlink to the policy object and returns, unless it is
the CPU owning the policy object. In that case, the policy object
is moved to a new CPU's sysfs directory or deleted if the CPU being
removed was the last user of the policy.
While at it, notice that cpufreq_remove_dev() can't fail, because
its return value is ignored, so make it ignore return values from
__cpufreq_remove_dev_prepare() and __cpufreq_remove_dev_finish()
and prevent these functions from aborting on errors returned by
__cpufreq_governor(). Also drop the now unused sif argument from
them.
Fixes: 87549141d516 (cpufreq: Stop migrating sysfs files on hotplug)
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reported-and-tested-by: Russell King <linux@arm.linux.org.uk>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
2015-07-26 00:07:47 +00:00
|
|
|
if (!policy)
|
2015-08-31 15:47:40 +00:00
|
|
|
return;
|
2015-06-10 00:13:21 +00:00
|
|
|
|
2016-02-11 12:01:11 +00:00
|
|
|
if (cpu_online(cpu))
|
|
|
|
cpufreq_offline(cpu);
|
2015-06-10 00:13:21 +00:00
|
|
|
|
cpufreq: Avoid attempts to create duplicate symbolic links
After commit 87549141d516 (cpufreq: Stop migrating sysfs files on
hotplug) there is a problem with CPUs that share cpufreq policy
objects with other CPUs and are initially offline.
Say CPU1 shares a policy with CPU0 which is online and is registered
first. As part of the registration process, cpufreq_add_dev() is
called for it. It creates the policy object and a symbolic link
to it from the CPU1's sysfs directory. If CPU1 is registered
subsequently and it is offline at that time, cpufreq_add_dev() will
attempt to create a symbolic link to the policy object for it, but
that link is present already, so a warning about that will be
triggered.
To avoid that warning, make cpufreq use an additional CPU mask
containing related CPUs that are actually present for each policy
object. That mask is initialized when the policy object is populated
after its creation (for the first online CPU using it) and it includes
CPUs from the "policy CPUs" mask returned by the cpufreq driver's
->init() callback that are physically present at that time. Symbolic
links to the policy are created only for the CPUs in that mask.
If cpufreq_add_dev() is invoked for an offline CPU, it checks the
new mask and only creates the symlink if the CPU was not in it (the
CPU is added to the mask at the same time).
In turn, cpufreq_remove_dev() drops the given CPU from the new mask,
removes its symlink to the policy object and returns, unless it is
the CPU owning the policy object. In that case, the policy object
is moved to a new CPU's sysfs directory or deleted if the CPU being
removed was the last user of the policy.
While at it, notice that cpufreq_remove_dev() can't fail, because
its return value is ignored, so make it ignore return values from
__cpufreq_remove_dev_prepare() and __cpufreq_remove_dev_finish()
and prevent these functions from aborting on errors returned by
__cpufreq_governor(). Also drop the now unused sif argument from
them.
Fixes: 87549141d516 (cpufreq: Stop migrating sysfs files on hotplug)
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reported-and-tested-by: Russell King <linux@arm.linux.org.uk>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
2015-07-26 00:07:47 +00:00
|
|
|
cpumask_clear_cpu(cpu, policy->real_cpus);
|
cpufreq: create link to policy only for registered CPUs
If a cpufreq driver is registered very early in the boot stage (e.g.
registered from postcore_initcall()), then cpufreq core may generate
kernel warnings for it.
In this case, the CPUs are brought online, then the cpufreq driver is
registered, and then the CPU topology devices are registered. However,
by the time cpufreq_add_dev() gets called, the cpu device isn't stored
in the per-cpu variable (cpu_sys_devices,) which is read by
get_cpu_device().
So the cpufreq core fails to get device for the CPU, for which
cpufreq_add_dev() was called in the first place and we will hit a
WARN_ON(!cpu_dev).
Even if we reuse the 'dev' parameter passed to cpufreq_add_dev() to
avoid that warning, there might be other CPUs online that share the
policy with the cpu for which cpufreq_add_dev() is called. Eventually
get_cpu_device() will return NULL for them as well, and we will hit the
same WARN_ON() again.
In order to fix these issues, change cpufreq core to create links to the
policy for a cpu only when cpufreq_add_dev() is called for that CPU.
Reuse the 'real_cpus' mask to track that as well.
Note that cpufreq_remove_dev() already handles removal of the links for
individual CPUs and cpufreq_add_dev() has aligned with that now.
Reported-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2016-09-12 06:37:05 +00:00
|
|
|
remove_cpu_dev_symlink(policy, dev);
|
2015-06-10 00:13:21 +00:00
|
|
|
|
2015-11-21 03:36:49 +00:00
|
|
|
if (cpumask_empty(policy->real_cpus))
|
2017-01-05 04:47:27 +00:00
|
|
|
cpufreq_policy_free(policy);
|
2007-02-06 00:12:44 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
2013-06-19 08:49:33 +00:00
|
|
|
* cpufreq_out_of_sync - If actual and saved CPU frequency differs, we're
|
|
|
|
* in deep trouble.
|
2015-01-02 07:04:28 +00:00
|
|
|
* @policy: policy managing CPUs
|
2005-04-16 22:20:36 +00:00
|
|
|
* @new_freq: CPU frequency the CPU actually runs at
|
|
|
|
*
|
2009-01-18 06:37:11 +00:00
|
|
|
* We adjust to current frequency first, and need to clean up later.
|
|
|
|
* So either call to cpufreq_update_policy() or schedule handle_update()).
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2015-01-02 07:04:28 +00:00
|
|
|
static void cpufreq_out_of_sync(struct cpufreq_policy *policy,
|
2006-10-26 10:50:58 +00:00
|
|
|
unsigned int new_freq)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct cpufreq_freqs freqs;
|
2013-03-24 06:26:43 +00:00
|
|
|
|
2014-03-11 17:03:00 +00:00
|
|
|
pr_debug("Warning: CPU frequency out of sync: cpufreq and timing core thinks of %u, is %u kHz\n",
|
2015-01-02 07:04:28 +00:00
|
|
|
policy->cur, new_freq);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-01-02 07:04:28 +00:00
|
|
|
freqs.old = policy->cur;
|
2005-04-16 22:20:36 +00:00
|
|
|
freqs.new = new_freq;
|
2013-03-24 06:26:43 +00:00
|
|
|
|
2014-03-24 08:05:45 +00:00
|
|
|
cpufreq_freq_transition_begin(policy, &freqs);
|
|
|
|
cpufreq_freq_transition_end(policy, &freqs, 0);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-02-28 05:43:23 +00:00
|
|
|
/**
|
2006-12-13 09:19:15 +00:00
|
|
|
* cpufreq_quick_get - get the CPU frequency (in kHz) from policy->cur
|
2005-12-02 18:43:20 +00:00
|
|
|
* @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)
|
|
|
|
{
|
2013-02-06 17:02:08 +00:00
|
|
|
struct cpufreq_policy *policy;
|
2006-10-26 10:50:58 +00:00
|
|
|
unsigned int ret_freq = 0;
|
2016-03-11 08:43:07 +00:00
|
|
|
unsigned long flags;
|
2005-12-02 18:43:20 +00:00
|
|
|
|
2016-03-11 08:43:07 +00:00
|
|
|
read_lock_irqsave(&cpufreq_driver_lock, flags);
|
|
|
|
|
|
|
|
if (cpufreq_driver && cpufreq_driver->setpolicy && cpufreq_driver->get) {
|
|
|
|
ret_freq = cpufreq_driver->get(cpu);
|
|
|
|
read_unlock_irqrestore(&cpufreq_driver_lock, flags);
|
|
|
|
return ret_freq;
|
|
|
|
}
|
|
|
|
|
|
|
|
read_unlock_irqrestore(&cpufreq_driver_lock, flags);
|
2013-02-06 17:02:08 +00:00
|
|
|
|
|
|
|
policy = cpufreq_cpu_get(cpu);
|
2005-12-02 18:43:20 +00:00
|
|
|
if (policy) {
|
2006-10-26 10:50:58 +00:00
|
|
|
ret_freq = policy->cur;
|
2005-12-02 18:43:20 +00:00
|
|
|
cpufreq_cpu_put(policy);
|
|
|
|
}
|
|
|
|
|
2008-02-07 21:33:49 +00:00
|
|
|
return ret_freq;
|
2005-12-02 18:43:20 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(cpufreq_quick_get);
|
|
|
|
|
2011-06-28 17:59:12 +00:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
2015-01-02 07:04:29 +00:00
|
|
|
static unsigned int __cpufreq_get(struct cpufreq_policy *policy)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2006-10-26 10:50:58 +00:00
|
|
|
unsigned int ret_freq = 0;
|
2013-04-04 14:53:25 +00:00
|
|
|
|
2013-04-28 22:08:16 +00:00
|
|
|
if (!cpufreq_driver->get)
|
2008-02-07 21:33:49 +00:00
|
|
|
return ret_freq;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-01-02 07:04:29 +00:00
|
|
|
ret_freq = cpufreq_driver->get(policy->cpu);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-03-30 01:47:49 +00:00
|
|
|
/*
|
|
|
|
* Updating inactive policies is invalid, so avoid doing that. Also
|
|
|
|
* if fast frequency switching is used with the given policy, the check
|
|
|
|
* against policy->cur is pointless, so skip it in that case too.
|
|
|
|
*/
|
|
|
|
if (unlikely(policy_is_inactive(policy)) || policy->fast_switch_enabled)
|
2015-06-10 00:11:45 +00:00
|
|
|
return ret_freq;
|
|
|
|
|
2006-10-26 10:50:58 +00:00
|
|
|
if (ret_freq && policy->cur &&
|
2013-04-28 22:08:16 +00:00
|
|
|
!(cpufreq_driver->flags & CPUFREQ_CONST_LOOPS)) {
|
2006-10-26 10:50:58 +00:00
|
|
|
/* verify no discrepancy between actual and
|
|
|
|
saved value exists */
|
|
|
|
if (unlikely(ret_freq != policy->cur)) {
|
2015-01-02 07:04:28 +00:00
|
|
|
cpufreq_out_of_sync(policy, ret_freq);
|
2005-04-16 22:20:36 +00:00
|
|
|
schedule_work(&policy->update);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-07 21:33:49 +00:00
|
|
|
return ret_freq;
|
2007-02-06 00:12:44 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-02-06 00:12:44 +00:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2014-03-04 20:42:15 +00:00
|
|
|
struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
|
2007-02-06 00:12:44 +00:00
|
|
|
unsigned int ret_freq = 0;
|
|
|
|
|
2014-03-04 20:42:15 +00:00
|
|
|
if (policy) {
|
|
|
|
down_read(&policy->rwsem);
|
2016-11-18 12:40:45 +00:00
|
|
|
|
|
|
|
if (!policy_is_inactive(policy))
|
|
|
|
ret_freq = __cpufreq_get(policy);
|
|
|
|
|
2014-03-04 20:42:15 +00:00
|
|
|
up_read(&policy->rwsem);
|
2007-02-06 00:12:44 +00:00
|
|
|
|
2014-03-04 20:42:15 +00:00
|
|
|
cpufreq_cpu_put(policy);
|
|
|
|
}
|
2013-08-06 17:23:11 +00:00
|
|
|
|
2008-02-07 21:33:49 +00:00
|
|
|
return ret_freq;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(cpufreq_get);
|
|
|
|
|
2016-03-21 14:46:25 +00:00
|
|
|
static unsigned int cpufreq_update_current_freq(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
unsigned int new_freq;
|
|
|
|
|
|
|
|
new_freq = cpufreq_driver->get(policy->cpu);
|
|
|
|
if (!new_freq)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!policy->cur) {
|
|
|
|
pr_debug("cpufreq: Driver did not initialize current freq\n");
|
|
|
|
policy->cur = new_freq;
|
|
|
|
} else if (policy->cur != new_freq && has_target()) {
|
|
|
|
cpufreq_out_of_sync(policy, new_freq);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new_freq;
|
|
|
|
}
|
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
static struct subsys_interface cpufreq_interface = {
|
|
|
|
.name = "cpufreq",
|
|
|
|
.subsys = &cpu_subsys,
|
|
|
|
.add_dev = cpufreq_add_dev,
|
|
|
|
.remove_dev = cpufreq_remove_dev,
|
cpufreq: Use syscore_ops for boot CPU suspend/resume (v2)
The cpufreq subsystem uses sysdev suspend and resume for
executing cpufreq_suspend() and cpufreq_resume(), respectively,
during system suspend, after interrupts have been switched off on the
boot CPU, and during system resume, while interrupts are still off on
the boot CPU. In both cases the other CPUs are off-line at the
relevant point (either they have been switched off via CPU hotplug
during suspend, or they haven't been switched on yet during resume).
For this reason, although it may seem that cpufreq_suspend() and
cpufreq_resume() are executed for all CPUs in the system, they are
only called for the boot CPU in fact, which is quite confusing.
To remove the confusion and to prepare for elimiating sysdev
suspend and resume operations from the kernel enirely, convernt
cpufreq to using a struct syscore_ops object for the boot CPU
suspend and resume and rename the callbacks so that their names
reflect their purpose. In addition, put some explanatory remarks
into their kerneldoc comments.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
2011-03-23 21:16:32 +00:00
|
|
|
};
|
|
|
|
|
2014-03-04 03:00:27 +00:00
|
|
|
/*
|
|
|
|
* 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) {
|
2015-09-08 16:41:02 +00:00
|
|
|
pr_debug("%s: suspend_freq not defined\n", __func__);
|
|
|
|
return 0;
|
2014-03-04 03:00:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2005-04-29 14:40:12 +00:00
|
|
|
/**
|
2014-03-04 03:00:26 +00:00
|
|
|
* cpufreq_suspend() - Suspend CPUFreq governors
|
cpufreq: Use syscore_ops for boot CPU suspend/resume (v2)
The cpufreq subsystem uses sysdev suspend and resume for
executing cpufreq_suspend() and cpufreq_resume(), respectively,
during system suspend, after interrupts have been switched off on the
boot CPU, and during system resume, while interrupts are still off on
the boot CPU. In both cases the other CPUs are off-line at the
relevant point (either they have been switched off via CPU hotplug
during suspend, or they haven't been switched on yet during resume).
For this reason, although it may seem that cpufreq_suspend() and
cpufreq_resume() are executed for all CPUs in the system, they are
only called for the boot CPU in fact, which is quite confusing.
To remove the confusion and to prepare for elimiating sysdev
suspend and resume operations from the kernel enirely, convernt
cpufreq to using a struct syscore_ops object for the boot CPU
suspend and resume and rename the callbacks so that their names
reflect their purpose. In addition, put some explanatory remarks
into their kerneldoc comments.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
2011-03-23 21:16:32 +00:00
|
|
|
*
|
2014-03-04 03:00:26 +00:00
|
|
|
* 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.
|
2005-04-29 14:40:12 +00:00
|
|
|
*/
|
2014-03-04 03:00:26 +00:00
|
|
|
void cpufreq_suspend(void)
|
2005-04-29 14:40:12 +00:00
|
|
|
{
|
2013-08-06 17:23:05 +00:00
|
|
|
struct cpufreq_policy *policy;
|
2005-04-29 14:40:12 +00:00
|
|
|
|
2014-03-04 03:00:26 +00:00
|
|
|
if (!cpufreq_driver)
|
|
|
|
return;
|
2005-04-29 14:40:12 +00:00
|
|
|
|
2016-05-02 00:27:19 +00:00
|
|
|
if (!has_target() && !cpufreq_driver->suspend)
|
2014-09-30 04:03:17 +00:00
|
|
|
goto suspend;
|
2005-04-29 14:40:12 +00:00
|
|
|
|
2014-03-04 03:00:26 +00:00
|
|
|
pr_debug("%s: Suspending Governors\n", __func__);
|
|
|
|
|
2015-05-12 06:50:11 +00:00
|
|
|
for_each_active_policy(policy) {
|
2016-05-02 00:27:19 +00:00
|
|
|
if (has_target()) {
|
|
|
|
down_write(&policy->rwsem);
|
2016-05-12 13:14:12 +00:00
|
|
|
cpufreq_stop_governor(policy);
|
2016-05-02 00:27:19 +00:00
|
|
|
up_write(&policy->rwsem);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cpufreq_driver->suspend && cpufreq_driver->suspend(policy))
|
2014-03-04 03:00:26 +00:00
|
|
|
pr_err("%s: Failed to suspend driver: %p\n", __func__,
|
|
|
|
policy);
|
2005-04-29 14:40:12 +00:00
|
|
|
}
|
2014-09-30 04:03:17 +00:00
|
|
|
|
|
|
|
suspend:
|
|
|
|
cpufreq_suspended = true;
|
2005-04-29 14:40:12 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
2014-03-04 03:00:26 +00:00
|
|
|
* cpufreq_resume() - Resume CPUFreq governors
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2014-03-04 03:00:26 +00:00
|
|
|
* Called during system wide Suspend/Hibernate cycle for resuming governors that
|
|
|
|
* are suspended with cpufreq_suspend().
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2014-03-04 03:00:26 +00:00
|
|
|
void cpufreq_resume(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-08-06 17:23:05 +00:00
|
|
|
struct cpufreq_policy *policy;
|
2016-02-11 12:01:12 +00:00
|
|
|
int ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-03-04 03:00:26 +00:00
|
|
|
if (!cpufreq_driver)
|
cpufreq: Skip cpufreq resume if it's not suspended
cpufreq_resume can be called even without preceding cpufreq_suspend.
This can happen in following scenario:
suspend_devices_and_enter
--> dpm_suspend_start
--> dpm_prepare
--> device_prepare : this function errors out
--> dpm_suspend: this is skipped due to dpm_prepare failure
this means cpufreq_suspend is skipped over
--> goto Recover_platform, due to previous error
--> goto Resume_devices
--> dpm_resume_end
--> dpm_resume
--> cpufreq_resume
In case schedutil is used as frequency governor, cpufreq_resume will
eventually call sugov_start, which does following:
memset(sg_cpu, 0, sizeof(*sg_cpu));
....
This effectively erases function pointer for frequency update, causing
crash later on. The function pointer would have been set correctly if
subsequent cpufreq_add_update_util_hook runs successfully, but that
function returns earlier because cpufreq_suspend was not called:
if (WARN_ON(per_cpu(cpufreq_update_util_data, cpu)))
return;
The fix is to check cpufreq_suspended first, if it's false, that means
cpufreq_suspend was not called in the first place, so do not resume
cpufreq.
Signed-off-by: Bo Yan <byan@nvidia.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
[ rjw: Dropped printing a message ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2018-01-23 21:57:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (unlikely(!cpufreq_suspended))
|
2014-03-04 03:00:26 +00:00
|
|
|
return;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-09-18 07:03:07 +00:00
|
|
|
cpufreq_suspended = false;
|
|
|
|
|
2016-05-02 00:27:19 +00:00
|
|
|
if (!has_target() && !cpufreq_driver->resume)
|
cpufreq: Use syscore_ops for boot CPU suspend/resume (v2)
The cpufreq subsystem uses sysdev suspend and resume for
executing cpufreq_suspend() and cpufreq_resume(), respectively,
during system suspend, after interrupts have been switched off on the
boot CPU, and during system resume, while interrupts are still off on
the boot CPU. In both cases the other CPUs are off-line at the
relevant point (either they have been switched off via CPU hotplug
during suspend, or they haven't been switched on yet during resume).
For this reason, although it may seem that cpufreq_suspend() and
cpufreq_resume() are executed for all CPUs in the system, they are
only called for the boot CPU in fact, which is quite confusing.
To remove the confusion and to prepare for elimiating sysdev
suspend and resume operations from the kernel enirely, convernt
cpufreq to using a struct syscore_ops object for the boot CPU
suspend and resume and rename the callbacks so that their names
reflect their purpose. In addition, put some explanatory remarks
into their kerneldoc comments.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
2011-03-23 21:16:32 +00:00
|
|
|
return;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-03-04 03:00:26 +00:00
|
|
|
pr_debug("%s: Resuming Governors\n", __func__);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-05-12 06:50:11 +00:00
|
|
|
for_each_active_policy(policy) {
|
2016-02-11 12:01:12 +00:00
|
|
|
if (cpufreq_driver->resume && cpufreq_driver->resume(policy)) {
|
2014-03-24 07:00:29 +00:00
|
|
|
pr_err("%s: Failed to resume driver: %p\n", __func__,
|
|
|
|
policy);
|
2016-05-02 00:27:19 +00:00
|
|
|
} else if (has_target()) {
|
2016-02-11 12:01:12 +00:00
|
|
|
down_write(&policy->rwsem);
|
2016-03-21 14:45:24 +00:00
|
|
|
ret = cpufreq_start_governor(policy);
|
2016-02-11 12:01:12 +00:00
|
|
|
up_write(&policy->rwsem);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
pr_err("%s: Failed to start governor for policy: %p\n",
|
|
|
|
__func__, policy);
|
|
|
|
}
|
2014-03-04 03:00:26 +00:00
|
|
|
}
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-01-20 10:24:28 +00:00
|
|
|
/**
|
|
|
|
* 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)
|
|
|
|
{
|
2013-04-28 22:08:16 +00:00
|
|
|
if (cpufreq_driver)
|
|
|
|
return cpufreq_driver->name;
|
|
|
|
|
|
|
|
return NULL;
|
2013-01-20 10:24:28 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_get_current_driver);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-10-19 09:30:27 +00:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*********************************************************************
|
|
|
|
* NOTIFIER LISTS INTERFACE *
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cpufreq_register_notifier - register a driver with cpufreq
|
|
|
|
* @nb: notifier function to register
|
|
|
|
* @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
|
|
|
|
*
|
2006-02-28 05:43:23 +00:00
|
|
|
* Add a driver to one of two lists: either a list of drivers that
|
2005-04-16 22:20:36 +00:00
|
|
|
* 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
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
* blocking_notifier_chain_register.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2013-01-17 16:22:21 +00:00
|
|
|
if (cpufreq_disabled())
|
|
|
|
return -EINVAL;
|
|
|
|
|
2008-02-16 10:41:24 +00:00
|
|
|
WARN_ON(!init_cpufreq_transition_notifier_list_called);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
switch (list) {
|
|
|
|
case CPUFREQ_TRANSITION_NOTIFIER:
|
2016-03-30 01:47:49 +00:00
|
|
|
mutex_lock(&cpufreq_fast_switch_lock);
|
|
|
|
|
|
|
|
if (cpufreq_fast_switch_count > 0) {
|
|
|
|
mutex_unlock(&cpufreq_fast_switch_lock);
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
2006-10-04 09:17:06 +00:00
|
|
|
ret = srcu_notifier_chain_register(
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
&cpufreq_transition_notifier_list, nb);
|
2016-03-30 01:47:49 +00:00
|
|
|
if (!ret)
|
|
|
|
cpufreq_fast_switch_count--;
|
|
|
|
|
|
|
|
mutex_unlock(&cpufreq_fast_switch_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case CPUFREQ_POLICY_NOTIFIER:
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
ret = blocking_notifier_chain_register(
|
|
|
|
&cpufreq_policy_notifier_list, nb);
|
2005-04-16 22:20:36 +00:00
|
|
|
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
|
2013-06-19 08:49:33 +00:00
|
|
|
* @list: CPUFREQ_TRANSITION_NOTIFIER or CPUFREQ_POLICY_NOTIFIER
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Remove a driver from the CPU frequency notifier list.
|
|
|
|
*
|
|
|
|
* This function may sleep, and has the same return conditions as
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
* blocking_notifier_chain_unregister.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2013-01-17 16:22:21 +00:00
|
|
|
if (cpufreq_disabled())
|
|
|
|
return -EINVAL;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
switch (list) {
|
|
|
|
case CPUFREQ_TRANSITION_NOTIFIER:
|
2016-03-30 01:47:49 +00:00
|
|
|
mutex_lock(&cpufreq_fast_switch_lock);
|
|
|
|
|
2006-10-04 09:17:06 +00:00
|
|
|
ret = srcu_notifier_chain_unregister(
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
&cpufreq_transition_notifier_list, nb);
|
2016-03-30 01:47:49 +00:00
|
|
|
if (!ret && !WARN_ON(cpufreq_fast_switch_count >= 0))
|
|
|
|
cpufreq_fast_switch_count++;
|
|
|
|
|
|
|
|
mutex_unlock(&cpufreq_fast_switch_lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
case CPUFREQ_POLICY_NOTIFIER:
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
ret = blocking_notifier_chain_unregister(
|
|
|
|
&cpufreq_policy_notifier_list, nb);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ret = -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(cpufreq_unregister_notifier);
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* GOVERNORS *
|
|
|
|
*********************************************************************/
|
|
|
|
|
2016-03-30 01:47:49 +00:00
|
|
|
/**
|
|
|
|
* cpufreq_driver_fast_switch - Carry out a fast CPU frequency switch.
|
|
|
|
* @policy: cpufreq policy to switch the frequency for.
|
|
|
|
* @target_freq: New frequency to set (may be approximate).
|
|
|
|
*
|
|
|
|
* Carry out a fast frequency switch without sleeping.
|
|
|
|
*
|
|
|
|
* The driver's ->fast_switch() callback invoked by this function must be
|
|
|
|
* suitable for being called from within RCU-sched read-side critical sections
|
|
|
|
* and it is expected to select the minimum available frequency greater than or
|
|
|
|
* equal to @target_freq (CPUFREQ_RELATION_L).
|
|
|
|
*
|
|
|
|
* This function must not be called if policy->fast_switch_enabled is unset.
|
|
|
|
*
|
|
|
|
* Governors calling this function must guarantee that it will never be invoked
|
|
|
|
* twice in parallel for the same policy and that it will never be called in
|
|
|
|
* parallel with either ->target() or ->target_index() for the same policy.
|
|
|
|
*
|
2017-08-09 04:51:46 +00:00
|
|
|
* Returns the actual frequency set for the CPU.
|
|
|
|
*
|
|
|
|
* If 0 is returned by the driver's ->fast_switch() callback to indicate an
|
|
|
|
* error condition, the hardware configuration must be preserved.
|
2016-03-30 01:47:49 +00:00
|
|
|
*/
|
|
|
|
unsigned int cpufreq_driver_fast_switch(struct cpufreq_policy *policy,
|
|
|
|
unsigned int target_freq)
|
|
|
|
{
|
2016-06-01 20:36:26 +00:00
|
|
|
target_freq = clamp_val(target_freq, policy->min, policy->max);
|
2016-03-30 01:47:49 +00:00
|
|
|
|
|
|
|
return cpufreq_driver->fast_switch(policy, target_freq);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_driver_fast_switch);
|
|
|
|
|
2014-06-02 17:19:28 +00:00
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2016-06-03 05:28:50 +00:00
|
|
|
static int __target_index(struct cpufreq_policy *policy, int index)
|
2014-05-21 08:59:29 +00:00
|
|
|
{
|
2014-06-02 17:19:28 +00:00
|
|
|
struct cpufreq_freqs freqs = {.old = policy->cur, .flags = 0};
|
|
|
|
unsigned int intermediate_freq = 0;
|
2016-06-03 05:28:50 +00:00
|
|
|
unsigned int newfreq = policy->freq_table[index].frequency;
|
2014-05-21 08:59:29 +00:00
|
|
|
int retval = -EINVAL;
|
|
|
|
bool notify;
|
|
|
|
|
2016-06-03 05:28:50 +00:00
|
|
|
if (newfreq == policy->cur)
|
|
|
|
return 0;
|
|
|
|
|
2014-05-21 08:59:29 +00:00
|
|
|
notify = !(cpufreq_driver->flags & CPUFREQ_ASYNC_NOTIFICATION);
|
|
|
|
if (notify) {
|
2014-06-02 17:19:28 +00:00
|
|
|
/* 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;
|
|
|
|
}
|
2014-05-21 08:59:29 +00:00
|
|
|
|
2016-06-03 05:28:50 +00:00
|
|
|
freqs.new = newfreq;
|
2014-05-21 08:59:29 +00:00
|
|
|
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);
|
|
|
|
|
2014-06-02 17:19:28 +00:00
|
|
|
if (notify) {
|
2014-05-21 08:59:29 +00:00
|
|
|
cpufreq_freq_transition_end(policy, &freqs, retval);
|
|
|
|
|
2014-06-02 17:19:28 +00:00
|
|
|
/*
|
|
|
|
* 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
|
2015-05-22 17:18:22 +00:00
|
|
|
* case we haven't switched to intermediate freq at all.
|
2014-06-02 17:19:28 +00:00
|
|
|
*/
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-21 08:59:29 +00:00
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
int __cpufreq_driver_target(struct cpufreq_policy *policy,
|
|
|
|
unsigned int target_freq,
|
|
|
|
unsigned int relation)
|
|
|
|
{
|
2012-10-31 00:28:21 +00:00
|
|
|
unsigned int old_target_freq = target_freq;
|
2016-06-03 05:28:51 +00:00
|
|
|
int index;
|
2005-10-30 22:59:54 +00:00
|
|
|
|
2012-03-13 23:18:39 +00:00
|
|
|
if (cpufreq_disabled())
|
|
|
|
return -ENODEV;
|
|
|
|
|
2012-10-31 00:28:21 +00:00
|
|
|
/* Make sure that target_freq is within supported range */
|
2016-05-26 05:57:24 +00:00
|
|
|
target_freq = clamp_val(target_freq, policy->min, policy->max);
|
2012-10-31 00:28:21 +00:00
|
|
|
|
|
|
|
pr_debug("target for CPU %u: %u kHz, relation %u, requested %u kHz\n",
|
2014-03-11 17:03:00 +00:00
|
|
|
policy->cpu, target_freq, relation, old_target_freq);
|
2012-10-31 00:28:15 +00:00
|
|
|
|
2013-10-25 14:15:48 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2012-10-31 00:28:15 +00:00
|
|
|
if (target_freq == policy->cur)
|
|
|
|
return 0;
|
|
|
|
|
2014-06-02 17:19:28 +00:00
|
|
|
/* Save last value to restore later on errors */
|
|
|
|
policy->restore_freq = policy->cur;
|
|
|
|
|
2013-04-28 22:08:16 +00:00
|
|
|
if (cpufreq_driver->target)
|
2016-02-25 23:03:01 +00:00
|
|
|
return cpufreq_driver->target(policy, target_freq, relation);
|
2013-10-25 14:15:48 +00:00
|
|
|
|
2016-02-25 23:03:01 +00:00
|
|
|
if (!cpufreq_driver->target_index)
|
|
|
|
return -EINVAL;
|
2013-10-25 14:15:48 +00:00
|
|
|
|
2016-06-03 05:28:51 +00:00
|
|
|
index = cpufreq_frequency_table_target(policy, target_freq, relation);
|
2016-02-25 23:03:01 +00:00
|
|
|
|
2016-06-03 05:28:50 +00:00
|
|
|
return __target_index(policy, index);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(__cpufreq_driver_target);
|
|
|
|
|
|
|
|
int cpufreq_driver_target(struct cpufreq_policy *policy,
|
|
|
|
unsigned int target_freq,
|
|
|
|
unsigned int relation)
|
|
|
|
{
|
2008-07-25 20:44:53 +00:00
|
|
|
int ret = -EINVAL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-10-18 13:40:15 +00:00
|
|
|
down_write(&policy->rwsem);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
ret = __cpufreq_driver_target(policy, target_freq, relation);
|
|
|
|
|
2013-10-18 13:40:15 +00:00
|
|
|
up_write(&policy->rwsem);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_driver_target);
|
|
|
|
|
2016-02-05 01:37:42 +00:00
|
|
|
__weak struct cpufreq_governor *cpufreq_fallback_governor(void)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-05-13 23:01:46 +00:00
|
|
|
static int cpufreq_init_governor(struct cpufreq_policy *policy)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-07-28 16:43:56 +00:00
|
|
|
int ret;
|
2007-10-02 20:28:13 +00:00
|
|
|
|
2014-03-04 03:00:26 +00:00
|
|
|
/* Don't start any governor operations if we are entering suspend */
|
|
|
|
if (cpufreq_suspended)
|
|
|
|
return 0;
|
2014-12-18 06:28:19 +00:00
|
|
|
/*
|
|
|
|
* Governor might not be initiated here if ACPI _PPC changed
|
|
|
|
* notification happened, so check it.
|
|
|
|
*/
|
|
|
|
if (!policy->governor)
|
|
|
|
return -EINVAL;
|
2014-03-04 03:00:26 +00:00
|
|
|
|
2017-07-19 10:12:46 +00:00
|
|
|
/* Platform doesn't want dynamic frequency switching ? */
|
|
|
|
if (policy->governor->dynamic_switching &&
|
2017-07-19 10:12:49 +00:00
|
|
|
cpufreq_driver->flags & CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING) {
|
2016-02-05 01:37:42 +00:00
|
|
|
struct cpufreq_governor *gov = cpufreq_fallback_governor();
|
|
|
|
|
|
|
|
if (gov) {
|
2017-07-19 10:12:48 +00:00
|
|
|
pr_warn("Can't use %s governor as dynamic switching is disallowed. Fallback to %s governor\n",
|
2014-03-11 17:03:00 +00:00
|
|
|
policy->governor->name, gov->name);
|
2007-10-02 20:28:13 +00:00
|
|
|
policy->governor = gov;
|
2016-02-05 01:37:42 +00:00
|
|
|
} else {
|
|
|
|
return -EINVAL;
|
2007-10-02 20:28:13 +00:00
|
|
|
}
|
2007-10-02 20:28:12 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-05-13 23:01:46 +00:00
|
|
|
if (!try_module_get(policy->governor->owner))
|
|
|
|
return -EINVAL;
|
cpufreq: Fix governor start/stop race condition
Cpufreq governors' stop and start operations should be carried out
in sequence. Otherwise, there will be unexpected behavior, like in
the example below.
Suppose there are 4 CPUs and policy->cpu=CPU0, CPU1/2/3 are linked
to CPU0. The normal sequence is:
1) Current governor is userspace. An application tries to set the
governor to ondemand. It will call __cpufreq_set_policy() in
which it will stop the userspace governor and then start the
ondemand governor.
2) Current governor is userspace. The online of CPU3 runs on CPU0.
It will call cpufreq_add_policy_cpu() in which it will first
stop the userspace governor, and then start it again.
If the sequence of the above two cases interleaves, it becomes:
1) Application stops userspace governor
2) Hotplug stops userspace governor
which is a problem, because the governor shouldn't be stopped twice
in a row. What happens next is:
3) Application starts ondemand governor
4) Hotplug starts a governor
In step 4, the hotplug is supposed to start the userspace governor,
but now the governor has been changed by the application to ondemand,
so the ondemand governor is started once again, which is incorrect.
The solution is to prevent policy governors from being stopped
multiple times in a row. A governor should only be stopped once for
one policy. After it has been stopped, no more governor stop
operations should be executed.
Also add a mutex to serialize governor operations.
[rjw: Changelog. And you owe me a beverage of my choice.]
Signed-off-by: Xiaoguang Chen <chenxg@marvell.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2013-06-19 07:00:07 +00:00
|
|
|
|
2016-05-13 23:01:46 +00:00
|
|
|
pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-06-02 21:24:15 +00:00
|
|
|
if (policy->governor->init) {
|
|
|
|
ret = policy->governor->init(policy);
|
|
|
|
if (ret) {
|
2016-05-12 13:13:35 +00:00
|
|
|
module_put(policy->governor->owner);
|
2016-06-02 21:24:15 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2016-05-12 13:13:35 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-05-13 23:01:46 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cpufreq_exit_governor(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
if (cpufreq_suspended || !policy->governor)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
|
|
|
|
|
2016-06-02 21:24:15 +00:00
|
|
|
if (policy->governor->exit)
|
|
|
|
policy->governor->exit(policy);
|
2016-05-13 23:01:46 +00:00
|
|
|
|
|
|
|
module_put(policy->governor->owner);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2016-03-21 14:45:24 +00:00
|
|
|
static int cpufreq_start_governor(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2016-05-13 23:01:46 +00:00
|
|
|
if (cpufreq_suspended)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!policy->governor)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
|
|
|
|
|
2016-03-21 14:47:48 +00:00
|
|
|
if (cpufreq_driver->get && !cpufreq_driver->setpolicy)
|
|
|
|
cpufreq_update_current_freq(policy);
|
|
|
|
|
2016-06-02 21:24:15 +00:00
|
|
|
if (policy->governor->start) {
|
|
|
|
ret = policy->governor->start(policy);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (policy->governor->limits)
|
|
|
|
policy->governor->limits(policy);
|
2016-05-13 22:59:27 +00:00
|
|
|
|
|
|
|
return 0;
|
2016-03-21 14:45:24 +00:00
|
|
|
}
|
|
|
|
|
2016-05-13 23:01:46 +00:00
|
|
|
static void cpufreq_stop_governor(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
if (cpufreq_suspended || !policy->governor)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
|
|
|
|
|
2016-06-02 21:24:15 +00:00
|
|
|
if (policy->governor->stop)
|
|
|
|
policy->governor->stop(policy);
|
2016-05-13 23:01:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void cpufreq_governor_limits(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
if (cpufreq_suspended || !policy->governor)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pr_debug("%s: for CPU %u\n", __func__, policy->cpu);
|
|
|
|
|
2016-06-02 21:24:15 +00:00
|
|
|
if (policy->governor->limits)
|
|
|
|
policy->governor->limits(policy);
|
2016-03-21 14:45:24 +00:00
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
int cpufreq_register_governor(struct cpufreq_governor *governor)
|
|
|
|
{
|
2006-07-06 19:30:26 +00:00
|
|
|
int err;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (!governor)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2012-03-13 23:18:39 +00:00
|
|
|
if (cpufreq_disabled())
|
|
|
|
return -ENODEV;
|
|
|
|
|
2006-01-13 23:54:22 +00:00
|
|
|
mutex_lock(&cpufreq_governor_mutex);
|
2006-02-28 05:43:23 +00:00
|
|
|
|
2006-07-06 19:30:26 +00:00
|
|
|
err = -EBUSY;
|
2015-01-02 07:04:26 +00:00
|
|
|
if (!find_governor(governor->name)) {
|
2006-07-06 19:30:26 +00:00
|
|
|
err = 0;
|
|
|
|
list_add(&governor->governor_list, &cpufreq_governor_list);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-02-28 05:43:23 +00:00
|
|
|
mutex_unlock(&cpufreq_governor_mutex);
|
2006-07-06 19:30:26 +00:00
|
|
|
return err;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_register_governor);
|
|
|
|
|
|
|
|
void cpufreq_unregister_governor(struct cpufreq_governor *governor)
|
|
|
|
{
|
2015-05-12 06:52:34 +00:00
|
|
|
struct cpufreq_policy *policy;
|
|
|
|
unsigned long flags;
|
2009-11-12 14:18:46 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!governor)
|
|
|
|
return;
|
|
|
|
|
2012-03-13 23:18:39 +00:00
|
|
|
if (cpufreq_disabled())
|
|
|
|
return;
|
|
|
|
|
2015-05-12 06:52:34 +00:00
|
|
|
/* clear last_governor for all inactive policies */
|
|
|
|
read_lock_irqsave(&cpufreq_driver_lock, flags);
|
|
|
|
for_each_inactive_policy(policy) {
|
2015-05-12 06:52:51 +00:00
|
|
|
if (!strcmp(policy->last_governor, governor->name)) {
|
|
|
|
policy->governor = NULL;
|
2015-05-12 06:52:34 +00:00
|
|
|
strcpy(policy->last_governor, "\0");
|
2015-05-12 06:52:51 +00:00
|
|
|
}
|
2009-11-12 14:18:46 +00:00
|
|
|
}
|
2015-05-12 06:52:34 +00:00
|
|
|
read_unlock_irqrestore(&cpufreq_driver_lock, flags);
|
2009-11-12 14:18:46 +00:00
|
|
|
|
2006-01-13 23:54:22 +00:00
|
|
|
mutex_lock(&cpufreq_governor_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
list_del(&governor->governor_list);
|
2006-01-13 23:54:22 +00:00
|
|
|
mutex_unlock(&cpufreq_governor_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_unregister_governor);
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************
|
|
|
|
* POLICY INTERFACE *
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cpufreq_get_policy - get the current cpufreq_policy
|
2009-01-18 06:37:11 +00:00
|
|
|
* @policy: struct cpufreq_policy into which the current cpufreq_policy
|
|
|
|
* is written
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* 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;
|
|
|
|
|
2013-08-06 17:23:06 +00:00
|
|
|
memcpy(policy, cpu_policy, sizeof(*policy));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
cpufreq_cpu_put(cpu_policy);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(cpufreq_get_policy);
|
|
|
|
|
2006-07-26 13:40:07 +00:00
|
|
|
/*
|
2013-10-02 08:43:16 +00:00
|
|
|
* policy : current policy.
|
|
|
|
* new_policy: policy to be set.
|
2006-07-26 13:40:07 +00:00
|
|
|
*/
|
2013-10-02 08:43:16 +00:00
|
|
|
static int cpufreq_set_policy(struct cpufreq_policy *policy,
|
2013-08-06 17:23:05 +00:00
|
|
|
struct cpufreq_policy *new_policy)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2014-02-17 21:56:35 +00:00
|
|
|
struct cpufreq_governor *old_gov;
|
|
|
|
int ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-03-11 17:03:00 +00:00
|
|
|
pr_debug("setting new policy for CPU %u: %u - %u kHz\n",
|
|
|
|
new_policy->cpu, new_policy->min, new_policy->max);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-08-06 17:23:06 +00:00
|
|
|
memcpy(&new_policy->cpuinfo, &policy->cpuinfo, sizeof(policy->cpuinfo));
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-07-30 10:10:40 +00:00
|
|
|
/*
|
|
|
|
* 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)
|
2014-02-17 21:56:35 +00:00
|
|
|
return -EINVAL;
|
2006-07-05 21:12:20 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* verify the cpu speed can be set within this limit */
|
2013-08-06 17:23:05 +00:00
|
|
|
ret = cpufreq_driver->verify(new_policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (ret)
|
2014-02-17 21:56:35 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* adjust if necessary - all reasons */
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
|
2013-08-06 17:23:05 +00:00
|
|
|
CPUFREQ_ADJUST, new_policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-06-19 08:49:33 +00:00
|
|
|
/*
|
|
|
|
* verify the cpu speed can be set within this limit, which might be
|
|
|
|
* different to the first one
|
|
|
|
*/
|
2013-08-06 17:23:05 +00:00
|
|
|
ret = cpufreq_driver->verify(new_policy);
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
if (ret)
|
2014-02-17 21:56:35 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* notification of the new policy */
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
blocking_notifier_call_chain(&cpufreq_policy_notifier_list,
|
2013-08-06 17:23:05 +00:00
|
|
|
CPUFREQ_NOTIFY, new_policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-08-06 17:23:05 +00:00
|
|
|
policy->min = new_policy->min;
|
|
|
|
policy->max = new_policy->max;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-07-13 20:25:25 +00:00
|
|
|
policy->cached_target_freq = UINT_MAX;
|
|
|
|
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("new min and max freqs are %u - %u kHz\n",
|
2014-03-11 17:03:00 +00:00
|
|
|
policy->min, policy->max);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-04-28 22:08:16 +00:00
|
|
|
if (cpufreq_driver->setpolicy) {
|
2013-08-06 17:23:05 +00:00
|
|
|
policy->policy = new_policy->policy;
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("setting range\n");
|
2014-02-17 21:56:35 +00:00
|
|
|
return cpufreq_driver->setpolicy(new_policy);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-03-21 14:45:24 +00:00
|
|
|
if (new_policy->governor == policy->governor) {
|
|
|
|
pr_debug("cpufreq: governor limits update\n");
|
2016-05-13 23:01:46 +00:00
|
|
|
cpufreq_governor_limits(policy);
|
2016-05-13 22:59:27 +00:00
|
|
|
return 0;
|
2016-03-21 14:45:24 +00:00
|
|
|
}
|
2013-03-27 15:58:57 +00:00
|
|
|
|
2014-02-17 21:56:35 +00:00
|
|
|
pr_debug("governor switch\n");
|
|
|
|
|
|
|
|
/* save old, working values */
|
|
|
|
old_gov = policy->governor;
|
|
|
|
/* end old governor */
|
|
|
|
if (old_gov) {
|
2016-05-12 13:14:12 +00:00
|
|
|
cpufreq_stop_governor(policy);
|
2016-05-12 13:13:35 +00:00
|
|
|
cpufreq_exit_governor(policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2014-02-17 21:56:35 +00:00
|
|
|
/* start new governor */
|
|
|
|
policy->governor = new_policy->governor;
|
2016-05-13 23:01:46 +00:00
|
|
|
ret = cpufreq_init_governor(policy);
|
2015-07-18 06:01:03 +00:00
|
|
|
if (!ret) {
|
2016-03-21 14:45:24 +00:00
|
|
|
ret = cpufreq_start_governor(policy);
|
|
|
|
if (!ret) {
|
|
|
|
pr_debug("cpufreq: governor change\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2016-03-30 01:47:49 +00:00
|
|
|
cpufreq_exit_governor(policy);
|
2014-02-17 21:56:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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;
|
2016-05-13 23:01:46 +00:00
|
|
|
if (cpufreq_init_governor(policy))
|
2015-07-18 06:01:03 +00:00
|
|
|
policy->governor = NULL;
|
|
|
|
else
|
2016-03-21 14:45:24 +00:00
|
|
|
cpufreq_start_governor(policy);
|
2014-02-17 21:56:35 +00:00
|
|
|
}
|
|
|
|
|
2015-07-18 06:01:03 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cpufreq_update_policy - re-evaluate an existing cpufreq policy
|
|
|
|
* @cpu: CPU which shall be re-evaluated
|
|
|
|
*
|
2011-03-31 01:57:33 +00:00
|
|
|
* Useful for policy notifiers which have different necessities
|
2005-04-16 22:20:36 +00:00
|
|
|
* at different times.
|
|
|
|
*/
|
2016-11-18 12:59:21 +00:00
|
|
|
void cpufreq_update_policy(unsigned int cpu)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2013-08-06 17:23:05 +00:00
|
|
|
struct cpufreq_policy *policy = cpufreq_cpu_get(cpu);
|
|
|
|
struct cpufreq_policy new_policy;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-06-18 18:27:32 +00:00
|
|
|
if (!policy)
|
2016-11-18 12:59:21 +00:00
|
|
|
return;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-10-18 13:40:15 +00:00
|
|
|
down_write(&policy->rwsem);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-11-18 12:59:21 +00:00
|
|
|
if (policy_is_inactive(policy))
|
2016-11-18 12:40:45 +00:00
|
|
|
goto unlock;
|
|
|
|
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("updating policy for CPU %u\n", cpu);
|
2013-08-06 17:23:06 +00:00
|
|
|
memcpy(&new_policy, policy, sizeof(*policy));
|
2013-08-06 17:23:05 +00:00
|
|
|
new_policy.min = policy->user_policy.min;
|
|
|
|
new_policy.max = policy->user_policy.max;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-06-19 08:49:33 +00:00
|
|
|
/*
|
|
|
|
* BIOS might change freq behind our back
|
|
|
|
* -> ask driver for current freq and notify governors about a change
|
|
|
|
*/
|
2014-03-12 20:49:33 +00:00
|
|
|
if (cpufreq_driver->get && !cpufreq_driver->setpolicy) {
|
2016-11-18 12:59:21 +00:00
|
|
|
if (cpufreq_suspended)
|
2016-06-28 01:29:29 +00:00
|
|
|
goto unlock;
|
2016-11-18 12:59:21 +00:00
|
|
|
|
2016-03-21 14:46:25 +00:00
|
|
|
new_policy.cur = cpufreq_update_current_freq(policy);
|
2016-11-18 12:59:21 +00:00
|
|
|
if (WARN_ON(!new_policy.cur))
|
2014-06-18 18:27:32 +00:00
|
|
|
goto unlock;
|
2006-01-26 17:46:33 +00:00
|
|
|
}
|
|
|
|
|
2016-11-18 12:59:21 +00:00
|
|
|
cpufreq_set_policy(policy, &new_policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2014-06-18 18:27:32 +00:00
|
|
|
unlock:
|
2013-10-18 13:40:15 +00:00
|
|
|
up_write(&policy->rwsem);
|
2007-02-06 00:12:44 +00:00
|
|
|
|
2013-08-06 17:23:05 +00:00
|
|
|
cpufreq_cpu_put(policy);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(cpufreq_update_policy);
|
|
|
|
|
2013-12-20 14:24:49 +00:00
|
|
|
/*********************************************************************
|
|
|
|
* BOOST *
|
|
|
|
*********************************************************************/
|
|
|
|
static int cpufreq_boost_set_sw(int state)
|
|
|
|
{
|
|
|
|
struct cpufreq_policy *policy;
|
|
|
|
int ret = -EINVAL;
|
|
|
|
|
2015-05-12 06:50:11 +00:00
|
|
|
for_each_active_policy(policy) {
|
2016-06-03 05:28:47 +00:00
|
|
|
if (!policy->freq_table)
|
|
|
|
continue;
|
2016-02-11 12:01:12 +00:00
|
|
|
|
2016-06-03 05:28:47 +00:00
|
|
|
ret = cpufreq_frequency_table_cpuinfo(policy,
|
|
|
|
policy->freq_table);
|
|
|
|
if (ret) {
|
|
|
|
pr_err("%s: Policy frequency update failed\n",
|
|
|
|
__func__);
|
|
|
|
break;
|
2013-12-20 14:24:49 +00:00
|
|
|
}
|
2016-06-03 05:28:47 +00:00
|
|
|
|
|
|
|
down_write(&policy->rwsem);
|
|
|
|
policy->user_policy.max = policy->max;
|
|
|
|
cpufreq_governor_limits(policy);
|
|
|
|
up_write(&policy->rwsem);
|
2013-12-20 14:24:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2014-03-11 17:03:00 +00:00
|
|
|
pr_err("%s: Cannot %s BOOST\n",
|
|
|
|
__func__, state ? "enable" : "disable");
|
2013-12-20 14:24:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-12-26 23:23:48 +00:00
|
|
|
static bool cpufreq_boost_supported(void)
|
2013-12-20 14:24:49 +00:00
|
|
|
{
|
2015-12-26 23:27:38 +00:00
|
|
|
return likely(cpufreq_driver) && cpufreq_driver->set_boost;
|
2013-12-20 14:24:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-29 10:53:09 +00:00
|
|
|
static int create_boost_sysfs_file(void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2015-10-15 16:05:23 +00:00
|
|
|
ret = sysfs_create_file(cpufreq_global_kobject, &boost.attr);
|
2015-07-29 10:53:09 +00:00
|
|
|
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())
|
2015-10-15 16:05:23 +00:00
|
|
|
sysfs_remove_file(cpufreq_global_kobject, &boost.attr);
|
2015-07-29 10:53:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int cpufreq_enable_boost_support(void)
|
|
|
|
{
|
|
|
|
if (!cpufreq_driver)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (cpufreq_boost_supported())
|
|
|
|
return 0;
|
|
|
|
|
2015-12-26 23:27:38 +00:00
|
|
|
cpufreq_driver->set_boost = cpufreq_boost_set_sw;
|
2015-07-29 10:53:09 +00:00
|
|
|
|
|
|
|
/* This will get removed on driver unregister */
|
|
|
|
return create_boost_sysfs_file();
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_enable_boost_support);
|
|
|
|
|
2013-12-20 14:24:49 +00:00
|
|
|
int cpufreq_boost_enabled(void)
|
|
|
|
{
|
|
|
|
return cpufreq_driver->boost_enabled;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_boost_enabled);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*********************************************************************
|
|
|
|
* REGISTER / UNREGISTER CPUFREQ DRIVER *
|
|
|
|
*********************************************************************/
|
2016-09-06 17:04:48 +00:00
|
|
|
static enum cpuhp_state hp_online;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
cpufreq: Bring CPUs up even if cpufreq_online() failed
There is a report that after commit 27622b061eb4 ("cpufreq: Convert
to hotplug state machine"), the normal CPU offline/online cycle
fails on some platforms.
According to the ftrace result, this problem was triggered on
platforms using acpi-cpufreq as the default cpufreq driver,
and due to the lack of some ACPI freq method (eg. _PCT),
cpufreq_online() failed and returned a negative value, so the CPU
hotplug state machine rolled back the CPU online process. Actually,
from the user's perspective, the failure of cpufreq_online() should
not prevent that CPU from being brought up, although cpufreq might
not work on that CPU.
BTW, during system startup cpufreq_online() is not invoked via CPU
online but by the cpufreq device creation process, so the APs can be
brought up even though cpufreq_online() fails in that stage.
This patch ignores the return value of cpufreq_online/offline() and
lets the cpufreq framework deal with the failure. cpufreq_online()
itself will do a proper rollback in that case and if _PCT is missing,
the ACPI cpufreq driver will print a warning if the corresponding
debug options have been enabled.
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=194581
Fixes: 27622b061eb4 ("cpufreq: Convert to hotplug state machine")
Reported-and-tested-by: Tomasz Maciej Nowak <tmn505@gmail.com>
Signed-off-by: Chen Yu <yu.c.chen@intel.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Cc: 4.9+ <stable@vger.kernel.org> # 4.9+
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2017-04-09 05:45:16 +00:00
|
|
|
static int cpuhp_cpufreq_online(unsigned int cpu)
|
|
|
|
{
|
|
|
|
cpufreq_online(cpu);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cpuhp_cpufreq_offline(unsigned int cpu)
|
|
|
|
{
|
|
|
|
cpufreq_offline(cpu);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
|
|
|
* cpufreq_register_driver - register a CPU Frequency driver
|
|
|
|
* @driver_data: A struct cpufreq_driver containing the values#
|
|
|
|
* submitted by the CPU Frequency driver.
|
|
|
|
*
|
2013-06-19 08:49:33 +00:00
|
|
|
* Registers a CPU Frequency driver to this core code. This code
|
2016-02-21 03:50:01 +00:00
|
|
|
* returns zero on success, -EEXIST when another driver got here first
|
2006-02-28 05:43:23 +00:00
|
|
|
* (and isn't unregistered in the meantime).
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
*/
|
2007-02-26 22:55:48 +00:00
|
|
|
int cpufreq_register_driver(struct cpufreq_driver *driver_data)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
int ret;
|
|
|
|
|
2012-03-13 23:18:39 +00:00
|
|
|
if (cpufreq_disabled())
|
|
|
|
return -ENODEV;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!driver_data || !driver_data->verify || !driver_data->init ||
|
2013-10-25 14:15:48 +00:00
|
|
|
!(driver_data->setpolicy || driver_data->target_index ||
|
2014-03-19 11:48:30 +00:00
|
|
|
driver_data->target) ||
|
|
|
|
(driver_data->setpolicy && (driver_data->target_index ||
|
2014-06-02 17:19:28 +00:00
|
|
|
driver_data->target)) ||
|
|
|
|
(!!driver_data->get_intermediate != !!driver_data->target_intermediate))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("trying to register driver %s\n", driver_data->name);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-07-29 23:45:07 +00:00
|
|
|
/* Protect against concurrent CPU online/offline. */
|
2017-05-24 08:15:20 +00:00
|
|
|
cpus_read_lock();
|
2015-07-29 23:45:07 +00:00
|
|
|
|
2013-02-22 16:24:34 +00:00
|
|
|
write_lock_irqsave(&cpufreq_driver_lock, flags);
|
2013-04-28 22:08:16 +00:00
|
|
|
if (cpufreq_driver) {
|
2013-02-22 16:24:34 +00:00
|
|
|
write_unlock_irqrestore(&cpufreq_driver_lock, flags);
|
2015-07-29 23:45:07 +00:00
|
|
|
ret = -EEXIST;
|
|
|
|
goto out;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2013-04-28 22:08:16 +00:00
|
|
|
cpufreq_driver = driver_data;
|
2013-02-22 16:24:34 +00:00
|
|
|
write_unlock_irqrestore(&cpufreq_driver_lock, flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-01-02 07:04:30 +00:00
|
|
|
if (driver_data->setpolicy)
|
|
|
|
driver_data->flags |= CPUFREQ_CONST_LOOPS;
|
|
|
|
|
2015-12-26 23:27:38 +00:00
|
|
|
if (cpufreq_boost_supported()) {
|
|
|
|
ret = create_boost_sysfs_file();
|
|
|
|
if (ret)
|
|
|
|
goto err_null_driver;
|
|
|
|
}
|
2013-12-20 14:24:49 +00:00
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
ret = subsys_interface_register(&cpufreq_interface);
|
2011-03-01 16:41:10 +00:00
|
|
|
if (ret)
|
2013-12-20 14:24:49 +00:00
|
|
|
goto err_boost_unreg;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-01-02 07:04:35 +00:00
|
|
|
if (!(cpufreq_driver->flags & CPUFREQ_STICKY) &&
|
|
|
|
list_empty(&cpufreq_policy_list)) {
|
2005-04-16 22:20:36 +00:00
|
|
|
/* if all ->init() calls failed, unregister */
|
2017-05-26 15:37:31 +00:00
|
|
|
ret = -ENODEV;
|
2015-01-02 07:04:35 +00:00
|
|
|
pr_debug("%s: No CPU initialized for driver %s\n", __func__,
|
|
|
|
driver_data->name);
|
|
|
|
goto err_if_unreg;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2017-05-24 08:15:20 +00:00
|
|
|
ret = cpuhp_setup_state_nocalls_cpuslocked(CPUHP_AP_ONLINE_DYN,
|
|
|
|
"cpufreq:online",
|
|
|
|
cpuhp_cpufreq_online,
|
|
|
|
cpuhp_cpufreq_offline);
|
2016-09-06 17:04:48 +00:00
|
|
|
if (ret < 0)
|
|
|
|
goto err_if_unreg;
|
|
|
|
hp_online = ret;
|
2016-09-20 14:56:28 +00:00
|
|
|
ret = 0;
|
2016-09-06 17:04:48 +00:00
|
|
|
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("driver %s up and running\n", driver_data->name);
|
2016-05-16 11:07:19 +00:00
|
|
|
goto out;
|
2015-07-29 23:45:07 +00:00
|
|
|
|
2011-12-21 22:29:42 +00:00
|
|
|
err_if_unreg:
|
|
|
|
subsys_interface_unregister(&cpufreq_interface);
|
2013-12-20 14:24:49 +00:00
|
|
|
err_boost_unreg:
|
2015-07-29 10:53:09 +00:00
|
|
|
remove_boost_sysfs_file();
|
2011-03-01 16:41:10 +00:00
|
|
|
err_null_driver:
|
2013-02-22 16:24:34 +00:00
|
|
|
write_lock_irqsave(&cpufreq_driver_lock, flags);
|
2013-04-28 22:08:16 +00:00
|
|
|
cpufreq_driver = NULL;
|
2013-02-22 16:24:34 +00:00
|
|
|
write_unlock_irqrestore(&cpufreq_driver_lock, flags);
|
2016-05-16 11:07:19 +00:00
|
|
|
out:
|
2017-05-24 08:15:20 +00:00
|
|
|
cpus_read_unlock();
|
2016-05-16 11:07:19 +00:00
|
|
|
return ret;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_register_driver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* cpufreq_unregister_driver - unregister the current CPUFreq driver
|
|
|
|
*
|
2013-06-19 08:49:33 +00:00
|
|
|
* Unregister the current CPUFreq driver. Only call this if you have
|
2005-04-16 22:20:36 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
2007-02-26 22:55:48 +00:00
|
|
|
int cpufreq_unregister_driver(struct cpufreq_driver *driver)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
2013-04-28 22:08:16 +00:00
|
|
|
if (!cpufreq_driver || (driver != cpufreq_driver))
|
2005-04-16 22:20:36 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
2011-03-27 13:04:46 +00:00
|
|
|
pr_debug("unregistering driver %s\n", driver->name);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2015-07-22 15:59:11 +00:00
|
|
|
/* Protect against concurrent cpu hotplug */
|
2017-05-24 08:15:20 +00:00
|
|
|
cpus_read_lock();
|
2011-12-21 22:29:42 +00:00
|
|
|
subsys_interface_unregister(&cpufreq_interface);
|
2015-07-29 10:53:09 +00:00
|
|
|
remove_boost_sysfs_file();
|
2017-05-24 08:15:20 +00:00
|
|
|
cpuhp_remove_state_nocalls_cpuslocked(hp_online);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-02-22 16:24:34 +00:00
|
|
|
write_lock_irqsave(&cpufreq_driver_lock, flags);
|
2013-08-06 17:23:11 +00:00
|
|
|
|
2013-04-28 22:08:16 +00:00
|
|
|
cpufreq_driver = NULL;
|
2013-08-06 17:23:11 +00:00
|
|
|
|
2013-02-22 16:24:34 +00:00
|
|
|
write_unlock_irqrestore(&cpufreq_driver_lock, flags);
|
2017-05-24 08:15:20 +00:00
|
|
|
cpus_read_unlock();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(cpufreq_unregister_driver);
|
2007-02-06 00:12:44 +00:00
|
|
|
|
2014-12-24 06:09:48 +00:00
|
|
|
/*
|
|
|
|
* 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,
|
|
|
|
};
|
|
|
|
|
2015-10-15 16:05:23 +00:00
|
|
|
struct kobject *cpufreq_global_kobject;
|
|
|
|
EXPORT_SYMBOL(cpufreq_global_kobject);
|
|
|
|
|
2007-02-06 00:12:44 +00:00
|
|
|
static int __init cpufreq_core_init(void)
|
|
|
|
{
|
2012-03-13 23:18:39 +00:00
|
|
|
if (cpufreq_disabled())
|
|
|
|
return -ENODEV;
|
|
|
|
|
2015-10-15 16:05:22 +00:00
|
|
|
cpufreq_global_kobject = kobject_create_and_add("cpufreq", &cpu_subsys.dev_root->kobj);
|
2009-07-24 13:25:05 +00:00
|
|
|
BUG_ON(!cpufreq_global_kobject);
|
|
|
|
|
2014-12-24 06:09:48 +00:00
|
|
|
register_syscore_ops(&cpufreq_syscore_ops);
|
|
|
|
|
2007-02-06 00:12:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-02-28 21:44:16 +00:00
|
|
|
module_param(off, int, 0444);
|
2007-02-06 00:12:44 +00:00
|
|
|
core_initcall(cpufreq_core_init);
|