target: target_get_name() --> target_type_name()
[openocd.git] / src / target / target_type.h
1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
4 * *
5 * Copyright (C) 2007,2008,2009 Øyvind Harboe *
6 * oyvind.harboe@zylin.com *
7 * *
8 * Copyright (C) 2008 by Spencer Oliver *
9 * spen@spen-soft.co.uk *
10 * *
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. *
15 * *
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. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
25 ***************************************************************************/
26 #ifndef TARGET_TYPE_H
27 #define TARGET_TYPE_H
28
29 #include "types.h"
30
31 struct target;
32
33 /**
34 * This holds methods shared between all instances of a given target
35 * type. For example, all Cortex-M3 targets on a scan chain share
36 * the same method table.
37 */
38 struct target_type
39 {
40 /**
41 * Name of this type of target. Do @b not access this
42 * field directly, use target_type_name() instead.
43 */
44 char *name;
45
46 /* poll current target status */
47 int (*poll)(struct target *target);
48 /* Invoked only from target_arch_state().
49 * Issue USER() w/architecture specific status. */
50 int (*arch_state)(struct target *target);
51
52 /* target request support */
53 int (*target_request_data)(struct target *target, uint32_t size, uint8_t *buffer);
54
55 /* halt will log a warning, but return ERROR_OK if the target is already halted. */
56 int (*halt)(struct target *target);
57 int (*resume)(struct target *target, int current, uint32_t address, int handle_breakpoints, int debug_execution);
58 int (*step)(struct target *target, int current, uint32_t address, int handle_breakpoints);
59
60 /* target reset control. assert reset can be invoked when OpenOCD and
61 * the target is out of sync.
62 *
63 * A typical example is that the target was power cycled while OpenOCD
64 * thought the target was halted or running.
65 *
66 * assert_reset() can therefore make no assumptions whatsoever about the
67 * state of the target
68 *
69 * Before assert_reset() for the target is invoked, a TRST/tms and
70 * chain validation is executed. TRST should not be asserted
71 * during target assert unless there is no way around it due to
72 * the way reset's are configured.
73 *
74 */
75 int (*assert_reset)(struct target *target);
76 int (*deassert_reset)(struct target *target);
77 int (*soft_reset_halt_imp)(struct target *target);
78 int (*soft_reset_halt)(struct target *target);
79
80 /**
81 * Target register access for GDB. Do @b not call this function
82 * directly, use target_get_gdb_reg_list() instead.
83 *
84 * Danger! this function will succeed even if the target is running
85 * and return a register list with dummy values.
86 *
87 * The reason is that GDB connection will fail without a valid register
88 * list, however it is after GDB is connected that monitor commands can
89 * be run to properly initialize the target
90 */
91 int (*get_gdb_reg_list)(struct target *target, struct reg **reg_list[], int *reg_list_size);
92
93 /* target memory access
94 * size: 1 = byte (8bit), 2 = half-word (16bit), 4 = word (32bit)
95 * count: number of items of <size>
96 */
97 int (*read_memory_imp)(struct target *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
98 /**
99 * Target memory read callback. Do @b not call this function
100 * directly, use target_read_memory() instead.
101 */
102 int (*read_memory)(struct target *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
103 int (*write_memory_imp)(struct target *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
104 /**
105 * Target memory write callback. Do @b not call this function
106 * directly, use target_write_memory() instead.
107 */
108 int (*write_memory)(struct target *target, uint32_t address, uint32_t size, uint32_t count, uint8_t *buffer);
109
110 /**
111 * Write target memory in multiples of 4 bytes, optimized for
112 * writing large quantities of data. Do @b not call this
113 * function directly, use target_bulk_write_memory() instead.
114 */
115 int (*bulk_write_memory)(struct target *target, uint32_t address, uint32_t count, uint8_t *buffer);
116
117 int (*checksum_memory)(struct target *target, uint32_t address, uint32_t count, uint32_t* checksum);
118 int (*blank_check_memory)(struct target *target, uint32_t address, uint32_t count, uint32_t* blank);
119
120 /*
121 * target break-/watchpoint control
122 * rw: 0 = write, 1 = read, 2 = access
123 *
124 * Target must be halted while this is invoked as this
125 * will actually set up breakpoints on target.
126 *
127 * The breakpoint hardware will be set up upon adding the first breakpoint.
128 *
129 * Upon GDB connection all breakpoints/watchpoints are cleared.
130 */
131 int (*add_breakpoint)(struct target *target, struct breakpoint *breakpoint);
132
133 /* remove breakpoint. hw will only be updated if the target is currently halted.
134 * However, this method can be invoked on unresponsive targets.
135 */
136 int (*remove_breakpoint)(struct target *target, struct breakpoint *breakpoint);
137 int (*add_watchpoint)(struct target *target, struct watchpoint *watchpoint);
138 /* remove watchpoint. hw will only be updated if the target is currently halted.
139 * However, this method can be invoked on unresponsive targets.
140 */
141 int (*remove_watchpoint)(struct target *target, struct watchpoint *watchpoint);
142
143 /* target algorithm support */
144 int (*run_algorithm_imp)(struct target *target, int num_mem_params, struct mem_param *mem_params, int num_reg_params, struct reg_param *reg_param, uint32_t entry_point, uint32_t exit_point, int timeout_ms, void *arch_info);
145 /**
146 * Target algorithm support. Do @b not call this method directly,
147 * use target_run_algorithm() instead.
148 */
149 int (*run_algorithm)(struct target *target, int num_mem_params, struct mem_param *mem_params, int num_reg_params, struct reg_param *reg_param, uint32_t entry_point, uint32_t exit_point, int timeout_ms, void *arch_info);
150
151 const struct command_registration *commands;
152
153 /* called when target is created */
154 int (*target_create)(struct target *target, Jim_Interp *interp);
155
156 /* called for various config parameters */
157 /* returns JIM_CONTINUE - if option not understood */
158 /* otherwise: JIM_OK, or JIM_ERR, */
159 int (*target_jim_configure)(struct target *target, Jim_GetOptInfo *goi);
160
161 /* target commands specifically handled by the target */
162 /* returns JIM_OK, or JIM_ERR, or JIM_CONTINUE - if option not understood */
163 int (*target_jim_commands)(struct target *target, Jim_GetOptInfo *goi);
164
165 /**
166 * This method is used to perform target setup that requires
167 * JTAG access.
168 *
169 * This may be called multiple times. It is called after the
170 * scan chain is initially validated, or later after the target
171 * is enabled by a JRC. It may also be called during some
172 * parts of the reset sequence.
173 *
174 * For one-time initialization tasks, use target_was_examined()
175 * and target_set_examined(). For example, probe the hardware
176 * before setting up chip-specific state, and then set that
177 * flag so you don't do that again.
178 */
179 int (*examine)(struct target *target);
180
181 /* Set up structures for target.
182 *
183 * It is illegal to talk to the target at this stage as this fn is invoked
184 * before the JTAG chain has been examined/verified
185 * */
186 int (*init_target)(struct command_context *cmd_ctx, struct target *target);
187
188 /* translate from virtual to physical address. Default implementation is successful
189 * no-op(i.e. virtual==physical).
190 */
191 int (*virt2phys)(struct target *target, uint32_t address, uint32_t *physical);
192
193 /* read directly from physical memory. caches are bypassed and untouched.
194 *
195 * If the target does not support disabling caches, leaving them untouched,
196 * then minimally the actual physical memory location will be read even
197 * if cache states are unchanged, flushed, etc.
198 *
199 * Default implementation is to call read_memory.
200 */
201 int (*read_phys_memory)(struct target *target, uint32_t phys_address, uint32_t size, uint32_t count, uint8_t *buffer);
202
203 /*
204 * same as read_phys_memory, except that it writes...
205 */
206 int (*write_phys_memory)(struct target *target, uint32_t phys_address, uint32_t size, uint32_t count, uint8_t *buffer);
207
208 int (*mmu)(struct target *target, int *enabled);
209
210 /* Read coprocessor - arm specific. Default implementation returns error. */
211 int (*mrc)(struct target *target, int cpnum, uint32_t op1, uint32_t op2, uint32_t CRn, uint32_t CRm, uint32_t *value);
212
213 /* Write coprocessor. Default implementation returns error. */
214 int (*mcr)(struct target *target, int cpnum, uint32_t op1, uint32_t op2, uint32_t CRn, uint32_t CRm, uint32_t value);
215 };
216
217 #endif // TARGET_TYPE_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)