2 * Performance events - AMD IBS
4 * Copyright (C) 2011 Advanced Micro Devices, Inc., Robert Richter
6 * For licencing details see kernel-base/COPYING
9 #include <linux/perf_event.h>
10 #include <linux/module.h>
11 #include <linux/pci.h>
12 #include <linux/ptrace.h>
13 #include <linux/syscore_ops.h>
17 #include "perf_event.h"
21 #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD)
23 #include <linux/kprobes.h>
24 #include <linux/hardirq.h>
28 #define IBS_FETCH_CONFIG_MASK (IBS_FETCH_RAND_EN | IBS_FETCH_MAX_CNT)
29 #define IBS_OP_CONFIG_MASK IBS_OP_MAX_CNT
40 struct perf_event
*event
;
41 unsigned long state
[BITS_TO_LONGS(IBS_MAX_STATES
)];
52 unsigned long offset_mask
[1];
54 struct cpu_perf_ibs __percpu
*pcpu
;
56 struct attribute
**format_attrs
;
57 struct attribute_group format_group
;
58 const struct attribute_group
*attr_groups
[2];
60 u64 (*get_count
)(u64 config
);
63 struct perf_ibs_data
{
66 u32 data
[0]; /* data buffer starts here */
69 u64 regs
[MSR_AMD64_IBS_REG_COUNT_MAX
];
73 perf_event_set_period(struct hw_perf_event
*hwc
, u64 min
, u64 max
, u64
*hw_period
)
75 s64 left
= local64_read(&hwc
->period_left
);
76 s64 period
= hwc
->sample_period
;
80 * If we are way outside a reasonable range then just skip forward:
82 if (unlikely(left
<= -period
)) {
84 local64_set(&hwc
->period_left
, left
);
85 hwc
->last_period
= period
;
89 if (unlikely(left
< (s64
)min
)) {
91 local64_set(&hwc
->period_left
, left
);
92 hwc
->last_period
= period
;
97 * If the hw period that triggers the sw overflow is too short
98 * we might hit the irq handler. This biases the results.
99 * Thus we shorten the next-to-last period and set the last
100 * period to the max period.
110 *hw_period
= (u64
)left
;
116 perf_event_try_update(struct perf_event
*event
, u64 new_raw_count
, int width
)
118 struct hw_perf_event
*hwc
= &event
->hw
;
119 int shift
= 64 - width
;
124 * Careful: an NMI might modify the previous event value.
126 * Our tactic to handle this is to first atomically read and
127 * exchange a new raw count - then add that new-prev delta
128 * count to the generic event atomically:
130 prev_raw_count
= local64_read(&hwc
->prev_count
);
131 if (local64_cmpxchg(&hwc
->prev_count
, prev_raw_count
,
132 new_raw_count
) != prev_raw_count
)
136 * Now we have the new raw value and have updated the prev
137 * timestamp already. We can now calculate the elapsed delta
138 * (event-)time and add that to the generic event.
140 * Careful, not all hw sign-extends above the physical width
143 delta
= (new_raw_count
<< shift
) - (prev_raw_count
<< shift
);
146 local64_add(delta
, &event
->count
);
147 local64_sub(delta
, &hwc
->period_left
);
152 static struct perf_ibs perf_ibs_fetch
;
153 static struct perf_ibs perf_ibs_op
;
155 static struct perf_ibs
*get_ibs_pmu(int type
)
157 if (perf_ibs_fetch
.pmu
.type
== type
)
158 return &perf_ibs_fetch
;
159 if (perf_ibs_op
.pmu
.type
== type
)
165 * Use IBS for precise event sampling:
167 * perf record -a -e cpu-cycles:p ... # use ibs op counting cycle count
168 * perf record -a -e r076:p ... # same as -e cpu-cycles:p
169 * perf record -a -e r0C1:p ... # use ibs op counting micro-ops
171 * IbsOpCntCtl (bit 19) of IBS Execution Control Register (IbsOpCtl,
172 * MSRC001_1033) is used to select either cycle or micro-ops counting
175 * The rip of IBS samples has skid 0. Thus, IBS supports precise
176 * levels 1 and 2 and the PERF_EFLAGS_EXACT is set. In rare cases the
177 * rip is invalid when IBS was not able to record the rip correctly.
178 * We clear PERF_EFLAGS_EXACT and take the rip from pt_regs then.
181 static int perf_ibs_precise_event(struct perf_event
*event
, u64
*config
)
183 switch (event
->attr
.precise_ip
) {
193 switch (event
->attr
.type
) {
194 case PERF_TYPE_HARDWARE
:
195 switch (event
->attr
.config
) {
196 case PERF_COUNT_HW_CPU_CYCLES
:
202 switch (event
->attr
.config
) {
207 *config
= IBS_OP_CNT_CTL
;
218 static const struct perf_event_attr ibs_notsupp
= {
227 static int perf_ibs_init(struct perf_event
*event
)
229 struct hw_perf_event
*hwc
= &event
->hw
;
230 struct perf_ibs
*perf_ibs
;
234 perf_ibs
= get_ibs_pmu(event
->attr
.type
);
236 config
= event
->attr
.config
;
238 perf_ibs
= &perf_ibs_op
;
239 ret
= perf_ibs_precise_event(event
, &config
);
244 if (event
->pmu
!= &perf_ibs
->pmu
)
247 if (perf_flags(&event
->attr
) & perf_flags(&ibs_notsupp
))
250 if (config
& ~perf_ibs
->config_mask
)
253 if (hwc
->sample_period
) {
254 if (config
& perf_ibs
->cnt_mask
)
255 /* raw max_cnt may not be set */
257 if (!event
->attr
.sample_freq
&& hwc
->sample_period
& 0x0f)
259 * lower 4 bits can not be set in ibs max cnt,
260 * but allowing it in case we adjust the
261 * sample period to set a frequency.
264 hwc
->sample_period
&= ~0x0FULL
;
265 if (!hwc
->sample_period
)
266 hwc
->sample_period
= 0x10;
268 max_cnt
= config
& perf_ibs
->cnt_mask
;
269 config
&= ~perf_ibs
->cnt_mask
;
270 event
->attr
.sample_period
= max_cnt
<< 4;
271 hwc
->sample_period
= event
->attr
.sample_period
;
274 if (!hwc
->sample_period
)
278 * If we modify hwc->sample_period, we also need to update
279 * hwc->last_period and hwc->period_left.
281 hwc
->last_period
= hwc
->sample_period
;
282 local64_set(&hwc
->period_left
, hwc
->sample_period
);
284 hwc
->config_base
= perf_ibs
->msr
;
285 hwc
->config
= config
;
290 static int perf_ibs_set_period(struct perf_ibs
*perf_ibs
,
291 struct hw_perf_event
*hwc
, u64
*period
)
295 /* ignore lower 4 bits in min count: */
296 overflow
= perf_event_set_period(hwc
, 1<<4, perf_ibs
->max_period
, period
);
297 local64_set(&hwc
->prev_count
, 0);
302 static u64
get_ibs_fetch_count(u64 config
)
304 return (config
& IBS_FETCH_CNT
) >> 12;
307 static u64
get_ibs_op_count(u64 config
)
311 if (config
& IBS_OP_VAL
)
312 count
+= (config
& IBS_OP_MAX_CNT
) << 4; /* cnt rolled over */
314 if (ibs_caps
& IBS_CAPS_RDWROPCNT
)
315 count
+= (config
& IBS_OP_CUR_CNT
) >> 32;
321 perf_ibs_event_update(struct perf_ibs
*perf_ibs
, struct perf_event
*event
,
324 u64 count
= perf_ibs
->get_count(*config
);
327 * Set width to 64 since we do not overflow on max width but
328 * instead on max count. In perf_ibs_set_period() we clear
329 * prev count manually on overflow.
331 while (!perf_event_try_update(event
, count
, 64)) {
332 rdmsrl(event
->hw
.config_base
, *config
);
333 count
= perf_ibs
->get_count(*config
);
337 static inline void perf_ibs_enable_event(struct perf_ibs
*perf_ibs
,
338 struct hw_perf_event
*hwc
, u64 config
)
340 wrmsrl(hwc
->config_base
, hwc
->config
| config
| perf_ibs
->enable_mask
);
344 * Erratum #420 Instruction-Based Sampling Engine May Generate
345 * Interrupt that Cannot Be Cleared:
347 * Must clear counter mask first, then clear the enable bit. See
348 * Revision Guide for AMD Family 10h Processors, Publication #41322.
350 static inline void perf_ibs_disable_event(struct perf_ibs
*perf_ibs
,
351 struct hw_perf_event
*hwc
, u64 config
)
353 config
&= ~perf_ibs
->cnt_mask
;
354 wrmsrl(hwc
->config_base
, config
);
355 config
&= ~perf_ibs
->enable_mask
;
356 wrmsrl(hwc
->config_base
, config
);
360 * We cannot restore the ibs pmu state, so we always needs to update
361 * the event while stopping it and then reset the state when starting
362 * again. Thus, ignoring PERF_EF_RELOAD and PERF_EF_UPDATE flags in
363 * perf_ibs_start()/perf_ibs_stop() and instead always do it.
365 static void perf_ibs_start(struct perf_event
*event
, int flags
)
367 struct hw_perf_event
*hwc
= &event
->hw
;
368 struct perf_ibs
*perf_ibs
= container_of(event
->pmu
, struct perf_ibs
, pmu
);
369 struct cpu_perf_ibs
*pcpu
= this_cpu_ptr(perf_ibs
->pcpu
);
372 if (WARN_ON_ONCE(!(hwc
->state
& PERF_HES_STOPPED
)))
375 WARN_ON_ONCE(!(hwc
->state
& PERF_HES_UPTODATE
));
378 perf_ibs_set_period(perf_ibs
, hwc
, &period
);
379 set_bit(IBS_STARTED
, pcpu
->state
);
380 perf_ibs_enable_event(perf_ibs
, hwc
, period
>> 4);
382 perf_event_update_userpage(event
);
385 static void perf_ibs_stop(struct perf_event
*event
, int flags
)
387 struct hw_perf_event
*hwc
= &event
->hw
;
388 struct perf_ibs
*perf_ibs
= container_of(event
->pmu
, struct perf_ibs
, pmu
);
389 struct cpu_perf_ibs
*pcpu
= this_cpu_ptr(perf_ibs
->pcpu
);
393 stopping
= test_and_clear_bit(IBS_STARTED
, pcpu
->state
);
395 if (!stopping
&& (hwc
->state
& PERF_HES_UPTODATE
))
398 rdmsrl(hwc
->config_base
, config
);
401 set_bit(IBS_STOPPING
, pcpu
->state
);
402 perf_ibs_disable_event(perf_ibs
, hwc
, config
);
403 WARN_ON_ONCE(hwc
->state
& PERF_HES_STOPPED
);
404 hwc
->state
|= PERF_HES_STOPPED
;
407 if (hwc
->state
& PERF_HES_UPTODATE
)
411 * Clear valid bit to not count rollovers on update, rollovers
412 * are only updated in the irq handler.
414 config
&= ~perf_ibs
->valid_mask
;
416 perf_ibs_event_update(perf_ibs
, event
, &config
);
417 hwc
->state
|= PERF_HES_UPTODATE
;
420 static int perf_ibs_add(struct perf_event
*event
, int flags
)
422 struct perf_ibs
*perf_ibs
= container_of(event
->pmu
, struct perf_ibs
, pmu
);
423 struct cpu_perf_ibs
*pcpu
= this_cpu_ptr(perf_ibs
->pcpu
);
425 if (test_and_set_bit(IBS_ENABLED
, pcpu
->state
))
428 event
->hw
.state
= PERF_HES_UPTODATE
| PERF_HES_STOPPED
;
432 if (flags
& PERF_EF_START
)
433 perf_ibs_start(event
, PERF_EF_RELOAD
);
438 static void perf_ibs_del(struct perf_event
*event
, int flags
)
440 struct perf_ibs
*perf_ibs
= container_of(event
->pmu
, struct perf_ibs
, pmu
);
441 struct cpu_perf_ibs
*pcpu
= this_cpu_ptr(perf_ibs
->pcpu
);
443 if (!test_and_clear_bit(IBS_ENABLED
, pcpu
->state
))
446 perf_ibs_stop(event
, PERF_EF_UPDATE
);
450 perf_event_update_userpage(event
);
453 static void perf_ibs_read(struct perf_event
*event
) { }
455 PMU_FORMAT_ATTR(rand_en
, "config:57");
456 PMU_FORMAT_ATTR(cnt_ctl
, "config:19");
458 static struct attribute
*ibs_fetch_format_attrs
[] = {
459 &format_attr_rand_en
.attr
,
463 static struct attribute
*ibs_op_format_attrs
[] = {
464 NULL
, /* &format_attr_cnt_ctl.attr if IBS_CAPS_OPCNT */
468 static struct perf_ibs perf_ibs_fetch
= {
470 .task_ctx_nr
= perf_invalid_context
,
472 .event_init
= perf_ibs_init
,
475 .start
= perf_ibs_start
,
476 .stop
= perf_ibs_stop
,
477 .read
= perf_ibs_read
,
479 .msr
= MSR_AMD64_IBSFETCHCTL
,
480 .config_mask
= IBS_FETCH_CONFIG_MASK
,
481 .cnt_mask
= IBS_FETCH_MAX_CNT
,
482 .enable_mask
= IBS_FETCH_ENABLE
,
483 .valid_mask
= IBS_FETCH_VAL
,
484 .max_period
= IBS_FETCH_MAX_CNT
<< 4,
485 .offset_mask
= { MSR_AMD64_IBSFETCH_REG_MASK
},
486 .offset_max
= MSR_AMD64_IBSFETCH_REG_COUNT
,
487 .format_attrs
= ibs_fetch_format_attrs
,
489 .get_count
= get_ibs_fetch_count
,
492 static struct perf_ibs perf_ibs_op
= {
494 .task_ctx_nr
= perf_invalid_context
,
496 .event_init
= perf_ibs_init
,
499 .start
= perf_ibs_start
,
500 .stop
= perf_ibs_stop
,
501 .read
= perf_ibs_read
,
503 .msr
= MSR_AMD64_IBSOPCTL
,
504 .config_mask
= IBS_OP_CONFIG_MASK
,
505 .cnt_mask
= IBS_OP_MAX_CNT
,
506 .enable_mask
= IBS_OP_ENABLE
,
507 .valid_mask
= IBS_OP_VAL
,
508 .max_period
= IBS_OP_MAX_CNT
<< 4,
509 .offset_mask
= { MSR_AMD64_IBSOP_REG_MASK
},
510 .offset_max
= MSR_AMD64_IBSOP_REG_COUNT
,
511 .format_attrs
= ibs_op_format_attrs
,
513 .get_count
= get_ibs_op_count
,
516 static int perf_ibs_handle_irq(struct perf_ibs
*perf_ibs
, struct pt_regs
*iregs
)
518 struct cpu_perf_ibs
*pcpu
= this_cpu_ptr(perf_ibs
->pcpu
);
519 struct perf_event
*event
= pcpu
->event
;
520 struct hw_perf_event
*hwc
= &event
->hw
;
521 struct perf_sample_data data
;
522 struct perf_raw_record raw
;
524 struct perf_ibs_data ibs_data
;
525 int offset
, size
, check_rip
, offset_max
, throttle
= 0;
527 u64
*buf
, *config
, period
;
529 if (!test_bit(IBS_STARTED
, pcpu
->state
)) {
531 * Catch spurious interrupts after stopping IBS: After
532 * disabling IBS there could be still incoming NMIs
533 * with samples that even have the valid bit cleared.
534 * Mark all this NMIs as handled.
536 return test_and_clear_bit(IBS_STOPPING
, pcpu
->state
) ? 1 : 0;
539 msr
= hwc
->config_base
;
542 if (!(*buf
++ & perf_ibs
->valid_mask
))
545 config
= &ibs_data
.regs
[0];
546 perf_ibs_event_update(perf_ibs
, event
, config
);
547 perf_sample_data_init(&data
, 0, hwc
->last_period
);
548 if (!perf_ibs_set_period(perf_ibs
, hwc
, &period
))
549 goto out
; /* no sw counter overflow */
551 ibs_data
.caps
= ibs_caps
;
554 check_rip
= (perf_ibs
== &perf_ibs_op
&& (ibs_caps
& IBS_CAPS_RIPINVALIDCHK
));
555 if (event
->attr
.sample_type
& PERF_SAMPLE_RAW
)
556 offset_max
= perf_ibs
->offset_max
;
562 rdmsrl(msr
+ offset
, *buf
++);
564 offset
= find_next_bit(perf_ibs
->offset_mask
,
565 perf_ibs
->offset_max
,
567 } while (offset
< offset_max
);
568 if (event
->attr
.sample_type
& PERF_SAMPLE_RAW
) {
570 * Read IbsBrTarget and IbsOpData4 separately
571 * depending on their availability.
572 * Can't add to offset_max as they are staggered
574 if (ibs_caps
& IBS_CAPS_BRNTRGT
) {
575 rdmsrl(MSR_AMD64_IBSBRTARGET
, *buf
++);
578 if (ibs_caps
& IBS_CAPS_OPDATA4
) {
579 rdmsrl(MSR_AMD64_IBSOPDATA4
, *buf
++);
583 ibs_data
.size
= sizeof(u64
) * size
;
586 if (check_rip
&& (ibs_data
.regs
[2] & IBS_RIP_INVALID
)) {
587 regs
.flags
&= ~PERF_EFLAGS_EXACT
;
589 set_linear_ip(®s
, ibs_data
.regs
[1]);
590 regs
.flags
|= PERF_EFLAGS_EXACT
;
593 if (event
->attr
.sample_type
& PERF_SAMPLE_RAW
) {
594 raw
.size
= sizeof(u32
) + ibs_data
.size
;
595 raw
.data
= ibs_data
.data
;
599 throttle
= perf_event_overflow(event
, &data
, ®s
);
602 perf_ibs_disable_event(perf_ibs
, hwc
, *config
);
604 perf_ibs_enable_event(perf_ibs
, hwc
, period
>> 4);
606 perf_event_update_userpage(event
);
612 perf_ibs_nmi_handler(unsigned int cmd
, struct pt_regs
*regs
)
616 handled
+= perf_ibs_handle_irq(&perf_ibs_fetch
, regs
);
617 handled
+= perf_ibs_handle_irq(&perf_ibs_op
, regs
);
620 inc_irq_stat(apic_perf_irqs
);
624 NOKPROBE_SYMBOL(perf_ibs_nmi_handler
);
626 static __init
int perf_ibs_pmu_init(struct perf_ibs
*perf_ibs
, char *name
)
628 struct cpu_perf_ibs __percpu
*pcpu
;
631 pcpu
= alloc_percpu(struct cpu_perf_ibs
);
635 perf_ibs
->pcpu
= pcpu
;
637 /* register attributes */
638 if (perf_ibs
->format_attrs
[0]) {
639 memset(&perf_ibs
->format_group
, 0, sizeof(perf_ibs
->format_group
));
640 perf_ibs
->format_group
.name
= "format";
641 perf_ibs
->format_group
.attrs
= perf_ibs
->format_attrs
;
643 memset(&perf_ibs
->attr_groups
, 0, sizeof(perf_ibs
->attr_groups
));
644 perf_ibs
->attr_groups
[0] = &perf_ibs
->format_group
;
645 perf_ibs
->pmu
.attr_groups
= perf_ibs
->attr_groups
;
648 ret
= perf_pmu_register(&perf_ibs
->pmu
, name
, -1);
650 perf_ibs
->pcpu
= NULL
;
657 static __init
int perf_event_ibs_init(void)
659 struct attribute
**attr
= ibs_op_format_attrs
;
662 return -ENODEV
; /* ibs not supported by the cpu */
664 perf_ibs_pmu_init(&perf_ibs_fetch
, "ibs_fetch");
666 if (ibs_caps
& IBS_CAPS_OPCNT
) {
667 perf_ibs_op
.config_mask
|= IBS_OP_CNT_CTL
;
668 *attr
++ = &format_attr_cnt_ctl
.attr
;
670 perf_ibs_pmu_init(&perf_ibs_op
, "ibs_op");
672 register_nmi_handler(NMI_LOCAL
, perf_ibs_nmi_handler
, 0, "perf_ibs");
673 printk(KERN_INFO
"perf: AMD IBS detected (0x%08x)\n", ibs_caps
);
678 #else /* defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD) */
680 static __init
int perf_event_ibs_init(void) { return 0; }
684 /* IBS - apic initialization, for perf and oprofile */
686 static __init u32
__get_ibs_caps(void)
689 unsigned int max_level
;
691 if (!boot_cpu_has(X86_FEATURE_IBS
))
694 /* check IBS cpuid feature flags */
695 max_level
= cpuid_eax(0x80000000);
696 if (max_level
< IBS_CPUID_FEATURES
)
697 return IBS_CAPS_DEFAULT
;
699 caps
= cpuid_eax(IBS_CPUID_FEATURES
);
700 if (!(caps
& IBS_CAPS_AVAIL
))
701 /* cpuid flags not valid */
702 return IBS_CAPS_DEFAULT
;
707 u32
get_ibs_caps(void)
712 EXPORT_SYMBOL(get_ibs_caps
);
714 static inline int get_eilvt(int offset
)
716 return !setup_APIC_eilvt(offset
, 0, APIC_EILVT_MSG_NMI
, 1);
719 static inline int put_eilvt(int offset
)
721 return !setup_APIC_eilvt(offset
, 0, 0, 1);
725 * Check and reserve APIC extended interrupt LVT offset for IBS if available.
727 static inline int ibs_eilvt_valid(void)
735 rdmsrl(MSR_AMD64_IBSCTL
, val
);
736 offset
= val
& IBSCTL_LVT_OFFSET_MASK
;
738 if (!(val
& IBSCTL_LVT_OFFSET_VALID
)) {
739 pr_err(FW_BUG
"cpu %d, invalid IBS interrupt offset %d (MSR%08X=0x%016llx)\n",
740 smp_processor_id(), offset
, MSR_AMD64_IBSCTL
, val
);
744 if (!get_eilvt(offset
)) {
745 pr_err(FW_BUG
"cpu %d, IBS interrupt offset %d not available (MSR%08X=0x%016llx)\n",
746 smp_processor_id(), offset
, MSR_AMD64_IBSCTL
, val
);
757 static int setup_ibs_ctl(int ibs_eilvt_off
)
759 struct pci_dev
*cpu_cfg
;
766 cpu_cfg
= pci_get_device(PCI_VENDOR_ID_AMD
,
767 PCI_DEVICE_ID_AMD_10H_NB_MISC
,
772 pci_write_config_dword(cpu_cfg
, IBSCTL
, ibs_eilvt_off
773 | IBSCTL_LVT_OFFSET_VALID
);
774 pci_read_config_dword(cpu_cfg
, IBSCTL
, &value
);
775 if (value
!= (ibs_eilvt_off
| IBSCTL_LVT_OFFSET_VALID
)) {
776 pci_dev_put(cpu_cfg
);
777 printk(KERN_DEBUG
"Failed to setup IBS LVT offset, "
778 "IBSCTL = 0x%08x\n", value
);
784 printk(KERN_DEBUG
"No CPU node configured for IBS\n");
792 * This runs only on the current cpu. We try to find an LVT offset and
793 * setup the local APIC. For this we must disable preemption. On
794 * success we initialize all nodes with this offset. This updates then
795 * the offset in the IBS_CTL per-node msr. The per-core APIC setup of
796 * the IBS interrupt vector is handled by perf_ibs_cpu_notifier that
797 * is using the new offset.
799 static void force_ibs_eilvt_setup(void)
805 /* find the next free available EILVT entry, skip offset 0 */
806 for (offset
= 1; offset
< APIC_EILVT_NR_MAX
; offset
++) {
807 if (get_eilvt(offset
))
812 if (offset
== APIC_EILVT_NR_MAX
) {
813 printk(KERN_DEBUG
"No EILVT entry available\n");
817 ret
= setup_ibs_ctl(offset
);
821 if (!ibs_eilvt_valid())
824 pr_info("IBS: LVT offset %d assigned\n", offset
);
834 static void ibs_eilvt_setup(void)
837 * Force LVT offset assignment for family 10h: The offsets are
838 * not assigned by the BIOS for this family, so the OS is
839 * responsible for doing it. If the OS assignment fails, fall
840 * back to BIOS settings and try to setup this.
842 if (boot_cpu_data
.x86
== 0x10)
843 force_ibs_eilvt_setup();
846 static inline int get_ibs_lvt_offset(void)
850 rdmsrl(MSR_AMD64_IBSCTL
, val
);
851 if (!(val
& IBSCTL_LVT_OFFSET_VALID
))
854 return val
& IBSCTL_LVT_OFFSET_MASK
;
857 static void setup_APIC_ibs(void *dummy
)
861 offset
= get_ibs_lvt_offset();
865 if (!setup_APIC_eilvt(offset
, 0, APIC_EILVT_MSG_NMI
, 0))
868 pr_warn("perf: IBS APIC setup failed on cpu #%d\n",
872 static void clear_APIC_ibs(void *dummy
)
876 offset
= get_ibs_lvt_offset();
878 setup_APIC_eilvt(offset
, 0, APIC_EILVT_MSG_FIX
, 1);
883 static int perf_ibs_suspend(void)
885 clear_APIC_ibs(NULL
);
889 static void perf_ibs_resume(void)
892 setup_APIC_ibs(NULL
);
895 static struct syscore_ops perf_ibs_syscore_ops
= {
896 .resume
= perf_ibs_resume
,
897 .suspend
= perf_ibs_suspend
,
900 static void perf_ibs_pm_init(void)
902 register_syscore_ops(&perf_ibs_syscore_ops
);
907 static inline void perf_ibs_pm_init(void) { }
912 perf_ibs_cpu_notifier(struct notifier_block
*self
, unsigned long action
, void *hcpu
)
914 switch (action
& ~CPU_TASKS_FROZEN
) {
916 setup_APIC_ibs(NULL
);
919 clear_APIC_ibs(NULL
);
928 static __init
int amd_ibs_init(void)
933 caps
= __get_ibs_caps();
935 return -ENODEV
; /* ibs not supported by the cpu */
939 if (!ibs_eilvt_valid())
943 cpu_notifier_register_begin();
945 /* make ibs_caps visible to other cpus: */
947 smp_call_function(setup_APIC_ibs
, NULL
, 1);
948 __perf_cpu_notifier(perf_ibs_cpu_notifier
);
949 cpu_notifier_register_done();
951 ret
= perf_event_ibs_init();
954 pr_err("Failed to setup IBS, %d\n", ret
);
958 /* Since we need the pci subsystem to init ibs we can't do this earlier: */
959 device_initcall(amd_ibs_init
);