Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | #ifndef _LINUX_SCHED_CPUFREQ_H |
| 3 | #define _LINUX_SCHED_CPUFREQ_H |
| 4 | |
| 5 | #include <linux/types.h> |
| 6 | |
| 7 | /* |
| 8 | * Interface between cpufreq drivers and the scheduler: |
| 9 | */ |
| 10 | |
| 11 | #define SCHED_CPUFREQ_IOWAIT (1U << 0) |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 12 | |
| 13 | #ifdef CONFIG_CPU_FREQ |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 14 | struct cpufreq_policy; |
| 15 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 16 | struct update_util_data { |
| 17 | void (*func)(struct update_util_data *data, u64 time, unsigned int flags); |
| 18 | }; |
| 19 | |
| 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); |
Olivier Deprez | 0e64123 | 2021-09-23 10:07:05 +0200 | [diff] [blame] | 24 | bool cpufreq_this_cpu_can_update(struct cpufreq_policy *policy); |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame] | 25 | |
| 26 | static 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 | } |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 31 | #endif /* CONFIG_CPU_FREQ */ |
| 32 | |
| 33 | #endif /* _LINUX_SCHED_CPUFREQ_H */ |