Some minor URL fixes and typo fixes, no functional changes.
[openocd.git] / src / target / adi_v5_cmsis_dap.c
blob3ff5bfe03fc7056fa7d4ec78850fba281a94274f
1 /***************************************************************************
2 * Copyright (C) 2013 by mike brown *
3 * mike@theshedworks.org.uk *
4 * *
5 * Copyright (C) 2013 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 ***************************************************************************/
24 /**
25 * @file
26 * Utilities to support ARM "CMSIS-DAP", The CoreSight Debug Access Port.
27 * This is coupled to recent versions of ARM's "CoreSight" debug framework.
28 * This specific code is a transport level interface, with
29 * "target/arm_adi_v5.[hc]" code understanding operation semantics,
30 * shared with the SWD & JTAG transports.
33 #ifdef HAVE_CONFIG_H
34 #include "config.h"
35 #endif
37 #include "arm.h"
38 #include "arm_adi_v5.h"
39 #include <helper/time_support.h>
41 #include <transport/transport.h>
42 #include <jtag/interface.h>
44 #include <jtag/swd.h>
46 #define CMSIS_CMD_DP (0 << 0) /* set only for AP access */
47 #define CMSIS_CMD_AP (1 << 0) /* set only for AP access */
48 #define CMSIS_CMD_READ (1 << 1) /* set only for read access */
49 #define CMSIS_CMD_WRITE (0 << 1) /* set only for read access */
50 #define CMSIS_CMD_A32(n) ((n)&0x0C) /* bits A[3:2] of register addr */
51 #define CMSIS_CMD_VAL_MATCH (1 << 4) /* Value Match */
52 #define CMSIS_CMD_MATCH_MSK (1 << 5) /* Match Mask */
54 /* YUK! - but this is currently a global.... */
55 extern struct jtag_interface *jtag_interface;
57 static int (cmsis_dap_queue_ap_abort)(struct adiv5_dap *dap, uint8_t *ack)
59 LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_abort");
61 /* FIXME: implement this properly cmsis-dap has DAP_WriteABORT()
62 * for now just hack @ everything */
63 return jtag_interface->swd->write_reg(
64 (CMSIS_CMD_DP | CMSIS_CMD_WRITE | CMSIS_CMD_A32(DP_ABORT)), 0x1e);
67 static int cmsis_dap_queue_dp_read(struct adiv5_dap *dap, unsigned reg, uint32_t *data)
69 LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_dp_read %d", reg);
71 int retval = jtag_interface->swd->read_reg(
72 (CMSIS_CMD_DP | CMSIS_CMD_READ | CMSIS_CMD_A32(reg)), data);
74 if (retval != ERROR_OK) {
75 /* fault response */
76 uint8_t ack = retval & 0xff;
77 cmsis_dap_queue_ap_abort(dap, &ack);
80 return retval;
83 static int cmsis_dap_queue_idcode_read(struct adiv5_dap *dap, uint8_t *ack, uint32_t *data)
85 LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_idcode_read");
87 int retval = cmsis_dap_queue_dp_read(dap, DP_IDCODE, data);
88 if (retval != ERROR_OK)
89 return retval;
91 *ack = retval;
93 return ERROR_OK;
96 static int (cmsis_dap_queue_dp_write)(struct adiv5_dap *dap, unsigned reg, uint32_t data)
98 LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_dp_write %d 0x%08" PRIx32, reg, data);
100 /* setting the ORUNDETECT bit causes issues for some targets,
101 * disable until we find out why */
102 if (reg == DP_CTRL_STAT) {
103 LOG_DEBUG("disabling overrun detection");
104 data &= ~CORUNDETECT;
107 int retval = jtag_interface->swd->write_reg(
108 (CMSIS_CMD_DP | CMSIS_CMD_WRITE | CMSIS_CMD_A32(reg)), data);
110 if (retval != ERROR_OK) {
111 /* fault response */
112 uint8_t ack = retval & 0xff;
113 cmsis_dap_queue_ap_abort(dap, &ack);
116 return retval;
119 /** Select the AP register bank matching bits 7:4 of reg. */
120 static int cmsis_dap_ap_q_bankselect(struct adiv5_dap *dap, unsigned reg)
122 uint32_t select_ap_bank = reg & 0x000000F0;
124 if (select_ap_bank == dap->ap_bank_value)
125 return ERROR_OK;
127 dap->ap_bank_value = select_ap_bank;
128 select_ap_bank |= dap->ap_current;
130 return cmsis_dap_queue_dp_write(dap, DP_SELECT, select_ap_bank);
133 static int (cmsis_dap_queue_ap_read)(struct adiv5_dap *dap, unsigned reg, uint32_t *data)
135 LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_read %d", reg);
137 int retval = cmsis_dap_ap_q_bankselect(dap, reg);
138 if (retval != ERROR_OK)
139 return retval;
141 retval = jtag_interface->swd->read_reg(
142 (CMSIS_CMD_AP | CMSIS_CMD_READ | CMSIS_CMD_A32(reg)), data);
144 if (retval != ERROR_OK) {
145 /* fault response */
146 uint8_t ack = retval & 0xff;
147 cmsis_dap_queue_ap_abort(dap, &ack);
150 return retval;
153 static int (cmsis_dap_queue_ap_write)(struct adiv5_dap *dap, unsigned reg, uint32_t data)
155 LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_write %d 0x%08" PRIx32, reg, data);
157 /* TODO: CSW_DBGSWENABLE (bit31) causes issues for some targets
158 * disable until we find out why */
159 if (reg == AP_REG_CSW)
160 data &= ~CSW_DBGSWENABLE;
162 int retval = cmsis_dap_ap_q_bankselect(dap, reg);
163 if (retval != ERROR_OK)
164 return retval;
166 retval = jtag_interface->swd->write_reg(
167 (CMSIS_CMD_AP | CMSIS_CMD_WRITE | CMSIS_CMD_A32(reg)), data);
169 if (retval != ERROR_OK) {
170 /* fault response */
171 uint8_t ack = retval & 0xff;
172 cmsis_dap_queue_ap_abort(dap, &ack);
175 return retval;
178 static int (cmsis_dap_queue_ap_read_block)(struct adiv5_dap *dap, unsigned reg,
179 uint32_t blocksize, uint8_t *buffer)
181 LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_read_block 0x%08" PRIx32, blocksize);
183 int retval = jtag_interface->swd->read_block(
184 (CMSIS_CMD_AP | CMSIS_CMD_READ | CMSIS_CMD_A32(AP_REG_DRW)),
185 blocksize, buffer);
187 if (retval != ERROR_OK) {
188 /* fault response */
189 uint8_t ack = retval & 0xff;
190 cmsis_dap_queue_ap_abort(dap, &ack);
193 return retval;
196 /** Executes all queued DAP operations. */
197 static int cmsis_dap_run(struct adiv5_dap *dap)
199 LOG_DEBUG("CMSIS-ADI: cmsis_dap_run");
200 /* FIXME: for now the CMSIS-DAP interface hard-wires a zero-size queue. */
202 return ERROR_OK;
205 const struct dap_ops cmsis_dap_ops = {
206 .is_swd = true,
207 .queue_idcode_read = cmsis_dap_queue_idcode_read,
208 .queue_dp_read = cmsis_dap_queue_dp_read,
209 .queue_dp_write = cmsis_dap_queue_dp_write,
210 .queue_ap_read = cmsis_dap_queue_ap_read,
211 .queue_ap_write = cmsis_dap_queue_ap_write,
212 .queue_ap_read_block = cmsis_dap_queue_ap_read_block,
213 .queue_ap_abort = cmsis_dap_queue_ap_abort,
214 .run = cmsis_dap_run,
217 static const struct command_registration cmsis_dap_commands[] = {
220 * Set up SWD and JTAG targets identically, unless/until
221 * infrastructure improves ... meanwhile, ignore all
222 * JTAG-specific stuff like IR length for SWD.
224 * REVISIT can we verify "just one SWD DAP" here/early?
226 .name = "newdap",
227 .jim_handler = jim_jtag_newtap,
228 .mode = COMMAND_CONFIG,
229 .help = "declare a new CMSIS-DAP"
231 COMMAND_REGISTRATION_DONE
234 static const struct command_registration cmsis_dap_handlers[] = {
236 .name = "cmsis-dap",
237 .mode = COMMAND_ANY,
238 .help = "cmsis_dap command group",
239 .chain = cmsis_dap_commands,
241 COMMAND_REGISTRATION_DONE
244 static int cmsis_dap_select(struct command_context *ctx)
246 LOG_DEBUG("CMSIS-ADI: cmsis_dap_select");
248 int retval = register_commands(ctx, NULL, cmsis_dap_handlers);
250 if (retval != ERROR_OK)
251 return retval;
253 /* FIXME: This needs a real overhaul!! FIXME
254 * be sure driver is in SWD mode; start
255 * with hardware default TRN (1), it can be changed later
256 * we use a bogus 'swd' driver to implement cmsis-dap as it is quite similar */
258 const struct swd_driver *swd = jtag_interface->swd;
259 if (!swd || !swd->read_reg || !swd->write_reg || !swd->init) {
260 LOG_ERROR("no SWD driver?");
261 return ERROR_FAIL;
264 retval = swd->init(1);
265 if (retval != ERROR_OK) {
266 LOG_ERROR("unable to init CMSIS-DAP driver");
267 return retval;
270 return retval;
273 static int cmsis_dap_init(struct command_context *ctx)
275 struct target *target = get_current_target(ctx);
276 struct arm *arm = target_to_arm(target);
277 struct adiv5_dap *dap = arm->dap;
278 uint32_t idcode;
279 int status;
281 LOG_DEBUG("CMSIS-ADI: cmsis_dap_init");
283 /* Force the DAP's ops vector for CMSIS-DAP mode.
284 * messy - is there a better way? */
285 arm->dap->ops = &cmsis_dap_ops;
287 /* FIXME validate transport config ... is the
288 * configured DAP present (check IDCODE)?
289 * Is *only* one DAP configured?
291 * MUST READ IDCODE
294 /* Note, debugport_init() does setup too */
296 #if 0
297 const struct swd_driver *swd = jtag_interface->swd;
298 if (!swd || !swd->read_reg || !swd->write_reg || !swd->init) {
299 LOG_ERROR("no SWD driver?");
300 return ERROR_FAIL;
303 int retval = swd->init(1);
304 if (retval != ERROR_OK) {
305 LOG_ERROR("unable to init CMSIS-DAP driver");
306 return retval;
308 #endif
310 uint8_t ack;
312 status = cmsis_dap_queue_idcode_read(dap, &ack, &idcode);
314 if (status == ERROR_OK)
315 LOG_INFO("IDCODE 0x%08" PRIx32, idcode);
317 /* force clear all sticky faults */
318 cmsis_dap_queue_ap_abort(dap, &ack);
320 /* this is a workaround to get polling working */
321 jtag_add_reset(0, 0);
323 return status;
326 static struct transport cmsis_dap_transport = {
327 .name = "cmsis-dap",
328 .select = cmsis_dap_select,
329 .init = cmsis_dap_init,
332 static void cmsis_dap_constructor(void) __attribute__((constructor));
333 static void cmsis_dap_constructor(void)
335 transport_register(&cmsis_dap_transport);
338 /** Returns true if the current debug session
339 * is using CMSIS-DAP as its transport.
341 bool transport_is_cmsis_dap(void)
343 return get_current_transport() == &cmsis_dap_transport;