arm_adi_v5: reduce some CSW writes
[fw/openocd] / src / target / arm_adi_v5.c
1 /***************************************************************************
2  *   Copyright (C) 2006 by Magnus Lundin                                   *
3  *   lundin@mlu.mine.nu                                                    *
4  *                                                                         *
5  *   Copyright (C) 2008 by Spencer Oliver                                  *
6  *   spen@spen-soft.co.uk                                                  *
7  *                                                                         *
8  *   Copyright (C) 2009-2010 by Oyvind Harboe                              *
9  *   oyvind.harboe@zylin.com                                               *
10  *                                                                         *
11  *   Copyright (C) 2009-2010 by David Brownell                             *
12  *                                                                         *
13  *   Copyright (C) 2013 by Andreas Fritiofson                              *
14  *   andreas.fritiofson@gmail.com                                          *
15  *                                                                         *
16  *   This program is free software; you can redistribute it and/or modify  *
17  *   it under the terms of the GNU General Public License as published by  *
18  *   the Free Software Foundation; either version 2 of the License, or     *
19  *   (at your option) any later version.                                   *
20  *                                                                         *
21  *   This program is distributed in the hope that it will be useful,       *
22  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
23  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
24  *   GNU General Public License for more details.                          *
25  *                                                                         *
26  *   You should have received a copy of the GNU General Public License     *
27  *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
28  ***************************************************************************/
29
30 /**
31  * @file
32  * This file implements support for the ARM Debug Interface version 5 (ADIv5)
33  * debugging architecture.  Compared with previous versions, this includes
34  * a low pin-count Serial Wire Debug (SWD) alternative to JTAG for message
35  * transport, and focusses on memory mapped resources as defined by the
36  * CoreSight architecture.
37  *
38  * A key concept in ADIv5 is the Debug Access Port, or DAP.  A DAP has two
39  * basic components:  a Debug Port (DP) transporting messages to and from a
40  * debugger, and an Access Port (AP) accessing resources.  Three types of DP
41  * are defined.  One uses only JTAG for communication, and is called JTAG-DP.
42  * One uses only SWD for communication, and is called SW-DP.  The third can
43  * use either SWD or JTAG, and is called SWJ-DP.  The most common type of AP
44  * is used to access memory mapped resources and is called a MEM-AP.  Also a
45  * JTAG-AP is also defined, bridging to JTAG resources; those are uncommon.
46  *
47  * This programming interface allows DAP pipelined operations through a
48  * transaction queue.  This primarily affects AP operations (such as using
49  * a MEM-AP to access memory or registers).  If the current transaction has
50  * not finished by the time the next one must begin, and the ORUNDETECT bit
51  * is set in the DP_CTRL_STAT register, the SSTICKYORUN status is set and
52  * further AP operations will fail.  There are two basic methods to avoid
53  * such overrun errors.  One involves polling for status instead of using
54  * transaction piplining.  The other involves adding delays to ensure the
55  * AP has enough time to complete one operation before starting the next
56  * one.  (For JTAG these delays are controlled by memaccess_tck.)
57  */
58
59 /*
60  * Relevant specifications from ARM include:
61  *
62  * ARM(tm) Debug Interface v5 Architecture Specification    ARM IHI 0031A
63  * CoreSight(tm) v1.0 Architecture Specification            ARM IHI 0029B
64  *
65  * CoreSight(tm) DAP-Lite TRM, ARM DDI 0316D
66  * Cortex-M3(tm) TRM, ARM DDI 0337G
67  */
68
69 #ifdef HAVE_CONFIG_H
70 #include "config.h"
71 #endif
72
73 #include "jtag/interface.h"
74 #include "arm.h"
75 #include "arm_adi_v5.h"
76 #include <helper/jep106.h>
77 #include <helper/time_support.h>
78 #include <helper/list.h>
79
80 /* ARM ADI Specification requires at least 10 bits used for TAR autoincrement  */
81
82 /*
83         uint32_t tar_block_size(uint32_t address)
84         Return the largest block starting at address that does not cross a tar block size alignment boundary
85 */
86 static uint32_t max_tar_block_size(uint32_t tar_autoincr_block, uint32_t address)
87 {
88         return tar_autoincr_block - ((tar_autoincr_block - 1) & address);
89 }
90
91 /***************************************************************************
92  *                                                                         *
93  * DP and MEM-AP  register access  through APACC and DPACC                 *
94  *                                                                         *
95 ***************************************************************************/
96
97 static int mem_ap_setup_csw(struct adiv5_ap *ap, uint32_t csw)
98 {
99         csw = csw | CSW_DBGSWENABLE | CSW_MASTER_DEBUG | CSW_HPROT |
100                 ap->csw_default;
101
102         if (csw != ap->csw_value) {
103                 /* LOG_DEBUG("DAP: Set CSW %x",csw); */
104                 int retval = dap_queue_ap_write(ap, MEM_AP_REG_CSW, csw);
105                 if (retval != ERROR_OK)
106                         return retval;
107                 ap->csw_value = csw;
108         }
109         return ERROR_OK;
110 }
111
112 static int mem_ap_setup_tar(struct adiv5_ap *ap, uint32_t tar)
113 {
114         if (!ap->tar_valid || tar != ap->tar_value) {
115                 /* LOG_DEBUG("DAP: Set TAR %x",tar); */
116                 int retval = dap_queue_ap_write(ap, MEM_AP_REG_TAR, tar);
117                 if (retval != ERROR_OK)
118                         return retval;
119                 ap->tar_value = tar;
120                 ap->tar_valid = true;
121         }
122         return ERROR_OK;
123 }
124
125 static int mem_ap_read_tar(struct adiv5_ap *ap, uint32_t *tar)
126 {
127         int retval = dap_queue_ap_read(ap, MEM_AP_REG_TAR, tar);
128         if (retval != ERROR_OK) {
129                 ap->tar_valid = false;
130                 return retval;
131         }
132
133         retval = dap_run(ap->dap);
134         if (retval != ERROR_OK) {
135                 ap->tar_valid = false;
136                 return retval;
137         }
138
139         ap->tar_value = *tar;
140         ap->tar_valid = true;
141         return ERROR_OK;
142 }
143
144 static uint32_t mem_ap_get_tar_increment(struct adiv5_ap *ap)
145 {
146         switch (ap->csw_value & CSW_ADDRINC_MASK) {
147         case CSW_ADDRINC_SINGLE:
148                 switch (ap->csw_value & CSW_SIZE_MASK) {
149                 case CSW_8BIT:
150                         return 1;
151                 case CSW_16BIT:
152                         return 2;
153                 case CSW_32BIT:
154                         return 4;
155                 }
156         case CSW_ADDRINC_PACKED:
157                 return 4;
158         }
159         return 0;
160 }
161
162 /* mem_ap_update_tar_cache is called after an access to MEM_AP_REG_DRW
163  */
164 static void mem_ap_update_tar_cache(struct adiv5_ap *ap)
165 {
166         if (!ap->tar_valid)
167                 return;
168
169         uint32_t inc = mem_ap_get_tar_increment(ap);
170         if (inc >= max_tar_block_size(ap->tar_autoincr_block, ap->tar_value))
171                 ap->tar_valid = false;
172         else
173                 ap->tar_value += inc;
174 }
175
176 /**
177  * Queue transactions setting up transfer parameters for the
178  * currently selected MEM-AP.
179  *
180  * Subsequent transfers using registers like MEM_AP_REG_DRW or MEM_AP_REG_BD2
181  * initiate data reads or writes using memory or peripheral addresses.
182  * If the CSW is configured for it, the TAR may be automatically
183  * incremented after each transfer.
184  *
185  * @param ap The MEM-AP.
186  * @param csw MEM-AP Control/Status Word (CSW) register to assign.  If this
187  *      matches the cached value, the register is not changed.
188  * @param tar MEM-AP Transfer Address Register (TAR) to assign.  If this
189  *      matches the cached address, the register is not changed.
190  *
191  * @return ERROR_OK if the transaction was properly queued, else a fault code.
192  */
193 static int mem_ap_setup_transfer(struct adiv5_ap *ap, uint32_t csw, uint32_t tar)
194 {
195         int retval;
196         retval = mem_ap_setup_csw(ap, csw);
197         if (retval != ERROR_OK)
198                 return retval;
199         retval = mem_ap_setup_tar(ap, tar);
200         if (retval != ERROR_OK)
201                 return retval;
202         return ERROR_OK;
203 }
204
205 /**
206  * Asynchronous (queued) read of a word from memory or a system register.
207  *
208  * @param ap The MEM-AP to access.
209  * @param address Address of the 32-bit word to read; it must be
210  *      readable by the currently selected MEM-AP.
211  * @param value points to where the word will be stored when the
212  *      transaction queue is flushed (assuming no errors).
213  *
214  * @return ERROR_OK for success.  Otherwise a fault code.
215  */
216 int mem_ap_read_u32(struct adiv5_ap *ap, uint32_t address,
217                 uint32_t *value)
218 {
219         int retval;
220
221         /* Use banked addressing (REG_BDx) to avoid some link traffic
222          * (updating TAR) when reading several consecutive addresses.
223          */
224         retval = mem_ap_setup_transfer(ap,
225                         CSW_32BIT | (ap->csw_value & CSW_ADDRINC_MASK),
226                         address & 0xFFFFFFF0);
227         if (retval != ERROR_OK)
228                 return retval;
229
230         return dap_queue_ap_read(ap, MEM_AP_REG_BD0 | (address & 0xC), value);
231 }
232
233 /**
234  * Synchronous read of a word from memory or a system register.
235  * As a side effect, this flushes any queued transactions.
236  *
237  * @param ap The MEM-AP to access.
238  * @param address Address of the 32-bit word to read; it must be
239  *      readable by the currently selected MEM-AP.
240  * @param value points to where the result will be stored.
241  *
242  * @return ERROR_OK for success; *value holds the result.
243  * Otherwise a fault code.
244  */
245 int mem_ap_read_atomic_u32(struct adiv5_ap *ap, uint32_t address,
246                 uint32_t *value)
247 {
248         int retval;
249
250         retval = mem_ap_read_u32(ap, address, value);
251         if (retval != ERROR_OK)
252                 return retval;
253
254         return dap_run(ap->dap);
255 }
256
257 /**
258  * Asynchronous (queued) write of a word to memory or a system register.
259  *
260  * @param ap The MEM-AP to access.
261  * @param address Address to be written; it must be writable by
262  *      the currently selected MEM-AP.
263  * @param value Word that will be written to the address when transaction
264  *      queue is flushed (assuming no errors).
265  *
266  * @return ERROR_OK for success.  Otherwise a fault code.
267  */
268 int mem_ap_write_u32(struct adiv5_ap *ap, uint32_t address,
269                 uint32_t value)
270 {
271         int retval;
272
273         /* Use banked addressing (REG_BDx) to avoid some link traffic
274          * (updating TAR) when writing several consecutive addresses.
275          */
276         retval = mem_ap_setup_transfer(ap,
277                         CSW_32BIT | (ap->csw_value & CSW_ADDRINC_MASK),
278                         address & 0xFFFFFFF0);
279         if (retval != ERROR_OK)
280                 return retval;
281
282         return dap_queue_ap_write(ap, MEM_AP_REG_BD0 | (address & 0xC),
283                         value);
284 }
285
286 /**
287  * Synchronous write of a word to memory or a system register.
288  * As a side effect, this flushes any queued transactions.
289  *
290  * @param ap The MEM-AP to access.
291  * @param address Address to be written; it must be writable by
292  *      the currently selected MEM-AP.
293  * @param value Word that will be written.
294  *
295  * @return ERROR_OK for success; the data was written.  Otherwise a fault code.
296  */
297 int mem_ap_write_atomic_u32(struct adiv5_ap *ap, uint32_t address,
298                 uint32_t value)
299 {
300         int retval = mem_ap_write_u32(ap, address, value);
301
302         if (retval != ERROR_OK)
303                 return retval;
304
305         return dap_run(ap->dap);
306 }
307
308 /**
309  * Synchronous write of a block of memory, using a specific access size.
310  *
311  * @param ap The MEM-AP to access.
312  * @param buffer The data buffer to write. No particular alignment is assumed.
313  * @param size Which access size to use, in bytes. 1, 2 or 4.
314  * @param count The number of writes to do (in size units, not bytes).
315  * @param address Address to be written; it must be writable by the currently selected MEM-AP.
316  * @param addrinc Whether the target address should be increased for each write or not. This
317  *  should normally be true, except when writing to e.g. a FIFO.
318  * @return ERROR_OK on success, otherwise an error code.
319  */
320 static int mem_ap_write(struct adiv5_ap *ap, const uint8_t *buffer, uint32_t size, uint32_t count,
321                 uint32_t address, bool addrinc)
322 {
323         struct adiv5_dap *dap = ap->dap;
324         size_t nbytes = size * count;
325         const uint32_t csw_addrincr = addrinc ? CSW_ADDRINC_SINGLE : CSW_ADDRINC_OFF;
326         uint32_t csw_size;
327         uint32_t addr_xor;
328         int retval;
329
330         /* TI BE-32 Quirks mode:
331          * Writes on big-endian TMS570 behave very strangely. Observed behavior:
332          *   size   write address   bytes written in order
333          *   4      TAR ^ 0         (val >> 24), (val >> 16), (val >> 8), (val)
334          *   2      TAR ^ 2         (val >> 8), (val)
335          *   1      TAR ^ 3         (val)
336          * For example, if you attempt to write a single byte to address 0, the processor
337          * will actually write a byte to address 3.
338          *
339          * To make writes of size < 4 work as expected, we xor a value with the address before
340          * setting the TAP, and we set the TAP after every transfer rather then relying on
341          * address increment. */
342
343         if (size == 4) {
344                 csw_size = CSW_32BIT;
345                 addr_xor = 0;
346         } else if (size == 2) {
347                 csw_size = CSW_16BIT;
348                 addr_xor = dap->ti_be_32_quirks ? 2 : 0;
349         } else if (size == 1) {
350                 csw_size = CSW_8BIT;
351                 addr_xor = dap->ti_be_32_quirks ? 3 : 0;
352         } else {
353                 return ERROR_TARGET_UNALIGNED_ACCESS;
354         }
355
356         if (ap->unaligned_access_bad && (address % size != 0))
357                 return ERROR_TARGET_UNALIGNED_ACCESS;
358
359         while (nbytes > 0) {
360                 uint32_t this_size = size;
361
362                 /* Select packed transfer if possible */
363                 if (addrinc && ap->packed_transfers && nbytes >= 4
364                                 && max_tar_block_size(ap->tar_autoincr_block, address) >= 4) {
365                         this_size = 4;
366                         retval = mem_ap_setup_csw(ap, csw_size | CSW_ADDRINC_PACKED);
367                 } else {
368                         retval = mem_ap_setup_csw(ap, csw_size | csw_addrincr);
369                 }
370
371                 if (retval != ERROR_OK)
372                         break;
373
374                 retval = mem_ap_setup_tar(ap, address ^ addr_xor);
375                 if (retval != ERROR_OK)
376                         return retval;
377
378                 /* How many source bytes each transfer will consume, and their location in the DRW,
379                  * depends on the type of transfer and alignment. See ARM document IHI0031C. */
380                 uint32_t outvalue = 0;
381                 if (dap->ti_be_32_quirks) {
382                         switch (this_size) {
383                         case 4:
384                                 outvalue |= (uint32_t)*buffer++ << 8 * (3 ^ (address++ & 3) ^ addr_xor);
385                                 outvalue |= (uint32_t)*buffer++ << 8 * (3 ^ (address++ & 3) ^ addr_xor);
386                                 outvalue |= (uint32_t)*buffer++ << 8 * (3 ^ (address++ & 3) ^ addr_xor);
387                                 outvalue |= (uint32_t)*buffer++ << 8 * (3 ^ (address++ & 3) ^ addr_xor);
388                                 break;
389                         case 2:
390                                 outvalue |= (uint32_t)*buffer++ << 8 * (1 ^ (address++ & 3) ^ addr_xor);
391                                 outvalue |= (uint32_t)*buffer++ << 8 * (1 ^ (address++ & 3) ^ addr_xor);
392                                 break;
393                         case 1:
394                                 outvalue |= (uint32_t)*buffer++ << 8 * (0 ^ (address++ & 3) ^ addr_xor);
395                                 break;
396                         }
397                 } else {
398                         switch (this_size) {
399                         case 4:
400                                 outvalue |= (uint32_t)*buffer++ << 8 * (address++ & 3);
401                                 outvalue |= (uint32_t)*buffer++ << 8 * (address++ & 3);
402                                 /* fallthrough */
403                         case 2:
404                                 outvalue |= (uint32_t)*buffer++ << 8 * (address++ & 3);
405                                 /* fallthrough */
406                         case 1:
407                                 outvalue |= (uint32_t)*buffer++ << 8 * (address++ & 3);
408                         }
409                 }
410
411                 nbytes -= this_size;
412
413                 retval = dap_queue_ap_write(ap, MEM_AP_REG_DRW, outvalue);
414                 if (retval != ERROR_OK)
415                         break;
416
417                 mem_ap_update_tar_cache(ap);
418         }
419
420         /* REVISIT: Might want to have a queued version of this function that does not run. */
421         if (retval == ERROR_OK)
422                 retval = dap_run(dap);
423
424         if (retval != ERROR_OK) {
425                 uint32_t tar;
426                 if (mem_ap_read_tar(ap, &tar) == ERROR_OK)
427                         LOG_ERROR("Failed to write memory at 0x%08"PRIx32, tar);
428                 else
429                         LOG_ERROR("Failed to write memory and, additionally, failed to find out where");
430         }
431
432         return retval;
433 }
434
435 /**
436  * Synchronous read of a block of memory, using a specific access size.
437  *
438  * @param ap The MEM-AP to access.
439  * @param buffer The data buffer to receive the data. No particular alignment is assumed.
440  * @param size Which access size to use, in bytes. 1, 2 or 4.
441  * @param count The number of reads to do (in size units, not bytes).
442  * @param address Address to be read; it must be readable by the currently selected MEM-AP.
443  * @param addrinc Whether the target address should be increased after each read or not. This
444  *  should normally be true, except when reading from e.g. a FIFO.
445  * @return ERROR_OK on success, otherwise an error code.
446  */
447 static int mem_ap_read(struct adiv5_ap *ap, uint8_t *buffer, uint32_t size, uint32_t count,
448                 uint32_t adr, bool addrinc)
449 {
450         struct adiv5_dap *dap = ap->dap;
451         size_t nbytes = size * count;
452         const uint32_t csw_addrincr = addrinc ? CSW_ADDRINC_SINGLE : CSW_ADDRINC_OFF;
453         uint32_t csw_size;
454         uint32_t address = adr;
455         int retval;
456
457         /* TI BE-32 Quirks mode:
458          * Reads on big-endian TMS570 behave strangely differently than writes.
459          * They read from the physical address requested, but with DRW byte-reversed.
460          * For example, a byte read from address 0 will place the result in the high bytes of DRW.
461          * Also, packed 8-bit and 16-bit transfers seem to sometimes return garbage in some bytes,
462          * so avoid them. */
463
464         if (size == 4)
465                 csw_size = CSW_32BIT;
466         else if (size == 2)
467                 csw_size = CSW_16BIT;
468         else if (size == 1)
469                 csw_size = CSW_8BIT;
470         else
471                 return ERROR_TARGET_UNALIGNED_ACCESS;
472
473         if (ap->unaligned_access_bad && (adr % size != 0))
474                 return ERROR_TARGET_UNALIGNED_ACCESS;
475
476         /* Allocate buffer to hold the sequence of DRW reads that will be made. This is a significant
477          * over-allocation if packed transfers are going to be used, but determining the real need at
478          * this point would be messy. */
479         uint32_t *read_buf = malloc(count * sizeof(uint32_t));
480         uint32_t *read_ptr = read_buf;
481         if (read_buf == NULL) {
482                 LOG_ERROR("Failed to allocate read buffer");
483                 return ERROR_FAIL;
484         }
485
486         /* Queue up all reads. Each read will store the entire DRW word in the read buffer. How many
487          * useful bytes it contains, and their location in the word, depends on the type of transfer
488          * and alignment. */
489         while (nbytes > 0) {
490                 uint32_t this_size = size;
491
492                 /* Select packed transfer if possible */
493                 if (addrinc && ap->packed_transfers && nbytes >= 4
494                                 && max_tar_block_size(ap->tar_autoincr_block, address) >= 4) {
495                         this_size = 4;
496                         retval = mem_ap_setup_csw(ap, csw_size | CSW_ADDRINC_PACKED);
497                 } else {
498                         retval = mem_ap_setup_csw(ap, csw_size | csw_addrincr);
499                 }
500                 if (retval != ERROR_OK)
501                         break;
502
503                 retval = mem_ap_setup_tar(ap, address);
504                 if (retval != ERROR_OK)
505                         break;
506
507                 retval = dap_queue_ap_read(ap, MEM_AP_REG_DRW, read_ptr++);
508                 if (retval != ERROR_OK)
509                         break;
510
511                 nbytes -= this_size;
512                 address += this_size;
513
514                 mem_ap_update_tar_cache(ap);
515         }
516
517         if (retval == ERROR_OK)
518                 retval = dap_run(dap);
519
520         /* Restore state */
521         address = adr;
522         nbytes = size * count;
523         read_ptr = read_buf;
524
525         /* If something failed, read TAR to find out how much data was successfully read, so we can
526          * at least give the caller what we have. */
527         if (retval != ERROR_OK) {
528                 uint32_t tar;
529                 if (mem_ap_read_tar(ap, &tar) == ERROR_OK) {
530                         /* TAR is incremented after failed transfer on some devices (eg Cortex-M4) */
531                         LOG_ERROR("Failed to read memory at 0x%08"PRIx32, tar);
532                         if (nbytes > tar - address)
533                                 nbytes = tar - address;
534                 } else {
535                         LOG_ERROR("Failed to read memory and, additionally, failed to find out where");
536                         nbytes = 0;
537                 }
538         }
539
540         /* Replay loop to populate caller's buffer from the correct word and byte lane */
541         while (nbytes > 0) {
542                 uint32_t this_size = size;
543
544                 if (addrinc && ap->packed_transfers && nbytes >= 4
545                                 && max_tar_block_size(ap->tar_autoincr_block, address) >= 4) {
546                         this_size = 4;
547                 }
548
549                 if (dap->ti_be_32_quirks) {
550                         switch (this_size) {
551                         case 4:
552                                 *buffer++ = *read_ptr >> 8 * (3 - (address++ & 3));
553                                 *buffer++ = *read_ptr >> 8 * (3 - (address++ & 3));
554                                 /* fallthrough */
555                         case 2:
556                                 *buffer++ = *read_ptr >> 8 * (3 - (address++ & 3));
557                                 /* fallthrough */
558                         case 1:
559                                 *buffer++ = *read_ptr >> 8 * (3 - (address++ & 3));
560                         }
561                 } else {
562                         switch (this_size) {
563                         case 4:
564                                 *buffer++ = *read_ptr >> 8 * (address++ & 3);
565                                 *buffer++ = *read_ptr >> 8 * (address++ & 3);
566                                 /* fallthrough */
567                         case 2:
568                                 *buffer++ = *read_ptr >> 8 * (address++ & 3);
569                                 /* fallthrough */
570                         case 1:
571                                 *buffer++ = *read_ptr >> 8 * (address++ & 3);
572                         }
573                 }
574
575                 read_ptr++;
576                 nbytes -= this_size;
577         }
578
579         free(read_buf);
580         return retval;
581 }
582
583 int mem_ap_read_buf(struct adiv5_ap *ap,
584                 uint8_t *buffer, uint32_t size, uint32_t count, uint32_t address)
585 {
586         return mem_ap_read(ap, buffer, size, count, address, true);
587 }
588
589 int mem_ap_write_buf(struct adiv5_ap *ap,
590                 const uint8_t *buffer, uint32_t size, uint32_t count, uint32_t address)
591 {
592         return mem_ap_write(ap, buffer, size, count, address, true);
593 }
594
595 int mem_ap_read_buf_noincr(struct adiv5_ap *ap,
596                 uint8_t *buffer, uint32_t size, uint32_t count, uint32_t address)
597 {
598         return mem_ap_read(ap, buffer, size, count, address, false);
599 }
600
601 int mem_ap_write_buf_noincr(struct adiv5_ap *ap,
602                 const uint8_t *buffer, uint32_t size, uint32_t count, uint32_t address)
603 {
604         return mem_ap_write(ap, buffer, size, count, address, false);
605 }
606
607 /*--------------------------------------------------------------------------*/
608
609
610 #define DAP_POWER_DOMAIN_TIMEOUT (10)
611
612 /* FIXME don't import ... just initialize as
613  * part of DAP transport setup
614 */
615 extern const struct dap_ops jtag_dp_ops;
616
617 /*--------------------------------------------------------------------------*/
618
619 /**
620  * Create a new DAP
621  */
622 struct adiv5_dap *dap_init(void)
623 {
624         struct adiv5_dap *dap = calloc(1, sizeof(struct adiv5_dap));
625         int i;
626         /* Set up with safe defaults */
627         for (i = 0; i <= 255; i++) {
628                 dap->ap[i].dap = dap;
629                 dap->ap[i].ap_num = i;
630                 /* memaccess_tck max is 255 */
631                 dap->ap[i].memaccess_tck = 255;
632                 /* Number of bits for tar autoincrement, impl. dep. at least 10 */
633                 dap->ap[i].tar_autoincr_block = (1<<10);
634         }
635         INIT_LIST_HEAD(&dap->cmd_journal);
636         return dap;
637 }
638
639 /**
640  * Invalidate cached DP select and cached TAR and CSW of all APs
641  */
642 void dap_invalidate_cache(struct adiv5_dap *dap)
643 {
644         dap->select = DP_SELECT_INVALID;
645         dap->last_read = NULL;
646
647         int i;
648         for (i = 0; i <= 255; i++) {
649                 /* force csw and tar write on the next mem-ap access */
650                 dap->ap[i].tar_valid = false;
651                 dap->ap[i].csw_value = 0;
652         }
653 }
654
655 /**
656  * Initialize a DAP.  This sets up the power domains, prepares the DP
657  * for further use and activates overrun checking.
658  *
659  * @param dap The DAP being initialized.
660  */
661 int dap_dp_init(struct adiv5_dap *dap)
662 {
663         int retval;
664
665         LOG_DEBUG(" ");
666         /* JTAG-DP or SWJ-DP, in JTAG mode
667          * ... for SWD mode this is patched as part
668          * of link switchover
669          * FIXME: This should already be setup by the respective transport specific DAP creation.
670          */
671         if (!dap->ops)
672                 dap->ops = &jtag_dp_ops;
673
674         dap_invalidate_cache(dap);
675
676         for (size_t i = 0; i < 30; i++) {
677                 /* DP initialization */
678
679                 retval = dap_dp_read_atomic(dap, DP_CTRL_STAT, NULL);
680                 if (retval == ERROR_OK)
681                         break;
682         }
683
684         retval = dap_queue_dp_write(dap, DP_CTRL_STAT, SSTICKYERR);
685         if (retval != ERROR_OK)
686                 return retval;
687
688         retval = dap_queue_dp_read(dap, DP_CTRL_STAT, NULL);
689         if (retval != ERROR_OK)
690                 return retval;
691
692         dap->dp_ctrl_stat = CDBGPWRUPREQ | CSYSPWRUPREQ;
693         retval = dap_queue_dp_write(dap, DP_CTRL_STAT, dap->dp_ctrl_stat);
694         if (retval != ERROR_OK)
695                 return retval;
696
697         /* Check that we have debug power domains activated */
698         LOG_DEBUG("DAP: wait CDBGPWRUPACK");
699         retval = dap_dp_poll_register(dap, DP_CTRL_STAT,
700                                       CDBGPWRUPACK, CDBGPWRUPACK,
701                                       DAP_POWER_DOMAIN_TIMEOUT);
702         if (retval != ERROR_OK)
703                 return retval;
704
705         LOG_DEBUG("DAP: wait CSYSPWRUPACK");
706         retval = dap_dp_poll_register(dap, DP_CTRL_STAT,
707                                       CSYSPWRUPACK, CSYSPWRUPACK,
708                                       DAP_POWER_DOMAIN_TIMEOUT);
709         if (retval != ERROR_OK)
710                 return retval;
711
712         retval = dap_queue_dp_read(dap, DP_CTRL_STAT, NULL);
713         if (retval != ERROR_OK)
714                 return retval;
715
716         /* With debug power on we can activate OVERRUN checking */
717         dap->dp_ctrl_stat = CDBGPWRUPREQ | CSYSPWRUPREQ | CORUNDETECT;
718         retval = dap_queue_dp_write(dap, DP_CTRL_STAT, dap->dp_ctrl_stat);
719         if (retval != ERROR_OK)
720                 return retval;
721         retval = dap_queue_dp_read(dap, DP_CTRL_STAT, NULL);
722         if (retval != ERROR_OK)
723                 return retval;
724
725         retval = dap_run(dap);
726         if (retval != ERROR_OK)
727                 return retval;
728
729         return retval;
730 }
731
732 /**
733  * Initialize a DAP.  This sets up the power domains, prepares the DP
734  * for further use, and arranges to use AP #0 for all AP operations
735  * until dap_ap-select() changes that policy.
736  *
737  * @param ap The MEM-AP being initialized.
738  */
739 int mem_ap_init(struct adiv5_ap *ap)
740 {
741         /* check that we support packed transfers */
742         uint32_t csw, cfg;
743         int retval;
744         struct adiv5_dap *dap = ap->dap;
745
746         ap->tar_valid = false;
747         ap->csw_value = 0;      /* force csw and tar write */
748         retval = mem_ap_setup_transfer(ap, CSW_8BIT | CSW_ADDRINC_PACKED, 0);
749         if (retval != ERROR_OK)
750                 return retval;
751
752         retval = dap_queue_ap_read(ap, MEM_AP_REG_CSW, &csw);
753         if (retval != ERROR_OK)
754                 return retval;
755
756         retval = dap_queue_ap_read(ap, MEM_AP_REG_CFG, &cfg);
757         if (retval != ERROR_OK)
758                 return retval;
759
760         retval = dap_run(dap);
761         if (retval != ERROR_OK)
762                 return retval;
763
764         if (csw & CSW_ADDRINC_PACKED)
765                 ap->packed_transfers = true;
766         else
767                 ap->packed_transfers = false;
768
769         /* Packed transfers on TI BE-32 processors do not work correctly in
770          * many cases. */
771         if (dap->ti_be_32_quirks)
772                 ap->packed_transfers = false;
773
774         LOG_DEBUG("MEM_AP Packed Transfers: %s",
775                         ap->packed_transfers ? "enabled" : "disabled");
776
777         /* The ARM ADI spec leaves implementation-defined whether unaligned
778          * memory accesses work, only work partially, or cause a sticky error.
779          * On TI BE-32 processors, reads seem to return garbage in some bytes
780          * and unaligned writes seem to cause a sticky error.
781          * TODO: it would be nice to have a way to detect whether unaligned
782          * operations are supported on other processors. */
783         ap->unaligned_access_bad = dap->ti_be_32_quirks;
784
785         LOG_DEBUG("MEM_AP CFG: large data %d, long address %d, big-endian %d",
786                         !!(cfg & 0x04), !!(cfg & 0x02), !!(cfg & 0x01));
787
788         return ERROR_OK;
789 }
790
791 /* CID interpretation -- see ARM IHI 0029B section 3
792  * and ARM IHI 0031A table 13-3.
793  */
794 static const char *class_description[16] = {
795         "Reserved", "ROM table", "Reserved", "Reserved",
796         "Reserved", "Reserved", "Reserved", "Reserved",
797         "Reserved", "CoreSight component", "Reserved", "Peripheral Test Block",
798         "Reserved", "OptimoDE DESS",
799         "Generic IP component", "PrimeCell or System component"
800 };
801
802 static bool is_dap_cid_ok(uint32_t cid)
803 {
804         return (cid & 0xffff0fff) == 0xb105000d;
805 }
806
807 /*
808  * This function checks the ID for each access port to find the requested Access Port type
809  */
810 int dap_find_ap(struct adiv5_dap *dap, enum ap_type type_to_find, struct adiv5_ap **ap_out)
811 {
812         int ap_num;
813
814         /* Maximum AP number is 255 since the SELECT register is 8 bits */
815         for (ap_num = 0; ap_num <= 255; ap_num++) {
816
817                 /* read the IDR register of the Access Port */
818                 uint32_t id_val = 0;
819
820                 int retval = dap_queue_ap_read(dap_ap(dap, ap_num), AP_REG_IDR, &id_val);
821                 if (retval != ERROR_OK)
822                         return retval;
823
824                 retval = dap_run(dap);
825
826                 /* IDR bits:
827                  * 31-28 : Revision
828                  * 27-24 : JEDEC bank (0x4 for ARM)
829                  * 23-17 : JEDEC code (0x3B for ARM)
830                  * 16-13 : Class (0b1000=Mem-AP)
831                  * 12-8  : Reserved
832                  *  7-4  : AP Variant (non-zero for JTAG-AP)
833                  *  3-0  : AP Type (0=JTAG-AP 1=AHB-AP 2=APB-AP 4=AXI-AP)
834                  */
835
836                 /* Reading register for a non-existant AP should not cause an error,
837                  * but just to be sure, try to continue searching if an error does happen.
838                  */
839                 if ((retval == ERROR_OK) &&                  /* Register read success */
840                         ((id_val & IDR_JEP106) == IDR_JEP106_ARM) && /* Jedec codes match */
841                         ((id_val & IDR_TYPE) == type_to_find)) {      /* type matches*/
842
843                         LOG_DEBUG("Found %s at AP index: %d (IDR=0x%08" PRIX32 ")",
844                                                 (type_to_find == AP_TYPE_AHB_AP)  ? "AHB-AP"  :
845                                                 (type_to_find == AP_TYPE_APB_AP)  ? "APB-AP"  :
846                                                 (type_to_find == AP_TYPE_AXI_AP)  ? "AXI-AP"  :
847                                                 (type_to_find == AP_TYPE_JTAG_AP) ? "JTAG-AP" : "Unknown",
848                                                 ap_num, id_val);
849
850                         *ap_out = &dap->ap[ap_num];
851                         return ERROR_OK;
852                 }
853         }
854
855         LOG_DEBUG("No %s found",
856                                 (type_to_find == AP_TYPE_AHB_AP)  ? "AHB-AP"  :
857                                 (type_to_find == AP_TYPE_APB_AP)  ? "APB-AP"  :
858                                 (type_to_find == AP_TYPE_AXI_AP)  ? "AXI-AP"  :
859                                 (type_to_find == AP_TYPE_JTAG_AP) ? "JTAG-AP" : "Unknown");
860         return ERROR_FAIL;
861 }
862
863 int dap_get_debugbase(struct adiv5_ap *ap,
864                         uint32_t *dbgbase, uint32_t *apid)
865 {
866         struct adiv5_dap *dap = ap->dap;
867         int retval;
868
869         retval = dap_queue_ap_read(ap, MEM_AP_REG_BASE, dbgbase);
870         if (retval != ERROR_OK)
871                 return retval;
872         retval = dap_queue_ap_read(ap, AP_REG_IDR, apid);
873         if (retval != ERROR_OK)
874                 return retval;
875         retval = dap_run(dap);
876         if (retval != ERROR_OK)
877                 return retval;
878
879         return ERROR_OK;
880 }
881
882 int dap_lookup_cs_component(struct adiv5_ap *ap,
883                         uint32_t dbgbase, uint8_t type, uint32_t *addr, int32_t *idx)
884 {
885         uint32_t romentry, entry_offset = 0, component_base, devtype;
886         int retval;
887
888         *addr = 0;
889
890         do {
891                 retval = mem_ap_read_atomic_u32(ap, (dbgbase&0xFFFFF000) |
892                                                 entry_offset, &romentry);
893                 if (retval != ERROR_OK)
894                         return retval;
895
896                 component_base = (dbgbase & 0xFFFFF000)
897                         + (romentry & 0xFFFFF000);
898
899                 if (romentry & 0x1) {
900                         uint32_t c_cid1;
901                         retval = mem_ap_read_atomic_u32(ap, component_base | 0xff4, &c_cid1);
902                         if (retval != ERROR_OK) {
903                                 LOG_ERROR("Can't read component with base address 0x%" PRIx32
904                                           ", the corresponding core might be turned off", component_base);
905                                 return retval;
906                         }
907                         if (((c_cid1 >> 4) & 0x0f) == 1) {
908                                 retval = dap_lookup_cs_component(ap, component_base,
909                                                         type, addr, idx);
910                                 if (retval == ERROR_OK)
911                                         break;
912                                 if (retval != ERROR_TARGET_RESOURCE_NOT_AVAILABLE)
913                                         return retval;
914                         }
915
916                         retval = mem_ap_read_atomic_u32(ap,
917                                         (component_base & 0xfffff000) | 0xfcc,
918                                         &devtype);
919                         if (retval != ERROR_OK)
920                                 return retval;
921                         if ((devtype & 0xff) == type) {
922                                 if (!*idx) {
923                                         *addr = component_base;
924                                         break;
925                                 } else
926                                         (*idx)--;
927                         }
928                 }
929                 entry_offset += 4;
930         } while (romentry > 0);
931
932         if (!*addr)
933                 return ERROR_TARGET_RESOURCE_NOT_AVAILABLE;
934
935         return ERROR_OK;
936 }
937
938 static int dap_read_part_id(struct adiv5_ap *ap, uint32_t component_base, uint32_t *cid, uint64_t *pid)
939 {
940         assert((component_base & 0xFFF) == 0);
941         assert(ap != NULL && cid != NULL && pid != NULL);
942
943         uint32_t cid0, cid1, cid2, cid3;
944         uint32_t pid0, pid1, pid2, pid3, pid4;
945         int retval;
946
947         /* IDs are in last 4K section */
948         retval = mem_ap_read_u32(ap, component_base + 0xFE0, &pid0);
949         if (retval != ERROR_OK)
950                 return retval;
951         retval = mem_ap_read_u32(ap, component_base + 0xFE4, &pid1);
952         if (retval != ERROR_OK)
953                 return retval;
954         retval = mem_ap_read_u32(ap, component_base + 0xFE8, &pid2);
955         if (retval != ERROR_OK)
956                 return retval;
957         retval = mem_ap_read_u32(ap, component_base + 0xFEC, &pid3);
958         if (retval != ERROR_OK)
959                 return retval;
960         retval = mem_ap_read_u32(ap, component_base + 0xFD0, &pid4);
961         if (retval != ERROR_OK)
962                 return retval;
963         retval = mem_ap_read_u32(ap, component_base + 0xFF0, &cid0);
964         if (retval != ERROR_OK)
965                 return retval;
966         retval = mem_ap_read_u32(ap, component_base + 0xFF4, &cid1);
967         if (retval != ERROR_OK)
968                 return retval;
969         retval = mem_ap_read_u32(ap, component_base + 0xFF8, &cid2);
970         if (retval != ERROR_OK)
971                 return retval;
972         retval = mem_ap_read_u32(ap, component_base + 0xFFC, &cid3);
973         if (retval != ERROR_OK)
974                 return retval;
975
976         retval = dap_run(ap->dap);
977         if (retval != ERROR_OK)
978                 return retval;
979
980         *cid = (cid3 & 0xff) << 24
981                         | (cid2 & 0xff) << 16
982                         | (cid1 & 0xff) << 8
983                         | (cid0 & 0xff);
984         *pid = (uint64_t)(pid4 & 0xff) << 32
985                         | (pid3 & 0xff) << 24
986                         | (pid2 & 0xff) << 16
987                         | (pid1 & 0xff) << 8
988                         | (pid0 & 0xff);
989
990         return ERROR_OK;
991 }
992
993 /* The designer identity code is encoded as:
994  * bits 11:8 : JEP106 Bank (number of continuation codes), only valid when bit 7 is 1.
995  * bit 7     : Set when bits 6:0 represent a JEP106 ID and cleared when bits 6:0 represent
996  *             a legacy ASCII Identity Code.
997  * bits 6:0  : JEP106 Identity Code (without parity) or legacy ASCII code according to bit 7.
998  * JEP106 is a standard available from jedec.org
999  */
1000
1001 /* Part number interpretations are from Cortex
1002  * core specs, the CoreSight components TRM
1003  * (ARM DDI 0314H), CoreSight System Design
1004  * Guide (ARM DGI 0012D) and ETM specs; also
1005  * from chip observation (e.g. TI SDTI).
1006  */
1007
1008 /* The legacy code only used the part number field to identify CoreSight peripherals.
1009  * This meant that the same part number from two different manufacturers looked the same.
1010  * It is desirable for all future additions to identify with both part number and JEP106.
1011  * "ANY_ID" is a wildcard (any JEP106) only to preserve legacy behavior for legacy entries.
1012  */
1013
1014 #define ANY_ID 0x1000
1015
1016 #define ARM_ID 0x4BB
1017
1018 static const struct {
1019         uint16_t designer_id;
1020         uint16_t part_num;
1021         const char *type;
1022         const char *full;
1023 } dap_partnums[] = {
1024         { ARM_ID, 0x000, "Cortex-M3 SCS",              "(System Control Space)", },
1025         { ARM_ID, 0x001, "Cortex-M3 ITM",              "(Instrumentation Trace Module)", },
1026         { ARM_ID, 0x002, "Cortex-M3 DWT",              "(Data Watchpoint and Trace)", },
1027         { ARM_ID, 0x003, "Cortex-M3 FPB",              "(Flash Patch and Breakpoint)", },
1028         { ARM_ID, 0x008, "Cortex-M0 SCS",              "(System Control Space)", },
1029         { ARM_ID, 0x00a, "Cortex-M0 DWT",              "(Data Watchpoint and Trace)", },
1030         { ARM_ID, 0x00b, "Cortex-M0 BPU",              "(Breakpoint Unit)", },
1031         { ARM_ID, 0x00c, "Cortex-M4 SCS",              "(System Control Space)", },
1032         { ARM_ID, 0x00d, "CoreSight ETM11",            "(Embedded Trace)", },
1033         { ARM_ID, 0x00e, "Cortex-M7 FPB",              "(Flash Patch and Breakpoint)", },
1034         { ARM_ID, 0x490, "Cortex-A15 GIC",             "(Generic Interrupt Controller)", },
1035         { ARM_ID, 0x4a1, "Cortex-A53 ROM",             "(v8 Memory Map ROM Table)", },
1036         { ARM_ID, 0x4a2, "Cortex-A57 ROM",             "(ROM Table)", },
1037         { ARM_ID, 0x4a3, "Cortex-A53 ROM",             "(v7 Memory Map ROM Table)", },
1038         { ARM_ID, 0x4a4, "Cortex-A72 ROM",             "(ROM Table)", },
1039         { ARM_ID, 0x4af, "Cortex-A15 ROM",             "(ROM Table)", },
1040         { ARM_ID, 0x4c0, "Cortex-M0+ ROM",             "(ROM Table)", },
1041         { ARM_ID, 0x4c3, "Cortex-M3 ROM",              "(ROM Table)", },
1042         { ARM_ID, 0x4c4, "Cortex-M4 ROM",              "(ROM Table)", },
1043         { ARM_ID, 0x4c7, "Cortex-M7 PPB ROM",          "(Private Peripheral Bus ROM Table)", },
1044         { ARM_ID, 0x4c8, "Cortex-M7 ROM",              "(ROM Table)", },
1045         { ARM_ID, 0x470, "Cortex-M1 ROM",              "(ROM Table)", },
1046         { ARM_ID, 0x471, "Cortex-M0 ROM",              "(ROM Table)", },
1047         { ARM_ID, 0x906, "CoreSight CTI",              "(Cross Trigger)", },
1048         { ARM_ID, 0x907, "CoreSight ETB",              "(Trace Buffer)", },
1049         { ARM_ID, 0x908, "CoreSight CSTF",             "(Trace Funnel)", },
1050         { ARM_ID, 0x909, "CoreSight ATBR",             "(Advanced Trace Bus Replicator)", },
1051         { ARM_ID, 0x910, "CoreSight ETM9",             "(Embedded Trace)", },
1052         { ARM_ID, 0x912, "CoreSight TPIU",             "(Trace Port Interface Unit)", },
1053         { ARM_ID, 0x913, "CoreSight ITM",              "(Instrumentation Trace Macrocell)", },
1054         { ARM_ID, 0x914, "CoreSight SWO",              "(Single Wire Output)", },
1055         { ARM_ID, 0x917, "CoreSight HTM",              "(AHB Trace Macrocell)", },
1056         { ARM_ID, 0x920, "CoreSight ETM11",            "(Embedded Trace)", },
1057         { ARM_ID, 0x921, "Cortex-A8 ETM",              "(Embedded Trace)", },
1058         { ARM_ID, 0x922, "Cortex-A8 CTI",              "(Cross Trigger)", },
1059         { ARM_ID, 0x923, "Cortex-M3 TPIU",             "(Trace Port Interface Unit)", },
1060         { ARM_ID, 0x924, "Cortex-M3 ETM",              "(Embedded Trace)", },
1061         { ARM_ID, 0x925, "Cortex-M4 ETM",              "(Embedded Trace)", },
1062         { ARM_ID, 0x930, "Cortex-R4 ETM",              "(Embedded Trace)", },
1063         { ARM_ID, 0x931, "Cortex-R5 ETM",              "(Embedded Trace)", },
1064         { ARM_ID, 0x932, "CoreSight MTB-M0+",          "(Micro Trace Buffer)", },
1065         { ARM_ID, 0x941, "CoreSight TPIU-Lite",        "(Trace Port Interface Unit)", },
1066         { ARM_ID, 0x950, "Cortex-A9 PTM",              "(Program Trace Macrocell)", },
1067         { ARM_ID, 0x955, "Cortex-A5 ETM",              "(Embedded Trace)", },
1068         { ARM_ID, 0x95a, "Cortex-A72 ETM",             "(Embedded Trace)", },
1069         { ARM_ID, 0x95b, "Cortex-A17 PTM",             "(Program Trace Macrocell)", },
1070         { ARM_ID, 0x95d, "Cortex-A53 ETM",             "(Embedded Trace)", },
1071         { ARM_ID, 0x95e, "Cortex-A57 ETM",             "(Embedded Trace)", },
1072         { ARM_ID, 0x95f, "Cortex-A15 PTM",             "(Program Trace Macrocell)", },
1073         { ARM_ID, 0x961, "CoreSight TMC",              "(Trace Memory Controller)", },
1074         { ARM_ID, 0x962, "CoreSight STM",              "(System Trace Macrocell)", },
1075         { ARM_ID, 0x975, "Cortex-M7 ETM",              "(Embedded Trace)", },
1076         { ARM_ID, 0x9a0, "CoreSight PMU",              "(Performance Monitoring Unit)", },
1077         { ARM_ID, 0x9a1, "Cortex-M4 TPIU",             "(Trace Port Interface Unit)", },
1078         { ARM_ID, 0x9a4, "CoreSight GPR",              "(Granular Power Requester)", },
1079         { ARM_ID, 0x9a5, "Cortex-A5 PMU",              "(Performance Monitor Unit)", },
1080         { ARM_ID, 0x9a7, "Cortex-A7 PMU",              "(Performance Monitor Unit)", },
1081         { ARM_ID, 0x9a8, "Cortex-A53 CTI",             "(Cross Trigger)", },
1082         { ARM_ID, 0x9a9, "Cortex-M7 TPIU",             "(Trace Port Interface Unit)", },
1083         { ARM_ID, 0x9ae, "Cortex-A17 PMU",             "(Performance Monitor Unit)", },
1084         { ARM_ID, 0x9af, "Cortex-A15 PMU",             "(Performance Monitor Unit)", },
1085         { ARM_ID, 0x9b7, "Cortex-R7 PMU",              "(Performance Monitoring Unit)", },
1086         { ARM_ID, 0x9d3, "Cortex-A53 PMU",             "(Performance Monitor Unit)", },
1087         { ARM_ID, 0x9d7, "Cortex-A57 PMU",             "(Performance Monitor Unit)", },
1088         { ARM_ID, 0x9d8, "Cortex-A72 PMU",             "(Performance Monitor Unit)", },
1089         { ARM_ID, 0xc05, "Cortex-A5 Debug",            "(Debug Unit)", },
1090         { ARM_ID, 0xc07, "Cortex-A7 Debug",            "(Debug Unit)", },
1091         { ARM_ID, 0xc08, "Cortex-A8 Debug",            "(Debug Unit)", },
1092         { ARM_ID, 0xc09, "Cortex-A9 Debug",            "(Debug Unit)", },
1093         { ARM_ID, 0xc0e, "Cortex-A17 Debug",           "(Debug Unit)", },
1094         { ARM_ID, 0xc0f, "Cortex-A15 Debug",           "(Debug Unit)", },
1095         { ARM_ID, 0xc14, "Cortex-R4 Debug",            "(Debug Unit)", },
1096         { ARM_ID, 0xc15, "Cortex-R5 Debug",            "(Debug Unit)", },
1097         { ARM_ID, 0xc17, "Cortex-R7 Debug",            "(Debug Unit)", },
1098         { ARM_ID, 0xd03, "Cortex-A53 Debug",           "(Debug Unit)", },
1099         { ARM_ID, 0xd07, "Cortex-A57 Debug",           "(Debug Unit)", },
1100         { ARM_ID, 0xd08, "Cortex-A72 Debug",           "(Debug Unit)", },
1101         { 0x097,  0x9af, "MSP432 ROM",                 "(ROM Table)" },
1102         { 0x09f,  0xcd0, "Atmel CPU with DSU",         "(CPU)" },
1103         { 0x0c1,  0x1db, "XMC4500 ROM",                "(ROM Table)" },
1104         { 0x0c1,  0x1df, "XMC4700/4800 ROM",           "(ROM Table)" },
1105         { 0x0c1,  0x1ed, "XMC1000 ROM",                "(ROM Table)" },
1106         { 0x0E5,  0x000, "SHARC+/Blackfin+",           "", },
1107         { 0x0F0,  0x440, "Qualcomm QDSS Component v1", "(Qualcomm Designed CoreSight Component v1)", },
1108         /* legacy comment: 0x113: what? */
1109         { ANY_ID, 0x120, "TI SDTI",                    "(System Debug Trace Interface)", }, /* from OMAP3 memmap */
1110         { ANY_ID, 0x343, "TI DAPCTL",                  "", }, /* from OMAP3 memmap */
1111 };
1112
1113 static int dap_rom_display(struct command_context *cmd_ctx,
1114                                 struct adiv5_ap *ap, uint32_t dbgbase, int depth)
1115 {
1116         int retval;
1117         uint64_t pid;
1118         uint32_t cid;
1119         char tabs[16] = "";
1120
1121         if (depth > 16) {
1122                 command_print(cmd_ctx, "\tTables too deep");
1123                 return ERROR_FAIL;
1124         }
1125
1126         if (depth)
1127                 snprintf(tabs, sizeof(tabs), "[L%02d] ", depth);
1128
1129         uint32_t base_addr = dbgbase & 0xFFFFF000;
1130         command_print(cmd_ctx, "\t\tComponent base address 0x%08" PRIx32, base_addr);
1131
1132         retval = dap_read_part_id(ap, base_addr, &cid, &pid);
1133         if (retval != ERROR_OK) {
1134                 command_print(cmd_ctx, "\t\tCan't read component, the corresponding core might be turned off");
1135                 return ERROR_OK; /* Don't abort recursion */
1136         }
1137
1138         if (!is_dap_cid_ok(cid)) {
1139                 command_print(cmd_ctx, "\t\tInvalid CID 0x%08" PRIx32, cid);
1140                 return ERROR_OK; /* Don't abort recursion */
1141         }
1142
1143         /* component may take multiple 4K pages */
1144         uint32_t size = (pid >> 36) & 0xf;
1145         if (size > 0)
1146                 command_print(cmd_ctx, "\t\tStart address 0x%08" PRIx32, (uint32_t)(base_addr - 0x1000 * size));
1147
1148         command_print(cmd_ctx, "\t\tPeripheral ID 0x%010" PRIx64, pid);
1149
1150         uint8_t class = (cid >> 12) & 0xf;
1151         uint16_t part_num = pid & 0xfff;
1152         uint16_t designer_id = ((pid >> 32) & 0xf) << 8 | ((pid >> 12) & 0xff);
1153
1154         if (designer_id & 0x80) {
1155                 /* JEP106 code */
1156                 command_print(cmd_ctx, "\t\tDesigner is 0x%03" PRIx16 ", %s",
1157                                 designer_id, jep106_manufacturer(designer_id >> 8, designer_id & 0x7f));
1158         } else {
1159                 /* Legacy ASCII ID, clear invalid bits */
1160                 designer_id &= 0x7f;
1161                 command_print(cmd_ctx, "\t\tDesigner ASCII code 0x%02" PRIx16 ", %s",
1162                                 designer_id, designer_id == 0x41 ? "ARM" : "<unknown>");
1163         }
1164
1165         /* default values to be overwritten upon finding a match */
1166         const char *type = "Unrecognized";
1167         const char *full = "";
1168
1169         /* search dap_partnums[] array for a match */
1170         for (unsigned entry = 0; entry < ARRAY_SIZE(dap_partnums); entry++) {
1171
1172                 if ((dap_partnums[entry].designer_id != designer_id) && (dap_partnums[entry].designer_id != ANY_ID))
1173                         continue;
1174
1175                 if (dap_partnums[entry].part_num != part_num)
1176                         continue;
1177
1178                 type = dap_partnums[entry].type;
1179                 full = dap_partnums[entry].full;
1180                 break;
1181         }
1182
1183         command_print(cmd_ctx, "\t\tPart is 0x%" PRIx16", %s %s", part_num, type, full);
1184         command_print(cmd_ctx, "\t\tComponent class is 0x%" PRIx8 ", %s", class, class_description[class]);
1185
1186         if (class == 1) { /* ROM Table */
1187                 uint32_t memtype;
1188                 retval = mem_ap_read_atomic_u32(ap, base_addr | 0xFCC, &memtype);
1189                 if (retval != ERROR_OK)
1190                         return retval;
1191
1192                 if (memtype & 0x01)
1193                         command_print(cmd_ctx, "\t\tMEMTYPE system memory present on bus");
1194                 else
1195                         command_print(cmd_ctx, "\t\tMEMTYPE system memory not present: dedicated debug bus");
1196
1197                 /* Read ROM table entries from base address until we get 0x00000000 or reach the reserved area */
1198                 for (uint16_t entry_offset = 0; entry_offset < 0xF00; entry_offset += 4) {
1199                         uint32_t romentry;
1200                         retval = mem_ap_read_atomic_u32(ap, base_addr | entry_offset, &romentry);
1201                         if (retval != ERROR_OK)
1202                                 return retval;
1203                         command_print(cmd_ctx, "\t%sROMTABLE[0x%x] = 0x%" PRIx32 "",
1204                                         tabs, entry_offset, romentry);
1205                         if (romentry & 0x01) {
1206                                 /* Recurse */
1207                                 retval = dap_rom_display(cmd_ctx, ap, base_addr + (romentry & 0xFFFFF000), depth + 1);
1208                                 if (retval != ERROR_OK)
1209                                         return retval;
1210                         } else if (romentry != 0) {
1211                                 command_print(cmd_ctx, "\t\tComponent not present");
1212                         } else {
1213                                 command_print(cmd_ctx, "\t%s\tEnd of ROM table", tabs);
1214                                 break;
1215                         }
1216                 }
1217         } else if (class == 9) { /* CoreSight component */
1218                 const char *major = "Reserved", *subtype = "Reserved";
1219
1220                 uint32_t devtype;
1221                 retval = mem_ap_read_atomic_u32(ap, base_addr | 0xFCC, &devtype);
1222                 if (retval != ERROR_OK)
1223                         return retval;
1224                 unsigned minor = (devtype >> 4) & 0x0f;
1225                 switch (devtype & 0x0f) {
1226                 case 0:
1227                         major = "Miscellaneous";
1228                         switch (minor) {
1229                         case 0:
1230                                 subtype = "other";
1231                                 break;
1232                         case 4:
1233                                 subtype = "Validation component";
1234                                 break;
1235                         }
1236                         break;
1237                 case 1:
1238                         major = "Trace Sink";
1239                         switch (minor) {
1240                         case 0:
1241                                 subtype = "other";
1242                                 break;
1243                         case 1:
1244                                 subtype = "Port";
1245                                 break;
1246                         case 2:
1247                                 subtype = "Buffer";
1248                                 break;
1249                         case 3:
1250                                 subtype = "Router";
1251                                 break;
1252                         }
1253                         break;
1254                 case 2:
1255                         major = "Trace Link";
1256                         switch (minor) {
1257                         case 0:
1258                                 subtype = "other";
1259                                 break;
1260                         case 1:
1261                                 subtype = "Funnel, router";
1262                                 break;
1263                         case 2:
1264                                 subtype = "Filter";
1265                                 break;
1266                         case 3:
1267                                 subtype = "FIFO, buffer";
1268                                 break;
1269                         }
1270                         break;
1271                 case 3:
1272                         major = "Trace Source";
1273                         switch (minor) {
1274                         case 0:
1275                                 subtype = "other";
1276                                 break;
1277                         case 1:
1278                                 subtype = "Processor";
1279                                 break;
1280                         case 2:
1281                                 subtype = "DSP";
1282                                 break;
1283                         case 3:
1284                                 subtype = "Engine/Coprocessor";
1285                                 break;
1286                         case 4:
1287                                 subtype = "Bus";
1288                                 break;
1289                         case 6:
1290                                 subtype = "Software";
1291                                 break;
1292                         }
1293                         break;
1294                 case 4:
1295                         major = "Debug Control";
1296                         switch (minor) {
1297                         case 0:
1298                                 subtype = "other";
1299                                 break;
1300                         case 1:
1301                                 subtype = "Trigger Matrix";
1302                                 break;
1303                         case 2:
1304                                 subtype = "Debug Auth";
1305                                 break;
1306                         case 3:
1307                                 subtype = "Power Requestor";
1308                                 break;
1309                         }
1310                         break;
1311                 case 5:
1312                         major = "Debug Logic";
1313                         switch (minor) {
1314                         case 0:
1315                                 subtype = "other";
1316                                 break;
1317                         case 1:
1318                                 subtype = "Processor";
1319                                 break;
1320                         case 2:
1321                                 subtype = "DSP";
1322                                 break;
1323                         case 3:
1324                                 subtype = "Engine/Coprocessor";
1325                                 break;
1326                         case 4:
1327                                 subtype = "Bus";
1328                                 break;
1329                         case 5:
1330                                 subtype = "Memory";
1331                                 break;
1332                         }
1333                         break;
1334                 case 6:
1335                         major = "Perfomance Monitor";
1336                         switch (minor) {
1337                         case 0:
1338                                 subtype = "other";
1339                                 break;
1340                         case 1:
1341                                 subtype = "Processor";
1342                                 break;
1343                         case 2:
1344                                 subtype = "DSP";
1345                                 break;
1346                         case 3:
1347                                 subtype = "Engine/Coprocessor";
1348                                 break;
1349                         case 4:
1350                                 subtype = "Bus";
1351                                 break;
1352                         case 5:
1353                                 subtype = "Memory";
1354                                 break;
1355                         }
1356                         break;
1357                 }
1358                 command_print(cmd_ctx, "\t\tType is 0x%02" PRIx8 ", %s, %s",
1359                                 (uint8_t)(devtype & 0xff),
1360                                 major, subtype);
1361                 /* REVISIT also show 0xfc8 DevId */
1362         }
1363
1364         return ERROR_OK;
1365 }
1366
1367 static int dap_info_command(struct command_context *cmd_ctx,
1368                 struct adiv5_ap *ap)
1369 {
1370         int retval;
1371         uint32_t dbgbase, apid;
1372         uint8_t mem_ap;
1373
1374         /* Now we read ROM table ID registers, ref. ARM IHI 0029B sec  */
1375         retval = dap_get_debugbase(ap, &dbgbase, &apid);
1376         if (retval != ERROR_OK)
1377                 return retval;
1378
1379         command_print(cmd_ctx, "AP ID register 0x%8.8" PRIx32, apid);
1380         if (apid == 0) {
1381                 command_print(cmd_ctx, "No AP found at this ap 0x%x", ap->ap_num);
1382                 return ERROR_FAIL;
1383         }
1384
1385         switch (apid & (IDR_JEP106 | IDR_TYPE)) {
1386         case IDR_JEP106_ARM | AP_TYPE_JTAG_AP:
1387                 command_print(cmd_ctx, "\tType is JTAG-AP");
1388                 break;
1389         case IDR_JEP106_ARM | AP_TYPE_AHB_AP:
1390                 command_print(cmd_ctx, "\tType is MEM-AP AHB");
1391                 break;
1392         case IDR_JEP106_ARM | AP_TYPE_APB_AP:
1393                 command_print(cmd_ctx, "\tType is MEM-AP APB");
1394                 break;
1395         case IDR_JEP106_ARM | AP_TYPE_AXI_AP:
1396                 command_print(cmd_ctx, "\tType is MEM-AP AXI");
1397                 break;
1398         default:
1399                 command_print(cmd_ctx, "\tUnknown AP type");
1400                 break;
1401         }
1402
1403         /* NOTE: a MEM-AP may have a single CoreSight component that's
1404          * not a ROM table ... or have no such components at all.
1405          */
1406         mem_ap = (apid & IDR_CLASS) == AP_CLASS_MEM_AP;
1407         if (mem_ap) {
1408                 command_print(cmd_ctx, "MEM-AP BASE 0x%8.8" PRIx32, dbgbase);
1409
1410                 if (dbgbase == 0xFFFFFFFF || (dbgbase & 0x3) == 0x2) {
1411                         command_print(cmd_ctx, "\tNo ROM table present");
1412                 } else {
1413                         if (dbgbase & 0x01)
1414                                 command_print(cmd_ctx, "\tValid ROM table present");
1415                         else
1416                                 command_print(cmd_ctx, "\tROM table in legacy format");
1417
1418                         dap_rom_display(cmd_ctx, ap, dbgbase & 0xFFFFF000, 0);
1419                 }
1420         }
1421
1422         return ERROR_OK;
1423 }
1424
1425 int adiv5_jim_configure(struct target *target, Jim_GetOptInfo *goi)
1426 {
1427         struct adiv5_private_config *pc;
1428         const char *arg;
1429         jim_wide ap_num;
1430         int e;
1431
1432         /* check if argv[0] is for us */
1433         arg = Jim_GetString(goi->argv[0], NULL);
1434         if (strcmp(arg, "-ap-num"))
1435                 return JIM_CONTINUE;
1436
1437         e = Jim_GetOpt_String(goi, &arg, NULL);
1438         if (e != JIM_OK)
1439                 return e;
1440
1441         if (goi->argc == 0) {
1442                 Jim_WrongNumArgs(goi->interp, goi->argc, goi->argv, "-ap-num ?ap-number? ...");
1443                 return JIM_ERR;
1444         }
1445
1446         e = Jim_GetOpt_Wide(goi, &ap_num);
1447         if (e != JIM_OK)
1448                 return e;
1449
1450         if (target->private_config == NULL) {
1451                 pc = calloc(1, sizeof(struct adiv5_private_config));
1452                 target->private_config = pc;
1453                 pc->ap_num = ap_num;
1454         }
1455
1456
1457         return JIM_OK;
1458 }
1459
1460 COMMAND_HANDLER(handle_dap_info_command)
1461 {
1462         struct target *target = get_current_target(CMD_CTX);
1463         struct arm *arm = target_to_arm(target);
1464         struct adiv5_dap *dap = arm->dap;
1465         uint32_t apsel;
1466
1467         switch (CMD_ARGC) {
1468         case 0:
1469                 apsel = dap->apsel;
1470                 break;
1471         case 1:
1472                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], apsel);
1473                 if (apsel >= 256)
1474                         return ERROR_COMMAND_SYNTAX_ERROR;
1475                 break;
1476         default:
1477                 return ERROR_COMMAND_SYNTAX_ERROR;
1478         }
1479
1480         return dap_info_command(CMD_CTX, &dap->ap[apsel]);
1481 }
1482
1483 COMMAND_HANDLER(dap_baseaddr_command)
1484 {
1485         struct target *target = get_current_target(CMD_CTX);
1486         struct arm *arm = target_to_arm(target);
1487         struct adiv5_dap *dap = arm->dap;
1488
1489         uint32_t apsel, baseaddr;
1490         int retval;
1491
1492         switch (CMD_ARGC) {
1493         case 0:
1494                 apsel = dap->apsel;
1495                 break;
1496         case 1:
1497                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], apsel);
1498                 /* AP address is in bits 31:24 of DP_SELECT */
1499                 if (apsel >= 256)
1500                         return ERROR_COMMAND_SYNTAX_ERROR;
1501                 break;
1502         default:
1503                 return ERROR_COMMAND_SYNTAX_ERROR;
1504         }
1505
1506         /* NOTE:  assumes we're talking to a MEM-AP, which
1507          * has a base address.  There are other kinds of AP,
1508          * though they're not common for now.  This should
1509          * use the ID register to verify it's a MEM-AP.
1510          */
1511         retval = dap_queue_ap_read(dap_ap(dap, apsel), MEM_AP_REG_BASE, &baseaddr);
1512         if (retval != ERROR_OK)
1513                 return retval;
1514         retval = dap_run(dap);
1515         if (retval != ERROR_OK)
1516                 return retval;
1517
1518         command_print(CMD_CTX, "0x%8.8" PRIx32, baseaddr);
1519
1520         return retval;
1521 }
1522
1523 COMMAND_HANDLER(dap_memaccess_command)
1524 {
1525         struct target *target = get_current_target(CMD_CTX);
1526         struct arm *arm = target_to_arm(target);
1527         struct adiv5_dap *dap = arm->dap;
1528
1529         uint32_t memaccess_tck;
1530
1531         switch (CMD_ARGC) {
1532         case 0:
1533                 memaccess_tck = dap->ap[dap->apsel].memaccess_tck;
1534                 break;
1535         case 1:
1536                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], memaccess_tck);
1537                 break;
1538         default:
1539                 return ERROR_COMMAND_SYNTAX_ERROR;
1540         }
1541         dap->ap[dap->apsel].memaccess_tck = memaccess_tck;
1542
1543         command_print(CMD_CTX, "memory bus access delay set to %" PRIi32 " tck",
1544                         dap->ap[dap->apsel].memaccess_tck);
1545
1546         return ERROR_OK;
1547 }
1548
1549 COMMAND_HANDLER(dap_apsel_command)
1550 {
1551         struct target *target = get_current_target(CMD_CTX);
1552         struct arm *arm = target_to_arm(target);
1553         struct adiv5_dap *dap = arm->dap;
1554
1555         uint32_t apsel, apid;
1556         int retval;
1557
1558         switch (CMD_ARGC) {
1559         case 0:
1560                 apsel = dap->apsel;
1561                 break;
1562         case 1:
1563                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], apsel);
1564                 /* AP address is in bits 31:24 of DP_SELECT */
1565                 if (apsel >= 256)
1566                         return ERROR_COMMAND_SYNTAX_ERROR;
1567                 break;
1568         default:
1569                 return ERROR_COMMAND_SYNTAX_ERROR;
1570         }
1571
1572         dap->apsel = apsel;
1573
1574         retval = dap_queue_ap_read(dap_ap(dap, apsel), AP_REG_IDR, &apid);
1575         if (retval != ERROR_OK)
1576                 return retval;
1577         retval = dap_run(dap);
1578         if (retval != ERROR_OK)
1579                 return retval;
1580
1581         command_print(CMD_CTX, "ap %" PRIi32 " selected, identification register 0x%8.8" PRIx32,
1582                         apsel, apid);
1583
1584         return retval;
1585 }
1586
1587 COMMAND_HANDLER(dap_apcsw_command)
1588 {
1589         struct target *target = get_current_target(CMD_CTX);
1590         struct arm *arm = target_to_arm(target);
1591         struct adiv5_dap *dap = arm->dap;
1592
1593         uint32_t apcsw = dap->ap[dap->apsel].csw_default, sprot = 0;
1594
1595         switch (CMD_ARGC) {
1596         case 0:
1597                 command_print(CMD_CTX, "apsel %" PRIi32 " selected, csw 0x%8.8" PRIx32,
1598                         (dap->apsel), apcsw);
1599                 break;
1600         case 1:
1601                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], sprot);
1602                 /* AP address is in bits 31:24 of DP_SELECT */
1603                 if (sprot > 1)
1604                         return ERROR_COMMAND_SYNTAX_ERROR;
1605                 if (sprot)
1606                         apcsw |= CSW_SPROT;
1607                 else
1608                         apcsw &= ~CSW_SPROT;
1609                 break;
1610         default:
1611                 return ERROR_COMMAND_SYNTAX_ERROR;
1612         }
1613         dap->ap[dap->apsel].csw_default = apcsw;
1614
1615         return 0;
1616 }
1617
1618
1619
1620 COMMAND_HANDLER(dap_apid_command)
1621 {
1622         struct target *target = get_current_target(CMD_CTX);
1623         struct arm *arm = target_to_arm(target);
1624         struct adiv5_dap *dap = arm->dap;
1625
1626         uint32_t apsel, apid;
1627         int retval;
1628
1629         switch (CMD_ARGC) {
1630         case 0:
1631                 apsel = dap->apsel;
1632                 break;
1633         case 1:
1634                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], apsel);
1635                 /* AP address is in bits 31:24 of DP_SELECT */
1636                 if (apsel >= 256)
1637                         return ERROR_COMMAND_SYNTAX_ERROR;
1638                 break;
1639         default:
1640                 return ERROR_COMMAND_SYNTAX_ERROR;
1641         }
1642
1643         retval = dap_queue_ap_read(dap_ap(dap, apsel), AP_REG_IDR, &apid);
1644         if (retval != ERROR_OK)
1645                 return retval;
1646         retval = dap_run(dap);
1647         if (retval != ERROR_OK)
1648                 return retval;
1649
1650         command_print(CMD_CTX, "0x%8.8" PRIx32, apid);
1651
1652         return retval;
1653 }
1654
1655 COMMAND_HANDLER(dap_apreg_command)
1656 {
1657         struct target *target = get_current_target(CMD_CTX);
1658         struct arm *arm = target_to_arm(target);
1659         struct adiv5_dap *dap = arm->dap;
1660
1661         uint32_t apsel, reg, value;
1662         int retval;
1663
1664         if (CMD_ARGC < 2 || CMD_ARGC > 3)
1665                 return ERROR_COMMAND_SYNTAX_ERROR;
1666
1667         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], apsel);
1668         /* AP address is in bits 31:24 of DP_SELECT */
1669         if (apsel >= 256)
1670                 return ERROR_COMMAND_SYNTAX_ERROR;
1671
1672         COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], reg);
1673         if (reg >= 256 || (reg & 3))
1674                 return ERROR_COMMAND_SYNTAX_ERROR;
1675
1676         if (CMD_ARGC == 3) {
1677                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[2], value);
1678                 retval = dap_queue_ap_write(dap_ap(dap, apsel), reg, value);
1679         } else {
1680                 retval = dap_queue_ap_read(dap_ap(dap, apsel), reg, &value);
1681         }
1682         if (retval == ERROR_OK)
1683                 retval = dap_run(dap);
1684
1685         if (retval != ERROR_OK)
1686                 return retval;
1687
1688         if (CMD_ARGC == 2)
1689                 command_print(CMD_CTX, "0x%08" PRIx32, value);
1690
1691         return retval;
1692 }
1693
1694 COMMAND_HANDLER(dap_ti_be_32_quirks_command)
1695 {
1696         struct target *target = get_current_target(CMD_CTX);
1697         struct arm *arm = target_to_arm(target);
1698         struct adiv5_dap *dap = arm->dap;
1699
1700         uint32_t enable = dap->ti_be_32_quirks;
1701
1702         switch (CMD_ARGC) {
1703         case 0:
1704                 break;
1705         case 1:
1706                 COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], enable);
1707                 if (enable > 1)
1708                         return ERROR_COMMAND_SYNTAX_ERROR;
1709                 break;
1710         default:
1711                 return ERROR_COMMAND_SYNTAX_ERROR;
1712         }
1713         dap->ti_be_32_quirks = enable;
1714         command_print(CMD_CTX, "TI BE-32 quirks mode %s",
1715                 enable ? "enabled" : "disabled");
1716
1717         return 0;
1718 }
1719
1720 static const struct command_registration dap_commands[] = {
1721         {
1722                 .name = "info",
1723                 .handler = handle_dap_info_command,
1724                 .mode = COMMAND_EXEC,
1725                 .help = "display ROM table for MEM-AP "
1726                         "(default currently selected AP)",
1727                 .usage = "[ap_num]",
1728         },
1729         {
1730                 .name = "apsel",
1731                 .handler = dap_apsel_command,
1732                 .mode = COMMAND_EXEC,
1733                 .help = "Set the currently selected AP (default 0) "
1734                         "and display the result",
1735                 .usage = "[ap_num]",
1736         },
1737         {
1738                 .name = "apcsw",
1739                 .handler = dap_apcsw_command,
1740                 .mode = COMMAND_EXEC,
1741                 .help = "Set csw access bit ",
1742                 .usage = "[sprot]",
1743         },
1744
1745         {
1746                 .name = "apid",
1747                 .handler = dap_apid_command,
1748                 .mode = COMMAND_EXEC,
1749                 .help = "return ID register from AP "
1750                         "(default currently selected AP)",
1751                 .usage = "[ap_num]",
1752         },
1753         {
1754                 .name = "apreg",
1755                 .handler = dap_apreg_command,
1756                 .mode = COMMAND_EXEC,
1757                 .help = "read/write a register from AP "
1758                         "(reg is byte address of a word register, like 0 4 8...)",
1759                 .usage = "ap_num reg [value]",
1760         },
1761         {
1762                 .name = "baseaddr",
1763                 .handler = dap_baseaddr_command,
1764                 .mode = COMMAND_EXEC,
1765                 .help = "return debug base address from MEM-AP "
1766                         "(default currently selected AP)",
1767                 .usage = "[ap_num]",
1768         },
1769         {
1770                 .name = "memaccess",
1771                 .handler = dap_memaccess_command,
1772                 .mode = COMMAND_EXEC,
1773                 .help = "set/get number of extra tck for MEM-AP memory "
1774                         "bus access [0-255]",
1775                 .usage = "[cycles]",
1776         },
1777         {
1778                 .name = "ti_be_32_quirks",
1779                 .handler = dap_ti_be_32_quirks_command,
1780                 .mode = COMMAND_CONFIG,
1781                 .help = "set/get quirks mode for TI TMS450/TMS570 processors",
1782                 .usage = "[enable]",
1783         },
1784         COMMAND_REGISTRATION_DONE
1785 };
1786
1787 const struct command_registration dap_command_handlers[] = {
1788         {
1789                 .name = "dap",
1790                 .mode = COMMAND_EXEC,
1791                 .help = "DAP command group",
1792                 .usage = "",
1793                 .chain = dap_commands,
1794         },
1795         COMMAND_REGISTRATION_DONE
1796 };