OpenOCD
cmsis_dap.c
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 
3 /***************************************************************************
4  * Copyright (C) 2021 by Adrian Negreanu *
5  * groleo@gmail.com *
6  * *
7  * Copyright (C) 2018 by MickaĆ«l Thomas *
8  * mickael9@gmail.com *
9  * *
10  * Copyright (C) 2016 by Maksym Hilliaka *
11  * oter@frozen-team.com *
12  * *
13  * Copyright (C) 2016 by Phillip Pearson *
14  * pp@myelin.co.nz *
15  * *
16  * Copyright (C) 2014 by Paul Fertser *
17  * fercerpav@gmail.com *
18  * *
19  * Copyright (C) 2013 by mike brown *
20  * mike@theshedworks.org.uk *
21  * *
22  * Copyright (C) 2013 by Spencer Oliver *
23  * spen@spen-soft.co.uk *
24  ***************************************************************************/
25 
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29 
30 #include <transport/transport.h>
31 #include "helper/replacements.h"
32 #include <jtag/adapter.h>
33 #include <jtag/swd.h>
34 #include <jtag/interface.h>
35 #include <jtag/commands.h>
36 #include <jtag/tcl.h>
37 #include <target/cortex_m.h>
38 
39 #include "cmsis_dap.h"
40 
41 #define TIMEOUT_MS 6000
42 
43 /* Create a dummy backend for 'backend' command if real one does not build */
44 #if BUILD_CMSIS_DAP_USB == 0
46  .name = "usb_bulk",
47 };
48 #endif
49 
50 #if BUILD_CMSIS_DAP_HID == 0
52  .name = "hid"
53 };
54 #endif
55 
56 #if BUILD_CMSIS_DAP_TCP == 0
58  .name = "tcp"
59 };
60 #endif
61 
62 static const struct cmsis_dap_backend *const cmsis_dap_backends[] = {
66 };
67 
68 /* USB Config */
69 
70 /* Known vid/pid pairs:
71  * VID 0xc251: Keil Software
72  * PID 0xf001: LPC-Link-II CMSIS_DAP
73  * PID 0xf002: OPEN-SDA CMSIS_DAP (Freedom Board)
74  * PID 0x2722: Keil ULINK2 CMSIS-DAP
75  * PID 0x2750: Keil ULINKplus CMSIS-DAP
76  *
77  * VID 0x0d28: mbed Software
78  * PID 0x0204: MBED CMSIS-DAP
79  */
80 
81 static int cmsis_dap_backend = -1;
82 static bool swd_mode;
83 static bool cmsis_dap_quirk_mode; /* enable expensive workarounds */
84 
85 /* CMSIS-DAP General Commands */
86 #define CMD_DAP_INFO 0x00
87 #define CMD_DAP_LED 0x01
88 #define CMD_DAP_CONNECT 0x02
89 #define CMD_DAP_DISCONNECT 0x03
90 #define CMD_DAP_WRITE_ABORT 0x08
91 #define CMD_DAP_DELAY 0x09
92 #define CMD_DAP_RESET_TARGET 0x0A
93 
94 /* CMD_INFO */
95 #define INFO_ID_VENDOR 0x01 /* string */
96 #define INFO_ID_PRODUCT 0x02 /* string */
97 #define INFO_ID_SERNUM 0x03 /* string */
98 #define INFO_ID_FW_VER 0x04 /* string */
99 #define INFO_ID_TD_VEND 0x05 /* string */
100 #define INFO_ID_TD_NAME 0x06 /* string */
101 #define INFO_ID_CAPS 0xf0 /* byte */
102 #define INFO_ID_PKT_CNT 0xfe /* byte */
103 #define INFO_ID_PKT_SZ 0xff /* short */
104 #define INFO_ID_SWO_BUF_SZ 0xfd /* word */
105 
106 #define INFO_CAPS_SWD BIT(0)
107 #define INFO_CAPS_JTAG BIT(1)
108 #define INFO_CAPS_SWO_UART BIT(2)
109 #define INFO_CAPS_SWO_MANCHESTER BIT(3)
110 #define INFO_CAPS_ATOMIC_CMDS BIT(4)
111 #define INFO_CAPS_TEST_DOMAIN_TIMER BIT(5)
112 #define INFO_CAPS_SWO_STREAMING_TRACE BIT(6)
113 #define INFO_CAPS_UART_PORT BIT(7)
114 #define INFO_CAPS_USB_COM_PORT BIT(8)
115 #define INFO_CAPS__NUM_CAPS 9
116 
117 /* CMD_LED */
118 #define LED_ID_CONNECT 0x00
119 #define LED_ID_RUN 0x01
120 
121 #define LED_OFF 0x00
122 #define LED_ON 0x01
123 
124 /* CMD_CONNECT */
125 #define CONNECT_DEFAULT 0x00
126 #define CONNECT_SWD 0x01
127 #define CONNECT_JTAG 0x02
128 
129 /* CMSIS-DAP Common SWD/JTAG Commands */
130 #define CMD_DAP_DELAY 0x09
131 #define CMD_DAP_SWJ_PINS 0x10
132 #define CMD_DAP_SWJ_CLOCK 0x11
133 #define CMD_DAP_SWJ_SEQ 0x12
134 
135 /*
136  * PINS
137  * Bit 0: SWCLK/TCK
138  * Bit 1: SWDIO/TMS
139  * Bit 2: TDI
140  * Bit 3: TDO
141  * Bit 5: nTRST
142  * Bit 7: nRESET
143  */
144 
145 #define SWJ_PIN_TCK (1<<0)
146 #define SWJ_PIN_TMS (1<<1)
147 #define SWJ_PIN_TDI (1<<2)
148 #define SWJ_PIN_TDO (1<<3)
149 #define SWJ_PIN_TRST (1<<5)
150 #define SWJ_PIN_SRST (1<<7)
151 
152 /* CMSIS-DAP SWD Commands */
153 #define CMD_DAP_SWD_CONFIGURE 0x13
154 #define CMD_DAP_SWD_SEQUENCE 0x1D
155 
156 /* CMSIS-DAP JTAG Commands */
157 #define CMD_DAP_JTAG_SEQ 0x14
158 #define CMD_DAP_JTAG_CONFIGURE 0x15
159 #define CMD_DAP_JTAG_IDCODE 0x16
160 
161 /* CMSIS-DAP JTAG sequence info masks */
162 /* Number of bits to clock through (0 means 64) */
163 #define DAP_JTAG_SEQ_TCK 0x3F
164 /* TMS will be set during the sequence if this bit is set */
165 #define DAP_JTAG_SEQ_TMS 0x40
166 /* TDO output will be captured if this bit is set */
167 #define DAP_JTAG_SEQ_TDO 0x80
168 
169 
170 /* CMSIS-DAP Transfer Commands */
171 #define CMD_DAP_TFER_CONFIGURE 0x04
172 #define CMD_DAP_TFER 0x05
173 #define CMD_DAP_TFER_BLOCK 0x06
174 #define CMD_DAP_TFER_ABORT 0x07
175 
176 /* DAP_TransferBlock increases the sum of command/response sizes
177  * (due to 16-bit Transfer Count) if used in a small packet.
178  * Prevent using it until we have at least r/w operations. */
179 #define CMD_DAP_TFER_BLOCK_MIN_OPS 4
180 
181 /* DAP Status Code */
182 #define DAP_OK 0
183 #define DAP_ERROR 0xFF
184 
185 /* CMSIS-DAP SWO Commands */
186 #define CMD_DAP_SWO_TRANSPORT 0x17
187 #define CMD_DAP_SWO_MODE 0x18
188 #define CMD_DAP_SWO_BAUDRATE 0x19
189 #define CMD_DAP_SWO_CONTROL 0x1A
190 #define CMD_DAP_SWO_STATUS 0x1B
191 #define CMD_DAP_SWO_DATA 0x1C
192 #define CMD_DAP_SWO_EX_STATUS 0x1E
193 
194 /* SWO transport mode for reading trace data */
195 #define DAP_SWO_TRANSPORT_NONE 0
196 #define DAP_SWO_TRANSPORT_DATA 1
197 #define DAP_SWO_TRANSPORT_WINUSB 2
198 
199 /* SWO trace capture mode */
200 #define DAP_SWO_MODE_OFF 0
201 #define DAP_SWO_MODE_UART 1
202 #define DAP_SWO_MODE_MANCHESTER 2
203 
204 /* SWO trace data capture */
205 #define DAP_SWO_CONTROL_STOP 0
206 #define DAP_SWO_CONTROL_START 1
207 
208 /* SWO trace status */
209 #define DAP_SWO_STATUS_CAPTURE_INACTIVE 0
210 #define DAP_SWO_STATUS_CAPTURE_ACTIVE 1
211 #define DAP_SWO_STATUS_CAPTURE_MASK BIT(0)
212 #define DAP_SWO_STATUS_STREAM_ERROR_MASK BIT(6)
213 #define DAP_SWO_STATUS_BUFFER_OVERRUN_MASK BIT(7)
214 
215 /* CMSIS-DAP Vendor Commands
216  * None as yet... */
217 
218 static const char * const info_caps_str[INFO_CAPS__NUM_CAPS] = {
219  "SWD supported",
220  "JTAG supported",
221  "SWO-UART supported",
222  "SWO-MANCHESTER supported",
223  "Atomic commands supported",
224  "Test domain timer supported",
225  "SWO streaming trace supported",
226  "UART communication port supported",
227  "UART via USB COM port supported",
228 };
229 
230 struct pending_scan_result {
232  unsigned int first;
234  unsigned int length;
236  uint8_t *buffer;
238  unsigned int buffer_offset;
239 };
240 
241 /* Each block in FIFO can contain up to pending_queue_len transfers */
242 static unsigned int pending_queue_len;
243 static unsigned int tfer_max_command_size;
244 static unsigned int tfer_max_response_size;
245 
246 /* pointers to buffers that will receive jtag scan results on the next flush */
247 #define MAX_PENDING_SCAN_RESULTS 256
250 
251 /* queued JTAG sequences that will be executed on the next flush */
252 #define QUEUED_SEQ_BUF_LEN (cmsis_dap_handle->packet_usable_size - 3)
253 static int queued_seq_count;
256 static uint8_t queued_seq_buf[1024]; /* TODO: make dynamic / move into cmsis object */
257 
258 static int queued_retval;
259 
261 
263 
264 
265 static int cmsis_dap_quit(void);
266 
267 static int cmsis_dap_open(void)
268 {
269  const struct cmsis_dap_backend *backend = NULL;
270 
271  struct cmsis_dap *dap = calloc(1, sizeof(struct cmsis_dap));
272  if (!dap) {
273  LOG_ERROR("unable to allocate memory");
274  return ERROR_FAIL;
275  }
276 
277  int retval = ERROR_FAIL;
278  if (cmsis_dap_backend >= 0) {
279  /* Use forced backend */
281  if (backend->open)
282  retval = backend->open(dap, adapter_usb_get_vids(),
284  else
285  LOG_ERROR("Requested CMSIS-DAP backend is disabled by configure");
286 
287  } else {
288  /* Try all backends */
289  for (unsigned int i = 0; i < ARRAY_SIZE(cmsis_dap_backends); i++) {
291  if (!backend->open)
292  continue;
293 
295  if (retval == ERROR_OK)
296  break;
297  }
298  }
299 
300  if (retval != ERROR_OK) {
301  LOG_ERROR("unable to find a matching CMSIS-DAP device");
302  free(dap);
303  return retval;
304  }
305 
306  dap->backend = backend;
307 
308  cmsis_dap_handle = dap;
309 
310  return ERROR_OK;
311 }
312 
313 static void cmsis_dap_close(struct cmsis_dap *dap)
314 {
315  if (dap->backend) {
316  if (dap->backend->close)
317  dap->backend->close(dap);
318  dap->backend = NULL;
319  }
320 
321  free(dap->packet_buffer);
322 
323  for (unsigned int i = 0; i < MAX_PENDING_REQUESTS; i++) {
324  free(dap->pending_fifo[i].transfers);
325  dap->pending_fifo[i].transfers = NULL;
326  }
327 
328  free(cmsis_dap_handle);
330 }
331 
332 static void cmsis_dap_flush_read(struct cmsis_dap *dap)
333 {
334  unsigned int i;
335  /* Some CMSIS-DAP adapters keep buffered packets over
336  * USB close/open so we need to flush up to 64 old packets
337  * to be sure all buffers are empty */
338  for (i = 0; i < 64; i++) {
339  int retval = dap->backend->read(dap, CMSIS_DAP_TIMEOUT_SHORT_MS,
341  if (retval == ERROR_TIMEOUT_REACHED)
342  break;
343  }
344  if (i)
345  LOG_DEBUG("Flushed %u packets", i);
346 }
347 
348 /* Send a message and receive the reply */
349 static int cmsis_dap_xfer(struct cmsis_dap *dap, int txlen,
350  unsigned int min_resp_size)
351 {
352  if (dap->write_count + dap->read_count) {
353  LOG_ERROR("internal: queue not empty before xfer");
354  }
355  if (dap->pending_fifo_block_count) {
356  LOG_ERROR("pending %u blocks, flushing", dap->pending_fifo_block_count);
357  while (dap->pending_fifo_block_count) {
361  }
362  dap->pending_fifo_put_idx = 0;
363  dap->pending_fifo_get_idx = 0;
364  }
365 
366  uint8_t current_cmd = dap->command[0];
367  int retval = dap->backend->write(dap, txlen, TIMEOUT_MS);
368  if (retval < 0)
369  return retval;
370 
371  /* get reply */
372  retval = dap->backend->read(dap, TIMEOUT_MS, CMSIS_DAP_BLOCKING);
373  if (retval < 0)
374  return retval;
375 
376  uint8_t *resp = dap->response;
377  unsigned int resp_size = retval;
378  if (resp_size >= 1) {
379  if (resp[0] == DAP_ERROR) {
380  LOG_ERROR("CMSIS-DAP command 0x%" PRIx8 " not implemented", current_cmd);
381  return ERROR_NOT_IMPLEMENTED;
382  }
383 
384  if (resp[0] != current_cmd) {
385  LOG_ERROR("CMSIS-DAP command mismatch. Sent 0x%" PRIx8
386  " received 0x%" PRIx8, current_cmd, resp[0]);
387 
388  dap->backend->cancel_all(dap);
390  return ERROR_FAIL;
391  }
392  }
393 
394  if (resp_size < min_resp_size) {
395  LOG_ERROR("CMSIS-DAP command 0x%" PRIx8
396  " response too short (expected %u got %u)",
397  current_cmd, min_resp_size, retval);
399  }
400  dap->response_size = resp_size;
401 
402  return ERROR_OK;
403 }
404 
405 static int cmsis_dap_cmd_dap_swj_pins(uint8_t pins, uint8_t mask, uint32_t delay, uint8_t *input)
406 {
407  uint8_t *command = cmsis_dap_handle->command;
408 
410  command[1] = pins;
411  command[2] = mask;
412  h_u32_to_le(&command[3], delay);
413 
414  int retval = cmsis_dap_xfer(cmsis_dap_handle, 7, 2);
415  if (retval != ERROR_OK) {
416  LOG_ERROR("CMSIS-DAP command CMD_DAP_SWJ_PINS failed.");
418  }
419 
420  if (input)
421  *input = cmsis_dap_handle->response[1];
422 
423  return ERROR_OK;
424 }
425 
426 static int cmsis_dap_cmd_dap_swj_clock(uint32_t swj_clock)
427 {
428  uint8_t *command = cmsis_dap_handle->command;
429 
430  /* set clock in Hz */
431  swj_clock *= 1000;
432 
434  h_u32_to_le(&command[1], swj_clock);
435 
436  int retval = cmsis_dap_xfer(cmsis_dap_handle, 5, 2);
437  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
438  LOG_ERROR("CMSIS-DAP command CMD_DAP_SWJ_CLOCK failed.");
440  }
441 
442  return ERROR_OK;
443 }
444 
445 /* clock a sequence of bits out on TMS, to change JTAG states */
446 static int cmsis_dap_cmd_dap_swj_sequence(uint8_t s_len, const uint8_t *sequence)
447 {
448  uint8_t *command = cmsis_dap_handle->command;
449 
450 #ifdef CMSIS_DAP_JTAG_DEBUG
451  LOG_DEBUG("cmsis-dap TMS sequence: len=%d", s_len);
452  for (unsigned int i = 0; i < DIV_ROUND_UP(s_len, 8); ++i)
453  printf("%02X ", sequence[i]);
454 
455  printf("\n");
456 #endif
457 
459  command[1] = s_len;
460  bit_copy(&command[2], 0, sequence, 0, s_len);
461 
462  int retval = cmsis_dap_xfer(cmsis_dap_handle, 2 + DIV_ROUND_UP(s_len, 8), 2);
463  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK)
464  return ERROR_FAIL;
465 
466  return ERROR_OK;
467 }
468 
469 static int cmsis_dap_cmd_dap_info(uint8_t info, uint8_t **data)
470 {
471  uint8_t *command = cmsis_dap_handle->command;
472 
473  command[0] = CMD_DAP_INFO;
474  command[1] = info;
475 
476  int retval = cmsis_dap_xfer(cmsis_dap_handle, 2, 2);
477  if (retval != ERROR_OK) {
478  LOG_ERROR("CMSIS-DAP command CMD_INFO failed.");
480  }
481 
482  unsigned int info_size = cmsis_dap_handle->response[1];
483  if (2 + info_size > cmsis_dap_handle->response_size) {
484  LOG_ERROR("CMSIS-DAP CMD_INFO payload (size %u) does not fit into response (size %u)",
485  info_size, cmsis_dap_handle->response_size);
487  }
488  *data = &cmsis_dap_handle->response[1];
489 
490  return ERROR_OK;
491 }
492 
493 static int cmsis_dap_cmd_dap_led(uint8_t led, uint8_t state)
494 {
495  uint8_t *command = cmsis_dap_handle->command;
496 
497  command[0] = CMD_DAP_LED;
498  command[1] = led;
499  command[2] = state;
500 
501  int retval = cmsis_dap_xfer(cmsis_dap_handle, 3, 2);
502  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
503  LOG_ERROR("CMSIS-DAP command CMD_LED failed.");
505  }
506 
507  return ERROR_OK;
508 }
509 
510 static int cmsis_dap_cmd_dap_connect(uint8_t mode)
511 {
512  uint8_t *command = cmsis_dap_handle->command;
513 
515  command[1] = mode;
516 
517  int retval = cmsis_dap_xfer(cmsis_dap_handle, 2, 2);
518  if (retval != ERROR_OK) {
519  LOG_ERROR("CMSIS-DAP command CMD_CONNECT failed.");
521  }
522 
523  if (cmsis_dap_handle->response[1] != mode) {
524  LOG_ERROR("CMSIS-DAP failed to connect in mode (%d)", mode);
526  }
527 
528  return ERROR_OK;
529 }
530 
532 {
533  uint8_t *command = cmsis_dap_handle->command;
534 
536 
537  int retval = cmsis_dap_xfer(cmsis_dap_handle, 1, 2);
538  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
539  LOG_ERROR("CMSIS-DAP command CMD_DISCONNECT failed.");
541  }
542 
543  return ERROR_OK;
544 }
545 
546 static int cmsis_dap_cmd_dap_tfer_configure(uint8_t idle, uint16_t retry_count, uint16_t match_retry)
547 {
548  uint8_t *command = cmsis_dap_handle->command;
549 
551  command[1] = idle;
552  h_u16_to_le(&command[2], retry_count);
553  h_u16_to_le(&command[4], match_retry);
554 
555  int retval = cmsis_dap_xfer(cmsis_dap_handle, 6, 2);
556  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
557  LOG_ERROR("CMSIS-DAP command CMD_TFER_Configure failed.");
559  }
560 
561  return ERROR_OK;
562 }
563 
564 static int cmsis_dap_cmd_dap_swd_configure(uint8_t cfg)
565 {
566  uint8_t *command = cmsis_dap_handle->command;
567 
569  command[1] = cfg;
570 
571  int retval = cmsis_dap_xfer(cmsis_dap_handle, 2, 2);
572  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
573  LOG_ERROR("CMSIS-DAP command CMD_SWD_Configure failed.");
575  }
576 
577  return ERROR_OK;
578 }
579 
580 #if 0
581 static int cmsis_dap_cmd_dap_delay(uint16_t delay_us)
582 {
583  uint8_t *command = cmsis_dap_handle->command;
584 
585  command[0] = CMD_DAP_DELAY;
587 
588  int retval = cmsis_dap_xfer(cmsis_dap_handle, 3, 2);
589  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
590  LOG_ERROR("CMSIS-DAP command CMD_Delay failed.");
592  }
593 
594  return ERROR_OK;
595 }
596 #endif
597 
598 static int cmsis_dap_metacmd_targetsel(uint32_t instance_id)
599 {
600  uint8_t *command = cmsis_dap_handle->command;
601  const uint32_t seq_rd = 0x80, seq_wr = 0x00;
602 
603  /* SWD multi-drop requires a transfer ala CMD_DAP_TFER,
604  but with no expectation of an SWD ACK response. In
605  CMSIS-DAP v1.20 and v2.00, CMD_DAP_SWD_SEQUENCE was
606  added to allow this special sequence to be generated.
607  The purpose of this operation is to select the target
608  corresponding to the instance_id that is written */
609 
610  LOG_DEBUG_IO("DP write reg TARGETSEL %" PRIx32, instance_id);
611 
612  size_t idx = 0;
613  command[idx++] = CMD_DAP_SWD_SEQUENCE;
614  command[idx++] = 3; /* sequence count */
615 
616  /* sequence 0: packet request for TARGETSEL */
617  command[idx++] = seq_wr | 8;
618  command[idx++] = SWD_CMD_START | swd_cmd(false, false, DP_TARGETSEL) | SWD_CMD_STOP | SWD_CMD_PARK;
619 
620  /* sequence 1: read Trn ACK Trn, no expectation for target to ACK */
621  command[idx++] = seq_rd | 5;
622 
623  /* sequence 2: WDATA plus parity */
624  command[idx++] = seq_wr | (32 + 1);
625  h_u32_to_le(command + idx, instance_id);
626  idx += 4;
627  command[idx++] = parity_u32(instance_id);
628 
629  int retval = cmsis_dap_xfer(cmsis_dap_handle, idx, 2);
630  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
631  LOG_ERROR("CMSIS-DAP command SWD_Sequence failed.");
633  }
634 
635  return ERROR_OK;
636 }
637 
644 {
645  uint8_t *command = cmsis_dap_handle->command;
646 
648  command[1] = transport;
649 
650  int retval = cmsis_dap_xfer(cmsis_dap_handle, 2, 2);
651  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
652  LOG_ERROR("CMSIS-DAP: command CMD_SWO_Transport(%d) failed.", transport);
654  }
655 
656  return ERROR_OK;
657 }
658 
663 static int cmsis_dap_cmd_dap_swo_mode(uint8_t mode)
664 {
665  uint8_t *command = cmsis_dap_handle->command;
666 
668  command[1] = mode;
669 
670  int retval = cmsis_dap_xfer(cmsis_dap_handle, 2, 2);
671  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
672  LOG_ERROR("CMSIS-DAP: command CMD_SWO_Mode(%d) failed.", mode);
674  }
675 
676  return ERROR_OK;
677 }
678 
689  uint32_t in_baudrate,
690  uint32_t *dev_baudrate)
691 {
692  uint8_t *command = cmsis_dap_handle->command;
693 
695  h_u32_to_le(&command[1], in_baudrate);
696 
697  int retval = cmsis_dap_xfer(cmsis_dap_handle, 5, 2);
698  uint32_t rvbr = le_to_h_u32(&cmsis_dap_handle->response[1]);
699  if (retval != ERROR_OK || rvbr == 0) {
700  LOG_ERROR("CMSIS-DAP: command CMD_SWO_Baudrate(%u) -> %u failed.", in_baudrate, rvbr);
701  if (dev_baudrate)
702  *dev_baudrate = 0;
704  }
705 
706  if (dev_baudrate)
707  *dev_baudrate = rvbr;
708 
709  return ERROR_OK;
710 }
711 
718 static int cmsis_dap_cmd_dap_swo_control(uint8_t control)
719 {
720  uint8_t *command = cmsis_dap_handle->command;
721 
723  command[1] = control;
724 
725  int retval = cmsis_dap_xfer(cmsis_dap_handle, 2, 2);
726  if (retval != ERROR_OK || cmsis_dap_handle->response[1] != DAP_OK) {
727  LOG_ERROR("CMSIS-DAP: command CMD_SWO_Control(%d) failed.", control);
729  }
730 
731  return ERROR_OK;
732 }
733 
743  uint8_t *trace_status,
744  size_t *trace_count)
745 {
746  uint8_t *command = cmsis_dap_handle->command;
747 
749 
750  int retval = cmsis_dap_xfer(cmsis_dap_handle, 1, 6);
751  if (retval != ERROR_OK) {
752  LOG_ERROR("CMSIS-DAP: command CMD_SWO_Status failed.");
754  }
755 
756  if (trace_status)
758  if (trace_count)
759  *trace_count = le_to_h_u32(&cmsis_dap_handle->response[2]);
760 
761  return ERROR_OK;
762 }
763 
772  size_t max_trace_count,
773  uint8_t *trace_status,
774  size_t *trace_count,
775  uint8_t *data)
776 {
777  uint8_t *command = cmsis_dap_handle->command;
778 
780  h_u16_to_le(&command[1], max_trace_count);
781 
782  int retval = cmsis_dap_xfer(cmsis_dap_handle, 3, 4);
783  if (retval != ERROR_OK) {
784  LOG_ERROR("CMSIS-DAP: command CMD_SWO_Data failed.");
786  }
787 
789  *trace_count = le_to_h_u16(&cmsis_dap_handle->response[2]);
790 
791  if (*trace_count > 0)
792  memcpy(data, &cmsis_dap_handle->response[4], *trace_count);
793 
794  return ERROR_OK;
795 }
796 
798 {
799  for (unsigned int i = 0; i < MAX_PENDING_REQUESTS; i++)
800  dap->pending_fifo[i].transfer_count = 0;
801 
802  dap->pending_fifo_put_idx = 0;
803  dap->pending_fifo_get_idx = 0;
804  dap->pending_fifo_block_count = 0;
805 }
806 
808 {
809  dap->backend->cancel_all(dap);
812 }
813 
815 {
816  uint8_t *command = dap->command;
817  struct pending_request_block *block = &dap->pending_fifo[dap->pending_fifo_put_idx];
818 
819  assert(dap->write_count + dap->read_count == block->transfer_count);
820 
821  /* Reset packet size check counters for the next packet */
822  dap->write_count = 0;
823  dap->read_count = 0;
824 
825  LOG_DEBUG_IO("Executing %d queued transactions from FIFO index %u%s",
827  cmsis_dap_handle->swd_cmds_differ ? "" : ", same swd ops");
828 
829  if (queued_retval != ERROR_OK) {
830  LOG_DEBUG("Skipping due to previous errors: %d", queued_retval);
831  goto skip;
832  }
833 
834  if (block->transfer_count == 0) {
835  LOG_ERROR("internal: write an empty queue?!");
836  goto skip;
837  }
838 
839  bool block_cmd = !cmsis_dap_handle->swd_cmds_differ
841  block->command = block_cmd ? CMD_DAP_TFER_BLOCK : CMD_DAP_TFER;
842 
843  command[0] = block->command;
844  command[1] = 0x00; /* DAP Index */
845 
846  unsigned int idx;
847  if (block_cmd) {
848  h_u16_to_le(&command[2], block->transfer_count);
849  idx = 4; /* The first transfer will store the common DAP register */
850  } else {
851  command[2] = block->transfer_count;
852  idx = 3;
853  }
854 
855  for (unsigned int i = 0; i < block->transfer_count; i++) {
856  struct pending_transfer_result *transfer = &(block->transfers[i]);
857  uint8_t cmd = transfer->cmd;
858  uint32_t data = transfer->data;
859 
860  LOG_DEBUG_IO("%s %s reg %x %" PRIx32,
861  cmd & SWD_CMD_APNDP ? "AP" : "DP",
862  cmd & SWD_CMD_RNW ? "read" : "write",
863  (cmd & SWD_CMD_A32) >> 1, data);
864 
865  /* When proper WAIT handling is implemented in the
866  * common SWD framework, this kludge can be
867  * removed. However, this might lead to minor
868  * performance degradation as the adapter wouldn't be
869  * able to automatically retry anything (because ARM
870  * has forgotten to implement sticky error flags
871  * clearing). See also comments regarding
872  * cmsis_dap_cmd_dap_tfer_configure() and
873  * cmsis_dap_cmd_dap_swd_configure() in
874  * cmsis_dap_init().
875  */
876  if (!(cmd & SWD_CMD_RNW) &&
877  !(cmd & SWD_CMD_APNDP) &&
878  (cmd & SWD_CMD_A32) >> 1 == DP_CTRL_STAT &&
879  (data & CORUNDETECT)) {
880  LOG_DEBUG("refusing to enable sticky overrun detection");
881  data &= ~CORUNDETECT;
882  }
883 
884  if (!block_cmd || i == 0)
885  command[idx++] = (cmd >> 1) & 0x0f;
886 
887  if (!(cmd & SWD_CMD_RNW)) {
888  h_u32_to_le(&command[idx], data);
889  idx += 4;
890  }
891  }
892 
893  int retval = dap->backend->write(dap, idx, TIMEOUT_MS);
894  if (retval < 0) {
895  queued_retval = retval;
896  goto skip;
897  }
898 
899  unsigned int packet_count = cmsis_dap_quirk_mode ? 1 : dap->packet_count;
900  dap->pending_fifo_put_idx = (dap->pending_fifo_put_idx + 1) % packet_count;
902  if (dap->pending_fifo_block_count > packet_count)
903  LOG_ERROR("internal: too much pending writes %u", dap->pending_fifo_block_count);
904 
905  return;
906 
907 skip:
908  block->transfer_count = 0;
909 }
910 
911 static unsigned int cmsis_dap_tfer_cmd_size(unsigned int write_count,
912  unsigned int read_count, bool block_tfer)
913 {
914  unsigned int size;
915  if (block_tfer) {
916  size = 5; /* DAP_TransferBlock header */
917  size += write_count * 4; /* data */
918  } else {
919  size = 3; /* DAP_Transfer header */
920  size += write_count * (1 + 4); /* DAP register + data */
921  size += read_count; /* DAP register */
922  }
923  return size;
924 }
925 
926 static unsigned int cmsis_dap_tfer_resp_size(unsigned int write_count,
927  unsigned int read_count, bool block_tfer)
928 {
929  unsigned int size;
930  if (block_tfer)
931  size = 4; /* DAP_TransferBlock response header */
932  else
933  size = 3; /* DAP_Transfer response header */
934 
935  size += read_count * 4; /* data */
936  return size;
937 }
938 
939 static void cmsis_dap_swd_read_process(struct cmsis_dap *dap, enum cmsis_dap_blocking blocking)
940 {
941  int retval;
942  struct pending_request_block *block = &dap->pending_fifo[dap->pending_fifo_get_idx];
943 
944  if (dap->pending_fifo_block_count == 0) {
945  LOG_ERROR("internal: no pending write when reading?!");
946  return;
947  }
948 
949  if (queued_retval != ERROR_OK) {
950  /* keep reading blocks until the pipeline is empty */
951  retval = dap->backend->read(dap, CMSIS_DAP_TIMEOUT_SHORT_MS,
953  if (retval == ERROR_TIMEOUT_REACHED || retval == 0) {
954  /* timeout means that we flushed the pipeline,
955  * we can safely discard remaining pending requests */
957  return;
958  }
959  goto skip;
960  }
961 
962  /* get reply */
963  retval = dap->backend->read(dap, TIMEOUT_MS, blocking);
964  bool timeout = (retval == ERROR_TIMEOUT_REACHED || retval == 0);
965  if (timeout && blocking == CMSIS_DAP_NON_BLOCKING)
966  return;
967 
968  if (retval <= 0) {
969  LOG_DEBUG("error reading adapter response");
971  if (timeout) {
972  /* timeout means that we flushed the pipeline,
973  * we can safely discard remaining pending requests */
975  return;
976  }
977  goto skip;
978  }
979 
980  uint8_t *resp = dap->response;
981  if (resp[0] != block->command) {
982  LOG_ERROR("CMSIS-DAP command mismatch. Expected 0x%" PRIx8
983  " received 0x%" PRIx8, block->command, resp[0]);
986  return;
987  }
988 
989  unsigned int resp_size = retval;
990  bool block_cmd = (block->command == CMD_DAP_TFER_BLOCK);
991  unsigned int expect_hdr_size = cmsis_dap_tfer_resp_size(0, 0, block_cmd);
992  if (resp_size < expect_hdr_size) {
993  LOG_ERROR("CMSIS-DAP too short response: expected header %u, got %u",
994  expect_hdr_size, resp_size);
997  return;
998  }
999 
1000  unsigned int transfer_count;
1001  unsigned int idx;
1002  if (block->command == CMD_DAP_TFER_BLOCK) {
1003  transfer_count = le_to_h_u16(&resp[1]);
1004  idx = 3;
1005  } else {
1006  transfer_count = resp[1];
1007  idx = 2;
1008  }
1009  if (resp[idx] & 0x08) {
1010  LOG_DEBUG("CMSIS-DAP Protocol Error @ %d (wrong parity)", transfer_count);
1012  goto skip;
1013  }
1014  uint8_t ack = resp[idx++] & 0x07;
1015  if (ack != SWD_ACK_OK) {
1016  LOG_DEBUG("SWD ack not OK @ %d %s", transfer_count,
1017  ack == SWD_ACK_WAIT ? "WAIT" : ack == SWD_ACK_FAULT ? "FAULT" : "JUNK");
1019  /* TODO: use results of transfers completed before the error occurred? */
1020  goto skip;
1021  }
1022 
1023  if (block->transfer_count != transfer_count) {
1024  LOG_ERROR("CMSIS-DAP transfer count mismatch: expected %d, got %d",
1025  block->transfer_count, transfer_count);
1028  return;
1029  }
1030 
1031  LOG_DEBUG_IO("Received results of %d queued transactions FIFO index %u, %s mode",
1033  blocking ? "blocking" : "nonblocking");
1034 
1035  for (unsigned int i = 0; i < transfer_count; i++) {
1036  struct pending_transfer_result *transfer = &(block->transfers[i]);
1037  if (transfer->cmd & SWD_CMD_RNW) {
1038  static uint32_t last_read;
1039  if (idx + 4 > resp_size) {
1040  LOG_ERROR("CMSIS-DAP too short response: expected at least %u, got %u",
1041  idx + 4, resp_size);
1044  return;
1045  }
1046  uint32_t data = le_to_h_u32(&resp[idx]);
1047  uint32_t tmp = data;
1048  idx += 4;
1049 
1050  LOG_DEBUG_IO("Read result: %" PRIx32, data);
1051 
1052  /* Imitate posted AP reads */
1053  if ((transfer->cmd & SWD_CMD_APNDP) ||
1054  ((transfer->cmd & SWD_CMD_A32) >> 1 == DP_RDBUFF)) {
1055  tmp = last_read;
1056  last_read = data;
1057  }
1058 
1059  if (transfer->buffer)
1060  *(uint32_t *)(transfer->buffer) = tmp;
1061  }
1062  }
1063 
1064 skip:
1065  block->transfer_count = 0;
1066  if (!cmsis_dap_quirk_mode && dap->packet_count > 1)
1067  dap->pending_fifo_get_idx = (dap->pending_fifo_get_idx + 1) % dap->packet_count;
1068  dap->pending_fifo_block_count--;
1069 }
1070 
1071 static int cmsis_dap_swd_run_queue(void)
1072 {
1076 
1078  }
1079 
1082 
1085 
1086  int retval = queued_retval;
1088 
1089  return retval;
1090 }
1091 
1092 static void cmsis_dap_swd_queue_cmd(uint8_t cmd, uint32_t *dst, uint32_t data)
1093 {
1094  /* TARGETSEL register write cannot be queued */
1095  if (swd_cmd(false, false, DP_TARGETSEL) == cmd) {
1097 
1099  return;
1100  }
1101 
1102  /* Compute sizes of the DAP Transfer command and the expected response
1103  * for all queued and this operation */
1104  unsigned int write_count = cmsis_dap_handle->write_count;
1105  unsigned int read_count = cmsis_dap_handle->read_count;
1106  bool block_cmd;
1107  if (write_count + read_count < CMD_DAP_TFER_BLOCK_MIN_OPS)
1108  block_cmd = false;
1109  else
1110  block_cmd = !cmsis_dap_handle->swd_cmds_differ
1112 
1113  if (cmd & SWD_CMD_RNW)
1114  read_count++;
1115  else
1116  write_count++;
1117 
1118  unsigned int cmd_size = cmsis_dap_tfer_cmd_size(write_count, read_count,
1119  block_cmd);
1120  unsigned int resp_size = cmsis_dap_tfer_resp_size(write_count, read_count,
1121  block_cmd);
1122  unsigned int max_transfer_count = block_cmd ? 65535 : 255;
1123 
1124  /* Does the DAP Transfer command and also its expected response fit into one packet? */
1125  if (cmd_size > tfer_max_command_size
1126  || resp_size > tfer_max_response_size
1127  || write_count + read_count > max_transfer_count) {
1130 
1131  /* Not enough room in the queue. Run the queue. */
1133 
1134  unsigned int packet_count = cmsis_dap_quirk_mode ? 1 : cmsis_dap_handle->packet_count;
1135  if (cmsis_dap_handle->pending_fifo_block_count >= packet_count)
1137  }
1138 
1140 
1141  if (queued_retval != ERROR_OK)
1142  return;
1143 
1145  struct pending_transfer_result *transfer = &(block->transfers[block->transfer_count]);
1146  transfer->data = data;
1147  transfer->cmd = cmd;
1148  if (block->transfer_count == 0) {
1151  } else if (cmd != cmsis_dap_handle->common_swd_cmd) {
1153  }
1154 
1155  if (cmd & SWD_CMD_RNW) {
1156  /* Queue a read transaction */
1157  transfer->buffer = dst;
1159  } else {
1161  }
1162  block->transfer_count++;
1163 }
1164 
1165 static int cmsis_dap_swd_write_reg(uint8_t cmd, uint32_t value, uint32_t ap_delay_clk)
1166 {
1167  assert(!(cmd & SWD_CMD_RNW));
1168  cmsis_dap_swd_queue_cmd(cmd, NULL, value);
1169 
1170  return ERROR_OK; /* TODO: return error instead of queuing it */
1171 }
1172 
1173 static int cmsis_dap_swd_read_reg(uint8_t cmd, uint32_t *value, uint32_t ap_delay_clk)
1174 {
1175  assert(cmd & SWD_CMD_RNW);
1176  cmsis_dap_swd_queue_cmd(cmd, value, 0);
1177 
1178  return ERROR_OK; /* TODO: return error instead of queuing it */
1179 }
1180 
1182 {
1183  uint8_t *data;
1184 
1185  int retval = cmsis_dap_cmd_dap_info(INFO_ID_SERNUM, &data);
1186  if (retval != ERROR_OK)
1187  return retval;
1188 
1189  if (data[0]) /* strlen */
1190  LOG_INFO("CMSIS-DAP: Serial# = %.*s", data[0], &data[1]);
1191 
1192  return ERROR_OK;
1193 }
1194 
1196 {
1197  uint8_t *data;
1198 
1199  /* INFO_ID_FW_VER - string */
1200  int retval = cmsis_dap_cmd_dap_info(INFO_ID_FW_VER, &data);
1201  if (retval != ERROR_OK)
1202  return retval;
1203 
1204  if (data[0]) /* strlen */
1205  LOG_INFO("CMSIS-DAP: FW Version = %.*s", data[0], &data[1]);
1206 
1207  return ERROR_OK;
1208 }
1209 
1210 static int cmsis_dap_get_caps_info(void)
1211 {
1212  uint8_t *data;
1213 
1214  /* INFO_ID_CAPS - byte */
1215  int retval = cmsis_dap_cmd_dap_info(INFO_ID_CAPS, &data);
1216  if (retval != ERROR_OK)
1217  return retval;
1218 
1219  if (data[0] == 1 || data[0] == 2) {
1220  uint16_t caps = data[1];
1221  if (data[0] == 2)
1222  caps |= (uint16_t)data[2] << 8;
1223 
1225 
1226  for (unsigned int i = 0; i < INFO_CAPS__NUM_CAPS; ++i) {
1227  if (caps & BIT(i))
1228  LOG_INFO("CMSIS-DAP: %s", info_caps_str[i]);
1229  }
1230  }
1231 
1232  return ERROR_OK;
1233 }
1234 
1235 static int cmsis_dap_get_swo_buf_sz(uint32_t *swo_buf_sz)
1236 {
1237  uint8_t *data;
1238 
1239  /* INFO_ID_SWO_BUF_SZ - word */
1241  if (retval != ERROR_OK)
1242  return retval;
1243 
1244  if (data[0] != 4)
1245  return ERROR_FAIL;
1246 
1247  *swo_buf_sz = le_to_h_u32(&data[1]);
1248 
1249  LOG_INFO("CMSIS-DAP: SWO Trace Buffer Size = %u bytes", *swo_buf_sz);
1250 
1251  return ERROR_OK;
1252 }
1253 
1254 static int cmsis_dap_get_status(void)
1255 {
1256  uint8_t d;
1257 
1258  int retval = cmsis_dap_cmd_dap_swj_pins(0, 0, 0, &d);
1259 
1260  if (retval == ERROR_OK) {
1261  LOG_INFO("SWCLK/TCK = %d SWDIO/TMS = %d TDI = %d TDO = %d nTRST = %d nRESET = %d",
1262  (d & SWJ_PIN_TCK) ? 1 : 0,
1263  (d & SWJ_PIN_TMS) ? 1 : 0,
1264  (d & SWJ_PIN_TDI) ? 1 : 0,
1265  (d & SWJ_PIN_TDO) ? 1 : 0,
1266  (d & SWJ_PIN_TRST) ? 1 : 0,
1267  (d & SWJ_PIN_SRST) ? 1 : 0);
1268  }
1269 
1270  return retval;
1271 }
1272 
1274 {
1275  const uint8_t *s;
1276  unsigned int s_len;
1277  int retval;
1278 
1279  if (swd_mode)
1281 
1282  if (cmsis_dap_quirk_mode && seq != LINE_RESET &&
1284  == (SWJ_PIN_SRST | SWJ_PIN_TRST)) {
1285  /* Following workaround deasserts reset on most adapters.
1286  * Do not reconnect if a reset line is active!
1287  * Reconnecting would break connecting under reset. */
1288 
1289  /* First disconnect before connecting, Atmel EDBG needs it for SAMD/R/L/C */
1291 
1292  /* When we are reconnecting, DAP_Connect needs to be rerun, at
1293  * least on Keil ULINK-ME */
1295  if (retval != ERROR_OK)
1296  return retval;
1297  }
1298 
1299  switch (seq) {
1300  case LINE_RESET:
1301  LOG_DEBUG_IO("SWD line reset");
1302  s = swd_seq_line_reset;
1303  s_len = swd_seq_line_reset_len;
1304  break;
1305  case JTAG_TO_SWD:
1306  LOG_DEBUG("JTAG-to-SWD");
1307  s = swd_seq_jtag_to_swd;
1308  s_len = swd_seq_jtag_to_swd_len;
1309  break;
1310  case JTAG_TO_DORMANT:
1311  LOG_DEBUG("JTAG-to-DORMANT");
1314  break;
1315  case SWD_TO_JTAG:
1316  LOG_DEBUG("SWD-to-JTAG");
1317  s = swd_seq_swd_to_jtag;
1318  s_len = swd_seq_swd_to_jtag_len;
1319  break;
1320  case SWD_TO_DORMANT:
1321  LOG_DEBUG("SWD-to-DORMANT");
1324  break;
1325  case DORMANT_TO_SWD:
1326  LOG_DEBUG("DORMANT-to-SWD");
1329  break;
1330  case DORMANT_TO_JTAG:
1331  LOG_DEBUG("DORMANT-to-JTAG");
1334  break;
1335  default:
1336  LOG_ERROR("Sequence %d not supported", seq);
1337  return ERROR_FAIL;
1338  }
1339 
1340  retval = cmsis_dap_cmd_dap_swj_sequence(s_len, s);
1341  if (retval != ERROR_OK)
1342  return retval;
1343 
1344  /* Atmel EDBG needs renew clock setting after SWJ_Sequence
1345  * otherwise default frequency is used */
1347 }
1348 
1349 static int cmsis_dap_swd_open(void)
1350 {
1351  if (!(cmsis_dap_handle->caps & INFO_CAPS_SWD)) {
1352  LOG_ERROR("CMSIS-DAP: SWD not supported");
1353  return ERROR_JTAG_DEVICE_ERROR;
1354  }
1355 
1356  int retval = cmsis_dap_cmd_dap_connect(CONNECT_SWD);
1357  if (retval != ERROR_OK)
1358  return retval;
1359 
1360  /* Add more setup here.??... */
1361 
1362  LOG_INFO("CMSIS-DAP: Interface Initialised (SWD)");
1363  return ERROR_OK;
1364 }
1365 
1366 static int cmsis_dap_init(void)
1367 {
1368  uint8_t *data;
1369 
1370  int retval = cmsis_dap_open();
1371  if (retval != ERROR_OK)
1372  return retval;
1373 
1375 
1376  retval = cmsis_dap_get_caps_info();
1377  if (retval != ERROR_OK)
1378  return retval;
1379 
1380  retval = cmsis_dap_get_version_info();
1381  if (retval != ERROR_OK)
1382  return retval;
1383 
1384  retval = cmsis_dap_get_serial_info();
1385  if (retval != ERROR_OK)
1386  return retval;
1387 
1388  if (swd_mode) {
1389  retval = cmsis_dap_swd_open();
1390  if (retval != ERROR_OK)
1391  return retval;
1392  } else {
1393  /* Connect in JTAG mode */
1394  if (!(cmsis_dap_handle->caps & INFO_CAPS_JTAG)) {
1395  LOG_ERROR("CMSIS-DAP: JTAG not supported");
1396  return ERROR_JTAG_DEVICE_ERROR;
1397  }
1398 
1400  if (retval != ERROR_OK)
1401  return retval;
1402 
1403  LOG_INFO("CMSIS-DAP: Interface Initialised (JTAG)");
1404  }
1405 
1406  /* Be conservative and suppress submitting multiple HID requests
1407  * until we get packet count info from the adaptor */
1409 
1410  /* INFO_ID_PKT_SZ - short */
1412  if (retval != ERROR_OK)
1413  goto init_err;
1414 
1415  if (data[0] == 2) { /* short */
1416  uint16_t pkt_sz = data[1] + (data[2] << 8);
1417  if (pkt_sz != cmsis_dap_handle->packet_size) {
1420  if (retval != ERROR_OK)
1421  goto init_err;
1422 
1423  LOG_DEBUG("CMSIS-DAP: Packet Size = %" PRIu16, pkt_sz);
1424  }
1425  }
1426 
1427  /* Maximal number of transfers which fit to one packet:
1428  * Limited by response size: 3 bytes of response header + 4 per read
1429  * Plus writes to full command size: 3 bytes cmd header + 1 per read + 5 per write */
1432  unsigned int max_reads = tfer_max_response_size / 4;
1433  pending_queue_len = max_reads + (tfer_max_command_size - max_reads) / 5;
1436 
1437  /* INFO_ID_PKT_CNT - byte */
1439  if (retval != ERROR_OK)
1440  goto init_err;
1441 
1442  if (data[0] == 1) { /* byte */
1443  unsigned int pkt_cnt = data[1];
1444  if (pkt_cnt > 1)
1446 
1447  LOG_DEBUG("CMSIS-DAP: Packet Count = %u", pkt_cnt);
1448  }
1449 
1450  LOG_DEBUG("Allocating FIFO for %u pending packets", cmsis_dap_handle->packet_count);
1451  for (unsigned int i = 0; i < cmsis_dap_handle->packet_count; i++) {
1453  * sizeof(struct pending_transfer_result));
1455  LOG_ERROR("Unable to allocate memory for CMSIS-DAP queue");
1456  retval = ERROR_FAIL;
1457  goto init_err;
1458  }
1459  }
1460 
1461  /* Intentionally not checked for error, just logs an info message
1462  * not vital for further debugging */
1463  (void)cmsis_dap_get_status();
1464 
1465  /* Now try to connect to the target
1466  * TODO: This is all SWD only @ present */
1468  if (retval != ERROR_OK)
1469  goto init_err;
1470 
1471  /* Ask CMSIS-DAP to automatically retry on receiving WAIT for
1472  * up to 64 times. This must be changed to 0 if sticky
1473  * overrun detection is enabled. */
1474  retval = cmsis_dap_cmd_dap_tfer_configure(0, 64, 0);
1475  if (retval != ERROR_OK)
1476  goto init_err;
1477 
1478  if (swd_mode) {
1479  /* Data Phase (bit 2) must be set to 1 if sticky overrun
1480  * detection is enabled */
1481  retval = cmsis_dap_cmd_dap_swd_configure(0); /* 1 TRN, no Data Phase */
1482  if (retval != ERROR_OK)
1483  goto init_err;
1484  }
1485  /* Both LEDs on */
1486  /* Intentionally not checked for error, debugging will work
1487  * without LEDs */
1490 
1491  /* support connecting with srst asserted */
1493 
1496  retval = cmsis_dap_cmd_dap_swj_pins(0, SWJ_PIN_SRST, 0, NULL);
1497  if (retval != ERROR_OK)
1498  goto init_err;
1499  LOG_INFO("Connecting under reset");
1500  }
1501  }
1502  LOG_INFO("CMSIS-DAP: Interface ready");
1503  return ERROR_OK;
1504 
1505 init_err:
1506  cmsis_dap_quit();
1507  return retval;
1508 }
1509 
1510 static int cmsis_dap_swd_init(void)
1511 {
1512  swd_mode = true;
1513  return ERROR_OK;
1514 }
1515 
1516 static int cmsis_dap_quit(void)
1517 {
1519 
1520  /* Both LEDs off */
1523 
1525 
1526  return ERROR_OK;
1527 }
1528 
1529 static int cmsis_dap_reset(int trst, int srst)
1530 {
1531  /* Set both TRST and SRST even if they're not enabled as
1532  * there's no way to tristate them */
1533 
1534  output_pins = 0;
1535  if (!srst)
1537  if (!trst)
1539 
1542  if (retval != ERROR_OK)
1543  LOG_ERROR("CMSIS-DAP: Interface reset failed");
1544  return retval;
1545 }
1546 
1548 {
1549 #if 0
1550  int retval = cmsis_dap_cmd_dap_delay(cmd->cmd.sleep->us);
1551  if (retval != ERROR_OK)
1552 #endif
1553  jtag_sleep(cmd->cmd.sleep->us);
1554 }
1555 
1556 /* Set TMS high for five TCK clocks, to move the TAP to the Test-Logic-Reset state */
1558 {
1559  LOG_INFO("cmsis-dap JTAG TLR_RESET");
1560  uint8_t seq = 0xff;
1561 
1562  int retval = cmsis_dap_cmd_dap_swj_sequence(8, &seq);
1563  if (retval == ERROR_OK)
1565  return retval;
1566 }
1567 
1568 /* Set new end state */
1570 {
1573  else {
1574  LOG_ERROR("BUG: %i is not a valid end state", state);
1575  exit(-1);
1576  }
1577 }
1578 
1579 #ifdef SPRINT_BINARY
1580 static void sprint_binary(char *s, const uint8_t *buf, unsigned int offset, unsigned int len)
1581 {
1582  if (!len)
1583  return;
1584 
1585  /*
1586  buf = { 0x18 } len=5 should result in: 11000
1587  buf = { 0xff 0x18 } len=13 should result in: 11111111 11000
1588  buf = { 0xc0 0x18 } offset=3 len=10 should result in: 11000 11000
1589  i=3 there means i/8 = 0 so c = 0xFF, and
1590  */
1591  for (unsigned int i = offset; i < offset + len; ++i) {
1592  uint8_t c = buf[i / 8], mask = 1 << (i % 8);
1593  if ((i != offset) && !(i % 8))
1594  putchar(' ');
1595  *s++ = (c & mask) ? '1' : '0';
1596  }
1597  *s = 0;
1598 }
1599 #endif
1600 
1601 #ifdef CMSIS_DAP_JTAG_DEBUG
1602 static void debug_parse_cmsis_buf(const uint8_t *cmd, int cmdlen)
1603 {
1604  /* cmd is a usb packet to go to the cmsis-dap interface */
1605  printf("cmsis-dap buffer (%d b): ", cmdlen);
1606  for (int i = 0; i < cmdlen; ++i)
1607  printf(" %02x", cmd[i]);
1608  printf("\n");
1609  switch (cmd[0]) {
1610  case CMD_DAP_JTAG_SEQ: {
1611  printf("cmsis-dap jtag sequence command %02x (n=%d)\n", cmd[0], cmd[1]);
1612  /*
1613  * #1 = number of sequences
1614  * #2 = sequence info 1
1615  * #3...4+n_bytes-1 = sequence 1
1616  * #4+n_bytes = sequence info 2
1617  * #5+n_bytes = sequence 2 (single bit)
1618  */
1619  int pos = 2;
1620  for (int seq = 0; seq < cmd[1]; ++seq) {
1621  uint8_t info = cmd[pos++];
1622  int len = info & DAP_JTAG_SEQ_TCK;
1623  if (len == 0)
1624  len = 64;
1625  printf(" sequence %d starting %d: info %02x (len=%d tms=%d read_tdo=%d): ",
1626  seq, pos, info, len, info & DAP_JTAG_SEQ_TMS, info & DAP_JTAG_SEQ_TDO);
1627  for (int i = 0; i < DIV_ROUND_UP(len, 8); ++i)
1628  printf(" %02x", cmd[pos + i]);
1629  pos += DIV_ROUND_UP(len, 8);
1630  printf("\n");
1631  }
1632  if (pos != cmdlen) {
1633  printf("BUFFER LENGTH MISMATCH looks like %d but %d specified", pos, cmdlen);
1634  exit(-1);
1635  }
1636 
1637  break;
1638  }
1639  default:
1640  LOG_DEBUG("unknown cmsis-dap command %02x", cmd[1]);
1641  break;
1642  }
1643 }
1644 #endif
1645 
1646 static void cmsis_dap_flush(void)
1647 {
1648  if (!queued_seq_count)
1649  return;
1650 
1651  LOG_DEBUG_IO("Flushing %d queued sequences (%d bytes) with %d pending scan results to capture",
1653 
1654  /* prepare CMSIS-DAP packet */
1655  uint8_t *command = cmsis_dap_handle->command;
1659 
1660 #ifdef CMSIS_DAP_JTAG_DEBUG
1661  debug_parse_cmsis_buf(command, queued_seq_buf_end + 2);
1662 #endif
1663 
1664  /* send command to USB device */
1665  int retval = cmsis_dap_xfer(cmsis_dap_handle, queued_seq_buf_end + 2, 2);
1666 
1667  uint8_t *resp = cmsis_dap_handle->response;
1668  if (retval != ERROR_OK || resp[1] != DAP_OK) {
1669  LOG_ERROR("CMSIS-DAP command CMD_DAP_JTAG_SEQ failed.");
1670  exit(-1);
1671  }
1672 
1673 #ifdef CMSIS_DAP_JTAG_DEBUG
1674  LOG_DEBUG_IO("USB response buf:");
1675  for (int c = 0; c < queued_seq_buf_end + 3; ++c)
1676  printf("%02X ", resp[c]);
1677  printf("\n");
1678 #endif
1679 
1680  /* copy scan results into client buffers */
1681  for (int i = 0; i < pending_scan_result_count; ++i) {
1683  LOG_DEBUG_IO("Copying pending_scan_result %d/%d: %d bits from byte %d -> buffer + %d bits",
1684  i, pending_scan_result_count, scan->length, scan->first + 2, scan->buffer_offset);
1685 #ifdef CMSIS_DAP_JTAG_DEBUG
1686  for (uint32_t b = 0; b < DIV_ROUND_UP(scan->length, 8); ++b)
1687  printf("%02X ", resp[2+scan->first+b]);
1688  printf("\n");
1689 #endif
1690  bit_copy(scan->buffer, scan->buffer_offset, &resp[2 + scan->first], 0, scan->length);
1691  }
1692 
1693  /* reset */
1694  queued_seq_count = 0;
1695  queued_seq_buf_end = 0;
1696  queued_seq_tdo_ptr = 0;
1698 }
1699 
1700 /* queue a sequence of bits to clock out TDI / in TDO, executing if the buffer is full.
1701  *
1702  * sequence=NULL means clock out zeros on TDI
1703  * tdo_buffer=NULL means don't capture TDO
1704  */
1705 static void cmsis_dap_add_jtag_sequence(unsigned int s_len, const uint8_t *sequence,
1706  unsigned int s_offset, bool tms,
1707  uint8_t *tdo_buffer, unsigned int tdo_buffer_offset)
1708 {
1709  LOG_DEBUG_IO("[at %d] %u bits, tms %s, seq offset %u, tdo buf %p, tdo offset %u",
1711  s_len, tms ? "HIGH" : "LOW", s_offset, tdo_buffer, tdo_buffer_offset);
1712 
1713  if (s_len == 0)
1714  return;
1715 
1716  if (s_len > 64) {
1717  LOG_DEBUG_IO("START JTAG SEQ SPLIT");
1718  for (unsigned int offset = 0; offset < s_len; offset += 64) {
1719  unsigned int len = s_len - offset;
1720  if (len > 64)
1721  len = 64;
1722  LOG_DEBUG_IO("Splitting long jtag sequence: %u-bit chunk starting at offset %u", len, offset);
1724  len,
1725  sequence,
1726  s_offset + offset,
1727  tms,
1728  tdo_buffer,
1729  !tdo_buffer ? 0 : (tdo_buffer_offset + offset)
1730  );
1731  }
1732  LOG_DEBUG_IO("END JTAG SEQ SPLIT");
1733  return;
1734  }
1735 
1736  unsigned int cmd_len = 1 + DIV_ROUND_UP(s_len, 8);
1737  if (queued_seq_count >= 255 || queued_seq_buf_end + cmd_len > QUEUED_SEQ_BUF_LEN)
1738  /* empty out the buffer */
1739  cmsis_dap_flush();
1740 
1741  ++queued_seq_count;
1742 
1743  /* control byte */
1745  (tms ? DAP_JTAG_SEQ_TMS : 0) |
1746  (tdo_buffer ? DAP_JTAG_SEQ_TDO : 0) |
1747  (s_len == 64 ? 0 : s_len);
1748 
1749  if (sequence)
1750  bit_copy(&queued_seq_buf[queued_seq_buf_end + 1], 0, sequence, s_offset, s_len);
1751  else
1752  memset(&queued_seq_buf[queued_seq_buf_end + 1], 0, DIV_ROUND_UP(s_len, 8));
1753 
1754  queued_seq_buf_end += cmd_len;
1755 
1756  if (tdo_buffer) {
1758  scan->first = queued_seq_tdo_ptr;
1759  queued_seq_tdo_ptr += DIV_ROUND_UP(s_len, 8);
1760  scan->length = s_len;
1761  scan->buffer = tdo_buffer;
1762  scan->buffer_offset = tdo_buffer_offset;
1763  }
1764 }
1765 
1766 /* queue a sequence of bits to clock out TMS, executing if the buffer is full */
1767 static void cmsis_dap_add_tms_sequence(const uint8_t *sequence, int s_len)
1768 {
1769  LOG_DEBUG_IO("%d bits: %02X", s_len, *sequence);
1770  /* we use a series of CMD_DAP_JTAG_SEQ commands to toggle TMS,
1771  because even though it seems ridiculously inefficient, it
1772  allows us to combine TMS and scan sequences into the same
1773  USB packet. */
1774  /* TODO: combine runs of the same tms value */
1775  for (int i = 0; i < s_len; ++i) {
1776  bool bit = (sequence[i / 8] & (1 << (i % 8))) != 0;
1778  }
1779 }
1780 
1781 /* Move to the end state by queuing a sequence to clock into TMS */
1782 static void cmsis_dap_state_move(void)
1783 {
1784  uint8_t tms_scan = tap_get_tms_path(tap_get_state(), tap_get_end_state());
1785  uint8_t tms_scan_bits = tap_get_tms_path_len(tap_get_state(), tap_get_end_state());
1786 
1787  LOG_DEBUG_IO("state move from %s to %s: %d clocks, %02X on tms",
1789  tms_scan_bits, tms_scan);
1790  cmsis_dap_add_tms_sequence(&tms_scan, tms_scan_bits);
1791 
1793 }
1794 
1795 
1796 /* Execute a JTAG scan operation by queueing TMS and TDI/TDO sequences */
1798 {
1799  LOG_DEBUG_IO("%s type:%d", cmd->cmd.scan->ir_scan ? "IRSCAN" : "DRSCAN",
1800  jtag_scan_type(cmd->cmd.scan));
1801 
1802  /* Make sure there are no trailing fields with num_bits == 0, or the logic below will fail. */
1803  while (cmd->cmd.scan->num_fields > 0
1804  && cmd->cmd.scan->fields[cmd->cmd.scan->num_fields - 1].num_bits == 0) {
1805  cmd->cmd.scan->num_fields--;
1806  LOG_DEBUG("discarding trailing empty field");
1807  }
1808 
1809  if (!cmd->cmd.scan->num_fields) {
1810  LOG_DEBUG("empty scan, doing nothing");
1811  return;
1812  }
1813 
1814  if (cmd->cmd.scan->ir_scan) {
1815  if (tap_get_state() != TAP_IRSHIFT) {
1818  }
1819  } else {
1820  if (tap_get_state() != TAP_DRSHIFT) {
1823  }
1824  }
1825 
1826  cmsis_dap_end_state(cmd->cmd.scan->end_state);
1827 
1828  struct scan_field *field = cmd->cmd.scan->fields;
1829  unsigned int scan_size = 0;
1830 
1831  for (unsigned int i = 0; i < cmd->cmd.scan->num_fields; i++, field++) {
1832  scan_size += field->num_bits;
1833  LOG_DEBUG_IO("%s%s field %u/%u %u bits",
1834  field->in_value ? "in" : "",
1835  field->out_value ? "out" : "",
1836  i,
1837  cmd->cmd.scan->num_fields,
1838  field->num_bits);
1839 
1840  if (i == cmd->cmd.scan->num_fields - 1 && tap_get_state() != tap_get_end_state()) {
1841  LOG_DEBUG_IO("Last field and have to move out of SHIFT state");
1842  /* Last field, and we're leaving IRSHIFT/DRSHIFT. Clock last bit during tap
1843  * movement. This last field can't have length zero, it was checked above. */
1845  field->num_bits - 1, /* number of bits to clock */
1846  field->out_value, /* output sequence */
1847  0, /* output offset */
1848  false, /* TMS low */
1849  field->in_value,
1850  0);
1851 
1852  /* Clock the last bit out, with TMS high */
1853  uint8_t last_bit = 0;
1854  if (field->out_value)
1855  bit_copy(&last_bit, 0, field->out_value, field->num_bits - 1, 1);
1857  1,
1858  &last_bit,
1859  0,
1860  true,
1861  field->in_value,
1862  field->num_bits - 1);
1864 
1865  /* Now clock one more cycle, with TMS low, to get us into a PAUSE state */
1867  1,
1868  &last_bit,
1869  0,
1870  false,
1871  NULL,
1872  0);
1874  } else {
1875  LOG_DEBUG_IO("Internal field, staying in SHIFT state afterwards");
1876  /* Clocking part of a sequence into DR or IR with TMS=0,
1877  leaving TMS=0 at the end so we can continue later */
1879  field->num_bits,
1880  field->out_value,
1881  0,
1882  false,
1883  field->in_value,
1884  0);
1885  }
1886  }
1887 
1888  if (tap_get_state() != tap_get_end_state()) {
1891  }
1892 
1893  LOG_DEBUG_IO("%s scan, %i bits, end in %s",
1894  (cmd->cmd.scan->ir_scan) ? "IR" : "DR", scan_size,
1896 }
1897 
1898 static void cmsis_dap_pathmove(int num_states, enum tap_state *path)
1899 {
1900  uint8_t tms0 = 0x00;
1901  uint8_t tms1 = 0xff;
1902 
1903  for (int i = 0; i < num_states; i++) {
1904  if (path[i] == tap_state_transition(tap_get_state(), false))
1905  cmsis_dap_add_tms_sequence(&tms0, 1);
1906  else if (path[i] == tap_state_transition(tap_get_state(), true))
1907  cmsis_dap_add_tms_sequence(&tms1, 1);
1908  else {
1909  LOG_ERROR("BUG: %s -> %s isn't a valid TAP transition.",
1911  exit(-1);
1912  }
1913 
1914  tap_set_state(path[i]);
1915  }
1916 
1918 }
1919 
1921 {
1922  LOG_DEBUG_IO("pathmove: %i states, end in %i",
1923  cmd->cmd.pathmove->num_states,
1924  cmd->cmd.pathmove->path[cmd->cmd.pathmove->num_states - 1]);
1925 
1926  cmsis_dap_pathmove(cmd->cmd.pathmove->num_states, cmd->cmd.pathmove->path);
1927 }
1928 
1929 static void cmsis_dap_stableclocks(unsigned int num_cycles)
1930 {
1931  uint8_t tms = tap_get_state() == TAP_RESET;
1932  /* TODO: Perform optimizations? */
1933  /* Execute num_cycles. */
1934  for (unsigned int i = 0; i < num_cycles; i++)
1935  cmsis_dap_add_tms_sequence(&tms, 1);
1936 }
1937 
1938 static void cmsis_dap_runtest(unsigned int num_cycles)
1939 {
1940  enum tap_state saved_end_state = tap_get_end_state();
1941 
1942  /* Only do a state_move when we're not already in IDLE. */
1943  if (tap_get_state() != TAP_IDLE) {
1946  }
1947  cmsis_dap_stableclocks(num_cycles);
1948 
1949  /* Finish in end_state. */
1950  cmsis_dap_end_state(saved_end_state);
1951 
1952  if (tap_get_state() != tap_get_end_state())
1954 }
1955 
1957 {
1958  LOG_DEBUG_IO("runtest %u cycles, end in %i", cmd->cmd.runtest->num_cycles,
1959  cmd->cmd.runtest->end_state);
1960 
1961  cmsis_dap_end_state(cmd->cmd.runtest->end_state);
1962  cmsis_dap_runtest(cmd->cmd.runtest->num_cycles);
1963 }
1964 
1966 {
1967  LOG_DEBUG_IO("stableclocks %u cycles", cmd->cmd.runtest->num_cycles);
1968  cmsis_dap_stableclocks(cmd->cmd.runtest->num_cycles);
1969 }
1970 
1972 {
1973  LOG_DEBUG_IO("TMS: %u bits", cmd->cmd.tms->num_bits);
1974  cmsis_dap_cmd_dap_swj_sequence(cmd->cmd.tms->num_bits, cmd->cmd.tms->bits);
1975 }
1976 
1977 /* TODO: Is there need to call cmsis_dap_flush() for the JTAG_PATHMOVE,
1978  * JTAG_RUNTEST, JTAG_STABLECLOCKS? */
1980 {
1981  switch (cmd->type) {
1982  case JTAG_SLEEP:
1983  cmsis_dap_flush();
1985  break;
1986  case JTAG_TLR_RESET:
1987  cmsis_dap_flush();
1989  break;
1990  case JTAG_SCAN:
1992  break;
1993  case JTAG_PATHMOVE:
1995  break;
1996  case JTAG_RUNTEST:
1998  break;
1999  case JTAG_STABLECLOCKS:
2001  break;
2002  case JTAG_TMS:
2004  break;
2005  default:
2006  LOG_ERROR("BUG: unknown JTAG command type 0x%X encountered", cmd->type);
2007  exit(-1);
2008  }
2009 }
2010 
2011 static int cmsis_dap_execute_queue(struct jtag_command *cmd_queue)
2012 {
2013  struct jtag_command *cmd = cmd_queue;
2014 
2015  while (cmd) {
2017  cmd = cmd->next;
2018  }
2019 
2020  cmsis_dap_flush();
2021 
2022  return ERROR_OK;
2023 }
2024 
2025 static int cmsis_dap_speed(int speed)
2026 {
2027  if (speed == 0) {
2028  LOG_ERROR("RTCK not supported. Set nonzero \"adapter speed\".");
2030  }
2031 
2032  return cmsis_dap_cmd_dap_swj_clock(speed);
2033 }
2034 
2035 static int cmsis_dap_speed_div(int speed, int *khz)
2036 {
2037  *khz = speed;
2038  return ERROR_OK;
2039 }
2040 
2041 static int cmsis_dap_khz(int khz, int *jtag_speed)
2042 {
2043  *jtag_speed = khz;
2044  return ERROR_OK;
2045 }
2046 
2047 static bool calculate_swo_prescaler(unsigned int traceclkin_freq,
2048  uint32_t trace_freq, uint16_t *prescaler)
2049 {
2050  unsigned int presc = (traceclkin_freq + trace_freq / 2) / trace_freq;
2051  if (presc == 0 || presc > TPIU_ACPR_MAX_SWOSCALER + 1)
2052  return false;
2053 
2054  /* Probe's UART speed must be within 3% of the TPIU's SWO baud rate. */
2055  unsigned int max_deviation = (traceclkin_freq * 3) / 100;
2056  if (presc * trace_freq < traceclkin_freq - max_deviation ||
2057  presc * trace_freq > traceclkin_freq + max_deviation)
2058  return false;
2059 
2060  *prescaler = presc;
2061 
2062  return true;
2063 }
2064 
2069  bool trace_enabled,
2070  enum tpiu_pin_protocol pin_protocol,
2071  uint32_t port_size,
2072  unsigned int *swo_freq,
2073  unsigned int traceclkin_hz,
2074  uint16_t *swo_prescaler)
2075 {
2076  int retval;
2077 
2078  if (!trace_enabled) {
2081  if (retval != ERROR_OK) {
2082  LOG_ERROR("Failed to disable the SWO-trace.");
2083  return retval;
2084  }
2085  }
2087  LOG_INFO("SWO-trace disabled.");
2088  return ERROR_OK;
2089  }
2090 
2093  LOG_ERROR("SWO-trace is not supported by the device.");
2094  return ERROR_FAIL;
2095  }
2096 
2097  uint8_t swo_mode;
2098  if (pin_protocol == TPIU_PIN_PROTOCOL_ASYNC_UART &&
2100  swo_mode = DAP_SWO_MODE_UART;
2101  } else if (pin_protocol == TPIU_PIN_PROTOCOL_ASYNC_MANCHESTER &&
2103  swo_mode = DAP_SWO_MODE_MANCHESTER;
2104  } else {
2105  LOG_ERROR("Selected pin protocol is not supported.");
2106  return ERROR_FAIL;
2107  }
2108 
2109  if (*swo_freq == 0) {
2110  LOG_INFO("SWO-trace frequency autodetection not implemented.");
2111  return ERROR_FAIL;
2112  }
2113 
2115  if (retval != ERROR_OK)
2116  return retval;
2117 
2119 
2121  if (retval != ERROR_OK)
2122  return retval;
2123 
2125  if (retval != ERROR_OK)
2126  return retval;
2127 
2128  retval = cmsis_dap_cmd_dap_swo_mode(swo_mode);
2129  if (retval != ERROR_OK)
2130  return retval;
2131 
2132  retval = cmsis_dap_cmd_dap_swo_baudrate(*swo_freq, swo_freq);
2133  if (retval != ERROR_OK)
2134  return retval;
2135 
2136  if (!calculate_swo_prescaler(traceclkin_hz, *swo_freq,
2137  swo_prescaler)) {
2138  LOG_ERROR("SWO frequency is not suitable. Please choose a "
2139  "different frequency or use auto-detection.");
2140  return ERROR_FAIL;
2141  }
2142 
2143  LOG_INFO("SWO frequency: %u Hz.", *swo_freq);
2144  LOG_INFO("SWO prescaler: %u.", *swo_prescaler);
2145 
2147  if (retval != ERROR_OK)
2148  return retval;
2149 
2151 
2152  return ERROR_OK;
2153 }
2154 
2158 static int cmsis_dap_poll_trace(uint8_t *buf, size_t *size)
2159 {
2160  uint8_t trace_status;
2161  size_t trace_count;
2162 
2164  *size = 0;
2165  return ERROR_OK;
2166  }
2167 
2168  int retval = cmsis_dap_cmd_dap_swo_status(&trace_status, &trace_count);
2169  if (retval != ERROR_OK)
2170  return retval;
2172  return ERROR_FAIL;
2173 
2174  *size = trace_count < *size ? trace_count : *size;
2175  size_t read_so_far = 0;
2176  do {
2177  size_t rb = 0;
2178  uint32_t packet_size = cmsis_dap_handle->packet_size - 4 /*data-reply*/;
2179  uint32_t remaining = *size - read_so_far;
2180  if (remaining < packet_size)
2181  packet_size = remaining;
2182  retval = cmsis_dap_cmd_dap_swo_data(
2183  packet_size,
2184  &trace_status,
2185  &rb,
2186  &buf[read_so_far]);
2187  if (retval != ERROR_OK)
2188  return retval;
2190  return ERROR_FAIL;
2191 
2192  read_so_far += rb;
2193  } while (read_so_far < *size);
2194 
2195  return ERROR_OK;
2196 }
2197 
2198 COMMAND_HANDLER(cmsis_dap_handle_info_command)
2199 {
2202 
2203  return ERROR_OK;
2204 }
2205 
2206 COMMAND_HANDLER(cmsis_dap_handle_cmd_command)
2207 {
2208  uint8_t *command = cmsis_dap_handle->command;
2209 
2210  for (unsigned int i = 0; i < CMD_ARGC; i++)
2212 
2213  int retval = cmsis_dap_xfer(cmsis_dap_handle, CMD_ARGC, 1);
2214 
2215  if (retval != ERROR_OK) {
2216  LOG_ERROR("CMSIS-DAP command failed.");
2217  return ERROR_JTAG_DEVICE_ERROR;
2218  }
2219 
2220  uint8_t *resp = cmsis_dap_handle->response;
2221  LOG_INFO("Returned data %02" PRIx8 " %02" PRIx8 " %02" PRIx8 " %02" PRIx8,
2222  resp[1], resp[2], resp[3], resp[4]);
2223 
2224  return ERROR_OK;
2225 }
2226 
2227 COMMAND_HANDLER(cmsis_dap_handle_backend_command)
2228 {
2229  if (CMD_ARGC != 1)
2231 
2232  if (strcmp(CMD_ARGV[0], "auto") == 0) {
2233  cmsis_dap_backend = -1; /* autoselect */
2234  } else {
2235  for (unsigned int i = 0; i < ARRAY_SIZE(cmsis_dap_backends); i++) {
2236  if (strcasecmp(cmsis_dap_backends[i]->name, CMD_ARGV[0]) == 0) {
2237  if (cmsis_dap_backends[i]->open) {
2238  cmsis_dap_backend = i;
2239  return ERROR_OK;
2240  }
2241 
2242  command_print(CMD, "Requested cmsis-dap backend %s is disabled by configure",
2243  cmsis_dap_backends[i]->name);
2244  return ERROR_NOT_IMPLEMENTED;
2245  }
2246  }
2247 
2248  command_print(CMD, "invalid argument %s to cmsis-dap backend", CMD_ARGV[0]);
2250  }
2251 
2252  return ERROR_OK;
2253 }
2254 
2255 COMMAND_HANDLER(cmsis_dap_handle_quirk_command)
2256 {
2257  if (CMD_ARGC > 1)
2259 
2260  if (CMD_ARGC == 1) {
2262  return ERROR_OK;
2263  }
2264 
2265  command_print(CMD, "%s", cmsis_dap_quirk_mode ? "enabled" : "disabled");
2266 
2267  return ERROR_OK;
2268 }
2269 
2270 static const struct command_registration cmsis_dap_subcommand_handlers[] = {
2271  {
2272  .name = "info",
2273  .handler = &cmsis_dap_handle_info_command,
2274  .mode = COMMAND_EXEC,
2275  .usage = "",
2276  .help = "show cmsis-dap info",
2277  },
2278  {
2279  .name = "cmd",
2280  .handler = &cmsis_dap_handle_cmd_command,
2281  .mode = COMMAND_EXEC,
2282  .usage = "",
2283  .help = "issue cmsis-dap command",
2284  },
2285  {
2286  .name = "backend",
2287  .handler = &cmsis_dap_handle_backend_command,
2288  .mode = COMMAND_CONFIG,
2289  .help = "set the communication backend to use (USB bulk or HID, or TCP).",
2290  .usage = "(auto | usb_bulk | hid | tcp)",
2291  },
2292  {
2293  .name = "quirk",
2294  .handler = &cmsis_dap_handle_quirk_command,
2295  .mode = COMMAND_ANY,
2296  .help = "allow expensive workarounds of known adapter quirks.",
2297  .usage = "[enable | disable]",
2298  },
2299 #if BUILD_CMSIS_DAP_USB
2300  {
2301  .name = "usb",
2303  .mode = COMMAND_ANY,
2304  .help = "USB bulk backend-specific commands",
2305  .usage = "<cmd>",
2306  },
2307 #endif
2308 #if BUILD_CMSIS_DAP_TCP
2309  {
2310  .name = "tcp",
2312  .mode = COMMAND_ANY,
2313  .help = "TCP backend-specific commands",
2314  .usage = "<cmd>",
2315  },
2316 #endif
2318 };
2319 
2320 
2321 static const struct command_registration cmsis_dap_command_handlers[] = {
2322  {
2323  .name = "cmsis-dap",
2324  .mode = COMMAND_ANY,
2325  .help = "perform CMSIS-DAP management",
2326  .usage = "<cmd>",
2328  },
2330 };
2331 
2332 static const struct swd_driver cmsis_dap_swd_driver = {
2334  .switch_seq = cmsis_dap_swd_switch_seq,
2335  .read_reg = cmsis_dap_swd_read_reg,
2336  .write_reg = cmsis_dap_swd_write_reg,
2337  .run = cmsis_dap_swd_run_queue,
2338 };
2339 
2340 static struct jtag_interface cmsis_dap_interface = {
2342  .execute_queue = cmsis_dap_execute_queue,
2343 };
2344 
2346  .name = "cmsis-dap",
2347  .transport_ids = TRANSPORT_SWD | TRANSPORT_JTAG,
2348  .transport_preferred_id = TRANSPORT_SWD,
2349  .commands = cmsis_dap_command_handlers,
2350 
2351  .init = cmsis_dap_init,
2352  .quit = cmsis_dap_quit,
2353  .reset = cmsis_dap_reset,
2354  .speed = cmsis_dap_speed,
2355  .khz = cmsis_dap_khz,
2356  .speed_div = cmsis_dap_speed_div,
2357  .config_trace = cmsis_dap_config_trace,
2358  .poll_trace = cmsis_dap_poll_trace,
2359 
2360  .jtag_ops = &cmsis_dap_interface,
2361  .swd_ops = &cmsis_dap_swd_driver,
2362 };
const char * adapter_get_required_serial(void)
Retrieves the serial number set with command 'adapter serial'.
Definition: adapter.c:309
const uint16_t * adapter_usb_get_pids(void)
Definition: adapter.c:340
unsigned int adapter_get_speed_khz(void)
Retrieves the clock speed of the adapter in kHz.
Definition: adapter.c:217
const uint16_t * adapter_usb_get_vids(void)
Definition: adapter.c:335
const char * name
Definition: am13e230x.c:167
unsigned char bit
Definition: am13e230x.c:166
static uint8_t tdo_buffer[ARMJTAGEW_TAP_BUFFER_SIZE]
Definition: arm-jtag-ew.c:508
#define SWD_ACK_FAULT
Definition: arm_adi_v5.h:33
#define DP_CTRL_STAT
Definition: arm_adi_v5.h:50
#define CORUNDETECT
Definition: arm_adi_v5.h:82
#define DP_RDBUFF
Definition: arm_adi_v5.h:58
swd_special_seq
Definition: arm_adi_v5.h:236
@ DORMANT_TO_JTAG
Definition: arm_adi_v5.h:243
@ JTAG_TO_SWD
Definition: arm_adi_v5.h:238
@ DORMANT_TO_SWD
Definition: arm_adi_v5.h:242
@ LINE_RESET
Definition: arm_adi_v5.h:237
@ JTAG_TO_DORMANT
Definition: arm_adi_v5.h:239
@ SWD_TO_DORMANT
Definition: arm_adi_v5.h:241
@ SWD_TO_JTAG
Definition: arm_adi_v5.h:240
#define DP_TARGETSEL
Definition: arm_adi_v5.h:59
#define SWD_ACK_WAIT
Definition: arm_adi_v5.h:32
#define SWD_ACK_OK
Definition: arm_adi_v5.h:31
tpiu_pin_protocol
Definition: arm_tpiu_swo.h:7
@ TPIU_PIN_PROTOCOL_ASYNC_MANCHESTER
asynchronous output with Manchester coding
Definition: arm_tpiu_swo.h:9
@ TPIU_PIN_PROTOCOL_ASYNC_UART
asynchronous output with NRZ coding
Definition: arm_tpiu_swo.h:10
enum arm_mode mode
Definition: armv4_5.c:280
static void bit_copy(uint8_t *dst, unsigned int dst_offset, const uint8_t *src, unsigned int src_offset, unsigned int bit_count)
Definition: binarybuffer.h:218
static int cmsis_dap_init(void)
Definition: cmsis_dap.c:1366
static int cmsis_dap_cmd_dap_swo_status(uint8_t *trace_status, size_t *trace_count)
Reads the SWO trace status.
Definition: cmsis_dap.c:742
static void cmsis_dap_swd_read_process(struct cmsis_dap *dap, enum cmsis_dap_blocking blocking)
Definition: cmsis_dap.c:939
static void cmsis_dap_swd_write_from_queue(struct cmsis_dap *dap)
Definition: cmsis_dap.c:814
static int cmsis_dap_cmd_dap_swo_data(size_t max_trace_count, uint8_t *trace_status, size_t *trace_count, uint8_t *data)
Reads the captured SWO trace data from Trace Buffer.
Definition: cmsis_dap.c:771
#define DAP_SWO_MODE_MANCHESTER
Definition: cmsis_dap.c:202
#define MAX_PENDING_SCAN_RESULTS
Definition: cmsis_dap.c:247
static int cmsis_dap_get_status(void)
Definition: cmsis_dap.c:1254
static int cmsis_dap_reset(int trst, int srst)
Definition: cmsis_dap.c:1529
static int cmsis_dap_get_caps_info(void)
Definition: cmsis_dap.c:1210
static void cmsis_dap_stableclocks(unsigned int num_cycles)
Definition: cmsis_dap.c:1929
#define INFO_CAPS__NUM_CAPS
Definition: cmsis_dap.c:115
#define CMD_DAP_INFO
Definition: cmsis_dap.c:86
static int queued_retval
Definition: cmsis_dap.c:258
#define INFO_ID_PKT_SZ
Definition: cmsis_dap.c:103
static int cmsis_dap_swd_switch_seq(enum swd_special_seq seq)
Definition: cmsis_dap.c:1273
#define INFO_ID_CAPS
Definition: cmsis_dap.c:101
static void cmsis_dap_execute_runtest(struct jtag_command *cmd)
Definition: cmsis_dap.c:1956
static struct jtag_interface cmsis_dap_interface
Definition: cmsis_dap.c:2340
static int cmsis_dap_swd_open(void)
Definition: cmsis_dap.c:1349
#define DAP_SWO_STATUS_CAPTURE_MASK
Definition: cmsis_dap.c:211
#define DAP_JTAG_SEQ_TDO
Definition: cmsis_dap.c:167
static int cmsis_dap_cmd_dap_swo_control(uint8_t control)
Controls the SWO trace data capture.
Definition: cmsis_dap.c:718
static struct cmsis_dap * cmsis_dap_handle
Definition: cmsis_dap.c:262
static int cmsis_dap_cmd_dap_info(uint8_t info, uint8_t **data)
Definition: cmsis_dap.c:469
static struct pending_scan_result pending_scan_results[MAX_PENDING_SCAN_RESULTS]
Definition: cmsis_dap.c:249
static int cmsis_dap_cmd_dap_swj_pins(uint8_t pins, uint8_t mask, uint32_t delay, uint8_t *input)
Definition: cmsis_dap.c:405
static unsigned int cmsis_dap_tfer_cmd_size(unsigned int write_count, unsigned int read_count, bool block_tfer)
Definition: cmsis_dap.c:911
static int cmsis_dap_cmd_dap_swo_baudrate(uint32_t in_baudrate, uint32_t *dev_baudrate)
Sets the baudrate for capturing SWO trace data.
Definition: cmsis_dap.c:688
const struct cmsis_dap_backend cmsis_dap_usb_backend
Definition: cmsis_dap.c:45
#define CMD_DAP_LED
Definition: cmsis_dap.c:87
static unsigned int tfer_max_response_size
Definition: cmsis_dap.c:244
static int cmsis_dap_swd_read_reg(uint8_t cmd, uint32_t *value, uint32_t ap_delay_clk)
Definition: cmsis_dap.c:1173
static void cmsis_dap_end_state(enum tap_state state)
Definition: cmsis_dap.c:1569
static int cmsis_dap_speed_div(int speed, int *khz)
Definition: cmsis_dap.c:2035
#define CMD_DAP_SWJ_CLOCK
Definition: cmsis_dap.c:132
static int cmsis_dap_cmd_dap_swd_configure(uint8_t cfg)
Definition: cmsis_dap.c:564
static bool calculate_swo_prescaler(unsigned int traceclkin_freq, uint32_t trace_freq, uint16_t *prescaler)
Definition: cmsis_dap.c:2047
#define SWJ_PIN_TMS
Definition: cmsis_dap.c:146
#define INFO_CAPS_JTAG
Definition: cmsis_dap.c:107
#define SWJ_PIN_TCK
Definition: cmsis_dap.c:145
#define INFO_ID_SWO_BUF_SZ
Definition: cmsis_dap.c:104
static int queued_seq_buf_end
Definition: cmsis_dap.c:254
#define DAP_OK
Definition: cmsis_dap.c:182
#define DAP_SWO_STATUS_CAPTURE_ACTIVE
Definition: cmsis_dap.c:210
static int queued_seq_count
Definition: cmsis_dap.c:253
struct adapter_driver cmsis_dap_adapter_driver
Definition: cmsis_dap.c:2345
static int cmsis_dap_cmd_dap_swj_clock(uint32_t swj_clock)
Definition: cmsis_dap.c:426
static void cmsis_dap_swd_discard_all_pending(struct cmsis_dap *dap)
Definition: cmsis_dap.c:797
static void cmsis_dap_flush(void)
Definition: cmsis_dap.c:1646
static int cmsis_dap_execute_queue(struct jtag_command *cmd_queue)
Definition: cmsis_dap.c:2011
#define CMD_DAP_JTAG_SEQ
Definition: cmsis_dap.c:157
#define CMD_DAP_TFER_CONFIGURE
Definition: cmsis_dap.c:171
static int cmsis_dap_xfer(struct cmsis_dap *dap, int txlen, unsigned int min_resp_size)
Definition: cmsis_dap.c:349
#define INFO_CAPS_SWO_UART
Definition: cmsis_dap.c:108
#define TIMEOUT_MS
Definition: cmsis_dap.c:41
#define CMD_DAP_SWO_STATUS
Definition: cmsis_dap.c:190
static bool cmsis_dap_quirk_mode
Definition: cmsis_dap.c:83
#define CMD_DAP_SWD_CONFIGURE
Definition: cmsis_dap.c:153
static int cmsis_dap_quit(void)
Definition: cmsis_dap.c:1516
static bool swd_mode
Definition: cmsis_dap.c:82
static const struct swd_driver cmsis_dap_swd_driver
Definition: cmsis_dap.c:2332
#define DAP_SWO_TRANSPORT_DATA
Definition: cmsis_dap.c:196
#define CMD_DAP_DELAY
Definition: cmsis_dap.c:130
#define CMD_DAP_DISCONNECT
Definition: cmsis_dap.c:89
#define CMD_DAP_SWJ_SEQ
Definition: cmsis_dap.c:133
#define INFO_ID_FW_VER
Definition: cmsis_dap.c:98
static void cmsis_dap_swd_cancel_transfers(struct cmsis_dap *dap)
Definition: cmsis_dap.c:807
static int cmsis_dap_cmd_dap_disconnect(void)
Definition: cmsis_dap.c:531
#define CONNECT_SWD
Definition: cmsis_dap.c:126
#define CONNECT_JTAG
Definition: cmsis_dap.c:127
static int cmsis_dap_cmd_dap_tfer_configure(uint8_t idle, uint16_t retry_count, uint16_t match_retry)
Definition: cmsis_dap.c:546
static void cmsis_dap_execute_stableclocks(struct jtag_command *cmd)
Definition: cmsis_dap.c:1965
static uint8_t queued_seq_buf[1024]
Definition: cmsis_dap.c:256
#define DAP_JTAG_SEQ_TMS
Definition: cmsis_dap.c:165
#define CMD_DAP_SWO_MODE
Definition: cmsis_dap.c:187
#define LED_OFF
Definition: cmsis_dap.c:121
#define INFO_CAPS_SWD
Definition: cmsis_dap.c:106
static int cmsis_dap_get_serial_info(void)
Definition: cmsis_dap.c:1181
static void cmsis_dap_flush_read(struct cmsis_dap *dap)
Definition: cmsis_dap.c:332
static int pending_scan_result_count
Definition: cmsis_dap.c:248
#define INFO_ID_PKT_CNT
Definition: cmsis_dap.c:102
#define LED_ID_RUN
Definition: cmsis_dap.c:119
#define CMD_DAP_CONNECT
Definition: cmsis_dap.c:88
#define CMD_DAP_TFER_BLOCK
Definition: cmsis_dap.c:173
static void cmsis_dap_execute_scan(struct jtag_command *cmd)
Definition: cmsis_dap.c:1797
static void cmsis_dap_execute_command(struct jtag_command *cmd)
Definition: cmsis_dap.c:1979
#define CMD_DAP_SWO_CONTROL
Definition: cmsis_dap.c:189
static int cmsis_dap_swd_run_queue(void)
Definition: cmsis_dap.c:1071
#define INFO_ID_SERNUM
Definition: cmsis_dap.c:97
static int cmsis_dap_cmd_dap_connect(uint8_t mode)
Definition: cmsis_dap.c:510
#define CMD_DAP_TFER
Definition: cmsis_dap.c:172
static unsigned int tfer_max_command_size
Definition: cmsis_dap.c:243
#define CMD_DAP_SWO_TRANSPORT
Definition: cmsis_dap.c:186
static void cmsis_dap_runtest(unsigned int num_cycles)
Definition: cmsis_dap.c:1938
#define CMD_DAP_TFER_BLOCK_MIN_OPS
Definition: cmsis_dap.c:179
static void cmsis_dap_execute_tms(struct jtag_command *cmd)
Definition: cmsis_dap.c:1971
static unsigned int pending_queue_len
Definition: cmsis_dap.c:242
static const struct cmsis_dap_backend *const cmsis_dap_backends[]
Definition: cmsis_dap.c:62
#define INFO_CAPS_SWO_MANCHESTER
Definition: cmsis_dap.c:109
static int queued_seq_tdo_ptr
Definition: cmsis_dap.c:255
static const char *const info_caps_str[INFO_CAPS__NUM_CAPS]
Definition: cmsis_dap.c:218
static const struct command_registration cmsis_dap_subcommand_handlers[]
Definition: cmsis_dap.c:2270
static int cmsis_dap_swd_write_reg(uint8_t cmd, uint32_t value, uint32_t ap_delay_clk)
Definition: cmsis_dap.c:1165
static void cmsis_dap_state_move(void)
Definition: cmsis_dap.c:1782
static int cmsis_dap_cmd_dap_swo_mode(uint8_t mode)
Sets the SWO trace capture mode.
Definition: cmsis_dap.c:663
static void cmsis_dap_swd_queue_cmd(uint8_t cmd, uint32_t *dst, uint32_t data)
Definition: cmsis_dap.c:1092
static uint8_t output_pins
Definition: cmsis_dap.c:260
#define SWJ_PIN_SRST
Definition: cmsis_dap.c:150
#define CMD_DAP_SWD_SEQUENCE
Definition: cmsis_dap.c:154
static int cmsis_dap_cmd_dap_swj_sequence(uint8_t s_len, const uint8_t *sequence)
Definition: cmsis_dap.c:446
static int cmsis_dap_khz(int khz, int *jtag_speed)
Definition: cmsis_dap.c:2041
static int cmsis_dap_metacmd_targetsel(uint32_t instance_id)
Definition: cmsis_dap.c:598
const struct cmsis_dap_backend cmsis_dap_hid_backend
Definition: cmsis_dap.c:51
static int cmsis_dap_backend
Definition: cmsis_dap.c:81
static void cmsis_dap_close(struct cmsis_dap *dap)
Definition: cmsis_dap.c:313
static int cmsis_dap_poll_trace(uint8_t *buf, size_t *size)
Definition: cmsis_dap.c:2158
const struct cmsis_dap_backend cmsis_dap_tcp_backend
Definition: cmsis_dap.c:57
#define CMD_DAP_SWO_BAUDRATE
Definition: cmsis_dap.c:188
static int cmsis_dap_swd_init(void)
Definition: cmsis_dap.c:1510
static void cmsis_dap_execute_sleep(struct jtag_command *cmd)
Definition: cmsis_dap.c:1547
#define LED_ID_CONNECT
Definition: cmsis_dap.c:118
static int cmsis_dap_open(void)
Definition: cmsis_dap.c:267
#define DAP_ERROR
Definition: cmsis_dap.c:183
COMMAND_HANDLER(cmsis_dap_handle_info_command)
Definition: cmsis_dap.c:2198
static int cmsis_dap_speed(int speed)
Definition: cmsis_dap.c:2025
#define QUEUED_SEQ_BUF_LEN
Definition: cmsis_dap.c:252
static int cmsis_dap_cmd_dap_led(uint8_t led, uint8_t state)
Definition: cmsis_dap.c:493
static void cmsis_dap_pathmove(int num_states, enum tap_state *path)
Definition: cmsis_dap.c:1898
static unsigned int cmsis_dap_tfer_resp_size(unsigned int write_count, unsigned int read_count, bool block_tfer)
Definition: cmsis_dap.c:926
static int cmsis_dap_cmd_dap_swo_transport(uint8_t transport)
Sets the SWO transport mode.
Definition: cmsis_dap.c:643
#define DAP_SWO_CONTROL_STOP
Definition: cmsis_dap.c:205
#define SWJ_PIN_TRST
Definition: cmsis_dap.c:149
#define SWJ_PIN_TDI
Definition: cmsis_dap.c:147
static void cmsis_dap_execute_pathmove(struct jtag_command *cmd)
Definition: cmsis_dap.c:1920
static const struct command_registration cmsis_dap_command_handlers[]
Definition: cmsis_dap.c:2321
#define CMD_DAP_SWO_DATA
Definition: cmsis_dap.c:191
#define DAP_SWO_CONTROL_START
Definition: cmsis_dap.c:206
static int cmsis_dap_execute_tlr_reset(struct jtag_command *cmd)
Definition: cmsis_dap.c:1557
static int cmsis_dap_get_swo_buf_sz(uint32_t *swo_buf_sz)
Definition: cmsis_dap.c:1235
#define LED_ON
Definition: cmsis_dap.c:122
static int cmsis_dap_config_trace(bool trace_enabled, enum tpiu_pin_protocol pin_protocol, uint32_t port_size, unsigned int *swo_freq, unsigned int traceclkin_hz, uint16_t *swo_prescaler)
Definition: cmsis_dap.c:2068
#define DAP_SWO_MODE_UART
Definition: cmsis_dap.c:201
static void cmsis_dap_add_jtag_sequence(unsigned int s_len, const uint8_t *sequence, unsigned int s_offset, bool tms, uint8_t *tdo_buffer, unsigned int tdo_buffer_offset)
Definition: cmsis_dap.c:1705
static void cmsis_dap_add_tms_sequence(const uint8_t *sequence, int s_len)
Definition: cmsis_dap.c:1767
#define SWJ_PIN_TDO
Definition: cmsis_dap.c:148
static int cmsis_dap_get_version_info(void)
Definition: cmsis_dap.c:1195
#define CMD_DAP_SWJ_PINS
Definition: cmsis_dap.c:131
#define DAP_JTAG_SEQ_TCK
Definition: cmsis_dap.c:163
#define MAX_PENDING_REQUESTS
Definition: cmsis_dap.h:25
const struct command_registration cmsis_dap_usb_subcommand_handlers[]
const struct command_registration cmsis_dap_tcp_subcommand_handlers[]
cmsis_dap_blocking
Definition: cmsis_dap.h:68
@ CMSIS_DAP_NON_BLOCKING
Definition: cmsis_dap.h:69
@ CMSIS_DAP_BLOCKING
Definition: cmsis_dap.h:70
#define CMSIS_DAP_TIMEOUT_SHORT_MS
Definition: cmsis_dap.h:12
void command_print(struct command_invocation *cmd, const char *format,...)
Definition: command.c:389
#define CMD
Use this macro to access the command being handled, rather than accessing the variable directly.
Definition: command.h:146
#define CMD_ARGV
Use this macro to access the arguments for the command being handled, rather than accessing the varia...
Definition: command.h:161
#define ERROR_COMMAND_SYNTAX_ERROR
Definition: command.h:405
#define CMD_ARGC
Use this macro to access the number of arguments for the command being handled, rather than accessing...
Definition: command.h:156
#define COMMAND_PARSE_ENABLE(in, out)
parses an enable/disable command argument
Definition: command.h:536
#define COMMAND_PARSE_NUMBER(type, in, out)
parses the string in into out as a type, or prints a command error and passes the error code to the c...
Definition: command.h:445
#define COMMAND_REGISTRATION_DONE
Use this as the last entry in an array of command_registration records.
Definition: command.h:256
#define ERROR_COMMAND_ARGUMENT_INVALID
Definition: command.h:407
@ COMMAND_CONFIG
Definition: command.h:41
@ COMMAND_ANY
Definition: command.h:42
@ COMMAND_EXEC
Definition: command.h:40
enum scan_type jtag_scan_type(const struct scan_command *cmd)
Definition: commands.c:167
@ JTAG_TLR_RESET
Definition: commands.h:137
@ JTAG_SCAN
Definition: commands.h:129
@ JTAG_PATHMOVE
Definition: commands.h:140
@ JTAG_STABLECLOCKS
Definition: commands.h:142
@ JTAG_RUNTEST
Definition: commands.h:138
@ JTAG_SLEEP
Definition: commands.h:141
@ JTAG_TMS
Definition: commands.h:143
#define TPIU_ACPR_MAX_SWOSCALER
Definition: cortex_m.h:172
void delay_us(uint16_t delay)
Definition: delay.c:23
uint32_t size
Size of dw_spi_transaction::buffer.
Definition: dw-spi-helper.h:4
enum tap_state tap_get_end_state(void)
For more information,.
Definition: interface.c:56
enum tap_state tap_state_transition(enum tap_state cur_state, bool tms)
Function tap_state_transition takes a current TAP state and returns the next state according to the t...
Definition: interface.c:223
const char * tap_state_name(enum tap_state state)
Function tap_state_name Returns a string suitable for display representing the JTAG tap_state.
Definition: interface.c:344
int tap_get_tms_path_len(enum tap_state from, enum tap_state to)
Function int tap_get_tms_path_len returns the total number of bits that represents a TMS path transit...
Definition: interface.c:195
void tap_set_end_state(enum tap_state new_end_state)
This function sets the state of an "end state follower" which tracks the state that any cable driver ...
Definition: interface.c:48
enum tap_state tap_get_state(void)
This function gets the state of the "state follower" which tracks the state of the TAPs connected to ...
Definition: interface.c:37
bool tap_is_state_stable(enum tap_state astate)
Function tap_is_state_stable returns true if the astate is stable.
Definition: interface.c:200
int tap_get_tms_path(enum tap_state from, enum tap_state to)
This function provides a "bit sequence" indicating what has to be done with TMS during a sequence of ...
Definition: interface.c:190
#define DEBUG_CAP_TMS_SEQ
Definition: interface.h:194
#define tap_set_state(new_state)
This function sets the state of a "state follower" which tracks the state of the TAPs connected to th...
Definition: interface.h:50
static enum reset_types jtag_reset_config
Definition: jtag/core.c:89
void jtag_sleep(uint32_t us)
Definition: jtag/core.c:1058
enum reset_types jtag_get_reset_config(void)
Definition: jtag/core.c:1730
#define ERROR_JTAG_DEVICE_ERROR
Definition: jtag.h:558
tap_state
Defines JTAG Test Access Port states.
Definition: jtag.h:37
@ TAP_RESET
Definition: jtag.h:56
@ TAP_IRSHIFT
Definition: jtag.h:51
@ TAP_IDLE
Definition: jtag.h:53
@ TAP_DRSHIFT
Definition: jtag.h:43
reset_types
Definition: jtag.h:215
@ RESET_SRST_NO_GATING
Definition: jtag.h:224
@ RESET_CNCT_UNDER_SRST
Definition: jtag.h:225
#define ERROR_JTAG_NOT_IMPLEMENTED
Definition: jtag.h:554
static struct scan_blk scan
Definition: lakemont.c:60
#define ERROR_NOT_IMPLEMENTED
Definition: log.h:192
#define LOG_DEBUG_IO(expr ...)
Definition: log.h:116
#define ERROR_FAIL
Definition: log.h:188
#define LOG_ERROR(expr ...)
Definition: log.h:147
#define ERROR_TIMEOUT_REACHED
Definition: log.h:191
#define LOG_INFO(expr ...)
Definition: log.h:141
#define LOG_DEBUG(expr ...)
Definition: log.h:124
#define ERROR_OK
Definition: log.h:182
uint8_t mask
Definition: parport.c:70
#define MIN(a, b)
Definition: replacements.h:22
#define BIT(nr)
Definition: stm32l4x.h:18
Represents a driver for a debugging interface.
Definition: interface.h:214
const char *const name
The name of the interface driver.
Definition: interface.h:216
int(* read)(struct cmsis_dap *dap, int transfer_timeout_ms, enum cmsis_dap_blocking blocking)
Definition: cmsis_dap.h:77
void(* cancel_all)(struct cmsis_dap *dap)
Definition: cmsis_dap.h:82
const char * name
Definition: cmsis_dap.h:74
int(* packet_buffer_alloc)(struct cmsis_dap *dap, unsigned int pkt_sz)
Definition: cmsis_dap.h:80
void(* close)(struct cmsis_dap *dap)
Definition: cmsis_dap.h:76
int(* open)(struct cmsis_dap *dap, const uint16_t vids[], const uint16_t pids[], const char *serial)
Definition: cmsis_dap.h:75
void(* packet_buffer_free)(struct cmsis_dap *dap)
Definition: cmsis_dap.h:81
int(* write)(struct cmsis_dap *dap, int len, int timeout_ms)
Definition: cmsis_dap.h:79
unsigned int packet_usable_size
Definition: cmsis_dap.h:37
struct pending_request_block pending_fifo[MAX_PENDING_REQUESTS]
Definition: cmsis_dap.h:56
unsigned int pending_fifo_put_idx
Definition: cmsis_dap.h:58
uint16_t caps
Definition: cmsis_dap.h:61
unsigned int packet_size
Definition: cmsis_dap.h:36
unsigned int read_count
Definition: cmsis_dap.h:47
unsigned int pending_fifo_block_count
Definition: cmsis_dap.h:59
unsigned int response_size
Definition: cmsis_dap.h:42
bool trace_enabled
Definition: cmsis_dap.h:64
uint8_t * response
Definition: cmsis_dap.h:41
bool swd_cmds_differ
Definition: cmsis_dap.h:53
uint8_t common_swd_cmd
Definition: cmsis_dap.h:52
uint8_t * command
Definition: cmsis_dap.h:40
unsigned int packet_count
Definition: cmsis_dap.h:57
uint8_t * packet_buffer
Definition: cmsis_dap.h:39
unsigned int write_count
Definition: cmsis_dap.h:46
const struct cmsis_dap_backend * backend
Definition: cmsis_dap.h:35
unsigned int pending_fifo_get_idx
Definition: cmsis_dap.h:58
uint32_t swo_buf_sz
Definition: cmsis_dap.h:63
const char * name
Definition: command.h:239
enum command_mode mode
Definition: command.h:241
Represents a driver for a debugging interface.
Definition: interface.h:189
unsigned int supported
Bit vector listing capabilities exposed by this driver.
Definition: interface.h:193
struct pending_transfer_result * transfers
Definition: cmsis_dap.h:28
unsigned int transfer_count
Definition: cmsis_dap.h:29
unsigned int buffer_offset
Offset in the destination buffer.
Definition: cmsis_dap.c:238
unsigned int first
Offset in bytes in the CMD_DAP_JTAG_SEQ response buffer.
Definition: cmsis_dap.c:232
unsigned int length
Number of bits to read.
Definition: cmsis_dap.c:234
uint8_t * buffer
Location to store the result.
Definition: arm-jtag-ew.c:514
This structure defines a single scan field in the scan.
Definition: jtag.h:87
uint8_t * in_value
A pointer to a 32-bit memory location for data scanned out.
Definition: jtag.h:93
const uint8_t * out_value
A pointer to value to be scanned into the device.
Definition: jtag.h:91
unsigned int num_bits
The number of bits this field specifies.
Definition: jtag.h:89
Definition: osbdm.c:17
int(* init)(void)
Initialize the debug link so it can perform SWD operations.
Definition: swd.h:255
Definition: psoc6.c:83
Wrapper for transport lifecycle operations.
Definition: transport.h:55
static const unsigned int swd_seq_dormant_to_swd_len
Definition: swd.h:190
static const uint8_t swd_seq_dormant_to_jtag[]
Dormant-to-JTAG sequence.
Definition: swd.h:230
#define SWD_CMD_A32
Definition: swd.h:19
static const uint8_t swd_seq_dormant_to_swd[]
Dormant-to-SWD sequence.
Definition: swd.h:171
static const uint8_t swd_seq_jtag_to_dormant[]
JTAG-to-dormant sequence.
Definition: swd.h:199
#define SWD_CMD_PARK
Definition: swd.h:22
static int swd_ack_to_error_code(uint8_t ack)
Convert SWD ACK value returned from DP to OpenOCD error code.
Definition: swd.h:72
static uint8_t swd_cmd(bool is_read, bool is_ap, uint8_t regnum)
Construct a "cmd" byte, in lSB bit order, which swd_driver.read_reg() and swd_driver....
Definition: swd.h:35
static const unsigned int swd_seq_jtag_to_swd_len
Definition: swd.h:125
static const unsigned int swd_seq_line_reset_len
Definition: swd.h:104
static const unsigned int swd_seq_dormant_to_jtag_len
Definition: swd.h:244
#define SWD_CMD_APNDP
Definition: swd.h:17
static const unsigned int swd_seq_swd_to_dormant_len
Definition: swd.h:159
#define SWD_CMD_START
Definition: swd.h:16
#define SWD_CMD_RNW
Definition: swd.h:18
static const uint8_t swd_seq_line_reset[]
SWD Line reset.
Definition: swd.h:98
#define SWD_CMD_STOP
Definition: swd.h:21
static const uint8_t swd_seq_jtag_to_swd[]
JTAG-to-SWD sequence.
Definition: swd.h:115
static const uint8_t swd_seq_swd_to_jtag[]
SWD-to-JTAG sequence.
Definition: swd.h:136
static const unsigned int swd_seq_swd_to_jtag_len
Definition: swd.h:144
static const unsigned int swd_seq_jtag_to_dormant_len
Definition: swd.h:211
static const uint8_t swd_seq_swd_to_dormant[]
SWD-to-dormant sequence.
Definition: swd.h:153
trace_status
Definition: trace.h:36
#define TRANSPORT_SWD
Definition: transport.h:20
#define TRANSPORT_JTAG
Definition: transport.h:19
static uint16_t le_to_h_u16(const uint8_t *buf)
Definition: types.h:122
static void h_u32_to_le(uint8_t *buf, uint32_t val)
Definition: types.h:178
#define ARRAY_SIZE(x)
Compute the number of elements of a variable length array.
Definition: types.h:57
#define DIV_ROUND_UP(m, n)
Rounds m up to the nearest multiple of n using division.
Definition: types.h:79
static void h_u16_to_le(uint8_t *buf, uint16_t val)
Definition: types.h:208
static uint32_t le_to_h_u32(const uint8_t *buf)
Definition: types.h:112
static int parity_u32(uint32_t x)
Calculate the (even) parity of a 32-bit datum.
Definition: types.h:265
static struct ublast_lowlevel_priv info
#define NULL
Definition: usb.h:16
uint8_t cmd
Definition: vdebug.c:1
uint8_t offset[4]
Definition: vdebug.c:9
uint8_t state[4]
Definition: vdebug.c:21