blob: 8b902b67342a4e487b40360a081e9b8a8ca476c8 [file] [log] [blame]
Stephane Eranian4788e5b2013-11-12 17:58:50 +01001/*
2 * perf_event_intel_rapl.c: support Intel RAPL energy consumption counters
3 * Copyright (C) 2013 Google, Inc., Stephane Eranian
4 *
5 * Intel RAPL interface is specified in the IA-32 Manual Vol3b
6 * section 14.7.1 (September 2013)
7 *
8 * RAPL provides more controls than just reporting energy consumption
9 * however here we only expose the 3 energy consumption free running
10 * counters (pp0, pkg, dram).
11 *
12 * Each of those counters increments in a power unit defined by the
13 * RAPL_POWER_UNIT MSR. On SandyBridge, this unit is 1/(2^16) Joules
14 * but it can vary.
15 *
16 * Counter to rapl events mappings:
17 *
18 * pp0 counter: consumption of all physical cores (power plane 0)
19 * event: rapl_energy_cores
20 * perf code: 0x1
21 *
22 * pkg counter: consumption of the whole processor package
23 * event: rapl_energy_pkg
24 * perf code: 0x2
25 *
26 * dram counter: consumption of the dram domain (servers only)
27 * event: rapl_energy_dram
28 * perf code: 0x3
29 *
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -070030 * gpu counter: consumption of the builtin-gpu domain (client only)
Stephane Eranianf228c5b2014-01-08 11:15:53 +010031 * event: rapl_energy_gpu
32 * perf code: 0x4
33 *
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -070034 * psys counter: consumption of the builtin-psys domain (client only)
35 * event: rapl_energy_psys
36 * perf code: 0x5
37 *
Stephane Eranian4788e5b2013-11-12 17:58:50 +010038 * We manage those counters as free running (read-only). They may be
39 * use simultaneously by other tools, such as turbostat.
40 *
41 * The events only support system-wide mode counting. There is no
42 * sampling support because it does not make sense and is not
43 * supported by the RAPL hardware.
44 *
45 * Because we want to avoid floating-point operations in the kernel,
46 * the events are all reported in fixed point arithmetic (32.32).
47 * Tools must adjust the counts to convert them to Watts using
48 * the duration of the measurement. Tools may use a function such as
49 * ldexp(raw_count, -32);
50 */
Thomas Gleixner512089d2016-02-22 22:19:23 +000051
52#define pr_fmt(fmt) "RAPL PMU: " fmt
53
Stephane Eranian4788e5b2013-11-12 17:58:50 +010054#include <linux/module.h>
55#include <linux/slab.h>
56#include <linux/perf_event.h>
57#include <asm/cpu_device_id.h>
Dave Hansen7f2236d2016-06-02 17:19:30 -070058#include <asm/intel-family.h>
Borislav Petkov27f6d222016-02-10 10:55:23 +010059#include "../perf_event.h"
Stephane Eranian4788e5b2013-11-12 17:58:50 +010060
Kan Liang4b6e2572016-03-19 00:20:50 -070061MODULE_LICENSE("GPL");
62
Stephane Eranian4788e5b2013-11-12 17:58:50 +010063/*
64 * RAPL energy status counters
65 */
66#define RAPL_IDX_PP0_NRG_STAT 0 /* all cores */
67#define INTEL_RAPL_PP0 0x1 /* pseudo-encoding */
68#define RAPL_IDX_PKG_NRG_STAT 1 /* entire package */
69#define INTEL_RAPL_PKG 0x2 /* pseudo-encoding */
70#define RAPL_IDX_RAM_NRG_STAT 2 /* DRAM */
71#define INTEL_RAPL_RAM 0x3 /* pseudo-encoding */
Vince Weavere69af462014-04-02 00:49:55 -040072#define RAPL_IDX_PP1_NRG_STAT 3 /* gpu */
Stephane Eranianf228c5b2014-01-08 11:15:53 +010073#define INTEL_RAPL_PP1 0x4 /* pseudo-encoding */
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -070074#define RAPL_IDX_PSYS_NRG_STAT 4 /* psys */
75#define INTEL_RAPL_PSYS 0x5 /* pseudo-encoding */
Stephane Eranian4788e5b2013-11-12 17:58:50 +010076
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -070077#define NR_RAPL_DOMAINS 0x5
Andi Kleenda008ee2015-11-30 09:48:42 -080078static const char *const rapl_domain_names[NR_RAPL_DOMAINS] __initconst = {
Jacob Pan64552392015-03-26 14:28:45 -070079 "pp0-core",
80 "package",
81 "dram",
82 "pp1-gpu",
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -070083 "psys",
Jacob Pan64552392015-03-26 14:28:45 -070084};
85
Stephane Eranian4788e5b2013-11-12 17:58:50 +010086/* Clients have PP0, PKG */
87#define RAPL_IDX_CLN (1<<RAPL_IDX_PP0_NRG_STAT|\
Stephane Eranianf228c5b2014-01-08 11:15:53 +010088 1<<RAPL_IDX_PKG_NRG_STAT|\
89 1<<RAPL_IDX_PP1_NRG_STAT)
Stephane Eranian4788e5b2013-11-12 17:58:50 +010090
91/* Servers have PP0, PKG, RAM */
92#define RAPL_IDX_SRV (1<<RAPL_IDX_PP0_NRG_STAT|\
93 1<<RAPL_IDX_PKG_NRG_STAT|\
94 1<<RAPL_IDX_RAM_NRG_STAT)
95
Vince Weavere69af462014-04-02 00:49:55 -040096/* Servers have PP0, PKG, RAM, PP1 */
97#define RAPL_IDX_HSW (1<<RAPL_IDX_PP0_NRG_STAT|\
98 1<<RAPL_IDX_PKG_NRG_STAT|\
99 1<<RAPL_IDX_RAM_NRG_STAT|\
100 1<<RAPL_IDX_PP1_NRG_STAT)
101
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -0700102/* SKL clients have PP0, PKG, RAM, PP1, PSYS */
103#define RAPL_IDX_SKL_CLN (1<<RAPL_IDX_PP0_NRG_STAT|\
104 1<<RAPL_IDX_PKG_NRG_STAT|\
105 1<<RAPL_IDX_RAM_NRG_STAT|\
106 1<<RAPL_IDX_PP1_NRG_STAT|\
107 1<<RAPL_IDX_PSYS_NRG_STAT)
108
Dasaratharaman Chandramouli3a2a7792015-05-26 11:47:39 -0700109/* Knights Landing has PKG, RAM */
110#define RAPL_IDX_KNL (1<<RAPL_IDX_PKG_NRG_STAT|\
111 1<<RAPL_IDX_RAM_NRG_STAT)
112
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100113/*
114 * event code: LSB 8 bits, passed in attr->config
115 * any other bit is reserved
116 */
117#define RAPL_EVENT_MASK 0xFFULL
118
119#define DEFINE_RAPL_FORMAT_ATTR(_var, _name, _format) \
120static ssize_t __rapl_##_var##_show(struct kobject *kobj, \
121 struct kobj_attribute *attr, \
122 char *page) \
123{ \
124 BUILD_BUG_ON(sizeof(_format) >= PAGE_SIZE); \
125 return sprintf(page, _format "\n"); \
126} \
127static struct kobj_attribute format_attr_##_var = \
128 __ATTR(_name, 0444, __rapl_##_var##_show, NULL)
129
Thomas Gleixner7162b8f2016-02-22 22:19:24 +0000130#define RAPL_CNTR_WIDTH 32
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100131
Huang Ruid3bcd642015-12-04 18:07:41 +0800132#define RAPL_EVENT_ATTR_STR(_name, v, str) \
133static struct perf_pmu_events_attr event_attr_##v = { \
134 .attr = __ATTR(_name, 0444, perf_event_sysfs_show, NULL), \
135 .id = 0, \
136 .event_str = str, \
Stephane Eranian433678b2015-01-13 23:59:53 +0100137};
138
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100139struct rapl_pmu {
Thomas Gleixnera2087492016-02-22 22:19:25 +0000140 raw_spinlock_t lock;
Thomas Gleixner7162b8f2016-02-22 22:19:24 +0000141 int n_active;
Thomas Gleixner8a6d2f82016-02-22 22:19:25 +0000142 int cpu;
Thomas Gleixner7162b8f2016-02-22 22:19:24 +0000143 struct list_head active_list;
144 struct pmu *pmu;
145 ktime_t timer_interval;
146 struct hrtimer hrtimer;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100147};
148
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000149struct rapl_pmus {
150 struct pmu pmu;
151 unsigned int maxpkg;
152 struct rapl_pmu *pmus[];
153};
154
Thomas Gleixner7162b8f2016-02-22 22:19:24 +0000155 /* 1/2^hw_unit Joule */
156static int rapl_hw_unit[NR_RAPL_DOMAINS] __read_mostly;
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000157static struct rapl_pmus *rapl_pmus;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100158static cpumask_t rapl_cpu_mask;
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000159static unsigned int rapl_cntr_mask;
Thomas Gleixner75c70032016-02-22 22:19:22 +0000160static u64 rapl_timer_ms;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100161
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000162static inline struct rapl_pmu *cpu_to_rapl_pmu(unsigned int cpu)
163{
164 return rapl_pmus->pmus[topology_logical_package_id(cpu)];
165}
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100166
167static inline u64 rapl_read_counter(struct perf_event *event)
168{
169 u64 raw;
170 rdmsrl(event->hw.event_base, raw);
171 return raw;
172}
173
Jacob Pan64552392015-03-26 14:28:45 -0700174static inline u64 rapl_scale(u64 v, int cfg)
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100175{
Jacob Pan64552392015-03-26 14:28:45 -0700176 if (cfg > NR_RAPL_DOMAINS) {
Thomas Gleixner512089d2016-02-22 22:19:23 +0000177 pr_warn("Invalid domain %d, failed to scale data\n", cfg);
Jacob Pan64552392015-03-26 14:28:45 -0700178 return v;
179 }
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100180 /*
181 * scale delta to smallest unit (1/2^32)
182 * users must then scale back: count * 1/(1e9*2^32) to get Joules
183 * or use ldexp(count, -32).
184 * Watts = Joules/Time delta
185 */
Jacob Pan64552392015-03-26 14:28:45 -0700186 return v << (32 - rapl_hw_unit[cfg - 1]);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100187}
188
189static u64 rapl_event_update(struct perf_event *event)
190{
191 struct hw_perf_event *hwc = &event->hw;
192 u64 prev_raw_count, new_raw_count;
193 s64 delta, sdelta;
194 int shift = RAPL_CNTR_WIDTH;
195
196again:
197 prev_raw_count = local64_read(&hwc->prev_count);
198 rdmsrl(event->hw.event_base, new_raw_count);
199
200 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
201 new_raw_count) != prev_raw_count) {
202 cpu_relax();
203 goto again;
204 }
205
206 /*
207 * Now we have the new raw value and have updated the prev
208 * timestamp already. We can now calculate the elapsed delta
209 * (event-)time and add that to the generic event.
210 *
211 * Careful, not all hw sign-extends above the physical width
212 * of the count.
213 */
214 delta = (new_raw_count << shift) - (prev_raw_count << shift);
215 delta >>= shift;
216
Jacob Pan64552392015-03-26 14:28:45 -0700217 sdelta = rapl_scale(delta, event->hw.config);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100218
219 local64_add(sdelta, &event->count);
220
221 return new_raw_count;
222}
223
Stephane Eranian65661f92013-11-12 17:58:51 +0100224static void rapl_start_hrtimer(struct rapl_pmu *pmu)
225{
Thomas Gleixner514c2302015-04-14 21:09:00 +0000226 hrtimer_start(&pmu->hrtimer, pmu->timer_interval,
227 HRTIMER_MODE_REL_PINNED);
Stephane Eranian65661f92013-11-12 17:58:51 +0100228}
229
Stephane Eranian65661f92013-11-12 17:58:51 +0100230static enum hrtimer_restart rapl_hrtimer_handle(struct hrtimer *hrtimer)
231{
Thomas Gleixner8a6d2f82016-02-22 22:19:25 +0000232 struct rapl_pmu *pmu = container_of(hrtimer, struct rapl_pmu, hrtimer);
Stephane Eranian65661f92013-11-12 17:58:51 +0100233 struct perf_event *event;
234 unsigned long flags;
235
236 if (!pmu->n_active)
237 return HRTIMER_NORESTART;
238
Thomas Gleixnera2087492016-02-22 22:19:25 +0000239 raw_spin_lock_irqsave(&pmu->lock, flags);
Stephane Eranian65661f92013-11-12 17:58:51 +0100240
Thomas Gleixner7162b8f2016-02-22 22:19:24 +0000241 list_for_each_entry(event, &pmu->active_list, active_entry)
Stephane Eranian65661f92013-11-12 17:58:51 +0100242 rapl_event_update(event);
Stephane Eranian65661f92013-11-12 17:58:51 +0100243
Thomas Gleixnera2087492016-02-22 22:19:25 +0000244 raw_spin_unlock_irqrestore(&pmu->lock, flags);
Stephane Eranian65661f92013-11-12 17:58:51 +0100245
246 hrtimer_forward_now(hrtimer, pmu->timer_interval);
247
248 return HRTIMER_RESTART;
249}
250
251static void rapl_hrtimer_init(struct rapl_pmu *pmu)
252{
253 struct hrtimer *hr = &pmu->hrtimer;
254
255 hrtimer_init(hr, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
256 hr->function = rapl_hrtimer_handle;
257}
258
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100259static void __rapl_pmu_event_start(struct rapl_pmu *pmu,
260 struct perf_event *event)
261{
262 if (WARN_ON_ONCE(!(event->hw.state & PERF_HES_STOPPED)))
263 return;
264
265 event->hw.state = 0;
266
267 list_add_tail(&event->active_entry, &pmu->active_list);
268
269 local64_set(&event->hw.prev_count, rapl_read_counter(event));
270
271 pmu->n_active++;
Stephane Eranian65661f92013-11-12 17:58:51 +0100272 if (pmu->n_active == 1)
273 rapl_start_hrtimer(pmu);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100274}
275
276static void rapl_pmu_event_start(struct perf_event *event, int mode)
277{
Thomas Gleixner8a6d2f82016-02-22 22:19:25 +0000278 struct rapl_pmu *pmu = event->pmu_private;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100279 unsigned long flags;
280
Thomas Gleixnera2087492016-02-22 22:19:25 +0000281 raw_spin_lock_irqsave(&pmu->lock, flags);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100282 __rapl_pmu_event_start(pmu, event);
Thomas Gleixnera2087492016-02-22 22:19:25 +0000283 raw_spin_unlock_irqrestore(&pmu->lock, flags);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100284}
285
286static void rapl_pmu_event_stop(struct perf_event *event, int mode)
287{
Thomas Gleixner8a6d2f82016-02-22 22:19:25 +0000288 struct rapl_pmu *pmu = event->pmu_private;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100289 struct hw_perf_event *hwc = &event->hw;
290 unsigned long flags;
291
Thomas Gleixnera2087492016-02-22 22:19:25 +0000292 raw_spin_lock_irqsave(&pmu->lock, flags);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100293
294 /* mark event as deactivated and stopped */
295 if (!(hwc->state & PERF_HES_STOPPED)) {
296 WARN_ON_ONCE(pmu->n_active <= 0);
297 pmu->n_active--;
Stephane Eranian65661f92013-11-12 17:58:51 +0100298 if (pmu->n_active == 0)
Thomas Gleixner7162b8f2016-02-22 22:19:24 +0000299 hrtimer_cancel(&pmu->hrtimer);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100300
301 list_del(&event->active_entry);
302
303 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
304 hwc->state |= PERF_HES_STOPPED;
305 }
306
307 /* check if update of sw counter is necessary */
308 if ((mode & PERF_EF_UPDATE) && !(hwc->state & PERF_HES_UPTODATE)) {
309 /*
310 * Drain the remaining delta count out of a event
311 * that we are disabling:
312 */
313 rapl_event_update(event);
314 hwc->state |= PERF_HES_UPTODATE;
315 }
316
Thomas Gleixnera2087492016-02-22 22:19:25 +0000317 raw_spin_unlock_irqrestore(&pmu->lock, flags);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100318}
319
320static int rapl_pmu_event_add(struct perf_event *event, int mode)
321{
Thomas Gleixner8a6d2f82016-02-22 22:19:25 +0000322 struct rapl_pmu *pmu = event->pmu_private;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100323 struct hw_perf_event *hwc = &event->hw;
324 unsigned long flags;
325
Thomas Gleixnera2087492016-02-22 22:19:25 +0000326 raw_spin_lock_irqsave(&pmu->lock, flags);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100327
328 hwc->state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
329
330 if (mode & PERF_EF_START)
331 __rapl_pmu_event_start(pmu, event);
332
Thomas Gleixnera2087492016-02-22 22:19:25 +0000333 raw_spin_unlock_irqrestore(&pmu->lock, flags);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100334
335 return 0;
336}
337
338static void rapl_pmu_event_del(struct perf_event *event, int flags)
339{
340 rapl_pmu_event_stop(event, PERF_EF_UPDATE);
341}
342
343static int rapl_pmu_event_init(struct perf_event *event)
344{
345 u64 cfg = event->attr.config & RAPL_EVENT_MASK;
346 int bit, msr, ret = 0;
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000347 struct rapl_pmu *pmu;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100348
349 /* only look at RAPL events */
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000350 if (event->attr.type != rapl_pmus->pmu.type)
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100351 return -ENOENT;
352
353 /* check only supported bits are set */
354 if (event->attr.config & ~RAPL_EVENT_MASK)
355 return -EINVAL;
356
Thomas Gleixner8a6d2f82016-02-22 22:19:25 +0000357 if (event->cpu < 0)
358 return -EINVAL;
359
David Carrillo-Cisnerose64cd6f2016-08-17 13:55:07 -0700360 event->event_caps |= PERF_EV_CAP_READ_ACTIVE_PKG;
361
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100362 /*
363 * check event is known (determines counter)
364 */
365 switch (cfg) {
366 case INTEL_RAPL_PP0:
367 bit = RAPL_IDX_PP0_NRG_STAT;
368 msr = MSR_PP0_ENERGY_STATUS;
369 break;
370 case INTEL_RAPL_PKG:
371 bit = RAPL_IDX_PKG_NRG_STAT;
372 msr = MSR_PKG_ENERGY_STATUS;
373 break;
374 case INTEL_RAPL_RAM:
375 bit = RAPL_IDX_RAM_NRG_STAT;
376 msr = MSR_DRAM_ENERGY_STATUS;
377 break;
Stephane Eranianf228c5b2014-01-08 11:15:53 +0100378 case INTEL_RAPL_PP1:
379 bit = RAPL_IDX_PP1_NRG_STAT;
380 msr = MSR_PP1_ENERGY_STATUS;
381 break;
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -0700382 case INTEL_RAPL_PSYS:
383 bit = RAPL_IDX_PSYS_NRG_STAT;
384 msr = MSR_PLATFORM_ENERGY_STATUS;
385 break;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100386 default:
387 return -EINVAL;
388 }
389 /* check event supported */
390 if (!(rapl_cntr_mask & (1 << bit)))
391 return -EINVAL;
392
393 /* unsupported modes and filters */
394 if (event->attr.exclude_user ||
395 event->attr.exclude_kernel ||
396 event->attr.exclude_hv ||
397 event->attr.exclude_idle ||
398 event->attr.exclude_host ||
399 event->attr.exclude_guest ||
400 event->attr.sample_period) /* no sampling */
401 return -EINVAL;
402
403 /* must be done before validate_group */
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000404 pmu = cpu_to_rapl_pmu(event->cpu);
Thomas Gleixner8a6d2f82016-02-22 22:19:25 +0000405 event->cpu = pmu->cpu;
406 event->pmu_private = pmu;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100407 event->hw.event_base = msr;
408 event->hw.config = cfg;
409 event->hw.idx = bit;
410
411 return ret;
412}
413
414static void rapl_pmu_event_read(struct perf_event *event)
415{
416 rapl_event_update(event);
417}
418
419static ssize_t rapl_get_attr_cpumask(struct device *dev,
420 struct device_attribute *attr, char *buf)
421{
Sudeep Holla5aaba362014-09-30 14:48:22 +0100422 return cpumap_print_to_pagebuf(true, buf, &rapl_cpu_mask);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100423}
424
425static DEVICE_ATTR(cpumask, S_IRUGO, rapl_get_attr_cpumask, NULL);
426
427static struct attribute *rapl_pmu_attrs[] = {
428 &dev_attr_cpumask.attr,
429 NULL,
430};
431
432static struct attribute_group rapl_pmu_attr_group = {
433 .attrs = rapl_pmu_attrs,
434};
435
Stephane Eranian433678b2015-01-13 23:59:53 +0100436RAPL_EVENT_ATTR_STR(energy-cores, rapl_cores, "event=0x01");
437RAPL_EVENT_ATTR_STR(energy-pkg , rapl_pkg, "event=0x02");
438RAPL_EVENT_ATTR_STR(energy-ram , rapl_ram, "event=0x03");
439RAPL_EVENT_ATTR_STR(energy-gpu , rapl_gpu, "event=0x04");
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -0700440RAPL_EVENT_ATTR_STR(energy-psys, rapl_psys, "event=0x05");
Stephane Eranian433678b2015-01-13 23:59:53 +0100441
442RAPL_EVENT_ATTR_STR(energy-cores.unit, rapl_cores_unit, "Joules");
443RAPL_EVENT_ATTR_STR(energy-pkg.unit , rapl_pkg_unit, "Joules");
444RAPL_EVENT_ATTR_STR(energy-ram.unit , rapl_ram_unit, "Joules");
445RAPL_EVENT_ATTR_STR(energy-gpu.unit , rapl_gpu_unit, "Joules");
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -0700446RAPL_EVENT_ATTR_STR(energy-psys.unit, rapl_psys_unit, "Joules");
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100447
448/*
449 * we compute in 0.23 nJ increments regardless of MSR
450 */
Stephane Eranian433678b2015-01-13 23:59:53 +0100451RAPL_EVENT_ATTR_STR(energy-cores.scale, rapl_cores_scale, "2.3283064365386962890625e-10");
452RAPL_EVENT_ATTR_STR(energy-pkg.scale, rapl_pkg_scale, "2.3283064365386962890625e-10");
453RAPL_EVENT_ATTR_STR(energy-ram.scale, rapl_ram_scale, "2.3283064365386962890625e-10");
454RAPL_EVENT_ATTR_STR(energy-gpu.scale, rapl_gpu_scale, "2.3283064365386962890625e-10");
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -0700455RAPL_EVENT_ATTR_STR(energy-psys.scale, rapl_psys_scale, "2.3283064365386962890625e-10");
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100456
457static struct attribute *rapl_events_srv_attr[] = {
458 EVENT_PTR(rapl_cores),
459 EVENT_PTR(rapl_pkg),
460 EVENT_PTR(rapl_ram),
461
462 EVENT_PTR(rapl_cores_unit),
463 EVENT_PTR(rapl_pkg_unit),
464 EVENT_PTR(rapl_ram_unit),
465
466 EVENT_PTR(rapl_cores_scale),
467 EVENT_PTR(rapl_pkg_scale),
468 EVENT_PTR(rapl_ram_scale),
469 NULL,
470};
471
472static struct attribute *rapl_events_cln_attr[] = {
473 EVENT_PTR(rapl_cores),
474 EVENT_PTR(rapl_pkg),
Stephane Eranianf228c5b2014-01-08 11:15:53 +0100475 EVENT_PTR(rapl_gpu),
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100476
477 EVENT_PTR(rapl_cores_unit),
478 EVENT_PTR(rapl_pkg_unit),
Stephane Eranianf228c5b2014-01-08 11:15:53 +0100479 EVENT_PTR(rapl_gpu_unit),
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100480
481 EVENT_PTR(rapl_cores_scale),
482 EVENT_PTR(rapl_pkg_scale),
Stephane Eranianf228c5b2014-01-08 11:15:53 +0100483 EVENT_PTR(rapl_gpu_scale),
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100484 NULL,
485};
486
Vince Weavere69af462014-04-02 00:49:55 -0400487static struct attribute *rapl_events_hsw_attr[] = {
488 EVENT_PTR(rapl_cores),
489 EVENT_PTR(rapl_pkg),
490 EVENT_PTR(rapl_gpu),
491 EVENT_PTR(rapl_ram),
492
493 EVENT_PTR(rapl_cores_unit),
494 EVENT_PTR(rapl_pkg_unit),
495 EVENT_PTR(rapl_gpu_unit),
496 EVENT_PTR(rapl_ram_unit),
497
498 EVENT_PTR(rapl_cores_scale),
499 EVENT_PTR(rapl_pkg_scale),
500 EVENT_PTR(rapl_gpu_scale),
501 EVENT_PTR(rapl_ram_scale),
502 NULL,
503};
504
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -0700505static struct attribute *rapl_events_skl_attr[] = {
506 EVENT_PTR(rapl_cores),
507 EVENT_PTR(rapl_pkg),
508 EVENT_PTR(rapl_gpu),
509 EVENT_PTR(rapl_ram),
510 EVENT_PTR(rapl_psys),
511
512 EVENT_PTR(rapl_cores_unit),
513 EVENT_PTR(rapl_pkg_unit),
514 EVENT_PTR(rapl_gpu_unit),
515 EVENT_PTR(rapl_ram_unit),
516 EVENT_PTR(rapl_psys_unit),
517
518 EVENT_PTR(rapl_cores_scale),
519 EVENT_PTR(rapl_pkg_scale),
520 EVENT_PTR(rapl_gpu_scale),
521 EVENT_PTR(rapl_ram_scale),
522 EVENT_PTR(rapl_psys_scale),
523 NULL,
524};
525
Dasaratharaman Chandramouli3a2a7792015-05-26 11:47:39 -0700526static struct attribute *rapl_events_knl_attr[] = {
527 EVENT_PTR(rapl_pkg),
528 EVENT_PTR(rapl_ram),
529
530 EVENT_PTR(rapl_pkg_unit),
531 EVENT_PTR(rapl_ram_unit),
532
533 EVENT_PTR(rapl_pkg_scale),
534 EVENT_PTR(rapl_ram_scale),
535 NULL,
536};
537
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100538static struct attribute_group rapl_pmu_events_group = {
539 .name = "events",
540 .attrs = NULL, /* patched at runtime */
541};
542
543DEFINE_RAPL_FORMAT_ATTR(event, event, "config:0-7");
544static struct attribute *rapl_formats_attr[] = {
545 &format_attr_event.attr,
546 NULL,
547};
548
549static struct attribute_group rapl_pmu_format_group = {
550 .name = "format",
551 .attrs = rapl_formats_attr,
552};
553
554const struct attribute_group *rapl_attr_groups[] = {
555 &rapl_pmu_attr_group,
556 &rapl_pmu_format_group,
557 &rapl_pmu_events_group,
558 NULL,
559};
560
Richard Cochran8b5b7732016-07-13 17:16:15 +0000561static int rapl_cpu_offline(unsigned int cpu)
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100562{
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000563 struct rapl_pmu *pmu = cpu_to_rapl_pmu(cpu);
564 int target;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100565
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000566 /* Check if exiting cpu is used for collecting rapl events */
567 if (!cpumask_test_and_clear_cpu(cpu, &rapl_cpu_mask))
Richard Cochran8b5b7732016-07-13 17:16:15 +0000568 return 0;
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000569
570 pmu->cpu = -1;
571 /* Find a new cpu to collect rapl events */
572 target = cpumask_any_but(topology_core_cpumask(cpu), cpu);
573
574 /* Migrate rapl events to the new target */
575 if (target < nr_cpu_ids) {
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100576 cpumask_set_cpu(target, &rapl_cpu_mask);
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000577 pmu->cpu = target;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100578 perf_pmu_migrate_context(pmu->pmu, cpu, target);
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000579 }
Richard Cochran8b5b7732016-07-13 17:16:15 +0000580 return 0;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100581}
582
Richard Cochran8b5b7732016-07-13 17:16:15 +0000583static int rapl_cpu_online(unsigned int cpu)
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100584{
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000585 struct rapl_pmu *pmu = cpu_to_rapl_pmu(cpu);
586 int target;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100587
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000588 /*
589 * Check if there is an online cpu in the package which collects rapl
590 * events already.
591 */
592 target = cpumask_any_and(&rapl_cpu_mask, topology_core_cpumask(cpu));
593 if (target < nr_cpu_ids)
Richard Cochran8b5b7732016-07-13 17:16:15 +0000594 return 0;
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000595
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100596 cpumask_set_cpu(cpu, &rapl_cpu_mask);
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000597 pmu->cpu = cpu;
Richard Cochran8b5b7732016-07-13 17:16:15 +0000598 return 0;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100599}
600
Richard Cochran8b5b7732016-07-13 17:16:15 +0000601static int rapl_cpu_prepare(unsigned int cpu)
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100602{
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000603 struct rapl_pmu *pmu = cpu_to_rapl_pmu(cpu);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100604
605 if (pmu)
606 return 0;
607
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100608 pmu = kzalloc_node(sizeof(*pmu), GFP_KERNEL, cpu_to_node(cpu));
609 if (!pmu)
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000610 return -ENOMEM;
611
Thomas Gleixnera2087492016-02-22 22:19:25 +0000612 raw_spin_lock_init(&pmu->lock);
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100613 INIT_LIST_HEAD(&pmu->active_list);
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000614 pmu->pmu = &rapl_pmus->pmu;
Thomas Gleixner75c70032016-02-22 22:19:22 +0000615 pmu->timer_interval = ms_to_ktime(rapl_timer_ms);
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000616 pmu->cpu = -1;
Stephane Eranian65661f92013-11-12 17:58:51 +0100617 rapl_hrtimer_init(pmu);
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000618 rapl_pmus->pmus[topology_logical_package_id(cpu)] = pmu;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100619 return 0;
620}
621
Borislav Petkov7a869802016-03-08 17:40:41 +0100622static int rapl_check_hw_unit(bool apply_quirk)
Jacob Pan64552392015-03-26 14:28:45 -0700623{
624 u64 msr_rapl_power_unit_bits;
625 int i;
626
627 /* protect rdmsrl() to handle virtualization */
628 if (rdmsrl_safe(MSR_RAPL_POWER_UNIT, &msr_rapl_power_unit_bits))
629 return -1;
630 for (i = 0; i < NR_RAPL_DOMAINS; i++)
631 rapl_hw_unit[i] = (msr_rapl_power_unit_bits >> 8) & 0x1FULL;
632
Borislav Petkov7a869802016-03-08 17:40:41 +0100633 /*
634 * DRAM domain on HSW server and KNL has fixed energy unit which can be
635 * different than the unit from power unit MSR. See
636 * "Intel Xeon Processor E5-1600 and E5-2600 v3 Product Families, V2
637 * of 2. Datasheet, September 2014, Reference Number: 330784-001 "
638 */
639 if (apply_quirk)
640 rapl_hw_unit[RAPL_IDX_RAM_NRG_STAT] = 16;
Thomas Gleixner75c70032016-02-22 22:19:22 +0000641
642 /*
643 * Calculate the timer rate:
644 * Use reference of 200W for scaling the timeout to avoid counter
645 * overflows. 200W = 200 Joules/sec
646 * Divide interval by 2 to avoid lockstep (2 * 100)
647 * if hw unit is 32, then we use 2 ms 1/200/2
648 */
649 rapl_timer_ms = 2;
650 if (rapl_hw_unit[0] < 32) {
651 rapl_timer_ms = (1000 / (2 * 100));
652 rapl_timer_ms *= (1ULL << (32 - rapl_hw_unit[0] - 1));
653 }
Jacob Pan64552392015-03-26 14:28:45 -0700654 return 0;
655}
656
Thomas Gleixner512089d2016-02-22 22:19:23 +0000657static void __init rapl_advertise(void)
658{
659 int i;
660
661 pr_info("API unit is 2^-32 Joules, %d fixed counters, %llu ms ovfl timer\n",
662 hweight32(rapl_cntr_mask), rapl_timer_ms);
663
664 for (i = 0; i < NR_RAPL_DOMAINS; i++) {
665 if (rapl_cntr_mask & (1 << i)) {
666 pr_info("hw unit of domain %s 2^-%d Joules\n",
667 rapl_domain_names[i], rapl_hw_unit[i]);
668 }
669 }
670}
671
Kan Liang4b6e2572016-03-19 00:20:50 -0700672static void cleanup_rapl_pmus(void)
Thomas Gleixner55f28902016-02-22 22:19:21 +0000673{
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000674 int i;
Thomas Gleixner55f28902016-02-22 22:19:21 +0000675
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000676 for (i = 0; i < rapl_pmus->maxpkg; i++)
Vincent Stehlé275ae412016-05-24 16:53:49 +0200677 kfree(rapl_pmus->pmus[i]);
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000678 kfree(rapl_pmus);
679}
680
681static int __init init_rapl_pmus(void)
682{
683 int maxpkg = topology_max_packages();
684 size_t size;
685
686 size = sizeof(*rapl_pmus) + maxpkg * sizeof(struct rapl_pmu *);
687 rapl_pmus = kzalloc(size, GFP_KERNEL);
688 if (!rapl_pmus)
689 return -ENOMEM;
690
691 rapl_pmus->maxpkg = maxpkg;
692 rapl_pmus->pmu.attr_groups = rapl_attr_groups;
693 rapl_pmus->pmu.task_ctx_nr = perf_invalid_context;
694 rapl_pmus->pmu.event_init = rapl_pmu_event_init;
695 rapl_pmus->pmu.add = rapl_pmu_event_add;
696 rapl_pmus->pmu.del = rapl_pmu_event_del;
697 rapl_pmus->pmu.start = rapl_pmu_event_start;
698 rapl_pmus->pmu.stop = rapl_pmu_event_stop;
699 rapl_pmus->pmu.read = rapl_pmu_event_read;
700 return 0;
Thomas Gleixner55f28902016-02-22 22:19:21 +0000701}
702
Kan Liang4b6e2572016-03-19 00:20:50 -0700703#define X86_RAPL_MODEL_MATCH(model, init) \
704 { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)&init }
705
706struct intel_rapl_init_fun {
707 bool apply_quirk;
708 int cntr_mask;
709 struct attribute **attrs;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100710};
711
Kan Liang4b6e2572016-03-19 00:20:50 -0700712static const struct intel_rapl_init_fun snb_rapl_init __initconst = {
713 .apply_quirk = false,
714 .cntr_mask = RAPL_IDX_CLN,
715 .attrs = rapl_events_cln_attr,
716};
717
718static const struct intel_rapl_init_fun hsx_rapl_init __initconst = {
719 .apply_quirk = true,
720 .cntr_mask = RAPL_IDX_SRV,
721 .attrs = rapl_events_srv_attr,
722};
723
724static const struct intel_rapl_init_fun hsw_rapl_init __initconst = {
725 .apply_quirk = false,
726 .cntr_mask = RAPL_IDX_HSW,
727 .attrs = rapl_events_hsw_attr,
728};
729
730static const struct intel_rapl_init_fun snbep_rapl_init __initconst = {
731 .apply_quirk = false,
732 .cntr_mask = RAPL_IDX_SRV,
733 .attrs = rapl_events_srv_attr,
734};
735
736static const struct intel_rapl_init_fun knl_rapl_init __initconst = {
737 .apply_quirk = true,
738 .cntr_mask = RAPL_IDX_KNL,
739 .attrs = rapl_events_knl_attr,
740};
741
Srinivas Pandruvadadcee75b2016-04-17 15:03:00 -0700742static const struct intel_rapl_init_fun skl_rapl_init __initconst = {
743 .apply_quirk = false,
744 .cntr_mask = RAPL_IDX_SKL_CLN,
745 .attrs = rapl_events_skl_attr,
746};
747
Kan Liang4b6e2572016-03-19 00:20:50 -0700748static const struct x86_cpu_id rapl_cpu_match[] __initconst = {
Dave Hansen7f2236d2016-06-02 17:19:30 -0700749 X86_RAPL_MODEL_MATCH(INTEL_FAM6_SANDYBRIDGE, snb_rapl_init),
750 X86_RAPL_MODEL_MATCH(INTEL_FAM6_SANDYBRIDGE_X, snbep_rapl_init),
Peter Zijlstrac416e5a2016-04-21 15:14:17 +0200751
Dave Hansen7f2236d2016-06-02 17:19:30 -0700752 X86_RAPL_MODEL_MATCH(INTEL_FAM6_IVYBRIDGE, snb_rapl_init),
753 X86_RAPL_MODEL_MATCH(INTEL_FAM6_IVYBRIDGE_X, snbep_rapl_init),
Peter Zijlstrac416e5a2016-04-21 15:14:17 +0200754
Dave Hansen7f2236d2016-06-02 17:19:30 -0700755 X86_RAPL_MODEL_MATCH(INTEL_FAM6_HASWELL_CORE, hsw_rapl_init),
756 X86_RAPL_MODEL_MATCH(INTEL_FAM6_HASWELL_X, hsw_rapl_init),
757 X86_RAPL_MODEL_MATCH(INTEL_FAM6_HASWELL_ULT, hsw_rapl_init),
758 X86_RAPL_MODEL_MATCH(INTEL_FAM6_HASWELL_GT3E, hsw_rapl_init),
Peter Zijlstrac416e5a2016-04-21 15:14:17 +0200759
Dave Hansen7f2236d2016-06-02 17:19:30 -0700760 X86_RAPL_MODEL_MATCH(INTEL_FAM6_BROADWELL_CORE, hsw_rapl_init),
761 X86_RAPL_MODEL_MATCH(INTEL_FAM6_BROADWELL_GT3E, hsw_rapl_init),
Vince Weaverf99985c2017-05-02 14:08:50 -0400762 X86_RAPL_MODEL_MATCH(INTEL_FAM6_BROADWELL_X, hsx_rapl_init),
Dave Hansen7f2236d2016-06-02 17:19:30 -0700763 X86_RAPL_MODEL_MATCH(INTEL_FAM6_BROADWELL_XEON_D, hsw_rapl_init),
Peter Zijlstrac416e5a2016-04-21 15:14:17 +0200764
Dave Hansen7f2236d2016-06-02 17:19:30 -0700765 X86_RAPL_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNL, knl_rapl_init),
Piotr Luc36c4b6c2016-10-12 20:27:25 +0200766 X86_RAPL_MODEL_MATCH(INTEL_FAM6_XEON_PHI_KNM, knl_rapl_init),
Peter Zijlstrac416e5a2016-04-21 15:14:17 +0200767
Dave Hansen7f2236d2016-06-02 17:19:30 -0700768 X86_RAPL_MODEL_MATCH(INTEL_FAM6_SKYLAKE_MOBILE, skl_rapl_init),
769 X86_RAPL_MODEL_MATCH(INTEL_FAM6_SKYLAKE_DESKTOP, skl_rapl_init),
Jacob Pan348c5ac2016-06-02 17:19:53 -0700770 X86_RAPL_MODEL_MATCH(INTEL_FAM6_SKYLAKE_X, hsx_rapl_init),
Harry Pan2668c612016-09-08 17:08:57 +0800771
772 X86_RAPL_MODEL_MATCH(INTEL_FAM6_ATOM_GOLDMONT, hsw_rapl_init),
Kan Liang4b6e2572016-03-19 00:20:50 -0700773 {},
774};
775
776MODULE_DEVICE_TABLE(x86cpu, rapl_cpu_match);
777
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100778static int __init rapl_pmu_init(void)
779{
Kan Liang4b6e2572016-03-19 00:20:50 -0700780 const struct x86_cpu_id *id;
781 struct intel_rapl_init_fun *rapl_init;
782 bool apply_quirk;
Thomas Gleixner7162b8f2016-02-22 22:19:24 +0000783 int ret;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100784
Kan Liang4b6e2572016-03-19 00:20:50 -0700785 id = x86_match_cpu(rapl_cpu_match);
786 if (!id)
Thomas Gleixner55f28902016-02-22 22:19:21 +0000787 return -ENODEV;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100788
Kan Liang4b6e2572016-03-19 00:20:50 -0700789 rapl_init = (struct intel_rapl_init_fun *)id->driver_data;
790 apply_quirk = rapl_init->apply_quirk;
791 rapl_cntr_mask = rapl_init->cntr_mask;
792 rapl_pmu_events_group.attrs = rapl_init->attrs;
Thomas Gleixner55f28902016-02-22 22:19:21 +0000793
Borislav Petkov7a869802016-03-08 17:40:41 +0100794 ret = rapl_check_hw_unit(apply_quirk);
Jacob Pan64552392015-03-26 14:28:45 -0700795 if (ret)
796 return ret;
Srivatsa S. Bhatfd537e52014-03-11 02:08:09 +0530797
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000798 ret = init_rapl_pmus();
799 if (ret)
800 return ret;
801
Richard Cochran8b5b7732016-07-13 17:16:15 +0000802 /*
803 * Install callbacks. Core will call them for each online cpu.
804 */
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100805
Richard Cochran8b5b7732016-07-13 17:16:15 +0000806 ret = cpuhp_setup_state(CPUHP_PERF_X86_RAPL_PREP, "PERF_X86_RAPL_PREP",
807 rapl_cpu_prepare, NULL);
Thomas Gleixner7162b8f2016-02-22 22:19:24 +0000808 if (ret)
809 goto out;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100810
Richard Cochran8b5b7732016-07-13 17:16:15 +0000811 ret = cpuhp_setup_state(CPUHP_AP_PERF_X86_RAPL_ONLINE,
812 "AP_PERF_X86_RAPL_ONLINE",
813 rapl_cpu_online, rapl_cpu_offline);
814 if (ret)
815 goto out1;
816
Thomas Gleixner9de8d682016-02-22 22:19:26 +0000817 ret = perf_pmu_register(&rapl_pmus->pmu, "power", -1);
Thomas Gleixner512089d2016-02-22 22:19:23 +0000818 if (ret)
Richard Cochran8b5b7732016-07-13 17:16:15 +0000819 goto out2;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100820
Thomas Gleixner512089d2016-02-22 22:19:23 +0000821 rapl_advertise();
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100822 return 0;
Thomas Gleixner55f28902016-02-22 22:19:21 +0000823
Richard Cochran8b5b7732016-07-13 17:16:15 +0000824out2:
825 cpuhp_remove_state(CPUHP_AP_PERF_X86_RAPL_ONLINE);
826out1:
827 cpuhp_remove_state(CPUHP_PERF_X86_RAPL_PREP);
Thomas Gleixner55f28902016-02-22 22:19:21 +0000828out:
Thomas Gleixner512089d2016-02-22 22:19:23 +0000829 pr_warn("Initialization failed (%d), disabled\n", ret);
Thomas Gleixner55f28902016-02-22 22:19:21 +0000830 cleanup_rapl_pmus();
Thomas Gleixner55f28902016-02-22 22:19:21 +0000831 return ret;
Stephane Eranian4788e5b2013-11-12 17:58:50 +0100832}
Kan Liang4b6e2572016-03-19 00:20:50 -0700833module_init(rapl_pmu_init);
834
835static void __exit intel_rapl_exit(void)
836{
Richard Cochran8b5b7732016-07-13 17:16:15 +0000837 cpuhp_remove_state_nocalls(CPUHP_AP_PERF_X86_RAPL_ONLINE);
838 cpuhp_remove_state_nocalls(CPUHP_PERF_X86_RAPL_PREP);
Kan Liang4b6e2572016-03-19 00:20:50 -0700839 perf_pmu_unregister(&rapl_pmus->pmu);
840 cleanup_rapl_pmus();
Kan Liang4b6e2572016-03-19 00:20:50 -0700841}
842module_exit(intel_rapl_exit);