WIP FPC-III support
[linux/fpc-iii.git] / arch / x86 / events / amd / ibs.c
blob40669eac9d6db51f09227cd5e8283e79be42bfd0
1 /*
2 * Performance events - AMD IBS
4 * Copyright (C) 2011 Advanced Micro Devices, Inc., Robert Richter
6 * For licencing details see kernel-base/COPYING
7 */
9 #include <linux/perf_event.h>
10 #include <linux/init.h>
11 #include <linux/export.h>
12 #include <linux/pci.h>
13 #include <linux/ptrace.h>
14 #include <linux/syscore_ops.h>
15 #include <linux/sched/clock.h>
17 #include <asm/apic.h>
19 #include "../perf_event.h"
21 static u32 ibs_caps;
23 #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD)
25 #include <linux/kprobes.h>
26 #include <linux/hardirq.h>
28 #include <asm/nmi.h>
30 #define IBS_FETCH_CONFIG_MASK (IBS_FETCH_RAND_EN | IBS_FETCH_MAX_CNT)
31 #define IBS_OP_CONFIG_MASK IBS_OP_MAX_CNT
35 * IBS states:
37 * ENABLED; tracks the pmu::add(), pmu::del() state, when set the counter is taken
38 * and any further add()s must fail.
40 * STARTED/STOPPING/STOPPED; deal with pmu::start(), pmu::stop() state but are
41 * complicated by the fact that the IBS hardware can send late NMIs (ie. after
42 * we've cleared the EN bit).
44 * In order to consume these late NMIs we have the STOPPED state, any NMI that
45 * happens after we've cleared the EN state will clear this bit and report the
46 * NMI handled (this is fundamentally racy in the face or multiple NMI sources,
47 * someone else can consume our BIT and our NMI will go unhandled).
49 * And since we cannot set/clear this separate bit together with the EN bit,
50 * there are races; if we cleared STARTED early, an NMI could land in
51 * between clearing STARTED and clearing the EN bit (in fact multiple NMIs
52 * could happen if the period is small enough), and consume our STOPPED bit
53 * and trigger streams of unhandled NMIs.
55 * If, however, we clear STARTED late, an NMI can hit between clearing the
56 * EN bit and clearing STARTED, still see STARTED set and process the event.
57 * If this event will have the VALID bit clear, we bail properly, but this
58 * is not a given. With VALID set we can end up calling pmu::stop() again
59 * (the throttle logic) and trigger the WARNs in there.
61 * So what we do is set STOPPING before clearing EN to avoid the pmu::stop()
62 * nesting, and clear STARTED late, so that we have a well defined state over
63 * the clearing of the EN bit.
65 * XXX: we could probably be using !atomic bitops for all this.
68 enum ibs_states {
69 IBS_ENABLED = 0,
70 IBS_STARTED = 1,
71 IBS_STOPPING = 2,
72 IBS_STOPPED = 3,
74 IBS_MAX_STATES,
77 struct cpu_perf_ibs {
78 struct perf_event *event;
79 unsigned long state[BITS_TO_LONGS(IBS_MAX_STATES)];
82 struct perf_ibs {
83 struct pmu pmu;
84 unsigned int msr;
85 u64 config_mask;
86 u64 cnt_mask;
87 u64 enable_mask;
88 u64 valid_mask;
89 u64 max_period;
90 unsigned long offset_mask[1];
91 int offset_max;
92 unsigned int fetch_count_reset_broken : 1;
93 struct cpu_perf_ibs __percpu *pcpu;
95 struct attribute **format_attrs;
96 struct attribute_group format_group;
97 const struct attribute_group *attr_groups[2];
99 u64 (*get_count)(u64 config);
102 struct perf_ibs_data {
103 u32 size;
104 union {
105 u32 data[0]; /* data buffer starts here */
106 u32 caps;
108 u64 regs[MSR_AMD64_IBS_REG_COUNT_MAX];
111 static int
112 perf_event_set_period(struct hw_perf_event *hwc, u64 min, u64 max, u64 *hw_period)
114 s64 left = local64_read(&hwc->period_left);
115 s64 period = hwc->sample_period;
116 int overflow = 0;
119 * If we are way outside a reasonable range then just skip forward:
121 if (unlikely(left <= -period)) {
122 left = period;
123 local64_set(&hwc->period_left, left);
124 hwc->last_period = period;
125 overflow = 1;
128 if (unlikely(left < (s64)min)) {
129 left += period;
130 local64_set(&hwc->period_left, left);
131 hwc->last_period = period;
132 overflow = 1;
136 * If the hw period that triggers the sw overflow is too short
137 * we might hit the irq handler. This biases the results.
138 * Thus we shorten the next-to-last period and set the last
139 * period to the max period.
141 if (left > max) {
142 left -= max;
143 if (left > max)
144 left = max;
145 else if (left < min)
146 left = min;
149 *hw_period = (u64)left;
151 return overflow;
154 static int
155 perf_event_try_update(struct perf_event *event, u64 new_raw_count, int width)
157 struct hw_perf_event *hwc = &event->hw;
158 int shift = 64 - width;
159 u64 prev_raw_count;
160 u64 delta;
163 * Careful: an NMI might modify the previous event value.
165 * Our tactic to handle this is to first atomically read and
166 * exchange a new raw count - then add that new-prev delta
167 * count to the generic event atomically:
169 prev_raw_count = local64_read(&hwc->prev_count);
170 if (local64_cmpxchg(&hwc->prev_count, prev_raw_count,
171 new_raw_count) != prev_raw_count)
172 return 0;
175 * Now we have the new raw value and have updated the prev
176 * timestamp already. We can now calculate the elapsed delta
177 * (event-)time and add that to the generic event.
179 * Careful, not all hw sign-extends above the physical width
180 * of the count.
182 delta = (new_raw_count << shift) - (prev_raw_count << shift);
183 delta >>= shift;
185 local64_add(delta, &event->count);
186 local64_sub(delta, &hwc->period_left);
188 return 1;
191 static struct perf_ibs perf_ibs_fetch;
192 static struct perf_ibs perf_ibs_op;
194 static struct perf_ibs *get_ibs_pmu(int type)
196 if (perf_ibs_fetch.pmu.type == type)
197 return &perf_ibs_fetch;
198 if (perf_ibs_op.pmu.type == type)
199 return &perf_ibs_op;
200 return NULL;
204 * Use IBS for precise event sampling:
206 * perf record -a -e cpu-cycles:p ... # use ibs op counting cycle count
207 * perf record -a -e r076:p ... # same as -e cpu-cycles:p
208 * perf record -a -e r0C1:p ... # use ibs op counting micro-ops
210 * IbsOpCntCtl (bit 19) of IBS Execution Control Register (IbsOpCtl,
211 * MSRC001_1033) is used to select either cycle or micro-ops counting
212 * mode.
214 * The rip of IBS samples has skid 0. Thus, IBS supports precise
215 * levels 1 and 2 and the PERF_EFLAGS_EXACT is set. In rare cases the
216 * rip is invalid when IBS was not able to record the rip correctly.
217 * We clear PERF_EFLAGS_EXACT and take the rip from pt_regs then.
220 static int perf_ibs_precise_event(struct perf_event *event, u64 *config)
222 switch (event->attr.precise_ip) {
223 case 0:
224 return -ENOENT;
225 case 1:
226 case 2:
227 break;
228 default:
229 return -EOPNOTSUPP;
232 switch (event->attr.type) {
233 case PERF_TYPE_HARDWARE:
234 switch (event->attr.config) {
235 case PERF_COUNT_HW_CPU_CYCLES:
236 *config = 0;
237 return 0;
239 break;
240 case PERF_TYPE_RAW:
241 switch (event->attr.config) {
242 case 0x0076:
243 *config = 0;
244 return 0;
245 case 0x00C1:
246 *config = IBS_OP_CNT_CTL;
247 return 0;
249 break;
250 default:
251 return -ENOENT;
254 return -EOPNOTSUPP;
257 static int perf_ibs_init(struct perf_event *event)
259 struct hw_perf_event *hwc = &event->hw;
260 struct perf_ibs *perf_ibs;
261 u64 max_cnt, config;
262 int ret;
264 perf_ibs = get_ibs_pmu(event->attr.type);
265 if (perf_ibs) {
266 config = event->attr.config;
267 } else {
268 perf_ibs = &perf_ibs_op;
269 ret = perf_ibs_precise_event(event, &config);
270 if (ret)
271 return ret;
274 if (event->pmu != &perf_ibs->pmu)
275 return -ENOENT;
277 if (config & ~perf_ibs->config_mask)
278 return -EINVAL;
280 if (hwc->sample_period) {
281 if (config & perf_ibs->cnt_mask)
282 /* raw max_cnt may not be set */
283 return -EINVAL;
284 if (!event->attr.sample_freq && hwc->sample_period & 0x0f)
286 * lower 4 bits can not be set in ibs max cnt,
287 * but allowing it in case we adjust the
288 * sample period to set a frequency.
290 return -EINVAL;
291 hwc->sample_period &= ~0x0FULL;
292 if (!hwc->sample_period)
293 hwc->sample_period = 0x10;
294 } else {
295 max_cnt = config & perf_ibs->cnt_mask;
296 config &= ~perf_ibs->cnt_mask;
297 event->attr.sample_period = max_cnt << 4;
298 hwc->sample_period = event->attr.sample_period;
301 if (!hwc->sample_period)
302 return -EINVAL;
305 * If we modify hwc->sample_period, we also need to update
306 * hwc->last_period and hwc->period_left.
308 hwc->last_period = hwc->sample_period;
309 local64_set(&hwc->period_left, hwc->sample_period);
311 hwc->config_base = perf_ibs->msr;
312 hwc->config = config;
314 return 0;
317 static int perf_ibs_set_period(struct perf_ibs *perf_ibs,
318 struct hw_perf_event *hwc, u64 *period)
320 int overflow;
322 /* ignore lower 4 bits in min count: */
323 overflow = perf_event_set_period(hwc, 1<<4, perf_ibs->max_period, period);
324 local64_set(&hwc->prev_count, 0);
326 return overflow;
329 static u64 get_ibs_fetch_count(u64 config)
331 return (config & IBS_FETCH_CNT) >> 12;
334 static u64 get_ibs_op_count(u64 config)
336 u64 count = 0;
339 * If the internal 27-bit counter rolled over, the count is MaxCnt
340 * and the lower 7 bits of CurCnt are randomized.
341 * Otherwise CurCnt has the full 27-bit current counter value.
343 if (config & IBS_OP_VAL) {
344 count = (config & IBS_OP_MAX_CNT) << 4;
345 if (ibs_caps & IBS_CAPS_OPCNTEXT)
346 count += config & IBS_OP_MAX_CNT_EXT_MASK;
347 } else if (ibs_caps & IBS_CAPS_RDWROPCNT) {
348 count = (config & IBS_OP_CUR_CNT) >> 32;
351 return count;
354 static void
355 perf_ibs_event_update(struct perf_ibs *perf_ibs, struct perf_event *event,
356 u64 *config)
358 u64 count = perf_ibs->get_count(*config);
361 * Set width to 64 since we do not overflow on max width but
362 * instead on max count. In perf_ibs_set_period() we clear
363 * prev count manually on overflow.
365 while (!perf_event_try_update(event, count, 64)) {
366 rdmsrl(event->hw.config_base, *config);
367 count = perf_ibs->get_count(*config);
371 static inline void perf_ibs_enable_event(struct perf_ibs *perf_ibs,
372 struct hw_perf_event *hwc, u64 config)
374 u64 tmp = hwc->config | config;
376 if (perf_ibs->fetch_count_reset_broken)
377 wrmsrl(hwc->config_base, tmp & ~perf_ibs->enable_mask);
379 wrmsrl(hwc->config_base, tmp | perf_ibs->enable_mask);
383 * Erratum #420 Instruction-Based Sampling Engine May Generate
384 * Interrupt that Cannot Be Cleared:
386 * Must clear counter mask first, then clear the enable bit. See
387 * Revision Guide for AMD Family 10h Processors, Publication #41322.
389 static inline void perf_ibs_disable_event(struct perf_ibs *perf_ibs,
390 struct hw_perf_event *hwc, u64 config)
392 config &= ~perf_ibs->cnt_mask;
393 if (boot_cpu_data.x86 == 0x10)
394 wrmsrl(hwc->config_base, config);
395 config &= ~perf_ibs->enable_mask;
396 wrmsrl(hwc->config_base, config);
400 * We cannot restore the ibs pmu state, so we always needs to update
401 * the event while stopping it and then reset the state when starting
402 * again. Thus, ignoring PERF_EF_RELOAD and PERF_EF_UPDATE flags in
403 * perf_ibs_start()/perf_ibs_stop() and instead always do it.
405 static void perf_ibs_start(struct perf_event *event, int flags)
407 struct hw_perf_event *hwc = &event->hw;
408 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
409 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
410 u64 period, config = 0;
412 if (WARN_ON_ONCE(!(hwc->state & PERF_HES_STOPPED)))
413 return;
415 WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));
416 hwc->state = 0;
418 perf_ibs_set_period(perf_ibs, hwc, &period);
419 if (perf_ibs == &perf_ibs_op && (ibs_caps & IBS_CAPS_OPCNTEXT)) {
420 config |= period & IBS_OP_MAX_CNT_EXT_MASK;
421 period &= ~IBS_OP_MAX_CNT_EXT_MASK;
423 config |= period >> 4;
426 * Set STARTED before enabling the hardware, such that a subsequent NMI
427 * must observe it.
429 set_bit(IBS_STARTED, pcpu->state);
430 clear_bit(IBS_STOPPING, pcpu->state);
431 perf_ibs_enable_event(perf_ibs, hwc, config);
433 perf_event_update_userpage(event);
436 static void perf_ibs_stop(struct perf_event *event, int flags)
438 struct hw_perf_event *hwc = &event->hw;
439 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
440 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
441 u64 config;
442 int stopping;
444 if (test_and_set_bit(IBS_STOPPING, pcpu->state))
445 return;
447 stopping = test_bit(IBS_STARTED, pcpu->state);
449 if (!stopping && (hwc->state & PERF_HES_UPTODATE))
450 return;
452 rdmsrl(hwc->config_base, config);
454 if (stopping) {
456 * Set STOPPED before disabling the hardware, such that it
457 * must be visible to NMIs the moment we clear the EN bit,
458 * at which point we can generate an !VALID sample which
459 * we need to consume.
461 set_bit(IBS_STOPPED, pcpu->state);
462 perf_ibs_disable_event(perf_ibs, hwc, config);
464 * Clear STARTED after disabling the hardware; if it were
465 * cleared before an NMI hitting after the clear but before
466 * clearing the EN bit might think it a spurious NMI and not
467 * handle it.
469 * Clearing it after, however, creates the problem of the NMI
470 * handler seeing STARTED but not having a valid sample.
472 clear_bit(IBS_STARTED, pcpu->state);
473 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
474 hwc->state |= PERF_HES_STOPPED;
477 if (hwc->state & PERF_HES_UPTODATE)
478 return;
481 * Clear valid bit to not count rollovers on update, rollovers
482 * are only updated in the irq handler.
484 config &= ~perf_ibs->valid_mask;
486 perf_ibs_event_update(perf_ibs, event, &config);
487 hwc->state |= PERF_HES_UPTODATE;
490 static int perf_ibs_add(struct perf_event *event, int flags)
492 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
493 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
495 if (test_and_set_bit(IBS_ENABLED, pcpu->state))
496 return -ENOSPC;
498 event->hw.state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
500 pcpu->event = event;
502 if (flags & PERF_EF_START)
503 perf_ibs_start(event, PERF_EF_RELOAD);
505 return 0;
508 static void perf_ibs_del(struct perf_event *event, int flags)
510 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
511 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
513 if (!test_and_clear_bit(IBS_ENABLED, pcpu->state))
514 return;
516 perf_ibs_stop(event, PERF_EF_UPDATE);
518 pcpu->event = NULL;
520 perf_event_update_userpage(event);
523 static void perf_ibs_read(struct perf_event *event) { }
525 PMU_FORMAT_ATTR(rand_en, "config:57");
526 PMU_FORMAT_ATTR(cnt_ctl, "config:19");
528 static struct attribute *ibs_fetch_format_attrs[] = {
529 &format_attr_rand_en.attr,
530 NULL,
533 static struct attribute *ibs_op_format_attrs[] = {
534 NULL, /* &format_attr_cnt_ctl.attr if IBS_CAPS_OPCNT */
535 NULL,
538 static struct perf_ibs perf_ibs_fetch = {
539 .pmu = {
540 .task_ctx_nr = perf_invalid_context,
542 .event_init = perf_ibs_init,
543 .add = perf_ibs_add,
544 .del = perf_ibs_del,
545 .start = perf_ibs_start,
546 .stop = perf_ibs_stop,
547 .read = perf_ibs_read,
548 .capabilities = PERF_PMU_CAP_NO_EXCLUDE,
550 .msr = MSR_AMD64_IBSFETCHCTL,
551 .config_mask = IBS_FETCH_CONFIG_MASK,
552 .cnt_mask = IBS_FETCH_MAX_CNT,
553 .enable_mask = IBS_FETCH_ENABLE,
554 .valid_mask = IBS_FETCH_VAL,
555 .max_period = IBS_FETCH_MAX_CNT << 4,
556 .offset_mask = { MSR_AMD64_IBSFETCH_REG_MASK },
557 .offset_max = MSR_AMD64_IBSFETCH_REG_COUNT,
558 .format_attrs = ibs_fetch_format_attrs,
560 .get_count = get_ibs_fetch_count,
563 static struct perf_ibs perf_ibs_op = {
564 .pmu = {
565 .task_ctx_nr = perf_invalid_context,
567 .event_init = perf_ibs_init,
568 .add = perf_ibs_add,
569 .del = perf_ibs_del,
570 .start = perf_ibs_start,
571 .stop = perf_ibs_stop,
572 .read = perf_ibs_read,
574 .msr = MSR_AMD64_IBSOPCTL,
575 .config_mask = IBS_OP_CONFIG_MASK,
576 .cnt_mask = IBS_OP_MAX_CNT | IBS_OP_CUR_CNT |
577 IBS_OP_CUR_CNT_RAND,
578 .enable_mask = IBS_OP_ENABLE,
579 .valid_mask = IBS_OP_VAL,
580 .max_period = IBS_OP_MAX_CNT << 4,
581 .offset_mask = { MSR_AMD64_IBSOP_REG_MASK },
582 .offset_max = MSR_AMD64_IBSOP_REG_COUNT,
583 .format_attrs = ibs_op_format_attrs,
585 .get_count = get_ibs_op_count,
588 static int perf_ibs_handle_irq(struct perf_ibs *perf_ibs, struct pt_regs *iregs)
590 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
591 struct perf_event *event = pcpu->event;
592 struct hw_perf_event *hwc;
593 struct perf_sample_data data;
594 struct perf_raw_record raw;
595 struct pt_regs regs;
596 struct perf_ibs_data ibs_data;
597 int offset, size, check_rip, offset_max, throttle = 0;
598 unsigned int msr;
599 u64 *buf, *config, period, new_config = 0;
601 if (!test_bit(IBS_STARTED, pcpu->state)) {
602 fail:
604 * Catch spurious interrupts after stopping IBS: After
605 * disabling IBS there could be still incoming NMIs
606 * with samples that even have the valid bit cleared.
607 * Mark all this NMIs as handled.
609 if (test_and_clear_bit(IBS_STOPPED, pcpu->state))
610 return 1;
612 return 0;
615 if (WARN_ON_ONCE(!event))
616 goto fail;
618 hwc = &event->hw;
619 msr = hwc->config_base;
620 buf = ibs_data.regs;
621 rdmsrl(msr, *buf);
622 if (!(*buf++ & perf_ibs->valid_mask))
623 goto fail;
625 config = &ibs_data.regs[0];
626 perf_ibs_event_update(perf_ibs, event, config);
627 perf_sample_data_init(&data, 0, hwc->last_period);
628 if (!perf_ibs_set_period(perf_ibs, hwc, &period))
629 goto out; /* no sw counter overflow */
631 ibs_data.caps = ibs_caps;
632 size = 1;
633 offset = 1;
634 check_rip = (perf_ibs == &perf_ibs_op && (ibs_caps & IBS_CAPS_RIPINVALIDCHK));
635 if (event->attr.sample_type & PERF_SAMPLE_RAW)
636 offset_max = perf_ibs->offset_max;
637 else if (check_rip)
638 offset_max = 3;
639 else
640 offset_max = 1;
641 do {
642 rdmsrl(msr + offset, *buf++);
643 size++;
644 offset = find_next_bit(perf_ibs->offset_mask,
645 perf_ibs->offset_max,
646 offset + 1);
647 } while (offset < offset_max);
649 * Read IbsBrTarget, IbsOpData4, and IbsExtdCtl separately
650 * depending on their availability.
651 * Can't add to offset_max as they are staggered
653 if (event->attr.sample_type & PERF_SAMPLE_RAW) {
654 if (perf_ibs == &perf_ibs_op) {
655 if (ibs_caps & IBS_CAPS_BRNTRGT) {
656 rdmsrl(MSR_AMD64_IBSBRTARGET, *buf++);
657 size++;
659 if (ibs_caps & IBS_CAPS_OPDATA4) {
660 rdmsrl(MSR_AMD64_IBSOPDATA4, *buf++);
661 size++;
664 if (perf_ibs == &perf_ibs_fetch && (ibs_caps & IBS_CAPS_FETCHCTLEXTD)) {
665 rdmsrl(MSR_AMD64_ICIBSEXTDCTL, *buf++);
666 size++;
669 ibs_data.size = sizeof(u64) * size;
671 regs = *iregs;
672 if (check_rip && (ibs_data.regs[2] & IBS_RIP_INVALID)) {
673 regs.flags &= ~PERF_EFLAGS_EXACT;
674 } else {
675 set_linear_ip(&regs, ibs_data.regs[1]);
676 regs.flags |= PERF_EFLAGS_EXACT;
679 if (event->attr.sample_type & PERF_SAMPLE_RAW) {
680 raw = (struct perf_raw_record){
681 .frag = {
682 .size = sizeof(u32) + ibs_data.size,
683 .data = ibs_data.data,
686 data.raw = &raw;
689 throttle = perf_event_overflow(event, &data, &regs);
690 out:
691 if (throttle) {
692 perf_ibs_stop(event, 0);
693 } else {
694 if (perf_ibs == &perf_ibs_op) {
695 if (ibs_caps & IBS_CAPS_OPCNTEXT) {
696 new_config = period & IBS_OP_MAX_CNT_EXT_MASK;
697 period &= ~IBS_OP_MAX_CNT_EXT_MASK;
699 if ((ibs_caps & IBS_CAPS_RDWROPCNT) && (*config & IBS_OP_CNT_CTL))
700 new_config |= *config & IBS_OP_CUR_CNT_RAND;
702 new_config |= period >> 4;
704 perf_ibs_enable_event(perf_ibs, hwc, new_config);
707 perf_event_update_userpage(event);
709 return 1;
712 static int
713 perf_ibs_nmi_handler(unsigned int cmd, struct pt_regs *regs)
715 u64 stamp = sched_clock();
716 int handled = 0;
718 handled += perf_ibs_handle_irq(&perf_ibs_fetch, regs);
719 handled += perf_ibs_handle_irq(&perf_ibs_op, regs);
721 if (handled)
722 inc_irq_stat(apic_perf_irqs);
724 perf_sample_event_took(sched_clock() - stamp);
726 return handled;
728 NOKPROBE_SYMBOL(perf_ibs_nmi_handler);
730 static __init int perf_ibs_pmu_init(struct perf_ibs *perf_ibs, char *name)
732 struct cpu_perf_ibs __percpu *pcpu;
733 int ret;
735 pcpu = alloc_percpu(struct cpu_perf_ibs);
736 if (!pcpu)
737 return -ENOMEM;
739 perf_ibs->pcpu = pcpu;
741 /* register attributes */
742 if (perf_ibs->format_attrs[0]) {
743 memset(&perf_ibs->format_group, 0, sizeof(perf_ibs->format_group));
744 perf_ibs->format_group.name = "format";
745 perf_ibs->format_group.attrs = perf_ibs->format_attrs;
747 memset(&perf_ibs->attr_groups, 0, sizeof(perf_ibs->attr_groups));
748 perf_ibs->attr_groups[0] = &perf_ibs->format_group;
749 perf_ibs->pmu.attr_groups = perf_ibs->attr_groups;
752 ret = perf_pmu_register(&perf_ibs->pmu, name, -1);
753 if (ret) {
754 perf_ibs->pcpu = NULL;
755 free_percpu(pcpu);
758 return ret;
761 static __init void perf_event_ibs_init(void)
763 struct attribute **attr = ibs_op_format_attrs;
766 * Some chips fail to reset the fetch count when it is written; instead
767 * they need a 0-1 transition of IbsFetchEn.
769 if (boot_cpu_data.x86 >= 0x16 && boot_cpu_data.x86 <= 0x18)
770 perf_ibs_fetch.fetch_count_reset_broken = 1;
772 perf_ibs_pmu_init(&perf_ibs_fetch, "ibs_fetch");
774 if (ibs_caps & IBS_CAPS_OPCNT) {
775 perf_ibs_op.config_mask |= IBS_OP_CNT_CTL;
776 *attr++ = &format_attr_cnt_ctl.attr;
779 if (ibs_caps & IBS_CAPS_OPCNTEXT) {
780 perf_ibs_op.max_period |= IBS_OP_MAX_CNT_EXT_MASK;
781 perf_ibs_op.config_mask |= IBS_OP_MAX_CNT_EXT_MASK;
782 perf_ibs_op.cnt_mask |= IBS_OP_MAX_CNT_EXT_MASK;
785 perf_ibs_pmu_init(&perf_ibs_op, "ibs_op");
787 register_nmi_handler(NMI_LOCAL, perf_ibs_nmi_handler, 0, "perf_ibs");
788 pr_info("perf: AMD IBS detected (0x%08x)\n", ibs_caps);
791 #else /* defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD) */
793 static __init void perf_event_ibs_init(void) { }
795 #endif
797 /* IBS - apic initialization, for perf and oprofile */
799 static __init u32 __get_ibs_caps(void)
801 u32 caps;
802 unsigned int max_level;
804 if (!boot_cpu_has(X86_FEATURE_IBS))
805 return 0;
807 /* check IBS cpuid feature flags */
808 max_level = cpuid_eax(0x80000000);
809 if (max_level < IBS_CPUID_FEATURES)
810 return IBS_CAPS_DEFAULT;
812 caps = cpuid_eax(IBS_CPUID_FEATURES);
813 if (!(caps & IBS_CAPS_AVAIL))
814 /* cpuid flags not valid */
815 return IBS_CAPS_DEFAULT;
817 return caps;
820 u32 get_ibs_caps(void)
822 return ibs_caps;
825 EXPORT_SYMBOL(get_ibs_caps);
827 static inline int get_eilvt(int offset)
829 return !setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_NMI, 1);
832 static inline int put_eilvt(int offset)
834 return !setup_APIC_eilvt(offset, 0, 0, 1);
838 * Check and reserve APIC extended interrupt LVT offset for IBS if available.
840 static inline int ibs_eilvt_valid(void)
842 int offset;
843 u64 val;
844 int valid = 0;
846 preempt_disable();
848 rdmsrl(MSR_AMD64_IBSCTL, val);
849 offset = val & IBSCTL_LVT_OFFSET_MASK;
851 if (!(val & IBSCTL_LVT_OFFSET_VALID)) {
852 pr_err(FW_BUG "cpu %d, invalid IBS interrupt offset %d (MSR%08X=0x%016llx)\n",
853 smp_processor_id(), offset, MSR_AMD64_IBSCTL, val);
854 goto out;
857 if (!get_eilvt(offset)) {
858 pr_err(FW_BUG "cpu %d, IBS interrupt offset %d not available (MSR%08X=0x%016llx)\n",
859 smp_processor_id(), offset, MSR_AMD64_IBSCTL, val);
860 goto out;
863 valid = 1;
864 out:
865 preempt_enable();
867 return valid;
870 static int setup_ibs_ctl(int ibs_eilvt_off)
872 struct pci_dev *cpu_cfg;
873 int nodes;
874 u32 value = 0;
876 nodes = 0;
877 cpu_cfg = NULL;
878 do {
879 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
880 PCI_DEVICE_ID_AMD_10H_NB_MISC,
881 cpu_cfg);
882 if (!cpu_cfg)
883 break;
884 ++nodes;
885 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
886 | IBSCTL_LVT_OFFSET_VALID);
887 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
888 if (value != (ibs_eilvt_off | IBSCTL_LVT_OFFSET_VALID)) {
889 pci_dev_put(cpu_cfg);
890 pr_debug("Failed to setup IBS LVT offset, IBSCTL = 0x%08x\n",
891 value);
892 return -EINVAL;
894 } while (1);
896 if (!nodes) {
897 pr_debug("No CPU node configured for IBS\n");
898 return -ENODEV;
901 return 0;
905 * This runs only on the current cpu. We try to find an LVT offset and
906 * setup the local APIC. For this we must disable preemption. On
907 * success we initialize all nodes with this offset. This updates then
908 * the offset in the IBS_CTL per-node msr. The per-core APIC setup of
909 * the IBS interrupt vector is handled by perf_ibs_cpu_notifier that
910 * is using the new offset.
912 static void force_ibs_eilvt_setup(void)
914 int offset;
915 int ret;
917 preempt_disable();
918 /* find the next free available EILVT entry, skip offset 0 */
919 for (offset = 1; offset < APIC_EILVT_NR_MAX; offset++) {
920 if (get_eilvt(offset))
921 break;
923 preempt_enable();
925 if (offset == APIC_EILVT_NR_MAX) {
926 pr_debug("No EILVT entry available\n");
927 return;
930 ret = setup_ibs_ctl(offset);
931 if (ret)
932 goto out;
934 if (!ibs_eilvt_valid())
935 goto out;
937 pr_info("LVT offset %d assigned\n", offset);
939 return;
940 out:
941 preempt_disable();
942 put_eilvt(offset);
943 preempt_enable();
944 return;
947 static void ibs_eilvt_setup(void)
950 * Force LVT offset assignment for family 10h: The offsets are
951 * not assigned by the BIOS for this family, so the OS is
952 * responsible for doing it. If the OS assignment fails, fall
953 * back to BIOS settings and try to setup this.
955 if (boot_cpu_data.x86 == 0x10)
956 force_ibs_eilvt_setup();
959 static inline int get_ibs_lvt_offset(void)
961 u64 val;
963 rdmsrl(MSR_AMD64_IBSCTL, val);
964 if (!(val & IBSCTL_LVT_OFFSET_VALID))
965 return -EINVAL;
967 return val & IBSCTL_LVT_OFFSET_MASK;
970 static void setup_APIC_ibs(void)
972 int offset;
974 offset = get_ibs_lvt_offset();
975 if (offset < 0)
976 goto failed;
978 if (!setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_NMI, 0))
979 return;
980 failed:
981 pr_warn("perf: IBS APIC setup failed on cpu #%d\n",
982 smp_processor_id());
985 static void clear_APIC_ibs(void)
987 int offset;
989 offset = get_ibs_lvt_offset();
990 if (offset >= 0)
991 setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_FIX, 1);
994 static int x86_pmu_amd_ibs_starting_cpu(unsigned int cpu)
996 setup_APIC_ibs();
997 return 0;
1000 #ifdef CONFIG_PM
1002 static int perf_ibs_suspend(void)
1004 clear_APIC_ibs();
1005 return 0;
1008 static void perf_ibs_resume(void)
1010 ibs_eilvt_setup();
1011 setup_APIC_ibs();
1014 static struct syscore_ops perf_ibs_syscore_ops = {
1015 .resume = perf_ibs_resume,
1016 .suspend = perf_ibs_suspend,
1019 static void perf_ibs_pm_init(void)
1021 register_syscore_ops(&perf_ibs_syscore_ops);
1024 #else
1026 static inline void perf_ibs_pm_init(void) { }
1028 #endif
1030 static int x86_pmu_amd_ibs_dying_cpu(unsigned int cpu)
1032 clear_APIC_ibs();
1033 return 0;
1036 static __init int amd_ibs_init(void)
1038 u32 caps;
1040 caps = __get_ibs_caps();
1041 if (!caps)
1042 return -ENODEV; /* ibs not supported by the cpu */
1044 ibs_eilvt_setup();
1046 if (!ibs_eilvt_valid())
1047 return -EINVAL;
1049 perf_ibs_pm_init();
1051 ibs_caps = caps;
1052 /* make ibs_caps visible to other cpus: */
1053 smp_mb();
1055 * x86_pmu_amd_ibs_starting_cpu will be called from core on
1056 * all online cpus.
1058 cpuhp_setup_state(CPUHP_AP_PERF_X86_AMD_IBS_STARTING,
1059 "perf/x86/amd/ibs:starting",
1060 x86_pmu_amd_ibs_starting_cpu,
1061 x86_pmu_amd_ibs_dying_cpu);
1063 perf_event_ibs_init();
1065 return 0;
1068 /* Since we need the pci subsystem to init ibs we can't do this earlier: */
1069 device_initcall(amd_ibs_init);