2 * Copyright (C) 2005 by Dominic Rath
5 * Copyright (C) 2007,2008 Øyvind Harboe
6 * oyvind.harboe@zylin.com
8 * Copyright (C) 2008 Peter Hettkamp
9 * peter.hettkamp@htp-tel.de
11 * Copyright (C) 2009 SoftPLC Corporation. http://softplc.com
12 * Dick Hollenbeck <dick@softplc.com>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 /* The specification for SVF is available here:
31 * http://www.asset-intertech.com/support/svf.pdf
32 * Below, this document is refered to as the "SVF spec".
34 * The specification for XSVF is available here:
35 * http://www.xilinx.com/support/documentation/application_notes/xapp503.pdf
36 * Below, this document is refered to as the "XSVF spec".
44 #include <jtag/jtag.h>
48 /* XSVF commands, from appendix B of xapp503.pdf */
49 #define XCOMPLETE 0x00
57 #define XSETSDRMASKS 0x0A
72 /* XWAITSTATE is not in the xilinx XSVF spec, but the svf2xsvf.py translator
73 * generates this. Arguably it is needed because the XSVF XRUNTEST command
74 * was ill conceived and does not directly flow out of the SVF RUNTEST command.
75 * This XWAITSTATE does map directly from the SVF RUNTEST command.
77 #define XWAITSTATE 0x18
79 /* Lattice has extended the SVF file format, and Dick Hollenbeck's python based
80 * SVF2XSVF converter supports these 3 additional XSVF opcodes, LCOUNT, LDELAY, LSDR.
81 * Here is an example of usage of the 3 lattice opcode extensions:
83 ! Set the maximum loop count to 25.
85 ! Step to DRPAUSE give 5 clocks and wait for 1.00e + 000 SEC.
86 LDELAY DRPAUSE 5 TCK 1.00E-003 SEC;
87 ! Test for the completed status. Match means pass.
88 ! Loop back to LDELAY line if not match and loop count less than 25.
100 /* XSVF valid state values for the XSTATE command, from appendix B of xapp503.pdf */
101 #define XSV_RESET 0x00
102 #define XSV_IDLE 0x01
103 #define XSV_DRSELECT 0x02
104 #define XSV_DRCAPTURE 0x03
105 #define XSV_DRSHIFT 0x04
106 #define XSV_DREXIT1 0x05
107 #define XSV_DRPAUSE 0x06
108 #define XSV_DREXIT2 0x07
109 #define XSV_DRUPDATE 0x08
110 #define XSV_IRSELECT 0x09
111 #define XSV_IRCAPTURE 0x0A
112 #define XSV_IRSHIFT 0x0B
113 #define XSV_IREXIT1 0x0C
114 #define XSV_IRPAUSE 0x0D
115 #define XSV_IREXIT2 0x0E
116 #define XSV_IRUPDATE 0x0F
118 /* arguments to XTRST */
122 #define XTRST_ABSENT 3
124 #define XSTATE_MAX_PATH 12
127 static int xsvf_fd
= 0;
130 /* map xsvf tap state to an openocd "tap_state_t" */
131 static tap_state_t
xsvf_to_tap(int xsvf_state
)
137 case XSV_RESET
: ret
= TAP_RESET
; break;
138 case XSV_IDLE
: ret
= TAP_IDLE
; break;
139 case XSV_DRSELECT
: ret
= TAP_DRSELECT
; break;
140 case XSV_DRCAPTURE
: ret
= TAP_DRCAPTURE
; break;
141 case XSV_DRSHIFT
: ret
= TAP_DRSHIFT
; break;
142 case XSV_DREXIT1
: ret
= TAP_DREXIT1
; break;
143 case XSV_DRPAUSE
: ret
= TAP_DRPAUSE
; break;
144 case XSV_DREXIT2
: ret
= TAP_DREXIT2
; break;
145 case XSV_DRUPDATE
: ret
= TAP_DRUPDATE
; break;
146 case XSV_IRSELECT
: ret
= TAP_IRSELECT
; break;
147 case XSV_IRCAPTURE
: ret
= TAP_IRCAPTURE
; break;
148 case XSV_IRSHIFT
: ret
= TAP_IRSHIFT
; break;
149 case XSV_IREXIT1
: ret
= TAP_IREXIT1
; break;
150 case XSV_IRPAUSE
: ret
= TAP_IRPAUSE
; break;
151 case XSV_IREXIT2
: ret
= TAP_IREXIT2
; break;
152 case XSV_IRUPDATE
: ret
= TAP_IRUPDATE
; break;
154 LOG_ERROR("UNKNOWN XSVF STATE 0x%02X", xsvf_state
);
163 static int xsvf_read_buffer(int num_bits
, int fd
, uint8_t* buf
)
167 for (num_bytes
= (num_bits
+ 7) / 8; num_bytes
> 0; num_bytes
--)
169 /* reverse the order of bytes as they are read sequentially from file */
170 if (read(fd
, buf
+ num_bytes
- 1, 1) < 0)
171 return ERROR_XSVF_EOF
;
178 COMMAND_HANDLER(handle_xsvf_command
)
180 uint8_t *dr_out_buf
= NULL
; /* from host to device (TDI) */
181 uint8_t *dr_in_buf
= NULL
; /* from device to host (TDO) */
182 uint8_t *dr_in_mask
= NULL
;
185 int xruntest
= 0; /* number of TCK cycles OR microseconds */
186 int xrepeat
= 0; /* number of retries */
188 tap_state_t xendir
= TAP_IDLE
; /* see page 8 of the SVF spec, initial xendir to be TAP_IDLE */
189 tap_state_t xenddr
= TAP_IDLE
;
193 long file_offset
= 0;
196 tap_state_t loop_state
= TAP_IDLE
;
202 int tdo_mismatch
= 0;
206 bool collecting_path
= false;
207 tap_state_t path
[XSTATE_MAX_PATH
];
208 unsigned pathlen
= 0;
210 /* a flag telling whether to clock TCK during waits,
211 * or simply sleep, controled by virt2
213 int runtest_requires_tck
= 0;
216 /* use NULL to indicate a "plain" xsvf file which accounts for
217 additional devices in the scan chain, otherwise the device
218 that should be affected
220 struct jtag_tap
*tap
= NULL
;
224 command_print(CMD_CTX
, "usage: xsvf <device#|plain> <file> [<variant>] [quiet]");
228 /* we mess with CMD_ARGV starting point below, snapshot filename here */
229 const char *filename
= CMD_ARGV
[1];
231 if (strcmp(CMD_ARGV
[0], "plain") != 0)
233 tap
= jtag_tap_by_string(CMD_ARGV
[0]);
236 command_print(CMD_CTX
, "Tap: %s unknown", CMD_ARGV
[0]);
241 if ((xsvf_fd
= open(filename
, O_RDONLY
)) < 0)
243 command_print(CMD_CTX
, "file \"%s\" not found", filename
);
247 /* if this argument is present, then interpret xruntest counts as TCK cycles rather than as usecs */
248 if ((CMD_ARGC
> 2) && (strcmp(CMD_ARGV
[2], "virt2") == 0))
250 runtest_requires_tck
= 1;
255 if ((CMD_ARGC
> 2) && (strcmp(CMD_ARGV
[2], "quiet") == 0))
260 LOG_USER("xsvf processing file: \"%s\"", filename
);
262 while (read(xsvf_fd
, &opcode
, 1) > 0)
264 /* record the position of this opcode within the file */
265 file_offset
= lseek(xsvf_fd
, 0, SEEK_CUR
) - 1;
267 /* maybe collect another state for a pathmove();
268 * or terminate a path.
270 if (collecting_path
) {
275 /* ignore/show comments between XSTATE ops */
278 /* try to collect another transition */
279 if (pathlen
== XSTATE_MAX_PATH
) {
280 LOG_ERROR("XSVF: path too long");
285 if (read(xsvf_fd
, &uc
, 1) < 0)
291 mystate
= xsvf_to_tap(uc
);
292 path
[pathlen
++] = mystate
;
294 LOG_DEBUG("XSTATE 0x%02X %s", uc
,
295 tap_state_name(mystate
));
297 /* If path is incomplete, collect more */
298 if (!svf_tap_state_is_stable(mystate
))
301 /* Else execute the path transitions we've
304 * NOTE: Punting on the saved path is not
305 * strictly correct, but we must to do this
306 * unless jtag_add_pathmove() stops rejecting
307 * paths containing RESET. This is probably
308 * harmless, since there aren't many options
309 * for going from a stable state to reset;
310 * at the worst, we may issue extra clocks
311 * once we get to RESET.
313 if (mystate
== TAP_RESET
) {
314 LOG_WARNING("XSVF: dodgey RESET");
320 /* Execute the path we collected
322 * NOTE: OpenOCD requires something that XSVF
323 * doesn't: the last TAP state in the path
324 * must be stable. In practice, tools that
325 * create XSVF seem to follow that rule too.
327 collecting_path
= false;
329 if (path
[0] == TAP_RESET
)
332 jtag_add_pathmove(pathlen
, path
);
334 result
= jtag_execute_queue();
335 if (result
!= ERROR_OK
) {
336 LOG_ERROR("XSVF: pathmove error %d",
348 LOG_DEBUG("XCOMPLETE");
350 result
= jtag_execute_queue();
351 if (result
!= ERROR_OK
)
359 LOG_DEBUG("XTDOMASK");
360 if (dr_in_mask
&& (xsvf_read_buffer(xsdrsize
, xsvf_fd
, dr_in_mask
) != ERROR_OK
))
366 uint8_t xruntest_buf
[4];
368 if (read(xsvf_fd
, xruntest_buf
, 4) < 0)
374 xruntest
= be_to_h_u32(xruntest_buf
);
375 LOG_DEBUG("XRUNTEST %d 0x%08X", xruntest
, xruntest
);
383 if (read(xsvf_fd
, &myrepeat
, 1) < 0)
388 LOG_DEBUG("XREPEAT %d", xrepeat
);
395 uint8_t xsdrsize_buf
[4];
397 if (read(xsvf_fd
, xsdrsize_buf
, 4) < 0)
403 xsdrsize
= be_to_h_u32(xsdrsize_buf
);
404 LOG_DEBUG("XSDRSIZE %d", xsdrsize
);
406 if (dr_out_buf
) free(dr_out_buf
);
407 if (dr_in_buf
) free(dr_in_buf
);
408 if (dr_in_mask
) free(dr_in_mask
);
410 dr_out_buf
= malloc((xsdrsize
+ 7) / 8);
411 dr_in_buf
= malloc((xsdrsize
+ 7) / 8);
412 dr_in_mask
= malloc((xsdrsize
+ 7) / 8);
416 case XSDR
: /* these two are identical except for the dr_in_buf */
423 const char* op_name
= (opcode
== XSDR
? "XSDR" : "XSDRTDO");
425 if (xsvf_read_buffer(xsdrsize
, xsvf_fd
, dr_out_buf
) != ERROR_OK
)
431 if (opcode
== XSDRTDO
)
433 if (xsvf_read_buffer(xsdrsize
, xsvf_fd
, dr_in_buf
) != ERROR_OK
)
443 LOG_DEBUG("%s %d", op_name
, xsdrsize
);
445 for (attempt
= 0; attempt
< limit
; ++attempt
)
447 struct scan_field field
;
451 /* perform the XC9500 exception handling sequence shown in xapp067.pdf and
452 illustrated in psuedo code at end of this file. We start from state
460 This sequence should be harmless for other devices, and it
461 will be skipped entirely if xrepeat is set to zero.
464 static tap_state_t exception_path
[] = {
472 jtag_add_pathmove(ARRAY_SIZE(exception_path
), exception_path
);
475 LOG_USER("%s mismatch, xsdrsize=%d retry=%d", op_name
, xsdrsize
, attempt
);
478 field
.num_bits
= xsdrsize
;
479 field
.out_value
= dr_out_buf
;
480 field
.in_value
= calloc(DIV_ROUND_UP(field
.num_bits
, 8), 1);
483 jtag_add_plain_dr_scan(field
.num_bits
, field
.out_value
, field
.in_value
,
486 jtag_add_dr_scan(tap
, 1, &field
, TAP_DRPAUSE
);
488 jtag_check_value_mask(&field
, dr_in_buf
, dr_in_mask
);
490 free(field
.in_value
);
493 /* LOG_DEBUG("FLUSHING QUEUE"); */
494 result
= jtag_execute_queue();
495 if (result
== ERROR_OK
)
504 LOG_USER("%s mismatch", op_name
);
509 /* See page 19 of XSVF spec regarding opcode "XSDR" */
512 result
= svf_add_statemove(TAP_IDLE
);
514 if (runtest_requires_tck
)
515 jtag_add_clocks(xruntest
);
517 jtag_add_sleep(xruntest
);
519 else if (xendir
!= TAP_DRPAUSE
) /* we are already in TAP_DRPAUSE */
520 result
= svf_add_statemove(xenddr
);
525 LOG_ERROR("unsupported XSETSDRMASKS");
530 LOG_ERROR("unsupported XSDRINC");
535 LOG_ERROR("unsupported XSDRB");
540 LOG_ERROR("unsupported XSDRC");
545 LOG_ERROR("unsupported XSDRE");
550 LOG_ERROR("unsupported XSDRTDOB");
555 LOG_ERROR("unsupported XSDRTDOC");
560 LOG_ERROR("unsupported XSDRTDOE");
568 if (read(xsvf_fd
, &uc
, 1) < 0)
574 mystate
= xsvf_to_tap(uc
);
576 LOG_DEBUG("XSTATE 0x%02X %s", uc
, tap_state_name(mystate
));
578 if (mystate
== TAP_INVALID
) {
579 LOG_ERROR("XSVF: bad XSTATE %02x", uc
);
584 /* NOTE: the current state is SVF-stable! */
586 /* no change == NOP */
587 if (mystate
== cmd_queue_cur_state
588 && mystate
!= TAP_RESET
)
591 /* Hand off to SVF? */
592 if (svf_tap_state_is_stable(mystate
))
594 result
= svf_add_statemove(mystate
);
595 if (result
!= ERROR_OK
)
601 * A sequence of XSTATE transitions, each TAP
602 * state adjacent to the previous one. Start
605 collecting_path
= true;
613 if (read(xsvf_fd
, &uc
, 1) < 0)
619 /* see page 22 of XSVF spec */
623 xendir
= TAP_IRPAUSE
;
626 LOG_ERROR("illegial XENDIR argument: 0x%02X", uc
);
631 LOG_DEBUG("XENDIR 0x%02X %s", uc
, tap_state_name(xendir
));
636 if (read(xsvf_fd
, &uc
, 1) < 0)
642 /* see page 22 of XSVF spec */
646 xenddr
= TAP_DRPAUSE
;
649 LOG_ERROR("illegial XENDDR argument: 0x%02X", uc
);
654 LOG_DEBUG("XENDDR %02X %s", uc
, tap_state_name(xenddr
));
660 uint8_t short_buf
[2];
663 tap_state_t my_end_state
= xruntest
? TAP_IDLE
: xendir
;
667 /* one byte bitcount */
668 if (read(xsvf_fd
, short_buf
, 1) < 0)
673 bitcount
= short_buf
[0];
674 LOG_DEBUG("XSIR %d", bitcount
);
678 if (read(xsvf_fd
, short_buf
, 2) < 0)
683 bitcount
= be_to_h_u16(short_buf
);
684 LOG_DEBUG("XSIR2 %d", bitcount
);
687 ir_buf
= malloc((bitcount
+ 7) / 8);
689 if (xsvf_read_buffer(bitcount
, xsvf_fd
, ir_buf
) != ERROR_OK
)
693 struct scan_field field
;
695 field
.num_bits
= bitcount
;
696 field
.out_value
= ir_buf
;
698 field
.in_value
= NULL
;
704 jtag_add_plain_ir_scan(field
.num_bits
,
705 field
.out_value
, field
.in_value
, my_end_state
);
707 jtag_add_ir_scan(tap
, &field
, my_end_state
);
711 if (runtest_requires_tck
)
712 jtag_add_clocks(xruntest
);
714 jtag_add_sleep(xruntest
);
717 /* Note that an -irmask of non-zero in your config file
718 * can cause this to fail. Setting -irmask to zero cand work
719 * around the problem.
722 /* LOG_DEBUG("FLUSHING QUEUE"); */
723 result
= jtag_execute_queue();
724 if (result
!= ERROR_OK
)
735 unsigned int ndx
= 0;
740 if (read(xsvf_fd
, &uc
, 1) < 0)
746 if (ndx
< sizeof(comment
)-1)
751 comment
[sizeof(comment
)-1] = 0; /* regardless, terminate */
753 LOG_USER("# %s", comment
);
759 /* expected in stream:
760 XWAIT <uint8_t wait_state> <uint8_t end_state> <uint32_t usecs>
765 uint8_t delay_buf
[4];
767 tap_state_t wait_state
;
768 tap_state_t end_state
;
771 if (read(xsvf_fd
, &wait_local
, 1) < 0
772 || read(xsvf_fd
, &end
, 1) < 0
773 || read(xsvf_fd
, delay_buf
, 4) < 0)
779 wait_state
= xsvf_to_tap(wait_local
);
780 end_state
= xsvf_to_tap(end
);
781 delay
= be_to_h_u32(delay_buf
);
783 LOG_DEBUG("XWAIT %s %s usecs:%d", tap_state_name(wait_state
), tap_state_name(end_state
), delay
);
785 if (runtest_requires_tck
&& wait_state
== TAP_IDLE
)
787 jtag_add_runtest(delay
, end_state
);
791 /* FIXME handle statemove errors ... */
792 result
= svf_add_statemove(wait_state
);
793 jtag_add_sleep(delay
);
794 result
= svf_add_statemove(end_state
);
801 /* expected in stream:
802 XWAITSTATE <uint8_t wait_state> <uint8_t end_state> <uint32_t clock_count> <uint32_t usecs>
805 uint8_t clock_buf
[4];
806 uint8_t usecs_buf
[4];
809 tap_state_t wait_state
;
810 tap_state_t end_state
;
814 if (read(xsvf_fd
, &wait_local
, 1) < 0
815 || read(xsvf_fd
, &end
, 1) < 0
816 || read(xsvf_fd
, clock_buf
, 4) < 0
817 || read(xsvf_fd
, usecs_buf
, 4) < 0)
823 wait_state
= xsvf_to_tap(wait_local
);
824 end_state
= xsvf_to_tap(end
);
826 clock_count
= be_to_h_u32(clock_buf
);
827 usecs
= be_to_h_u32(usecs_buf
);
829 LOG_DEBUG("XWAITSTATE %s %s clocks:%i usecs:%i",
830 tap_state_name(wait_state
),
831 tap_state_name(end_state
),
834 /* the following states are 'stable', meaning that they have a transition
835 * in the state diagram back to themselves. This is necessary because we will
836 * be issuing a number of clocks in this state. This set of allowed states is also
837 * determined by the SVF RUNTEST command's allowed states.
839 if (!svf_tap_state_is_stable(wait_state
))
841 LOG_ERROR("illegal XWAITSTATE wait_state: \"%s\"",
842 tap_state_name(wait_state
));
844 /* REVISIT "break" so we won't run? */
847 /* FIXME handle statemove errors ... */
848 result
= svf_add_statemove(wait_state
);
850 jtag_add_clocks(clock_count
);
852 jtag_add_sleep(usecs
);
854 result
= svf_add_statemove(end_state
);
860 /* expected in stream:
861 LCOUNT <uint32_t loop_count>
863 uint8_t count_buf
[4];
865 if (read(xsvf_fd
, count_buf
, 4) < 0)
871 loop_count
= be_to_h_u32(count_buf
);
872 LOG_DEBUG("LCOUNT %d", loop_count
);
878 /* expected in stream:
879 LDELAY <uint8_t wait_state> <uint32_t clock_count> <uint32_t usecs_to_sleep>
882 uint8_t clock_buf
[4];
883 uint8_t usecs_buf
[4];
885 if (read(xsvf_fd
, &state
, 1) < 0
886 || read(xsvf_fd
, clock_buf
, 4) < 0
887 || read(xsvf_fd
, usecs_buf
, 4) < 0)
893 /* NOTE: loop_state must be stable! */
894 loop_state
= xsvf_to_tap(state
);
895 loop_clocks
= be_to_h_u32(clock_buf
);
896 loop_usecs
= be_to_h_u32(usecs_buf
);
898 LOG_DEBUG("LDELAY %s clocks:%d usecs:%d", tap_state_name(loop_state
), loop_clocks
, loop_usecs
);
902 /* LSDR is more like XSDRTDO than it is like XSDR. It uses LDELAY which
903 * comes with clocks !AND! sleep requirements.
907 int limit
= loop_count
;
913 if (xsvf_read_buffer(xsdrsize
, xsvf_fd
, dr_out_buf
) != ERROR_OK
914 || xsvf_read_buffer(xsdrsize
, xsvf_fd
, dr_in_buf
) != ERROR_OK
)
923 for (attempt
= 0; attempt
< limit
; ++attempt
)
925 struct scan_field field
;
927 result
= svf_add_statemove(loop_state
);
928 jtag_add_clocks(loop_clocks
);
929 jtag_add_sleep(loop_usecs
);
931 field
.num_bits
= xsdrsize
;
932 field
.out_value
= dr_out_buf
;
933 field
.in_value
= calloc(DIV_ROUND_UP(field
.num_bits
, 8), 1);
935 if (attempt
> 0 && verbose
)
936 LOG_USER("LSDR retry %d", attempt
);
939 jtag_add_plain_dr_scan(field
.num_bits
, field
.out_value
, field
.in_value
,
942 jtag_add_dr_scan(tap
, 1, &field
, TAP_DRPAUSE
);
944 jtag_check_value_mask(&field
, dr_in_buf
, dr_in_mask
);
946 free(field
.in_value
);
949 /* LOG_DEBUG("FLUSHING QUEUE"); */
950 result
= jtag_execute_queue();
951 if (result
== ERROR_OK
)
960 LOG_USER("LSDR mismatch");
971 if (read(xsvf_fd
, &trst_mode
, 1) < 0)
980 jtag_add_reset(1, 0);
984 jtag_add_reset(0, 0);
989 LOG_ERROR("XTRST mode argument (0x%02X) out of range", trst_mode
);
996 LOG_ERROR("unknown xsvf command (0x%02X)", uc
);
1000 if (do_abort
|| unsupported
|| tdo_mismatch
)
1002 LOG_DEBUG("xsvf failed, setting taps to reasonable state");
1004 /* upon error, return the TAPs to a reasonable state */
1005 result
= svf_add_statemove(TAP_IDLE
);
1006 result
= jtag_execute_queue();
1013 command_print(CMD_CTX
, "TDO mismatch, somewhere near offset %lu in xsvf file, aborting",
1022 off_t offset
= lseek(xsvf_fd
, 0, SEEK_CUR
) - 1;
1023 command_print(CMD_CTX
,
1024 "unsupported xsvf command (0x%02X) at offset %jd, aborting",
1025 uc
, (intmax_t)offset
);
1031 command_print(CMD_CTX
, "premature end of xsvf file detected, aborting");
1046 command_print(CMD_CTX
, "XSVF file programmed successfully");
1051 static const struct command_registration xsvf_command_handlers
[] = {
1054 .handler
= handle_xsvf_command
,
1055 .mode
= COMMAND_EXEC
,
1056 .help
= "Runs a XSVF file. If 'virt2' is given, xruntest "
1057 "counts are interpreted as TCK cycles rather than "
1058 "as microseconds. Without the 'quiet' option, all "
1059 "comments, retries, and mismatches will be reported.",
1060 .usage
= "(tapname|'plain') filename ['virt2'] ['quiet']",
1062 COMMAND_REGISTRATION_DONE
1065 int xsvf_register_commands(struct command_context
*cmd_ctx
)
1067 return register_commands(cmd_ctx
, NULL
, xsvf_command_handlers
);
1070 #if 0 /* this comment style used to try and keep uncrustify from adding * at begin of line */
1072 PSUEDO
-Code from Xilinx Appnote XAPP067
.pdf
:
1074 the following pseudo code clarifies the intent of the xrepeat support
. The
1075 flow given is
for the entire processing of an SVF file
, not an XSVF file
.
1076 No idea
if this is just
for the XC9500
/XL
/XV devices
or all Xilinx parts
.
1078 "Pseudo-Code Algorithm for SVF-Based ISP"
1080 1. Go to Test
-Logic
-Reset state
1081 2. Go to Run
-Test Idle state
1084 4. if SIR record then
1085 go to Shift
-IR state
1088 5. else if SDR record then
1089 set
<repeat count
> to
0
1090 store
<TDI value
> as
<current TDI value
>
1091 store
<TDO value
> as
<current TDO value
>
1092 6. go to Shift
-DR state
1093 scan in
<current TDI value
>
1094 if <current TDO value
> is specified then
1095 if <current TDO value
> does
not equal
<actual TDO value
> then
1096 if <repeat count
> > 32 then
1098 go to Run
-Test Idle state
1107 increment
<repeat count
> by
1
1108 pause
<current pause time
> microseconds
1112 go to Run
-Test Idle state
1115 else if RUNTEST record then
1116 pause tester
for <TCK value
> microseconds
1117 store
<TCK value
> as
<current pause time
>