ETM cleanup
[openocd.git] / src / target / etm.h
1 /***************************************************************************
2 * Copyright (C) 2005, 2007 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007 by Vincent Palatin *
6 * vincent.palatin_openocd@m4x.org *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
22 ***************************************************************************/
23 #ifndef ETM_H
24 #define ETM_H
25
26 #include "trace.h"
27 #include "arm_jtag.h"
28 #include "armv4_5.h"
29
30 struct image_s;
31
32 /* ETM registers (JTAG protocol) */
33 enum
34 {
35 ETM_CTRL = 0x00,
36 ETM_CONFIG = 0x01,
37 ETM_TRIG_EVENT = 0x02,
38 ETM_ASIC_CTRL = 0x03,
39 ETM_STATUS = 0x04,
40 ETM_SYS_CONFIG = 0x05,
41 ETM_TRACE_RESOURCE_CTRL = 0x06,
42 ETM_TRACE_EN_CTRL2 = 0x07,
43 ETM_TRACE_EN_EVENT = 0x08,
44 ETM_TRACE_EN_CTRL1 = 0x09,
45 /* optional FIFOFULL */
46 ETM_FIFOFULL_REGION = 0x0a,
47 ETM_FIFOFULL_LEVEL = 0x0b,
48 /* viewdata support */
49 ETM_VIEWDATA_EVENT = 0x0c,
50 ETM_VIEWDATA_CTRL1 = 0x0d,
51 ETM_VIEWDATA_CTRL2 = 0x0e, /* optional */
52 ETM_VIEWDATA_CTRL3 = 0x0f,
53 /* N pairs of ADDR_{COMPARATOR,ACCESS} registers */
54 ETM_ADDR_COMPARATOR_VALUE = 0x10,
55 ETM_ADDR_ACCESS_TYPE = 0x20,
56 /* N pairs of DATA_COMPARATOR_{VALUE,MASK} registers */
57 ETM_DATA_COMPARATOR_VALUE = 0x30,
58 ETM_DATA_COMPARATOR_MASK = 0x40,
59 /* N quads of COUNTER_{RELOAD_{VALUE,EVENT},ENABLE,VALUE} registers */
60 ETM_COUNTER_RELOAD_VALUE = 0x50,
61 ETM_COUNTER_ENABLE = 0x54,
62 ETM_COUNTER_RELOAD_EVENT = 0x58,
63 ETM_COUNTER_VALUE = 0x5c,
64 /* 6 sequencer event transitions */
65 ETM_SEQUENCER_EVENT = 0x60,
66 ETM_SEQUENCER_STATE = 0x67,
67 /* N triggered outputs */
68 ETM_EXTERNAL_OUTPUT = 0x68,
69 /* N task contexts */
70 ETM_CONTEXTID_COMPARATOR_VALUE = 0x6c,
71 ETM_CONTEXTID_COMPARATOR_MASK = 0x6f,
72 };
73
74 typedef struct etm_reg_s
75 {
76 uint32_t value;
77 const struct etm_reg_info *reg_info;
78 arm_jtag_t *jtag_info;
79 } etm_reg_t;
80
81 typedef enum
82 {
83 /* Port width */
84 ETM_PORT_4BIT = 0x00,
85 ETM_PORT_8BIT = 0x10,
86 ETM_PORT_16BIT = 0x20,
87 ETM_PORT_WIDTH_MASK = 0x70,
88 /* Port modes */
89 ETM_PORT_NORMAL = 0x00000,
90 ETM_PORT_MUXED = 0x10000,
91 ETM_PORT_DEMUXED = 0x20000,
92 ETM_PORT_MODE_MASK = 0x30000,
93 /* Clocking modes */
94 ETM_PORT_FULL_CLOCK = 0x0000,
95 ETM_PORT_HALF_CLOCK = 0x1000,
96 ETM_PORT_CLOCK_MASK = 0x1000,
97 } etm_portmode_t;
98
99 typedef enum
100 {
101 /* Data trace */
102 ETMV1_TRACE_NONE = 0x00,
103 ETMV1_TRACE_DATA = 0x01,
104 ETMV1_TRACE_ADDR = 0x02,
105 ETMV1_TRACE_MASK = 0x03,
106 /* ContextID */
107 ETMV1_CONTEXTID_NONE = 0x00,
108 ETMV1_CONTEXTID_8 = 0x10,
109 ETMV1_CONTEXTID_16 = 0x20,
110 ETMV1_CONTEXTID_32 = 0x30,
111 ETMV1_CONTEXTID_MASK = 0x30,
112 /* Misc */
113 ETMV1_CYCLE_ACCURATE = 0x100,
114 ETMV1_BRANCH_OUTPUT = 0x200
115 } etmv1_tracemode_t;
116
117 /* forward-declare ETM context */
118 struct etm;
119
120 typedef struct etm_capture_driver_s
121 {
122 char *name;
123 int (*register_commands)(struct command_context_s *cmd_ctx);
124 int (*init)(struct etm *etm_ctx);
125 trace_status_t (*status)(struct etm *etm_ctx);
126 int (*read_trace)(struct etm *etm_ctx);
127 int (*start_capture)(struct etm *etm_ctx);
128 int (*stop_capture)(struct etm *etm_ctx);
129 } etm_capture_driver_t;
130
131 enum
132 {
133 ETMV1_TRACESYNC_CYCLE = 0x1,
134 ETMV1_TRIGGER_CYCLE = 0x2,
135 };
136
137 typedef struct etmv1_trace_data_s
138 {
139 uint8_t pipestat; /* bits 0-2 pipeline status */
140 uint16_t packet; /* packet data (4, 8 or 16 bit) */
141 int flags; /* ETMV1_TRACESYNC_CYCLE, ETMV1_TRIGGER_CYCLE */
142 } etmv1_trace_data_t;
143
144 /* describe a trace context
145 * if support for ETMv2 or ETMv3 is to be implemented,
146 * this will have to be split into version independent elements
147 * and a version specific part
148 */
149 typedef struct etm
150 {
151 target_t *target; /* target this ETM is connected to */
152 reg_cache_t *reg_cache; /* ETM register cache */
153 etm_capture_driver_t *capture_driver; /* driver used to access ETM data */
154 void *capture_driver_priv; /* capture driver private data */
155 uint32_t trigger_percent; /* how much trace buffer to fill after trigger */
156 trace_status_t capture_status; /* current state of capture run */
157 etmv1_trace_data_t *trace_data; /* trace data */
158 uint32_t trace_depth; /* number of cycles to be analyzed, 0 if no data available */
159 etm_portmode_t portmode; /* normal, multiplexed or demultiplexed */
160 etmv1_tracemode_t tracemode; /* type of info trace contains */
161 armv4_5_state_t core_state; /* current core state */
162 struct image_s *image; /* source for target opcodes */
163 uint32_t pipe_index; /* current trace cycle */
164 uint32_t data_index; /* cycle holding next data packet */
165 bool data_half; /* port half on a 16 bit port */
166 bool pc_ok; /* full PC has been acquired */
167 bool ptr_ok; /* whether last_ptr is valid */
168 uint8_t bcd_vers; /* e.g. 0x13 == ETMv1.3 */
169 uint32_t config; /* cache of ETM_CONFIG value */
170 uint32_t current_pc; /* current program counter */
171 uint32_t last_branch; /* last branch address output */
172 uint32_t last_branch_reason; /* type of last branch encountered */
173 uint32_t last_ptr; /* address of the last data access */
174 uint32_t last_instruction; /* index of last executed (to calc timings) */
175 } etm_context_t;
176
177 /* PIPESTAT values */
178 typedef enum
179 {
180 STAT_IE = 0x0,
181 STAT_ID = 0x1,
182 STAT_IN = 0x2,
183 STAT_WT = 0x3,
184 STAT_BE = 0x4,
185 STAT_BD = 0x5,
186 STAT_TR = 0x6,
187 STAT_TD = 0x7
188 } etmv1_pipestat_t;
189
190 /* branch reason values */
191 typedef enum
192 {
193 BR_NORMAL = 0x0, /* Normal PC change : periodic synchro (ETMv1.1) */
194 BR_ENABLE = 0x1, /* Trace has been enabled */
195 BR_RESTART = 0x2, /* Trace restarted after a FIFO overflow */
196 BR_NODEBUG = 0x3, /* ARM has exited for debug state */
197 BR_PERIOD = 0x4, /* Peridioc synchronization point (ETM >= v1.2)*/
198 BR_RSVD5 = 0x5, /* reserved */
199 BR_RSVD6 = 0x6, /* reserved */
200 BR_RSVD7 = 0x7, /* reserved */
201 } etmv1_branch_reason_t;
202
203 reg_cache_t* etm_build_reg_cache(target_t *target,
204 arm_jtag_t *jtag_info, etm_context_t *etm_ctx);
205
206 int etm_setup(target_t *target);
207
208 int etm_register_commands(struct command_context_s *cmd_ctx);
209
210 #define ERROR_ETM_INVALID_DRIVER (-1300)
211 #define ERROR_ETM_PORTMODE_NOT_SUPPORTED (-1301)
212 #define ERROR_ETM_CAPTURE_INIT_FAILED (-1302)
213 #define ERROR_ETM_ANALYSIS_FAILED (-1303)
214
215 #endif /* ETM_H */

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)