Merge tag 'xtensa-20180225' of git://github.com/jcmvbkbc/linux-xtensa
[cris-mirror.git] / include / linux / sched / cpufreq.h
blob0b55834efd46495d7e1b3bf0983592426984138c
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_SCHED_CPUFREQ_H
3 #define _LINUX_SCHED_CPUFREQ_H
5 #include <linux/types.h>
7 /*
8 * Interface between cpufreq drivers and the scheduler:
9 */
11 #define SCHED_CPUFREQ_RT (1U << 0)
12 #define SCHED_CPUFREQ_DL (1U << 1)
13 #define SCHED_CPUFREQ_IOWAIT (1U << 2)
15 #ifdef CONFIG_CPU_FREQ
16 struct update_util_data {
17 void (*func)(struct update_util_data *data, u64 time, unsigned int flags);
20 void cpufreq_add_update_util_hook(int cpu, struct update_util_data *data,
21 void (*func)(struct update_util_data *data, u64 time,
22 unsigned int flags));
23 void cpufreq_remove_update_util_hook(int cpu);
24 #endif /* CONFIG_CPU_FREQ */
26 #endif /* _LINUX_SCHED_CPUFREQ_H */