Merge tag 'drm-misc-next-2020-06-26' of git://anongit.freedesktop.org/drm/drm-misc...
[linux-2.6-block.git] / arch / x86 / events / intel / cstate.c
CommitLineData
7ce1346a 1/*
940b2f2f 2 * Support cstate residency counters
7ce1346a
KL
3 *
4 * Copyright (C) 2015, Intel Corp.
5 * Author: Kan Liang (kan.liang@intel.com)
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details.
16 *
17 */
18
19/*
20 * This file export cstate related free running (read-only) counters
21 * for perf. These counters may be use simultaneously by other tools,
22 * such as turbostat. However, it still make sense to implement them
23 * in perf. Because we can conveniently collect them together with
24 * other events, and allow to use them from tools without special MSR
25 * access code.
26 *
27 * The events only support system-wide mode counting. There is no
28 * sampling support because it is not supported by the hardware.
29 *
30 * According to counters' scope and category, two PMUs are registered
31 * with the perf_event core subsystem.
32 * - 'cstate_core': The counter is available for each physical core.
33 * The counters include CORE_C*_RESIDENCY.
34 * - 'cstate_pkg': The counter is available for each physical package.
35 * The counters include PKG_C*_RESIDENCY.
36 *
37 * All of these counters are specified in the IntelĀ® 64 and IA-32
38 * Architectures Software Developer.s Manual Vol3b.
39 *
40 * Model specific counters:
41 * MSR_CORE_C1_RES: CORE C1 Residency Counter
42 * perf code: 0x00
ecf71fbc 43 * Available model: SLM,AMT,GLM,CNL,TNT
7ce1346a
KL
44 * Scope: Core (each processor core has a MSR)
45 * MSR_CORE_C3_RESIDENCY: CORE C3 Residency Counter
46 * perf code: 0x01
1159e094 47 * Available model: NHM,WSM,SNB,IVB,HSW,BDW,SKL,GLM,
ecf71fbc 48 * CNL,KBL,CML,TNT
7ce1346a
KL
49 * Scope: Core
50 * MSR_CORE_C6_RESIDENCY: CORE C6 Residency Counter
51 * perf code: 0x02
1159e094 52 * Available model: SLM,AMT,NHM,WSM,SNB,IVB,HSW,BDW,
ecf71fbc
KL
53 * SKL,KNL,GLM,CNL,KBL,CML,ICL,TGL,
54 * TNT
7ce1346a
KL
55 * Scope: Core
56 * MSR_CORE_C7_RESIDENCY: CORE C7 Residency Counter
57 * perf code: 0x03
f1857a24 58 * Available model: SNB,IVB,HSW,BDW,SKL,CNL,KBL,CML,
52e92f40 59 * ICL,TGL
7ce1346a
KL
60 * Scope: Core
61 * MSR_PKG_C2_RESIDENCY: Package C2 Residency Counter.
62 * perf code: 0x00
1ffa6c04 63 * Available model: SNB,IVB,HSW,BDW,SKL,KNL,GLM,CNL,
ecf71fbc 64 * KBL,CML,ICL,TGL,TNT
7ce1346a
KL
65 * Scope: Package (physical package)
66 * MSR_PKG_C3_RESIDENCY: Package C3 Residency Counter.
67 * perf code: 0x01
1159e094 68 * Available model: NHM,WSM,SNB,IVB,HSW,BDW,SKL,KNL,
ecf71fbc 69 * GLM,CNL,KBL,CML,ICL,TGL,TNT
7ce1346a
KL
70 * Scope: Package (physical package)
71 * MSR_PKG_C6_RESIDENCY: Package C6 Residency Counter.
72 * perf code: 0x02
ecf71fbc
KL
73 * Available model: SLM,AMT,NHM,WSM,SNB,IVB,HSW,BDW,
74 * SKL,KNL,GLM,CNL,KBL,CML,ICL,TGL,
75 * TNT
7ce1346a
KL
76 * Scope: Package (physical package)
77 * MSR_PKG_C7_RESIDENCY: Package C7 Residency Counter.
78 * perf code: 0x03
1ffa6c04 79 * Available model: NHM,WSM,SNB,IVB,HSW,BDW,SKL,CNL,
52e92f40 80 * KBL,CML,ICL,TGL
7ce1346a
KL
81 * Scope: Package (physical package)
82 * MSR_PKG_C8_RESIDENCY: Package C8 Residency Counter.
83 * perf code: 0x04
52e92f40 84 * Available model: HSW ULT,KBL,CNL,CML,ICL,TGL
7ce1346a
KL
85 * Scope: Package (physical package)
86 * MSR_PKG_C9_RESIDENCY: Package C9 Residency Counter.
87 * perf code: 0x05
52e92f40 88 * Available model: HSW ULT,KBL,CNL,CML,ICL,TGL
7ce1346a
KL
89 * Scope: Package (physical package)
90 * MSR_PKG_C10_RESIDENCY: Package C10 Residency Counter.
91 * perf code: 0x06
ecf71fbc
KL
92 * Available model: HSW ULT,KBL,GLM,CNL,CML,ICL,TGL,
93 * TNT
7ce1346a
KL
94 * Scope: Package (physical package)
95 *
96 */
97
98#include <linux/module.h>
99#include <linux/slab.h>
100#include <linux/perf_event.h>
a5f81290 101#include <linux/nospec.h>
7ce1346a 102#include <asm/cpu_device_id.h>
bf4ad541 103#include <asm/intel-family.h>
27f6d22b 104#include "../perf_event.h"
8f2a28c5 105#include "../probe.h"
7ce1346a 106
c7afba32
TG
107MODULE_LICENSE("GPL");
108
7ce1346a
KL
109#define DEFINE_CSTATE_FORMAT_ATTR(_var, _name, _format) \
110static ssize_t __cstate_##_var##_show(struct kobject *kobj, \
111 struct kobj_attribute *attr, \
112 char *page) \
113{ \
114 BUILD_BUG_ON(sizeof(_format) >= PAGE_SIZE); \
115 return sprintf(page, _format "\n"); \
116} \
117static struct kobj_attribute format_attr_##_var = \
118 __ATTR(_name, 0444, __cstate_##_var##_show, NULL)
119
120static ssize_t cstate_get_attr_cpumask(struct device *dev,
121 struct device_attribute *attr,
122 char *buf);
123
424646ee
TG
124/* Model -> events mapping */
125struct cstate_model {
126 unsigned long core_events;
127 unsigned long pkg_events;
128 unsigned long quirks;
129};
130
131/* Quirk flags */
132#define SLM_PKG_C6_USE_C7_MSR (1UL << 0)
889882bc 133#define KNL_CORE_C6_MSR (1UL << 1)
424646ee 134
7ce1346a
KL
135struct perf_cstate_msr {
136 u64 msr;
137 struct perf_pmu_events_attr *attr;
7ce1346a
KL
138};
139
140
141/* cstate_core PMU */
7ce1346a
KL
142static struct pmu cstate_core_pmu;
143static bool has_cstate_core;
144
424646ee 145enum perf_cstate_core_events {
7ce1346a
KL
146 PERF_CSTATE_CORE_C1_RES = 0,
147 PERF_CSTATE_CORE_C3_RES,
148 PERF_CSTATE_CORE_C6_RES,
149 PERF_CSTATE_CORE_C7_RES,
150
151 PERF_CSTATE_CORE_EVENT_MAX,
152};
153
8f2a28c5
JO
154PMU_EVENT_ATTR_STRING(c1-residency, attr_cstate_core_c1, "event=0x00");
155PMU_EVENT_ATTR_STRING(c3-residency, attr_cstate_core_c3, "event=0x01");
156PMU_EVENT_ATTR_STRING(c6-residency, attr_cstate_core_c6, "event=0x02");
157PMU_EVENT_ATTR_STRING(c7-residency, attr_cstate_core_c7, "event=0x03");
7ce1346a 158
8f2a28c5
JO
159static unsigned long core_msr_mask;
160
161PMU_EVENT_GROUP(events, cstate_core_c1);
162PMU_EVENT_GROUP(events, cstate_core_c3);
163PMU_EVENT_GROUP(events, cstate_core_c6);
164PMU_EVENT_GROUP(events, cstate_core_c7);
165
166static bool test_msr(int idx, void *data)
167{
168 return test_bit(idx, (unsigned long *) data);
169}
170
171static struct perf_msr core_msr[] = {
172 [PERF_CSTATE_CORE_C1_RES] = { MSR_CORE_C1_RES, &group_cstate_core_c1, test_msr },
173 [PERF_CSTATE_CORE_C3_RES] = { MSR_CORE_C3_RESIDENCY, &group_cstate_core_c3, test_msr },
174 [PERF_CSTATE_CORE_C6_RES] = { MSR_CORE_C6_RESIDENCY, &group_cstate_core_c6, test_msr },
175 [PERF_CSTATE_CORE_C7_RES] = { MSR_CORE_C7_RESIDENCY, &group_cstate_core_c7, test_msr },
7ce1346a
KL
176};
177
8f2a28c5 178static struct attribute *attrs_empty[] = {
7ce1346a
KL
179 NULL,
180};
181
8f2a28c5
JO
182/*
183 * There are no default events, but we need to create
184 * "events" group (with empty attrs) before updating
185 * it with detected events.
186 */
7ce1346a
KL
187static struct attribute_group core_events_attr_group = {
188 .name = "events",
8f2a28c5 189 .attrs = attrs_empty,
7ce1346a
KL
190};
191
192DEFINE_CSTATE_FORMAT_ATTR(core_event, event, "config:0-63");
193static struct attribute *core_format_attrs[] = {
194 &format_attr_core_event.attr,
195 NULL,
196};
197
198static struct attribute_group core_format_attr_group = {
199 .name = "format",
200 .attrs = core_format_attrs,
201};
202
203static cpumask_t cstate_core_cpu_mask;
204static DEVICE_ATTR(cpumask, S_IRUGO, cstate_get_attr_cpumask, NULL);
205
206static struct attribute *cstate_cpumask_attrs[] = {
207 &dev_attr_cpumask.attr,
208 NULL,
209};
210
211static struct attribute_group cpumask_attr_group = {
212 .attrs = cstate_cpumask_attrs,
213};
214
215static const struct attribute_group *core_attr_groups[] = {
216 &core_events_attr_group,
217 &core_format_attr_group,
218 &cpumask_attr_group,
219 NULL,
220};
221
7ce1346a 222/* cstate_pkg PMU */
7ce1346a
KL
223static struct pmu cstate_pkg_pmu;
224static bool has_cstate_pkg;
225
424646ee 226enum perf_cstate_pkg_events {
7ce1346a
KL
227 PERF_CSTATE_PKG_C2_RES = 0,
228 PERF_CSTATE_PKG_C3_RES,
229 PERF_CSTATE_PKG_C6_RES,
230 PERF_CSTATE_PKG_C7_RES,
231 PERF_CSTATE_PKG_C8_RES,
232 PERF_CSTATE_PKG_C9_RES,
233 PERF_CSTATE_PKG_C10_RES,
234
235 PERF_CSTATE_PKG_EVENT_MAX,
236};
237
8f2a28c5
JO
238PMU_EVENT_ATTR_STRING(c2-residency, attr_cstate_pkg_c2, "event=0x00");
239PMU_EVENT_ATTR_STRING(c3-residency, attr_cstate_pkg_c3, "event=0x01");
240PMU_EVENT_ATTR_STRING(c6-residency, attr_cstate_pkg_c6, "event=0x02");
241PMU_EVENT_ATTR_STRING(c7-residency, attr_cstate_pkg_c7, "event=0x03");
242PMU_EVENT_ATTR_STRING(c8-residency, attr_cstate_pkg_c8, "event=0x04");
243PMU_EVENT_ATTR_STRING(c9-residency, attr_cstate_pkg_c9, "event=0x05");
244PMU_EVENT_ATTR_STRING(c10-residency, attr_cstate_pkg_c10, "event=0x06");
245
246static unsigned long pkg_msr_mask;
247
248PMU_EVENT_GROUP(events, cstate_pkg_c2);
249PMU_EVENT_GROUP(events, cstate_pkg_c3);
250PMU_EVENT_GROUP(events, cstate_pkg_c6);
251PMU_EVENT_GROUP(events, cstate_pkg_c7);
252PMU_EVENT_GROUP(events, cstate_pkg_c8);
253PMU_EVENT_GROUP(events, cstate_pkg_c9);
254PMU_EVENT_GROUP(events, cstate_pkg_c10);
255
256static struct perf_msr pkg_msr[] = {
257 [PERF_CSTATE_PKG_C2_RES] = { MSR_PKG_C2_RESIDENCY, &group_cstate_pkg_c2, test_msr },
258 [PERF_CSTATE_PKG_C3_RES] = { MSR_PKG_C3_RESIDENCY, &group_cstate_pkg_c3, test_msr },
259 [PERF_CSTATE_PKG_C6_RES] = { MSR_PKG_C6_RESIDENCY, &group_cstate_pkg_c6, test_msr },
260 [PERF_CSTATE_PKG_C7_RES] = { MSR_PKG_C7_RESIDENCY, &group_cstate_pkg_c7, test_msr },
261 [PERF_CSTATE_PKG_C8_RES] = { MSR_PKG_C8_RESIDENCY, &group_cstate_pkg_c8, test_msr },
262 [PERF_CSTATE_PKG_C9_RES] = { MSR_PKG_C9_RESIDENCY, &group_cstate_pkg_c9, test_msr },
263 [PERF_CSTATE_PKG_C10_RES] = { MSR_PKG_C10_RESIDENCY, &group_cstate_pkg_c10, test_msr },
7ce1346a
KL
264};
265
266static struct attribute_group pkg_events_attr_group = {
267 .name = "events",
8f2a28c5 268 .attrs = attrs_empty,
7ce1346a
KL
269};
270
271DEFINE_CSTATE_FORMAT_ATTR(pkg_event, event, "config:0-63");
272static struct attribute *pkg_format_attrs[] = {
273 &format_attr_pkg_event.attr,
274 NULL,
275};
276static struct attribute_group pkg_format_attr_group = {
277 .name = "format",
278 .attrs = pkg_format_attrs,
279};
280
281static cpumask_t cstate_pkg_cpu_mask;
282
283static const struct attribute_group *pkg_attr_groups[] = {
284 &pkg_events_attr_group,
285 &pkg_format_attr_group,
286 &cpumask_attr_group,
287 NULL,
288};
289
7ce1346a
KL
290static ssize_t cstate_get_attr_cpumask(struct device *dev,
291 struct device_attribute *attr,
292 char *buf)
293{
294 struct pmu *pmu = dev_get_drvdata(dev);
295
296 if (pmu == &cstate_core_pmu)
297 return cpumap_print_to_pagebuf(true, buf, &cstate_core_cpu_mask);
298 else if (pmu == &cstate_pkg_pmu)
299 return cpumap_print_to_pagebuf(true, buf, &cstate_pkg_cpu_mask);
300 else
301 return 0;
302}
303
304static int cstate_pmu_event_init(struct perf_event *event)
305{
306 u64 cfg = event->attr.config;
49de0493 307 int cpu;
7ce1346a
KL
308
309 if (event->attr.type != event->pmu->type)
310 return -ENOENT;
311
312 /* unsupported modes and filters */
2ff40250 313 if (event->attr.sample_period) /* no sampling */
7ce1346a
KL
314 return -EINVAL;
315
49de0493
TG
316 if (event->cpu < 0)
317 return -EINVAL;
318
7ce1346a
KL
319 if (event->pmu == &cstate_core_pmu) {
320 if (cfg >= PERF_CSTATE_CORE_EVENT_MAX)
321 return -EINVAL;
8f2a28c5
JO
322 cfg = array_index_nospec((unsigned long)cfg, PERF_CSTATE_CORE_EVENT_MAX);
323 if (!(core_msr_mask & (1 << cfg)))
7ce1346a
KL
324 return -EINVAL;
325 event->hw.event_base = core_msr[cfg].msr;
49de0493
TG
326 cpu = cpumask_any_and(&cstate_core_cpu_mask,
327 topology_sibling_cpumask(event->cpu));
7ce1346a
KL
328 } else if (event->pmu == &cstate_pkg_pmu) {
329 if (cfg >= PERF_CSTATE_PKG_EVENT_MAX)
330 return -EINVAL;
a5f81290 331 cfg = array_index_nospec((unsigned long)cfg, PERF_CSTATE_PKG_EVENT_MAX);
8f2a28c5 332 if (!(pkg_msr_mask & (1 << cfg)))
7ce1346a
KL
333 return -EINVAL;
334 event->hw.event_base = pkg_msr[cfg].msr;
49de0493 335 cpu = cpumask_any_and(&cstate_pkg_cpu_mask,
cb63ba0f 336 topology_die_cpumask(event->cpu));
49de0493 337 } else {
7ce1346a 338 return -ENOENT;
49de0493
TG
339 }
340
341 if (cpu >= nr_cpu_ids)
342 return -ENODEV;
7ce1346a 343
49de0493 344 event->cpu = cpu;
7ce1346a
KL
345 event->hw.config = cfg;
346 event->hw.idx = -1;
49de0493 347 return 0;
7ce1346a
KL
348}
349
350static inline u64 cstate_pmu_read_counter(struct perf_event *event)
351{
352 u64 val;
353
354 rdmsrl(event->hw.event_base, val);
355 return val;
356}
357
358static void cstate_pmu_event_update(struct perf_event *event)
359{
360 struct hw_perf_event *hwc = &event->hw;
361 u64 prev_raw_count, new_raw_count;
362
363again:
364 prev_raw_count = local64_read(&hwc->prev_count);
365 new_raw_count = cstate_pmu_read_counter(event);
366
367 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
368 new_raw_count) != prev_raw_count)
369 goto again;
370
371 local64_add(new_raw_count - prev_raw_count, &event->count);
372}
373
374static void cstate_pmu_event_start(struct perf_event *event, int mode)
375{
376 local64_set(&event->hw.prev_count, cstate_pmu_read_counter(event));
377}
378
379static void cstate_pmu_event_stop(struct perf_event *event, int mode)
380{
381 cstate_pmu_event_update(event);
382}
383
384static void cstate_pmu_event_del(struct perf_event *event, int mode)
385{
386 cstate_pmu_event_stop(event, PERF_EF_UPDATE);
387}
388
389static int cstate_pmu_event_add(struct perf_event *event, int mode)
390{
391 if (mode & PERF_EF_START)
392 cstate_pmu_event_start(event, mode);
393
394 return 0;
395}
396
49de0493
TG
397/*
398 * Check if exiting cpu is the designated reader. If so migrate the
399 * events when there is a valid target available
400 */
77c34ef1 401static int cstate_cpu_exit(unsigned int cpu)
7ce1346a 402{
49de0493
TG
403 unsigned int target;
404
405 if (has_cstate_core &&
406 cpumask_test_and_clear_cpu(cpu, &cstate_core_cpu_mask)) {
407
408 target = cpumask_any_but(topology_sibling_cpumask(cpu), cpu);
409 /* Migrate events if there is a valid target */
410 if (target < nr_cpu_ids) {
7ce1346a 411 cpumask_set_cpu(target, &cstate_core_cpu_mask);
7ce1346a 412 perf_pmu_migrate_context(&cstate_core_pmu, cpu, target);
49de0493 413 }
7ce1346a
KL
414 }
415
49de0493
TG
416 if (has_cstate_pkg &&
417 cpumask_test_and_clear_cpu(cpu, &cstate_pkg_cpu_mask)) {
418
cb63ba0f 419 target = cpumask_any_but(topology_die_cpumask(cpu), cpu);
49de0493
TG
420 /* Migrate events if there is a valid target */
421 if (target < nr_cpu_ids) {
7ce1346a 422 cpumask_set_cpu(target, &cstate_pkg_cpu_mask);
7ce1346a 423 perf_pmu_migrate_context(&cstate_pkg_pmu, cpu, target);
49de0493 424 }
7ce1346a 425 }
77c34ef1 426 return 0;
7ce1346a
KL
427}
428
77c34ef1 429static int cstate_cpu_init(unsigned int cpu)
7ce1346a 430{
49de0493 431 unsigned int target;
7ce1346a 432
49de0493
TG
433 /*
434 * If this is the first online thread of that core, set it in
435 * the core cpu mask as the designated reader.
436 */
437 target = cpumask_any_and(&cstate_core_cpu_mask,
438 topology_sibling_cpumask(cpu));
439
440 if (has_cstate_core && target >= nr_cpu_ids)
441 cpumask_set_cpu(cpu, &cstate_core_cpu_mask);
442
443 /*
444 * If this is the first online thread of that package, set it
445 * in the package cpu mask as the designated reader.
446 */
447 target = cpumask_any_and(&cstate_pkg_cpu_mask,
cb63ba0f 448 topology_die_cpumask(cpu));
49de0493
TG
449 if (has_cstate_pkg && target >= nr_cpu_ids)
450 cpumask_set_cpu(cpu, &cstate_pkg_cpu_mask);
7ce1346a 451
77c34ef1 452 return 0;
7ce1346a
KL
453}
454
d9f3b450 455static const struct attribute_group *core_attr_update[] = {
8f2a28c5
JO
456 &group_cstate_core_c1,
457 &group_cstate_core_c3,
458 &group_cstate_core_c6,
459 &group_cstate_core_c7,
460 NULL,
461};
462
d9f3b450 463static const struct attribute_group *pkg_attr_update[] = {
8f2a28c5
JO
464 &group_cstate_pkg_c2,
465 &group_cstate_pkg_c3,
466 &group_cstate_pkg_c6,
467 &group_cstate_pkg_c7,
468 &group_cstate_pkg_c8,
469 &group_cstate_pkg_c9,
470 &group_cstate_pkg_c10,
471 NULL,
472};
473
424646ee
TG
474static struct pmu cstate_core_pmu = {
475 .attr_groups = core_attr_groups,
8f2a28c5 476 .attr_update = core_attr_update,
424646ee
TG
477 .name = "cstate_core",
478 .task_ctx_nr = perf_invalid_context,
479 .event_init = cstate_pmu_event_init,
480 .add = cstate_pmu_event_add,
481 .del = cstate_pmu_event_del,
482 .start = cstate_pmu_event_start,
483 .stop = cstate_pmu_event_stop,
484 .read = cstate_pmu_event_update,
2ff40250 485 .capabilities = PERF_PMU_CAP_NO_INTERRUPT | PERF_PMU_CAP_NO_EXCLUDE,
74545f63 486 .module = THIS_MODULE,
424646ee
TG
487};
488
489static struct pmu cstate_pkg_pmu = {
490 .attr_groups = pkg_attr_groups,
8f2a28c5 491 .attr_update = pkg_attr_update,
424646ee
TG
492 .name = "cstate_pkg",
493 .task_ctx_nr = perf_invalid_context,
494 .event_init = cstate_pmu_event_init,
495 .add = cstate_pmu_event_add,
496 .del = cstate_pmu_event_del,
497 .start = cstate_pmu_event_start,
498 .stop = cstate_pmu_event_stop,
499 .read = cstate_pmu_event_update,
2ff40250 500 .capabilities = PERF_PMU_CAP_NO_INTERRUPT | PERF_PMU_CAP_NO_EXCLUDE,
74545f63 501 .module = THIS_MODULE,
424646ee
TG
502};
503
504static const struct cstate_model nhm_cstates __initconst = {
505 .core_events = BIT(PERF_CSTATE_CORE_C3_RES) |
506 BIT(PERF_CSTATE_CORE_C6_RES),
507
508 .pkg_events = BIT(PERF_CSTATE_PKG_C3_RES) |
509 BIT(PERF_CSTATE_PKG_C6_RES) |
510 BIT(PERF_CSTATE_PKG_C7_RES),
511};
512
513static const struct cstate_model snb_cstates __initconst = {
514 .core_events = BIT(PERF_CSTATE_CORE_C3_RES) |
515 BIT(PERF_CSTATE_CORE_C6_RES) |
516 BIT(PERF_CSTATE_CORE_C7_RES),
517
518 .pkg_events = BIT(PERF_CSTATE_PKG_C2_RES) |
519 BIT(PERF_CSTATE_PKG_C3_RES) |
520 BIT(PERF_CSTATE_PKG_C6_RES) |
521 BIT(PERF_CSTATE_PKG_C7_RES),
522};
523
524static const struct cstate_model hswult_cstates __initconst = {
525 .core_events = BIT(PERF_CSTATE_CORE_C3_RES) |
526 BIT(PERF_CSTATE_CORE_C6_RES) |
527 BIT(PERF_CSTATE_CORE_C7_RES),
528
529 .pkg_events = BIT(PERF_CSTATE_PKG_C2_RES) |
530 BIT(PERF_CSTATE_PKG_C3_RES) |
531 BIT(PERF_CSTATE_PKG_C6_RES) |
532 BIT(PERF_CSTATE_PKG_C7_RES) |
533 BIT(PERF_CSTATE_PKG_C8_RES) |
534 BIT(PERF_CSTATE_PKG_C9_RES) |
535 BIT(PERF_CSTATE_PKG_C10_RES),
536};
537
1159e094
HP
538static const struct cstate_model cnl_cstates __initconst = {
539 .core_events = BIT(PERF_CSTATE_CORE_C1_RES) |
540 BIT(PERF_CSTATE_CORE_C3_RES) |
541 BIT(PERF_CSTATE_CORE_C6_RES) |
542 BIT(PERF_CSTATE_CORE_C7_RES),
543
544 .pkg_events = BIT(PERF_CSTATE_PKG_C2_RES) |
545 BIT(PERF_CSTATE_PKG_C3_RES) |
546 BIT(PERF_CSTATE_PKG_C6_RES) |
547 BIT(PERF_CSTATE_PKG_C7_RES) |
548 BIT(PERF_CSTATE_PKG_C8_RES) |
549 BIT(PERF_CSTATE_PKG_C9_RES) |
550 BIT(PERF_CSTATE_PKG_C10_RES),
551};
552
f1857a24
KL
553static const struct cstate_model icl_cstates __initconst = {
554 .core_events = BIT(PERF_CSTATE_CORE_C6_RES) |
555 BIT(PERF_CSTATE_CORE_C7_RES),
556
557 .pkg_events = BIT(PERF_CSTATE_PKG_C2_RES) |
558 BIT(PERF_CSTATE_PKG_C3_RES) |
559 BIT(PERF_CSTATE_PKG_C6_RES) |
560 BIT(PERF_CSTATE_PKG_C7_RES) |
561 BIT(PERF_CSTATE_PKG_C8_RES) |
562 BIT(PERF_CSTATE_PKG_C9_RES) |
563 BIT(PERF_CSTATE_PKG_C10_RES),
564};
565
424646ee
TG
566static const struct cstate_model slm_cstates __initconst = {
567 .core_events = BIT(PERF_CSTATE_CORE_C1_RES) |
568 BIT(PERF_CSTATE_CORE_C6_RES),
569
570 .pkg_events = BIT(PERF_CSTATE_PKG_C6_RES),
571 .quirks = SLM_PKG_C6_USE_C7_MSR,
572};
573
889882bc
LO
574
575static const struct cstate_model knl_cstates __initconst = {
576 .core_events = BIT(PERF_CSTATE_CORE_C6_RES),
577
578 .pkg_events = BIT(PERF_CSTATE_PKG_C2_RES) |
579 BIT(PERF_CSTATE_PKG_C3_RES) |
580 BIT(PERF_CSTATE_PKG_C6_RES),
581 .quirks = KNL_CORE_C6_MSR,
582};
583
584
5c10b048
HP
585static const struct cstate_model glm_cstates __initconst = {
586 .core_events = BIT(PERF_CSTATE_CORE_C1_RES) |
587 BIT(PERF_CSTATE_CORE_C3_RES) |
588 BIT(PERF_CSTATE_CORE_C6_RES),
589
590 .pkg_events = BIT(PERF_CSTATE_PKG_C2_RES) |
591 BIT(PERF_CSTATE_PKG_C3_RES) |
592 BIT(PERF_CSTATE_PKG_C6_RES) |
593 BIT(PERF_CSTATE_PKG_C10_RES),
594};
595
889882bc 596
424646ee 597static const struct x86_cpu_id intel_cstates_match[] __initconst = {
ef37219a
TG
598 X86_MATCH_INTEL_FAM6_MODEL(NEHALEM, &nhm_cstates),
599 X86_MATCH_INTEL_FAM6_MODEL(NEHALEM_EP, &nhm_cstates),
600 X86_MATCH_INTEL_FAM6_MODEL(NEHALEM_EX, &nhm_cstates),
424646ee 601
ef37219a
TG
602 X86_MATCH_INTEL_FAM6_MODEL(WESTMERE, &nhm_cstates),
603 X86_MATCH_INTEL_FAM6_MODEL(WESTMERE_EP, &nhm_cstates),
604 X86_MATCH_INTEL_FAM6_MODEL(WESTMERE_EX, &nhm_cstates),
424646ee 605
ef37219a
TG
606 X86_MATCH_INTEL_FAM6_MODEL(SANDYBRIDGE, &snb_cstates),
607 X86_MATCH_INTEL_FAM6_MODEL(SANDYBRIDGE_X, &snb_cstates),
424646ee 608
ef37219a
TG
609 X86_MATCH_INTEL_FAM6_MODEL(IVYBRIDGE, &snb_cstates),
610 X86_MATCH_INTEL_FAM6_MODEL(IVYBRIDGE_X, &snb_cstates),
424646ee 611
ef37219a
TG
612 X86_MATCH_INTEL_FAM6_MODEL(HASWELL, &snb_cstates),
613 X86_MATCH_INTEL_FAM6_MODEL(HASWELL_X, &snb_cstates),
614 X86_MATCH_INTEL_FAM6_MODEL(HASWELL_G, &snb_cstates),
424646ee 615
ef37219a 616 X86_MATCH_INTEL_FAM6_MODEL(HASWELL_L, &hswult_cstates),
424646ee 617
ef37219a
TG
618 X86_MATCH_INTEL_FAM6_MODEL(ATOM_SILVERMONT, &slm_cstates),
619 X86_MATCH_INTEL_FAM6_MODEL(ATOM_SILVERMONT_D, &slm_cstates),
620 X86_MATCH_INTEL_FAM6_MODEL(ATOM_AIRMONT, &slm_cstates),
424646ee 621
ef37219a
TG
622 X86_MATCH_INTEL_FAM6_MODEL(BROADWELL, &snb_cstates),
623 X86_MATCH_INTEL_FAM6_MODEL(BROADWELL_D, &snb_cstates),
624 X86_MATCH_INTEL_FAM6_MODEL(BROADWELL_G, &snb_cstates),
625 X86_MATCH_INTEL_FAM6_MODEL(BROADWELL_X, &snb_cstates),
424646ee 626
ef37219a
TG
627 X86_MATCH_INTEL_FAM6_MODEL(SKYLAKE_L, &snb_cstates),
628 X86_MATCH_INTEL_FAM6_MODEL(SKYLAKE, &snb_cstates),
629 X86_MATCH_INTEL_FAM6_MODEL(SKYLAKE_X, &snb_cstates),
889882bc 630
ef37219a
TG
631 X86_MATCH_INTEL_FAM6_MODEL(KABYLAKE_L, &hswult_cstates),
632 X86_MATCH_INTEL_FAM6_MODEL(KABYLAKE, &hswult_cstates),
633 X86_MATCH_INTEL_FAM6_MODEL(COMETLAKE_L, &hswult_cstates),
634 X86_MATCH_INTEL_FAM6_MODEL(COMETLAKE, &hswult_cstates),
f2029b1e 635
ef37219a 636 X86_MATCH_INTEL_FAM6_MODEL(CANNONLAKE_L, &cnl_cstates),
1159e094 637
ef37219a
TG
638 X86_MATCH_INTEL_FAM6_MODEL(XEON_PHI_KNL, &knl_cstates),
639 X86_MATCH_INTEL_FAM6_MODEL(XEON_PHI_KNM, &knl_cstates),
5c10b048 640
ef37219a
TG
641 X86_MATCH_INTEL_FAM6_MODEL(ATOM_GOLDMONT, &glm_cstates),
642 X86_MATCH_INTEL_FAM6_MODEL(ATOM_GOLDMONT_D, &glm_cstates),
643 X86_MATCH_INTEL_FAM6_MODEL(ATOM_GOLDMONT_PLUS, &glm_cstates),
644 X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT_D, &glm_cstates),
645 X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT, &glm_cstates),
5b16ef2e 646 X86_MATCH_INTEL_FAM6_MODEL(ATOM_TREMONT_L, &glm_cstates),
f08c47d1 647
ef37219a
TG
648 X86_MATCH_INTEL_FAM6_MODEL(ICELAKE_L, &icl_cstates),
649 X86_MATCH_INTEL_FAM6_MODEL(ICELAKE, &icl_cstates),
650 X86_MATCH_INTEL_FAM6_MODEL(TIGERLAKE_L, &icl_cstates),
651 X86_MATCH_INTEL_FAM6_MODEL(TIGERLAKE, &icl_cstates),
424646ee
TG
652 { },
653};
654MODULE_DEVICE_TABLE(x86cpu, intel_cstates_match);
655
424646ee 656static int __init cstate_probe(const struct cstate_model *cm)
7ce1346a
KL
657{
658 /* SLM has different MSR for PKG C6 */
424646ee 659 if (cm->quirks & SLM_PKG_C6_USE_C7_MSR)
7ce1346a 660 pkg_msr[PERF_CSTATE_PKG_C6_RES].msr = MSR_PKG_C7_RESIDENCY;
7ce1346a 661
889882bc
LO
662 /* KNL has different MSR for CORE C6 */
663 if (cm->quirks & KNL_CORE_C6_MSR)
664 pkg_msr[PERF_CSTATE_CORE_C6_RES].msr = MSR_KNL_CORE_C6_RESIDENCY;
665
666
8f2a28c5
JO
667 core_msr_mask = perf_msr_probe(core_msr, PERF_CSTATE_CORE_EVENT_MAX,
668 true, (void *) &cm->core_events);
669
670 pkg_msr_mask = perf_msr_probe(pkg_msr, PERF_CSTATE_PKG_EVENT_MAX,
671 true, (void *) &cm->pkg_events);
7ce1346a 672
8f2a28c5
JO
673 has_cstate_core = !!core_msr_mask;
674 has_cstate_pkg = !!pkg_msr_mask;
7ce1346a
KL
675
676 return (has_cstate_core || has_cstate_pkg) ? 0 : -ENODEV;
677}
678
c7afba32 679static inline void cstate_cleanup(void)
7ce1346a 680{
834fcd29
TG
681 cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_CSTATE_ONLINE);
682 cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_CSTATE_STARTING);
683
d29859e7
TG
684 if (has_cstate_core)
685 perf_pmu_unregister(&cstate_core_pmu);
7ce1346a 686
d29859e7
TG
687 if (has_cstate_pkg)
688 perf_pmu_unregister(&cstate_pkg_pmu);
7ce1346a
KL
689}
690
d29859e7 691static int __init cstate_init(void)
7ce1346a 692{
77c34ef1 693 int err;
d29859e7 694
77c34ef1 695 cpuhp_setup_state(CPUHP_AP_PERF_X86_CSTATE_STARTING,
834fcd29 696 "perf/x86/cstate:starting", cstate_cpu_init, NULL);
77c34ef1 697 cpuhp_setup_state(CPUHP_AP_PERF_X86_CSTATE_ONLINE,
834fcd29 698 "perf/x86/cstate:online", NULL, cstate_cpu_exit);
7ce1346a
KL
699
700 if (has_cstate_core) {
701 err = perf_pmu_register(&cstate_core_pmu, cstate_core_pmu.name, -1);
d29859e7
TG
702 if (err) {
703 has_cstate_core = false;
704 pr_info("Failed to register cstate core pmu\n");
834fcd29 705 cstate_cleanup();
77c34ef1 706 return err;
d29859e7 707 }
7ce1346a
KL
708 }
709
710 if (has_cstate_pkg) {
cb63ba0f
KL
711 if (topology_max_die_per_package() > 1) {
712 err = perf_pmu_register(&cstate_pkg_pmu,
713 "cstate_die", -1);
714 } else {
715 err = perf_pmu_register(&cstate_pkg_pmu,
716 cstate_pkg_pmu.name, -1);
717 }
d29859e7
TG
718 if (err) {
719 has_cstate_pkg = false;
720 pr_info("Failed to register cstate pkg pmu\n");
721 cstate_cleanup();
77c34ef1 722 return err;
d29859e7 723 }
7ce1346a 724 }
834fcd29 725 return 0;
7ce1346a
KL
726}
727
728static int __init cstate_pmu_init(void)
729{
424646ee 730 const struct x86_cpu_id *id;
7ce1346a
KL
731 int err;
732
424646ee 733 if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
7ce1346a
KL
734 return -ENODEV;
735
424646ee
TG
736 id = x86_match_cpu(intel_cstates_match);
737 if (!id)
738 return -ENODEV;
739
740 err = cstate_probe((const struct cstate_model *) id->driver_data);
7ce1346a
KL
741 if (err)
742 return err;
743
d29859e7 744 return cstate_init();
7ce1346a 745}
c7afba32
TG
746module_init(cstate_pmu_init);
747
748static void __exit cstate_pmu_exit(void)
749{
c7afba32 750 cstate_cleanup();
c7afba32
TG
751}
752module_exit(cstate_pmu_exit);