blob: afa940cd50dc5355bed0815c0d7a0c20a548fb98 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ingo Molnar55687da2017-02-08 18:51:31 +01002#ifndef _LINUX_SCHED_CPUFREQ_H
3#define _LINUX_SCHED_CPUFREQ_H
4
Ingo Molnared537422017-02-08 18:51:55 +01005#include <linux/types.h>
Ingo Molnar55687da2017-02-08 18:51:31 +01006
Ingo Molnar7284c6d2017-02-02 12:14:19 +01007/*
8 * Interface between cpufreq drivers and the scheduler:
9 */
10
Peter Zijlstra8f111bc2017-12-20 16:26:12 +010011#define SCHED_CPUFREQ_IOWAIT (1U << 0)
Peter Zijlstraea14b57e2018-02-02 10:27:00 +010012#define SCHED_CPUFREQ_MIGRATION (1U << 1)
Ingo Molnar7284c6d2017-02-02 12:14:19 +010013
Ingo Molnar7284c6d2017-02-02 12:14:19 +010014#ifdef CONFIG_CPU_FREQ
15struct update_util_data {
16 void (*func)(struct update_util_data *data, u64 time, unsigned int flags);
17};
18
19void cpufreq_add_update_util_hook(int cpu, struct update_util_data *data,
20 void (*func)(struct update_util_data *data, u64 time,
21 unsigned int flags));
22void cpufreq_remove_update_util_hook(int cpu);
Quentin Perret938e5e42018-12-03 09:56:15 +000023
24static inline unsigned long map_util_freq(unsigned long util,
25 unsigned long freq, unsigned long cap)
26{
27 return (freq + (freq >> 2)) * util / cap;
28}
Ingo Molnar7284c6d2017-02-02 12:14:19 +010029#endif /* CONFIG_CPU_FREQ */
30
Ingo Molnar55687da2017-02-08 18:51:31 +010031#endif /* _LINUX_SCHED_CPUFREQ_H */