1 // SPDX-License-Identifier: GPL-2.0-only
2 #include <linux/types.h>
3 #include <linux/errno.h>
4 #include <linux/kernel.h>
5 #include <linux/delay.h>
6 #include <linux/pm_qos.h>
7 #include <linux/slab.h>
8 #include <linux/init.h>
9 #include <linux/wait.h>
10 #include <linux/cpu.h>
11 #include <linux/cpufreq.h>
18 static struct wf_control
*clamp_control
;
19 static struct freq_qos_request qos_req
;
20 static unsigned int min_freq
, max_freq
;
22 static int clamp_set(struct wf_control
*ct
, s32 value
)
28 printk(KERN_INFO
"windfarm: Clamping CPU frequency to "
32 printk(KERN_INFO
"windfarm: CPU frequency unclamped !\n");
36 return freq_qos_update_request(&qos_req
, freq
);
39 static int clamp_get(struct wf_control
*ct
, s32
*value
)
45 static s32
clamp_min(struct wf_control
*ct
)
50 static s32
clamp_max(struct wf_control
*ct
)
55 static const struct wf_control_ops clamp_ops
= {
56 .set_value
= clamp_set
,
57 .get_value
= clamp_get
,
63 static int __init
wf_cpufreq_clamp_init(void)
65 struct cpufreq_policy
*policy
;
66 struct wf_control
*clamp
;
70 policy
= cpufreq_cpu_get(0);
72 pr_warn("%s: cpufreq policy not found cpu0\n", __func__
);
76 min_freq
= policy
->cpuinfo
.min_freq
;
77 max_freq
= policy
->cpuinfo
.max_freq
;
79 ret
= freq_qos_add_request(&policy
->constraints
, &qos_req
, FREQ_QOS_MAX
,
82 cpufreq_cpu_put(policy
);
85 pr_err("%s: Failed to add freq constraint (%d)\n", __func__
,
90 dev
= get_cpu_device(0);
92 pr_warn("%s: No cpu device for cpu0\n", __func__
);
97 clamp
= kmalloc(sizeof(struct wf_control
), GFP_KERNEL
);
103 clamp
->ops
= &clamp_ops
;
104 clamp
->name
= "cpufreq-clamp";
105 ret
= wf_register_control(clamp
);
109 clamp_control
= clamp
;
115 freq_qos_remove_request(&qos_req
);
119 static void __exit
wf_cpufreq_clamp_exit(void)
122 wf_unregister_control(clamp_control
);
123 freq_qos_remove_request(&qos_req
);
128 module_init(wf_cpufreq_clamp_init
);
129 module_exit(wf_cpufreq_clamp_exit
);
131 MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
132 MODULE_DESCRIPTION("CPU frequency clamp for PowerMacs thermal control");
133 MODULE_LICENSE("GPL");