]> git.sur5r.net Git - openocd/blob - src/target/target.h
- fix target_examine declaration
[openocd] / src / target / target.h
1 /***************************************************************************
2  *   Copyright (C) 2005 by Dominic Rath                                    *
3  *   Dominic.Rath@gmx.de                                                   *
4  *                                                                         *
5  *   Copyright (C) 2007,2008 Ã˜yvind Harboe                                      *
6  *   oyvind.harboe@zylin.com                                               *
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 TARGET_H
24 #define TARGET_H
25
26 #include "register.h"
27 #include "breakpoints.h"
28 #include "algorithm.h"
29 #include "trace.h"
30
31 #include "command.h"
32 #include "types.h"
33
34 #include <sys/time.h>
35 #include <time.h>
36
37 struct reg_s;
38 struct command_context_s;
39 /*
40 TARGET_UNKNOWN = 0: we don't know anything about the target yet
41 TARGET_RUNNING = 1: the target is executing user code
42 TARGET_HALTED  = 2: the target is not executing code, and ready to talk to the
43 debugger. on an xscale it means that the debug handler is executing
44 TARGET_RESET   = 3: the target is being held in reset (only a temporary state,
45 not sure how this is used with all the recent changes)
46 TARGET_DEBUG_RUNNING = 4: the target is running, but it is executing code on
47 behalf of the debugger (e.g. algorithm for flashing)
48 */
49 enum target_state
50 {
51         TARGET_UNKNOWN = 0,
52         TARGET_RUNNING = 1,
53         TARGET_HALTED = 2,
54         TARGET_RESET = 3,
55         TARGET_DEBUG_RUNNING = 4,
56 };
57
58 extern char *target_state_strings[];
59
60 enum target_reset_mode
61 {
62         RESET_RUN = 0,          /* reset and let target run */
63         RESET_HALT = 1,         /* reset and halt target out of reset */
64         RESET_INIT = 2,         /* reset and halt target out of reset, then run init script */
65 };
66
67 enum target_debug_reason
68 {
69         DBG_REASON_DBGRQ = 0,
70         DBG_REASON_BREAKPOINT = 1,
71         DBG_REASON_WATCHPOINT = 2,
72         DBG_REASON_WPTANDBKPT = 3,
73         DBG_REASON_SINGLESTEP = 4,
74         DBG_REASON_NOTHALTED = 5,
75         DBG_REASON_UNDEFINED = 6
76 };
77
78 extern char *target_debug_reason_strings[];
79
80 enum target_endianess
81 {
82         TARGET_BIG_ENDIAN = 0, TARGET_LITTLE_ENDIAN = 1
83 };
84
85 extern char *target_endianess_strings[];
86
87 struct target_s;
88
89 typedef struct working_area_s
90 {
91         u32 address;
92         u32 size;
93         int free;
94         u8 *backup;
95         struct working_area_s **user;
96         struct working_area_s *next;
97 } working_area_t;
98
99 typedef struct target_type_s
100 {
101         char *name;
102         
103         int examined;
104
105         /* poll current target status */
106         int (*poll)(struct target_s *target);
107         /* Invoked only from target_arch_state().
108          * Issue USER() w/architecture specific status.  */
109         int (*arch_state)(struct target_s *target);
110
111         /* target request support */
112         int (*target_request_data)(struct target_s *target, u32 size, u8 *buffer);
113
114         /* halt will log a warning, but return ERROR_OK if the target is already halted. */
115         int (*halt)(struct target_s *target);
116         int (*resume)(struct target_s *target, int current, u32 address, int handle_breakpoints, int debug_execution);
117         int (*step)(struct target_s *target, int current, u32 address, int handle_breakpoints);
118         
119         /* target reset control. assert reset can be invoked when OpenOCD and
120          * the target is out of sync.
121          * 
122          * A typical example is that the target was power cycled while OpenOCD
123          * thought the target was halted or running.
124          * 
125          * assert_reset() can therefore make no assumptions whatsoever about the
126          * state of the target 
127          * 
128          * Before assert_reset() for the target is invoked, a TRST/tms and
129          * chain validation is executed. TRST should not be asserted
130          * during target assert unless there is no way around it due to
131          * the way reset's are configured.
132          * 
133          */
134         int (*assert_reset)(struct target_s *target);
135         int (*deassert_reset)(struct target_s *target);
136         int (*soft_reset_halt_imp)(struct target_s *target);
137         int (*soft_reset_halt)(struct target_s *target);
138         
139         /* target register access for gdb.
140          * 
141          * Danger! this function will succeed even if the target is running
142          * and return a register list with dummy values.
143          * 
144          * The reason is that GDB connection will fail without a valid register
145          * list, however it is after GDB is connected that monitor commands can
146          * be run to properly initialize the target
147          */
148         int (*get_gdb_reg_list)(struct target_s *target, struct reg_s **reg_list[], int *reg_list_size);
149         
150         /* target memory access 
151         * size: 1 = byte (8bit), 2 = half-word (16bit), 4 = word (32bit)
152         * count: number of items of <size>
153         */
154         int (*read_memory_imp)(struct target_s *target, u32 address, u32 size, u32 count, u8 *buffer);
155         int (*read_memory)(struct target_s *target, u32 address, u32 size, u32 count, u8 *buffer);
156         int (*write_memory_imp)(struct target_s *target, u32 address, u32 size, u32 count, u8 *buffer);
157         int (*write_memory)(struct target_s *target, u32 address, u32 size, u32 count, u8 *buffer);
158         
159         /* write target memory in multiples of 4 byte, optimized for writing large quantities of data */
160         int (*bulk_write_memory)(struct target_s *target, u32 address, u32 count, u8 *buffer);
161         
162         int (*checksum_memory)(struct target_s *target, u32 address, u32 count, u32* checksum);
163         int (*blank_check_memory)(struct target_s *target, u32 address, u32 count, u32* blank);
164         
165         /* target break-/watchpoint control 
166         * rw: 0 = write, 1 = read, 2 = access
167         */
168         int (*add_breakpoint)(struct target_s *target, breakpoint_t *breakpoint);
169         int (*remove_breakpoint)(struct target_s *target, breakpoint_t *breakpoint);
170         int (*add_watchpoint)(struct target_s *target, watchpoint_t *watchpoint);
171         int (*remove_watchpoint)(struct target_s *target, watchpoint_t *watchpoint);
172
173         /* target algorithm support */
174         int (*run_algorithm_imp)(struct target_s *target, int num_mem_params, mem_param_t *mem_params, int num_reg_params, reg_param_t *reg_param, u32 entry_point, u32 exit_point, int timeout_ms, void *arch_info);
175         int (*run_algorithm)(struct target_s *target, int num_mem_params, mem_param_t *mem_params, int num_reg_params, reg_param_t *reg_param, u32 entry_point, u32 exit_point, int timeout_ms, void *arch_info);
176         
177         int (*register_commands)(struct command_context_s *cmd_ctx);
178         int (*target_command)(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc, struct target_s *target);
179         /* invoked after JTAG chain has been examined & validated. During
180          * this stage the target is examined and any additional setup is
181          * performed.
182          * 
183          * invoked every time after the jtag chain has been validated/examined
184          */
185         int (*examine)(struct target_s *target);
186         /* Set up structures for target.
187          *  
188          * It is illegal to talk to the target at this stage as this fn is invoked
189          * before the JTAG chain has been examined/verified
190      */
191         int (*init_target)(struct command_context_s *cmd_ctx, struct target_s *target);
192         int (*quit)(void);
193         
194         int (*virt2phys)(struct target_s *target, u32 address, u32 *physical);
195         int (*mmu)(struct target_s *target, int *enabled);
196         
197 } target_type_t;
198
199 typedef struct target_s
200 {
201         target_type_t *type;                            /* target type definition (name, access functions) */
202         int reset_halt;                                         /* attempt resetting the CPU into the halted mode? */
203         u32 working_area;                                       /* working area (initialized RAM). Evaluated 
204                                                                                    upon first allocation from virtual/physical address. */
205         u32 working_area_virt;                          /* virtual address */
206         u32 working_area_phys;                          /* physical address */
207         u32 working_area_size;                          /* size in bytes */
208         u32 backup_working_area;                        /* whether the content of the working area has to be preserved */
209         struct working_area_s *working_areas;/* list of allocated working areas */
210         enum target_debug_reason debug_reason;/* reason why the target entered debug state */
211         enum target_endianess endianness;       /* target endianess */
212         enum target_state state;                        /* the current backend-state (running, halted, ...) */
213         struct reg_cache_s *reg_cache;          /* the first register cache of the target (core regs) */
214         struct breakpoint_s *breakpoints;       /* list of breakpoints */
215         struct watchpoint_s *watchpoints;       /* list of watchpoints */
216         struct trace_s *trace_info;                     /* generic trace information */
217         struct debug_msg_receiver_s *dbgmsg;/* list of debug message receivers */
218         u32 dbg_msg_enabled;                            /* debug message status */
219         void *arch_info;                                        /* architecture specific information */
220         struct target_s *next;                          /* next target in list */
221 } target_t;
222
223 enum target_event
224 {
225         TARGET_EVENT_HALTED,            /* target entered debug state from normal execution or reset */
226         TARGET_EVENT_RESUMED,           /* target resumed to normal execution */
227         TARGET_EVENT_RESET,                     /* target entered reset */
228         TARGET_EVENT_DEBUG_HALTED,      /* target entered debug state, but was executing on behalf of the debugger */
229         TARGET_EVENT_DEBUG_RESUMED, /* target resumed to execute on behalf of the debugger */
230         TARGET_EVENT_GDB_PROGRAM        /* target about to be be programmed by gdb */
231 };
232
233 typedef struct target_event_callback_s
234 {
235         int (*callback)(struct target_s *target, enum target_event event, void *priv);
236         void *priv;
237         struct target_event_callback_s *next;
238 } target_event_callback_t;
239
240 typedef struct target_timer_callback_s
241 {
242         int (*callback)(void *priv);
243         int time_ms;
244         int periodic;
245         struct timeval when;
246         void *priv;
247         struct target_timer_callback_s *next;
248 } target_timer_callback_t;
249
250 extern int target_register_commands(struct command_context_s *cmd_ctx);
251 extern int target_register_user_commands(struct command_context_s *cmd_ctx);
252 extern int target_init(struct command_context_s *cmd_ctx);
253 extern int target_examine(void);
254 extern int handle_target(void *priv);
255 extern int target_process_reset(struct command_context_s *cmd_ctx, enum target_reset_mode reset_mode);
256
257 extern int target_register_event_callback(int (*callback)(struct target_s *target, enum target_event event, void *priv), void *priv);
258 extern int target_unregister_event_callback(int (*callback)(struct target_s *target, enum target_event event, void *priv), void *priv);
259 extern int target_poll(target_t *target);
260 extern int target_resume(target_t *target, int current, u32 address, int handle_breakpoints, int debug_execution);
261 extern int target_halt(target_t *target);
262 extern int target_call_event_callbacks(target_t *target, enum target_event event);
263
264 /* The period is very approximate, the callback can happen much more often 
265  * or much more rarely than specified
266  */
267 extern int target_register_timer_callback(int (*callback)(void *priv), int time_ms, int periodic, void *priv);
268 extern int target_unregister_timer_callback(int (*callback)(void *priv), void *priv);
269 extern int target_call_timer_callbacks(void);
270 /* invoke this to ensure that e.g. polling timer callbacks happen before
271  * a syncrhonous command completes.
272  */
273 extern int target_call_timer_callbacks_now(void);
274
275 extern target_t* get_current_target(struct command_context_s *cmd_ctx);
276 extern int get_num_by_target(target_t *query_target);
277 extern target_t* get_target_by_num(int num);
278
279 extern int target_write_buffer(struct target_s *target, u32 address, u32 size, u8 *buffer);
280 extern int target_read_buffer(struct target_s *target, u32 address, u32 size, u8 *buffer);
281 extern int target_checksum_memory(struct target_s *target, u32 address, u32 size, u32* crc);
282 extern int target_blank_check_memory(struct target_s *target, u32 address, u32 size, u32* blank);
283 extern int target_wait_state(target_t *target, enum target_state state, int ms);
284
285 /* DANGER!!!!!
286  * 
287  * if "area" passed in to target_alloc_working_area() points to a memory
288  * location that goes out of scope (e.g. a pointer on the stack), then
289  * the caller of target_alloc_working_area() is responsible for invoking
290  * target_free_working_area() before "area" goes out of scope.
291  * 
292  * target_free_all_working_areas() will NULL out the "area" pointer
293  * upon resuming or resetting the CPU.
294  * 
295  */
296 extern int target_alloc_working_area(struct target_s *target, u32 size, working_area_t **area);
297 extern int target_free_working_area(struct target_s *target, working_area_t *area);
298 extern int target_free_working_area_restore(struct target_s *target, working_area_t *area, int restore);
299 extern int target_free_all_working_areas(struct target_s *target);
300 extern int target_free_all_working_areas_restore(struct target_s *target, int restore);
301
302 extern target_t *targets;
303
304 extern target_event_callback_t *target_event_callbacks;
305 extern target_timer_callback_t *target_timer_callbacks;
306
307 extern u32 target_buffer_get_u32(target_t *target, u8 *buffer);
308 extern u16 target_buffer_get_u16(target_t *target, u8 *buffer);
309 extern void target_buffer_set_u32(target_t *target, u8 *buffer, u32 value);
310 extern void target_buffer_set_u16(target_t *target, u8 *buffer, u16 value);
311
312 int target_read_u32(struct target_s *target, u32 address, u32 *value);
313 int target_read_u16(struct target_s *target, u32 address, u16 *value);
314 int target_read_u8(struct target_s *target, u32 address, u8 *value);
315 int target_write_u32(struct target_s *target, u32 address, u32 value);
316 int target_write_u16(struct target_s *target, u32 address, u16 value);
317 int target_write_u8(struct target_s *target, u32 address, u8 value);
318
319 /* Issues USER() statements with target state information */
320 int target_arch_state(struct target_s *target);
321
322 int target_invoke_script(struct command_context_s *cmd_ctx, target_t *target, char *name);
323
324 #define ERROR_TARGET_INVALID    (-300)
325 #define ERROR_TARGET_INIT_FAILED (-301)
326 #define ERROR_TARGET_TIMEOUT    (-302)
327 #define ERROR_TARGET_NOT_HALTED (-304)
328 #define ERROR_TARGET_FAILURE    (-305)
329 #define ERROR_TARGET_UNALIGNED_ACCESS   (-306)
330 #define ERROR_TARGET_DATA_ABORT (-307)
331 #define ERROR_TARGET_RESOURCE_NOT_AVAILABLE     (-308)
332 #define ERROR_TARGET_TRANSLATION_FAULT  (-309)
333 #define ERROR_TARGET_NOT_RUNNING (-310)
334
335 #endif /* TARGET_H */