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
19 #ifndef __INTEL_PT_H__
20 #define __INTEL_PT_H__
23 * Single-entry ToPA: when this close to region boundary, switch
24 * buffers to avoid losing data.
26 #define TOPA_PMI_MARGIN 512
30 static inline unsigned int sizes(unsigned int tsz
)
32 return 1 << (tsz
+ TOPA_SHIFT
);
48 #define PT_CPUID_LEAVES 2
49 #define PT_CPUID_REGS_NUM 4 /* number of regsters (eax, ebx, ecx, edx) */
51 enum pt_capabilities
{
52 PT_CAP_max_subleaf
= 0,
57 PT_CAP_topa_multiple_entries
,
58 PT_CAP_single_range_output
,
61 PT_CAP_cycle_thresholds
,
67 u32 caps
[PT_CPUID_REGS_NUM
* PT_CPUID_LEAVES
];
71 * struct pt_buffer - buffer configuration; one buffer per task_struct or
72 * cpu, depending on perf event configuration
73 * @cpu: cpu for per-cpu allocation
74 * @tables: list of ToPA tables in this buffer
75 * @first: shorthand for first topa table
76 * @last: shorthand for last topa table
77 * @cur: current topa table
78 * @nr_pages: buffer size in pages
79 * @cur_idx: current output region's index within @cur table
80 * @output_off: offset within the current output region
81 * @data_size: running total of the amount of data in this buffer
82 * @lost: if data was lost/truncated
83 * @head: logical write offset inside the buffer
84 * @snapshot: if this is for a snapshot/overwrite counter
85 * @stop_pos: STOP topa entry in the buffer
86 * @intr_pos: INT topa entry in the buffer
87 * @data_pages: array of pages from perf
88 * @topa_index: table of topa entries indexed by page offset
92 struct list_head tables
;
93 struct topa
*first
, *last
, *cur
;
96 unsigned long nr_pages
;
101 unsigned long stop_pos
, intr_pos
;
103 struct topa_entry
*topa_index
[0];
107 * struct pt - per-cpu pt context
108 * @handle: perf output handle
109 * @handle_nmi: do handle PT PMI on this cpu, there's an active event
112 struct perf_output_handle handle
;
116 #endif /* __INTEL_PT_H__ */