forked from amd/amd_energy
-
Notifications
You must be signed in to change notification settings - Fork 9
/
zenergy.c
444 lines (369 loc) · 11.5 KB
/
zenergy.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (C) 2020 Advanced Micro Devices, Inc.
* Edited by BouHaa (http://github.com/boukehaarsma23)
*/
#include <asm/cpu_device_id.h>
#include <linux/bits.h>
#include <linux/cpu.h>
#include <linux/cpumask.h>
#include <linux/delay.h>
#include <linux/device.h>
#include <linux/hwmon.h>
#include <linux/kernel.h>
#include <linux/kthread.h>
#include <linux/list.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/processor.h>
#include <linux/platform_device.h>
#include <linux/random.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/topology.h>
#include <linux/types.h>
#include <linux/version.h>
#define DRV_MODULE_DESCRIPTION "AMD energy driver"
#define DRV_MODULE_VERSION "1.0"
MODULE_VERSION(DRV_MODULE_VERSION);
#define DRVNAME "zenergy"
#define ENERGY_PWR_UNIT_MSR 0xC0010299
#define ENERGY_CORE_MSR 0xC001029A
#define ENERGY_PKG_MSR 0xC001029B
#define zenergy_UNIT_MASK 0x01F00
#define zenergy_MASK 0xFFFFFFFF
struct sensor_accumulator {
u64 energy_ctr;
u64 prev_value;
unsigned long cache_timeout;
};
struct zenergy_data {
struct hwmon_channel_info energy_info;
const struct hwmon_channel_info *info[2];
struct hwmon_chip_info chip;
struct task_struct *wrap_accumulate;
/* Lock around the accumulator */
struct mutex lock;
/* An accumulator for each core and socket */
struct sensor_accumulator *accums;
unsigned int timeout_ms;
/* Energy Status Units */
int energy_units;
int nr_cpus;
int nr_socks;
int core_id;
char (*label)[10];
bool do_not_accum;
};
static int zenergy_read_labels(struct device *dev,
enum hwmon_sensor_types type,
u32 attr, int channel,
const char **str)
{
struct zenergy_data *data = dev_get_drvdata(dev);
*str = data->label[channel];
return 0;
}
static void get_energy_units(struct zenergy_data *data)
{
u64 rapl_units;
rdmsrl_safe(ENERGY_PWR_UNIT_MSR, &rapl_units);
data->energy_units = (rapl_units & zenergy_UNIT_MASK) >> 8;
}
static void __accumulate_delta(struct sensor_accumulator *accum,
int cpu, u32 reg)
{
u64 input;
rdmsrl_safe_on_cpu(cpu, reg, &input);
input &= zenergy_MASK;
if (input >= accum->prev_value)
accum->energy_ctr +=
input - accum->prev_value;
else
accum->energy_ctr += UINT_MAX -
accum->prev_value + input;
accum->prev_value = input;
accum->cache_timeout = (jiffies + HZ + get_random_long()) % HZ;
}
static void accumulate_delta(struct zenergy_data *data,
int channel, int cpu, u32 reg)
{
mutex_lock(&data->lock);
__accumulate_delta(&data->accums[channel], cpu, reg);
mutex_unlock(&data->lock);
}
static void read_accumulate(struct zenergy_data *data)
{
int sock, scpu, cpu;
for (sock = 0; sock < data->nr_socks; sock++) {
scpu = cpumask_first_and(cpu_online_mask,
cpumask_of_node(sock));
accumulate_delta(data, data->nr_cpus + sock,
scpu, ENERGY_PKG_MSR);
}
if (data->core_id >= data->nr_cpus)
data->core_id = 0;
cpu = data->core_id;
if (cpu_online(cpu))
accumulate_delta(data, cpu, cpu, ENERGY_CORE_MSR);
data->core_id++;
}
static int zenergy_read(struct device *dev,
enum hwmon_sensor_types type,
u32 attr, int channel, long *val)
{
struct zenergy_data *data = dev_get_drvdata(dev);
struct sensor_accumulator *accum;
u64 energy;
u32 reg;
int cpu;
if (channel >= data->nr_cpus) {
cpu = cpumask_first_and(cpu_online_mask,
cpumask_of_node
(channel - data->nr_cpus));
reg = ENERGY_PKG_MSR;
} else {
cpu = channel;
if (!cpu_online(cpu))
return -ENODEV;
reg = ENERGY_CORE_MSR;
}
accum = &data->accums[channel];
mutex_lock(&data->lock);
if (!accum->energy_ctr || time_after(jiffies, accum->cache_timeout))
__accumulate_delta(accum, cpu, reg);
energy = accum->energy_ctr;
mutex_unlock(&data->lock);
*val = div64_ul(energy * 1000000UL, BIT(data->energy_units));
return 0;
}
static umode_t zenergy_is_visible(const void *_data,
enum hwmon_sensor_types type,
u32 attr, int channel)
{
return 0444;
}
static int energy_accumulator(void *p)
{
struct zenergy_data *data = (struct zenergy_data *)p;
unsigned int timeout = data->timeout_ms;
while (!kthread_should_stop()) {
/*
* Ignoring the conditions such as
* cpu being offline or rdmsr failure
*/
read_accumulate(data);
set_current_state(TASK_INTERRUPTIBLE);
if (kthread_should_stop())
break;
schedule_timeout(msecs_to_jiffies(timeout));
}
return 0;
}
static const struct hwmon_ops zenergy_ops = {
.is_visible = zenergy_is_visible,
.read = zenergy_read,
.read_string = zenergy_read_labels,
};
static int amd_create_sensor(struct device *dev,
struct zenergy_data *data,
enum hwmon_sensor_types type, u32 config)
{
struct hwmon_channel_info *info = &data->energy_info;
#if LINUX_VERSION_CODE < KERNEL_VERSION(6, 9, 0)
struct cpuinfo_x86 *c = &boot_cpu_data;
int num_siblings;
#endif
struct sensor_accumulator *accums;
int i, cpus, sockets;
u32 *s_config;
char (*label_l)[10];
#if LINUX_VERSION_CODE < KERNEL_VERSION(6, 9, 0)
/* Identify the number of siblings per core */
num_siblings = ((cpuid_ebx(0x8000001e) >> 8) & 0xff) + 1;
/*
* Energy counter register is accessed at core level.
* Hence, filterout the siblings.
*/
cpus = num_present_cpus() / num_siblings;
/*
* topology_num_cores_per_package (or c->x86_max_cores prior to 6.9) is
* the linux count of physical cores.
* total physical cores/ core per socket gives total number of sockets.
*/
sockets = cpus / c->x86_max_cores;
#else
cpus = num_present_cpus() / __max_threads_per_core;
sockets = cpus / topology_num_cores_per_package();
#endif
s_config = devm_kcalloc(dev, cpus + sockets + 1,
sizeof(u32), GFP_KERNEL);
if (!s_config)
return -ENOMEM;
accums = devm_kcalloc(dev, cpus + sockets,
sizeof(struct sensor_accumulator),
GFP_KERNEL);
if (!accums)
return -ENOMEM;
label_l = devm_kcalloc(dev, cpus + sockets,
sizeof(*label_l), GFP_KERNEL);
if (!label_l)
return -ENOMEM;
info->type = type;
info->config = s_config;
data->nr_cpus = cpus;
data->nr_socks = sockets;
data->accums = accums;
data->label = label_l;
for (i = 0; i < cpus + sockets; i++) {
s_config[i] = config;
if (i < cpus)
scnprintf(label_l[i], 10, "Ecore%03u", i);
else
scnprintf(label_l[i], 10, "Esocket%u", (i - cpus));
}
s_config[i] = 0;
return 0;
}
static const struct x86_cpu_id bit32_rapl_cpus[] = {
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x01, NULL), /* Zen */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x08, NULL), /* Zen+ */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x11, NULL), /* Zen APU */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x18, NULL), /* Picasso */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x20, NULL), /* Picasso APU */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x31, NULL), /* Zen2 Threadripper */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x60, NULL), /* Renoir */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x68, NULL), /* Lucienne */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x71, NULL), /* Zen2 */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x01, NULL), /* Zen3 Threadripper */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x21, NULL), /* Zen3 */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x50, NULL), /* Cezanne */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x44, NULL), /* Rembrandt */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x60, NULL), /* Rembrandt */
// Zen4 (0x19, 0x61) features 64-bit registers for both Core::X86::Msr::CORE_ENERGY_STAT & L3::L3CT::L3PackageEnergyStatus),
// c.f., https://www.amd.com/content/dam/amd/en/documents/processor-tech-docs/programmer-references/56713-B1_3_05.zip
{}
};
static int zenergy_probe(struct platform_device *pdev)
{
struct device *hwmon_dev;
struct zenergy_data *data;
struct device *dev = &pdev->dev;
int ret;
data = devm_kzalloc(dev,
sizeof(struct zenergy_data), GFP_KERNEL);
if (!data)
return -ENOMEM;
data->chip.ops = &zenergy_ops;
data->chip.info = data->info;
dev_set_drvdata(dev, data);
/* Populate per-core energy reporting */
data->info[0] = &data->energy_info;
ret = amd_create_sensor(dev, data, hwmon_energy,
HWMON_E_INPUT | HWMON_E_LABEL);
if (ret)
return ret;
mutex_init(&data->lock);
get_energy_units(data);
hwmon_dev = devm_hwmon_device_register_with_info(dev, DRVNAME,
data,
&data->chip,
NULL);
if (IS_ERR(hwmon_dev))
return PTR_ERR(hwmon_dev);
/*
* On a system with peak wattage of 250W
* timeout = 2 ^ 32 / 2 ^ energy_units / 250 secs
*/
data->timeout_ms = 1000 *
BIT(min(28, 31 - data->energy_units)) / 250;
/*
* For AMD platforms with 64-bit RAPL MSR registers, accumulation
* of the energy counters are not necessary.
*/
if (!x86_match_cpu(bit32_rapl_cpus)) {
data->do_not_accum = true;
pr_info("CPU supports 64-bit RAPL MSR registers\n");
return 0;
}
data->wrap_accumulate = kthread_run(energy_accumulator, data,
"%s", dev_name(hwmon_dev));
return PTR_ERR_OR_ZERO(data->wrap_accumulate);
}
#if LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0)
static int zenergy_remove(struct platform_device *pdev)
#else
static void zenergy_remove(struct platform_device *pdev)
#endif
{
struct zenergy_data *data = dev_get_drvdata(&pdev->dev);
if (data && data->wrap_accumulate)
kthread_stop(data->wrap_accumulate);
#if LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0)
return 0;
#endif
}
static const struct platform_device_id zenergy_ids[] = {
{ .name = DRVNAME, },
{}
};
MODULE_DEVICE_TABLE(platform, zenergy_ids);
static struct platform_driver zenergy_driver = {
.probe = zenergy_probe,
.remove = zenergy_remove,
.id_table = zenergy_ids,
.driver = {
.name = DRVNAME,
},
};
static struct platform_device *zenergy_platdev;
static const struct x86_cpu_id cpu_ids[] __initconst = {
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x01, NULL), /* Zen */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x08, NULL), /* Zen+ */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x11, NULL), /* Zen APU */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x18, NULL), /* Picasso */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x20, NULL), /* Picasso APU */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x31, NULL), /* Zen2 Threadripper */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x60, NULL), /* Renoir */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x68, NULL), /* Lucienne */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x17, 0x71, NULL), /* Zen2 */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x01, NULL), /* Zen3 Threadripper */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x21, NULL), /* Zen3 */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x50, NULL), /* Cezanne */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x44, NULL), /* Rembrandt */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x60, NULL), /* Rembrandt */
X86_MATCH_VENDOR_FAM_MODEL(AMD, 0x19, 0x61, NULL), /* Zen 4 */
{}
};
MODULE_DEVICE_TABLE(x86cpu, cpu_ids);
static int __init zenergy_init(void)
{
int ret;
if (!x86_match_cpu(cpu_ids))
return -ENODEV;
ret = platform_driver_register(&zenergy_driver);
if (ret)
return ret;
zenergy_platdev = platform_device_alloc(DRVNAME, 0);
if (!zenergy_platdev) {
platform_driver_unregister(&zenergy_driver);
return -ENOMEM;
}
ret = platform_device_add(zenergy_platdev);
if (ret) {
platform_device_put(zenergy_platdev);
platform_driver_unregister(&zenergy_driver);
return ret;
}
return ret;
}
static void __exit zenergy_exit(void)
{
platform_device_unregister(zenergy_platdev);
platform_driver_unregister(&zenergy_driver);
}
module_init(zenergy_init);
module_exit(zenergy_exit);
MODULE_DESCRIPTION("Driver for AMD Energy reporting from RAPL MSR via HWMON interface");
MODULE_AUTHOR("Naveen Krishna Chatradhi <nchatrad@amd.com>");
MODULE_LICENSE("GPL");