1 /***************************************************************************
2 * Copyright (C) 2008 digenius technology GmbH. *
5 * Copyright (C) 2008,2009 Oyvind Harboe oyvind.harboe@zylin.com *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the *
19 * Free Software Foundation, Inc., *
20 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
21 ***************************************************************************/
29 #include "time_support.h"
32 #define JTAG_DEBUG(expr ...) DEBUG(expr)
34 #define JTAG_DEBUG(expr ...) do {} while (0)
38 This pathmove goes from Pause-IR to Shift-IR while avoiding RTI. The
39 behavior of the FTDI driver IIRC was to go via RTI.
41 Conversely there may be other places in this code where the ARM11 code relies
42 on the driver to hit through RTI when coming from Update-?R.
44 tap_state_t arm11_move_pi_to_si_via_ci
[] =
46 TAP_IREXIT2
, TAP_IRUPDATE
, TAP_DRSELECT
, TAP_IRSELECT
, TAP_IRCAPTURE
, TAP_IRSHIFT
50 int arm11_add_ir_scan_vc(int num_fields
, scan_field_t
*fields
, tap_state_t state
)
52 if (cmd_queue_cur_state
== TAP_IRPAUSE
)
53 jtag_add_pathmove(asizeof(arm11_move_pi_to_si_via_ci
), arm11_move_pi_to_si_via_ci
);
55 jtag_add_ir_scan(num_fields
, fields
, state
);
59 tap_state_t arm11_move_pd_to_sd_via_cd
[] =
61 TAP_DREXIT2
, TAP_DRUPDATE
, TAP_DRSELECT
, TAP_DRCAPTURE
, TAP_DRSHIFT
64 int arm11_add_dr_scan_vc(int num_fields
, scan_field_t
*fields
, tap_state_t state
)
66 if (cmd_queue_cur_state
== TAP_DRPAUSE
)
67 jtag_add_pathmove(asizeof(arm11_move_pd_to_sd_via_cd
), arm11_move_pd_to_sd_via_cd
);
69 jtag_add_dr_scan(num_fields
, fields
, state
);
74 /** Code de-clutter: Construct scan_field_t to write out a value
76 * \param arm11 Target state variable.
77 * \param num_bits Length of the data field
78 * \param out_data pointer to the data that will be sent out
79 * <em > (data is read when it is added to the JTAG queue)</em>
80 * \param in_data pointer to the memory that will receive data that was clocked in
81 * <em > (data is written when the JTAG queue is executed)</em>
82 * \param field target data structure that will be initialized
84 void arm11_setup_field(arm11_common_t
* arm11
, int num_bits
, void * out_data
, void * in_data
, scan_field_t
* field
)
86 field
->tap
= arm11
->target
->tap
;
87 field
->num_bits
= num_bits
;
88 field
->out_value
= out_data
;
89 field
->in_value
= in_data
;
93 /** Write JTAG instruction register
95 * \param arm11 Target state variable.
96 * \param instr An ARM11 DBGTAP instruction. Use enum #arm11_instructions.
97 * \param state Pass the final TAP state or ARM11_TAP_DEFAULT for the default value (Pause-IR).
99 * \remarks This adds to the JTAG command queue but does \em not execute it.
101 void arm11_add_IR(arm11_common_t
* arm11
, uint8_t instr
, tap_state_t state
)
104 tap
= arm11
->target
->tap
;
106 if (buf_get_u32(tap
->cur_instr
, 0, 5) == instr
)
108 JTAG_DEBUG("IR <= 0x%02x SKIPPED", instr
);
112 JTAG_DEBUG("IR <= 0x%02x", instr
);
116 arm11_setup_field(arm11
, 5, &instr
, NULL
, &field
);
118 arm11_add_ir_scan_vc(1, &field
, state
== ARM11_TAP_DEFAULT
? TAP_IRPAUSE
: state
);
121 /** Verify shifted out data from Scan Chain Register (SCREG)
122 * Used as parameter to scan_field_t::in_handler in
123 * arm11_add_debug_SCAN_N().
126 static void arm11_in_handler_SCAN_N(uint8_t *in_value
)
128 /** \todo TODO: clarify why this isnt properly masked in core.c jtag_read_buffer() */
129 uint8_t v
= *in_value
& 0x1F;
133 LOG_ERROR("'arm11 target' JTAG communication error SCREG SCAN OUT 0x%02x (expected 0x10)", v
);
134 jtag_set_error(ERROR_FAIL
);
137 JTAG_DEBUG("SCREG SCAN OUT 0x%02x", v
);
140 /** Select and write to Scan Chain Register (SCREG)
142 * This function sets the instruction register to SCAN_N and writes
143 * the data register with the selected chain number.
145 * http://infocenter.arm.com/help/topic/com.arm.doc.ddi0301f/Cacbjhfg.html
147 * \param arm11 Target state variable.
148 * \param chain Scan chain that will be selected.
149 * \param state Pass the final TAP state or ARM11_TAP_DEFAULT for the default
152 * The chain takes effect when Update-DR is passed (usually when subsequently
153 * the INTEXT/EXTEST instructions are written).
155 * \warning (Obsolete) Using this twice in a row will \em fail. The first
156 * call will end in Pause-DR. The second call, due to the IR
157 * caching, will not go through Capture-DR when shifting in the
158 * new scan chain number. As a result the verification in
159 * arm11_in_handler_SCAN_N() must fail.
161 * \remarks This adds to the JTAG command queue but does \em not execute it.
164 int arm11_add_debug_SCAN_N(arm11_common_t
* arm11
, uint8_t chain
, tap_state_t state
)
166 JTAG_DEBUG("SCREG <= 0x%02x", chain
);
168 arm11_add_IR(arm11
, ARM11_SCAN_N
, ARM11_TAP_DEFAULT
);
173 arm11_setup_field(arm11
, 5, &chain
, &tmp
, &field
);
175 arm11_add_dr_scan_vc(1, &field
, state
== ARM11_TAP_DEFAULT
? TAP_DRPAUSE
: state
);
177 jtag_execute_queue_noclear();
179 arm11_in_handler_SCAN_N(tmp
);
181 return jtag_execute_queue();
184 /** Write an instruction into the ITR register
186 * \param arm11 Target state variable.
187 * \param inst An ARM11 processor instruction/opcode.
188 * \param flag Optional parameter to retrieve the InstCompl flag
189 * (this will be written when the JTAG chain is executed).
190 * \param state Pass the final TAP state or ARM11_TAP_DEFAULT for the default
191 * value (Run-Test/Idle).
193 * \remarks By default this ends with Run-Test/Idle state
194 * and causes the instruction to be executed. If
195 * a subsequent write to DTR is needed before
196 * executing the instruction then TAP_DRPAUSE should be
197 * passed to \p state.
199 * \remarks This adds to the JTAG command queue but does \em not execute it.
201 void arm11_add_debug_INST(arm11_common_t
* arm11
, uint32_t inst
, uint8_t * flag
, tap_state_t state
)
203 JTAG_DEBUG("INST <= 0x%08x", inst
);
207 arm11_setup_field(arm11
, 32, &inst
, NULL
, itr
+ 0);
208 arm11_setup_field(arm11
, 1, NULL
, flag
, itr
+ 1);
210 arm11_add_dr_scan_vc(asizeof(itr
), itr
, state
== ARM11_TAP_DEFAULT
? TAP_IDLE
: state
);
213 /** Read the Debug Status and Control Register (DSCR)
217 * \param arm11 Target state variable.
218 * \param value DSCR content
219 * \return Error status
221 * \remarks This is a stand-alone function that executes the JTAG command queue.
223 int arm11_read_DSCR(arm11_common_t
* arm11
, uint32_t *value
)
226 retval
= arm11_add_debug_SCAN_N(arm11
, 0x01, ARM11_TAP_DEFAULT
);
227 if (retval
!= ERROR_OK
)
230 arm11_add_IR(arm11
, ARM11_INTEST
, ARM11_TAP_DEFAULT
);
233 scan_field_t chain1_field
;
235 arm11_setup_field(arm11
, 32, NULL
, &dscr
, &chain1_field
);
237 arm11_add_dr_scan_vc(1, &chain1_field
, TAP_DRPAUSE
);
239 CHECK_RETVAL(jtag_execute_queue());
241 if (arm11
->last_dscr
!= dscr
)
242 JTAG_DEBUG("DSCR = %08x (OLD %08x)", dscr
, arm11
->last_dscr
);
244 arm11
->last_dscr
= dscr
;
251 /** Write the Debug Status and Control Register (DSCR)
255 * \param arm11 Target state variable.
256 * \param dscr DSCR content
258 * \remarks This is a stand-alone function that executes the JTAG command queue.
260 int arm11_write_DSCR(arm11_common_t
* arm11
, uint32_t dscr
)
263 retval
= arm11_add_debug_SCAN_N(arm11
, 0x01, ARM11_TAP_DEFAULT
);
264 if (retval
!= ERROR_OK
)
267 arm11_add_IR(arm11
, ARM11_EXTEST
, ARM11_TAP_DEFAULT
);
269 scan_field_t chain1_field
;
271 arm11_setup_field(arm11
, 32, &dscr
, NULL
, &chain1_field
);
273 arm11_add_dr_scan_vc(1, &chain1_field
, TAP_DRPAUSE
);
275 CHECK_RETVAL(jtag_execute_queue());
277 JTAG_DEBUG("DSCR <= %08x (OLD %08x)", dscr
, arm11
->last_dscr
);
279 arm11
->last_dscr
= dscr
;
286 /** Get the debug reason from Debug Status and Control Register (DSCR)
288 * \param dscr DSCR value to analyze
289 * \return Debug reason
292 enum target_debug_reason
arm11_get_DSCR_debug_reason(uint32_t dscr
)
294 switch (dscr
& ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_MASK
)
296 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_HALT
:
297 LOG_INFO("Debug entry: JTAG HALT");
298 return DBG_REASON_DBGRQ
;
300 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_BREAKPOINT
:
301 LOG_INFO("Debug entry: breakpoint");
302 return DBG_REASON_BREAKPOINT
;
304 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_WATCHPOINT
:
305 LOG_INFO("Debug entry: watchpoint");
306 return DBG_REASON_WATCHPOINT
;
308 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_BKPT_INSTRUCTION
:
309 LOG_INFO("Debug entry: BKPT instruction");
310 return DBG_REASON_BREAKPOINT
;
312 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_EDBGRQ
:
313 LOG_INFO("Debug entry: EDBGRQ signal");
314 return DBG_REASON_DBGRQ
;
316 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_VECTOR_CATCH
:
317 LOG_INFO("Debug entry: VCR vector catch");
318 return DBG_REASON_BREAKPOINT
;
321 LOG_INFO("Debug entry: unknown");
322 return DBG_REASON_DBGRQ
;
328 /** Prepare the stage for ITR/DTR operations
329 * from the arm11_run_instr... group of functions.
331 * Put arm11_run_instr_data_prepare() and arm11_run_instr_data_finish()
332 * around a block of arm11_run_instr_... calls.
334 * Select scan chain 5 to allow quick access to DTR. When scan
335 * chain 4 is needed to put in a register the ITRSel instruction
336 * shortcut is used instead of actually changing the Scan_N
339 * \param arm11 Target state variable.
342 int arm11_run_instr_data_prepare(arm11_common_t
* arm11
)
344 return arm11_add_debug_SCAN_N(arm11
, 0x05, ARM11_TAP_DEFAULT
);
347 /** Cleanup after ITR/DTR operations
348 * from the arm11_run_instr... group of functions
350 * Put arm11_run_instr_data_prepare() and arm11_run_instr_data_finish()
351 * around a block of arm11_run_instr_... calls.
353 * Any IDLE can lead to an instruction execution when
354 * scan chains 4 or 5 are selected and the IR holds
355 * INTEST or EXTEST. So we must disable that before
356 * any following activities lead to an IDLE.
358 * \param arm11 Target state variable.
361 int arm11_run_instr_data_finish(arm11_common_t
* arm11
)
363 return arm11_add_debug_SCAN_N(arm11
, 0x00, ARM11_TAP_DEFAULT
);
368 /** Execute one or multiple instructions via ITR
370 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
372 * \param arm11 Target state variable.
373 * \param opcode Pointer to sequence of ARM opcodes
374 * \param count Number of opcodes to execute
377 int arm11_run_instr_no_data(arm11_common_t
* arm11
, uint32_t * opcode
, size_t count
)
379 arm11_add_IR(arm11
, ARM11_ITRSEL
, ARM11_TAP_DEFAULT
);
383 arm11_add_debug_INST(arm11
, *opcode
++, NULL
, TAP_IDLE
);
390 arm11_add_debug_INST(arm11
, 0, &flag
, count
? TAP_IDLE
: TAP_DRPAUSE
);
392 CHECK_RETVAL(jtag_execute_queue());
405 if ((timeval_ms()-then
) > 1000)
407 LOG_WARNING("Timeout (1000ms) waiting for instructions to complete");
419 /** Execute one instruction via ITR
421 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
423 * \param arm11 Target state variable.
424 * \param opcode ARM opcode
427 int arm11_run_instr_no_data1(arm11_common_t
* arm11
, uint32_t opcode
)
429 return arm11_run_instr_no_data(arm11
, &opcode
, 1);
433 /** Execute one instruction via ITR repeatedly while
434 * passing data to the core via DTR on each execution.
436 * The executed instruction \em must read data from DTR.
438 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
440 * \param arm11 Target state variable.
441 * \param opcode ARM opcode
442 * \param data Pointer to the data words to be passed to the core
443 * \param count Number of data words and instruction repetitions
446 int arm11_run_instr_data_to_core(arm11_common_t
* arm11
, uint32_t opcode
, uint32_t * data
, size_t count
)
448 arm11_add_IR(arm11
, ARM11_ITRSEL
, ARM11_TAP_DEFAULT
);
450 arm11_add_debug_INST(arm11
, opcode
, NULL
, TAP_DRPAUSE
);
452 arm11_add_IR(arm11
, ARM11_EXTEST
, ARM11_TAP_DEFAULT
);
454 scan_field_t chain5_fields
[3];
460 arm11_setup_field(arm11
, 32, &Data
, NULL
, chain5_fields
+ 0);
461 arm11_setup_field(arm11
, 1, NULL
, &Ready
, chain5_fields
+ 1);
462 arm11_setup_field(arm11
, 1, NULL
, &nRetry
, chain5_fields
+ 2);
471 arm11_add_dr_scan_vc(asizeof(chain5_fields
), chain5_fields
, jtag_set_end_state(TAP_IDLE
));
473 CHECK_RETVAL(jtag_execute_queue());
475 JTAG_DEBUG("DTR Ready %d nRetry %d", Ready
, nRetry
);
485 if ((timeval_ms()-then
) > 1000)
487 LOG_WARNING("Timeout (1000ms) waiting for instructions to complete");
499 arm11_add_IR(arm11
, ARM11_INTEST
, ARM11_TAP_DEFAULT
);
506 arm11_add_dr_scan_vc(asizeof(chain5_fields
), chain5_fields
, TAP_DRPAUSE
);
508 CHECK_RETVAL(jtag_execute_queue());
510 JTAG_DEBUG("DTR Data %08x Ready %d nRetry %d", Data
, Ready
, nRetry
);
520 if ((timeval_ms()-then
) > 1000)
522 LOG_WARNING("Timeout (1000ms) waiting for instructions to complete");
534 /** JTAG path for arm11_run_instr_data_to_core_noack
536 * The repeated TAP_IDLE's do not cause a repeated execution
537 * if passed without leaving the state.
539 * Since this is more than 7 bits (adjustable via adding more
540 * TAP_IDLE's) it produces an artificial delay in the lower
541 * layer (FT2232) that is long enough to finish execution on
542 * the core but still shorter than any manually inducible delays.
544 * To disable this code, try "memwrite burst false"
546 * FIX!!! should we use multiple TAP_IDLE here or not???
548 * https://lists.berlios.de/pipermail/openocd-development/2009-July/009698.html
549 * https://lists.berlios.de/pipermail/openocd-development/2009-August/009865.html
551 tap_state_t arm11_MOVE_DRPAUSE_IDLE_DRPAUSE_with_delay
[] =
553 TAP_DREXIT2
, TAP_DRUPDATE
, TAP_IDLE
, TAP_IDLE
, TAP_IDLE
, TAP_DRSELECT
, TAP_DRCAPTURE
, TAP_DRSHIFT
558 /** Execute one instruction via ITR repeatedly while
559 * passing data to the core via DTR on each execution.
561 * No Ready check during transmission.
563 * The executed instruction \em must read data from DTR.
565 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
567 * \param arm11 Target state variable.
568 * \param opcode ARM opcode
569 * \param data Pointer to the data words to be passed to the core
570 * \param count Number of data words and instruction repetitions
573 int arm11_run_instr_data_to_core_noack(arm11_common_t
* arm11
, uint32_t opcode
, uint32_t * data
, size_t count
)
575 arm11_add_IR(arm11
, ARM11_ITRSEL
, ARM11_TAP_DEFAULT
);
577 arm11_add_debug_INST(arm11
, opcode
, NULL
, TAP_DRPAUSE
);
579 arm11_add_IR(arm11
, ARM11_EXTEST
, ARM11_TAP_DEFAULT
);
581 scan_field_t chain5_fields
[3];
583 arm11_setup_field(arm11
, 32, NULL
/*&Data*/, NULL
, chain5_fields
+ 0);
584 arm11_setup_field(arm11
, 1, NULL
, NULL
/*&Ready*/, chain5_fields
+ 1);
585 arm11_setup_field(arm11
, 1, NULL
, NULL
, chain5_fields
+ 2);
588 size_t readiesNum
= (count
+ 1);
589 size_t bytes
= sizeof(*Readies
)*readiesNum
;
590 Readies
= (uint8_t *) malloc(bytes
);
593 LOG_ERROR("Out of memory allocating " ZU
" bytes", bytes
);
597 uint8_t * ReadyPos
= Readies
;
601 chain5_fields
[0].out_value
= (void *)(data
++);
602 chain5_fields
[1].in_value
= ReadyPos
++;
606 jtag_add_dr_scan(asizeof(chain5_fields
), chain5_fields
, jtag_set_end_state(TAP_DRPAUSE
));
607 jtag_add_pathmove(asizeof(arm11_MOVE_DRPAUSE_IDLE_DRPAUSE_with_delay
),
608 arm11_MOVE_DRPAUSE_IDLE_DRPAUSE_with_delay
);
612 jtag_add_dr_scan(asizeof(chain5_fields
), chain5_fields
, jtag_set_end_state(TAP_IDLE
));
616 arm11_add_IR(arm11
, ARM11_INTEST
, ARM11_TAP_DEFAULT
);
618 chain5_fields
[0].out_value
= 0;
619 chain5_fields
[1].in_value
= ReadyPos
++;
621 arm11_add_dr_scan_vc(asizeof(chain5_fields
), chain5_fields
, TAP_DRPAUSE
);
623 int retval
= jtag_execute_queue();
624 if (retval
== ERROR_OK
)
626 size_t error_count
= 0;
628 for (size_t i
= 0; i
< readiesNum
; i
++)
636 if (error_count
> 0 )
637 LOG_ERROR(ZU
" words out of " ZU
" not transferred", error_count
, readiesNum
);
647 /** Execute an instruction via ITR while handing data into the core via DTR.
649 * The executed instruction \em must read data from DTR.
651 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
653 * \param arm11 Target state variable.
654 * \param opcode ARM opcode
655 * \param data Data word to be passed to the core via DTR
658 int arm11_run_instr_data_to_core1(arm11_common_t
* arm11
, uint32_t opcode
, uint32_t data
)
660 return arm11_run_instr_data_to_core(arm11
, opcode
, &data
, 1);
664 /** Execute one instruction via ITR repeatedly while
665 * reading data from the core via DTR on each execution.
667 * The executed instruction \em must write data to DTR.
669 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
671 * \param arm11 Target state variable.
672 * \param opcode ARM opcode
673 * \param data Pointer to an array that receives the data words from the core
674 * \param count Number of data words and instruction repetitions
677 int arm11_run_instr_data_from_core(arm11_common_t
* arm11
, uint32_t opcode
, uint32_t * data
, size_t count
)
679 arm11_add_IR(arm11
, ARM11_ITRSEL
, ARM11_TAP_DEFAULT
);
681 arm11_add_debug_INST(arm11
, opcode
, NULL
, TAP_IDLE
);
683 arm11_add_IR(arm11
, ARM11_INTEST
, ARM11_TAP_DEFAULT
);
685 scan_field_t chain5_fields
[3];
691 arm11_setup_field(arm11
, 32, NULL
, &Data
, chain5_fields
+ 0);
692 arm11_setup_field(arm11
, 1, NULL
, &Ready
, chain5_fields
+ 1);
693 arm11_setup_field(arm11
, 1, NULL
, &nRetry
, chain5_fields
+ 2);
700 arm11_add_dr_scan_vc(asizeof(chain5_fields
), chain5_fields
, count
? TAP_IDLE
: TAP_DRPAUSE
);
702 CHECK_RETVAL(jtag_execute_queue());
704 JTAG_DEBUG("DTR Data %08x Ready %d nRetry %d", Data
, Ready
, nRetry
);
714 if ((timeval_ms()-then
) > 1000)
716 LOG_WARNING("Timeout (1000ms) waiting for instructions to complete");
731 /** Execute one instruction via ITR
732 * then load r0 into DTR and read DTR from core.
734 * The first executed instruction (\p opcode) should write data to r0.
736 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
738 * \param arm11 Target state variable.
739 * \param opcode ARM opcode to write r0 with the value of interest
740 * \param data Pointer to a data word that receives the value from r0 after \p opcode was executed.
743 int arm11_run_instr_data_from_core_via_r0(arm11_common_t
* arm11
, uint32_t opcode
, uint32_t * data
)
746 retval
= arm11_run_instr_no_data1(arm11
, opcode
);
747 if (retval
!= ERROR_OK
)
750 /* MCR p14,0,R0,c0,c5,0 (move r0 -> wDTR -> local var) */
751 arm11_run_instr_data_from_core(arm11
, 0xEE000E15, data
, 1);
756 /** Load data into core via DTR then move it to r0 then
757 * execute one instruction via ITR
759 * The final executed instruction (\p opcode) should read data from r0.
761 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
763 * \param arm11 Target state variable.
764 * \param opcode ARM opcode to read r0 act upon it
765 * \param data Data word that will be written to r0 before \p opcode is executed
768 int arm11_run_instr_data_to_core_via_r0(arm11_common_t
* arm11
, uint32_t opcode
, uint32_t data
)
771 /* MRC p14,0,r0,c0,c5,0 */
772 retval
= arm11_run_instr_data_to_core1(arm11
, 0xEE100E15, data
);
773 if (retval
!= ERROR_OK
)
776 retval
= arm11_run_instr_no_data1(arm11
, opcode
);
777 if (retval
!= ERROR_OK
)
783 /** Apply reads and writes to scan chain 7
785 * \see arm11_sc7_action_t
787 * \param arm11 Target state variable.
788 * \param actions A list of read and/or write instructions
789 * \param count Number of instructions in the list.
792 int arm11_sc7_run(arm11_common_t
* arm11
, arm11_sc7_action_t
* actions
, size_t count
)
796 retval
= arm11_add_debug_SCAN_N(arm11
, 0x07, ARM11_TAP_DEFAULT
);
797 if (retval
!= ERROR_OK
)
800 arm11_add_IR(arm11
, ARM11_EXTEST
, ARM11_TAP_DEFAULT
);
802 scan_field_t chain7_fields
[3];
811 arm11_setup_field(arm11
, 1, &nRW
, &Ready
, chain7_fields
+ 0);
812 arm11_setup_field(arm11
, 32, &DataOut
, &DataIn
, chain7_fields
+ 1);
813 arm11_setup_field(arm11
, 7, &AddressOut
, &AddressIn
, chain7_fields
+ 2);
815 for (size_t i
= 0; i
< count
+ 1; i
++)
819 nRW
= actions
[i
].write
? 1 : 0;
820 DataOut
= actions
[i
].value
;
821 AddressOut
= actions
[i
].address
;
832 JTAG_DEBUG("SC7 <= Address %02x Data %08x nRW %d", AddressOut
, DataOut
, nRW
);
834 arm11_add_dr_scan_vc(asizeof(chain7_fields
), chain7_fields
, TAP_DRPAUSE
);
836 CHECK_RETVAL(jtag_execute_queue());
838 JTAG_DEBUG("SC7 => Address %02x Data %08x Ready %d", AddressIn
, DataIn
, Ready
);
840 while (!Ready
); /* 'nRW' is 'Ready' on read out */
844 if (actions
[i
- 1].address
!= AddressIn
)
846 LOG_WARNING("Scan chain 7 shifted out unexpected address");
849 if (!actions
[i
- 1].write
)
851 actions
[i
- 1].value
= DataIn
;
855 if (actions
[i
- 1].value
!= DataIn
)
857 LOG_WARNING("Scan chain 7 shifted out unexpected data");
863 for (size_t i
= 0; i
< count
; i
++)
865 JTAG_DEBUG("SC7 %02d: %02x %s %08x", i
, actions
[i
].address
, actions
[i
].write
? "<=" : "=>", actions
[i
].value
);
871 /** Clear VCR and all breakpoints and watchpoints via scan chain 7
873 * \param arm11 Target state variable.
876 void arm11_sc7_clear_vbw(arm11_common_t
* arm11
)
878 arm11_sc7_action_t clear_bw
[arm11
->brp
+ arm11
->wrp
+ 1];
879 arm11_sc7_action_t
* pos
= clear_bw
;
881 for (size_t i
= 0; i
< asizeof(clear_bw
); i
++)
883 clear_bw
[i
].write
= true;
884 clear_bw
[i
].value
= 0;
887 for (size_t i
= 0; i
< arm11
->brp
; i
++)
888 (pos
++)->address
= ARM11_SC7_BCR0
+ i
;
891 for (size_t i
= 0; i
< arm11
->wrp
; i
++)
892 (pos
++)->address
= ARM11_SC7_WCR0
+ i
;
895 (pos
++)->address
= ARM11_SC7_VCR
;
897 arm11_sc7_run(arm11
, clear_bw
, asizeof(clear_bw
));
900 /** Write VCR register
902 * \param arm11 Target state variable.
903 * \param value Value to be written
905 void arm11_sc7_set_vcr(arm11_common_t
* arm11
, uint32_t value
)
907 arm11_sc7_action_t set_vcr
;
909 set_vcr
.write
= true;
910 set_vcr
.address
= ARM11_SC7_VCR
;
911 set_vcr
.value
= value
;
914 arm11_sc7_run(arm11
, &set_vcr
, 1);
919 /** Read word from address
921 * \param arm11 Target state variable.
922 * \param address Memory address to be read
923 * \param result Pointer where to store result
926 int arm11_read_memory_word(arm11_common_t
* arm11
, uint32_t address
, uint32_t * result
)
929 retval
= arm11_run_instr_data_prepare(arm11
);
930 if (retval
!= ERROR_OK
)
933 /* MRC p14,0,r0,c0,c5,0 (r0 = address) */
934 CHECK_RETVAL(arm11_run_instr_data_to_core1(arm11
, 0xee100e15, address
));
936 /* LDC p14,c5,[R0],#4 (DTR = [r0]) */
937 CHECK_RETVAL(arm11_run_instr_data_from_core(arm11
, 0xecb05e01, result
, 1));
939 return arm11_run_instr_data_finish(arm11
);