- Replace 'while(' with 'while ('.
[openocd.git] / src / target / arm11_dbgtap.c
blob6a5b7ba289da05ed73a5e571d82fb8dd7a91f736
1 /***************************************************************************
2 * Copyright (C) 2008 digenius technology GmbH. *
3 * Michael Bruck *
4 * *
5 * Copyright (C) 2008 Oyvind Harboe oyvind.harboe@zylin.com *
6 * *
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. *
11 * *
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. *
16 * *
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 ***************************************************************************/
23 #ifdef HAVE_CONFIG_H
24 #include "config.h"
25 #endif
27 #include "arm11.h"
30 #if 0
31 #define JTAG_DEBUG(expr ...) DEBUG(expr)
32 #else
33 #define JTAG_DEBUG(expr ...) do {} while (0)
34 #endif
37 This pathmove goes from Pause-IR to Shift-IR while avoiding RTI. The
38 behavior of the FTDI driver IIRC was to go via RTI.
40 Conversely there may be other places in this code where the ARM11 code relies
41 on the driver to hit through RTI when coming from Update-?R.
43 tap_state_t arm11_move_pi_to_si_via_ci[] =
45 TAP_IREXIT2, TAP_IRUPDATE, TAP_DRSELECT, TAP_IRSELECT, TAP_IRCAPTURE, TAP_IRSHIFT
49 int arm11_add_ir_scan_vc(int num_fields, scan_field_t *fields, tap_state_t state)
51 if (cmd_queue_cur_state == TAP_IRPAUSE)
52 jtag_add_pathmove(asizeof(arm11_move_pi_to_si_via_ci), arm11_move_pi_to_si_via_ci);
54 jtag_add_ir_scan(num_fields, fields, state);
55 return ERROR_OK;
58 tap_state_t arm11_move_pd_to_sd_via_cd[] =
60 TAP_DREXIT2, TAP_DRUPDATE, TAP_DRSELECT, TAP_DRCAPTURE, TAP_DRSHIFT
63 int arm11_add_dr_scan_vc(int num_fields, scan_field_t *fields, tap_state_t state)
65 if (cmd_queue_cur_state == TAP_DRPAUSE)
66 jtag_add_pathmove(asizeof(arm11_move_pd_to_sd_via_cd), arm11_move_pd_to_sd_via_cd);
68 jtag_add_dr_scan(num_fields, fields, state);
69 return ERROR_OK;
73 /** Code de-clutter: Construct scan_field_t to write out a value
75 * \param arm11 Target state variable.
76 * \param num_bits Length of the data field
77 * \param out_data pointer to the data that will be sent out
78 * <em>(data is read when it is added to the JTAG queue)</em>
79 * \param in_data pointer to the memory that will receive data that was clocked in
80 * <em>(data is written when the JTAG queue is executed)</em>
81 * \param field target data structure that will be initialized
83 void arm11_setup_field(arm11_common_t * arm11, int num_bits, void * out_data, void * in_data, scan_field_t * field)
85 field->tap = arm11->target->tap;
86 field->num_bits = num_bits;
87 field->out_value = out_data;
88 field->in_value = in_data;
92 /** Write JTAG instruction register
94 * \param arm11 Target state variable.
95 * \param instr An ARM11 DBGTAP instruction. Use enum #arm11_instructions.
96 * \param state Pass the final TAP state or ARM11_TAP_DEFAULT for the default value (Pause-IR).
98 * \remarks This adds to the JTAG command queue but does \em not execute it.
100 void arm11_add_IR(arm11_common_t * arm11, uint8_t instr, tap_state_t state)
102 jtag_tap_t *tap;
103 tap = arm11->target->tap;
105 if (buf_get_u32(tap->cur_instr, 0, 5) == instr)
107 JTAG_DEBUG("IR <= 0x%02x SKIPPED", instr);
108 return;
111 JTAG_DEBUG("IR <= 0x%02x", instr);
113 scan_field_t field;
115 arm11_setup_field(arm11, 5, &instr, NULL, &field);
117 arm11_add_ir_scan_vc(1, &field, state == ARM11_TAP_DEFAULT ? TAP_IRPAUSE : state);
120 /** Verify shifted out data from Scan Chain Register (SCREG)
121 * Used as parameter to scan_field_t::in_handler in
122 * arm11_add_debug_SCAN_N().
125 static void arm11_in_handler_SCAN_N(uint8_t *in_value)
127 /** \todo TODO: clarify why this isnt properly masked in core.c jtag_read_buffer() */
128 uint8_t v = *in_value & 0x1F;
130 if (v != 0x10)
132 LOG_ERROR("'arm11 target' JTAG communication error SCREG SCAN OUT 0x%02x (expected 0x10)", v);
133 jtag_set_error(ERROR_FAIL);
136 JTAG_DEBUG("SCREG SCAN OUT 0x%02x", v);
139 /** Select and write to Scan Chain Register (SCREG)
141 * This function sets the instruction register to SCAN_N and writes
142 * the data register with the selected chain number.
144 * http://infocenter.arm.com/help/topic/com.arm.doc.ddi0301f/Cacbjhfg.html
146 * \param arm11 Target state variable.
147 * \param chain Scan chain that will be selected.
148 * \param state Pass the final TAP state or ARM11_TAP_DEFAULT for the default
149 * value (Pause-DR).
151 * The chain takes effect when Update-DR is passed (usually when subsequently
152 * the INTEXT/EXTEST instructions are written).
154 * \warning (Obsolete) Using this twice in a row will \em fail. The first
155 * call will end in Pause-DR. The second call, due to the IR
156 * caching, will not go through Capture-DR when shifting in the
157 * new scan chain number. As a result the verification in
158 * arm11_in_handler_SCAN_N() must fail.
160 * \remarks This adds to the JTAG command queue but does \em not execute it.
163 void arm11_add_debug_SCAN_N(arm11_common_t * arm11, uint8_t chain, tap_state_t state)
165 JTAG_DEBUG("SCREG <= 0x%02x", chain);
167 arm11_add_IR(arm11, ARM11_SCAN_N, ARM11_TAP_DEFAULT);
169 scan_field_t field;
171 uint8_t tmp[1];
172 arm11_setup_field(arm11, 5, &chain, &tmp, &field);
174 arm11_add_dr_scan_vc(1, &field, state == ARM11_TAP_DEFAULT ? TAP_DRPAUSE : state);
176 jtag_execute_queue_noclear();
178 arm11_in_handler_SCAN_N(tmp);
181 /** Write an instruction into the ITR register
183 * \param arm11 Target state variable.
184 * \param inst An ARM11 processor instruction/opcode.
185 * \param flag Optional parameter to retrieve the InstCompl flag
186 * (this will be written when the JTAG chain is executed).
187 * \param state Pass the final TAP state or ARM11_TAP_DEFAULT for the default
188 * value (Run-Test/Idle).
190 * \remarks By default this ends with Run-Test/Idle state
191 * and causes the instruction to be executed. If
192 * a subsequent write to DTR is needed before
193 * executing the instruction then TAP_DRPAUSE should be
194 * passed to \p state.
196 * \remarks This adds to the JTAG command queue but does \em not execute it.
198 void arm11_add_debug_INST(arm11_common_t * arm11, uint32_t inst, uint8_t * flag, tap_state_t state)
200 JTAG_DEBUG("INST <= 0x%08x", inst);
202 scan_field_t itr[2];
204 arm11_setup_field(arm11, 32, &inst, NULL, itr + 0);
205 arm11_setup_field(arm11, 1, NULL, flag, itr + 1);
207 arm11_add_dr_scan_vc(asizeof(itr), itr, state == ARM11_TAP_DEFAULT ? TAP_IDLE : state);
210 /** Read the Debug Status and Control Register (DSCR)
212 * same as CP14 c1
214 * \param arm11 Target state variable.
215 * \param value DSCR content
216 * \return Error status
218 * \remarks This is a stand-alone function that executes the JTAG command queue.
220 int arm11_read_DSCR(arm11_common_t * arm11, uint32_t *value)
222 arm11_add_debug_SCAN_N(arm11, 0x01, ARM11_TAP_DEFAULT);
224 arm11_add_IR(arm11, ARM11_INTEST, ARM11_TAP_DEFAULT);
226 uint32_t dscr;
227 scan_field_t chain1_field;
229 arm11_setup_field(arm11, 32, NULL, &dscr, &chain1_field);
231 arm11_add_dr_scan_vc(1, &chain1_field, TAP_DRPAUSE);
233 CHECK_RETVAL(jtag_execute_queue());
235 if (arm11->last_dscr != dscr)
236 JTAG_DEBUG("DSCR = %08x (OLD %08x)", dscr, arm11->last_dscr);
238 arm11->last_dscr = dscr;
240 *value=dscr;
242 return ERROR_OK;
245 /** Write the Debug Status and Control Register (DSCR)
247 * same as CP14 c1
249 * \param arm11 Target state variable.
250 * \param dscr DSCR content
252 * \remarks This is a stand-alone function that executes the JTAG command queue.
254 int arm11_write_DSCR(arm11_common_t * arm11, uint32_t dscr)
256 arm11_add_debug_SCAN_N(arm11, 0x01, ARM11_TAP_DEFAULT);
258 arm11_add_IR(arm11, ARM11_EXTEST, ARM11_TAP_DEFAULT);
260 scan_field_t chain1_field;
262 arm11_setup_field(arm11, 32, &dscr, NULL, &chain1_field);
264 arm11_add_dr_scan_vc(1, &chain1_field, TAP_DRPAUSE);
266 CHECK_RETVAL(jtag_execute_queue());
268 JTAG_DEBUG("DSCR <= %08x (OLD %08x)", dscr, arm11->last_dscr);
270 arm11->last_dscr = dscr;
272 return ERROR_OK;
277 /** Get the debug reason from Debug Status and Control Register (DSCR)
279 * \param dscr DSCR value to analyze
280 * \return Debug reason
283 enum target_debug_reason arm11_get_DSCR_debug_reason(uint32_t dscr)
285 switch (dscr & ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_MASK)
287 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_HALT:
288 LOG_INFO("Debug entry: JTAG HALT");
289 return DBG_REASON_DBGRQ;
291 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_BREAKPOINT:
292 LOG_INFO("Debug entry: breakpoint");
293 return DBG_REASON_BREAKPOINT;
295 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_WATCHPOINT:
296 LOG_INFO("Debug entry: watchpoint");
297 return DBG_REASON_WATCHPOINT;
299 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_BKPT_INSTRUCTION:
300 LOG_INFO("Debug entry: BKPT instruction");
301 return DBG_REASON_BREAKPOINT;
303 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_EDBGRQ:
304 LOG_INFO("Debug entry: EDBGRQ signal");
305 return DBG_REASON_DBGRQ;
307 case ARM11_DSCR_METHOD_OF_DEBUG_ENTRY_VECTOR_CATCH:
308 LOG_INFO("Debug entry: VCR vector catch");
309 return DBG_REASON_BREAKPOINT;
311 default:
312 LOG_INFO("Debug entry: unknown");
313 return DBG_REASON_DBGRQ;
319 /** Prepare the stage for ITR/DTR operations
320 * from the arm11_run_instr... group of functions.
322 * Put arm11_run_instr_data_prepare() and arm11_run_instr_data_finish()
323 * around a block of arm11_run_instr_... calls.
325 * Select scan chain 5 to allow quick access to DTR. When scan
326 * chain 4 is needed to put in a register the ITRSel instruction
327 * shortcut is used instead of actually changing the Scan_N
328 * register.
330 * \param arm11 Target state variable.
333 void arm11_run_instr_data_prepare(arm11_common_t * arm11)
335 arm11_add_debug_SCAN_N(arm11, 0x05, ARM11_TAP_DEFAULT);
338 /** Cleanup after ITR/DTR operations
339 * from the arm11_run_instr... group of functions
341 * Put arm11_run_instr_data_prepare() and arm11_run_instr_data_finish()
342 * around a block of arm11_run_instr_... calls.
344 * Any IDLE can lead to an instruction execution when
345 * scan chains 4 or 5 are selected and the IR holds
346 * INTEST or EXTEST. So we must disable that before
347 * any following activities lead to an IDLE.
349 * \param arm11 Target state variable.
352 void arm11_run_instr_data_finish(arm11_common_t * arm11)
354 arm11_add_debug_SCAN_N(arm11, 0x00, ARM11_TAP_DEFAULT);
358 /** Execute one or multiple instructions via ITR
360 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
362 * \param arm11 Target state variable.
363 * \param opcode Pointer to sequence of ARM opcodes
364 * \param count Number of opcodes to execute
367 int arm11_run_instr_no_data(arm11_common_t * arm11, uint32_t * opcode, size_t count)
369 arm11_add_IR(arm11, ARM11_ITRSEL, ARM11_TAP_DEFAULT);
371 while (count--)
373 arm11_add_debug_INST(arm11, *opcode++, NULL, TAP_IDLE);
375 while (1)
377 uint8_t flag;
379 arm11_add_debug_INST(arm11, 0, &flag, count ? TAP_IDLE : TAP_DRPAUSE);
381 CHECK_RETVAL(jtag_execute_queue());
383 if (flag)
384 break;
388 return ERROR_OK;
391 /** Execute one instruction via ITR
393 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
395 * \param arm11 Target state variable.
396 * \param opcode ARM opcode
399 void arm11_run_instr_no_data1(arm11_common_t * arm11, uint32_t opcode)
401 arm11_run_instr_no_data(arm11, &opcode, 1);
405 /** Execute one instruction via ITR repeatedly while
406 * passing data to the core via DTR on each execution.
408 * The executed instruction \em must read data from DTR.
410 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
412 * \param arm11 Target state variable.
413 * \param opcode ARM opcode
414 * \param data Pointer to the data words to be passed to the core
415 * \param count Number of data words and instruction repetitions
418 int arm11_run_instr_data_to_core(arm11_common_t * arm11, uint32_t opcode, uint32_t * data, size_t count)
420 arm11_add_IR(arm11, ARM11_ITRSEL, ARM11_TAP_DEFAULT);
422 arm11_add_debug_INST(arm11, opcode, NULL, TAP_DRPAUSE);
424 arm11_add_IR(arm11, ARM11_EXTEST, ARM11_TAP_DEFAULT);
426 scan_field_t chain5_fields[3];
428 uint32_t Data;
429 uint8_t Ready;
430 uint8_t nRetry;
432 arm11_setup_field(arm11, 32, &Data, NULL, chain5_fields + 0);
433 arm11_setup_field(arm11, 1, NULL, &Ready, chain5_fields + 1);
434 arm11_setup_field(arm11, 1, NULL, &nRetry, chain5_fields + 2);
436 while (count--)
440 Data = *data;
442 arm11_add_dr_scan_vc(asizeof(chain5_fields), chain5_fields, jtag_set_end_state(TAP_IDLE));
444 CHECK_RETVAL(jtag_execute_queue());
446 JTAG_DEBUG("DTR Ready %d nRetry %d", Ready, nRetry);
448 while (!Ready);
450 data++;
453 arm11_add_IR(arm11, ARM11_INTEST, ARM11_TAP_DEFAULT);
457 Data = 0;
459 arm11_add_dr_scan_vc(asizeof(chain5_fields), chain5_fields, TAP_DRPAUSE);
461 CHECK_RETVAL(jtag_execute_queue());
463 JTAG_DEBUG("DTR Data %08x Ready %d nRetry %d", Data, Ready, nRetry);
465 while (!Ready);
467 return ERROR_OK;
470 /** JTAG path for arm11_run_instr_data_to_core_noack
472 * The repeated TAP_IDLE's do not cause a repeated execution
473 * if passed without leaving the state.
475 * Since this is more than 7 bits (adjustable via adding more
476 * TAP_IDLE's) it produces an artificial delay in the lower
477 * layer (FT2232) that is long enough to finish execution on
478 * the core but still shorter than any manually inducible delays.
480 * To disable this code, try "memwrite burst false"
483 tap_state_t arm11_MOVE_DRPAUSE_IDLE_DRPAUSE_with_delay[] =
485 TAP_DREXIT2, TAP_DRUPDATE, TAP_IDLE, TAP_IDLE, TAP_IDLE, TAP_DRSELECT, TAP_DRCAPTURE, TAP_DRSHIFT
490 /** Execute one instruction via ITR repeatedly while
491 * passing data to the core via DTR on each execution.
493 * No Ready check during transmission.
495 * The executed instruction \em must read data from DTR.
497 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
499 * \param arm11 Target state variable.
500 * \param opcode ARM opcode
501 * \param data Pointer to the data words to be passed to the core
502 * \param count Number of data words and instruction repetitions
505 int arm11_run_instr_data_to_core_noack(arm11_common_t * arm11, uint32_t opcode, uint32_t * data, size_t count)
507 arm11_add_IR(arm11, ARM11_ITRSEL, ARM11_TAP_DEFAULT);
509 arm11_add_debug_INST(arm11, opcode, NULL, TAP_DRPAUSE);
511 arm11_add_IR(arm11, ARM11_EXTEST, ARM11_TAP_DEFAULT);
513 scan_field_t chain5_fields[3];
515 arm11_setup_field(arm11, 32, NULL/*&Data*/, NULL, chain5_fields + 0);
516 arm11_setup_field(arm11, 1, NULL, NULL /*&Ready*/, chain5_fields + 1);
517 arm11_setup_field(arm11, 1, NULL, NULL, chain5_fields + 2);
519 uint8_t Readies[count + 1];
520 uint8_t * ReadyPos = Readies;
522 while (count--)
524 chain5_fields[0].out_value = (void *)(data++);
525 chain5_fields[1].in_value = ReadyPos++;
527 if (count)
529 jtag_add_dr_scan(asizeof(chain5_fields), chain5_fields, jtag_set_end_state(TAP_DRPAUSE));
530 jtag_add_pathmove(asizeof(arm11_MOVE_DRPAUSE_IDLE_DRPAUSE_with_delay),
531 arm11_MOVE_DRPAUSE_IDLE_DRPAUSE_with_delay);
533 else
535 jtag_add_dr_scan(asizeof(chain5_fields), chain5_fields, jtag_set_end_state(TAP_IDLE));
539 arm11_add_IR(arm11, ARM11_INTEST, ARM11_TAP_DEFAULT);
541 chain5_fields[0].out_value = 0;
542 chain5_fields[1].in_value = ReadyPos++;
544 arm11_add_dr_scan_vc(asizeof(chain5_fields), chain5_fields, TAP_DRPAUSE);
546 CHECK_RETVAL(jtag_execute_queue());
548 size_t error_count = 0;
550 for (size_t i = 0; i < asizeof(Readies); i++)
552 if (Readies[i] != 1)
554 error_count++;
558 if (error_count)
559 LOG_ERROR("Transfer errors " ZU, error_count);
561 return ERROR_OK;
565 /** Execute an instruction via ITR while handing data into the core via DTR.
567 * The executed instruction \em must read data from DTR.
569 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
571 * \param arm11 Target state variable.
572 * \param opcode ARM opcode
573 * \param data Data word to be passed to the core via DTR
576 int arm11_run_instr_data_to_core1(arm11_common_t * arm11, uint32_t opcode, uint32_t data)
578 return arm11_run_instr_data_to_core(arm11, opcode, &data, 1);
582 /** Execute one instruction via ITR repeatedly while
583 * reading data from the core via DTR on each execution.
585 * The executed instruction \em must write data to DTR.
587 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
589 * \param arm11 Target state variable.
590 * \param opcode ARM opcode
591 * \param data Pointer to an array that receives the data words from the core
592 * \param count Number of data words and instruction repetitions
595 int arm11_run_instr_data_from_core(arm11_common_t * arm11, uint32_t opcode, uint32_t * data, size_t count)
597 arm11_add_IR(arm11, ARM11_ITRSEL, ARM11_TAP_DEFAULT);
599 arm11_add_debug_INST(arm11, opcode, NULL, TAP_IDLE);
601 arm11_add_IR(arm11, ARM11_INTEST, ARM11_TAP_DEFAULT);
603 scan_field_t chain5_fields[3];
605 uint32_t Data;
606 uint8_t Ready;
607 uint8_t nRetry;
609 arm11_setup_field(arm11, 32, NULL, &Data, chain5_fields + 0);
610 arm11_setup_field(arm11, 1, NULL, &Ready, chain5_fields + 1);
611 arm11_setup_field(arm11, 1, NULL, &nRetry, chain5_fields + 2);
613 while (count--)
617 arm11_add_dr_scan_vc(asizeof(chain5_fields), chain5_fields, count ? TAP_IDLE : TAP_DRPAUSE);
619 CHECK_RETVAL(jtag_execute_queue());
621 JTAG_DEBUG("DTR Data %08x Ready %d nRetry %d", Data, Ready, nRetry);
623 while (!Ready);
625 *data++ = Data;
628 return ERROR_OK;
631 /** Execute one instruction via ITR
632 * then load r0 into DTR and read DTR from core.
634 * The first executed instruction (\p opcode) should write data to r0.
636 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
638 * \param arm11 Target state variable.
639 * \param opcode ARM opcode to write r0 with the value of interest
640 * \param data Pointer to a data word that receives the value from r0 after \p opcode was executed.
643 void arm11_run_instr_data_from_core_via_r0(arm11_common_t * arm11, uint32_t opcode, uint32_t * data)
645 arm11_run_instr_no_data1(arm11, opcode);
647 /* MCR p14,0,R0,c0,c5,0 (move r0 -> wDTR -> local var) */
648 arm11_run_instr_data_from_core(arm11, 0xEE000E15, data, 1);
651 /** Load data into core via DTR then move it to r0 then
652 * execute one instruction via ITR
654 * The final executed instruction (\p opcode) should read data from r0.
656 * \pre arm11_run_instr_data_prepare() / arm11_run_instr_data_finish() block
658 * \param arm11 Target state variable.
659 * \param opcode ARM opcode to read r0 act upon it
660 * \param data Data word that will be written to r0 before \p opcode is executed
663 void arm11_run_instr_data_to_core_via_r0(arm11_common_t * arm11, uint32_t opcode, uint32_t data)
665 /* MRC p14,0,r0,c0,c5,0 */
666 arm11_run_instr_data_to_core1(arm11, 0xEE100E15, data);
668 arm11_run_instr_no_data1(arm11, opcode);
671 /** Apply reads and writes to scan chain 7
673 * \see arm11_sc7_action_t
675 * \param arm11 Target state variable.
676 * \param actions A list of read and/or write instructions
677 * \param count Number of instructions in the list.
680 int arm11_sc7_run(arm11_common_t * arm11, arm11_sc7_action_t * actions, size_t count)
682 arm11_add_debug_SCAN_N(arm11, 0x07, ARM11_TAP_DEFAULT);
684 arm11_add_IR(arm11, ARM11_EXTEST, ARM11_TAP_DEFAULT);
686 scan_field_t chain7_fields[3];
688 uint8_t nRW;
689 uint32_t DataOut;
690 uint8_t AddressOut;
691 uint8_t Ready;
692 uint32_t DataIn;
693 uint8_t AddressIn;
695 arm11_setup_field(arm11, 1, &nRW, &Ready, chain7_fields + 0);
696 arm11_setup_field(arm11, 32, &DataOut, &DataIn, chain7_fields + 1);
697 arm11_setup_field(arm11, 7, &AddressOut, &AddressIn, chain7_fields + 2);
699 for (size_t i = 0; i < count + 1; i++)
701 if (i < count)
703 nRW = actions[i].write ? 1 : 0;
704 DataOut = actions[i].value;
705 AddressOut = actions[i].address;
707 else
709 nRW = 0;
710 DataOut = 0;
711 AddressOut = 0;
716 JTAG_DEBUG("SC7 <= Address %02x Data %08x nRW %d", AddressOut, DataOut, nRW);
718 arm11_add_dr_scan_vc(asizeof(chain7_fields), chain7_fields, TAP_DRPAUSE);
720 CHECK_RETVAL(jtag_execute_queue());
722 JTAG_DEBUG("SC7 => Address %02x Data %08x Ready %d", AddressIn, DataIn, Ready);
724 while (!Ready); /* 'nRW' is 'Ready' on read out */
726 if (i > 0)
728 if (actions[i - 1].address != AddressIn)
730 LOG_WARNING("Scan chain 7 shifted out unexpected address");
733 if (!actions[i - 1].write)
735 actions[i - 1].value = DataIn;
737 else
739 if (actions[i - 1].value != DataIn)
741 LOG_WARNING("Scan chain 7 shifted out unexpected data");
747 for (size_t i = 0; i < count; i++)
749 JTAG_DEBUG("SC7 %02d: %02x %s %08x", i, actions[i].address, actions[i].write ? "<=" : "=>", actions[i].value);
752 return ERROR_OK;
755 /** Clear VCR and all breakpoints and watchpoints via scan chain 7
757 * \param arm11 Target state variable.
760 void arm11_sc7_clear_vbw(arm11_common_t * arm11)
762 arm11_sc7_action_t clear_bw[arm11->brp + arm11->wrp + 1];
763 arm11_sc7_action_t * pos = clear_bw;
765 for (size_t i = 0; i < asizeof(clear_bw); i++)
767 clear_bw[i].write = true;
768 clear_bw[i].value = 0;
771 for (size_t i = 0; i < arm11->brp; i++)
772 (pos++)->address = ARM11_SC7_BCR0 + i;
775 for (size_t i = 0; i < arm11->wrp; i++)
776 (pos++)->address = ARM11_SC7_WCR0 + i;
779 (pos++)->address = ARM11_SC7_VCR;
781 arm11_sc7_run(arm11, clear_bw, asizeof(clear_bw));
784 /** Write VCR register
786 * \param arm11 Target state variable.
787 * \param value Value to be written
789 void arm11_sc7_set_vcr(arm11_common_t * arm11, uint32_t value)
791 arm11_sc7_action_t set_vcr;
793 set_vcr.write = true;
794 set_vcr.address = ARM11_SC7_VCR;
795 set_vcr.value = value;
798 arm11_sc7_run(arm11, &set_vcr, 1);
803 /** Read word from address
805 * \param arm11 Target state variable.
806 * \param address Memory address to be read
807 * \param result Pointer where to store result
810 int arm11_read_memory_word(arm11_common_t * arm11, uint32_t address, uint32_t * result)
812 arm11_run_instr_data_prepare(arm11);
814 /* MRC p14,0,r0,c0,c5,0 (r0 = address) */
815 CHECK_RETVAL(arm11_run_instr_data_to_core1(arm11, 0xee100e15, address));
817 /* LDC p14,c5,[R0],#4 (DTR = [r0]) */
818 CHECK_RETVAL(arm11_run_instr_data_from_core(arm11, 0xecb05e01, result, 1));
820 arm11_run_instr_data_finish(arm11);
822 return ERROR_OK;