1
2
3
13
14
15
16
17
18
19
20
21
26
27
31
32
33
34
35
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
105
106
107
108
109
113
114
118
119
120
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
161
162
163
164
165
166
170
171
172
175
176
177
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
252
253
254
255
256
257
258
259
260
261
262
263
264
265
268
269
270
271
272
273
279
280
281
283
284
285
287
288
289
296
297
298
300
301
302
303
306
307
308
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
/* ... */
#ifndef OPENOCD_TARGET_TARGET_TYPE_H
#define OPENOCD_TARGET_TARGET_TYPE_H
#include <helper/jim-nvp.h>
struct target;
/* ... */
struct target_type {
/* ... */
const char *name;
int (*poll)(struct target *target);
/* ... */
int (*arch_state)(struct target *target);
int (*target_request_data)(struct target *target, uint32_t size, uint8_t *buffer);
int (*halt)(struct target *target);
int (*resume)(struct target *target, int current, target_addr_t address,
int handle_breakpoints, int debug_execution);
int (*step)(struct target *target, int current, target_addr_t address,
int handle_breakpoints);
/* ... */
int (*assert_reset)(struct target *target);
/* ... */
int (*deassert_reset)(struct target *target);
int (*soft_reset_halt)(struct target *target);
/* ... */
const char *(*get_gdb_arch)(const struct target *target);
/* ... */
int (*get_gdb_reg_list)(struct target *target, struct reg **reg_list[],
int *reg_list_size, enum target_register_class reg_class);
/* ... */
int (*get_gdb_reg_list_noread)(struct target *target,
struct reg **reg_list[], int *reg_list_size,
enum target_register_class reg_class);
/* ... */
/* ... */
int (*read_memory)(struct target *target, target_addr_t address,
uint32_t size, uint32_t count, uint8_t *buffer);
/* ... */
int (*write_memory)(struct target *target, target_addr_t address,
uint32_t size, uint32_t count, const uint8_t *buffer);
int (*read_buffer)(struct target *target, target_addr_t address,
uint32_t size, uint8_t *buffer);
int (*write_buffer)(struct target *target, target_addr_t address,
uint32_t size, const uint8_t *buffer);
int (*checksum_memory)(struct target *target, target_addr_t address,
uint32_t count, uint32_t *checksum);
int (*blank_check_memory)(struct target *target,
struct target_memory_check_block *blocks, int num_blocks,
uint8_t erased_value);
/* ... */
int (*add_breakpoint)(struct target *target, struct breakpoint *breakpoint);
int (*add_context_breakpoint)(struct target *target, struct breakpoint *breakpoint);
int (*add_hybrid_breakpoint)(struct target *target, struct breakpoint *breakpoint);
/* ... */
int (*remove_breakpoint)(struct target *target, struct breakpoint *breakpoint);
int (*add_watchpoint)(struct target *target, struct watchpoint *watchpoint);
/* ... */
int (*remove_watchpoint)(struct target *target, struct watchpoint *watchpoint);
/* ... */
int (*hit_watchpoint)(struct target *target, struct watchpoint **hit_watchpoint);
/* ... */
int (*run_algorithm)(struct target *target, int num_mem_params,
struct mem_param *mem_params, int num_reg_params,
struct reg_param *reg_param, target_addr_t entry_point,
target_addr_t exit_point, unsigned int timeout_ms, void *arch_info);
int (*start_algorithm)(struct target *target, int num_mem_params,
struct mem_param *mem_params, int num_reg_params,
struct reg_param *reg_param, target_addr_t entry_point,
target_addr_t exit_point, void *arch_info);
int (*wait_algorithm)(struct target *target, int num_mem_params,
struct mem_param *mem_params, int num_reg_params,
struct reg_param *reg_param, target_addr_t exit_point,
unsigned int timeout_ms, void *arch_info);
const struct command_registration *commands;
int (*target_create)(struct target *target, Jim_Interp *interp);
int (*target_jim_configure)(struct target *target, struct jim_getopt_info *goi);
int (*target_jim_commands)(struct target *target, struct jim_getopt_info *goi);
/* ... */
int (*examine)(struct target *target);
/* ... */
int (*init_target)(struct command_context *cmd_ctx, struct target *target);
/* ... */
void (*deinit_target)(struct target *target);
/* ... */
int (*virt2phys)(struct target *target, target_addr_t address, target_addr_t *physical);
/* ... */
int (*read_phys_memory)(struct target *target, target_addr_t phys_address,
uint32_t size, uint32_t count, uint8_t *buffer);
/* ... */
int (*write_phys_memory)(struct target *target, target_addr_t phys_address,
uint32_t size, uint32_t count, const uint8_t *buffer);
int (*mmu)(struct target *target, int *enabled);
/* ... */
int (*check_reset)(struct target *target);
/* ... */
int (*get_gdb_fileio_info)(struct target *target, struct gdb_fileio_info *fileio_info);
/* ... */
int (*gdb_fileio_end)(struct target *target, int retcode, int fileio_errno, bool ctrl_c);
/* ... */
int (*gdb_query_custom)(struct target *target, const char *packet, char **response_p);
/* ... */
int (*profiling)(struct target *target, uint32_t *samples,
uint32_t max_num_samples, uint32_t *num_samples, uint32_t seconds);
/* ... */
unsigned (*address_bits)(struct target *target);
/* ... */
unsigned int (*data_bits)(struct target *target);
...};
extern struct target_type aarch64_target;
extern struct target_type arcv2_target;
extern struct target_type arm11_target;
extern struct target_type arm720t_target;
extern struct target_type arm7tdmi_target;
extern struct target_type arm920t_target;
extern struct target_type arm926ejs_target;
extern struct target_type arm946e_target;
extern struct target_type arm966e_target;
extern struct target_type arm9tdmi_target;
extern struct target_type armv8r_target;
extern struct target_type avr32_ap7k_target;
extern struct target_type avr_target;
extern struct target_type cortexa_target;
extern struct target_type cortexm_target;
extern struct target_type cortexr4_target;
extern struct target_type dragonite_target;
extern struct target_type dsp563xx_target;
extern struct target_type dsp5680xx_target;
extern struct target_type esirisc_target;
extern struct target_type esp32s2_target;
extern struct target_type esp32s3_target;
extern struct target_type esp32_target;
extern struct target_type fa526_target;
extern struct target_type feroceon_target;
extern struct target_type hla_target;
extern struct target_type ls1_sap_target;
extern struct target_type mem_ap_target;
extern struct target_type mips_m4k_target;
extern struct target_type mips_mips64_target;
extern struct target_type or1k_target;
extern struct target_type quark_d20xx_target;
extern struct target_type quark_x10xx_target;
extern struct target_type riscv_target;
extern struct target_type stm8_target;
extern struct target_type testee_target;
extern struct target_type xscale_target;
extern struct target_type xtensa_chip_target;
/* ... */
#endif