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