X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Ftarget%2Ftrace.h;h=9fa8d606e6af3650e3ef0c02edb962058f4cfabd;hp=0279d51fa63ad4c29f91552102195f4a156f56a7;hb=73ad5cbb1a6d60ee2209ad9faadd19df0295942a;hpb=29000b204d039bc1123027eba755329ab36a3dde diff --git a/src/target/trace.h b/src/target/trace.h index 0279d51fa6..9fa8d606e6 100644 --- a/src/target/trace.h +++ b/src/target/trace.h @@ -20,22 +20,25 @@ #ifndef TRACE_H #define TRACE_H -#include "target.h" +#include "types.h" -typedef struct trace_point_s +struct target_s; +struct command_context_s; + +struct trace_point { - u32 address; - u64 hit_counter; -} trace_point_t; + uint32_t address; + uint64_t hit_counter; +}; typedef struct trace_s { - int num_trace_points; - int trace_points_size; - trace_point_t *trace_points; - int trace_history_size; - u32 *trace_history; - int trace_history_pos; + uint32_t num_trace_points; + uint32_t trace_points_size; + struct trace_point *trace_points; + uint32_t trace_history_size; + uint32_t *trace_history; + uint32_t trace_history_pos; int trace_history_overflowed; } trace_t; @@ -48,7 +51,8 @@ typedef enum trace_status TRACE_OVERFLOWED = 0x8, } trace_status_t; -extern int trace_point(struct target_s *target, int number); +int trace_point(struct target_s *target, uint32_t number); +int trace_register_commands(struct command_context_s *cmd_ctx); #define ERROR_TRACE_IMAGE_UNAVAILABLE -(1500) #define ERROR_TRACE_INSTRUCTION_UNAVAILABLE -(1501)