swd: Convert API to asynchronous
[openocd.git] / src / jtag / swd.h
blob5d00ab357cdace76dbf882047a442f707e348606
1 /***************************************************************************
2 * Copyright (C) 2009-2010 by David Brownell *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
18 ***************************************************************************/
20 #ifndef SWD_H
21 #define SWD_H
23 #include <target/arm_adi_v5.h>
25 /* Bits in SWD command packets, written from host to target
26 * first bit on the wire is START
28 #define SWD_CMD_START (1 << 0) /* always set */
29 #define SWD_CMD_APnDP (1 << 1) /* set only for AP access */
30 #define SWD_CMD_RnW (1 << 2) /* set only for read access */
31 #define SWD_CMD_A32 (3 << 3) /* bits A[3:2] of register addr */
32 #define SWD_CMD_PARITY (1 << 5) /* parity of APnDP|RnW|A32 */
33 #define SWD_CMD_STOP (0 << 6) /* always clear for synch SWD */
34 #define SWD_CMD_PARK (0 << 7) /* not driven by host (pull high) */
35 /* followed by TRN, 3-bits of ACK, TRN */
37 /**
38 * Construct a "cmd" byte, in lSB bit order, which swd_driver.read_reg()
39 * and swd_driver.write_reg() methods will use directly.
41 static inline uint8_t swd_cmd(bool is_read, bool is_ap, uint8_t regnum)
43 uint8_t cmd = (is_ap ? SWD_CMD_APnDP : 0)
44 | (is_read ? SWD_CMD_RnW : 0)
45 | ((regnum & 0xc) << 1);
47 /* 8 cmd bits 4:1 may be set */
48 if (parity_u32(cmd))
49 cmd |= SWD_CMD_PARITY;
51 /* driver handles START, STOP, and TRN */
53 return cmd;
56 /* SWD_ACK_* bits are defined in <target/arm_adi_v5.h> */
58 struct swd_driver {
59 /**
60 * Initialize the debug link so it can perform SWD operations.
61 * @param trn value from WCR: how many clocks
62 * to not drive the SWDIO line at certain points in
63 * the SWD protocol (at least 1 clock).
65 * As an example, this would switch a dual-mode debug adapter
66 * into SWD mode and out of JTAG mode.
68 * @return ERROR_OK on success, else a negative fault code.
70 int (*init)(uint8_t trn);
73 /**
74 * Queued read of an AP or DP register.
76 * @param dap The DAP controlled by the SWD link.
77 * @param Command byte with APnDP/RnW/addr/parity bits
78 * @param Where to store value to read from register
80 void (*read_reg)(struct adiv5_dap *dap, uint8_t cmd, uint32_t *value);
82 /**
83 * Queued write of an AP or DP register.
85 * @param dap The DAP controlled by the SWD link.
86 * @param Command byte with APnDP/RnW/addr/parity bits
87 * @param Value to be written to the register
89 void (*write_reg)(struct adiv5_dap *dap, uint8_t cmd, uint32_t value);
91 /**
92 * Execute any queued transactions and collect the result.
94 * @param dap The DAP controlled by the SWD link.
95 * @return ERROR_OK on success, Ack response code on WAIT/FAULT
96 * or negative error code on other kinds of failure.
98 int (*run)(struct adiv5_dap *dap);
101 * Configures data collection from the Single-wire
102 * trace (SWO) signal.
103 * @param swo true if SWO data collection should be routed.
105 * For example, some debug adapters include a UART which
106 * is normally connected to a microcontroller's UART TX,
107 * but which may instead be connected to SWO for use in
108 * collecting ITM (and possibly ETM) trace data.
110 * @return ERROR_OK on success, else a negative fault code.
112 int *(*trace)(struct adiv5_dap *dap, bool swo);
115 int swd_init_reset(struct command_context *cmd_ctx);
116 void swd_add_reset(int req_srst);
118 bool transport_is_swd(void);
119 bool transport_is_cmsis_dap(void);
121 #endif /* SWD_H */