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.
 
 
 
 
 
 

225 lines
7.7 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, see <http://www.gnu.org/licenses/>. *
  20. ***************************************************************************/
  21. #ifndef OPENOCD_TARGET_ETM_H
  22. #define OPENOCD_TARGET_ETM_H
  23. #include "trace.h"
  24. #include "arm_jtag.h"
  25. struct image;
  26. /* ETM registers (JTAG protocol) */
  27. enum {
  28. ETM_CTRL = 0x00,
  29. ETM_CONFIG = 0x01,
  30. ETM_TRIG_EVENT = 0x02,
  31. ETM_ASIC_CTRL = 0x03,
  32. ETM_STATUS = 0x04,
  33. ETM_SYS_CONFIG = 0x05,
  34. ETM_TRACE_RESOURCE_CTRL = 0x06,
  35. ETM_TRACE_EN_CTRL2 = 0x07,
  36. ETM_TRACE_EN_EVENT = 0x08,
  37. ETM_TRACE_EN_CTRL1 = 0x09,
  38. /* optional FIFOFULL */
  39. ETM_FIFOFULL_REGION = 0x0a,
  40. ETM_FIFOFULL_LEVEL = 0x0b,
  41. /* viewdata support */
  42. ETM_VIEWDATA_EVENT = 0x0c,
  43. ETM_VIEWDATA_CTRL1 = 0x0d,
  44. ETM_VIEWDATA_CTRL2 = 0x0e, /* optional */
  45. ETM_VIEWDATA_CTRL3 = 0x0f,
  46. /* N pairs of ADDR_{COMPARATOR,ACCESS} registers */
  47. ETM_ADDR_COMPARATOR_VALUE = 0x10,
  48. ETM_ADDR_ACCESS_TYPE = 0x20,
  49. /* N pairs of DATA_COMPARATOR_{VALUE,MASK} registers */
  50. ETM_DATA_COMPARATOR_VALUE = 0x30,
  51. ETM_DATA_COMPARATOR_MASK = 0x40,
  52. /* N quads of COUNTER_{RELOAD_{VALUE,EVENT},ENABLE,VALUE} registers */
  53. ETM_COUNTER_RELOAD_VALUE = 0x50,
  54. ETM_COUNTER_ENABLE = 0x54,
  55. ETM_COUNTER_RELOAD_EVENT = 0x58,
  56. ETM_COUNTER_VALUE = 0x5c,
  57. /* 6 sequencer event transitions */
  58. ETM_SEQUENCER_EVENT = 0x60,
  59. ETM_SEQUENCER_STATE = 0x67,
  60. /* N triggered outputs */
  61. ETM_EXTERNAL_OUTPUT = 0x68,
  62. /* N task contexts */
  63. ETM_CONTEXTID_COMPARATOR_VALUE = 0x6c,
  64. ETM_CONTEXTID_COMPARATOR_MASK = 0x6f,
  65. ETM_ID = 0x79,
  66. };
  67. struct etm_reg {
  68. uint8_t value[4];
  69. const struct etm_reg_info *reg_info;
  70. struct arm_jtag *jtag_info;
  71. };
  72. /* Subset of ETM_CTRL bit assignments. Many of these
  73. * control the configuration of trace output, which
  74. * hooks up either to ETB or to an external device.
  75. *
  76. * NOTE that these have evolved since the ~v1.3 defns ...
  77. */
  78. enum {
  79. ETM_CTRL_POWERDOWN = (1 << 0),
  80. ETM_CTRL_MONITOR_CPRT = (1 << 1),
  81. /* bits 3:2 == trace type */
  82. ETM_CTRL_TRACE_DATA = (1 << 2),
  83. ETM_CTRL_TRACE_ADDR = (2 << 2),
  84. ETM_CTRL_TRACE_MASK = (3 << 2),
  85. /* Port width (bits 21 and 6:4) */
  86. ETM_PORT_4BIT = 0x00,
  87. ETM_PORT_8BIT = 0x10,
  88. ETM_PORT_16BIT = 0x20,
  89. ETM_PORT_24BIT = 0x30,
  90. ETM_PORT_32BIT = 0x40,
  91. ETM_PORT_48BIT = 0x50,
  92. ETM_PORT_64BIT = 0x60,
  93. ETM_PORT_1BIT = 0x00 | (1 << 21),
  94. ETM_PORT_2BIT = 0x10 | (1 << 21),
  95. ETM_PORT_WIDTH_MASK = 0x70 | (1 << 21),
  96. ETM_CTRL_FIFOFULL_STALL = (1 << 7),
  97. ETM_CTRL_BRANCH_OUTPUT = (1 << 8),
  98. ETM_CTRL_DBGRQ = (1 << 9),
  99. ETM_CTRL_ETM_PROG = (1 << 10),
  100. ETM_CTRL_ETMEN = (1 << 11),
  101. ETM_CTRL_CYCLE_ACCURATE = (1 << 12),
  102. /* Clocking modes -- up to v2.1, bit 13 */
  103. ETM_PORT_FULL_CLOCK = (0 << 13),
  104. ETM_PORT_HALF_CLOCK = (1 << 13),
  105. ETM_PORT_CLOCK_MASK = (1 << 13),
  106. /* bits 15:14 == context ID size used in tracing */
  107. ETM_CTRL_CONTEXTID_NONE = (0 << 14),
  108. ETM_CTRL_CONTEXTID_8 = (1 << 14),
  109. ETM_CTRL_CONTEXTID_16 = (2 << 14),
  110. ETM_CTRL_CONTEXTID_32 = (3 << 14),
  111. ETM_CTRL_CONTEXTID_MASK = (3 << 14),
  112. /* Port modes -- bits 17:16, tied to clocking mode */
  113. ETM_PORT_NORMAL = (0 << 16),
  114. ETM_PORT_MUXED = (1 << 16),
  115. ETM_PORT_DEMUXED = (2 << 16),
  116. ETM_PORT_MODE_MASK = (3 << 16),
  117. /* bits 31:18 defined in v3.0 and later (e.g. ARM11+) */
  118. };
  119. /* forward-declare ETM context */
  120. struct etm_context;
  121. struct etm_capture_driver {
  122. const char *name;
  123. const struct command_registration *commands;
  124. int (*init)(struct etm_context *etm_ctx);
  125. trace_status_t (*status)(struct etm_context *etm_ctx);
  126. int (*read_trace)(struct etm_context *etm_ctx);
  127. int (*start_capture)(struct etm_context *etm_ctx);
  128. int (*stop_capture)(struct etm_context *etm_ctx);
  129. };
  130. enum {
  131. ETMV1_TRACESYNC_CYCLE = 0x1,
  132. ETMV1_TRIGGER_CYCLE = 0x2,
  133. };
  134. struct etmv1_trace_data {
  135. uint8_t pipestat; /* bits 0-2 pipeline status */
  136. uint16_t packet; /* packet data (4, 8 or 16 bit) */
  137. int flags; /* ETMV1_TRACESYNC_CYCLE, ETMV1_TRIGGER_CYCLE */
  138. };
  139. /* describe a trace context
  140. * if support for ETMv2 or ETMv3 is to be implemented,
  141. * this will have to be split into version independent elements
  142. * and a version specific part
  143. */
  144. struct etm_context {
  145. struct target *target; /* target this ETM is connected to */
  146. struct reg_cache *reg_cache; /* ETM register cache */
  147. struct etm_capture_driver *capture_driver; /* driver used to access ETM data */
  148. void *capture_driver_priv; /* capture driver private data */
  149. trace_status_t capture_status; /* current state of capture run */
  150. struct etmv1_trace_data *trace_data; /* trace data */
  151. uint32_t trace_depth; /* number of cycles to be analyzed, 0 if no data available */
  152. uint32_t control; /* shadow of ETM_CTRL */
  153. int /*arm_state*/ core_state; /* current core state */
  154. struct image *image; /* source for target opcodes */
  155. uint32_t pipe_index; /* current trace cycle */
  156. uint32_t data_index; /* cycle holding next data packet */
  157. bool data_half; /* port half on a 16 bit port */
  158. bool pc_ok; /* full PC has been acquired */
  159. bool ptr_ok; /* whether last_ptr is valid */
  160. uint8_t bcd_vers; /* e.g. 0x13 == ETMv1.3 */
  161. uint32_t config; /* cache of ETM_CONFIG value */
  162. uint32_t id; /* cache of ETM_ID value, or 0 */
  163. uint32_t current_pc; /* current program counter */
  164. uint32_t last_branch; /* last branch address output */
  165. uint32_t last_branch_reason; /* type of last branch encountered */
  166. uint32_t last_ptr; /* address of the last data access */
  167. uint32_t last_instruction; /* index of last executed (to calc timings) */
  168. };
  169. /* PIPESTAT values */
  170. typedef enum {
  171. STAT_IE = 0x0,
  172. STAT_ID = 0x1,
  173. STAT_IN = 0x2,
  174. STAT_WT = 0x3,
  175. STAT_BE = 0x4,
  176. STAT_BD = 0x5,
  177. STAT_TR = 0x6,
  178. STAT_TD = 0x7
  179. } etmv1_pipestat_t;
  180. /* branch reason values */
  181. typedef enum {
  182. BR_NORMAL = 0x0, /* Normal PC change : periodic synchro (ETMv1.1) */
  183. BR_ENABLE = 0x1, /* Trace has been enabled */
  184. BR_RESTART = 0x2, /* Trace restarted after a FIFO overflow */
  185. BR_NODEBUG = 0x3, /* ARM has exited for debug state */
  186. BR_PERIOD = 0x4, /* Periodic synchronization point (ETM >= v1.2)*/
  187. BR_RSVD5 = 0x5, /* reserved */
  188. BR_RSVD6 = 0x6, /* reserved */
  189. BR_RSVD7 = 0x7, /* reserved */
  190. } etmv1_branch_reason_t;
  191. struct reg_cache *etm_build_reg_cache(struct target *target,
  192. struct arm_jtag *jtag_info, struct etm_context *etm_ctx);
  193. int etm_setup(struct target *target);
  194. extern const struct command_registration etm_command_handlers[];
  195. #define ERROR_ETM_INVALID_DRIVER (-1300)
  196. #define ERROR_ETM_PORTMODE_NOT_SUPPORTED (-1301)
  197. #define ERROR_ETM_CAPTURE_INIT_FAILED (-1302)
  198. #define ERROR_ETM_ANALYSIS_FAILED (-1303)
  199. #endif /* OPENOCD_TARGET_ETM_H */