~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/util/cs-etm.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/perf/util/cs-etm.h (Version linux-6.12-rc7) and /tools/perf/util/cs-etm.h (Version linux-6.7.12)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*                                                  2 /*
  3  * Copyright(C) 2015 Linaro Limited. All right      3  * Copyright(C) 2015 Linaro Limited. All rights reserved.
  4  * Author: Mathieu Poirier <mathieu.poirier@li      4  * Author: Mathieu Poirier <mathieu.poirier@linaro.org>
  5  */                                                 5  */
  6                                                     6 
  7 #ifndef INCLUDE__UTIL_PERF_CS_ETM_H__               7 #ifndef INCLUDE__UTIL_PERF_CS_ETM_H__
  8 #define INCLUDE__UTIL_PERF_CS_ETM_H__               8 #define INCLUDE__UTIL_PERF_CS_ETM_H__
  9                                                     9 
 10 #include "debug.h"                                 10 #include "debug.h"
 11 #include "util/event.h"                            11 #include "util/event.h"
 12 #include <linux/bits.h>                            12 #include <linux/bits.h>
 13                                                    13 
 14 struct perf_session;                               14 struct perf_session;
 15 struct perf_pmu;                                   15 struct perf_pmu;
 16                                                    16 
 17 /*                                                 17 /*
 18  * Versioning header in case things need to ch     18  * Versioning header in case things need to change in the future.  That way
 19  * decoding of old snapshot is still possible.     19  * decoding of old snapshot is still possible.
 20  */                                                20  */
 21 enum {                                             21 enum {
 22         /* Starting with 0x0 */                    22         /* Starting with 0x0 */
 23         CS_HEADER_VERSION,                         23         CS_HEADER_VERSION,
 24         /* PMU->type (32 bit), total # of CPUs     24         /* PMU->type (32 bit), total # of CPUs (32 bit) */
 25         CS_PMU_TYPE_CPUS,                          25         CS_PMU_TYPE_CPUS,
 26         CS_ETM_SNAPSHOT,                           26         CS_ETM_SNAPSHOT,
 27         CS_HEADER_VERSION_MAX,                     27         CS_HEADER_VERSION_MAX,
 28 };                                                 28 };
 29                                                    29 
 30 /*                                                 30 /*
 31  * Update the version for new format.              31  * Update the version for new format.
 32  *                                                 32  *
 33  * Version 1: format adds a param count to the     33  * Version 1: format adds a param count to the per cpu metadata.
 34  * This allows easy adding of new metadata par     34  * This allows easy adding of new metadata parameters.
 35  * Requires that new params always added after     35  * Requires that new params always added after current ones.
 36  * Also allows client reader to handle file ve     36  * Also allows client reader to handle file versions that are different by
 37  * checking the number of params in the file v     37  * checking the number of params in the file vs the number expected.
 38  *                                                 38  *
 39  * Version 2: Drivers will use PERF_RECORD_AUX     39  * Version 2: Drivers will use PERF_RECORD_AUX_OUTPUT_HW_ID to output
 40  * CoreSight Trace ID. ...TRACEIDR metadata wi     40  * CoreSight Trace ID. ...TRACEIDR metadata will be set to legacy values
 41  * but with addition flags.                        41  * but with addition flags.
 42  */                                                42  */
 43 #define CS_HEADER_CURRENT_VERSION       2          43 #define CS_HEADER_CURRENT_VERSION       2
 44                                                    44 
 45 /* Beginning of header common to both ETMv3 an     45 /* Beginning of header common to both ETMv3 and V4 */
 46 enum {                                             46 enum {
 47         CS_ETM_MAGIC,                              47         CS_ETM_MAGIC,
 48         CS_ETM_CPU,                                48         CS_ETM_CPU,
 49         /* Number of trace config params in fo     49         /* Number of trace config params in following ETM specific block */
 50         CS_ETM_NR_TRC_PARAMS,                      50         CS_ETM_NR_TRC_PARAMS,
 51         CS_ETM_COMMON_BLK_MAX_V1,                  51         CS_ETM_COMMON_BLK_MAX_V1,
 52 };                                                 52 };
 53                                                    53 
 54 /* ETMv3/PTM metadata */                           54 /* ETMv3/PTM metadata */
 55 enum {                                             55 enum {
 56         /* Dynamic, configurable parameters */     56         /* Dynamic, configurable parameters */
 57         CS_ETM_ETMCR = CS_ETM_COMMON_BLK_MAX_V     57         CS_ETM_ETMCR = CS_ETM_COMMON_BLK_MAX_V1,
 58         CS_ETM_ETMTRACEIDR,                        58         CS_ETM_ETMTRACEIDR,
 59         /* RO, taken from sysFS */                 59         /* RO, taken from sysFS */
 60         CS_ETM_ETMCCER,                            60         CS_ETM_ETMCCER,
 61         CS_ETM_ETMIDR,                             61         CS_ETM_ETMIDR,
 62         CS_ETM_PRIV_MAX,                           62         CS_ETM_PRIV_MAX,
 63 };                                                 63 };
 64                                                    64 
 65 /* define fixed version 0 length - allow new f     65 /* define fixed version 0 length - allow new format reader to read old files. */
 66 #define CS_ETM_NR_TRC_PARAMS_V0 (CS_ETM_ETMIDR     66 #define CS_ETM_NR_TRC_PARAMS_V0 (CS_ETM_ETMIDR - CS_ETM_ETMCR + 1)
 67                                                    67 
 68 /* ETMv4 metadata */                               68 /* ETMv4 metadata */
 69 enum {                                             69 enum {
 70         /* Dynamic, configurable parameters */     70         /* Dynamic, configurable parameters */
 71         CS_ETMV4_TRCCONFIGR = CS_ETM_COMMON_BL     71         CS_ETMV4_TRCCONFIGR = CS_ETM_COMMON_BLK_MAX_V1,
 72         CS_ETMV4_TRCTRACEIDR,                      72         CS_ETMV4_TRCTRACEIDR,
 73         /* RO, taken from sysFS */                 73         /* RO, taken from sysFS */
 74         CS_ETMV4_TRCIDR0,                          74         CS_ETMV4_TRCIDR0,
 75         CS_ETMV4_TRCIDR1,                          75         CS_ETMV4_TRCIDR1,
 76         CS_ETMV4_TRCIDR2,                          76         CS_ETMV4_TRCIDR2,
 77         CS_ETMV4_TRCIDR8,                          77         CS_ETMV4_TRCIDR8,
 78         CS_ETMV4_TRCAUTHSTATUS,                    78         CS_ETMV4_TRCAUTHSTATUS,
 79         CS_ETMV4_TS_SOURCE,                        79         CS_ETMV4_TS_SOURCE,
 80         CS_ETMV4_PRIV_MAX,                         80         CS_ETMV4_PRIV_MAX,
 81 };                                                 81 };
 82                                                    82 
 83 /* define fixed version 0 length - allow new f     83 /* define fixed version 0 length - allow new format reader to read old files. */
 84 #define CS_ETMV4_NR_TRC_PARAMS_V0 (CS_ETMV4_TR     84 #define CS_ETMV4_NR_TRC_PARAMS_V0 (CS_ETMV4_TRCAUTHSTATUS - CS_ETMV4_TRCCONFIGR + 1)
 85                                                    85 
 86 /*                                                 86 /*
 87  * ETE metadata is ETMv4 plus TRCDEVARCH regis     87  * ETE metadata is ETMv4 plus TRCDEVARCH register and doesn't support header V0 since it was
 88  * added in header V1                              88  * added in header V1
 89  */                                                89  */
 90 enum {                                             90 enum {
 91         /* Dynamic, configurable parameters */     91         /* Dynamic, configurable parameters */
 92         CS_ETE_TRCCONFIGR = CS_ETM_COMMON_BLK_     92         CS_ETE_TRCCONFIGR = CS_ETM_COMMON_BLK_MAX_V1,
 93         CS_ETE_TRCTRACEIDR,                        93         CS_ETE_TRCTRACEIDR,
 94         /* RO, taken from sysFS */                 94         /* RO, taken from sysFS */
 95         CS_ETE_TRCIDR0,                            95         CS_ETE_TRCIDR0,
 96         CS_ETE_TRCIDR1,                            96         CS_ETE_TRCIDR1,
 97         CS_ETE_TRCIDR2,                            97         CS_ETE_TRCIDR2,
 98         CS_ETE_TRCIDR8,                            98         CS_ETE_TRCIDR8,
 99         CS_ETE_TRCAUTHSTATUS,                      99         CS_ETE_TRCAUTHSTATUS,
100         CS_ETE_TRCDEVARCH,                        100         CS_ETE_TRCDEVARCH,
101         CS_ETE_TS_SOURCE,                         101         CS_ETE_TS_SOURCE,
102         CS_ETE_PRIV_MAX                           102         CS_ETE_PRIV_MAX
103 };                                                103 };
104                                                   104 
105 /*                                                105 /*
106  * Check for valid CoreSight trace ID. If an i    106  * Check for valid CoreSight trace ID. If an invalid value is present in the metadata,
107  * then IDs are present in the hardware ID pac    107  * then IDs are present in the hardware ID packet in the data file.
108  */                                               108  */
109 #define CS_IS_VALID_TRACE_ID(id) ((id > 0) &&     109 #define CS_IS_VALID_TRACE_ID(id) ((id > 0) && (id < 0x70))
110                                                   110 
111 /*                                                111 /*
112  * ETMv3 exception encoding number:               112  * ETMv3 exception encoding number:
113  * See Embedded Trace Macrocell specification     113  * See Embedded Trace Macrocell specification (ARM IHI 0014Q)
114  * table 7-12 Encoding of Exception[3:0] for n    114  * table 7-12 Encoding of Exception[3:0] for non-ARMv7-M processors.
115  */                                               115  */
116 enum {                                            116 enum {
117         CS_ETMV3_EXC_NONE = 0,                    117         CS_ETMV3_EXC_NONE = 0,
118         CS_ETMV3_EXC_DEBUG_HALT = 1,              118         CS_ETMV3_EXC_DEBUG_HALT = 1,
119         CS_ETMV3_EXC_SMC = 2,                     119         CS_ETMV3_EXC_SMC = 2,
120         CS_ETMV3_EXC_HYP = 3,                     120         CS_ETMV3_EXC_HYP = 3,
121         CS_ETMV3_EXC_ASYNC_DATA_ABORT = 4,        121         CS_ETMV3_EXC_ASYNC_DATA_ABORT = 4,
122         CS_ETMV3_EXC_JAZELLE_THUMBEE = 5,         122         CS_ETMV3_EXC_JAZELLE_THUMBEE = 5,
123         CS_ETMV3_EXC_PE_RESET = 8,                123         CS_ETMV3_EXC_PE_RESET = 8,
124         CS_ETMV3_EXC_UNDEFINED_INSTR = 9,         124         CS_ETMV3_EXC_UNDEFINED_INSTR = 9,
125         CS_ETMV3_EXC_SVC = 10,                    125         CS_ETMV3_EXC_SVC = 10,
126         CS_ETMV3_EXC_PREFETCH_ABORT = 11,         126         CS_ETMV3_EXC_PREFETCH_ABORT = 11,
127         CS_ETMV3_EXC_DATA_FAULT = 12,             127         CS_ETMV3_EXC_DATA_FAULT = 12,
128         CS_ETMV3_EXC_GENERIC = 13,                128         CS_ETMV3_EXC_GENERIC = 13,
129         CS_ETMV3_EXC_IRQ = 14,                    129         CS_ETMV3_EXC_IRQ = 14,
130         CS_ETMV3_EXC_FIQ = 15,                    130         CS_ETMV3_EXC_FIQ = 15,
131 };                                                131 };
132                                                   132 
133 /*                                                133 /*
134  * ETMv4 exception encoding number:               134  * ETMv4 exception encoding number:
135  * See ARM Embedded Trace Macrocell Architectu    135  * See ARM Embedded Trace Macrocell Architecture Specification (ARM IHI 0064D)
136  * table 6-12 Possible values for the TYPE fie    136  * table 6-12 Possible values for the TYPE field in an Exception instruction
137  * trace packet, for ARMv7-A/R and ARMv8-A/R P    137  * trace packet, for ARMv7-A/R and ARMv8-A/R PEs.
138  */                                               138  */
139 enum {                                            139 enum {
140         CS_ETMV4_EXC_RESET = 0,                   140         CS_ETMV4_EXC_RESET = 0,
141         CS_ETMV4_EXC_DEBUG_HALT = 1,              141         CS_ETMV4_EXC_DEBUG_HALT = 1,
142         CS_ETMV4_EXC_CALL = 2,                    142         CS_ETMV4_EXC_CALL = 2,
143         CS_ETMV4_EXC_TRAP = 3,                    143         CS_ETMV4_EXC_TRAP = 3,
144         CS_ETMV4_EXC_SYSTEM_ERROR = 4,            144         CS_ETMV4_EXC_SYSTEM_ERROR = 4,
145         CS_ETMV4_EXC_INST_DEBUG = 6,              145         CS_ETMV4_EXC_INST_DEBUG = 6,
146         CS_ETMV4_EXC_DATA_DEBUG = 7,              146         CS_ETMV4_EXC_DATA_DEBUG = 7,
147         CS_ETMV4_EXC_ALIGNMENT = 10,              147         CS_ETMV4_EXC_ALIGNMENT = 10,
148         CS_ETMV4_EXC_INST_FAULT = 11,             148         CS_ETMV4_EXC_INST_FAULT = 11,
149         CS_ETMV4_EXC_DATA_FAULT = 12,             149         CS_ETMV4_EXC_DATA_FAULT = 12,
150         CS_ETMV4_EXC_IRQ = 14,                    150         CS_ETMV4_EXC_IRQ = 14,
151         CS_ETMV4_EXC_FIQ = 15,                    151         CS_ETMV4_EXC_FIQ = 15,
152         CS_ETMV4_EXC_END = 31,                    152         CS_ETMV4_EXC_END = 31,
153 };                                                153 };
154                                                   154 
155 enum cs_etm_sample_type {                         155 enum cs_etm_sample_type {
156         CS_ETM_EMPTY,                             156         CS_ETM_EMPTY,
157         CS_ETM_RANGE,                             157         CS_ETM_RANGE,
158         CS_ETM_DISCONTINUITY,                     158         CS_ETM_DISCONTINUITY,
159         CS_ETM_EXCEPTION,                         159         CS_ETM_EXCEPTION,
160         CS_ETM_EXCEPTION_RET,                     160         CS_ETM_EXCEPTION_RET,
161 };                                                161 };
162                                                   162 
163 enum cs_etm_isa {                                 163 enum cs_etm_isa {
164         CS_ETM_ISA_UNKNOWN,                       164         CS_ETM_ISA_UNKNOWN,
165         CS_ETM_ISA_A64,                           165         CS_ETM_ISA_A64,
166         CS_ETM_ISA_A32,                           166         CS_ETM_ISA_A32,
167         CS_ETM_ISA_T32,                           167         CS_ETM_ISA_T32,
168 };                                                168 };
169                                                   169 
170 struct cs_etm_queue;                              170 struct cs_etm_queue;
171                                                   171 
172 struct cs_etm_packet {                            172 struct cs_etm_packet {
173         enum cs_etm_sample_type sample_type;      173         enum cs_etm_sample_type sample_type;
174         enum cs_etm_isa isa;                      174         enum cs_etm_isa isa;
175         u64 start_addr;                           175         u64 start_addr;
176         u64 end_addr;                             176         u64 end_addr;
177         u32 instr_count;                          177         u32 instr_count;
178         u32 last_instr_type;                      178         u32 last_instr_type;
179         u32 last_instr_subtype;                   179         u32 last_instr_subtype;
180         u32 flags;                                180         u32 flags;
181         u32 exception_number;                     181         u32 exception_number;
182         bool last_instr_cond;                     182         bool last_instr_cond;
183         bool last_instr_taken_branch;             183         bool last_instr_taken_branch;
184         u8 last_instr_size;                       184         u8 last_instr_size;
185         u8 trace_chan_id;                         185         u8 trace_chan_id;
186         int cpu;                                  186         int cpu;
187 };                                                187 };
188                                                   188 
189 #define CS_ETM_PACKET_MAX_BUFFER 1024             189 #define CS_ETM_PACKET_MAX_BUFFER 1024
190                                                   190 
191 /*                                                191 /*
192  * When working with per-thread scenarios the     192  * When working with per-thread scenarios the process under trace can
193  * be scheduled on any CPU and as such, more t    193  * be scheduled on any CPU and as such, more than one traceID may be
194  * associated with the same process.  Since a     194  * associated with the same process.  Since a traceID of '' is illegal
195  * as per the CoreSight architecture, use that    195  * as per the CoreSight architecture, use that specific value to
196  * identify the queue where all packets (with     196  * identify the queue where all packets (with any traceID) are
197  * aggregated.                                    197  * aggregated.
198  */                                               198  */
199 #define CS_ETM_PER_THREAD_TRACEID 0               199 #define CS_ETM_PER_THREAD_TRACEID 0
200                                                   200 
201 struct cs_etm_packet_queue {                      201 struct cs_etm_packet_queue {
202         u32 packet_count;                         202         u32 packet_count;
203         u32 head;                                 203         u32 head;
204         u32 tail;                                 204         u32 tail;
205         u32 instr_count;                          205         u32 instr_count;
206         u64 cs_timestamp; /* Timestamp from tr    206         u64 cs_timestamp; /* Timestamp from trace data, converted to ns if possible */
207         u64 next_cs_timestamp;                    207         u64 next_cs_timestamp;
208         struct cs_etm_packet packet_buffer[CS_    208         struct cs_etm_packet packet_buffer[CS_ETM_PACKET_MAX_BUFFER];
209 };                                                209 };
210                                                   210 
211 #define KiB(x) ((x) * 1024)                       211 #define KiB(x) ((x) * 1024)
212 #define MiB(x) ((x) * 1024 * 1024)                212 #define MiB(x) ((x) * 1024 * 1024)
213                                                   213 
214 #define CS_ETM_INVAL_ADDR 0xdeadbeefdeadbeefUL    214 #define CS_ETM_INVAL_ADDR 0xdeadbeefdeadbeefUL
215                                                   215 
216 #define BMVAL(val, lsb, msb)    ((val & GENMAS    216 #define BMVAL(val, lsb, msb)    ((val & GENMASK(msb, lsb)) >> lsb)
217                                                   217 
218 #define CS_ETM_HEADER_SIZE (CS_HEADER_VERSION_    218 #define CS_ETM_HEADER_SIZE (CS_HEADER_VERSION_MAX * sizeof(u64))
219                                                   219 
220 #define __perf_cs_etmv3_magic 0x30303030303030    220 #define __perf_cs_etmv3_magic 0x3030303030303030ULL
221 #define __perf_cs_etmv4_magic 0x40404040404040    221 #define __perf_cs_etmv4_magic 0x4040404040404040ULL
222 #define __perf_cs_ete_magic   0x50505050505050    222 #define __perf_cs_ete_magic   0x5050505050505050ULL
223 #define CS_ETMV3_PRIV_SIZE (CS_ETM_PRIV_MAX *     223 #define CS_ETMV3_PRIV_SIZE (CS_ETM_PRIV_MAX * sizeof(u64))
224 #define CS_ETMV4_PRIV_SIZE (CS_ETMV4_PRIV_MAX     224 #define CS_ETMV4_PRIV_SIZE (CS_ETMV4_PRIV_MAX * sizeof(u64))
225 #define CS_ETE_PRIV_SIZE (CS_ETE_PRIV_MAX * si    225 #define CS_ETE_PRIV_SIZE (CS_ETE_PRIV_MAX * sizeof(u64))
226                                                   226 
227 #define INFO_HEADER_SIZE (sizeof(((struct perf    227 #define INFO_HEADER_SIZE (sizeof(((struct perf_record_auxtrace_info *)0)->type) + \
228                           sizeof(((struct perf    228                           sizeof(((struct perf_record_auxtrace_info *)0)->reserved__))
229                                                   229 
230 /* CoreSight trace ID is currently the bottom     230 /* CoreSight trace ID is currently the bottom 7 bits of the value */
231 #define CORESIGHT_TRACE_ID_VAL_MASK     GENMAS    231 #define CORESIGHT_TRACE_ID_VAL_MASK     GENMASK(6, 0)
232                                                   232 
                                                   >> 233 /*
                                                   >> 234  * perf record will set the legacy meta data values as unused initially.
                                                   >> 235  * This allows perf report to manage the decoders created when dynamic
                                                   >> 236  * allocation in operation.
                                                   >> 237  */
                                                   >> 238 #define CORESIGHT_TRACE_ID_UNUSED_FLAG  BIT(31)
                                                   >> 239 
                                                   >> 240 /* Value to set for unused trace ID values */
                                                   >> 241 #define CORESIGHT_TRACE_ID_UNUSED_VAL   0x7F
                                                   >> 242 
233 int cs_etm__process_auxtrace_info(union perf_e    243 int cs_etm__process_auxtrace_info(union perf_event *event,
234                                   struct perf_    244                                   struct perf_session *session);
235 void cs_etm_get_default_config(const struct pe    245 void cs_etm_get_default_config(const struct perf_pmu *pmu, struct perf_event_attr *attr);
236                                                   246 
237 enum cs_etm_pid_fmt {                             247 enum cs_etm_pid_fmt {
238         CS_ETM_PIDFMT_NONE,                       248         CS_ETM_PIDFMT_NONE,
239         CS_ETM_PIDFMT_CTXTID,                     249         CS_ETM_PIDFMT_CTXTID,
240         CS_ETM_PIDFMT_CTXTID2                     250         CS_ETM_PIDFMT_CTXTID2
241 };                                                251 };
242                                                   252 
243 #ifdef HAVE_CSTRACE_SUPPORT                       253 #ifdef HAVE_CSTRACE_SUPPORT
244 #include <opencsd/ocsd_if_types.h>                254 #include <opencsd/ocsd_if_types.h>
245 int cs_etm__get_cpu(struct cs_etm_queue *etmq, !! 255 int cs_etm__get_cpu(u8 trace_chan_id, int *cpu);
246 enum cs_etm_pid_fmt cs_etm__get_pid_fmt(struct    256 enum cs_etm_pid_fmt cs_etm__get_pid_fmt(struct cs_etm_queue *etmq);
247 int cs_etm__etmq_set_tid_el(struct cs_etm_queu    257 int cs_etm__etmq_set_tid_el(struct cs_etm_queue *etmq, pid_t tid,
248                             u8 trace_chan_id,     258                             u8 trace_chan_id, ocsd_ex_level el);
249 bool cs_etm__etmq_is_timeless(struct cs_etm_qu    259 bool cs_etm__etmq_is_timeless(struct cs_etm_queue *etmq);
250 void cs_etm__etmq_set_traceid_queue_timestamp(    260 void cs_etm__etmq_set_traceid_queue_timestamp(struct cs_etm_queue *etmq,
251                                                   261                                               u8 trace_chan_id);
252 struct cs_etm_packet_queue                        262 struct cs_etm_packet_queue
253 *cs_etm__etmq_get_packet_queue(struct cs_etm_q    263 *cs_etm__etmq_get_packet_queue(struct cs_etm_queue *etmq, u8 trace_chan_id);
254 int cs_etm__process_auxtrace_info_full(union p    264 int cs_etm__process_auxtrace_info_full(union perf_event *event __maybe_unused,
255                                        struct     265                                        struct perf_session *session __maybe_unused);
256 u64 cs_etm__convert_sample_time(struct cs_etm_    266 u64 cs_etm__convert_sample_time(struct cs_etm_queue *etmq, u64 cs_timestamp);
257 #else                                             267 #else
258 static inline int                                 268 static inline int
259 cs_etm__process_auxtrace_info_full(union perf_    269 cs_etm__process_auxtrace_info_full(union perf_event *event __maybe_unused,
260                                    struct perf    270                                    struct perf_session *session __maybe_unused)
261 {                                                 271 {
262         pr_err("\nCS ETM Trace: OpenCSD is not    272         pr_err("\nCS ETM Trace: OpenCSD is not linked in, please recompile with CORESIGHT=1\n");
263         return -1;                                273         return -1;
264 }                                                 274 }
265 #endif                                            275 #endif
266                                                   276 
267 #endif                                            277 #endif
268                                                   278 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php