blob: 7b726f00f1834d1cd4aa544090215ad9562e4c08 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002#include <linux/types.h>
3#include <linux/errno.h>
4#include <linux/kernel.h>
5#include <linux/delay.h>
David Brazdil0f672f62019-12-10 10:32:29 +00006#include <linux/pm_qos.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007#include <linux/slab.h>
8#include <linux/init.h>
9#include <linux/wait.h>
David Brazdil0f672f62019-12-10 10:32:29 +000010#include <linux/cpu.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000011#include <linux/cpufreq.h>
12
13#include <asm/prom.h>
14
15#include "windfarm.h"
16
17#define VERSION "0.3"
18
19static int clamped;
20static struct wf_control *clamp_control;
David Brazdil0f672f62019-12-10 10:32:29 +000021static struct freq_qos_request qos_req;
22static unsigned int min_freq, max_freq;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000023
24static int clamp_set(struct wf_control *ct, s32 value)
25{
David Brazdil0f672f62019-12-10 10:32:29 +000026 unsigned int freq;
27
28 if (value) {
29 freq = min_freq;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000030 printk(KERN_INFO "windfarm: Clamping CPU frequency to "
31 "minimum !\n");
David Brazdil0f672f62019-12-10 10:32:29 +000032 } else {
33 freq = max_freq;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000034 printk(KERN_INFO "windfarm: CPU frequency unclamped !\n");
David Brazdil0f672f62019-12-10 10:32:29 +000035 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000036 clamped = value;
David Brazdil0f672f62019-12-10 10:32:29 +000037
38 return freq_qos_update_request(&qos_req, freq);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000039}
40
41static int clamp_get(struct wf_control *ct, s32 *value)
42{
43 *value = clamped;
44 return 0;
45}
46
47static s32 clamp_min(struct wf_control *ct)
48{
49 return 0;
50}
51
52static s32 clamp_max(struct wf_control *ct)
53{
54 return 1;
55}
56
57static const struct wf_control_ops clamp_ops = {
58 .set_value = clamp_set,
59 .get_value = clamp_get,
60 .get_min = clamp_min,
61 .get_max = clamp_max,
62 .owner = THIS_MODULE,
63};
64
65static int __init wf_cpufreq_clamp_init(void)
66{
David Brazdil0f672f62019-12-10 10:32:29 +000067 struct cpufreq_policy *policy;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000068 struct wf_control *clamp;
David Brazdil0f672f62019-12-10 10:32:29 +000069 struct device *dev;
70 int ret;
71
72 policy = cpufreq_cpu_get(0);
73 if (!policy) {
74 pr_warn("%s: cpufreq policy not found cpu0\n", __func__);
75 return -EPROBE_DEFER;
76 }
77
78 min_freq = policy->cpuinfo.min_freq;
79 max_freq = policy->cpuinfo.max_freq;
80
81 ret = freq_qos_add_request(&policy->constraints, &qos_req, FREQ_QOS_MAX,
82 max_freq);
83
84 cpufreq_cpu_put(policy);
85
86 if (ret < 0) {
87 pr_err("%s: Failed to add freq constraint (%d)\n", __func__,
88 ret);
89 return ret;
90 }
91
92 dev = get_cpu_device(0);
93 if (unlikely(!dev)) {
94 pr_warn("%s: No cpu device for cpu0\n", __func__);
95 ret = -ENODEV;
96 goto fail;
97 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000098
99 clamp = kmalloc(sizeof(struct wf_control), GFP_KERNEL);
David Brazdil0f672f62019-12-10 10:32:29 +0000100 if (clamp == NULL) {
101 ret = -ENOMEM;
102 goto fail;
103 }
104
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000105 clamp->ops = &clamp_ops;
106 clamp->name = "cpufreq-clamp";
David Brazdil0f672f62019-12-10 10:32:29 +0000107 ret = wf_register_control(clamp);
108 if (ret)
109 goto free;
110
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000111 clamp_control = clamp;
112 return 0;
David Brazdil0f672f62019-12-10 10:32:29 +0000113
114 free:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000115 kfree(clamp);
David Brazdil0f672f62019-12-10 10:32:29 +0000116 fail:
117 freq_qos_remove_request(&qos_req);
118 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000119}
120
121static void __exit wf_cpufreq_clamp_exit(void)
122{
David Brazdil0f672f62019-12-10 10:32:29 +0000123 if (clamp_control) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000124 wf_unregister_control(clamp_control);
David Brazdil0f672f62019-12-10 10:32:29 +0000125 freq_qos_remove_request(&qos_req);
126 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000127}
128
129
130module_init(wf_cpufreq_clamp_init);
131module_exit(wf_cpufreq_clamp_exit);
132
133MODULE_AUTHOR("Benjamin Herrenschmidt <benh@kernel.crashing.org>");
134MODULE_DESCRIPTION("CPU frequency clamp for PowerMacs thermal control");
135MODULE_LICENSE("GPL");
136