blob: 3ed5aa18593f2aa4d7274e6def1c970117568376 [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)
Ingo Molnar7284c6d2017-02-02 12:14:19 +010012
Ingo Molnar7284c6d2017-02-02 12:14:19 +010013#ifdef CONFIG_CPU_FREQ
Rafael J. Wysocki85572c22019-12-11 11:28:41 +010014struct cpufreq_policy;
15
Ingo Molnar7284c6d2017-02-02 12:14:19 +010016struct update_util_data {
17 void (*func)(struct update_util_data *data, u64 time, unsigned int flags);
18};
19
20void 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));
23void cpufreq_remove_update_util_hook(int cpu);
Rafael J. Wysocki85572c22019-12-11 11:28:41 +010024bool cpufreq_this_cpu_can_update(struct cpufreq_policy *policy);
Quentin Perret938e5e42018-12-03 09:56:15 +000025
26static inline unsigned long map_util_freq(unsigned long util,
27 unsigned long freq, unsigned long cap)
28{
29 return (freq + (freq >> 2)) * util / cap;
30}
Ingo Molnar7284c6d2017-02-02 12:14:19 +010031#endif /* CONFIG_CPU_FREQ */
32
Ingo Molnar55687da2017-02-08 18:51:31 +010033#endif /* _LINUX_SCHED_CPUFREQ_H */