]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/events/intel/cstate.c
ARM/imx/mmcd: Fix broken cpu hotplug handling
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / events / intel / cstate.c
CommitLineData
7ce1346a
KL
1/*
2 * perf_event_intel_cstate.c: support cstate residency counters
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
43 * Available model: SLM,AMT
44 * Scope: Core (each processor core has a MSR)
45 * MSR_CORE_C3_RESIDENCY: CORE C3 Residency Counter
46 * perf code: 0x01
47 * Available model: NHM,WSM,SNB,IVB,HSW,BDW,SKL
48 * Scope: Core
49 * MSR_CORE_C6_RESIDENCY: CORE C6 Residency Counter
50 * perf code: 0x02
889882bc
LO
51 * Available model: SLM,AMT,NHM,WSM,SNB,IVB,HSW,BDW
52 * SKL,KNL
7ce1346a
KL
53 * Scope: Core
54 * MSR_CORE_C7_RESIDENCY: CORE C7 Residency Counter
55 * perf code: 0x03
56 * Available model: SNB,IVB,HSW,BDW,SKL
57 * Scope: Core
58 * MSR_PKG_C2_RESIDENCY: Package C2 Residency Counter.
59 * perf code: 0x00
889882bc 60 * Available model: SNB,IVB,HSW,BDW,SKL,KNL
7ce1346a
KL
61 * Scope: Package (physical package)
62 * MSR_PKG_C3_RESIDENCY: Package C3 Residency Counter.
63 * perf code: 0x01
889882bc 64 * Available model: NHM,WSM,SNB,IVB,HSW,BDW,SKL,KNL
7ce1346a
KL
65 * Scope: Package (physical package)
66 * MSR_PKG_C6_RESIDENCY: Package C6 Residency Counter.
67 * perf code: 0x02
889882bc
LO
68 * Available model: SLM,AMT,NHM,WSM,SNB,IVB,HSW,BDW
69 * SKL,KNL
7ce1346a
KL
70 * Scope: Package (physical package)
71 * MSR_PKG_C7_RESIDENCY: Package C7 Residency Counter.
72 * perf code: 0x03
73 * Available model: NHM,WSM,SNB,IVB,HSW,BDW,SKL
74 * Scope: Package (physical package)
75 * MSR_PKG_C8_RESIDENCY: Package C8 Residency Counter.
76 * perf code: 0x04
77 * Available model: HSW ULT only
78 * Scope: Package (physical package)
79 * MSR_PKG_C9_RESIDENCY: Package C9 Residency Counter.
80 * perf code: 0x05
81 * Available model: HSW ULT only
82 * Scope: Package (physical package)
83 * MSR_PKG_C10_RESIDENCY: Package C10 Residency Counter.
84 * perf code: 0x06
85 * Available model: HSW ULT only
86 * Scope: Package (physical package)
87 *
88 */
89
90#include <linux/module.h>
91#include <linux/slab.h>
92#include <linux/perf_event.h>
93#include <asm/cpu_device_id.h>
bf4ad541 94#include <asm/intel-family.h>
27f6d22b 95#include "../perf_event.h"
7ce1346a 96
c7afba32
TG
97MODULE_LICENSE("GPL");
98
7ce1346a
KL
99#define DEFINE_CSTATE_FORMAT_ATTR(_var, _name, _format) \
100static ssize_t __cstate_##_var##_show(struct kobject *kobj, \
101 struct kobj_attribute *attr, \
102 char *page) \
103{ \
104 BUILD_BUG_ON(sizeof(_format) >= PAGE_SIZE); \
105 return sprintf(page, _format "\n"); \
106} \
107static struct kobj_attribute format_attr_##_var = \
108 __ATTR(_name, 0444, __cstate_##_var##_show, NULL)
109
110static ssize_t cstate_get_attr_cpumask(struct device *dev,
111 struct device_attribute *attr,
112 char *buf);
113
424646ee
TG
114/* Model -> events mapping */
115struct cstate_model {
116 unsigned long core_events;
117 unsigned long pkg_events;
118 unsigned long quirks;
119};
120
121/* Quirk flags */
122#define SLM_PKG_C6_USE_C7_MSR (1UL << 0)
889882bc 123#define KNL_CORE_C6_MSR (1UL << 1)
424646ee 124
7ce1346a
KL
125struct perf_cstate_msr {
126 u64 msr;
127 struct perf_pmu_events_attr *attr;
7ce1346a
KL
128};
129
130
131/* cstate_core PMU */
7ce1346a
KL
132static struct pmu cstate_core_pmu;
133static bool has_cstate_core;
134
424646ee 135enum perf_cstate_core_events {
7ce1346a
KL
136 PERF_CSTATE_CORE_C1_RES = 0,
137 PERF_CSTATE_CORE_C3_RES,
138 PERF_CSTATE_CORE_C6_RES,
139 PERF_CSTATE_CORE_C7_RES,
140
141 PERF_CSTATE_CORE_EVENT_MAX,
142};
143
7ce1346a
KL
144PMU_EVENT_ATTR_STRING(c1-residency, evattr_cstate_core_c1, "event=0x00");
145PMU_EVENT_ATTR_STRING(c3-residency, evattr_cstate_core_c3, "event=0x01");
146PMU_EVENT_ATTR_STRING(c6-residency, evattr_cstate_core_c6, "event=0x02");
147PMU_EVENT_ATTR_STRING(c7-residency, evattr_cstate_core_c7, "event=0x03");
148
149static struct perf_cstate_msr core_msr[] = {
424646ee
TG
150 [PERF_CSTATE_CORE_C1_RES] = { MSR_CORE_C1_RES, &evattr_cstate_core_c1 },
151 [PERF_CSTATE_CORE_C3_RES] = { MSR_CORE_C3_RESIDENCY, &evattr_cstate_core_c3 },
152 [PERF_CSTATE_CORE_C6_RES] = { MSR_CORE_C6_RESIDENCY, &evattr_cstate_core_c6 },
153 [PERF_CSTATE_CORE_C7_RES] = { MSR_CORE_C7_RESIDENCY, &evattr_cstate_core_c7 },
7ce1346a
KL
154};
155
156static struct attribute *core_events_attrs[PERF_CSTATE_CORE_EVENT_MAX + 1] = {
157 NULL,
158};
159
160static struct attribute_group core_events_attr_group = {
161 .name = "events",
162 .attrs = core_events_attrs,
163};
164
165DEFINE_CSTATE_FORMAT_ATTR(core_event, event, "config:0-63");
166static struct attribute *core_format_attrs[] = {
167 &format_attr_core_event.attr,
168 NULL,
169};
170
171static struct attribute_group core_format_attr_group = {
172 .name = "format",
173 .attrs = core_format_attrs,
174};
175
176static cpumask_t cstate_core_cpu_mask;
177static DEVICE_ATTR(cpumask, S_IRUGO, cstate_get_attr_cpumask, NULL);
178
179static struct attribute *cstate_cpumask_attrs[] = {
180 &dev_attr_cpumask.attr,
181 NULL,
182};
183
184static struct attribute_group cpumask_attr_group = {
185 .attrs = cstate_cpumask_attrs,
186};
187
188static const struct attribute_group *core_attr_groups[] = {
189 &core_events_attr_group,
190 &core_format_attr_group,
191 &cpumask_attr_group,
192 NULL,
193};
194
7ce1346a 195/* cstate_pkg PMU */
7ce1346a
KL
196static struct pmu cstate_pkg_pmu;
197static bool has_cstate_pkg;
198
424646ee 199enum perf_cstate_pkg_events {
7ce1346a
KL
200 PERF_CSTATE_PKG_C2_RES = 0,
201 PERF_CSTATE_PKG_C3_RES,
202 PERF_CSTATE_PKG_C6_RES,
203 PERF_CSTATE_PKG_C7_RES,
204 PERF_CSTATE_PKG_C8_RES,
205 PERF_CSTATE_PKG_C9_RES,
206 PERF_CSTATE_PKG_C10_RES,
207
208 PERF_CSTATE_PKG_EVENT_MAX,
209};
210
7ce1346a
KL
211PMU_EVENT_ATTR_STRING(c2-residency, evattr_cstate_pkg_c2, "event=0x00");
212PMU_EVENT_ATTR_STRING(c3-residency, evattr_cstate_pkg_c3, "event=0x01");
213PMU_EVENT_ATTR_STRING(c6-residency, evattr_cstate_pkg_c6, "event=0x02");
214PMU_EVENT_ATTR_STRING(c7-residency, evattr_cstate_pkg_c7, "event=0x03");
215PMU_EVENT_ATTR_STRING(c8-residency, evattr_cstate_pkg_c8, "event=0x04");
216PMU_EVENT_ATTR_STRING(c9-residency, evattr_cstate_pkg_c9, "event=0x05");
217PMU_EVENT_ATTR_STRING(c10-residency, evattr_cstate_pkg_c10, "event=0x06");
218
219static struct perf_cstate_msr pkg_msr[] = {
424646ee
TG
220 [PERF_CSTATE_PKG_C2_RES] = { MSR_PKG_C2_RESIDENCY, &evattr_cstate_pkg_c2 },
221 [PERF_CSTATE_PKG_C3_RES] = { MSR_PKG_C3_RESIDENCY, &evattr_cstate_pkg_c3 },
222 [PERF_CSTATE_PKG_C6_RES] = { MSR_PKG_C6_RESIDENCY, &evattr_cstate_pkg_c6 },
223 [PERF_CSTATE_PKG_C7_RES] = { MSR_PKG_C7_RESIDENCY, &evattr_cstate_pkg_c7 },
224 [PERF_CSTATE_PKG_C8_RES] = { MSR_PKG_C8_RESIDENCY, &evattr_cstate_pkg_c8 },
225 [PERF_CSTATE_PKG_C9_RES] = { MSR_PKG_C9_RESIDENCY, &evattr_cstate_pkg_c9 },
226 [PERF_CSTATE_PKG_C10_RES] = { MSR_PKG_C10_RESIDENCY, &evattr_cstate_pkg_c10 },
7ce1346a
KL
227};
228
229static struct attribute *pkg_events_attrs[PERF_CSTATE_PKG_EVENT_MAX + 1] = {
230 NULL,
231};
232
233static struct attribute_group pkg_events_attr_group = {
234 .name = "events",
235 .attrs = pkg_events_attrs,
236};
237
238DEFINE_CSTATE_FORMAT_ATTR(pkg_event, event, "config:0-63");
239static struct attribute *pkg_format_attrs[] = {
240 &format_attr_pkg_event.attr,
241 NULL,
242};
243static struct attribute_group pkg_format_attr_group = {
244 .name = "format",
245 .attrs = pkg_format_attrs,
246};
247
248static cpumask_t cstate_pkg_cpu_mask;
249
250static const struct attribute_group *pkg_attr_groups[] = {
251 &pkg_events_attr_group,
252 &pkg_format_attr_group,
253 &cpumask_attr_group,
254 NULL,
255};
256
7ce1346a
KL
257static ssize_t cstate_get_attr_cpumask(struct device *dev,
258 struct device_attribute *attr,
259 char *buf)
260{
261 struct pmu *pmu = dev_get_drvdata(dev);
262
263 if (pmu == &cstate_core_pmu)
264 return cpumap_print_to_pagebuf(true, buf, &cstate_core_cpu_mask);
265 else if (pmu == &cstate_pkg_pmu)
266 return cpumap_print_to_pagebuf(true, buf, &cstate_pkg_cpu_mask);
267 else
268 return 0;
269}
270
271static int cstate_pmu_event_init(struct perf_event *event)
272{
273 u64 cfg = event->attr.config;
49de0493 274 int cpu;
7ce1346a
KL
275
276 if (event->attr.type != event->pmu->type)
277 return -ENOENT;
278
279 /* unsupported modes and filters */
280 if (event->attr.exclude_user ||
281 event->attr.exclude_kernel ||
282 event->attr.exclude_hv ||
283 event->attr.exclude_idle ||
284 event->attr.exclude_host ||
285 event->attr.exclude_guest ||
286 event->attr.sample_period) /* no sampling */
287 return -EINVAL;
288
49de0493
TG
289 if (event->cpu < 0)
290 return -EINVAL;
291
7ce1346a
KL
292 if (event->pmu == &cstate_core_pmu) {
293 if (cfg >= PERF_CSTATE_CORE_EVENT_MAX)
294 return -EINVAL;
295 if (!core_msr[cfg].attr)
296 return -EINVAL;
297 event->hw.event_base = core_msr[cfg].msr;
49de0493
TG
298 cpu = cpumask_any_and(&cstate_core_cpu_mask,
299 topology_sibling_cpumask(event->cpu));
7ce1346a
KL
300 } else if (event->pmu == &cstate_pkg_pmu) {
301 if (cfg >= PERF_CSTATE_PKG_EVENT_MAX)
302 return -EINVAL;
303 if (!pkg_msr[cfg].attr)
304 return -EINVAL;
305 event->hw.event_base = pkg_msr[cfg].msr;
49de0493
TG
306 cpu = cpumask_any_and(&cstate_pkg_cpu_mask,
307 topology_core_cpumask(event->cpu));
308 } else {
7ce1346a 309 return -ENOENT;
49de0493
TG
310 }
311
312 if (cpu >= nr_cpu_ids)
313 return -ENODEV;
7ce1346a 314
49de0493 315 event->cpu = cpu;
7ce1346a
KL
316 event->hw.config = cfg;
317 event->hw.idx = -1;
49de0493 318 return 0;
7ce1346a
KL
319}
320
321static inline u64 cstate_pmu_read_counter(struct perf_event *event)
322{
323 u64 val;
324
325 rdmsrl(event->hw.event_base, val);
326 return val;
327}
328
329static void cstate_pmu_event_update(struct perf_event *event)
330{
331 struct hw_perf_event *hwc = &event->hw;
332 u64 prev_raw_count, new_raw_count;
333
334again:
335 prev_raw_count = local64_read(&hwc->prev_count);
336 new_raw_count = cstate_pmu_read_counter(event);
337
338 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
339 new_raw_count) != prev_raw_count)
340 goto again;
341
342 local64_add(new_raw_count - prev_raw_count, &event->count);
343}
344
345static void cstate_pmu_event_start(struct perf_event *event, int mode)
346{
347 local64_set(&event->hw.prev_count, cstate_pmu_read_counter(event));
348}
349
350static void cstate_pmu_event_stop(struct perf_event *event, int mode)
351{
352 cstate_pmu_event_update(event);
353}
354
355static void cstate_pmu_event_del(struct perf_event *event, int mode)
356{
357 cstate_pmu_event_stop(event, PERF_EF_UPDATE);
358}
359
360static int cstate_pmu_event_add(struct perf_event *event, int mode)
361{
362 if (mode & PERF_EF_START)
363 cstate_pmu_event_start(event, mode);
364
365 return 0;
366}
367
49de0493
TG
368/*
369 * Check if exiting cpu is the designated reader. If so migrate the
370 * events when there is a valid target available
371 */
77c34ef1 372static int cstate_cpu_exit(unsigned int cpu)
7ce1346a 373{
49de0493
TG
374 unsigned int target;
375
376 if (has_cstate_core &&
377 cpumask_test_and_clear_cpu(cpu, &cstate_core_cpu_mask)) {
378
379 target = cpumask_any_but(topology_sibling_cpumask(cpu), cpu);
380 /* Migrate events if there is a valid target */
381 if (target < nr_cpu_ids) {
7ce1346a 382 cpumask_set_cpu(target, &cstate_core_cpu_mask);
7ce1346a 383 perf_pmu_migrate_context(&cstate_core_pmu, cpu, target);
49de0493 384 }
7ce1346a
KL
385 }
386
49de0493
TG
387 if (has_cstate_pkg &&
388 cpumask_test_and_clear_cpu(cpu, &cstate_pkg_cpu_mask)) {
389
390 target = cpumask_any_but(topology_core_cpumask(cpu), cpu);
391 /* Migrate events if there is a valid target */
392 if (target < nr_cpu_ids) {
7ce1346a 393 cpumask_set_cpu(target, &cstate_pkg_cpu_mask);
7ce1346a 394 perf_pmu_migrate_context(&cstate_pkg_pmu, cpu, target);
49de0493 395 }
7ce1346a 396 }
77c34ef1 397 return 0;
7ce1346a
KL
398}
399
77c34ef1 400static int cstate_cpu_init(unsigned int cpu)
7ce1346a 401{
49de0493 402 unsigned int target;
7ce1346a 403
49de0493
TG
404 /*
405 * If this is the first online thread of that core, set it in
406 * the core cpu mask as the designated reader.
407 */
408 target = cpumask_any_and(&cstate_core_cpu_mask,
409 topology_sibling_cpumask(cpu));
410
411 if (has_cstate_core && target >= nr_cpu_ids)
412 cpumask_set_cpu(cpu, &cstate_core_cpu_mask);
413
414 /*
415 * If this is the first online thread of that package, set it
416 * in the package cpu mask as the designated reader.
417 */
418 target = cpumask_any_and(&cstate_pkg_cpu_mask,
419 topology_core_cpumask(cpu));
420 if (has_cstate_pkg && target >= nr_cpu_ids)
421 cpumask_set_cpu(cpu, &cstate_pkg_cpu_mask);
7ce1346a 422
77c34ef1 423 return 0;
7ce1346a
KL
424}
425
424646ee
TG
426static struct pmu cstate_core_pmu = {
427 .attr_groups = core_attr_groups,
428 .name = "cstate_core",
429 .task_ctx_nr = perf_invalid_context,
430 .event_init = cstate_pmu_event_init,
431 .add = cstate_pmu_event_add,
432 .del = cstate_pmu_event_del,
433 .start = cstate_pmu_event_start,
434 .stop = cstate_pmu_event_stop,
435 .read = cstate_pmu_event_update,
436 .capabilities = PERF_PMU_CAP_NO_INTERRUPT,
437};
438
439static struct pmu cstate_pkg_pmu = {
440 .attr_groups = pkg_attr_groups,
441 .name = "cstate_pkg",
442 .task_ctx_nr = perf_invalid_context,
443 .event_init = cstate_pmu_event_init,
444 .add = cstate_pmu_event_add,
445 .del = cstate_pmu_event_del,
446 .start = cstate_pmu_event_start,
447 .stop = cstate_pmu_event_stop,
448 .read = cstate_pmu_event_update,
449 .capabilities = PERF_PMU_CAP_NO_INTERRUPT,
450};
451
452static const struct cstate_model nhm_cstates __initconst = {
453 .core_events = BIT(PERF_CSTATE_CORE_C3_RES) |
454 BIT(PERF_CSTATE_CORE_C6_RES),
455
456 .pkg_events = BIT(PERF_CSTATE_PKG_C3_RES) |
457 BIT(PERF_CSTATE_PKG_C6_RES) |
458 BIT(PERF_CSTATE_PKG_C7_RES),
459};
460
461static const struct cstate_model snb_cstates __initconst = {
462 .core_events = BIT(PERF_CSTATE_CORE_C3_RES) |
463 BIT(PERF_CSTATE_CORE_C6_RES) |
464 BIT(PERF_CSTATE_CORE_C7_RES),
465
466 .pkg_events = BIT(PERF_CSTATE_PKG_C2_RES) |
467 BIT(PERF_CSTATE_PKG_C3_RES) |
468 BIT(PERF_CSTATE_PKG_C6_RES) |
469 BIT(PERF_CSTATE_PKG_C7_RES),
470};
471
472static const struct cstate_model hswult_cstates __initconst = {
473 .core_events = BIT(PERF_CSTATE_CORE_C3_RES) |
474 BIT(PERF_CSTATE_CORE_C6_RES) |
475 BIT(PERF_CSTATE_CORE_C7_RES),
476
477 .pkg_events = BIT(PERF_CSTATE_PKG_C2_RES) |
478 BIT(PERF_CSTATE_PKG_C3_RES) |
479 BIT(PERF_CSTATE_PKG_C6_RES) |
480 BIT(PERF_CSTATE_PKG_C7_RES) |
481 BIT(PERF_CSTATE_PKG_C8_RES) |
482 BIT(PERF_CSTATE_PKG_C9_RES) |
483 BIT(PERF_CSTATE_PKG_C10_RES),
484};
485
486static const struct cstate_model slm_cstates __initconst = {
487 .core_events = BIT(PERF_CSTATE_CORE_C1_RES) |
488 BIT(PERF_CSTATE_CORE_C6_RES),
489
490 .pkg_events = BIT(PERF_CSTATE_PKG_C6_RES),
491 .quirks = SLM_PKG_C6_USE_C7_MSR,
492};
493
889882bc
LO
494
495static const struct cstate_model knl_cstates __initconst = {
496 .core_events = BIT(PERF_CSTATE_CORE_C6_RES),
497
498 .pkg_events = BIT(PERF_CSTATE_PKG_C2_RES) |
499 BIT(PERF_CSTATE_PKG_C3_RES) |
500 BIT(PERF_CSTATE_PKG_C6_RES),
501 .quirks = KNL_CORE_C6_MSR,
502};
503
504
505
424646ee
TG
506#define X86_CSTATES_MODEL(model, states) \
507 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long) &(states) }
508
509static const struct x86_cpu_id intel_cstates_match[] __initconst = {
bf4ad541
DH
510 X86_CSTATES_MODEL(INTEL_FAM6_NEHALEM, nhm_cstates),
511 X86_CSTATES_MODEL(INTEL_FAM6_NEHALEM_EP, nhm_cstates),
512 X86_CSTATES_MODEL(INTEL_FAM6_NEHALEM_EX, nhm_cstates),
424646ee 513
bf4ad541
DH
514 X86_CSTATES_MODEL(INTEL_FAM6_WESTMERE, nhm_cstates),
515 X86_CSTATES_MODEL(INTEL_FAM6_WESTMERE_EP, nhm_cstates),
516 X86_CSTATES_MODEL(INTEL_FAM6_WESTMERE_EX, nhm_cstates),
424646ee 517
bf4ad541
DH
518 X86_CSTATES_MODEL(INTEL_FAM6_SANDYBRIDGE, snb_cstates),
519 X86_CSTATES_MODEL(INTEL_FAM6_SANDYBRIDGE_X, snb_cstates),
424646ee 520
bf4ad541
DH
521 X86_CSTATES_MODEL(INTEL_FAM6_IVYBRIDGE, snb_cstates),
522 X86_CSTATES_MODEL(INTEL_FAM6_IVYBRIDGE_X, snb_cstates),
424646ee 523
bf4ad541
DH
524 X86_CSTATES_MODEL(INTEL_FAM6_HASWELL_CORE, snb_cstates),
525 X86_CSTATES_MODEL(INTEL_FAM6_HASWELL_X, snb_cstates),
526 X86_CSTATES_MODEL(INTEL_FAM6_HASWELL_GT3E, snb_cstates),
424646ee 527
bf4ad541 528 X86_CSTATES_MODEL(INTEL_FAM6_HASWELL_ULT, hswult_cstates),
424646ee 529
bf4ad541
DH
530 X86_CSTATES_MODEL(INTEL_FAM6_ATOM_SILVERMONT1, slm_cstates),
531 X86_CSTATES_MODEL(INTEL_FAM6_ATOM_SILVERMONT2, slm_cstates),
532 X86_CSTATES_MODEL(INTEL_FAM6_ATOM_AIRMONT, slm_cstates),
424646ee 533
bf4ad541
DH
534 X86_CSTATES_MODEL(INTEL_FAM6_BROADWELL_CORE, snb_cstates),
535 X86_CSTATES_MODEL(INTEL_FAM6_BROADWELL_XEON_D, snb_cstates),
536 X86_CSTATES_MODEL(INTEL_FAM6_BROADWELL_GT3E, snb_cstates),
537 X86_CSTATES_MODEL(INTEL_FAM6_BROADWELL_X, snb_cstates),
424646ee 538
bf4ad541
DH
539 X86_CSTATES_MODEL(INTEL_FAM6_SKYLAKE_MOBILE, snb_cstates),
540 X86_CSTATES_MODEL(INTEL_FAM6_SKYLAKE_DESKTOP, snb_cstates),
889882bc
LO
541
542 X86_CSTATES_MODEL(INTEL_FAM6_XEON_PHI_KNL, knl_cstates),
1dba23b1 543 X86_CSTATES_MODEL(INTEL_FAM6_XEON_PHI_KNM, knl_cstates),
424646ee
TG
544 { },
545};
546MODULE_DEVICE_TABLE(x86cpu, intel_cstates_match);
547
7ce1346a
KL
548/*
549 * Probe the cstate events and insert the available one into sysfs attrs
424646ee 550 * Return false if there are no available events.
7ce1346a 551 */
424646ee
TG
552static bool __init cstate_probe_msr(const unsigned long evmsk, int max,
553 struct perf_cstate_msr *msr,
554 struct attribute **attrs)
7ce1346a 555{
424646ee
TG
556 bool found = false;
557 unsigned int bit;
7ce1346a
KL
558 u64 val;
559
424646ee
TG
560 for (bit = 0; bit < max; bit++) {
561 if (test_bit(bit, &evmsk) && !rdmsrl_safe(msr[bit].msr, &val)) {
562 *attrs++ = &msr[bit].attr->attr.attr;
563 found = true;
564 } else {
565 msr[bit].attr = NULL;
566 }
7ce1346a 567 }
424646ee 568 *attrs = NULL;
7ce1346a 569
424646ee 570 return found;
7ce1346a
KL
571}
572
424646ee 573static int __init cstate_probe(const struct cstate_model *cm)
7ce1346a
KL
574{
575 /* SLM has different MSR for PKG C6 */
424646ee 576 if (cm->quirks & SLM_PKG_C6_USE_C7_MSR)
7ce1346a 577 pkg_msr[PERF_CSTATE_PKG_C6_RES].msr = MSR_PKG_C7_RESIDENCY;
7ce1346a 578
889882bc
LO
579 /* KNL has different MSR for CORE C6 */
580 if (cm->quirks & KNL_CORE_C6_MSR)
581 pkg_msr[PERF_CSTATE_CORE_C6_RES].msr = MSR_KNL_CORE_C6_RESIDENCY;
582
583
424646ee
TG
584 has_cstate_core = cstate_probe_msr(cm->core_events,
585 PERF_CSTATE_CORE_EVENT_MAX,
586 core_msr, core_events_attrs);
7ce1346a 587
424646ee
TG
588 has_cstate_pkg = cstate_probe_msr(cm->pkg_events,
589 PERF_CSTATE_PKG_EVENT_MAX,
590 pkg_msr, pkg_events_attrs);
7ce1346a
KL
591
592 return (has_cstate_core || has_cstate_pkg) ? 0 : -ENODEV;
593}
594
c7afba32 595static inline void cstate_cleanup(void)
7ce1346a 596{
d29859e7
TG
597 if (has_cstate_core)
598 perf_pmu_unregister(&cstate_core_pmu);
7ce1346a 599
d29859e7
TG
600 if (has_cstate_pkg)
601 perf_pmu_unregister(&cstate_pkg_pmu);
7ce1346a
KL
602}
603
d29859e7 604static int __init cstate_init(void)
7ce1346a 605{
77c34ef1 606 int err;
d29859e7 607
77c34ef1
SAS
608 cpuhp_setup_state(CPUHP_AP_PERF_X86_CSTATE_STARTING,
609 "AP_PERF_X86_CSTATE_STARTING", cstate_cpu_init,
610 NULL);
611 cpuhp_setup_state(CPUHP_AP_PERF_X86_CSTATE_ONLINE,
612 "AP_PERF_X86_CSTATE_ONLINE", NULL, cstate_cpu_exit);
7ce1346a
KL
613
614 if (has_cstate_core) {
615 err = perf_pmu_register(&cstate_core_pmu, cstate_core_pmu.name, -1);
d29859e7
TG
616 if (err) {
617 has_cstate_core = false;
618 pr_info("Failed to register cstate core pmu\n");
77c34ef1 619 return err;
d29859e7 620 }
7ce1346a
KL
621 }
622
623 if (has_cstate_pkg) {
624 err = perf_pmu_register(&cstate_pkg_pmu, cstate_pkg_pmu.name, -1);
d29859e7
TG
625 if (err) {
626 has_cstate_pkg = false;
627 pr_info("Failed to register cstate pkg pmu\n");
628 cstate_cleanup();
77c34ef1 629 return err;
d29859e7 630 }
7ce1346a 631 }
77c34ef1 632
d29859e7 633 return err;
7ce1346a
KL
634}
635
636static int __init cstate_pmu_init(void)
637{
424646ee 638 const struct x86_cpu_id *id;
7ce1346a
KL
639 int err;
640
424646ee 641 if (boot_cpu_has(X86_FEATURE_HYPERVISOR))
7ce1346a
KL
642 return -ENODEV;
643
424646ee
TG
644 id = x86_match_cpu(intel_cstates_match);
645 if (!id)
646 return -ENODEV;
647
648 err = cstate_probe((const struct cstate_model *) id->driver_data);
7ce1346a
KL
649 if (err)
650 return err;
651
d29859e7 652 return cstate_init();
7ce1346a 653}
c7afba32
TG
654module_init(cstate_pmu_init);
655
656static void __exit cstate_pmu_exit(void)
657{
77c34ef1
SAS
658 cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_CSTATE_ONLINE);
659 cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_CSTATE_STARTING);
c7afba32 660 cstate_cleanup();
c7afba32
TG
661}
662module_exit(cstate_pmu_exit);