doc: Improve ftdi driver section
[openocd.git] / src / target / adi_v5_jtag.c
blob2717c9e369b796f0e58c5466601bf86693bd474f
1 /***************************************************************************
2 * Copyright (C) 2006 by Magnus Lundin
3 * lundin@mlu.mine.nu
5 * Copyright (C) 2008 by Spencer Oliver
6 * spen@spen-soft.co.uk
8 * Copyright (C) 2009 by Oyvind Harboe
9 * oyvind.harboe@zylin.com
11 * Copyright (C) 2009-2010 by David Brownell
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 ***************************************************************************/
27 /**
28 * @file
29 * This file implements JTAG transport support for cores implementing
30 the ARM Debug Interface version 5 (ADIv5).
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>
40 #include <helper/list.h>
42 /*#define DEBUG_WAIT*/
44 /* JTAG instructions/registers for JTAG-DP and SWJ-DP */
45 #define JTAG_DP_ABORT 0x8
46 #define JTAG_DP_DPACC 0xA
47 #define JTAG_DP_APACC 0xB
48 #define JTAG_DP_IDCODE 0xE
50 /* three-bit ACK values for DPACC and APACC reads */
51 #define JTAG_ACK_OK_FAULT 0x2
52 #define JTAG_ACK_WAIT 0x1
54 static int jtag_ap_q_abort(struct adiv5_dap *dap, uint8_t *ack);
56 #ifdef DEBUG_WAIT
57 static const char *dap_reg_name(int instr, int reg_addr)
59 char *reg_name = "UNK";
61 if (instr == JTAG_DP_DPACC) {
62 switch (reg_addr) {
63 case DP_ABORT:
64 reg_name = "ABORT";
65 break;
66 case DP_CTRL_STAT:
67 reg_name = "CTRL/STAT";
68 break;
69 case DP_SELECT:
70 reg_name = "SELECT";
71 break;
72 case DP_RDBUFF:
73 reg_name = "RDBUFF";
74 break;
75 case DP_WCR:
76 reg_name = "WCR";
77 break;
78 default:
79 reg_name = "UNK";
80 break;
84 if (instr == JTAG_DP_APACC) {
85 switch (reg_addr) {
86 case MEM_AP_REG_CSW:
87 reg_name = "CSW";
88 break;
89 case MEM_AP_REG_TAR:
90 reg_name = "TAR";
91 break;
92 case MEM_AP_REG_DRW:
93 reg_name = "DRW";
94 break;
95 case MEM_AP_REG_BD0:
96 reg_name = "BD0";
97 break;
98 case MEM_AP_REG_BD1:
99 reg_name = "BD1";
100 break;
101 case MEM_AP_REG_BD2:
102 reg_name = "BD2";
103 break;
104 case MEM_AP_REG_BD3:
105 reg_name = "BD3";
106 break;
107 case MEM_AP_REG_CFG:
108 reg_name = "CFG";
109 break;
110 case MEM_AP_REG_BASE:
111 reg_name = "BASE";
112 break;
113 case AP_REG_IDR:
114 reg_name = "IDR";
115 break;
116 default:
117 reg_name = "UNK";
118 break;
122 return reg_name;
124 #endif
126 struct dap_cmd {
127 struct list_head lh;
128 uint8_t instr;
129 uint8_t reg_addr;
130 uint8_t RnW;
131 uint8_t *invalue;
132 uint8_t ack;
133 uint32_t memaccess_tck;
134 uint32_t dp_select;
136 struct scan_field fields[2];
137 uint8_t out_addr_buf;
138 uint8_t invalue_buf[4];
139 uint8_t outvalue_buf[4];
142 static void log_dap_cmd(const char *header, struct dap_cmd *el)
144 #ifdef DEBUG_WAIT
145 LOG_DEBUG("%s: %2s %6s %5s 0x%08x 0x%08x %2s", header,
146 el->instr == JTAG_DP_APACC ? "AP" : "DP",
147 dap_reg_name(el->instr, el->reg_addr),
148 el->RnW == DPAP_READ ? "READ" : "WRITE",
149 buf_get_u32(el->outvalue_buf, 0, 32),
150 buf_get_u32(el->invalue, 0, 32),
151 el->ack == JTAG_ACK_OK_FAULT ? "OK" :
152 (el->ack == JTAG_ACK_WAIT ? "WAIT" : "INVAL"));
153 #endif
156 static struct dap_cmd *dap_cmd_new(uint8_t instr,
157 uint8_t reg_addr, uint8_t RnW,
158 uint8_t *outvalue, uint8_t *invalue,
159 uint32_t memaccess_tck)
161 struct dap_cmd *cmd;
163 cmd = (struct dap_cmd *)calloc(1, sizeof(struct dap_cmd));
164 if (cmd != NULL) {
165 INIT_LIST_HEAD(&cmd->lh);
166 cmd->instr = instr;
167 cmd->reg_addr = reg_addr;
168 cmd->RnW = RnW;
169 if (outvalue != NULL)
170 memcpy(cmd->outvalue_buf, outvalue, 4);
171 cmd->invalue = (invalue != NULL) ? invalue : cmd->invalue_buf;
172 cmd->memaccess_tck = memaccess_tck;
175 return cmd;
178 static void flush_journal(struct list_head *lh)
180 struct dap_cmd *el, *tmp;
182 list_for_each_entry_safe(el, tmp, lh, lh) {
183 list_del(&el->lh);
184 free(el);
188 /***************************************************************************
190 * DPACC and APACC scanchain access through JTAG-DP (or SWJ-DP)
192 ***************************************************************************/
194 static int adi_jtag_dp_scan_cmd(struct adiv5_dap *dap, struct dap_cmd *cmd, uint8_t *ack)
196 struct jtag_tap *tap = dap->tap;
197 int retval;
199 retval = arm_jtag_set_instr(tap, cmd->instr, NULL, TAP_IDLE);
200 if (retval != ERROR_OK)
201 return retval;
203 /* Scan out a read or write operation using some DP or AP register.
204 * For APACC access with any sticky error flag set, this is discarded.
206 cmd->fields[0].num_bits = 3;
207 buf_set_u32(&cmd->out_addr_buf, 0, 3, ((cmd->reg_addr >> 1) & 0x6) | (cmd->RnW & 0x1));
208 cmd->fields[0].out_value = &cmd->out_addr_buf;
209 cmd->fields[0].in_value = (ack != NULL) ? ack : &cmd->ack;
211 /* NOTE: if we receive JTAG_ACK_WAIT, the previous operation did not
212 * complete; data we write is discarded, data we read is unpredictable.
213 * When overrun detect is active, STICKYORUN is set.
216 cmd->fields[1].num_bits = 32;
217 cmd->fields[1].out_value = cmd->outvalue_buf;
218 cmd->fields[1].in_value = cmd->invalue;
220 jtag_add_dr_scan(tap, 2, cmd->fields, TAP_IDLE);
222 /* Add specified number of tck clocks after starting memory bus
223 * access, giving the hardware time to complete the access.
224 * They provide more time for the (MEM) AP to complete the read ...
225 * See "Minimum Response Time" for JTAG-DP, in the ADIv5 spec.
227 if (cmd->instr == JTAG_DP_APACC) {
228 if (((cmd->reg_addr == MEM_AP_REG_DRW)
229 || ((cmd->reg_addr & 0xF0) == MEM_AP_REG_BD0))
230 && (cmd->memaccess_tck != 0))
231 jtag_add_runtest(cmd->memaccess_tck, TAP_IDLE);
234 return ERROR_OK;
237 static int adi_jtag_dp_scan_cmd_sync(struct adiv5_dap *dap, struct dap_cmd *cmd, uint8_t *ack)
239 int retval;
241 retval = adi_jtag_dp_scan_cmd(dap, cmd, ack);
242 if (retval != ERROR_OK)
243 return retval;
245 return jtag_execute_queue();
249 * Scan DPACC or APACC using target ordered uint8_t buffers. No endianness
250 * conversions are performed. See section 4.4.3 of the ADIv5 spec, which
251 * discusses operations which access these registers.
253 * Note that only one scan is performed. If RnW is set, a separate scan
254 * will be needed to collect the data which was read; the "invalue" collects
255 * the posted result of a preceding operation, not the current one.
257 * @param dap the DAP
258 * @param instr JTAG_DP_APACC (AP access) or JTAG_DP_DPACC (DP access)
259 * @param reg_addr two significant bits; A[3:2]; for APACC access, the
260 * SELECT register has more addressing bits.
261 * @param RnW false iff outvalue will be written to the DP or AP
262 * @param outvalue points to a 32-bit (little-endian) integer
263 * @param invalue NULL, or points to a 32-bit (little-endian) integer
264 * @param ack points to where the three bit JTAG_ACK_* code will be stored
265 * @param memaccess_tck number of idle cycles to add after AP access
268 static int adi_jtag_dp_scan(struct adiv5_dap *dap,
269 uint8_t instr, uint8_t reg_addr, uint8_t RnW,
270 uint8_t *outvalue, uint8_t *invalue,
271 uint32_t memaccess_tck, uint8_t *ack)
273 struct dap_cmd *cmd;
274 int retval;
276 cmd = dap_cmd_new(instr, reg_addr, RnW, outvalue, invalue, memaccess_tck);
277 if (cmd != NULL)
278 cmd->dp_select = dap->select;
279 else
280 return ERROR_JTAG_DEVICE_ERROR;
282 retval = adi_jtag_dp_scan_cmd(dap, cmd, ack);
283 if (retval == ERROR_OK)
284 list_add_tail(&cmd->lh, &dap->cmd_journal);
286 return retval;
290 * Scan DPACC or APACC out and in from host ordered uint32_t buffers.
291 * This is exactly like adi_jtag_dp_scan(), except that endianness
292 * conversions are performed (so the types of invalue and outvalue
293 * must be different).
295 static int adi_jtag_dp_scan_u32(struct adiv5_dap *dap,
296 uint8_t instr, uint8_t reg_addr, uint8_t RnW,
297 uint32_t outvalue, uint32_t *invalue,
298 uint32_t memaccess_tck, uint8_t *ack)
300 uint8_t out_value_buf[4];
301 int retval;
303 buf_set_u32(out_value_buf, 0, 32, outvalue);
305 retval = adi_jtag_dp_scan(dap, instr, reg_addr, RnW,
306 out_value_buf, (uint8_t *)invalue, memaccess_tck, ack);
307 if (retval != ERROR_OK)
308 return retval;
310 if (invalue)
311 jtag_add_callback(arm_le_to_h_u32,
312 (jtag_callback_data_t) invalue);
314 return retval;
317 static int adi_jtag_finish_read(struct adiv5_dap *dap)
319 int retval = ERROR_OK;
321 if (dap->last_read != NULL) {
322 retval = adi_jtag_dp_scan_u32(dap, JTAG_DP_DPACC,
323 DP_RDBUFF, DPAP_READ, 0, dap->last_read, 0, NULL);
324 dap->last_read = NULL;
327 return retval;
330 static int adi_jtag_scan_inout_check_u32(struct adiv5_dap *dap,
331 uint8_t instr, uint8_t reg_addr, uint8_t RnW,
332 uint32_t outvalue, uint32_t *invalue, uint32_t memaccess_tck)
334 int retval;
336 /* Issue the read or write */
337 retval = adi_jtag_dp_scan_u32(dap, instr, reg_addr,
338 RnW, outvalue, NULL, memaccess_tck, NULL);
339 if (retval != ERROR_OK)
340 return retval;
342 /* For reads, collect posted value; RDBUFF has no other effect.
343 * Assumes read gets acked with OK/FAULT, and CTRL_STAT says "OK".
345 if ((RnW == DPAP_READ) && (invalue != NULL)) {
346 retval = adi_jtag_dp_scan_u32(dap, JTAG_DP_DPACC,
347 DP_RDBUFF, DPAP_READ, 0, invalue, 0, NULL);
348 if (retval != ERROR_OK)
349 return retval;
352 return jtag_execute_queue();
355 static int jtagdp_overrun_check(struct adiv5_dap *dap)
357 int retval;
358 struct dap_cmd *el, *tmp, *prev = NULL;
359 int found_wait = 0;
360 int64_t time_now;
361 LIST_HEAD(replay_list);
363 /* make sure all queued transactions are complete */
364 retval = jtag_execute_queue();
365 if (retval != ERROR_OK)
366 goto done;
368 /* skip all completed transactions up to the first WAIT */
369 list_for_each_entry(el, &dap->cmd_journal, lh) {
370 if (el->ack == JTAG_ACK_OK_FAULT) {
371 log_dap_cmd("LOG", el);
372 } else if (el->ack == JTAG_ACK_WAIT) {
373 found_wait = 1;
374 break;
375 } else {
376 LOG_ERROR("Invalid ACK (%1x) in DAP response", el->ack);
377 log_dap_cmd("ERR", el);
378 retval = ERROR_JTAG_DEVICE_ERROR;
379 goto done;
384 * If we found a stalled transaction and a previous transaction
385 * exists, check if it's a READ access.
387 if (found_wait && el != list_first_entry(&dap->cmd_journal, struct dap_cmd, lh)) {
388 prev = list_entry(el->lh.prev, struct dap_cmd, lh);
389 if (prev->RnW == DPAP_READ) {
390 log_dap_cmd("PND", prev);
391 /* search for the next OK transaction, it contains
392 * the result of the previous READ */
393 tmp = el;
394 list_for_each_entry_from(tmp, &dap->cmd_journal, lh) {
395 if (tmp->ack == JTAG_ACK_OK_FAULT) {
396 /* recover the read value */
397 log_dap_cmd("FND", tmp);
398 if (el->invalue != el->invalue_buf) {
399 uint32_t invalue = le_to_h_u32(tmp->invalue);
400 memcpy(el->invalue, &invalue, sizeof(uint32_t));
402 prev = NULL;
403 break;
407 if (prev != NULL) {
408 log_dap_cmd("LST", el);
411 * At this point we're sure that no previous
412 * transaction completed and the DAP/AP is still
413 * in busy state. We know that the next "OK" scan
414 * will return the READ result we need to recover.
415 * To complete the READ, we just keep polling RDBUFF
416 * until the WAIT condition clears
418 tmp = dap_cmd_new(JTAG_DP_DPACC,
419 DP_RDBUFF, DPAP_READ, NULL, NULL, 0);
420 if (tmp == NULL) {
421 retval = ERROR_JTAG_DEVICE_ERROR;
422 goto done;
424 /* synchronously retry the command until it succeeds */
425 time_now = timeval_ms();
426 do {
427 retval = adi_jtag_dp_scan_cmd_sync(dap, tmp, NULL);
428 if (retval != ERROR_OK)
429 break;
430 if (tmp->ack == JTAG_ACK_OK_FAULT) {
431 log_dap_cmd("FND", tmp);
432 if (el->invalue != el->invalue_buf) {
433 uint32_t invalue = le_to_h_u32(tmp->invalue);
434 memcpy(el->invalue, &invalue, sizeof(uint32_t));
436 break;
438 if (tmp->ack != JTAG_ACK_WAIT) {
439 LOG_ERROR("Invalid ACK (%1x) in DAP response", tmp->ack);
440 log_dap_cmd("ERR", tmp);
441 retval = ERROR_JTAG_DEVICE_ERROR;
442 break;
445 } while (timeval_ms() - time_now < 1000);
447 if (retval == ERROR_OK) {
448 /* timeout happened */
449 if (tmp->ack != JTAG_ACK_OK_FAULT) {
450 LOG_ERROR("Timeout during WAIT recovery");
451 dap->select = DP_SELECT_INVALID;
452 jtag_ap_q_abort(dap, NULL);
453 /* clear the sticky overrun condition */
454 adi_jtag_scan_inout_check_u32(dap, JTAG_DP_DPACC,
455 DP_CTRL_STAT, DPAP_WRITE,
456 dap->dp_ctrl_stat | SSTICKYORUN, NULL, 0);
457 retval = ERROR_JTAG_DEVICE_ERROR;
461 /* we're done with this command, release it */
462 free(tmp);
464 if (retval != ERROR_OK)
465 goto done;
468 /* make el->invalue point to the default invalue
469 * so that we can safely retry it without clobbering
470 * the result we just recovered */
471 el->invalue = el->invalue_buf;
475 /* move all remaining transactions over to the replay list */
476 list_for_each_entry_safe_from(el, tmp, &dap->cmd_journal, lh) {
477 log_dap_cmd("REP", el);
478 list_move_tail(&el->lh, &replay_list);
481 /* we're done with the journal, flush it */
482 flush_journal(&dap->cmd_journal);
484 /* check for overrun condition in the last batch of transactions */
485 if (found_wait) {
486 LOG_INFO("DAP transaction stalled (WAIT) - slowing down");
487 /* clear the sticky overrun condition */
488 retval = adi_jtag_scan_inout_check_u32(dap, JTAG_DP_DPACC,
489 DP_CTRL_STAT, DPAP_WRITE,
490 dap->dp_ctrl_stat | SSTICKYORUN, NULL, 0);
491 if (retval != ERROR_OK)
492 goto done;
494 /* restore SELECT register first */
495 if (!list_empty(&replay_list)) {
496 el = list_first_entry(&replay_list, struct dap_cmd, lh);
497 tmp = dap_cmd_new(JTAG_DP_DPACC,
498 DP_SELECT, DPAP_WRITE, (uint8_t *)&el->dp_select, NULL, 0);
499 if (tmp == NULL) {
500 retval = ERROR_JTAG_DEVICE_ERROR;
501 goto done;
503 list_add(&tmp->lh, &replay_list);
505 dap->select = DP_SELECT_INVALID;
508 list_for_each_entry_safe(el, tmp, &replay_list, lh) {
509 time_now = timeval_ms();
510 do {
511 retval = adi_jtag_dp_scan_cmd_sync(dap, el, NULL);
512 if (retval != ERROR_OK)
513 break;
514 log_dap_cmd("REC", el);
515 if (el->ack == JTAG_ACK_OK_FAULT) {
516 if (el->invalue != el->invalue_buf) {
517 uint32_t invalue = le_to_h_u32(el->invalue);
518 memcpy(el->invalue, &invalue, sizeof(uint32_t));
520 break;
522 if (el->ack != JTAG_ACK_WAIT) {
523 LOG_ERROR("Invalid ACK (%1x) in DAP response", el->ack);
524 log_dap_cmd("ERR", el);
525 retval = ERROR_JTAG_DEVICE_ERROR;
526 break;
528 } while (timeval_ms() - time_now < 1000);
530 if (retval == ERROR_OK) {
531 if (el->ack != JTAG_ACK_OK_FAULT) {
532 LOG_ERROR("Timeout during WAIT recovery");
533 dap->select = DP_SELECT_INVALID;
534 jtag_ap_q_abort(dap, NULL);
535 /* clear the sticky overrun condition */
536 adi_jtag_scan_inout_check_u32(dap, JTAG_DP_DPACC,
537 DP_CTRL_STAT, DPAP_WRITE,
538 dap->dp_ctrl_stat | SSTICKYORUN, NULL, 0);
539 retval = ERROR_JTAG_DEVICE_ERROR;
540 break;
542 } else
543 break;
547 done:
548 flush_journal(&replay_list);
549 flush_journal(&dap->cmd_journal);
550 return retval;
553 static int jtagdp_transaction_endcheck(struct adiv5_dap *dap)
555 int retval;
556 uint32_t ctrlstat;
558 /* too expensive to call keep_alive() here */
560 /* Post CTRL/STAT read; discard any previous posted read value
561 * but collect its ACK status.
563 retval = adi_jtag_scan_inout_check_u32(dap, JTAG_DP_DPACC,
564 DP_CTRL_STAT, DPAP_READ, 0, &ctrlstat, 0);
565 if (retval != ERROR_OK)
566 goto done;
568 /* REVISIT also STICKYCMP, for pushed comparisons (nyet used) */
570 /* Check for STICKYERR */
571 if (ctrlstat & SSTICKYERR) {
572 LOG_DEBUG("jtag-dp: CTRL/STAT 0x%" PRIx32, ctrlstat);
573 /* Check power to debug regions */
574 if ((ctrlstat & (CDBGPWRUPREQ | CDBGPWRUPACK | CSYSPWRUPREQ | CSYSPWRUPACK)) !=
575 (CDBGPWRUPREQ | CDBGPWRUPACK | CSYSPWRUPREQ | CSYSPWRUPACK)) {
576 LOG_ERROR("Debug regions are unpowered, an unexpected reset might have happened");
577 retval = ERROR_JTAG_DEVICE_ERROR;
578 goto done;
581 if (ctrlstat & SSTICKYERR)
582 LOG_ERROR("JTAG-DP STICKY ERROR");
583 if (ctrlstat & SSTICKYORUN)
584 LOG_DEBUG("JTAG-DP STICKY OVERRUN");
586 /* Clear Sticky Error Bits */
587 retval = adi_jtag_scan_inout_check_u32(dap, JTAG_DP_DPACC,
588 DP_CTRL_STAT, DPAP_WRITE,
589 dap->dp_ctrl_stat | SSTICKYERR, NULL, 0);
590 if (retval != ERROR_OK)
591 goto done;
593 if (ctrlstat & SSTICKYERR) {
594 retval = ERROR_JTAG_DEVICE_ERROR;
595 goto done;
599 done:
600 flush_journal(&dap->cmd_journal);
601 return retval;
604 /*--------------------------------------------------------------------------*/
606 static int jtag_dp_q_read(struct adiv5_dap *dap, unsigned reg,
607 uint32_t *data)
609 int retval = adi_jtag_dp_scan_u32(dap, JTAG_DP_DPACC, reg,
610 DPAP_READ, 0, dap->last_read, 0, NULL);
611 dap->last_read = data;
612 return retval;
615 static int jtag_dp_q_write(struct adiv5_dap *dap, unsigned reg,
616 uint32_t data)
618 int retval = adi_jtag_dp_scan_u32(dap, JTAG_DP_DPACC,
619 reg, DPAP_WRITE, data, dap->last_read, 0, NULL);
620 dap->last_read = NULL;
621 return retval;
624 /** Select the AP register bank matching bits 7:4 of reg. */
625 static int jtag_ap_q_bankselect(struct adiv5_ap *ap, unsigned reg)
627 struct adiv5_dap *dap = ap->dap;
628 uint32_t sel = ((uint32_t)ap->ap_num << 24) | (reg & 0x000000F0);
630 if (sel == dap->select)
631 return ERROR_OK;
633 dap->select = sel;
635 return jtag_dp_q_write(dap, DP_SELECT, sel);
638 static int jtag_ap_q_read(struct adiv5_ap *ap, unsigned reg,
639 uint32_t *data)
641 int retval = jtag_ap_q_bankselect(ap, reg);
642 if (retval != ERROR_OK)
643 return retval;
645 retval = adi_jtag_dp_scan_u32(ap->dap, JTAG_DP_APACC, reg,
646 DPAP_READ, 0, ap->dap->last_read, ap->memaccess_tck, NULL);
647 ap->dap->last_read = data;
649 return retval;
652 static int jtag_ap_q_write(struct adiv5_ap *ap, unsigned reg,
653 uint32_t data)
655 int retval = jtag_ap_q_bankselect(ap, reg);
656 if (retval != ERROR_OK)
657 return retval;
659 retval = adi_jtag_dp_scan_u32(ap->dap, JTAG_DP_APACC, reg,
660 DPAP_WRITE, data, ap->dap->last_read, ap->memaccess_tck, NULL);
661 ap->dap->last_read = NULL;
662 return retval;
665 static int jtag_ap_q_abort(struct adiv5_dap *dap, uint8_t *ack)
667 /* for JTAG, this is the only valid ABORT register operation */
668 int retval = adi_jtag_dp_scan_u32(dap, JTAG_DP_ABORT,
669 0, DPAP_WRITE, 1, NULL, 0, NULL);
670 if (retval != ERROR_OK)
671 return retval;
673 return jtag_execute_queue();
676 static int jtag_dp_run(struct adiv5_dap *dap)
678 int retval;
679 int retval2 = ERROR_OK;
681 retval = adi_jtag_finish_read(dap);
682 if (retval != ERROR_OK)
683 goto done;
684 retval2 = jtagdp_overrun_check(dap);
685 retval = jtagdp_transaction_endcheck(dap);
687 done:
688 return (retval2 != ERROR_OK) ? retval2 : retval;
691 static int jtag_dp_sync(struct adiv5_dap *dap)
693 return jtagdp_overrun_check(dap);
696 /* FIXME don't export ... just initialize as
697 * part of DAP setup
699 const struct dap_ops jtag_dp_ops = {
700 .queue_dp_read = jtag_dp_q_read,
701 .queue_dp_write = jtag_dp_q_write,
702 .queue_ap_read = jtag_ap_q_read,
703 .queue_ap_write = jtag_ap_q_write,
704 .queue_ap_abort = jtag_ap_q_abort,
705 .run = jtag_dp_run,
706 .sync = jtag_dp_sync,
710 static const uint8_t swd2jtag_bitseq[] = {
711 /* More than 50 TCK/SWCLK cycles with TMS/SWDIO high,
712 * putting both JTAG and SWD logic into reset state.
714 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
715 /* Switching equence disables SWD and enables JTAG
716 * NOTE: bits in the DP's IDCODE can expose the need for
717 * the old/deprecated sequence (0xae 0xde).
719 0x3c, 0xe7,
720 /* At least 50 TCK/SWCLK cycles with TMS/SWDIO high,
721 * putting both JTAG and SWD logic into reset state.
722 * NOTE: some docs say "at least 5".
724 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
727 /** Put the debug link into JTAG mode, if the target supports it.
728 * The link's initial mode may be either SWD or JTAG.
730 * @param target Enters JTAG mode (if possible).
732 * Note that targets implemented with SW-DP do not support JTAG, and
733 * that some targets which could otherwise support it may have been
734 * configured to disable JTAG signaling
736 * @return ERROR_OK or else a fault code.
738 int dap_to_jtag(struct target *target)
740 int retval;
742 LOG_DEBUG("Enter JTAG mode");
744 /* REVISIT it's nasty to need to make calls to a "jtag"
745 * subsystem if the link isn't in JTAG mode...
748 retval = jtag_add_tms_seq(8 * sizeof(swd2jtag_bitseq),
749 swd2jtag_bitseq, TAP_RESET);
750 if (retval == ERROR_OK)
751 retval = jtag_execute_queue();
753 /* REVISIT set up the DAP's ops vector for JTAG mode. */
755 return retval;