You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

214 lines
7.5 KiB

  1. /***************************************************************************
  2. * Copyright (C) 2005, 2007 by Dominic Rath *
  3. * Dominic.Rath@gmx.de *
  4. * *
  5. * Copyright (C) 2007 by Vincent Palatin *
  6. * vincent.palatin_openocd@m4x.org *
  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 ETM_H
  24. #define ETM_H
  25. #include "trace.h"
  26. #include "arm_jtag.h"
  27. #include "armv4_5.h"
  28. struct image_s;
  29. /* ETM registers (V1.3 protocol) */
  30. enum
  31. {
  32. ETM_CTRL = 0x00,
  33. ETM_CONFIG = 0x01,
  34. ETM_TRIG_EVENT = 0x02,
  35. ETM_MMD_CTRL = 0x03,
  36. ETM_STATUS = 0x04,
  37. ETM_SYS_CONFIG = 0x05,
  38. ETM_TRACE_RESOURCE_CTRL = 0x06,
  39. ETM_TRACE_EN_CTRL2 = 0x07,
  40. ETM_TRACE_EN_EVENT = 0x08,
  41. ETM_TRACE_EN_CTRL1 = 0x09,
  42. ETM_FIFOFULL_REGION = 0x0a,
  43. ETM_FIFOFULL_LEVEL = 0x0b,
  44. ETM_VIEWDATA_EVENT = 0x0c,
  45. ETM_VIEWDATA_CTRL1 = 0x0d,
  46. ETM_VIEWDATA_CTRL2 = 0x0e,
  47. ETM_VIEWDATA_CTRL3 = 0x0f,
  48. ETM_ADDR_COMPARATOR_VALUE = 0x10,
  49. ETM_ADDR_ACCESS_TYPE = 0x20,
  50. ETM_DATA_COMPARATOR_VALUE = 0x30,
  51. ETM_DATA_COMPARATOR_MASK = 0x40,
  52. ETM_COUNTER_INITAL_VALUE = 0x50,
  53. ETM_COUNTER_ENABLE = 0x54,
  54. ETM_COUNTER_RELOAD_VALUE = 0x58,
  55. ETM_COUNTER_VALUE = 0x5c,
  56. ETM_SEQUENCER_CTRL = 0x60,
  57. ETM_SEQUENCER_STATE = 0x67,
  58. ETM_EXTERNAL_OUTPUT = 0x68,
  59. ETM_CONTEXTID_COMPARATOR_VALUE = 0x6c,
  60. ETM_CONTEXTID_COMPARATOR_MASK = 0x6f,
  61. };
  62. typedef struct etm_reg_s
  63. {
  64. int addr;
  65. arm_jtag_t *jtag_info;
  66. } etm_reg_t;
  67. typedef enum
  68. {
  69. /* Port width */
  70. ETM_PORT_4BIT = 0x00,
  71. ETM_PORT_8BIT = 0x10,
  72. ETM_PORT_16BIT = 0x20,
  73. ETM_PORT_WIDTH_MASK = 0x70,
  74. /* Port modes */
  75. ETM_PORT_NORMAL = 0x00000,
  76. ETM_PORT_MUXED = 0x10000,
  77. ETM_PORT_DEMUXED = 0x20000,
  78. ETM_PORT_MODE_MASK = 0x30000,
  79. /* Clocking modes */
  80. ETM_PORT_FULL_CLOCK = 0x0000,
  81. ETM_PORT_HALF_CLOCK = 0x1000,
  82. ETM_PORT_CLOCK_MASK = 0x1000,
  83. } etm_portmode_t;
  84. typedef enum
  85. {
  86. /* Data trace */
  87. ETMV1_TRACE_NONE = 0x00,
  88. ETMV1_TRACE_DATA = 0x01,
  89. ETMV1_TRACE_ADDR = 0x02,
  90. ETMV1_TRACE_MASK = 0x03,
  91. /* ContextID */
  92. ETMV1_CONTEXTID_NONE = 0x00,
  93. ETMV1_CONTEXTID_8 = 0x10,
  94. ETMV1_CONTEXTID_16 = 0x20,
  95. ETMV1_CONTEXTID_32 = 0x30,
  96. ETMV1_CONTEXTID_MASK = 0x30,
  97. /* Misc */
  98. ETMV1_CYCLE_ACCURATE = 0x100,
  99. ETMV1_BRANCH_OUTPUT = 0x200
  100. } etmv1_tracemode_t;
  101. /* forward-declare ETM context */
  102. struct etm_context_s;
  103. typedef struct etm_capture_driver_s
  104. {
  105. char *name;
  106. int (*register_commands)(struct command_context_s *cmd_ctx);
  107. int (*init)(struct etm_context_s *etm_ctx);
  108. trace_status_t (*status)(struct etm_context_s *etm_ctx);
  109. int (*read_trace)(struct etm_context_s *etm_ctx);
  110. int (*start_capture)(struct etm_context_s *etm_ctx);
  111. int (*stop_capture)(struct etm_context_s *etm_ctx);
  112. } etm_capture_driver_t;
  113. enum
  114. {
  115. ETMV1_TRACESYNC_CYCLE = 0x1,
  116. ETMV1_TRIGGER_CYCLE = 0x2,
  117. };
  118. typedef struct etmv1_trace_data_s
  119. {
  120. uint8_t pipestat; /* bits 0-2 pipeline status */
  121. uint16_t packet; /* packet data (4, 8 or 16 bit) */
  122. int flags; /* ETMV1_TRACESYNC_CYCLE, ETMV1_TRIGGER_CYCLE */
  123. } etmv1_trace_data_t;
  124. /* describe a trace context
  125. * if support for ETMv2 or ETMv3 is to be implemented,
  126. * this will have to be split into version independent elements
  127. * and a version specific part
  128. */
  129. typedef struct etm_context_s
  130. {
  131. target_t *target; /* target this ETM is connected to */
  132. reg_cache_t *reg_cache; /* ETM register cache */
  133. etm_capture_driver_t *capture_driver; /* driver used to access ETM data */
  134. void *capture_driver_priv; /* capture driver private data */
  135. u32 trigger_percent; /* percent of trace buffer to be filled after the trigger */
  136. trace_status_t capture_status; /* current state of capture run */
  137. etmv1_trace_data_t *trace_data; /* trace data */
  138. u32 trace_depth; /* number of trace cycles to be analyzed, 0 if no trace data available */
  139. etm_portmode_t portmode; /* normal, multiplexed or demultiplexed */
  140. etmv1_tracemode_t tracemode; /* type of information the trace contains (data, addres, contextID, ...) */
  141. armv4_5_state_t core_state; /* current core state (ARM, Thumb, Jazelle) */
  142. struct image_s *image; /* source for target opcodes */
  143. u32 pipe_index; /* current trace cycle */
  144. u32 data_index; /* cycle holding next data packet */
  145. int data_half; /* port half on a 16 bit port */
  146. u32 current_pc; /* current program counter */
  147. u32 pc_ok; /* full PC has been acquired */
  148. u32 last_branch; /* last branch address output */
  149. u32 last_branch_reason; /* branch reason code for the last branch encountered */
  150. u32 last_ptr; /* address of the last data access */
  151. u32 ptr_ok; /* whether last_ptr is valid */
  152. u32 context_id; /* context ID of the code being traced */
  153. u32 last_instruction; /* index of last instruction executed (to calculate cycle timings) */
  154. } etm_context_t;
  155. /* PIPESTAT values */
  156. typedef enum
  157. {
  158. STAT_IE = 0x0,
  159. STAT_ID = 0x1,
  160. STAT_IN = 0x2,
  161. STAT_WT = 0x3,
  162. STAT_BE = 0x4,
  163. STAT_BD = 0x5,
  164. STAT_TR = 0x6,
  165. STAT_TD = 0x7
  166. } etmv1_pipestat_t;
  167. /* branch reason values */
  168. typedef enum
  169. {
  170. BR_NORMAL = 0x0, /* Normal PC change : periodic synchro (ETMv1.1) */
  171. BR_ENABLE = 0x1, /* Trace has been enabled */
  172. BR_RESTART = 0x2, /* Trace restarted after a FIFO overflow */
  173. BR_NODEBUG = 0x3, /* ARM has exited for debug state */
  174. BR_PERIOD = 0x4, /* Peridioc synchronization point (ETM>=v1.2)*/
  175. BR_RSVD5 = 0x5, /* reserved */
  176. BR_RSVD6 = 0x6, /* reserved */
  177. BR_RSVD7 = 0x7, /* reserved */
  178. } etmv1_branch_reason_t;
  179. extern char *etmv1v1_branch_reason_strings[];
  180. extern reg_cache_t* etm_build_reg_cache(target_t *target, arm_jtag_t *jtag_info, etm_context_t *etm_ctx);
  181. extern int etm_read_reg(reg_t *reg);
  182. extern int etm_write_reg(reg_t *reg, u32 value);
  183. extern int etm_read_reg_w_check(reg_t *reg, uint8_t* check_value, uint8_t* check_mask);
  184. extern int etm_store_reg(reg_t *reg);
  185. extern int etm_set_reg(reg_t *reg, u32 value);
  186. extern int etm_set_reg_w_exec(reg_t *reg, uint8_t *buf);
  187. extern int etm_setup(target_t *target);
  188. int etm_register_commands(struct command_context_s *cmd_ctx);
  189. int etm_register_user_commands(struct command_context_s *cmd_ctx);
  190. extern etm_context_t* etm_create_context(etm_portmode_t portmode, char *capture_driver_name);
  191. #define ERROR_ETM_INVALID_DRIVER (-1300)
  192. #define ERROR_ETM_PORTMODE_NOT_SUPPORTED (-1301)
  193. #define ERROR_ETM_CAPTURE_INIT_FAILED (-1302)
  194. #define ERROR_ETM_ANALYSIS_FAILED (-1303)
  195. #endif /* ETM_H */