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