1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2007-2010 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
23 ***************************************************************************/
25 #ifndef OPENOCD_TARGET_TARGET_TYPE_H
26 #define OPENOCD_TARGET_TARGET_TYPE_H
33 * This holds methods shared between all instances of a given target
34 * type. For example, all Cortex-M3 targets on a scan chain share
35 * the same method table.
39 * Name of this type of target. Do @b not access this
40 * field directly, use target_type_name() instead.
43 const char *deprecated_name
;
45 /* poll current target status */
46 int (*poll
)(struct target
*target
);
47 /* Invoked only from target_arch_state().
48 * Issue USER() w/architecture specific status. */
49 int (*arch_state
)(struct target
*target
);
51 /* target request support */
52 int (*target_request_data
)(struct target
*target
, uint32_t size
, uint8_t *buffer
);
54 /* halt will log a warning, but return ERROR_OK if the target is already halted. */
55 int (*halt
)(struct target
*target
);
56 /* See target.c target_resume() for documentation. */
57 int (*resume
)(struct target
*target
, int current
, target_addr_t address
,
58 int handle_breakpoints
, int debug_execution
);
59 int (*step
)(struct target
*target
, int current
, target_addr_t address
,
60 int handle_breakpoints
);
61 /* target reset control. assert reset can be invoked when OpenOCD and
62 * the target is out of sync.
64 * A typical example is that the target was power cycled while OpenOCD
65 * thought the target was halted or running.
67 * assert_reset() can therefore make no assumptions whatsoever about the
70 * Before assert_reset() for the target is invoked, a TRST/tms and
71 * chain validation is executed. TRST should not be asserted
72 * during target assert unless there is no way around it due to
73 * the way reset's are configured.
76 int (*assert_reset
)(struct target
*target
);
78 * The implementation is responsible for polling the
79 * target such that target->state reflects the
82 * Otherwise the following would fail, as there will not
83 * be any "poll" invoked inbetween the "reset run" and
88 int (*deassert_reset
)(struct target
*target
);
89 int (*soft_reset_halt
)(struct target
*target
);
92 * Target register access for GDB. Do @b not call this function
93 * directly, use target_get_gdb_reg_list() instead.
95 * Danger! this function will succeed even if the target is running
96 * and return a register list with dummy values.
98 * The reason is that GDB connection will fail without a valid register
99 * list, however it is after GDB is connected that monitor commands can
100 * be run to properly initialize the target
102 int (*get_gdb_reg_list
)(struct target
*target
, struct reg
**reg_list
[],
103 int *reg_list_size
, enum target_register_class reg_class
);
105 /* target memory access
106 * size: 1 = byte (8bit), 2 = half-word (16bit), 4 = word (32bit)
107 * count: number of items of <size>
111 * Target memory read callback. Do @b not call this function
112 * directly, use target_read_memory() instead.
114 int (*read_memory
)(struct target
*target
, target_addr_t address
,
115 uint32_t size
, uint32_t count
, uint8_t *buffer
);
117 * Target memory write callback. Do @b not call this function
118 * directly, use target_write_memory() instead.
120 int (*write_memory
)(struct target
*target
, target_addr_t address
,
121 uint32_t size
, uint32_t count
, const uint8_t *buffer
);
123 /* Default implementation will do some fancy alignment to improve performance, target can override */
124 int (*read_buffer
)(struct target
*target
, target_addr_t address
,
125 uint32_t size
, uint8_t *buffer
);
127 /* Default implementation will do some fancy alignment to improve performance, target can override */
128 int (*write_buffer
)(struct target
*target
, target_addr_t address
,
129 uint32_t size
, const uint8_t *buffer
);
131 int (*checksum_memory
)(struct target
*target
, target_addr_t address
,
132 uint32_t count
, uint32_t *checksum
);
133 int (*blank_check_memory
)(struct target
*target
,
134 struct target_memory_check_block
*blocks
, int num_blocks
,
135 uint8_t erased_value
);
138 * target break-/watchpoint control
139 * rw: 0 = write, 1 = read, 2 = access
141 * Target must be halted while this is invoked as this
142 * will actually set up breakpoints on target.
144 * The breakpoint hardware will be set up upon adding the
147 * Upon GDB connection all breakpoints/watchpoints are cleared.
149 int (*add_breakpoint
)(struct target
*target
, struct breakpoint
*breakpoint
);
150 int (*add_context_breakpoint
)(struct target
*target
, struct breakpoint
*breakpoint
);
151 int (*add_hybrid_breakpoint
)(struct target
*target
, struct breakpoint
*breakpoint
);
153 /* remove breakpoint. hw will only be updated if the target
154 * is currently halted.
155 * However, this method can be invoked on unresponsive targets.
157 int (*remove_breakpoint
)(struct target
*target
, struct breakpoint
*breakpoint
);
159 /* add watchpoint ... see add_breakpoint() comment above. */
160 int (*add_watchpoint
)(struct target
*target
, struct watchpoint
*watchpoint
);
162 /* remove watchpoint. hw will only be updated if the target
163 * is currently halted.
164 * However, this method can be invoked on unresponsive targets.
166 int (*remove_watchpoint
)(struct target
*target
, struct watchpoint
*watchpoint
);
168 /* Find out just hit watchpoint. After the target hits a watchpoint, the
169 * information could assist gdb to locate where the modified/accessed memory is.
171 int (*hit_watchpoint
)(struct target
*target
, struct watchpoint
**hit_watchpoint
);
174 * Target algorithm support. Do @b not call this method directly,
175 * use target_run_algorithm() instead.
177 int (*run_algorithm
)(struct target
*target
, int num_mem_params
,
178 struct mem_param
*mem_params
, int num_reg_params
,
179 struct reg_param
*reg_param
, target_addr_t entry_point
,
180 target_addr_t exit_point
, int timeout_ms
, void *arch_info
);
181 int (*start_algorithm
)(struct target
*target
, int num_mem_params
,
182 struct mem_param
*mem_params
, int num_reg_params
,
183 struct reg_param
*reg_param
, target_addr_t entry_point
,
184 target_addr_t exit_point
, void *arch_info
);
185 int (*wait_algorithm
)(struct target
*target
, int num_mem_params
,
186 struct mem_param
*mem_params
, int num_reg_params
,
187 struct reg_param
*reg_param
, target_addr_t exit_point
,
188 int timeout_ms
, void *arch_info
);
190 const struct command_registration
*commands
;
192 /* called when target is created */
193 int (*target_create
)(struct target
*target
, Jim_Interp
*interp
);
195 /* called for various config parameters */
196 /* returns JIM_CONTINUE - if option not understood */
197 /* otherwise: JIM_OK, or JIM_ERR, */
198 int (*target_jim_configure
)(struct target
*target
, Jim_GetOptInfo
*goi
);
200 /* target commands specifically handled by the target */
201 /* returns JIM_OK, or JIM_ERR, or JIM_CONTINUE - if option not understood */
202 int (*target_jim_commands
)(struct target
*target
, Jim_GetOptInfo
*goi
);
205 * This method is used to perform target setup that requires
208 * This may be called multiple times. It is called after the
209 * scan chain is initially validated, or later after the target
210 * is enabled by a JRC. It may also be called during some
211 * parts of the reset sequence.
213 * For one-time initialization tasks, use target_was_examined()
214 * and target_set_examined(). For example, probe the hardware
215 * before setting up chip-specific state, and then set that
216 * flag so you don't do that again.
218 int (*examine
)(struct target
*target
);
220 /* Set up structures for target.
222 * It is illegal to talk to the target at this stage as this fn is invoked
223 * before the JTAG chain has been examined/verified
225 int (*init_target
)(struct command_context
*cmd_ctx
, struct target
*target
);
228 * Free all the resources allocated by the target.
230 * @param target The target to deinit
232 void (*deinit_target
)(struct target
*target
);
234 /* translate from virtual to physical address. Default implementation is successful
235 * no-op(i.e. virtual==physical).
237 int (*virt2phys
)(struct target
*target
, target_addr_t address
, target_addr_t
*physical
);
239 /* read directly from physical memory. caches are bypassed and untouched.
241 * If the target does not support disabling caches, leaving them untouched,
242 * then minimally the actual physical memory location will be read even
243 * if cache states are unchanged, flushed, etc.
245 * Default implementation is to call read_memory.
247 int (*read_phys_memory
)(struct target
*target
, target_addr_t phys_address
,
248 uint32_t size
, uint32_t count
, uint8_t *buffer
);
251 * same as read_phys_memory, except that it writes...
253 int (*write_phys_memory
)(struct target
*target
, target_addr_t phys_address
,
254 uint32_t size
, uint32_t count
, const uint8_t *buffer
);
256 int (*mmu
)(struct target
*target
, int *enabled
);
258 /* after reset is complete, the target can check if things are properly set up.
260 * This can be used to check if e.g. DCC memory writes have been enabled for
261 * arm7/9 targets, which they really should except in the most contrived
264 int (*check_reset
)(struct target
*target
);
266 /* get GDB file-I/O parameters from target
268 int (*get_gdb_fileio_info
)(struct target
*target
, struct gdb_fileio_info
*fileio_info
);
270 /* pass GDB file-I/O response to target
272 int (*gdb_fileio_end
)(struct target
*target
, int retcode
, int fileio_errno
, bool ctrl_c
);
274 /* do target profiling
276 int (*profiling
)(struct target
*target
, uint32_t *samples
,
277 uint32_t max_num_samples
, uint32_t *num_samples
, uint32_t seconds
);
280 #endif /* OPENOCD_TARGET_TARGET_TYPE_H */