2 * Intel(R) Processor Trace PMU driver for perf
3 * Copyright (c) 2013-2014, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * Intel PT is specified in the Intel Architecture Instruction Set Extensions
15 * Programming Reference:
16 * http://software.intel.com/en-us/intel-isa-extensions
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/types.h>
24 #include <linux/slab.h>
25 #include <linux/device.h>
27 #include <asm/perf_event.h>
30 #include <asm/intel_pt.h>
31 #include <asm/intel-family.h>
33 #include "../perf_event.h"
36 static DEFINE_PER_CPU(struct pt
, pt_ctx
);
38 static struct pt_pmu pt_pmu
;
41 * Capabilities of Intel PT hardware, such as number of address bits or
42 * supported output schemes, are cached and exported to userspace as "caps"
43 * attribute group of pt pmu device
44 * (/sys/bus/event_source/devices/intel_pt/caps/) so that userspace can store
45 * relevant bits together with intel_pt traces.
47 * These are necessary for both trace decoding (payloads_lip, contains address
48 * width encoded in IP-related packets), and event configuration (bitmasks with
49 * permitted values for certain bit fields).
51 #define PT_CAP(_n, _l, _r, _m) \
52 [PT_CAP_ ## _n] = { .name = __stringify(_n), .leaf = _l, \
53 .reg = _r, .mask = _m }
55 static struct pt_cap_desc
{
61 PT_CAP(max_subleaf
, 0, CPUID_EAX
, 0xffffffff),
62 PT_CAP(cr3_filtering
, 0, CPUID_EBX
, BIT(0)),
63 PT_CAP(psb_cyc
, 0, CPUID_EBX
, BIT(1)),
64 PT_CAP(ip_filtering
, 0, CPUID_EBX
, BIT(2)),
65 PT_CAP(mtc
, 0, CPUID_EBX
, BIT(3)),
66 PT_CAP(ptwrite
, 0, CPUID_EBX
, BIT(4)),
67 PT_CAP(power_event_trace
, 0, CPUID_EBX
, BIT(5)),
68 PT_CAP(topa_output
, 0, CPUID_ECX
, BIT(0)),
69 PT_CAP(topa_multiple_entries
, 0, CPUID_ECX
, BIT(1)),
70 PT_CAP(single_range_output
, 0, CPUID_ECX
, BIT(2)),
71 PT_CAP(payloads_lip
, 0, CPUID_ECX
, BIT(31)),
72 PT_CAP(num_address_ranges
, 1, CPUID_EAX
, 0x3),
73 PT_CAP(mtc_periods
, 1, CPUID_EAX
, 0xffff0000),
74 PT_CAP(cycle_thresholds
, 1, CPUID_EBX
, 0xffff),
75 PT_CAP(psb_periods
, 1, CPUID_EBX
, 0xffff0000),
78 static u32
pt_cap_get(enum pt_capabilities cap
)
80 struct pt_cap_desc
*cd
= &pt_caps
[cap
];
81 u32 c
= pt_pmu
.caps
[cd
->leaf
* PT_CPUID_REGS_NUM
+ cd
->reg
];
82 unsigned int shift
= __ffs(cd
->mask
);
84 return (c
& cd
->mask
) >> shift
;
87 static ssize_t
pt_cap_show(struct device
*cdev
,
88 struct device_attribute
*attr
,
91 struct dev_ext_attribute
*ea
=
92 container_of(attr
, struct dev_ext_attribute
, attr
);
93 enum pt_capabilities cap
= (long)ea
->var
;
95 return snprintf(buf
, PAGE_SIZE
, "%x\n", pt_cap_get(cap
));
98 static struct attribute_group pt_cap_group
= {
102 PMU_FORMAT_ATTR(pt
, "config:0" );
103 PMU_FORMAT_ATTR(cyc
, "config:1" );
104 PMU_FORMAT_ATTR(pwr_evt
, "config:4" );
105 PMU_FORMAT_ATTR(fup_on_ptw
, "config:5" );
106 PMU_FORMAT_ATTR(mtc
, "config:9" );
107 PMU_FORMAT_ATTR(tsc
, "config:10" );
108 PMU_FORMAT_ATTR(noretcomp
, "config:11" );
109 PMU_FORMAT_ATTR(ptw
, "config:12" );
110 PMU_FORMAT_ATTR(branch
, "config:13" );
111 PMU_FORMAT_ATTR(mtc_period
, "config:14-17" );
112 PMU_FORMAT_ATTR(cyc_thresh
, "config:19-22" );
113 PMU_FORMAT_ATTR(psb_period
, "config:24-27" );
115 static struct attribute
*pt_formats_attr
[] = {
116 &format_attr_pt
.attr
,
117 &format_attr_cyc
.attr
,
118 &format_attr_pwr_evt
.attr
,
119 &format_attr_fup_on_ptw
.attr
,
120 &format_attr_mtc
.attr
,
121 &format_attr_tsc
.attr
,
122 &format_attr_noretcomp
.attr
,
123 &format_attr_ptw
.attr
,
124 &format_attr_branch
.attr
,
125 &format_attr_mtc_period
.attr
,
126 &format_attr_cyc_thresh
.attr
,
127 &format_attr_psb_period
.attr
,
131 static struct attribute_group pt_format_group
= {
133 .attrs
= pt_formats_attr
,
137 pt_timing_attr_show(struct device
*dev
, struct device_attribute
*attr
,
140 struct perf_pmu_events_attr
*pmu_attr
=
141 container_of(attr
, struct perf_pmu_events_attr
, attr
);
143 switch (pmu_attr
->id
) {
145 return sprintf(page
, "%lu\n", pt_pmu
.max_nonturbo_ratio
);
147 return sprintf(page
, "%u:%u\n",
157 PMU_EVENT_ATTR(max_nonturbo_ratio
, timing_attr_max_nonturbo_ratio
, 0,
158 pt_timing_attr_show
);
159 PMU_EVENT_ATTR(tsc_art_ratio
, timing_attr_tsc_art_ratio
, 1,
160 pt_timing_attr_show
);
162 static struct attribute
*pt_timing_attr
[] = {
163 &timing_attr_max_nonturbo_ratio
.attr
.attr
,
164 &timing_attr_tsc_art_ratio
.attr
.attr
,
168 static struct attribute_group pt_timing_group
= {
169 .attrs
= pt_timing_attr
,
172 static const struct attribute_group
*pt_attr_groups
[] = {
179 static int __init
pt_pmu_hw_init(void)
181 struct dev_ext_attribute
*de_attrs
;
182 struct attribute
**attrs
;
188 rdmsrl(MSR_PLATFORM_INFO
, reg
);
189 pt_pmu
.max_nonturbo_ratio
= (reg
& 0xff00) >> 8;
192 * if available, read in TSC to core crystal clock ratio,
193 * otherwise, zero for numerator stands for "not enumerated"
196 if (boot_cpu_data
.cpuid_level
>= CPUID_TSC_LEAF
) {
197 u32 eax
, ebx
, ecx
, edx
;
199 cpuid(CPUID_TSC_LEAF
, &eax
, &ebx
, &ecx
, &edx
);
201 pt_pmu
.tsc_art_num
= ebx
;
202 pt_pmu
.tsc_art_den
= eax
;
205 /* model-specific quirks */
206 switch (boot_cpu_data
.x86_model
) {
207 case INTEL_FAM6_BROADWELL_CORE
:
208 case INTEL_FAM6_BROADWELL_XEON_D
:
209 case INTEL_FAM6_BROADWELL_GT3E
:
210 case INTEL_FAM6_BROADWELL_X
:
211 /* not setting BRANCH_EN will #GP, erratum BDM106 */
212 pt_pmu
.branch_en_always_on
= true;
218 if (boot_cpu_has(X86_FEATURE_VMX
)) {
220 * Intel SDM, 36.5 "Tracing post-VMXON" says that
221 * "IA32_VMX_MISC[bit 14]" being 1 means PT can trace
224 rdmsrl(MSR_IA32_VMX_MISC
, reg
);
231 for (i
= 0; i
< PT_CPUID_LEAVES
; i
++) {
233 &pt_pmu
.caps
[CPUID_EAX
+ i
*PT_CPUID_REGS_NUM
],
234 &pt_pmu
.caps
[CPUID_EBX
+ i
*PT_CPUID_REGS_NUM
],
235 &pt_pmu
.caps
[CPUID_ECX
+ i
*PT_CPUID_REGS_NUM
],
236 &pt_pmu
.caps
[CPUID_EDX
+ i
*PT_CPUID_REGS_NUM
]);
240 size
= sizeof(struct attribute
*) * (ARRAY_SIZE(pt_caps
)+1);
241 attrs
= kzalloc(size
, GFP_KERNEL
);
245 size
= sizeof(struct dev_ext_attribute
) * (ARRAY_SIZE(pt_caps
)+1);
246 de_attrs
= kzalloc(size
, GFP_KERNEL
);
250 for (i
= 0; i
< ARRAY_SIZE(pt_caps
); i
++) {
251 struct dev_ext_attribute
*de_attr
= de_attrs
+ i
;
253 de_attr
->attr
.attr
.name
= pt_caps
[i
].name
;
255 sysfs_attr_init(&de_attr
->attr
.attr
);
257 de_attr
->attr
.attr
.mode
= S_IRUGO
;
258 de_attr
->attr
.show
= pt_cap_show
;
259 de_attr
->var
= (void *)i
;
261 attrs
[i
] = &de_attr
->attr
.attr
;
264 pt_cap_group
.attrs
= attrs
;
274 #define RTIT_CTL_CYC_PSB (RTIT_CTL_CYCLEACC | \
275 RTIT_CTL_CYC_THRESH | \
278 #define RTIT_CTL_MTC (RTIT_CTL_MTC_EN | \
281 #define RTIT_CTL_PTW (RTIT_CTL_PTW_EN | \
285 * Bit 0 (TraceEn) in the attr.config is meaningless as the
286 * corresponding bit in the RTIT_CTL can only be controlled
287 * by the driver; therefore, repurpose it to mean: pass
288 * through the bit that was previously assumed to be always
289 * on for PT, thereby allowing the user to *not* set it if
290 * they so wish. See also pt_event_valid() and pt_config().
292 #define RTIT_CTL_PASSTHROUGH RTIT_CTL_TRACEEN
294 #define PT_CONFIG_MASK (RTIT_CTL_TRACEEN | \
297 RTIT_CTL_BRANCH_EN | \
300 RTIT_CTL_PWR_EVT_EN | \
301 RTIT_CTL_FUP_ON_PTW | \
304 static bool pt_event_valid(struct perf_event
*event
)
306 u64 config
= event
->attr
.config
;
307 u64 allowed
, requested
;
309 if ((config
& PT_CONFIG_MASK
) != config
)
312 if (config
& RTIT_CTL_CYC_PSB
) {
313 if (!pt_cap_get(PT_CAP_psb_cyc
))
316 allowed
= pt_cap_get(PT_CAP_psb_periods
);
317 requested
= (config
& RTIT_CTL_PSB_FREQ
) >>
318 RTIT_CTL_PSB_FREQ_OFFSET
;
319 if (requested
&& (!(allowed
& BIT(requested
))))
322 allowed
= pt_cap_get(PT_CAP_cycle_thresholds
);
323 requested
= (config
& RTIT_CTL_CYC_THRESH
) >>
324 RTIT_CTL_CYC_THRESH_OFFSET
;
325 if (requested
&& (!(allowed
& BIT(requested
))))
329 if (config
& RTIT_CTL_MTC
) {
331 * In the unlikely case that CPUID lists valid mtc periods,
332 * but not the mtc capability, drop out here.
334 * Spec says that setting mtc period bits while mtc bit in
335 * CPUID is 0 will #GP, so better safe than sorry.
337 if (!pt_cap_get(PT_CAP_mtc
))
340 allowed
= pt_cap_get(PT_CAP_mtc_periods
);
344 requested
= (config
& RTIT_CTL_MTC_RANGE
) >>
345 RTIT_CTL_MTC_RANGE_OFFSET
;
347 if (!(allowed
& BIT(requested
)))
351 if (config
& RTIT_CTL_PWR_EVT_EN
&&
352 !pt_cap_get(PT_CAP_power_event_trace
))
355 if (config
& RTIT_CTL_PTW
) {
356 if (!pt_cap_get(PT_CAP_ptwrite
))
359 /* FUPonPTW without PTW doesn't make sense */
360 if ((config
& RTIT_CTL_FUP_ON_PTW
) &&
361 !(config
& RTIT_CTL_PTW_EN
))
366 * Setting bit 0 (TraceEn in RTIT_CTL MSR) in the attr.config
367 * clears the assomption that BranchEn must always be enabled,
368 * as was the case with the first implementation of PT.
369 * If this bit is not set, the legacy behavior is preserved
370 * for compatibility with the older userspace.
372 * Re-using bit 0 for this purpose is fine because it is never
373 * directly set by the user; previous attempts at setting it in
374 * the attr.config resulted in -EINVAL.
376 if (config
& RTIT_CTL_PASSTHROUGH
) {
378 * Disallow not setting BRANCH_EN where BRANCH_EN is
381 if (pt_pmu
.branch_en_always_on
&&
382 !(config
& RTIT_CTL_BRANCH_EN
))
386 * Disallow BRANCH_EN without the PASSTHROUGH.
388 if (config
& RTIT_CTL_BRANCH_EN
)
396 * PT configuration helpers
397 * These all are cpu affine and operate on a local PT
400 /* Address ranges and their corresponding msr configuration registers */
401 static const struct pt_address_range
{
404 unsigned int reg_off
;
405 } pt_address_ranges
[] = {
407 .msr_a
= MSR_IA32_RTIT_ADDR0_A
,
408 .msr_b
= MSR_IA32_RTIT_ADDR0_B
,
409 .reg_off
= RTIT_CTL_ADDR0_OFFSET
,
412 .msr_a
= MSR_IA32_RTIT_ADDR1_A
,
413 .msr_b
= MSR_IA32_RTIT_ADDR1_B
,
414 .reg_off
= RTIT_CTL_ADDR1_OFFSET
,
417 .msr_a
= MSR_IA32_RTIT_ADDR2_A
,
418 .msr_b
= MSR_IA32_RTIT_ADDR2_B
,
419 .reg_off
= RTIT_CTL_ADDR2_OFFSET
,
422 .msr_a
= MSR_IA32_RTIT_ADDR3_A
,
423 .msr_b
= MSR_IA32_RTIT_ADDR3_B
,
424 .reg_off
= RTIT_CTL_ADDR3_OFFSET
,
428 static u64
pt_config_filters(struct perf_event
*event
)
430 struct pt_filters
*filters
= event
->hw
.addr_filters
;
431 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
432 unsigned int range
= 0;
438 perf_event_addr_filters_sync(event
);
440 for (range
= 0; range
< filters
->nr_filters
; range
++) {
441 struct pt_filter
*filter
= &filters
->filter
[range
];
444 * Note, if the range has zero start/end addresses due
445 * to its dynamic object not being loaded yet, we just
446 * go ahead and program zeroed range, which will simply
447 * produce no data. Note^2: if executable code at 0x0
448 * is a concern, we can set up an "invalid" configuration
449 * such as msr_b < msr_a.
452 /* avoid redundant msr writes */
453 if (pt
->filters
.filter
[range
].msr_a
!= filter
->msr_a
) {
454 wrmsrl(pt_address_ranges
[range
].msr_a
, filter
->msr_a
);
455 pt
->filters
.filter
[range
].msr_a
= filter
->msr_a
;
458 if (pt
->filters
.filter
[range
].msr_b
!= filter
->msr_b
) {
459 wrmsrl(pt_address_ranges
[range
].msr_b
, filter
->msr_b
);
460 pt
->filters
.filter
[range
].msr_b
= filter
->msr_b
;
463 rtit_ctl
|= filter
->config
<< pt_address_ranges
[range
].reg_off
;
469 static void pt_config(struct perf_event
*event
)
471 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
474 /* First round: clear STATUS, in particular the PSB byte counter. */
475 if (!event
->hw
.config
) {
476 perf_event_itrace_started(event
);
477 wrmsrl(MSR_IA32_RTIT_STATUS
, 0);
480 reg
= pt_config_filters(event
);
481 reg
|= RTIT_CTL_TOPA
| RTIT_CTL_TRACEEN
;
484 * Previously, we had BRANCH_EN on by default, but now that PT has
485 * grown features outside of branch tracing, it is useful to allow
486 * the user to disable it. Setting bit 0 in the event's attr.config
487 * allows BRANCH_EN to pass through instead of being always on. See
488 * also the comment in pt_event_valid().
490 if (event
->attr
.config
& BIT(0)) {
491 reg
|= event
->attr
.config
& RTIT_CTL_BRANCH_EN
;
493 reg
|= RTIT_CTL_BRANCH_EN
;
496 if (!event
->attr
.exclude_kernel
)
498 if (!event
->attr
.exclude_user
)
501 reg
|= (event
->attr
.config
& PT_CONFIG_MASK
);
503 event
->hw
.config
= reg
;
504 if (READ_ONCE(pt
->vmx_on
))
505 perf_aux_output_flag(&pt
->handle
, PERF_AUX_FLAG_PARTIAL
);
507 wrmsrl(MSR_IA32_RTIT_CTL
, reg
);
510 static void pt_config_stop(struct perf_event
*event
)
512 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
513 u64 ctl
= READ_ONCE(event
->hw
.config
);
515 /* may be already stopped by a PMI */
516 if (!(ctl
& RTIT_CTL_TRACEEN
))
519 ctl
&= ~RTIT_CTL_TRACEEN
;
520 if (!READ_ONCE(pt
->vmx_on
))
521 wrmsrl(MSR_IA32_RTIT_CTL
, ctl
);
523 WRITE_ONCE(event
->hw
.config
, ctl
);
526 * A wrmsr that disables trace generation serializes other PT
527 * registers and causes all data packets to be written to memory,
528 * but a fence is required for the data to become globally visible.
530 * The below WMB, separating data store and aux_head store matches
531 * the consumer's RMB that separates aux_head load and data load.
536 static void pt_config_buffer(void *buf
, unsigned int topa_idx
,
537 unsigned int output_off
)
541 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE
, virt_to_phys(buf
));
543 reg
= 0x7f | ((u64
)topa_idx
<< 7) | ((u64
)output_off
<< 32);
545 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK
, reg
);
549 * Keep ToPA table-related metadata on the same page as the actual table,
550 * taking up a few words from the top
553 #define TENTS_PER_PAGE (((PAGE_SIZE - 40) / sizeof(struct topa_entry)) - 1)
556 * struct topa - page-sized ToPA table with metadata at the top
557 * @table: actual ToPA table entries, as understood by PT hardware
558 * @list: linkage to struct pt_buffer's list of tables
559 * @phys: physical address of this page
560 * @offset: offset of the first entry in this table in the buffer
561 * @size: total size of all entries in this table
562 * @last: index of the last initialized entry in this table
565 struct topa_entry table
[TENTS_PER_PAGE
];
566 struct list_head list
;
573 /* make -1 stand for the last table entry */
574 #define TOPA_ENTRY(t, i) ((i) == -1 ? &(t)->table[(t)->last] : &(t)->table[(i)])
577 * topa_alloc() - allocate page-sized ToPA table
578 * @cpu: CPU on which to allocate.
579 * @gfp: Allocation flags.
581 * Return: On success, return the pointer to ToPA table page.
583 static struct topa
*topa_alloc(int cpu
, gfp_t gfp
)
585 int node
= cpu_to_node(cpu
);
589 p
= alloc_pages_node(node
, gfp
| __GFP_ZERO
, 0);
593 topa
= page_address(p
);
595 topa
->phys
= page_to_phys(p
);
598 * In case of singe-entry ToPA, always put the self-referencing END
599 * link as the 2nd entry in the table
601 if (!pt_cap_get(PT_CAP_topa_multiple_entries
)) {
602 TOPA_ENTRY(topa
, 1)->base
= topa
->phys
>> TOPA_SHIFT
;
603 TOPA_ENTRY(topa
, 1)->end
= 1;
610 * topa_free() - free a page-sized ToPA table
611 * @topa: Table to deallocate.
613 static void topa_free(struct topa
*topa
)
615 free_page((unsigned long)topa
);
619 * topa_insert_table() - insert a ToPA table into a buffer
620 * @buf: PT buffer that's being extended.
621 * @topa: New topa table to be inserted.
623 * If it's the first table in this buffer, set up buffer's pointers
624 * accordingly; otherwise, add a END=1 link entry to @topa to the current
625 * "last" table and adjust the last table pointer to @topa.
627 static void topa_insert_table(struct pt_buffer
*buf
, struct topa
*topa
)
629 struct topa
*last
= buf
->last
;
631 list_add_tail(&topa
->list
, &buf
->tables
);
634 buf
->first
= buf
->last
= buf
->cur
= topa
;
638 topa
->offset
= last
->offset
+ last
->size
;
641 if (!pt_cap_get(PT_CAP_topa_multiple_entries
))
644 BUG_ON(last
->last
!= TENTS_PER_PAGE
- 1);
646 TOPA_ENTRY(last
, -1)->base
= topa
->phys
>> TOPA_SHIFT
;
647 TOPA_ENTRY(last
, -1)->end
= 1;
651 * topa_table_full() - check if a ToPA table is filled up
654 static bool topa_table_full(struct topa
*topa
)
656 /* single-entry ToPA is a special case */
657 if (!pt_cap_get(PT_CAP_topa_multiple_entries
))
660 return topa
->last
== TENTS_PER_PAGE
- 1;
664 * topa_insert_pages() - create a list of ToPA tables
665 * @buf: PT buffer being initialized.
666 * @gfp: Allocation flags.
668 * This initializes a list of ToPA tables with entries from
669 * the data_pages provided by rb_alloc_aux().
671 * Return: 0 on success or error code.
673 static int topa_insert_pages(struct pt_buffer
*buf
, gfp_t gfp
)
675 struct topa
*topa
= buf
->last
;
679 p
= virt_to_page(buf
->data_pages
[buf
->nr_pages
]);
681 order
= page_private(p
);
683 if (topa_table_full(topa
)) {
684 topa
= topa_alloc(buf
->cpu
, gfp
);
688 topa_insert_table(buf
, topa
);
691 TOPA_ENTRY(topa
, -1)->base
= page_to_phys(p
) >> TOPA_SHIFT
;
692 TOPA_ENTRY(topa
, -1)->size
= order
;
693 if (!buf
->snapshot
&& !pt_cap_get(PT_CAP_topa_multiple_entries
)) {
694 TOPA_ENTRY(topa
, -1)->intr
= 1;
695 TOPA_ENTRY(topa
, -1)->stop
= 1;
699 topa
->size
+= sizes(order
);
701 buf
->nr_pages
+= 1ul << order
;
707 * pt_topa_dump() - print ToPA tables and their entries
710 static void pt_topa_dump(struct pt_buffer
*buf
)
714 list_for_each_entry(topa
, &buf
->tables
, list
) {
717 pr_debug("# table @%p (%016Lx), off %llx size %zx\n", topa
->table
,
718 topa
->phys
, topa
->offset
, topa
->size
);
719 for (i
= 0; i
< TENTS_PER_PAGE
; i
++) {
720 pr_debug("# entry @%p (%lx sz %u %c%c%c) raw=%16llx\n",
722 (unsigned long)topa
->table
[i
].base
<< TOPA_SHIFT
,
723 sizes(topa
->table
[i
].size
),
724 topa
->table
[i
].end
? 'E' : ' ',
725 topa
->table
[i
].intr
? 'I' : ' ',
726 topa
->table
[i
].stop
? 'S' : ' ',
727 *(u64
*)&topa
->table
[i
]);
728 if ((pt_cap_get(PT_CAP_topa_multiple_entries
) &&
729 topa
->table
[i
].stop
) ||
737 * pt_buffer_advance() - advance to the next output region
740 * Advance the current pointers in the buffer to the next ToPA entry.
742 static void pt_buffer_advance(struct pt_buffer
*buf
)
747 if (buf
->cur_idx
== buf
->cur
->last
) {
748 if (buf
->cur
== buf
->last
)
749 buf
->cur
= buf
->first
;
751 buf
->cur
= list_entry(buf
->cur
->list
.next
, struct topa
,
758 * pt_update_head() - calculate current offsets and sizes
759 * @pt: Per-cpu pt context.
761 * Update buffer's current write pointer position and data size.
763 static void pt_update_head(struct pt
*pt
)
765 struct pt_buffer
*buf
= perf_get_aux(&pt
->handle
);
766 u64 topa_idx
, base
, old
;
768 /* offset of the first region in this table from the beginning of buf */
769 base
= buf
->cur
->offset
+ buf
->output_off
;
771 /* offset of the current output region within this table */
772 for (topa_idx
= 0; topa_idx
< buf
->cur_idx
; topa_idx
++)
773 base
+= sizes(buf
->cur
->table
[topa_idx
].size
);
776 local_set(&buf
->data_size
, base
);
778 old
= (local64_xchg(&buf
->head
, base
) &
779 ((buf
->nr_pages
<< PAGE_SHIFT
) - 1));
781 base
+= buf
->nr_pages
<< PAGE_SHIFT
;
783 local_add(base
- old
, &buf
->data_size
);
788 * pt_buffer_region() - obtain current output region's address
791 static void *pt_buffer_region(struct pt_buffer
*buf
)
793 return phys_to_virt(buf
->cur
->table
[buf
->cur_idx
].base
<< TOPA_SHIFT
);
797 * pt_buffer_region_size() - obtain current output region's size
800 static size_t pt_buffer_region_size(struct pt_buffer
*buf
)
802 return sizes(buf
->cur
->table
[buf
->cur_idx
].size
);
806 * pt_handle_status() - take care of possible status conditions
807 * @pt: Per-cpu pt context.
809 static void pt_handle_status(struct pt
*pt
)
811 struct pt_buffer
*buf
= perf_get_aux(&pt
->handle
);
815 rdmsrl(MSR_IA32_RTIT_STATUS
, status
);
817 if (status
& RTIT_STATUS_ERROR
) {
818 pr_err_ratelimited("ToPA ERROR encountered, trying to recover\n");
820 status
&= ~RTIT_STATUS_ERROR
;
823 if (status
& RTIT_STATUS_STOPPED
) {
824 status
&= ~RTIT_STATUS_STOPPED
;
827 * On systems that only do single-entry ToPA, hitting STOP
828 * means we are already losing data; need to let the decoder
831 if (!pt_cap_get(PT_CAP_topa_multiple_entries
) ||
832 buf
->output_off
== sizes(TOPA_ENTRY(buf
->cur
, buf
->cur_idx
)->size
)) {
833 perf_aux_output_flag(&pt
->handle
,
834 PERF_AUX_FLAG_TRUNCATED
);
840 * Also on single-entry ToPA implementations, interrupt will come
841 * before the output reaches its output region's boundary.
843 if (!pt_cap_get(PT_CAP_topa_multiple_entries
) && !buf
->snapshot
&&
844 pt_buffer_region_size(buf
) - buf
->output_off
<= TOPA_PMI_MARGIN
) {
845 void *head
= pt_buffer_region(buf
);
847 /* everything within this margin needs to be zeroed out */
848 memset(head
+ buf
->output_off
, 0,
849 pt_buffer_region_size(buf
) -
855 pt_buffer_advance(buf
);
857 wrmsrl(MSR_IA32_RTIT_STATUS
, status
);
861 * pt_read_offset() - translate registers into buffer pointers
864 * Set buffer's output pointers from MSR values.
866 static void pt_read_offset(struct pt_buffer
*buf
)
868 u64 offset
, base_topa
;
870 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE
, base_topa
);
871 buf
->cur
= phys_to_virt(base_topa
);
873 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK
, offset
);
874 /* offset within current output region */
875 buf
->output_off
= offset
>> 32;
876 /* index of current output region within this table */
877 buf
->cur_idx
= (offset
& 0xffffff80) >> 7;
881 * pt_topa_next_entry() - obtain index of the first page in the next ToPA entry
883 * @pg: Page offset in the buffer.
885 * When advancing to the next output region (ToPA entry), given a page offset
886 * into the buffer, we need to find the offset of the first page in the next
889 static unsigned int pt_topa_next_entry(struct pt_buffer
*buf
, unsigned int pg
)
891 struct topa_entry
*te
= buf
->topa_index
[pg
];
894 if (buf
->first
== buf
->last
&& buf
->first
->last
== 1)
899 pg
&= buf
->nr_pages
- 1;
900 } while (buf
->topa_index
[pg
] == te
);
906 * pt_buffer_reset_markers() - place interrupt and stop bits in the buffer
908 * @handle: Current output handle.
910 * Place INT and STOP marks to prevent overwriting old data that the consumer
911 * hasn't yet collected and waking up the consumer after a certain fraction of
912 * the buffer has filled up. Only needed and sensible for non-snapshot counters.
914 * This obviously relies on buf::head to figure out buffer markers, so it has
915 * to be called after pt_buffer_reset_offsets() and before the hardware tracing
918 static int pt_buffer_reset_markers(struct pt_buffer
*buf
,
919 struct perf_output_handle
*handle
)
922 unsigned long head
= local64_read(&buf
->head
);
923 unsigned long idx
, npages
, wakeup
;
925 /* can't stop in the middle of an output region */
926 if (buf
->output_off
+ handle
->size
+ 1 <
927 sizes(TOPA_ENTRY(buf
->cur
, buf
->cur_idx
)->size
)) {
928 perf_aux_output_flag(handle
, PERF_AUX_FLAG_TRUNCATED
);
933 /* single entry ToPA is handled by marking all regions STOP=1 INT=1 */
934 if (!pt_cap_get(PT_CAP_topa_multiple_entries
))
937 /* clear STOP and INT from current entry */
938 buf
->topa_index
[buf
->stop_pos
]->stop
= 0;
939 buf
->topa_index
[buf
->stop_pos
]->intr
= 0;
940 buf
->topa_index
[buf
->intr_pos
]->intr
= 0;
942 /* how many pages till the STOP marker */
943 npages
= handle
->size
>> PAGE_SHIFT
;
945 /* if it's on a page boundary, fill up one more page */
946 if (!offset_in_page(head
+ handle
->size
+ 1))
949 idx
= (head
>> PAGE_SHIFT
) + npages
;
950 idx
&= buf
->nr_pages
- 1;
953 wakeup
= handle
->wakeup
>> PAGE_SHIFT
;
955 /* in the worst case, wake up the consumer one page before hard stop */
956 idx
= (head
>> PAGE_SHIFT
) + npages
- 1;
960 idx
&= buf
->nr_pages
- 1;
963 buf
->topa_index
[buf
->stop_pos
]->stop
= 1;
964 buf
->topa_index
[buf
->stop_pos
]->intr
= 1;
965 buf
->topa_index
[buf
->intr_pos
]->intr
= 1;
971 * pt_buffer_setup_topa_index() - build topa_index[] table of regions
974 * topa_index[] references output regions indexed by offset into the
975 * buffer for purposes of quick reverse lookup.
977 static void pt_buffer_setup_topa_index(struct pt_buffer
*buf
)
979 struct topa
*cur
= buf
->first
, *prev
= buf
->last
;
980 struct topa_entry
*te_cur
= TOPA_ENTRY(cur
, 0),
981 *te_prev
= TOPA_ENTRY(prev
, prev
->last
- 1);
984 while (pg
< buf
->nr_pages
) {
987 /* pages within one topa entry */
988 for (tidx
= 0; tidx
< 1 << te_cur
->size
; tidx
++, pg
++)
989 buf
->topa_index
[pg
] = te_prev
;
993 if (idx
== cur
->last
- 1) {
994 /* advance to next topa table */
996 cur
= list_entry(cur
->list
.next
, struct topa
, list
);
1000 te_cur
= TOPA_ENTRY(cur
, idx
);
1006 * pt_buffer_reset_offsets() - adjust buffer's write pointers from aux_head
1008 * @head: Write pointer (aux_head) from AUX buffer.
1010 * Find the ToPA table and entry corresponding to given @head and set buffer's
1011 * "current" pointers accordingly. This is done after we have obtained the
1012 * current aux_head position from a successful call to perf_aux_output_begin()
1013 * to make sure the hardware is writing to the right place.
1015 * This function modifies buf::{cur,cur_idx,output_off} that will be programmed
1016 * into PT msrs when the tracing is enabled and buf::head and buf::data_size,
1017 * which are used to determine INT and STOP markers' locations by a subsequent
1018 * call to pt_buffer_reset_markers().
1020 static void pt_buffer_reset_offsets(struct pt_buffer
*buf
, unsigned long head
)
1025 head
&= (buf
->nr_pages
<< PAGE_SHIFT
) - 1;
1027 pg
= (head
>> PAGE_SHIFT
) & (buf
->nr_pages
- 1);
1028 pg
= pt_topa_next_entry(buf
, pg
);
1030 buf
->cur
= (struct topa
*)((unsigned long)buf
->topa_index
[pg
] & PAGE_MASK
);
1031 buf
->cur_idx
= ((unsigned long)buf
->topa_index
[pg
] -
1032 (unsigned long)buf
->cur
) / sizeof(struct topa_entry
);
1033 buf
->output_off
= head
& (sizes(buf
->cur
->table
[buf
->cur_idx
].size
) - 1);
1035 local64_set(&buf
->head
, head
);
1036 local_set(&buf
->data_size
, 0);
1040 * pt_buffer_fini_topa() - deallocate ToPA structure of a buffer
1043 static void pt_buffer_fini_topa(struct pt_buffer
*buf
)
1045 struct topa
*topa
, *iter
;
1047 list_for_each_entry_safe(topa
, iter
, &buf
->tables
, list
) {
1049 * right now, this is in free_aux() path only, so
1050 * no need to unlink this table from the list
1057 * pt_buffer_init_topa() - initialize ToPA table for pt buffer
1059 * @size: Total size of all regions within this ToPA.
1060 * @gfp: Allocation flags.
1062 static int pt_buffer_init_topa(struct pt_buffer
*buf
, unsigned long nr_pages
,
1068 topa
= topa_alloc(buf
->cpu
, gfp
);
1072 topa_insert_table(buf
, topa
);
1074 while (buf
->nr_pages
< nr_pages
) {
1075 err
= topa_insert_pages(buf
, gfp
);
1077 pt_buffer_fini_topa(buf
);
1082 pt_buffer_setup_topa_index(buf
);
1084 /* link last table to the first one, unless we're double buffering */
1085 if (pt_cap_get(PT_CAP_topa_multiple_entries
)) {
1086 TOPA_ENTRY(buf
->last
, -1)->base
= buf
->first
->phys
>> TOPA_SHIFT
;
1087 TOPA_ENTRY(buf
->last
, -1)->end
= 1;
1095 * pt_buffer_setup_aux() - set up topa tables for a PT buffer
1096 * @cpu: Cpu on which to allocate, -1 means current.
1097 * @pages: Array of pointers to buffer pages passed from perf core.
1098 * @nr_pages: Number of pages in the buffer.
1099 * @snapshot: If this is a snapshot/overwrite counter.
1101 * This is a pmu::setup_aux callback that sets up ToPA tables and all the
1102 * bookkeeping for an AUX buffer.
1104 * Return: Our private PT buffer structure.
1107 pt_buffer_setup_aux(struct perf_event
*event
, void **pages
,
1108 int nr_pages
, bool snapshot
)
1110 struct pt_buffer
*buf
;
1111 int node
, ret
, cpu
= event
->cpu
;
1117 cpu
= raw_smp_processor_id();
1118 node
= cpu_to_node(cpu
);
1120 buf
= kzalloc_node(offsetof(struct pt_buffer
, topa_index
[nr_pages
]),
1126 buf
->snapshot
= snapshot
;
1127 buf
->data_pages
= pages
;
1129 INIT_LIST_HEAD(&buf
->tables
);
1131 ret
= pt_buffer_init_topa(buf
, nr_pages
, GFP_KERNEL
);
1141 * pt_buffer_free_aux() - perf AUX deallocation path callback
1144 static void pt_buffer_free_aux(void *data
)
1146 struct pt_buffer
*buf
= data
;
1148 pt_buffer_fini_topa(buf
);
1152 static int pt_addr_filters_init(struct perf_event
*event
)
1154 struct pt_filters
*filters
;
1155 int node
= event
->cpu
== -1 ? -1 : cpu_to_node(event
->cpu
);
1157 if (!pt_cap_get(PT_CAP_num_address_ranges
))
1160 filters
= kzalloc_node(sizeof(struct pt_filters
), GFP_KERNEL
, node
);
1165 memcpy(filters
, event
->parent
->hw
.addr_filters
,
1168 event
->hw
.addr_filters
= filters
;
1173 static void pt_addr_filters_fini(struct perf_event
*event
)
1175 kfree(event
->hw
.addr_filters
);
1176 event
->hw
.addr_filters
= NULL
;
1179 static inline bool valid_kernel_ip(unsigned long ip
)
1181 return virt_addr_valid(ip
) && kernel_ip(ip
);
1184 static int pt_event_addr_filters_validate(struct list_head
*filters
)
1186 struct perf_addr_filter
*filter
;
1189 list_for_each_entry(filter
, filters
, entry
) {
1191 * PT doesn't support single address triggers and
1194 if (!filter
->size
||
1195 filter
->action
== PERF_ADDR_FILTER_ACTION_START
)
1198 if (!filter
->path
.dentry
) {
1199 if (!valid_kernel_ip(filter
->offset
))
1202 if (!valid_kernel_ip(filter
->offset
+ filter
->size
))
1206 if (++range
> pt_cap_get(PT_CAP_num_address_ranges
))
1213 static void pt_event_addr_filters_sync(struct perf_event
*event
)
1215 struct perf_addr_filters_head
*head
= perf_event_addr_filters(event
);
1216 unsigned long msr_a
, msr_b
, *offs
= event
->addr_filters_offs
;
1217 struct pt_filters
*filters
= event
->hw
.addr_filters
;
1218 struct perf_addr_filter
*filter
;
1224 list_for_each_entry(filter
, &head
->list
, entry
) {
1225 if (filter
->path
.dentry
&& !offs
[range
]) {
1228 /* apply the offset */
1229 msr_a
= filter
->offset
+ offs
[range
];
1230 msr_b
= filter
->size
+ msr_a
- 1;
1233 filters
->filter
[range
].msr_a
= msr_a
;
1234 filters
->filter
[range
].msr_b
= msr_b
;
1235 if (filter
->action
== PERF_ADDR_FILTER_ACTION_FILTER
)
1236 filters
->filter
[range
].config
= 1;
1238 filters
->filter
[range
].config
= 2;
1242 filters
->nr_filters
= range
;
1246 * intel_pt_interrupt() - PT PMI handler
1248 void intel_pt_interrupt(void)
1250 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1251 struct pt_buffer
*buf
;
1252 struct perf_event
*event
= pt
->handle
.event
;
1255 * There may be a dangling PT bit in the interrupt status register
1256 * after PT has been disabled by pt_event_stop(). Make sure we don't
1257 * do anything (particularly, re-enable) for this event here.
1259 if (!READ_ONCE(pt
->handle_nmi
))
1265 pt_config_stop(event
);
1267 buf
= perf_get_aux(&pt
->handle
);
1271 pt_read_offset(buf
);
1273 pt_handle_status(pt
);
1277 perf_aux_output_end(&pt
->handle
, local_xchg(&buf
->data_size
, 0));
1279 if (!event
->hw
.state
) {
1282 buf
= perf_aux_output_begin(&pt
->handle
, event
);
1284 event
->hw
.state
= PERF_HES_STOPPED
;
1288 pt_buffer_reset_offsets(buf
, pt
->handle
.head
);
1289 /* snapshot counters don't use PMI, so it's safe */
1290 ret
= pt_buffer_reset_markers(buf
, &pt
->handle
);
1292 perf_aux_output_end(&pt
->handle
, 0);
1296 pt_config_buffer(buf
->cur
->table
, buf
->cur_idx
,
1302 void intel_pt_handle_vmx(int on
)
1304 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1305 struct perf_event
*event
;
1306 unsigned long flags
;
1308 /* PT plays nice with VMX, do nothing */
1313 * VMXON will clear RTIT_CTL.TraceEn; we need to make
1314 * sure to not try to set it while VMX is on. Disable
1315 * interrupts to avoid racing with pmu callbacks;
1316 * concurrent PMI should be handled fine.
1318 local_irq_save(flags
);
1319 WRITE_ONCE(pt
->vmx_on
, on
);
1322 * If an AUX transaction is in progress, it will contain
1323 * gap(s), so flag it PARTIAL to inform the user.
1325 event
= pt
->handle
.event
;
1327 perf_aux_output_flag(&pt
->handle
,
1328 PERF_AUX_FLAG_PARTIAL
);
1330 /* Turn PTs back on */
1332 wrmsrl(MSR_IA32_RTIT_CTL
, event
->hw
.config
);
1334 local_irq_restore(flags
);
1336 EXPORT_SYMBOL_GPL(intel_pt_handle_vmx
);
1342 static void pt_event_start(struct perf_event
*event
, int mode
)
1344 struct hw_perf_event
*hwc
= &event
->hw
;
1345 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1346 struct pt_buffer
*buf
;
1348 buf
= perf_aux_output_begin(&pt
->handle
, event
);
1352 pt_buffer_reset_offsets(buf
, pt
->handle
.head
);
1353 if (!buf
->snapshot
) {
1354 if (pt_buffer_reset_markers(buf
, &pt
->handle
))
1358 WRITE_ONCE(pt
->handle_nmi
, 1);
1361 pt_config_buffer(buf
->cur
->table
, buf
->cur_idx
,
1368 perf_aux_output_end(&pt
->handle
, 0);
1370 hwc
->state
= PERF_HES_STOPPED
;
1373 static void pt_event_stop(struct perf_event
*event
, int mode
)
1375 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1378 * Protect against the PMI racing with disabling wrmsr,
1379 * see comment in intel_pt_interrupt().
1381 WRITE_ONCE(pt
->handle_nmi
, 0);
1383 pt_config_stop(event
);
1385 if (event
->hw
.state
== PERF_HES_STOPPED
)
1388 event
->hw
.state
= PERF_HES_STOPPED
;
1390 if (mode
& PERF_EF_UPDATE
) {
1391 struct pt_buffer
*buf
= perf_get_aux(&pt
->handle
);
1396 if (WARN_ON_ONCE(pt
->handle
.event
!= event
))
1399 pt_read_offset(buf
);
1401 pt_handle_status(pt
);
1407 local_xchg(&buf
->data_size
,
1408 buf
->nr_pages
<< PAGE_SHIFT
);
1409 perf_aux_output_end(&pt
->handle
, local_xchg(&buf
->data_size
, 0));
1413 static void pt_event_del(struct perf_event
*event
, int mode
)
1415 pt_event_stop(event
, PERF_EF_UPDATE
);
1418 static int pt_event_add(struct perf_event
*event
, int mode
)
1420 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1421 struct hw_perf_event
*hwc
= &event
->hw
;
1424 if (pt
->handle
.event
)
1427 if (mode
& PERF_EF_START
) {
1428 pt_event_start(event
, 0);
1430 if (hwc
->state
== PERF_HES_STOPPED
)
1433 hwc
->state
= PERF_HES_STOPPED
;
1442 static void pt_event_read(struct perf_event
*event
)
1446 static void pt_event_destroy(struct perf_event
*event
)
1448 pt_addr_filters_fini(event
);
1449 x86_del_exclusive(x86_lbr_exclusive_pt
);
1452 static int pt_event_init(struct perf_event
*event
)
1454 if (event
->attr
.type
!= pt_pmu
.pmu
.type
)
1457 if (!pt_event_valid(event
))
1460 if (x86_add_exclusive(x86_lbr_exclusive_pt
))
1463 if (pt_addr_filters_init(event
)) {
1464 x86_del_exclusive(x86_lbr_exclusive_pt
);
1468 event
->destroy
= pt_event_destroy
;
1473 void cpu_emergency_stop_pt(void)
1475 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1477 if (pt
->handle
.event
)
1478 pt_event_stop(pt
->handle
.event
, PERF_EF_UPDATE
);
1481 static __init
int pt_init(void)
1483 int ret
, cpu
, prior_warn
= 0;
1485 BUILD_BUG_ON(sizeof(struct topa
) > PAGE_SIZE
);
1487 if (!boot_cpu_has(X86_FEATURE_INTEL_PT
))
1491 for_each_online_cpu(cpu
) {
1494 ret
= rdmsrl_safe_on_cpu(cpu
, MSR_IA32_RTIT_CTL
, &ctl
);
1495 if (!ret
&& (ctl
& RTIT_CTL_TRACEEN
))
1501 x86_add_exclusive(x86_lbr_exclusive_pt
);
1502 pr_warn("PT is enabled at boot time, doing nothing\n");
1507 ret
= pt_pmu_hw_init();
1511 if (!pt_cap_get(PT_CAP_topa_output
)) {
1512 pr_warn("ToPA output is not supported on this CPU\n");
1516 if (!pt_cap_get(PT_CAP_topa_multiple_entries
))
1517 pt_pmu
.pmu
.capabilities
=
1518 PERF_PMU_CAP_AUX_NO_SG
| PERF_PMU_CAP_AUX_SW_DOUBLEBUF
;
1520 pt_pmu
.pmu
.capabilities
|= PERF_PMU_CAP_EXCLUSIVE
| PERF_PMU_CAP_ITRACE
;
1521 pt_pmu
.pmu
.attr_groups
= pt_attr_groups
;
1522 pt_pmu
.pmu
.task_ctx_nr
= perf_sw_context
;
1523 pt_pmu
.pmu
.event_init
= pt_event_init
;
1524 pt_pmu
.pmu
.add
= pt_event_add
;
1525 pt_pmu
.pmu
.del
= pt_event_del
;
1526 pt_pmu
.pmu
.start
= pt_event_start
;
1527 pt_pmu
.pmu
.stop
= pt_event_stop
;
1528 pt_pmu
.pmu
.read
= pt_event_read
;
1529 pt_pmu
.pmu
.setup_aux
= pt_buffer_setup_aux
;
1530 pt_pmu
.pmu
.free_aux
= pt_buffer_free_aux
;
1531 pt_pmu
.pmu
.addr_filters_sync
= pt_event_addr_filters_sync
;
1532 pt_pmu
.pmu
.addr_filters_validate
= pt_event_addr_filters_validate
;
1533 pt_pmu
.pmu
.nr_addr_filters
=
1534 pt_cap_get(PT_CAP_num_address_ranges
);
1536 ret
= perf_pmu_register(&pt_pmu
.pmu
, "intel_pt", -1);
1540 arch_initcall(pt_init
);