cpufreq.h 946 字节
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4
#ifndef _LINUX_SCHED_CPUFREQ_H
#define _LINUX_SCHED_CPUFREQ_H

5
#include <linux/types.h>
6

7 8 9 10
/*
 * Interface between cpufreq drivers and the scheduler:
 */

11
#define SCHED_CPUFREQ_IOWAIT	(1U << 0)
12
#define SCHED_CPUFREQ_MIGRATION	(1U << 1)
13 14

#ifdef CONFIG_CPU_FREQ
15 16
struct cpufreq_policy;

17 18 19 20 21 22 23 24
struct update_util_data {
       void (*func)(struct update_util_data *data, u64 time, unsigned int flags);
};

void cpufreq_add_update_util_hook(int cpu, struct update_util_data *data,
                       void (*func)(struct update_util_data *data, u64 time,
				    unsigned int flags));
void cpufreq_remove_update_util_hook(int cpu);
25
bool cpufreq_this_cpu_can_update(struct cpufreq_policy *policy);
26 27 28 29 30 31

static inline unsigned long map_util_freq(unsigned long util,
					unsigned long freq, unsigned long cap)
{
	return (freq + (freq >> 2)) * util / cap;
}
32 33
#endif /* CONFIG_CPU_FREQ */

34
#endif /* _LINUX_SCHED_CPUFREQ_H */