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>
32 #include "perf_event.h"
35 static DEFINE_PER_CPU(struct pt
, pt_ctx
);
37 static struct pt_pmu pt_pmu
;
47 * Capabilities of Intel PT hardware, such as number of address bits or
48 * supported output schemes, are cached and exported to userspace as "caps"
49 * attribute group of pt pmu device
50 * (/sys/bus/event_source/devices/intel_pt/caps/) so that userspace can store
51 * relevant bits together with intel_pt traces.
53 * These are necessary for both trace decoding (payloads_lip, contains address
54 * width encoded in IP-related packets), and event configuration (bitmasks with
55 * permitted values for certain bit fields).
57 #define PT_CAP(_n, _l, _r, _m) \
58 [PT_CAP_ ## _n] = { .name = __stringify(_n), .leaf = _l, \
59 .reg = _r, .mask = _m }
61 static struct pt_cap_desc
{
67 PT_CAP(max_subleaf
, 0, CR_EAX
, 0xffffffff),
68 PT_CAP(cr3_filtering
, 0, CR_EBX
, BIT(0)),
69 PT_CAP(psb_cyc
, 0, CR_EBX
, BIT(1)),
70 PT_CAP(mtc
, 0, CR_EBX
, BIT(3)),
71 PT_CAP(topa_output
, 0, CR_ECX
, BIT(0)),
72 PT_CAP(topa_multiple_entries
, 0, CR_ECX
, BIT(1)),
73 PT_CAP(single_range_output
, 0, CR_ECX
, BIT(2)),
74 PT_CAP(payloads_lip
, 0, CR_ECX
, BIT(31)),
75 PT_CAP(mtc_periods
, 1, CR_EAX
, 0xffff0000),
76 PT_CAP(cycle_thresholds
, 1, CR_EBX
, 0xffff),
77 PT_CAP(psb_periods
, 1, CR_EBX
, 0xffff0000),
80 static u32
pt_cap_get(enum pt_capabilities cap
)
82 struct pt_cap_desc
*cd
= &pt_caps
[cap
];
83 u32 c
= pt_pmu
.caps
[cd
->leaf
* PT_CPUID_REGS_NUM
+ cd
->reg
];
84 unsigned int shift
= __ffs(cd
->mask
);
86 return (c
& cd
->mask
) >> shift
;
89 static ssize_t
pt_cap_show(struct device
*cdev
,
90 struct device_attribute
*attr
,
93 struct dev_ext_attribute
*ea
=
94 container_of(attr
, struct dev_ext_attribute
, attr
);
95 enum pt_capabilities cap
= (long)ea
->var
;
97 return snprintf(buf
, PAGE_SIZE
, "%x\n", pt_cap_get(cap
));
100 static struct attribute_group pt_cap_group
= {
104 PMU_FORMAT_ATTR(cyc
, "config:1" );
105 PMU_FORMAT_ATTR(mtc
, "config:9" );
106 PMU_FORMAT_ATTR(tsc
, "config:10" );
107 PMU_FORMAT_ATTR(noretcomp
, "config:11" );
108 PMU_FORMAT_ATTR(mtc_period
, "config:14-17" );
109 PMU_FORMAT_ATTR(cyc_thresh
, "config:19-22" );
110 PMU_FORMAT_ATTR(psb_period
, "config:24-27" );
112 static struct attribute
*pt_formats_attr
[] = {
113 &format_attr_cyc
.attr
,
114 &format_attr_mtc
.attr
,
115 &format_attr_tsc
.attr
,
116 &format_attr_noretcomp
.attr
,
117 &format_attr_mtc_period
.attr
,
118 &format_attr_cyc_thresh
.attr
,
119 &format_attr_psb_period
.attr
,
123 static struct attribute_group pt_format_group
= {
125 .attrs
= pt_formats_attr
,
128 static const struct attribute_group
*pt_attr_groups
[] = {
134 static int __init
pt_pmu_hw_init(void)
136 struct dev_ext_attribute
*de_attrs
;
137 struct attribute
**attrs
;
144 for (i
= 0; i
< PT_CPUID_LEAVES
; i
++) {
146 &pt_pmu
.caps
[CR_EAX
+ i
*PT_CPUID_REGS_NUM
],
147 &pt_pmu
.caps
[CR_EBX
+ i
*PT_CPUID_REGS_NUM
],
148 &pt_pmu
.caps
[CR_ECX
+ i
*PT_CPUID_REGS_NUM
],
149 &pt_pmu
.caps
[CR_EDX
+ i
*PT_CPUID_REGS_NUM
]);
153 size
= sizeof(struct attribute
*) * (ARRAY_SIZE(pt_caps
)+1);
154 attrs
= kzalloc(size
, GFP_KERNEL
);
158 size
= sizeof(struct dev_ext_attribute
) * (ARRAY_SIZE(pt_caps
)+1);
159 de_attrs
= kzalloc(size
, GFP_KERNEL
);
163 for (i
= 0; i
< ARRAY_SIZE(pt_caps
); i
++) {
164 struct dev_ext_attribute
*de_attr
= de_attrs
+ i
;
166 de_attr
->attr
.attr
.name
= pt_caps
[i
].name
;
168 sysfs_attr_init(&de_attr
->attr
.attr
);
170 de_attr
->attr
.attr
.mode
= S_IRUGO
;
171 de_attr
->attr
.show
= pt_cap_show
;
172 de_attr
->var
= (void *)i
;
174 attrs
[i
] = &de_attr
->attr
.attr
;
177 pt_cap_group
.attrs
= attrs
;
187 #define RTIT_CTL_CYC_PSB (RTIT_CTL_CYCLEACC | \
188 RTIT_CTL_CYC_THRESH | \
191 #define RTIT_CTL_MTC (RTIT_CTL_MTC_EN | \
194 #define PT_CONFIG_MASK (RTIT_CTL_TSC_EN | \
199 static bool pt_event_valid(struct perf_event
*event
)
201 u64 config
= event
->attr
.config
;
202 u64 allowed
, requested
;
204 if ((config
& PT_CONFIG_MASK
) != config
)
207 if (config
& RTIT_CTL_CYC_PSB
) {
208 if (!pt_cap_get(PT_CAP_psb_cyc
))
211 allowed
= pt_cap_get(PT_CAP_psb_periods
);
212 requested
= (config
& RTIT_CTL_PSB_FREQ
) >>
213 RTIT_CTL_PSB_FREQ_OFFSET
;
214 if (requested
&& (!(allowed
& BIT(requested
))))
217 allowed
= pt_cap_get(PT_CAP_cycle_thresholds
);
218 requested
= (config
& RTIT_CTL_CYC_THRESH
) >>
219 RTIT_CTL_CYC_THRESH_OFFSET
;
220 if (requested
&& (!(allowed
& BIT(requested
))))
224 if (config
& RTIT_CTL_MTC
) {
226 * In the unlikely case that CPUID lists valid mtc periods,
227 * but not the mtc capability, drop out here.
229 * Spec says that setting mtc period bits while mtc bit in
230 * CPUID is 0 will #GP, so better safe than sorry.
232 if (!pt_cap_get(PT_CAP_mtc
))
235 allowed
= pt_cap_get(PT_CAP_mtc_periods
);
239 requested
= (config
& RTIT_CTL_MTC_RANGE
) >>
240 RTIT_CTL_MTC_RANGE_OFFSET
;
242 if (!(allowed
& BIT(requested
)))
250 * PT configuration helpers
251 * These all are cpu affine and operate on a local PT
254 static void pt_config(struct perf_event
*event
)
258 if (!event
->hw
.itrace_started
) {
259 event
->hw
.itrace_started
= 1;
260 wrmsrl(MSR_IA32_RTIT_STATUS
, 0);
263 reg
= RTIT_CTL_TOPA
| RTIT_CTL_BRANCH_EN
| RTIT_CTL_TRACEEN
;
265 if (!event
->attr
.exclude_kernel
)
267 if (!event
->attr
.exclude_user
)
270 reg
|= (event
->attr
.config
& PT_CONFIG_MASK
);
272 wrmsrl(MSR_IA32_RTIT_CTL
, reg
);
275 static void pt_config_start(bool start
)
279 rdmsrl(MSR_IA32_RTIT_CTL
, ctl
);
281 ctl
|= RTIT_CTL_TRACEEN
;
283 ctl
&= ~RTIT_CTL_TRACEEN
;
284 wrmsrl(MSR_IA32_RTIT_CTL
, ctl
);
287 * A wrmsr that disables trace generation serializes other PT
288 * registers and causes all data packets to be written to memory,
289 * but a fence is required for the data to become globally visible.
291 * The below WMB, separating data store and aux_head store matches
292 * the consumer's RMB that separates aux_head load and data load.
298 static void pt_config_buffer(void *buf
, unsigned int topa_idx
,
299 unsigned int output_off
)
303 wrmsrl(MSR_IA32_RTIT_OUTPUT_BASE
, virt_to_phys(buf
));
305 reg
= 0x7f | ((u64
)topa_idx
<< 7) | ((u64
)output_off
<< 32);
307 wrmsrl(MSR_IA32_RTIT_OUTPUT_MASK
, reg
);
311 * Keep ToPA table-related metadata on the same page as the actual table,
312 * taking up a few words from the top
315 #define TENTS_PER_PAGE (((PAGE_SIZE - 40) / sizeof(struct topa_entry)) - 1)
318 * struct topa - page-sized ToPA table with metadata at the top
319 * @table: actual ToPA table entries, as understood by PT hardware
320 * @list: linkage to struct pt_buffer's list of tables
321 * @phys: physical address of this page
322 * @offset: offset of the first entry in this table in the buffer
323 * @size: total size of all entries in this table
324 * @last: index of the last initialized entry in this table
327 struct topa_entry table
[TENTS_PER_PAGE
];
328 struct list_head list
;
335 /* make -1 stand for the last table entry */
336 #define TOPA_ENTRY(t, i) ((i) == -1 ? &(t)->table[(t)->last] : &(t)->table[(i)])
339 * topa_alloc() - allocate page-sized ToPA table
340 * @cpu: CPU on which to allocate.
341 * @gfp: Allocation flags.
343 * Return: On success, return the pointer to ToPA table page.
345 static struct topa
*topa_alloc(int cpu
, gfp_t gfp
)
347 int node
= cpu_to_node(cpu
);
351 p
= alloc_pages_node(node
, gfp
| __GFP_ZERO
, 0);
355 topa
= page_address(p
);
357 topa
->phys
= page_to_phys(p
);
360 * In case of singe-entry ToPA, always put the self-referencing END
361 * link as the 2nd entry in the table
363 if (!pt_cap_get(PT_CAP_topa_multiple_entries
)) {
364 TOPA_ENTRY(topa
, 1)->base
= topa
->phys
>> TOPA_SHIFT
;
365 TOPA_ENTRY(topa
, 1)->end
= 1;
372 * topa_free() - free a page-sized ToPA table
373 * @topa: Table to deallocate.
375 static void topa_free(struct topa
*topa
)
377 free_page((unsigned long)topa
);
381 * topa_insert_table() - insert a ToPA table into a buffer
382 * @buf: PT buffer that's being extended.
383 * @topa: New topa table to be inserted.
385 * If it's the first table in this buffer, set up buffer's pointers
386 * accordingly; otherwise, add a END=1 link entry to @topa to the current
387 * "last" table and adjust the last table pointer to @topa.
389 static void topa_insert_table(struct pt_buffer
*buf
, struct topa
*topa
)
391 struct topa
*last
= buf
->last
;
393 list_add_tail(&topa
->list
, &buf
->tables
);
396 buf
->first
= buf
->last
= buf
->cur
= topa
;
400 topa
->offset
= last
->offset
+ last
->size
;
403 if (!pt_cap_get(PT_CAP_topa_multiple_entries
))
406 BUG_ON(last
->last
!= TENTS_PER_PAGE
- 1);
408 TOPA_ENTRY(last
, -1)->base
= topa
->phys
>> TOPA_SHIFT
;
409 TOPA_ENTRY(last
, -1)->end
= 1;
413 * topa_table_full() - check if a ToPA table is filled up
416 static bool topa_table_full(struct topa
*topa
)
418 /* single-entry ToPA is a special case */
419 if (!pt_cap_get(PT_CAP_topa_multiple_entries
))
422 return topa
->last
== TENTS_PER_PAGE
- 1;
426 * topa_insert_pages() - create a list of ToPA tables
427 * @buf: PT buffer being initialized.
428 * @gfp: Allocation flags.
430 * This initializes a list of ToPA tables with entries from
431 * the data_pages provided by rb_alloc_aux().
433 * Return: 0 on success or error code.
435 static int topa_insert_pages(struct pt_buffer
*buf
, gfp_t gfp
)
437 struct topa
*topa
= buf
->last
;
441 p
= virt_to_page(buf
->data_pages
[buf
->nr_pages
]);
443 order
= page_private(p
);
445 if (topa_table_full(topa
)) {
446 topa
= topa_alloc(buf
->cpu
, gfp
);
450 topa_insert_table(buf
, topa
);
453 TOPA_ENTRY(topa
, -1)->base
= page_to_phys(p
) >> TOPA_SHIFT
;
454 TOPA_ENTRY(topa
, -1)->size
= order
;
455 if (!buf
->snapshot
&& !pt_cap_get(PT_CAP_topa_multiple_entries
)) {
456 TOPA_ENTRY(topa
, -1)->intr
= 1;
457 TOPA_ENTRY(topa
, -1)->stop
= 1;
461 topa
->size
+= sizes(order
);
463 buf
->nr_pages
+= 1ul << order
;
469 * pt_topa_dump() - print ToPA tables and their entries
472 static void pt_topa_dump(struct pt_buffer
*buf
)
476 list_for_each_entry(topa
, &buf
->tables
, list
) {
479 pr_debug("# table @%p (%016Lx), off %llx size %zx\n", topa
->table
,
480 topa
->phys
, topa
->offset
, topa
->size
);
481 for (i
= 0; i
< TENTS_PER_PAGE
; i
++) {
482 pr_debug("# entry @%p (%lx sz %u %c%c%c) raw=%16llx\n",
484 (unsigned long)topa
->table
[i
].base
<< TOPA_SHIFT
,
485 sizes(topa
->table
[i
].size
),
486 topa
->table
[i
].end
? 'E' : ' ',
487 topa
->table
[i
].intr
? 'I' : ' ',
488 topa
->table
[i
].stop
? 'S' : ' ',
489 *(u64
*)&topa
->table
[i
]);
490 if ((pt_cap_get(PT_CAP_topa_multiple_entries
) &&
491 topa
->table
[i
].stop
) ||
499 * pt_buffer_advance() - advance to the next output region
502 * Advance the current pointers in the buffer to the next ToPA entry.
504 static void pt_buffer_advance(struct pt_buffer
*buf
)
509 if (buf
->cur_idx
== buf
->cur
->last
) {
510 if (buf
->cur
== buf
->last
)
511 buf
->cur
= buf
->first
;
513 buf
->cur
= list_entry(buf
->cur
->list
.next
, struct topa
,
520 * pt_update_head() - calculate current offsets and sizes
521 * @pt: Per-cpu pt context.
523 * Update buffer's current write pointer position and data size.
525 static void pt_update_head(struct pt
*pt
)
527 struct pt_buffer
*buf
= perf_get_aux(&pt
->handle
);
528 u64 topa_idx
, base
, old
;
530 /* offset of the first region in this table from the beginning of buf */
531 base
= buf
->cur
->offset
+ buf
->output_off
;
533 /* offset of the current output region within this table */
534 for (topa_idx
= 0; topa_idx
< buf
->cur_idx
; topa_idx
++)
535 base
+= sizes(buf
->cur
->table
[topa_idx
].size
);
538 local_set(&buf
->data_size
, base
);
540 old
= (local64_xchg(&buf
->head
, base
) &
541 ((buf
->nr_pages
<< PAGE_SHIFT
) - 1));
543 base
+= buf
->nr_pages
<< PAGE_SHIFT
;
545 local_add(base
- old
, &buf
->data_size
);
550 * pt_buffer_region() - obtain current output region's address
553 static void *pt_buffer_region(struct pt_buffer
*buf
)
555 return phys_to_virt(buf
->cur
->table
[buf
->cur_idx
].base
<< TOPA_SHIFT
);
559 * pt_buffer_region_size() - obtain current output region's size
562 static size_t pt_buffer_region_size(struct pt_buffer
*buf
)
564 return sizes(buf
->cur
->table
[buf
->cur_idx
].size
);
568 * pt_handle_status() - take care of possible status conditions
569 * @pt: Per-cpu pt context.
571 static void pt_handle_status(struct pt
*pt
)
573 struct pt_buffer
*buf
= perf_get_aux(&pt
->handle
);
577 rdmsrl(MSR_IA32_RTIT_STATUS
, status
);
579 if (status
& RTIT_STATUS_ERROR
) {
580 pr_err_ratelimited("ToPA ERROR encountered, trying to recover\n");
582 status
&= ~RTIT_STATUS_ERROR
;
585 if (status
& RTIT_STATUS_STOPPED
) {
586 status
&= ~RTIT_STATUS_STOPPED
;
589 * On systems that only do single-entry ToPA, hitting STOP
590 * means we are already losing data; need to let the decoder
593 if (!pt_cap_get(PT_CAP_topa_multiple_entries
) ||
594 buf
->output_off
== sizes(TOPA_ENTRY(buf
->cur
, buf
->cur_idx
)->size
)) {
595 local_inc(&buf
->lost
);
601 * Also on single-entry ToPA implementations, interrupt will come
602 * before the output reaches its output region's boundary.
604 if (!pt_cap_get(PT_CAP_topa_multiple_entries
) && !buf
->snapshot
&&
605 pt_buffer_region_size(buf
) - buf
->output_off
<= TOPA_PMI_MARGIN
) {
606 void *head
= pt_buffer_region(buf
);
608 /* everything within this margin needs to be zeroed out */
609 memset(head
+ buf
->output_off
, 0,
610 pt_buffer_region_size(buf
) -
616 pt_buffer_advance(buf
);
618 wrmsrl(MSR_IA32_RTIT_STATUS
, status
);
622 * pt_read_offset() - translate registers into buffer pointers
625 * Set buffer's output pointers from MSR values.
627 static void pt_read_offset(struct pt_buffer
*buf
)
629 u64 offset
, base_topa
;
631 rdmsrl(MSR_IA32_RTIT_OUTPUT_BASE
, base_topa
);
632 buf
->cur
= phys_to_virt(base_topa
);
634 rdmsrl(MSR_IA32_RTIT_OUTPUT_MASK
, offset
);
635 /* offset within current output region */
636 buf
->output_off
= offset
>> 32;
637 /* index of current output region within this table */
638 buf
->cur_idx
= (offset
& 0xffffff80) >> 7;
642 * pt_topa_next_entry() - obtain index of the first page in the next ToPA entry
644 * @pg: Page offset in the buffer.
646 * When advancing to the next output region (ToPA entry), given a page offset
647 * into the buffer, we need to find the offset of the first page in the next
650 static unsigned int pt_topa_next_entry(struct pt_buffer
*buf
, unsigned int pg
)
652 struct topa_entry
*te
= buf
->topa_index
[pg
];
655 if (buf
->first
== buf
->last
&& buf
->first
->last
== 1)
660 pg
&= buf
->nr_pages
- 1;
661 } while (buf
->topa_index
[pg
] == te
);
667 * pt_buffer_reset_markers() - place interrupt and stop bits in the buffer
669 * @handle: Current output handle.
671 * Place INT and STOP marks to prevent overwriting old data that the consumer
672 * hasn't yet collected and waking up the consumer after a certain fraction of
673 * the buffer has filled up. Only needed and sensible for non-snapshot counters.
675 * This obviously relies on buf::head to figure out buffer markers, so it has
676 * to be called after pt_buffer_reset_offsets() and before the hardware tracing
679 static int pt_buffer_reset_markers(struct pt_buffer
*buf
,
680 struct perf_output_handle
*handle
)
683 unsigned long head
= local64_read(&buf
->head
);
684 unsigned long idx
, npages
, wakeup
;
686 /* can't stop in the middle of an output region */
687 if (buf
->output_off
+ handle
->size
+ 1 <
688 sizes(TOPA_ENTRY(buf
->cur
, buf
->cur_idx
)->size
))
692 /* single entry ToPA is handled by marking all regions STOP=1 INT=1 */
693 if (!pt_cap_get(PT_CAP_topa_multiple_entries
))
696 /* clear STOP and INT from current entry */
697 buf
->topa_index
[buf
->stop_pos
]->stop
= 0;
698 buf
->topa_index
[buf
->intr_pos
]->intr
= 0;
700 /* how many pages till the STOP marker */
701 npages
= handle
->size
>> PAGE_SHIFT
;
703 /* if it's on a page boundary, fill up one more page */
704 if (!offset_in_page(head
+ handle
->size
+ 1))
707 idx
= (head
>> PAGE_SHIFT
) + npages
;
708 idx
&= buf
->nr_pages
- 1;
711 wakeup
= handle
->wakeup
>> PAGE_SHIFT
;
713 /* in the worst case, wake up the consumer one page before hard stop */
714 idx
= (head
>> PAGE_SHIFT
) + npages
- 1;
718 idx
&= buf
->nr_pages
- 1;
721 buf
->topa_index
[buf
->stop_pos
]->stop
= 1;
722 buf
->topa_index
[buf
->intr_pos
]->intr
= 1;
728 * pt_buffer_setup_topa_index() - build topa_index[] table of regions
731 * topa_index[] references output regions indexed by offset into the
732 * buffer for purposes of quick reverse lookup.
734 static void pt_buffer_setup_topa_index(struct pt_buffer
*buf
)
736 struct topa
*cur
= buf
->first
, *prev
= buf
->last
;
737 struct topa_entry
*te_cur
= TOPA_ENTRY(cur
, 0),
738 *te_prev
= TOPA_ENTRY(prev
, prev
->last
- 1);
741 while (pg
< buf
->nr_pages
) {
744 /* pages within one topa entry */
745 for (tidx
= 0; tidx
< 1 << te_cur
->size
; tidx
++, pg
++)
746 buf
->topa_index
[pg
] = te_prev
;
750 if (idx
== cur
->last
- 1) {
751 /* advance to next topa table */
753 cur
= list_entry(cur
->list
.next
, struct topa
, list
);
757 te_cur
= TOPA_ENTRY(cur
, idx
);
763 * pt_buffer_reset_offsets() - adjust buffer's write pointers from aux_head
765 * @head: Write pointer (aux_head) from AUX buffer.
767 * Find the ToPA table and entry corresponding to given @head and set buffer's
768 * "current" pointers accordingly. This is done after we have obtained the
769 * current aux_head position from a successful call to perf_aux_output_begin()
770 * to make sure the hardware is writing to the right place.
772 * This function modifies buf::{cur,cur_idx,output_off} that will be programmed
773 * into PT msrs when the tracing is enabled and buf::head and buf::data_size,
774 * which are used to determine INT and STOP markers' locations by a subsequent
775 * call to pt_buffer_reset_markers().
777 static void pt_buffer_reset_offsets(struct pt_buffer
*buf
, unsigned long head
)
782 head
&= (buf
->nr_pages
<< PAGE_SHIFT
) - 1;
784 pg
= (head
>> PAGE_SHIFT
) & (buf
->nr_pages
- 1);
785 pg
= pt_topa_next_entry(buf
, pg
);
787 buf
->cur
= (struct topa
*)((unsigned long)buf
->topa_index
[pg
] & PAGE_MASK
);
788 buf
->cur_idx
= ((unsigned long)buf
->topa_index
[pg
] -
789 (unsigned long)buf
->cur
) / sizeof(struct topa_entry
);
790 buf
->output_off
= head
& (sizes(buf
->cur
->table
[buf
->cur_idx
].size
) - 1);
792 local64_set(&buf
->head
, head
);
793 local_set(&buf
->data_size
, 0);
797 * pt_buffer_fini_topa() - deallocate ToPA structure of a buffer
800 static void pt_buffer_fini_topa(struct pt_buffer
*buf
)
802 struct topa
*topa
, *iter
;
804 list_for_each_entry_safe(topa
, iter
, &buf
->tables
, list
) {
806 * right now, this is in free_aux() path only, so
807 * no need to unlink this table from the list
814 * pt_buffer_init_topa() - initialize ToPA table for pt buffer
816 * @size: Total size of all regions within this ToPA.
817 * @gfp: Allocation flags.
819 static int pt_buffer_init_topa(struct pt_buffer
*buf
, unsigned long nr_pages
,
825 topa
= topa_alloc(buf
->cpu
, gfp
);
829 topa_insert_table(buf
, topa
);
831 while (buf
->nr_pages
< nr_pages
) {
832 err
= topa_insert_pages(buf
, gfp
);
834 pt_buffer_fini_topa(buf
);
839 pt_buffer_setup_topa_index(buf
);
841 /* link last table to the first one, unless we're double buffering */
842 if (pt_cap_get(PT_CAP_topa_multiple_entries
)) {
843 TOPA_ENTRY(buf
->last
, -1)->base
= buf
->first
->phys
>> TOPA_SHIFT
;
844 TOPA_ENTRY(buf
->last
, -1)->end
= 1;
852 * pt_buffer_setup_aux() - set up topa tables for a PT buffer
853 * @cpu: Cpu on which to allocate, -1 means current.
854 * @pages: Array of pointers to buffer pages passed from perf core.
855 * @nr_pages: Number of pages in the buffer.
856 * @snapshot: If this is a snapshot/overwrite counter.
858 * This is a pmu::setup_aux callback that sets up ToPA tables and all the
859 * bookkeeping for an AUX buffer.
861 * Return: Our private PT buffer structure.
864 pt_buffer_setup_aux(int cpu
, void **pages
, int nr_pages
, bool snapshot
)
866 struct pt_buffer
*buf
;
873 cpu
= raw_smp_processor_id();
874 node
= cpu_to_node(cpu
);
876 buf
= kzalloc_node(offsetof(struct pt_buffer
, topa_index
[nr_pages
]),
882 buf
->snapshot
= snapshot
;
883 buf
->data_pages
= pages
;
885 INIT_LIST_HEAD(&buf
->tables
);
887 ret
= pt_buffer_init_topa(buf
, nr_pages
, GFP_KERNEL
);
897 * pt_buffer_free_aux() - perf AUX deallocation path callback
900 static void pt_buffer_free_aux(void *data
)
902 struct pt_buffer
*buf
= data
;
904 pt_buffer_fini_topa(buf
);
909 * pt_buffer_is_full() - check if the buffer is full
911 * @pt: Per-cpu pt handle.
913 * If the user hasn't read data from the output region that aux_head
914 * points to, the buffer is considered full: the user needs to read at
915 * least this region and update aux_tail to point past it.
917 static bool pt_buffer_is_full(struct pt_buffer
*buf
, struct pt
*pt
)
922 if (local_read(&buf
->data_size
) >= pt
->handle
.size
)
929 * intel_pt_interrupt() - PT PMI handler
931 void intel_pt_interrupt(void)
933 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
934 struct pt_buffer
*buf
;
935 struct perf_event
*event
= pt
->handle
.event
;
938 * There may be a dangling PT bit in the interrupt status register
939 * after PT has been disabled by pt_event_stop(). Make sure we don't
940 * do anything (particularly, re-enable) for this event here.
942 if (!ACCESS_ONCE(pt
->handle_nmi
))
945 pt_config_start(false);
950 buf
= perf_get_aux(&pt
->handle
);
956 pt_handle_status(pt
);
960 perf_aux_output_end(&pt
->handle
, local_xchg(&buf
->data_size
, 0),
961 local_xchg(&buf
->lost
, 0));
963 if (!event
->hw
.state
) {
966 buf
= perf_aux_output_begin(&pt
->handle
, event
);
968 event
->hw
.state
= PERF_HES_STOPPED
;
972 pt_buffer_reset_offsets(buf
, pt
->handle
.head
);
973 /* snapshot counters don't use PMI, so it's safe */
974 ret
= pt_buffer_reset_markers(buf
, &pt
->handle
);
976 perf_aux_output_end(&pt
->handle
, 0, true);
980 pt_config_buffer(buf
->cur
->table
, buf
->cur_idx
,
990 static void pt_event_start(struct perf_event
*event
, int mode
)
992 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
993 struct pt_buffer
*buf
= perf_get_aux(&pt
->handle
);
995 if (!buf
|| pt_buffer_is_full(buf
, pt
)) {
996 event
->hw
.state
= PERF_HES_STOPPED
;
1000 ACCESS_ONCE(pt
->handle_nmi
) = 1;
1001 event
->hw
.state
= 0;
1003 pt_config_buffer(buf
->cur
->table
, buf
->cur_idx
,
1008 static void pt_event_stop(struct perf_event
*event
, int mode
)
1010 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1013 * Protect against the PMI racing with disabling wrmsr,
1014 * see comment in intel_pt_interrupt().
1016 ACCESS_ONCE(pt
->handle_nmi
) = 0;
1017 pt_config_start(false);
1019 if (event
->hw
.state
== PERF_HES_STOPPED
)
1022 event
->hw
.state
= PERF_HES_STOPPED
;
1024 if (mode
& PERF_EF_UPDATE
) {
1025 struct pt_buffer
*buf
= perf_get_aux(&pt
->handle
);
1030 if (WARN_ON_ONCE(pt
->handle
.event
!= event
))
1033 pt_read_offset(buf
);
1035 pt_handle_status(pt
);
1041 static void pt_event_del(struct perf_event
*event
, int mode
)
1043 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1044 struct pt_buffer
*buf
;
1046 pt_event_stop(event
, PERF_EF_UPDATE
);
1048 buf
= perf_get_aux(&pt
->handle
);
1053 local_xchg(&buf
->data_size
,
1054 buf
->nr_pages
<< PAGE_SHIFT
);
1055 perf_aux_output_end(&pt
->handle
, local_xchg(&buf
->data_size
, 0),
1056 local_xchg(&buf
->lost
, 0));
1060 static int pt_event_add(struct perf_event
*event
, int mode
)
1062 struct pt_buffer
*buf
;
1063 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1064 struct hw_perf_event
*hwc
= &event
->hw
;
1067 if (pt
->handle
.event
)
1070 buf
= perf_aux_output_begin(&pt
->handle
, event
);
1075 pt_buffer_reset_offsets(buf
, pt
->handle
.head
);
1076 if (!buf
->snapshot
) {
1077 ret
= pt_buffer_reset_markers(buf
, &pt
->handle
);
1082 if (mode
& PERF_EF_START
) {
1083 pt_event_start(event
, 0);
1085 if (hwc
->state
== PERF_HES_STOPPED
)
1088 hwc
->state
= PERF_HES_STOPPED
;
1094 perf_aux_output_end(&pt
->handle
, 0, true);
1096 hwc
->state
= PERF_HES_STOPPED
;
1101 static void pt_event_read(struct perf_event
*event
)
1105 static void pt_event_destroy(struct perf_event
*event
)
1107 x86_del_exclusive(x86_lbr_exclusive_pt
);
1110 static int pt_event_init(struct perf_event
*event
)
1112 if (event
->attr
.type
!= pt_pmu
.pmu
.type
)
1115 if (!pt_event_valid(event
))
1118 if (x86_add_exclusive(x86_lbr_exclusive_pt
))
1121 event
->destroy
= pt_event_destroy
;
1126 void cpu_emergency_stop_pt(void)
1128 struct pt
*pt
= this_cpu_ptr(&pt_ctx
);
1130 if (pt
->handle
.event
)
1131 pt_event_stop(pt
->handle
.event
, PERF_EF_UPDATE
);
1134 static __init
int pt_init(void)
1136 int ret
, cpu
, prior_warn
= 0;
1138 BUILD_BUG_ON(sizeof(struct topa
) > PAGE_SIZE
);
1140 if (!test_cpu_cap(&boot_cpu_data
, X86_FEATURE_INTEL_PT
))
1144 for_each_online_cpu(cpu
) {
1147 ret
= rdmsrl_safe_on_cpu(cpu
, MSR_IA32_RTIT_CTL
, &ctl
);
1148 if (!ret
&& (ctl
& RTIT_CTL_TRACEEN
))
1154 x86_add_exclusive(x86_lbr_exclusive_pt
);
1155 pr_warn("PT is enabled at boot time, doing nothing\n");
1160 ret
= pt_pmu_hw_init();
1164 if (!pt_cap_get(PT_CAP_topa_output
)) {
1165 pr_warn("ToPA output is not supported on this CPU\n");
1169 if (!pt_cap_get(PT_CAP_topa_multiple_entries
))
1170 pt_pmu
.pmu
.capabilities
=
1171 PERF_PMU_CAP_AUX_NO_SG
| PERF_PMU_CAP_AUX_SW_DOUBLEBUF
;
1173 pt_pmu
.pmu
.capabilities
|= PERF_PMU_CAP_EXCLUSIVE
| PERF_PMU_CAP_ITRACE
;
1174 pt_pmu
.pmu
.attr_groups
= pt_attr_groups
;
1175 pt_pmu
.pmu
.task_ctx_nr
= perf_sw_context
;
1176 pt_pmu
.pmu
.event_init
= pt_event_init
;
1177 pt_pmu
.pmu
.add
= pt_event_add
;
1178 pt_pmu
.pmu
.del
= pt_event_del
;
1179 pt_pmu
.pmu
.start
= pt_event_start
;
1180 pt_pmu
.pmu
.stop
= pt_event_stop
;
1181 pt_pmu
.pmu
.read
= pt_event_read
;
1182 pt_pmu
.pmu
.setup_aux
= pt_buffer_setup_aux
;
1183 pt_pmu
.pmu
.free_aux
= pt_buffer_free_aux
;
1184 ret
= perf_pmu_register(&pt_pmu
.pmu
, "intel_pt", -1);
1188 arch_initcall(pt_init
);