1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Intel Running Average Power Limit (RAPL) Driver via MSR interface
4 * Copyright (c) 2019, Intel Corporation.
5 */
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/list.h>
11 #include <linux/types.h>
12 #include <linux/device.h>
13 #include <linux/slab.h>
14 #include <linux/log2.h>
15 #include <linux/bitmap.h>
16 #include <linux/delay.h>
17 #include <linux/sysfs.h>
18 #include <linux/cpu.h>
19 #include <linux/powercap.h>
20 #include <linux/suspend.h>
21 #include <linux/intel_rapl.h>
22 #include <linux/processor.h>
23 #include <linux/platform_device.h>
24
25 #include <asm/cpu_device_id.h>
26 #include <asm/intel-family.h>
27
28 /* Local defines */
29 #define MSR_PLATFORM_POWER_LIMIT 0x0000065C
30 #define MSR_VR_CURRENT_CONFIG 0x00000601
31
32 /* private data for RAPL MSR Interface */
33 static struct rapl_if_priv *rapl_msr_priv;
34
35 static struct rapl_if_priv rapl_msr_priv_intel = {
36 .reg_unit = MSR_RAPL_POWER_UNIT,
37 .regs[RAPL_DOMAIN_PACKAGE] = {
38 MSR_PKG_POWER_LIMIT, MSR_PKG_ENERGY_STATUS, MSR_PKG_PERF_STATUS, 0, MSR_PKG_POWER_INFO },
39 .regs[RAPL_DOMAIN_PP0] = {
40 MSR_PP0_POWER_LIMIT, MSR_PP0_ENERGY_STATUS, 0, MSR_PP0_POLICY, 0 },
41 .regs[RAPL_DOMAIN_PP1] = {
42 MSR_PP1_POWER_LIMIT, MSR_PP1_ENERGY_STATUS, 0, MSR_PP1_POLICY, 0 },
43 .regs[RAPL_DOMAIN_DRAM] = {
44 MSR_DRAM_POWER_LIMIT, MSR_DRAM_ENERGY_STATUS, MSR_DRAM_PERF_STATUS, 0, MSR_DRAM_POWER_INFO },
45 .regs[RAPL_DOMAIN_PLATFORM] = {
46 MSR_PLATFORM_POWER_LIMIT, MSR_PLATFORM_ENERGY_STATUS, 0, 0, 0},
47 .limits[RAPL_DOMAIN_PACKAGE] = 2,
48 .limits[RAPL_DOMAIN_PLATFORM] = 2,
49 };
50
51 static struct rapl_if_priv rapl_msr_priv_amd = {
52 .reg_unit = MSR_AMD_RAPL_POWER_UNIT,
53 .regs[RAPL_DOMAIN_PACKAGE] = {
54 0, MSR_AMD_PKG_ENERGY_STATUS, 0, 0, 0 },
55 .regs[RAPL_DOMAIN_PP0] = {
56 0, MSR_AMD_CORE_ENERGY_STATUS, 0, 0, 0 },
57 };
58
59 /* Handles CPU hotplug on multi-socket systems.
60 * If a CPU goes online as the first CPU of the physical package
61 * we add the RAPL package to the system. Similarly, when the last
62 * CPU of the package is removed, we remove the RAPL package and its
63 * associated domains. Cooling devices are handled accordingly at
64 * per-domain level.
65 */
rapl_cpu_online(unsigned int cpu)66 static int rapl_cpu_online(unsigned int cpu)
67 {
68 struct rapl_package *rp;
69
70 rp = rapl_find_package_domain(cpu, rapl_msr_priv);
71 if (!rp) {
72 rp = rapl_add_package(cpu, rapl_msr_priv);
73 if (IS_ERR(rp))
74 return PTR_ERR(rp);
75 }
76 cpumask_set_cpu(cpu, &rp->cpumask);
77 return 0;
78 }
79
rapl_cpu_down_prep(unsigned int cpu)80 static int rapl_cpu_down_prep(unsigned int cpu)
81 {
82 struct rapl_package *rp;
83 int lead_cpu;
84
85 rp = rapl_find_package_domain(cpu, rapl_msr_priv);
86 if (!rp)
87 return 0;
88
89 cpumask_clear_cpu(cpu, &rp->cpumask);
90 lead_cpu = cpumask_first(&rp->cpumask);
91 if (lead_cpu >= nr_cpu_ids)
92 rapl_remove_package(rp);
93 else if (rp->lead_cpu == cpu)
94 rp->lead_cpu = lead_cpu;
95 return 0;
96 }
97
rapl_msr_read_raw(int cpu,struct reg_action * ra)98 static int rapl_msr_read_raw(int cpu, struct reg_action *ra)
99 {
100 u32 msr = (u32)ra->reg;
101
102 if (rdmsrl_safe_on_cpu(cpu, msr, &ra->value)) {
103 pr_debug("failed to read msr 0x%x on cpu %d\n", msr, cpu);
104 return -EIO;
105 }
106 ra->value &= ra->mask;
107 return 0;
108 }
109
rapl_msr_update_func(void * info)110 static void rapl_msr_update_func(void *info)
111 {
112 struct reg_action *ra = info;
113 u32 msr = (u32)ra->reg;
114 u64 val;
115
116 ra->err = rdmsrl_safe(msr, &val);
117 if (ra->err)
118 return;
119
120 val &= ~ra->mask;
121 val |= ra->value;
122
123 ra->err = wrmsrl_safe(msr, val);
124 }
125
rapl_msr_write_raw(int cpu,struct reg_action * ra)126 static int rapl_msr_write_raw(int cpu, struct reg_action *ra)
127 {
128 int ret;
129
130 ret = smp_call_function_single(cpu, rapl_msr_update_func, ra, 1);
131 if (WARN_ON_ONCE(ret))
132 return ret;
133
134 return ra->err;
135 }
136
137 /* List of verified CPUs. */
138 static const struct x86_cpu_id pl4_support_ids[] = {
139 { X86_VENDOR_INTEL, 6, INTEL_FAM6_TIGERLAKE_L, X86_FEATURE_ANY },
140 { X86_VENDOR_INTEL, 6, INTEL_FAM6_ALDERLAKE, X86_FEATURE_ANY },
141 { X86_VENDOR_INTEL, 6, INTEL_FAM6_ALDERLAKE_L, X86_FEATURE_ANY },
142 {}
143 };
144
rapl_msr_probe(struct platform_device * pdev)145 static int rapl_msr_probe(struct platform_device *pdev)
146 {
147 const struct x86_cpu_id *id = x86_match_cpu(pl4_support_ids);
148 int ret;
149
150 switch (boot_cpu_data.x86_vendor) {
151 case X86_VENDOR_INTEL:
152 rapl_msr_priv = &rapl_msr_priv_intel;
153 break;
154 case X86_VENDOR_HYGON:
155 case X86_VENDOR_AMD:
156 rapl_msr_priv = &rapl_msr_priv_amd;
157 break;
158 default:
159 pr_err("intel-rapl does not support CPU vendor %d\n", boot_cpu_data.x86_vendor);
160 return -ENODEV;
161 }
162 rapl_msr_priv->read_raw = rapl_msr_read_raw;
163 rapl_msr_priv->write_raw = rapl_msr_write_raw;
164
165 if (id) {
166 rapl_msr_priv->limits[RAPL_DOMAIN_PACKAGE] = 3;
167 rapl_msr_priv->regs[RAPL_DOMAIN_PACKAGE][RAPL_DOMAIN_REG_PL4] =
168 MSR_VR_CURRENT_CONFIG;
169 pr_info("PL4 support detected.\n");
170 }
171
172 rapl_msr_priv->control_type = powercap_register_control_type(NULL, "intel-rapl", NULL);
173 if (IS_ERR(rapl_msr_priv->control_type)) {
174 pr_debug("failed to register powercap control_type.\n");
175 return PTR_ERR(rapl_msr_priv->control_type);
176 }
177
178 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "powercap/rapl:online",
179 rapl_cpu_online, rapl_cpu_down_prep);
180 if (ret < 0)
181 goto out;
182 rapl_msr_priv->pcap_rapl_online = ret;
183
184 return 0;
185
186 out:
187 if (ret)
188 powercap_unregister_control_type(rapl_msr_priv->control_type);
189 return ret;
190 }
191
rapl_msr_remove(struct platform_device * pdev)192 static int rapl_msr_remove(struct platform_device *pdev)
193 {
194 cpuhp_remove_state(rapl_msr_priv->pcap_rapl_online);
195 powercap_unregister_control_type(rapl_msr_priv->control_type);
196 return 0;
197 }
198
199 static const struct platform_device_id rapl_msr_ids[] = {
200 { .name = "intel_rapl_msr", },
201 {}
202 };
203 MODULE_DEVICE_TABLE(platform, rapl_msr_ids);
204
205 static struct platform_driver intel_rapl_msr_driver = {
206 .probe = rapl_msr_probe,
207 .remove = rapl_msr_remove,
208 .id_table = rapl_msr_ids,
209 .driver = {
210 .name = "intel_rapl_msr",
211 },
212 };
213
214 module_platform_driver(intel_rapl_msr_driver);
215
216 MODULE_DESCRIPTION("Driver for Intel RAPL (Running Average Power Limit) control via MSR interface");
217 MODULE_AUTHOR("Zhang Rui <rui.zhang@intel.com>");
218 MODULE_LICENSE("GPL v2");
219