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.
 
 
 
 
 
 

486 lines
16 KiB

  1. /***************************************************************************
  2. * Copyright (C) 2006 by Magnus Lundin *
  3. * lundin@mlu.mine.nu *
  4. * *
  5. * Copyright (C) 2008 by Spencer Oliver *
  6. * spen@spen-soft.co.uk *
  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. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
  22. ***************************************************************************/
  23. #ifndef ARM_ADI_V5_H
  24. #define ARM_ADI_V5_H
  25. /**
  26. * @file
  27. * This defines formats and data structures used to talk to ADIv5 entities.
  28. * Those include a DAP, different types of Debug Port (DP), and memory mapped
  29. * resources accessed through a MEM-AP.
  30. */
  31. #include "arm_jtag.h"
  32. /* FIXME remove these JTAG-specific decls when mem_ap_read_buf_u32()
  33. * is no longer JTAG-specific
  34. */
  35. #define JTAG_DP_DPACC 0xA
  36. #define JTAG_DP_APACC 0xB
  37. /* three-bit ACK values for SWD access (sent LSB first) */
  38. #define SWD_ACK_OK 0x1
  39. #define SWD_ACK_WAIT 0x2
  40. #define SWD_ACK_FAULT 0x4
  41. #define DPAP_WRITE 0
  42. #define DPAP_READ 1
  43. #define BANK_REG(bank, reg) (((bank) << 4) | (reg))
  44. /* A[3:0] for DP registers; A[1:0] are always zero.
  45. * - JTAG accesses all of these via JTAG_DP_DPACC, except for
  46. * IDCODE (JTAG_DP_IDCODE) and ABORT (JTAG_DP_ABORT).
  47. * - SWD accesses these directly, sometimes needing SELECT.CTRLSEL
  48. */
  49. #define DP_IDCODE BANK_REG(0x0, 0x0) /* SWD: read */
  50. #define DP_ABORT BANK_REG(0x0, 0x0) /* SWD: write */
  51. #define DP_CTRL_STAT BANK_REG(0x0, 0x4) /* r/w */
  52. #define DP_RESEND BANK_REG(0x0, 0x8) /* SWD: read */
  53. #define DP_SELECT BANK_REG(0x0, 0x8) /* JTAG: r/w; SWD: write */
  54. #define DP_RDBUFF BANK_REG(0x0, 0xC) /* read-only */
  55. #define DP_WCR BANK_REG(0x1, 0x4) /* SWD: r/w */
  56. #define WCR_TO_TRN(wcr) ((uint32_t)(1 + (3 & ((wcr)) >> 8))) /* 1..4 clocks */
  57. #define WCR_TO_PRESCALE(wcr) ((uint32_t)(7 & ((wcr)))) /* impl defined */
  58. /* Fields of the DP's AP ABORT register */
  59. #define DAPABORT (1UL << 0)
  60. #define STKCMPCLR (1UL << 1) /* SWD-only */
  61. #define STKERRCLR (1UL << 2) /* SWD-only */
  62. #define WDERRCLR (1UL << 3) /* SWD-only */
  63. #define ORUNERRCLR (1UL << 4) /* SWD-only */
  64. /* Fields of the DP's CTRL/STAT register */
  65. #define CORUNDETECT (1UL << 0)
  66. #define SSTICKYORUN (1UL << 1)
  67. /* 3:2 - transaction mode (e.g. pushed compare) */
  68. #define SSTICKYCMP (1UL << 4)
  69. #define SSTICKYERR (1UL << 5)
  70. #define READOK (1UL << 6) /* SWD-only */
  71. #define WDATAERR (1UL << 7) /* SWD-only */
  72. /* 11:8 - mask lanes for pushed compare or verify ops */
  73. /* 21:12 - transaction counter */
  74. #define CDBGRSTREQ (1UL << 26)
  75. #define CDBGRSTACK (1UL << 27)
  76. #define CDBGPWRUPREQ (1UL << 28)
  77. #define CDBGPWRUPACK (1UL << 29)
  78. #define CSYSPWRUPREQ (1UL << 30)
  79. #define CSYSPWRUPACK (1UL << 31)
  80. /* MEM-AP register addresses */
  81. /* TODO: rename as MEM_AP_REG_* */
  82. #define AP_REG_CSW 0x00
  83. #define AP_REG_TAR 0x04
  84. #define AP_REG_DRW 0x0C
  85. #define AP_REG_BD0 0x10
  86. #define AP_REG_BD1 0x14
  87. #define AP_REG_BD2 0x18
  88. #define AP_REG_BD3 0x1C
  89. #define AP_REG_CFG 0xF4 /* big endian? */
  90. #define AP_REG_BASE 0xF8
  91. /* Generic AP register address */
  92. #define AP_REG_IDR 0xFC
  93. /* Fields of the MEM-AP's CSW register */
  94. #define CSW_8BIT 0
  95. #define CSW_16BIT 1
  96. #define CSW_32BIT 2
  97. #define CSW_ADDRINC_MASK (3UL << 4)
  98. #define CSW_ADDRINC_OFF 0UL
  99. #define CSW_ADDRINC_SINGLE (1UL << 4)
  100. #define CSW_ADDRINC_PACKED (2UL << 4)
  101. #define CSW_DEVICE_EN (1UL << 6)
  102. #define CSW_TRIN_PROG (1UL << 7)
  103. #define CSW_SPIDEN (1UL << 23)
  104. /* 30:24 - implementation-defined! */
  105. #define CSW_HPROT (1UL << 25) /* ? */
  106. #define CSW_MASTER_DEBUG (1UL << 29) /* ? */
  107. #define CSW_SPROT (1UL << 30)
  108. #define CSW_DBGSWENABLE (1UL << 31)
  109. /**
  110. * This represents an ARM Debug Interface (v5) Debug Access Port (DAP).
  111. * A DAP has two types of component: one Debug Port (DP), which is a
  112. * transport agent; and at least one Access Port (AP), controlling
  113. * resource access. Most common is a MEM-AP, for memory access.
  114. *
  115. * There are two basic DP transports: JTAG, and ARM's low pin-count SWD.
  116. * Accordingly, this interface is responsible for hiding the transport
  117. * differences so upper layer code can largely ignore them.
  118. *
  119. * When the chip is implemented with JTAG-DP or SW-DP, the transport is
  120. * fixed as JTAG or SWD, respectively. Chips incorporating SWJ-DP permit
  121. * a choice made at board design time (by only using the SWD pins), or
  122. * as part of setting up a debug session (if all the dual-role JTAG/SWD
  123. * signals are available).
  124. */
  125. struct adiv5_dap {
  126. const struct dap_ops *ops;
  127. struct arm_jtag *jtag_info;
  128. /* Control config */
  129. uint32_t dp_ctrl_stat;
  130. uint32_t apcsw[256];
  131. uint32_t apsel;
  132. /**
  133. * Cache for DP_SELECT bits identifying the current AP. A DAP may
  134. * connect to multiple APs, such as one MEM-AP for general access,
  135. * another reserved for accessing debug modules, and a JTAG-DP.
  136. * "-1" indicates no cached value.
  137. */
  138. uint32_t ap_current;
  139. /**
  140. * Cache for DP_SELECT bits identifying the current four-word AP
  141. * register bank. This caches AP register addresss bits 7:4; JTAG
  142. * and SWD access primitves pass address bits 3:2; bits 1:0 are zero.
  143. * "-1" indicates no cached value.
  144. */
  145. uint32_t ap_bank_value;
  146. /**
  147. * Cache for DP_SELECT bits identifying the current four-word DP
  148. * register bank. This caches DP register addresss bits 7:4; JTAG
  149. * and SWD access primitves pass address bits 3:2; bits 1:0 are zero.
  150. */
  151. uint32_t dp_bank_value;
  152. /**
  153. * Cache for (MEM-AP) AP_REG_CSW register value. This is written to
  154. * configure an access mode, such as autoincrementing AP_REG_TAR during
  155. * word access. "-1" indicates no cached value.
  156. */
  157. uint32_t ap_csw_value;
  158. /**
  159. * Cache for (MEM-AP) AP_REG_TAR register value This is written to
  160. * configure the address being read or written
  161. * "-1" indicates no cached value.
  162. */
  163. uint32_t ap_tar_value;
  164. /* information about current pending SWjDP-AHBAP transaction */
  165. uint8_t ack;
  166. /**
  167. * Holds the pointer to the destination word for the last queued read,
  168. * for use with posted AP read sequence optimization.
  169. */
  170. uint32_t *last_read;
  171. /**
  172. * Configures how many extra tck clocks are added after starting a
  173. * MEM-AP access before we try to read its status (and/or result).
  174. */
  175. uint32_t memaccess_tck;
  176. /* Size of TAR autoincrement block, ARM ADI Specification requires at least 10 bits */
  177. uint32_t tar_autoincr_block;
  178. /* true if packed transfers are supported by the MEM-AP */
  179. bool packed_transfers;
  180. /* true if unaligned memory access is not supported by the MEM-AP */
  181. bool unaligned_access_bad;
  182. /* The TI TMS470 and TMS570 series processors use a BE-32 memory ordering
  183. * despite lack of support in the ARMv7 architecture. Memory access through
  184. * the AHB-AP has strange byte ordering these processors, and we need to
  185. * swizzle appropriately. */
  186. bool ti_be_32_quirks;
  187. };
  188. /**
  189. * Transport-neutral representation of queued DAP transactions, supporting
  190. * both JTAG and SWD transports. All submitted transactions are logically
  191. * queued, until the queue is executed by run(). Some implementations might
  192. * execute transactions as soon as they're submitted, but no status is made
  193. * available until run().
  194. */
  195. struct dap_ops {
  196. /** If the DAP transport isn't SWD, it must be JTAG. Upper level
  197. * code may need to care about the difference in some cases.
  198. */
  199. bool is_swd;
  200. /** DP register read. */
  201. int (*queue_dp_read)(struct adiv5_dap *dap, unsigned reg,
  202. uint32_t *data);
  203. /** DP register write. */
  204. int (*queue_dp_write)(struct adiv5_dap *dap, unsigned reg,
  205. uint32_t data);
  206. /** AP register read. */
  207. int (*queue_ap_read)(struct adiv5_dap *dap, unsigned reg,
  208. uint32_t *data);
  209. /** AP register write. */
  210. int (*queue_ap_write)(struct adiv5_dap *dap, unsigned reg,
  211. uint32_t data);
  212. /** AP operation abort. */
  213. int (*queue_ap_abort)(struct adiv5_dap *dap, uint8_t *ack);
  214. /** Executes all queued DAP operations. */
  215. int (*run)(struct adiv5_dap *dap);
  216. };
  217. /*
  218. * Access Port types
  219. */
  220. enum ap_type {
  221. AP_TYPE_AHB_AP = 0x01, /* AHB Memory-AP */
  222. AP_TYPE_APB_AP = 0x02, /* APB Memory-AP */
  223. AP_TYPE_JTAG_AP = 0x10 /* JTAG-AP - JTAG master for controlling other JTAG devices */
  224. };
  225. /**
  226. * Queue a DP register read.
  227. * Note that not all DP registers are readable; also, that JTAG and SWD
  228. * have slight differences in DP register support.
  229. *
  230. * @param dap The DAP used for reading.
  231. * @param reg The two-bit number of the DP register being read.
  232. * @param data Pointer saying where to store the register's value
  233. * (in host endianness).
  234. *
  235. * @return ERROR_OK for success, else a fault code.
  236. */
  237. static inline int dap_queue_dp_read(struct adiv5_dap *dap,
  238. unsigned reg, uint32_t *data)
  239. {
  240. assert(dap->ops != NULL);
  241. return dap->ops->queue_dp_read(dap, reg, data);
  242. }
  243. /**
  244. * Queue a DP register write.
  245. * Note that not all DP registers are writable; also, that JTAG and SWD
  246. * have slight differences in DP register support.
  247. *
  248. * @param dap The DAP used for writing.
  249. * @param reg The two-bit number of the DP register being written.
  250. * @param data Value being written (host endianness)
  251. *
  252. * @return ERROR_OK for success, else a fault code.
  253. */
  254. static inline int dap_queue_dp_write(struct adiv5_dap *dap,
  255. unsigned reg, uint32_t data)
  256. {
  257. assert(dap->ops != NULL);
  258. return dap->ops->queue_dp_write(dap, reg, data);
  259. }
  260. /**
  261. * Queue an AP register read.
  262. *
  263. * @param dap The DAP used for reading.
  264. * @param reg The number of the AP register being read.
  265. * @param data Pointer saying where to store the register's value
  266. * (in host endianness).
  267. *
  268. * @return ERROR_OK for success, else a fault code.
  269. */
  270. static inline int dap_queue_ap_read(struct adiv5_dap *dap,
  271. unsigned reg, uint32_t *data)
  272. {
  273. assert(dap->ops != NULL);
  274. return dap->ops->queue_ap_read(dap, reg, data);
  275. }
  276. /**
  277. * Queue an AP register write.
  278. *
  279. * @param dap The DAP used for writing.
  280. * @param reg The number of the AP register being written.
  281. * @param data Value being written (host endianness)
  282. *
  283. * @return ERROR_OK for success, else a fault code.
  284. */
  285. static inline int dap_queue_ap_write(struct adiv5_dap *dap,
  286. unsigned reg, uint32_t data)
  287. {
  288. assert(dap->ops != NULL);
  289. return dap->ops->queue_ap_write(dap, reg, data);
  290. }
  291. /**
  292. * Queue an AP abort operation. The current AP transaction is aborted,
  293. * including any update of the transaction counter. The AP is left in
  294. * an unknown state (so it must be re-initialized). For use only after
  295. * the AP has reported WAIT status for an extended period.
  296. *
  297. * @param dap The DAP used for writing.
  298. * @param ack Pointer to where transaction status will be stored.
  299. *
  300. * @return ERROR_OK for success, else a fault code.
  301. */
  302. static inline int dap_queue_ap_abort(struct adiv5_dap *dap, uint8_t *ack)
  303. {
  304. assert(dap->ops != NULL);
  305. return dap->ops->queue_ap_abort(dap, ack);
  306. }
  307. /**
  308. * Perform all queued DAP operations, and clear any errors posted in the
  309. * CTRL_STAT register when they are done. Note that if more than one AP
  310. * operation will be queued, one of the first operations in the queue
  311. * should probably enable CORUNDETECT in the CTRL/STAT register.
  312. *
  313. * @param dap The DAP used.
  314. *
  315. * @return ERROR_OK for success, else a fault code.
  316. */
  317. static inline int dap_run(struct adiv5_dap *dap)
  318. {
  319. assert(dap->ops != NULL);
  320. return dap->ops->run(dap);
  321. }
  322. static inline int dap_dp_read_atomic(struct adiv5_dap *dap, unsigned reg,
  323. uint32_t *value)
  324. {
  325. int retval;
  326. retval = dap_queue_dp_read(dap, reg, value);
  327. if (retval != ERROR_OK)
  328. return retval;
  329. return dap_run(dap);
  330. }
  331. static inline int dap_dp_poll_register(struct adiv5_dap *dap, unsigned reg,
  332. uint32_t mask, uint32_t value, int timeout)
  333. {
  334. assert(timeout > 0);
  335. assert((value & mask) == value);
  336. int ret;
  337. uint32_t regval;
  338. LOG_DEBUG("DAP: poll %x, mask 0x08%" PRIx32 ", value 0x%08" PRIx32,
  339. reg, mask, value);
  340. do {
  341. ret = dap_dp_read_atomic(dap, reg, &regval);
  342. if (ret != ERROR_OK)
  343. return ret;
  344. if ((regval & mask) == value)
  345. break;
  346. alive_sleep(10);
  347. } while (--timeout);
  348. if (!timeout) {
  349. LOG_DEBUG("DAP: poll %x timeout", reg);
  350. return ERROR_FAIL;
  351. } else {
  352. return ERROR_OK;
  353. }
  354. }
  355. /** Accessor for currently selected DAP-AP number (0..255) */
  356. static inline uint8_t dap_ap_get_select(struct adiv5_dap *swjdp)
  357. {
  358. return (uint8_t)(swjdp->ap_current >> 24);
  359. }
  360. /* AP selection applies to future AP transactions */
  361. void dap_ap_select(struct adiv5_dap *dap, uint8_t ap);
  362. /* Queued AP transactions */
  363. int dap_setup_accessport(struct adiv5_dap *swjdp,
  364. uint32_t csw, uint32_t tar);
  365. /* Queued MEM-AP memory mapped single word transfers */
  366. int mem_ap_read_u32(struct adiv5_dap *swjdp, uint32_t address, uint32_t *value);
  367. int mem_ap_write_u32(struct adiv5_dap *swjdp, uint32_t address, uint32_t value);
  368. /* Synchronous MEM-AP memory mapped single word transfers */
  369. int mem_ap_read_atomic_u32(struct adiv5_dap *swjdp,
  370. uint32_t address, uint32_t *value);
  371. int mem_ap_write_atomic_u32(struct adiv5_dap *swjdp,
  372. uint32_t address, uint32_t value);
  373. /* Queued MEM-AP memory mapped single word transfers with selection of ap */
  374. int mem_ap_sel_read_u32(struct adiv5_dap *swjdp, uint8_t ap,
  375. uint32_t address, uint32_t *value);
  376. int mem_ap_sel_write_u32(struct adiv5_dap *swjdp, uint8_t ap,
  377. uint32_t address, uint32_t value);
  378. /* Synchronous MEM-AP memory mapped single word transfers with selection of ap */
  379. int mem_ap_sel_read_atomic_u32(struct adiv5_dap *swjdp, uint8_t ap,
  380. uint32_t address, uint32_t *value);
  381. int mem_ap_sel_write_atomic_u32(struct adiv5_dap *swjdp, uint8_t ap,
  382. uint32_t address, uint32_t value);
  383. /* Synchronous MEM-AP memory mapped bus block transfers */
  384. int mem_ap_read(struct adiv5_dap *dap, uint8_t *buffer, uint32_t size,
  385. uint32_t count, uint32_t address, bool addrinc);
  386. int mem_ap_write(struct adiv5_dap *dap, const uint8_t *buffer, uint32_t size,
  387. uint32_t count, uint32_t address, bool addrinc);
  388. /* Synchronous MEM-AP memory mapped bus block transfers with selection of ap */
  389. int mem_ap_sel_read_buf(struct adiv5_dap *swjdp, uint8_t ap,
  390. uint8_t *buffer, uint32_t size, uint32_t count, uint32_t address);
  391. int mem_ap_sel_write_buf(struct adiv5_dap *swjdp, uint8_t ap,
  392. const uint8_t *buffer, uint32_t size, uint32_t count, uint32_t address);
  393. /* Synchronous, non-incrementing buffer functions for accessing fifos, with
  394. * selection of ap */
  395. int mem_ap_sel_read_buf_noincr(struct adiv5_dap *swjdp, uint8_t ap,
  396. uint8_t *buffer, uint32_t size, uint32_t count, uint32_t address);
  397. int mem_ap_sel_write_buf_noincr(struct adiv5_dap *swjdp, uint8_t ap,
  398. const uint8_t *buffer, uint32_t size, uint32_t count, uint32_t address);
  399. /* Initialisation of the debug system, power domains and registers */
  400. int ahbap_debugport_init(struct adiv5_dap *swjdp);
  401. /* Probe the AP for ROM Table location */
  402. int dap_get_debugbase(struct adiv5_dap *dap, int ap,
  403. uint32_t *dbgbase, uint32_t *apid);
  404. /* Probe Access Ports to find a particular type */
  405. int dap_find_ap(struct adiv5_dap *dap,
  406. enum ap_type type_to_find,
  407. uint8_t *ap_num_out);
  408. /* Lookup CoreSight component */
  409. int dap_lookup_cs_component(struct adiv5_dap *dap, int ap,
  410. uint32_t dbgbase, uint8_t type, uint32_t *addr, int32_t *idx);
  411. struct target;
  412. /* Put debug link into SWD mode */
  413. int dap_to_swd(struct target *target);
  414. /* Put debug link into JTAG mode */
  415. int dap_to_jtag(struct target *target);
  416. extern const struct command_registration dap_command_handlers[];
  417. #endif