1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Intel(R) Processor Trace PMU driver for perf
4 * Copyright (c) 2013-2014, Intel Corporation.
6 * Intel PT is specified in the Intel Architecture Instruction Set Extensions
7 * Programming Reference:
8 * http://software.intel.com/en-us/intel-isa-extensions
11 #ifndef __INTEL_PT_H__
12 #define __INTEL_PT_H__
15 * Single-entry ToPA: when this close to region boundary, switch
16 * buffers to avoid losing data.
18 #define TOPA_PMI_MARGIN 512
22 static inline unsigned int sizes(unsigned int tsz)
24 return 1 << (tsz + TOPA_SHIFT);
40 /* TSC to Core Crystal Clock Ratio */
41 #define CPUID_TSC_LEAF 0x15
45 u32 caps[PT_CPUID_REGS_NUM * PT_CPUID_LEAVES];
47 bool branch_en_always_on;
48 unsigned long max_nonturbo_ratio;
49 unsigned int tsc_art_num;
50 unsigned int tsc_art_den;
54 * struct pt_buffer - buffer configuration; one buffer per task_struct or
55 * cpu, depending on perf event configuration
56 * @tables: list of ToPA tables in this buffer
57 * @first: shorthand for first topa table
58 * @last: shorthand for last topa table
59 * @cur: current topa table
60 * @nr_pages: buffer size in pages
61 * @cur_idx: current output region's index within @cur table
62 * @output_off: offset within the current output region
63 * @data_size: running total of the amount of data in this buffer
64 * @lost: if data was lost/truncated
65 * @head: logical write offset inside the buffer
66 * @snapshot: if this is for a snapshot/overwrite counter
67 * @single: use Single Range Output instead of ToPA
68 * @stop_pos: STOP topa entry index
69 * @intr_pos: INT topa entry index
70 * @stop_te: STOP topa entry pointer
71 * @intr_te: INT topa entry pointer
72 * @data_pages: array of pages from perf
73 * @topa_index: table of topa entries indexed by page offset
76 struct list_head tables;
77 struct topa *first, *last, *cur;
80 unsigned long nr_pages;
85 long stop_pos, intr_pos;
86 struct topa_entry *stop_te, *intr_te;
90 #define PT_FILTERS_NUM 4
93 * struct pt_filter - IP range filter configuration
94 * @msr_a: range start, goes to RTIT_ADDRn_A
95 * @msr_b: range end, goes to RTIT_ADDRn_B
96 * @config: 4-bit field in RTIT_CTL
101 unsigned long config;
105 * struct pt_filters - IP range filtering context
106 * @filter: filters defined for this context
107 * @nr_filters: number of defined filters in the @filter array
110 struct pt_filter filter[PT_FILTERS_NUM];
111 unsigned int nr_filters;
115 * struct pt - per-cpu pt context
116 * @handle: perf output handle
117 * @filters: last configured filters
118 * @handle_nmi: do handle PT PMI on this cpu, there's an active event
119 * @vmx_on: 1 if VMX is ON on this cpu
120 * @output_base: cached RTIT_OUTPUT_BASE MSR value
121 * @output_mask: cached RTIT_OUTPUT_MASK MSR value
124 struct perf_output_handle handle;
125 struct pt_filters filters;
132 #endif /* __INTEL_PT_H__ */