1 /*
2 * Performance events - AMD IBS
3 *
4 * Copyright (C) 2011 Advanced Micro Devices, Inc., Robert Richter
5 *
6 * For licencing details see kernel-base/COPYING
7 */
8
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>
16
17 #include <asm/apic.h>
18
19 #include "../perf_event.h"
20
21 static u32 ibs_caps;
22
23 #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD)
24
25 #include <linux/kprobes.h>
26 #include <linux/hardirq.h>
27
28 #include <asm/nmi.h>
29
30 #define IBS_FETCH_CONFIG_MASK (IBS_FETCH_RAND_EN | IBS_FETCH_MAX_CNT)
31 #define IBS_OP_CONFIG_MASK IBS_OP_MAX_CNT
32
33
34 /*
35 * IBS states:
36 *
37 * ENABLED; tracks the pmu::add(), pmu::del() state, when set the counter is taken
38 * and any further add()s must fail.
39 *
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).
43 *
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).
48 *
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.
54 *
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.
60 *
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.
64 *
65 * XXX: we could probably be using !atomic bitops for all this.
66 */
67
68 enum ibs_states {
69 IBS_ENABLED = 0,
70 IBS_STARTED = 1,
71 IBS_STOPPING = 2,
72 IBS_STOPPED = 3,
73
74 IBS_MAX_STATES,
75 };
76
77 struct cpu_perf_ibs {
78 struct perf_event *event;
79 unsigned long state[BITS_TO_LONGS(IBS_MAX_STATES)];
80 };
81
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;
94
95 struct attribute **format_attrs;
96 struct attribute_group format_group;
97 const struct attribute_group *attr_groups[2];
98
99 u64 (*get_count)(u64 config);
100 };
101
102 struct perf_ibs_data {
103 u32 size;
104 union {
105 u32 data[0]; /* data buffer starts here */
106 u32 caps;
107 };
108 u64 regs[MSR_AMD64_IBS_REG_COUNT_MAX];
109 };
110
111 static int
perf_event_set_period(struct hw_perf_event * hwc,u64 min,u64 max,u64 * hw_period)112 perf_event_set_period(struct hw_perf_event *hwc, u64 min, u64 max, u64 *hw_period)
113 {
114 s64 left = local64_read(&hwc->period_left);
115 s64 period = hwc->sample_period;
116 int overflow = 0;
117
118 /*
119 * If we are way outside a reasonable range then just skip forward:
120 */
121 if (unlikely(left <= -period)) {
122 left = period;
123 local64_set(&hwc->period_left, left);
124 hwc->last_period = period;
125 overflow = 1;
126 }
127
128 if (unlikely(left < (s64)min)) {
129 left += period;
130 local64_set(&hwc->period_left, left);
131 hwc->last_period = period;
132 overflow = 1;
133 }
134
135 /*
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.
140 */
141 if (left > max) {
142 left -= max;
143 if (left > max)
144 left = max;
145 else if (left < min)
146 left = min;
147 }
148
149 *hw_period = (u64)left;
150
151 return overflow;
152 }
153
154 static int
perf_event_try_update(struct perf_event * event,u64 new_raw_count,int width)155 perf_event_try_update(struct perf_event *event, u64 new_raw_count, int width)
156 {
157 struct hw_perf_event *hwc = &event->hw;
158 int shift = 64 - width;
159 u64 prev_raw_count;
160 u64 delta;
161
162 /*
163 * Careful: an NMI might modify the previous event value.
164 *
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:
168 */
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;
173
174 /*
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.
178 *
179 * Careful, not all hw sign-extends above the physical width
180 * of the count.
181 */
182 delta = (new_raw_count << shift) - (prev_raw_count << shift);
183 delta >>= shift;
184
185 local64_add(delta, &event->count);
186 local64_sub(delta, &hwc->period_left);
187
188 return 1;
189 }
190
191 static struct perf_ibs perf_ibs_fetch;
192 static struct perf_ibs perf_ibs_op;
193
get_ibs_pmu(int type)194 static struct perf_ibs *get_ibs_pmu(int type)
195 {
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;
201 }
202
203 /*
204 * Use IBS for precise event sampling:
205 *
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
209 *
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.
213 *
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.
218 *
219 */
perf_ibs_precise_event(struct perf_event * event,u64 * config)220 static int perf_ibs_precise_event(struct perf_event *event, u64 *config)
221 {
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;
230 }
231
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;
238 }
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;
248 }
249 break;
250 default:
251 return -ENOENT;
252 }
253
254 return -EOPNOTSUPP;
255 }
256
257 static const struct perf_event_attr ibs_notsupp = {
258 .exclude_user = 1,
259 .exclude_kernel = 1,
260 .exclude_hv = 1,
261 .exclude_idle = 1,
262 .exclude_host = 1,
263 .exclude_guest = 1,
264 };
265
perf_ibs_init(struct perf_event * event)266 static int perf_ibs_init(struct perf_event *event)
267 {
268 struct hw_perf_event *hwc = &event->hw;
269 struct perf_ibs *perf_ibs;
270 u64 max_cnt, config;
271 int ret;
272
273 perf_ibs = get_ibs_pmu(event->attr.type);
274 if (perf_ibs) {
275 config = event->attr.config;
276 } else {
277 perf_ibs = &perf_ibs_op;
278 ret = perf_ibs_precise_event(event, &config);
279 if (ret)
280 return ret;
281 }
282
283 if (event->pmu != &perf_ibs->pmu)
284 return -ENOENT;
285
286 if (perf_flags(&event->attr) & perf_flags(&ibs_notsupp))
287 return -EINVAL;
288
289 if (config & ~perf_ibs->config_mask)
290 return -EINVAL;
291
292 if (hwc->sample_period) {
293 if (config & perf_ibs->cnt_mask)
294 /* raw max_cnt may not be set */
295 return -EINVAL;
296 if (!event->attr.sample_freq && hwc->sample_period & 0x0f)
297 /*
298 * lower 4 bits can not be set in ibs max cnt,
299 * but allowing it in case we adjust the
300 * sample period to set a frequency.
301 */
302 return -EINVAL;
303 hwc->sample_period &= ~0x0FULL;
304 if (!hwc->sample_period)
305 hwc->sample_period = 0x10;
306 } else {
307 max_cnt = config & perf_ibs->cnt_mask;
308 config &= ~perf_ibs->cnt_mask;
309 event->attr.sample_period = max_cnt << 4;
310 hwc->sample_period = event->attr.sample_period;
311 }
312
313 if (!hwc->sample_period)
314 return -EINVAL;
315
316 /*
317 * If we modify hwc->sample_period, we also need to update
318 * hwc->last_period and hwc->period_left.
319 */
320 hwc->last_period = hwc->sample_period;
321 local64_set(&hwc->period_left, hwc->sample_period);
322
323 hwc->config_base = perf_ibs->msr;
324 hwc->config = config;
325
326 return 0;
327 }
328
perf_ibs_set_period(struct perf_ibs * perf_ibs,struct hw_perf_event * hwc,u64 * period)329 static int perf_ibs_set_period(struct perf_ibs *perf_ibs,
330 struct hw_perf_event *hwc, u64 *period)
331 {
332 int overflow;
333
334 /* ignore lower 4 bits in min count: */
335 overflow = perf_event_set_period(hwc, 1<<4, perf_ibs->max_period, period);
336 local64_set(&hwc->prev_count, 0);
337
338 return overflow;
339 }
340
get_ibs_fetch_count(u64 config)341 static u64 get_ibs_fetch_count(u64 config)
342 {
343 return (config & IBS_FETCH_CNT) >> 12;
344 }
345
get_ibs_op_count(u64 config)346 static u64 get_ibs_op_count(u64 config)
347 {
348 u64 count = 0;
349
350 /*
351 * If the internal 27-bit counter rolled over, the count is MaxCnt
352 * and the lower 7 bits of CurCnt are randomized.
353 * Otherwise CurCnt has the full 27-bit current counter value.
354 */
355 if (config & IBS_OP_VAL)
356 count = (config & IBS_OP_MAX_CNT) << 4;
357 else if (ibs_caps & IBS_CAPS_RDWROPCNT)
358 count = (config & IBS_OP_CUR_CNT) >> 32;
359
360 return count;
361 }
362
363 static void
perf_ibs_event_update(struct perf_ibs * perf_ibs,struct perf_event * event,u64 * config)364 perf_ibs_event_update(struct perf_ibs *perf_ibs, struct perf_event *event,
365 u64 *config)
366 {
367 u64 count = perf_ibs->get_count(*config);
368
369 /*
370 * Set width to 64 since we do not overflow on max width but
371 * instead on max count. In perf_ibs_set_period() we clear
372 * prev count manually on overflow.
373 */
374 while (!perf_event_try_update(event, count, 64)) {
375 rdmsrl(event->hw.config_base, *config);
376 count = perf_ibs->get_count(*config);
377 }
378 }
379
perf_ibs_enable_event(struct perf_ibs * perf_ibs,struct hw_perf_event * hwc,u64 config)380 static inline void perf_ibs_enable_event(struct perf_ibs *perf_ibs,
381 struct hw_perf_event *hwc, u64 config)
382 {
383 u64 tmp = hwc->config | config;
384
385 if (perf_ibs->fetch_count_reset_broken)
386 wrmsrl(hwc->config_base, tmp & ~perf_ibs->enable_mask);
387
388 wrmsrl(hwc->config_base, tmp | perf_ibs->enable_mask);
389 }
390
391 /*
392 * Erratum #420 Instruction-Based Sampling Engine May Generate
393 * Interrupt that Cannot Be Cleared:
394 *
395 * Must clear counter mask first, then clear the enable bit. See
396 * Revision Guide for AMD Family 10h Processors, Publication #41322.
397 */
perf_ibs_disable_event(struct perf_ibs * perf_ibs,struct hw_perf_event * hwc,u64 config)398 static inline void perf_ibs_disable_event(struct perf_ibs *perf_ibs,
399 struct hw_perf_event *hwc, u64 config)
400 {
401 config &= ~perf_ibs->cnt_mask;
402 if (boot_cpu_data.x86 == 0x10)
403 wrmsrl(hwc->config_base, config);
404 config &= ~perf_ibs->enable_mask;
405 wrmsrl(hwc->config_base, config);
406 }
407
408 /*
409 * We cannot restore the ibs pmu state, so we always needs to update
410 * the event while stopping it and then reset the state when starting
411 * again. Thus, ignoring PERF_EF_RELOAD and PERF_EF_UPDATE flags in
412 * perf_ibs_start()/perf_ibs_stop() and instead always do it.
413 */
perf_ibs_start(struct perf_event * event,int flags)414 static void perf_ibs_start(struct perf_event *event, int flags)
415 {
416 struct hw_perf_event *hwc = &event->hw;
417 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
418 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
419 u64 period;
420
421 if (WARN_ON_ONCE(!(hwc->state & PERF_HES_STOPPED)))
422 return;
423
424 WARN_ON_ONCE(!(hwc->state & PERF_HES_UPTODATE));
425 hwc->state = 0;
426
427 perf_ibs_set_period(perf_ibs, hwc, &period);
428 /*
429 * Set STARTED before enabling the hardware, such that a subsequent NMI
430 * must observe it.
431 */
432 set_bit(IBS_STARTED, pcpu->state);
433 clear_bit(IBS_STOPPING, pcpu->state);
434 perf_ibs_enable_event(perf_ibs, hwc, period >> 4);
435
436 perf_event_update_userpage(event);
437 }
438
perf_ibs_stop(struct perf_event * event,int flags)439 static void perf_ibs_stop(struct perf_event *event, int flags)
440 {
441 struct hw_perf_event *hwc = &event->hw;
442 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
443 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
444 u64 config;
445 int stopping;
446
447 if (test_and_set_bit(IBS_STOPPING, pcpu->state))
448 return;
449
450 stopping = test_bit(IBS_STARTED, pcpu->state);
451
452 if (!stopping && (hwc->state & PERF_HES_UPTODATE))
453 return;
454
455 rdmsrl(hwc->config_base, config);
456
457 if (stopping) {
458 /*
459 * Set STOPPED before disabling the hardware, such that it
460 * must be visible to NMIs the moment we clear the EN bit,
461 * at which point we can generate an !VALID sample which
462 * we need to consume.
463 */
464 set_bit(IBS_STOPPED, pcpu->state);
465 perf_ibs_disable_event(perf_ibs, hwc, config);
466 /*
467 * Clear STARTED after disabling the hardware; if it were
468 * cleared before an NMI hitting after the clear but before
469 * clearing the EN bit might think it a spurious NMI and not
470 * handle it.
471 *
472 * Clearing it after, however, creates the problem of the NMI
473 * handler seeing STARTED but not having a valid sample.
474 */
475 clear_bit(IBS_STARTED, pcpu->state);
476 WARN_ON_ONCE(hwc->state & PERF_HES_STOPPED);
477 hwc->state |= PERF_HES_STOPPED;
478 }
479
480 if (hwc->state & PERF_HES_UPTODATE)
481 return;
482
483 /*
484 * Clear valid bit to not count rollovers on update, rollovers
485 * are only updated in the irq handler.
486 */
487 config &= ~perf_ibs->valid_mask;
488
489 perf_ibs_event_update(perf_ibs, event, &config);
490 hwc->state |= PERF_HES_UPTODATE;
491 }
492
perf_ibs_add(struct perf_event * event,int flags)493 static int perf_ibs_add(struct perf_event *event, int flags)
494 {
495 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
496 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
497
498 if (test_and_set_bit(IBS_ENABLED, pcpu->state))
499 return -ENOSPC;
500
501 event->hw.state = PERF_HES_UPTODATE | PERF_HES_STOPPED;
502
503 pcpu->event = event;
504
505 if (flags & PERF_EF_START)
506 perf_ibs_start(event, PERF_EF_RELOAD);
507
508 return 0;
509 }
510
perf_ibs_del(struct perf_event * event,int flags)511 static void perf_ibs_del(struct perf_event *event, int flags)
512 {
513 struct perf_ibs *perf_ibs = container_of(event->pmu, struct perf_ibs, pmu);
514 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
515
516 if (!test_and_clear_bit(IBS_ENABLED, pcpu->state))
517 return;
518
519 perf_ibs_stop(event, PERF_EF_UPDATE);
520
521 pcpu->event = NULL;
522
523 perf_event_update_userpage(event);
524 }
525
perf_ibs_read(struct perf_event * event)526 static void perf_ibs_read(struct perf_event *event) { }
527
528 PMU_FORMAT_ATTR(rand_en, "config:57");
529 PMU_FORMAT_ATTR(cnt_ctl, "config:19");
530
531 static struct attribute *ibs_fetch_format_attrs[] = {
532 &format_attr_rand_en.attr,
533 NULL,
534 };
535
536 static struct attribute *ibs_op_format_attrs[] = {
537 NULL, /* &format_attr_cnt_ctl.attr if IBS_CAPS_OPCNT */
538 NULL,
539 };
540
541 static struct perf_ibs perf_ibs_fetch = {
542 .pmu = {
543 .task_ctx_nr = perf_invalid_context,
544
545 .event_init = perf_ibs_init,
546 .add = perf_ibs_add,
547 .del = perf_ibs_del,
548 .start = perf_ibs_start,
549 .stop = perf_ibs_stop,
550 .read = perf_ibs_read,
551 },
552 .msr = MSR_AMD64_IBSFETCHCTL,
553 .config_mask = IBS_FETCH_CONFIG_MASK,
554 .cnt_mask = IBS_FETCH_MAX_CNT,
555 .enable_mask = IBS_FETCH_ENABLE,
556 .valid_mask = IBS_FETCH_VAL,
557 .max_period = IBS_FETCH_MAX_CNT << 4,
558 .offset_mask = { MSR_AMD64_IBSFETCH_REG_MASK },
559 .offset_max = MSR_AMD64_IBSFETCH_REG_COUNT,
560 .format_attrs = ibs_fetch_format_attrs,
561
562 .get_count = get_ibs_fetch_count,
563 };
564
565 static struct perf_ibs perf_ibs_op = {
566 .pmu = {
567 .task_ctx_nr = perf_invalid_context,
568
569 .event_init = perf_ibs_init,
570 .add = perf_ibs_add,
571 .del = perf_ibs_del,
572 .start = perf_ibs_start,
573 .stop = perf_ibs_stop,
574 .read = perf_ibs_read,
575 },
576 .msr = MSR_AMD64_IBSOPCTL,
577 .config_mask = IBS_OP_CONFIG_MASK,
578 .cnt_mask = IBS_OP_MAX_CNT | IBS_OP_CUR_CNT |
579 IBS_OP_CUR_CNT_RAND,
580 .enable_mask = IBS_OP_ENABLE,
581 .valid_mask = IBS_OP_VAL,
582 .max_period = IBS_OP_MAX_CNT << 4,
583 .offset_mask = { MSR_AMD64_IBSOP_REG_MASK },
584 .offset_max = MSR_AMD64_IBSOP_REG_COUNT,
585 .format_attrs = ibs_op_format_attrs,
586
587 .get_count = get_ibs_op_count,
588 };
589
perf_ibs_handle_irq(struct perf_ibs * perf_ibs,struct pt_regs * iregs)590 static int perf_ibs_handle_irq(struct perf_ibs *perf_ibs, struct pt_regs *iregs)
591 {
592 struct cpu_perf_ibs *pcpu = this_cpu_ptr(perf_ibs->pcpu);
593 struct perf_event *event = pcpu->event;
594 struct hw_perf_event *hwc;
595 struct perf_sample_data data;
596 struct perf_raw_record raw;
597 struct pt_regs regs;
598 struct perf_ibs_data ibs_data;
599 int offset, size, check_rip, offset_max, throttle = 0;
600 unsigned int msr;
601 u64 *buf, *config, period;
602
603 if (!test_bit(IBS_STARTED, pcpu->state)) {
604 fail:
605 /*
606 * Catch spurious interrupts after stopping IBS: After
607 * disabling IBS there could be still incoming NMIs
608 * with samples that even have the valid bit cleared.
609 * Mark all this NMIs as handled.
610 */
611 if (test_and_clear_bit(IBS_STOPPED, pcpu->state))
612 return 1;
613
614 return 0;
615 }
616
617 if (WARN_ON_ONCE(!event))
618 goto fail;
619
620 hwc = &event->hw;
621 msr = hwc->config_base;
622 buf = ibs_data.regs;
623 rdmsrl(msr, *buf);
624 if (!(*buf++ & perf_ibs->valid_mask))
625 goto fail;
626
627 config = &ibs_data.regs[0];
628 perf_ibs_event_update(perf_ibs, event, config);
629 perf_sample_data_init(&data, 0, hwc->last_period);
630 if (!perf_ibs_set_period(perf_ibs, hwc, &period))
631 goto out; /* no sw counter overflow */
632
633 ibs_data.caps = ibs_caps;
634 size = 1;
635 offset = 1;
636 check_rip = (perf_ibs == &perf_ibs_op && (ibs_caps & IBS_CAPS_RIPINVALIDCHK));
637 if (event->attr.sample_type & PERF_SAMPLE_RAW)
638 offset_max = perf_ibs->offset_max;
639 else if (check_rip)
640 offset_max = 3;
641 else
642 offset_max = 1;
643 do {
644 rdmsrl(msr + offset, *buf++);
645 size++;
646 offset = find_next_bit(perf_ibs->offset_mask,
647 perf_ibs->offset_max,
648 offset + 1);
649 } while (offset < offset_max);
650 /*
651 * Read IbsBrTarget, IbsOpData4, and IbsExtdCtl separately
652 * depending on their availability.
653 * Can't add to offset_max as they are staggered
654 */
655 if (event->attr.sample_type & PERF_SAMPLE_RAW) {
656 if (perf_ibs == &perf_ibs_op) {
657 if (ibs_caps & IBS_CAPS_BRNTRGT) {
658 rdmsrl(MSR_AMD64_IBSBRTARGET, *buf++);
659 size++;
660 }
661 if (ibs_caps & IBS_CAPS_OPDATA4) {
662 rdmsrl(MSR_AMD64_IBSOPDATA4, *buf++);
663 size++;
664 }
665 }
666 if (perf_ibs == &perf_ibs_fetch && (ibs_caps & IBS_CAPS_FETCHCTLEXTD)) {
667 rdmsrl(MSR_AMD64_ICIBSEXTDCTL, *buf++);
668 size++;
669 }
670 }
671 ibs_data.size = sizeof(u64) * size;
672
673 regs = *iregs;
674 if (check_rip && (ibs_data.regs[2] & IBS_RIP_INVALID)) {
675 regs.flags &= ~PERF_EFLAGS_EXACT;
676 } else {
677 set_linear_ip(®s, ibs_data.regs[1]);
678 regs.flags |= PERF_EFLAGS_EXACT;
679 }
680
681 if (event->attr.sample_type & PERF_SAMPLE_RAW) {
682 raw = (struct perf_raw_record){
683 .frag = {
684 .size = sizeof(u32) + ibs_data.size,
685 .data = ibs_data.data,
686 },
687 };
688 data.raw = &raw;
689 }
690
691 throttle = perf_event_overflow(event, &data, ®s);
692 out:
693 if (throttle) {
694 perf_ibs_stop(event, 0);
695 } else {
696 period >>= 4;
697
698 if ((ibs_caps & IBS_CAPS_RDWROPCNT) &&
699 (*config & IBS_OP_CNT_CTL))
700 period |= *config & IBS_OP_CUR_CNT_RAND;
701
702 perf_ibs_enable_event(perf_ibs, hwc, period);
703 }
704
705 perf_event_update_userpage(event);
706
707 return 1;
708 }
709
710 static int
perf_ibs_nmi_handler(unsigned int cmd,struct pt_regs * regs)711 perf_ibs_nmi_handler(unsigned int cmd, struct pt_regs *regs)
712 {
713 u64 stamp = sched_clock();
714 int handled = 0;
715
716 handled += perf_ibs_handle_irq(&perf_ibs_fetch, regs);
717 handled += perf_ibs_handle_irq(&perf_ibs_op, regs);
718
719 if (handled)
720 inc_irq_stat(apic_perf_irqs);
721
722 perf_sample_event_took(sched_clock() - stamp);
723
724 return handled;
725 }
726 NOKPROBE_SYMBOL(perf_ibs_nmi_handler);
727
perf_ibs_pmu_init(struct perf_ibs * perf_ibs,char * name)728 static __init int perf_ibs_pmu_init(struct perf_ibs *perf_ibs, char *name)
729 {
730 struct cpu_perf_ibs __percpu *pcpu;
731 int ret;
732
733 pcpu = alloc_percpu(struct cpu_perf_ibs);
734 if (!pcpu)
735 return -ENOMEM;
736
737 perf_ibs->pcpu = pcpu;
738
739 /* register attributes */
740 if (perf_ibs->format_attrs[0]) {
741 memset(&perf_ibs->format_group, 0, sizeof(perf_ibs->format_group));
742 perf_ibs->format_group.name = "format";
743 perf_ibs->format_group.attrs = perf_ibs->format_attrs;
744
745 memset(&perf_ibs->attr_groups, 0, sizeof(perf_ibs->attr_groups));
746 perf_ibs->attr_groups[0] = &perf_ibs->format_group;
747 perf_ibs->pmu.attr_groups = perf_ibs->attr_groups;
748 }
749
750 ret = perf_pmu_register(&perf_ibs->pmu, name, -1);
751 if (ret) {
752 perf_ibs->pcpu = NULL;
753 free_percpu(pcpu);
754 }
755
756 return ret;
757 }
758
perf_event_ibs_init(void)759 static __init void perf_event_ibs_init(void)
760 {
761 struct attribute **attr = ibs_op_format_attrs;
762
763 /*
764 * Some chips fail to reset the fetch count when it is written; instead
765 * they need a 0-1 transition of IbsFetchEn.
766 */
767 if (boot_cpu_data.x86 >= 0x16 && boot_cpu_data.x86 <= 0x18)
768 perf_ibs_fetch.fetch_count_reset_broken = 1;
769
770 perf_ibs_pmu_init(&perf_ibs_fetch, "ibs_fetch");
771
772 if (ibs_caps & IBS_CAPS_OPCNT) {
773 perf_ibs_op.config_mask |= IBS_OP_CNT_CTL;
774 *attr++ = &format_attr_cnt_ctl.attr;
775 }
776 perf_ibs_pmu_init(&perf_ibs_op, "ibs_op");
777
778 register_nmi_handler(NMI_LOCAL, perf_ibs_nmi_handler, 0, "perf_ibs");
779 pr_info("perf: AMD IBS detected (0x%08x)\n", ibs_caps);
780 }
781
782 #else /* defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_AMD) */
783
perf_event_ibs_init(void)784 static __init void perf_event_ibs_init(void) { }
785
786 #endif
787
788 /* IBS - apic initialization, for perf and oprofile */
789
__get_ibs_caps(void)790 static __init u32 __get_ibs_caps(void)
791 {
792 u32 caps;
793 unsigned int max_level;
794
795 if (!boot_cpu_has(X86_FEATURE_IBS))
796 return 0;
797
798 /* check IBS cpuid feature flags */
799 max_level = cpuid_eax(0x80000000);
800 if (max_level < IBS_CPUID_FEATURES)
801 return IBS_CAPS_DEFAULT;
802
803 caps = cpuid_eax(IBS_CPUID_FEATURES);
804 if (!(caps & IBS_CAPS_AVAIL))
805 /* cpuid flags not valid */
806 return IBS_CAPS_DEFAULT;
807
808 return caps;
809 }
810
get_ibs_caps(void)811 u32 get_ibs_caps(void)
812 {
813 return ibs_caps;
814 }
815
816 EXPORT_SYMBOL(get_ibs_caps);
817
get_eilvt(int offset)818 static inline int get_eilvt(int offset)
819 {
820 return !setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_NMI, 1);
821 }
822
put_eilvt(int offset)823 static inline int put_eilvt(int offset)
824 {
825 return !setup_APIC_eilvt(offset, 0, 0, 1);
826 }
827
828 /*
829 * Check and reserve APIC extended interrupt LVT offset for IBS if available.
830 */
ibs_eilvt_valid(void)831 static inline int ibs_eilvt_valid(void)
832 {
833 int offset;
834 u64 val;
835 int valid = 0;
836
837 preempt_disable();
838
839 rdmsrl(MSR_AMD64_IBSCTL, val);
840 offset = val & IBSCTL_LVT_OFFSET_MASK;
841
842 if (!(val & IBSCTL_LVT_OFFSET_VALID)) {
843 pr_err(FW_BUG "cpu %d, invalid IBS interrupt offset %d (MSR%08X=0x%016llx)\n",
844 smp_processor_id(), offset, MSR_AMD64_IBSCTL, val);
845 goto out;
846 }
847
848 if (!get_eilvt(offset)) {
849 pr_err(FW_BUG "cpu %d, IBS interrupt offset %d not available (MSR%08X=0x%016llx)\n",
850 smp_processor_id(), offset, MSR_AMD64_IBSCTL, val);
851 goto out;
852 }
853
854 valid = 1;
855 out:
856 preempt_enable();
857
858 return valid;
859 }
860
setup_ibs_ctl(int ibs_eilvt_off)861 static int setup_ibs_ctl(int ibs_eilvt_off)
862 {
863 struct pci_dev *cpu_cfg;
864 int nodes;
865 u32 value = 0;
866
867 nodes = 0;
868 cpu_cfg = NULL;
869 do {
870 cpu_cfg = pci_get_device(PCI_VENDOR_ID_AMD,
871 PCI_DEVICE_ID_AMD_10H_NB_MISC,
872 cpu_cfg);
873 if (!cpu_cfg)
874 break;
875 ++nodes;
876 pci_write_config_dword(cpu_cfg, IBSCTL, ibs_eilvt_off
877 | IBSCTL_LVT_OFFSET_VALID);
878 pci_read_config_dword(cpu_cfg, IBSCTL, &value);
879 if (value != (ibs_eilvt_off | IBSCTL_LVT_OFFSET_VALID)) {
880 pci_dev_put(cpu_cfg);
881 pr_debug("Failed to setup IBS LVT offset, IBSCTL = 0x%08x\n",
882 value);
883 return -EINVAL;
884 }
885 } while (1);
886
887 if (!nodes) {
888 pr_debug("No CPU node configured for IBS\n");
889 return -ENODEV;
890 }
891
892 return 0;
893 }
894
895 /*
896 * This runs only on the current cpu. We try to find an LVT offset and
897 * setup the local APIC. For this we must disable preemption. On
898 * success we initialize all nodes with this offset. This updates then
899 * the offset in the IBS_CTL per-node msr. The per-core APIC setup of
900 * the IBS interrupt vector is handled by perf_ibs_cpu_notifier that
901 * is using the new offset.
902 */
force_ibs_eilvt_setup(void)903 static void force_ibs_eilvt_setup(void)
904 {
905 int offset;
906 int ret;
907
908 preempt_disable();
909 /* find the next free available EILVT entry, skip offset 0 */
910 for (offset = 1; offset < APIC_EILVT_NR_MAX; offset++) {
911 if (get_eilvt(offset))
912 break;
913 }
914 preempt_enable();
915
916 if (offset == APIC_EILVT_NR_MAX) {
917 pr_debug("No EILVT entry available\n");
918 return;
919 }
920
921 ret = setup_ibs_ctl(offset);
922 if (ret)
923 goto out;
924
925 if (!ibs_eilvt_valid())
926 goto out;
927
928 pr_info("LVT offset %d assigned\n", offset);
929
930 return;
931 out:
932 preempt_disable();
933 put_eilvt(offset);
934 preempt_enable();
935 return;
936 }
937
ibs_eilvt_setup(void)938 static void ibs_eilvt_setup(void)
939 {
940 /*
941 * Force LVT offset assignment for family 10h: The offsets are
942 * not assigned by the BIOS for this family, so the OS is
943 * responsible for doing it. If the OS assignment fails, fall
944 * back to BIOS settings and try to setup this.
945 */
946 if (boot_cpu_data.x86 == 0x10)
947 force_ibs_eilvt_setup();
948 }
949
get_ibs_lvt_offset(void)950 static inline int get_ibs_lvt_offset(void)
951 {
952 u64 val;
953
954 rdmsrl(MSR_AMD64_IBSCTL, val);
955 if (!(val & IBSCTL_LVT_OFFSET_VALID))
956 return -EINVAL;
957
958 return val & IBSCTL_LVT_OFFSET_MASK;
959 }
960
setup_APIC_ibs(void)961 static void setup_APIC_ibs(void)
962 {
963 int offset;
964
965 offset = get_ibs_lvt_offset();
966 if (offset < 0)
967 goto failed;
968
969 if (!setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_NMI, 0))
970 return;
971 failed:
972 pr_warn("perf: IBS APIC setup failed on cpu #%d\n",
973 smp_processor_id());
974 }
975
clear_APIC_ibs(void)976 static void clear_APIC_ibs(void)
977 {
978 int offset;
979
980 offset = get_ibs_lvt_offset();
981 if (offset >= 0)
982 setup_APIC_eilvt(offset, 0, APIC_EILVT_MSG_FIX, 1);
983 }
984
x86_pmu_amd_ibs_starting_cpu(unsigned int cpu)985 static int x86_pmu_amd_ibs_starting_cpu(unsigned int cpu)
986 {
987 setup_APIC_ibs();
988 return 0;
989 }
990
991 #ifdef CONFIG_PM
992
perf_ibs_suspend(void)993 static int perf_ibs_suspend(void)
994 {
995 clear_APIC_ibs();
996 return 0;
997 }
998
perf_ibs_resume(void)999 static void perf_ibs_resume(void)
1000 {
1001 ibs_eilvt_setup();
1002 setup_APIC_ibs();
1003 }
1004
1005 static struct syscore_ops perf_ibs_syscore_ops = {
1006 .resume = perf_ibs_resume,
1007 .suspend = perf_ibs_suspend,
1008 };
1009
perf_ibs_pm_init(void)1010 static void perf_ibs_pm_init(void)
1011 {
1012 register_syscore_ops(&perf_ibs_syscore_ops);
1013 }
1014
1015 #else
1016
perf_ibs_pm_init(void)1017 static inline void perf_ibs_pm_init(void) { }
1018
1019 #endif
1020
x86_pmu_amd_ibs_dying_cpu(unsigned int cpu)1021 static int x86_pmu_amd_ibs_dying_cpu(unsigned int cpu)
1022 {
1023 clear_APIC_ibs();
1024 return 0;
1025 }
1026
amd_ibs_init(void)1027 static __init int amd_ibs_init(void)
1028 {
1029 u32 caps;
1030
1031 caps = __get_ibs_caps();
1032 if (!caps)
1033 return -ENODEV; /* ibs not supported by the cpu */
1034
1035 ibs_eilvt_setup();
1036
1037 if (!ibs_eilvt_valid())
1038 return -EINVAL;
1039
1040 perf_ibs_pm_init();
1041
1042 ibs_caps = caps;
1043 /* make ibs_caps visible to other cpus: */
1044 smp_mb();
1045 /*
1046 * x86_pmu_amd_ibs_starting_cpu will be called from core on
1047 * all online cpus.
1048 */
1049 cpuhp_setup_state(CPUHP_AP_PERF_X86_AMD_IBS_STARTING,
1050 "perf/x86/amd/ibs:starting",
1051 x86_pmu_amd_ibs_starting_cpu,
1052 x86_pmu_amd_ibs_dying_cpu);
1053
1054 perf_event_ibs_init();
1055
1056 return 0;
1057 }
1058
1059 /* Since we need the pci subsystem to init ibs we can't do this earlier: */
1060 device_initcall(amd_ibs_init);
1061