sync up to tap_xxx rename + add with-ioutil for standalone openocd implemetnations
[openocd.git] / src / jtag / zy1000.c
1 /***************************************************************************
2 * Copyright (C) 2007-2008 by Øyvind Harboe *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
18 ***************************************************************************/
19 #ifdef HAVE_CONFIG_H
20 #include "config.h"
21 #endif
22
23
24 #include "log.h"
25 #include "jtag.h"
26 #include "bitbang.h"
27 #include "../target/embeddedice.h"
28
29
30 #include <cyg/hal/hal_io.h> // low level i/o
31 #include <cyg/hal/hal_diag.h>
32
33 #include <stdlib.h>
34
35 #define ZYLIN_VERSION "1.48"
36 #define ZYLIN_DATE __DATE__
37 #define ZYLIN_TIME __TIME__
38 #define ZYLIN_OPENOCD "$Revision: 1241 $"
39 #define ZYLIN_OPENOCD_VERSION "Zylin JTAG ZY1000 " ZYLIN_VERSION " " ZYLIN_DATE " " ZYLIN_TIME
40 const char *zylin_config_dir="/config/settings";
41
42 extern int jtag_error;
43
44 /* low level command set
45 */
46 int zy1000_read(void);
47 static void zy1000_write(int tck, int tms, int tdi);
48 void zy1000_reset(int trst, int srst);
49
50
51 int zy1000_speed(int speed);
52 int zy1000_register_commands(struct command_context_s *cmd_ctx);
53 int zy1000_init(void);
54 int zy1000_quit(void);
55
56 /* interface commands */
57 int zy1000_handle_zy1000_port_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc);
58
59 static int zy1000_khz(int khz, int *jtag_speed)
60 {
61 if (khz==0)
62 {
63 *jtag_speed=0;
64 }
65 else
66 {
67 *jtag_speed=64000/khz;
68 }
69 return ERROR_OK;
70 }
71
72 static int zy1000_speed_div(int speed, int *khz)
73 {
74 if (speed==0)
75 {
76 *khz = 0;
77 }
78 else
79 {
80 *khz=64000/speed;
81 }
82
83 return ERROR_OK;
84 }
85
86 static bool readPowerDropout()
87 {
88 cyg_uint32 state;
89 // sample and clear power dropout
90 HAL_WRITE_UINT32(ZY1000_JTAG_BASE+0x10, 0x80);
91 HAL_READ_UINT32(ZY1000_JTAG_BASE+0x10, state);
92 bool powerDropout;
93 powerDropout = (state & 0x80) != 0;
94 return powerDropout;
95 }
96
97
98 static bool readSRST()
99 {
100 cyg_uint32 state;
101 // sample and clear SRST sensing
102 HAL_WRITE_UINT32(ZY1000_JTAG_BASE+0x10, 0x00000040);
103 HAL_READ_UINT32(ZY1000_JTAG_BASE+0x10, state);
104 bool srstAsserted;
105 srstAsserted = (state & 0x40) != 0;
106 return srstAsserted;
107 }
108
109 static int zy1000_srst_asserted(int *srst_asserted)
110 {
111 *srst_asserted=readSRST();
112 return ERROR_OK;
113 }
114
115 static int zy1000_power_dropout(int *dropout)
116 {
117 *dropout=readPowerDropout();
118 return ERROR_OK;
119 }
120
121
122 jtag_interface_t zy1000_interface =
123 {
124 .name = "ZY1000",
125 .execute_queue = bitbang_execute_queue,
126 .speed = zy1000_speed,
127 .register_commands = zy1000_register_commands,
128 .init = zy1000_init,
129 .quit = zy1000_quit,
130 .khz = zy1000_khz,
131 .speed_div = zy1000_speed_div,
132 .power_dropout = zy1000_power_dropout,
133 .srst_asserted = zy1000_srst_asserted,
134 };
135
136 bitbang_interface_t zy1000_bitbang =
137 {
138 .read = zy1000_read,
139 .write = zy1000_write,
140 .reset = zy1000_reset
141 };
142
143
144
145 static void zy1000_write(int tck, int tms, int tdi)
146 {
147
148 }
149
150 int zy1000_read(void)
151 {
152 return -1;
153 }
154
155 extern bool readSRST();
156
157 void zy1000_reset(int trst, int srst)
158 {
159 LOG_DEBUG("zy1000 trst=%d, srst=%d", trst, srst);
160 if(!srst)
161 {
162 ZY1000_POKE(ZY1000_JTAG_BASE+0x14, 0x00000001);
163 }
164 else
165 {
166 /* Danger!!! if clk!=0 when in
167 * idle in TAP_IDLE, reset halt on str912 will fail.
168 */
169 ZY1000_POKE(ZY1000_JTAG_BASE+0x10, 0x00000001);
170 }
171
172 if(!trst)
173 {
174 ZY1000_POKE(ZY1000_JTAG_BASE+0x14, 0x00000002);
175 }
176 else
177 {
178 /* assert reset */
179 ZY1000_POKE(ZY1000_JTAG_BASE+0x10, 0x00000002);
180 }
181
182 if (trst||(srst&&(jtag_reset_config & RESET_SRST_PULLS_TRST)))
183 {
184 waitIdle();
185 /* we're now in the RESET state until trst is deasserted */
186 ZY1000_POKE(ZY1000_JTAG_BASE+0x20, TAP_RESET);
187 } else
188 {
189 /* We'll get RCLK failure when we assert TRST, so clear any false positives here */
190 ZY1000_POKE(ZY1000_JTAG_BASE+0x14, 0x400);
191 }
192
193 /* wait for srst to float back up */
194 if (!srst)
195 {
196 int i;
197 for (i=0; i<1000; i++)
198 {
199 // We don't want to sense our own reset, so we clear here.
200 // There is of course a timing hole where we could loose
201 // a "real" reset.
202 if (!readSRST())
203 break;
204
205 /* wait 1ms */
206 alive_sleep(1);
207 }
208
209 if (i==1000)
210 {
211 LOG_USER("SRST didn't deassert after %dms", i);
212 } else if (i>1)
213 {
214 LOG_USER("SRST took %dms to deassert", i);
215 }
216 }
217 }
218
219 int zy1000_speed(int speed)
220 {
221 if(speed == 0)
222 {
223 /*0 means RCLK*/
224 speed = 0;
225 ZY1000_POKE(ZY1000_JTAG_BASE+0x10, 0x100);
226 LOG_DEBUG("jtag_speed using RCLK");
227 }
228 else
229 {
230 if(speed > 8190 || speed < 2)
231 {
232 LOG_USER("valid ZY1000 jtag_speed=[8190,2]. Divisor is 64MHz / even values between 8190-2, i.e. min 7814Hz, max 32MHz");
233 return ERROR_INVALID_ARGUMENTS;
234 }
235
236 LOG_USER("jtag_speed %d => JTAG clk=%f", speed, 64.0/(float)speed);
237 ZY1000_POKE(ZY1000_JTAG_BASE+0x14, 0x100);
238 ZY1000_POKE(ZY1000_JTAG_BASE+0x1c, speed&~1);
239 }
240 return ERROR_OK;
241 }
242
243 static bool savePower;
244
245
246 static void setPower(bool power)
247 {
248 savePower = power;
249 if (power)
250 {
251 HAL_WRITE_UINT32(ZY1000_JTAG_BASE+0x14, 0x8);
252 } else
253 {
254 HAL_WRITE_UINT32(ZY1000_JTAG_BASE+0x10, 0x8);
255 }
256 }
257
258 int handle_power_command(struct command_context_s *cmd_ctx, char *cmd, char **args, int argc)
259 {
260 if (argc > 1)
261 {
262 return ERROR_INVALID_ARGUMENTS;
263 }
264
265 if (argc == 1)
266 {
267 if (strcmp(args[0], "on") == 0)
268 {
269 setPower(1);
270 }
271 else if (strcmp(args[0], "off") == 0)
272 {
273 setPower(0);
274 } else
275 {
276 command_print(cmd_ctx, "arg is \"on\" or \"off\"");
277 return ERROR_INVALID_ARGUMENTS;
278 }
279 }
280
281 command_print(cmd_ctx, "Target power %s", savePower ? "on" : "off");
282
283 return ERROR_OK;
284 }
285
286
287 /* Give TELNET a way to find out what version this is */
288 int handle_zy1000_version_command(struct command_context_s *cmd_ctx, char *cmd,
289 char **args, int argc)
290 {
291 if (argc > 1)
292 {
293 return ERROR_COMMAND_SYNTAX_ERROR;
294 }
295 if (argc == 0)
296 {
297 command_print(cmd_ctx, ZYLIN_OPENOCD_VERSION);
298 }
299 else if (strcmp("openocd", args[0]) == 0)
300 {
301 int revision;
302 revision = atol(ZYLIN_OPENOCD+strlen("XRevision: "));
303 command_print(cmd_ctx, "%d", revision);
304 }
305 else if (strcmp("zy1000", args[0]) == 0)
306 {
307 command_print(cmd_ctx, "%s", ZYLIN_VERSION);
308 }
309 else if (strcmp("date", args[0]) == 0)
310 {
311 command_print(cmd_ctx, "%s", ZYLIN_DATE);
312 }
313 else
314 {
315 return ERROR_COMMAND_SYNTAX_ERROR;
316 }
317
318 return ERROR_OK;
319 }
320
321
322 int zy1000_register_commands(struct command_context_s *cmd_ctx)
323 {
324 register_command(cmd_ctx, NULL, "power", handle_power_command, COMMAND_ANY,
325 "power <on/off> - turn power switch to target on/off. No arguments - print status.");
326 register_command(cmd_ctx, NULL, "zy1000_version", handle_zy1000_version_command,
327 COMMAND_EXEC, "show zy1000 version numbers");
328
329
330 return ERROR_OK;
331 }
332
333
334 int zy1000_init(void)
335 {
336 LOG_ERROR("%s\n", ZYLIN_OPENOCD_VERSION);
337
338 ZY1000_POKE(ZY1000_JTAG_BASE+0x10, 0x30); // Turn on LED1 & LED2
339
340 setPower(true); // on by default
341
342
343 /* deassert resets. Important to avoid infinite loop waiting for SRST to deassert */
344 zy1000_reset(0, 0);
345 zy1000_speed(jtag_speed);
346
347 bitbang_interface = &zy1000_bitbang;
348
349 return ERROR_OK;
350 }
351
352 int zy1000_quit(void)
353 {
354
355 return ERROR_OK;
356 }
357
358
359
360
361 int interface_jtag_execute_queue(void)
362 {
363 cyg_uint32 empty;
364
365 waitIdle();
366 ZY1000_PEEK(ZY1000_JTAG_BASE+0x10, empty);
367 /* clear JTAG error register */
368 ZY1000_POKE(ZY1000_JTAG_BASE+0x14, 0x400);
369
370 if ((empty&0x400)!=0)
371 {
372 LOG_WARNING("RCLK timeout");
373 /* the error is informative only as we don't want to break the firmware if there
374 * is a false positive.
375 */
376 // return ERROR_FAIL;
377 }
378 return ERROR_OK;
379 }
380
381
382
383
384
385 static cyg_uint32 getShiftValue()
386 {
387 cyg_uint32 value;
388 waitIdle();
389 ZY1000_PEEK(ZY1000_JTAG_BASE+0xc, value);
390 VERBOSE(LOG_INFO("getShiftValue %08x", value));
391 return value;
392 }
393 #if 0
394 static cyg_uint32 getShiftValueFlip()
395 {
396 cyg_uint32 value;
397 waitIdle();
398 ZY1000_PEEK(ZY1000_JTAG_BASE+0x18, value);
399 VERBOSE(LOG_INFO("getShiftValue %08x (flipped)", value));
400 return value;
401 }
402 #endif
403
404 #if 0
405 static void shiftValueInnerFlip(const enum tap_state state, const enum tap_state endState, int repeat, cyg_uint32 value)
406 {
407 VERBOSE(LOG_INFO("shiftValueInner %s %s %d %08x (flipped)", jtag_state_name(state), jtag_state_name(endState), repeat, value));
408 cyg_uint32 a,b;
409 a=state;
410 b=endState;
411 ZY1000_POKE(ZY1000_JTAG_BASE+0xc, value);
412 ZY1000_POKE(ZY1000_JTAG_BASE+0x8, (1<<15)|(repeat<<8)|(a<<4)|b);
413 VERBOSE(getShiftValueFlip());
414 }
415 #endif
416
417 extern int jtag_check_value(u8 *captured, void *priv);
418
419 static void gotoEndState()
420 {
421 setCurrentState(cmd_queue_end_state);
422 }
423
424 static __inline void scanFields(int num_fields, scan_field_t *fields, enum tap_state shiftState, int pause)
425 {
426 int i;
427 int j;
428 int k;
429
430 for (i = 0; i < num_fields; i++)
431 {
432 cyg_uint32 value;
433
434 static u8 *in_buff=NULL; /* pointer to buffer for scanned data */
435 static int in_buff_size=0;
436 u8 *inBuffer=NULL;
437
438
439 // figure out where to store the input data
440 int num_bits=fields[i].num_bits;
441 if (fields[i].in_value!=NULL)
442 {
443 inBuffer=fields[i].in_value;
444 } else if (fields[i].in_handler!=NULL)
445 {
446 if (in_buff_size*8<num_bits)
447 {
448 // we need more space
449 if (in_buff!=NULL)
450 free(in_buff);
451 in_buff=NULL;
452 in_buff_size=(num_bits+7)/8;
453 in_buff=malloc(in_buff_size);
454 if (in_buff==NULL)
455 {
456 LOG_ERROR("Out of memory");
457 jtag_error=ERROR_JTAG_QUEUE_FAILED;
458 return;
459 }
460 }
461 inBuffer=in_buff;
462 }
463
464 // here we shuffle N bits out/in
465 j=0;
466 while (j<num_bits)
467 {
468 enum tap_state pause_state;
469 int l;
470 k=num_bits-j;
471 pause_state=(shiftState==TAP_DRSHIFT)?TAP_DRSHIFT:TAP_IRSHIFT;
472 if (k>32)
473 {
474 k=32;
475 /* we have more to shift out */
476 } else if (pause&&(i == num_fields-1))
477 {
478 /* this was the last to shift out this time */
479 pause_state=(shiftState==TAP_DRSHIFT)?TAP_DRPAUSE:TAP_IRPAUSE;
480 }
481
482 // we have (num_bits+7)/8 bytes of bits to toggle out.
483 // bits are pushed out LSB to MSB
484 value=0;
485 if (fields[i].out_value!=NULL)
486 {
487 for (l=0; l<k; l+=8)
488 {
489 value|=fields[i].out_value[(j+l)/8]<<l;
490 }
491 }
492 /* mask away unused bits for easier debugging */
493 value&=~(((u32)0xffffffff)<<k);
494
495 shiftValueInner(shiftState, pause_state, k, value);
496
497 if (inBuffer!=NULL)
498 {
499 // data in, LSB to MSB
500 value=getShiftValue();
501 // we're shifting in data to MSB, shift data to be aligned for returning the value
502 value >>= 32-k;
503
504 for (l=0; l<k; l+=8)
505 {
506 inBuffer[(j+l)/8]=(value>>l)&0xff;
507 }
508 }
509 j+=k;
510 }
511
512 if (fields[i].in_handler!=NULL)
513 {
514 // invoke callback
515 int r=fields[i].in_handler(inBuffer, fields[i].in_handler_priv, fields+i);
516 if (r!=ERROR_OK)
517 {
518 /* this will cause jtag_execute_queue() to return an error */
519 jtag_error=r;
520 }
521 }
522 }
523 }
524
525 int interface_jtag_add_end_state(enum tap_state state)
526 {
527 return ERROR_OK;
528 }
529
530
531 int interface_jtag_add_ir_scan(int num_fields, scan_field_t *fields, enum tap_state state)
532 {
533
534 int j;
535 int scan_size = 0;
536 jtag_tap_t *tap, *nextTap;
537 for(tap = jtag_NextEnabledTap(NULL); tap!= NULL; tap=nextTap)
538 {
539 nextTap=jtag_NextEnabledTap(tap);
540 int pause=(nextTap==NULL);
541
542 int found = 0;
543
544 scan_size = tap->ir_length;
545
546 /* search the list */
547 for (j=0; j < num_fields; j++)
548 {
549 if (tap == fields[j].tap)
550 {
551 found = 1;
552
553 if ((jtag_verify_capture_ir)&&(fields[j].in_handler==NULL))
554 {
555 jtag_set_check_value(fields+j, tap->expected, tap->expected_mask, NULL);
556 } else if (jtag_verify_capture_ir)
557 {
558 fields[j].in_check_value = tap->expected;
559 fields[j].in_check_mask = tap->expected_mask;
560 }
561
562 scanFields(1, fields+j, TAP_IRSHIFT, pause);
563 /* update device information */
564 buf_cpy(fields[j].out_value, tap->cur_instr, scan_size);
565
566 tap->bypass = 0;
567 break;
568 }
569 }
570
571 if (!found)
572 {
573 /* if a device isn't listed, set it to BYPASS */
574 u8 ones[]={0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff};
575
576 scan_field_t tmp;
577 memset(&tmp, 0, sizeof(tmp));
578 tmp.out_value = ones;
579 tmp.num_bits = scan_size;
580 scanFields(1, &tmp, TAP_IRSHIFT, pause);
581 /* update device information */
582 buf_cpy(tmp.out_value, tap->cur_instr, scan_size);
583 tap->bypass = 1;
584 }
585 }
586 gotoEndState();
587
588 return ERROR_OK;
589 }
590
591
592
593
594
595 int interface_jtag_add_plain_ir_scan(int num_fields, scan_field_t *fields, enum tap_state state)
596 {
597 scanFields(num_fields, fields, TAP_IRSHIFT, 1);
598 gotoEndState();
599
600 return ERROR_OK;
601 }
602
603 /*extern jtag_command_t **jtag_get_last_command_p(void);*/
604
605 int interface_jtag_add_dr_scan(int num_fields, scan_field_t *fields, enum tap_state state)
606 {
607
608 int j;
609 jtag_tap_t *tap, *nextTap;
610 for(tap = jtag_NextEnabledTap(NULL); tap!= NULL; tap=nextTap)
611 {
612 nextTap=jtag_NextEnabledTap(tap);
613 int found=0;
614 int pause=(nextTap==NULL);
615
616 for (j=0; j < num_fields; j++)
617 {
618 if (tap == fields[j].tap)
619 {
620 found = 1;
621
622 scanFields(1, fields+j, TAP_DRSHIFT, pause);
623 }
624 }
625 if (!found)
626 {
627 scan_field_t tmp;
628 /* program the scan field to 1 bit length, and ignore it's value */
629 tmp.num_bits = 1;
630 tmp.out_value = NULL;
631 tmp.out_mask = NULL;
632 tmp.in_value = NULL;
633 tmp.in_check_value = NULL;
634 tmp.in_check_mask = NULL;
635 tmp.in_handler = NULL;
636 tmp.in_handler_priv = NULL;
637
638 scanFields(1, &tmp, TAP_DRSHIFT, pause);
639 }
640 else
641 {
642 }
643 }
644 gotoEndState();
645 return ERROR_OK;
646 }
647
648 int interface_jtag_add_plain_dr_scan(int num_fields, scan_field_t *fields, enum tap_state state)
649 {
650 scanFields(num_fields, fields, TAP_DRSHIFT, 1);
651 gotoEndState();
652 return ERROR_OK;
653 }
654
655
656 int interface_jtag_add_tlr()
657 {
658 setCurrentState(TAP_RESET);
659 return ERROR_OK;
660 }
661
662
663
664
665 extern int jtag_nsrst_delay;
666 extern int jtag_ntrst_delay;
667
668 int interface_jtag_add_reset(int req_trst, int req_srst)
669 {
670 zy1000_reset(req_trst, req_srst);
671 return ERROR_OK;
672 }
673
674 int interface_jtag_add_runtest(int num_cycles, enum tap_state state)
675 {
676 /* num_cycles can be 0 */
677 setCurrentState(TAP_IDLE);
678
679 /* execute num_cycles, 32 at the time. */
680 int i;
681 for (i=0; i<num_cycles; i+=32)
682 {
683 int num;
684 num=32;
685 if (num_cycles-i<num)
686 {
687 num=num_cycles-i;
688 }
689 shiftValueInner(TAP_IDLE, TAP_IDLE, num, 0);
690 }
691
692 #if !TEST_MANUAL()
693 /* finish in end_state */
694 setCurrentState(state);
695 #else
696 enum tap_state t=TAP_IDLE;
697 /* test manual drive code on any target */
698 int tms;
699 u8 tms_scan = TAP_MOVE(t, state);
700
701 for (i = 0; i < 7; i++)
702 {
703 tms = (tms_scan >> i) & 1;
704 waitIdle();
705 ZY1000_POKE(ZY1000_JTAG_BASE+0x28, tms);
706 }
707 waitIdle();
708 ZY1000_POKE(ZY1000_JTAG_BASE+0x20, state);
709 #endif
710
711
712 return ERROR_OK;
713 }
714
715 int interface_jtag_add_sleep(u32 us)
716 {
717 jtag_sleep(us);
718 return ERROR_OK;
719 }
720
721 int interface_jtag_add_pathmove(int num_states, enum tap_state *path)
722 {
723 int state_count;
724 int tms = 0;
725
726 /*wait for the fifo to be empty*/
727 waitIdle();
728
729 state_count = 0;
730
731 enum tap_state cur_state=cmd_queue_cur_state;
732
733 while (num_states)
734 {
735 if (tap_transitions[cur_state].low == path[state_count])
736 {
737 tms = 0;
738 }
739 else if (tap_transitions[cur_state].high == path[state_count])
740 {
741 tms = 1;
742 }
743 else
744 {
745 LOG_ERROR("BUG: %s -> %s isn't a valid TAP transition", jtag_state_name(cur_state), jtag_state_name(path[state_count]));
746 exit(-1);
747 }
748
749 waitIdle();
750 ZY1000_POKE(ZY1000_JTAG_BASE+0x28, tms);
751
752 cur_state = path[state_count];
753 state_count++;
754 num_states--;
755 }
756
757 waitIdle();
758 ZY1000_POKE(ZY1000_JTAG_BASE+0x20, cur_state);
759 return ERROR_OK;
760 }
761
762
763
764 void embeddedice_write_dcc(jtag_tap_t *tap, int reg_addr, u8 *buffer, int little, int count)
765 {
766 // static int const reg_addr=0x5;
767 enum tap_state end_state=cmd_queue_end_state;
768 if (jtag_NextEnabledTap(jtag_NextEnabledTap(NULL))==NULL)
769 {
770 /* better performance via code duplication */
771 if (little)
772 {
773 int i;
774 for (i = 0; i < count; i++)
775 {
776 shiftValueInner(TAP_DRSHIFT, TAP_DRSHIFT, 32, fast_target_buffer_get_u32(buffer, 1));
777 shiftValueInner(TAP_DRSHIFT, end_state, 6, reg_addr|(1<<5));
778 buffer+=4;
779 }
780 } else
781 {
782 int i;
783 for (i = 0; i < count; i++)
784 {
785 shiftValueInner(TAP_DRSHIFT, TAP_DRSHIFT, 32, fast_target_buffer_get_u32(buffer, 0));
786 shiftValueInner(TAP_DRSHIFT, end_state, 6, reg_addr|(1<<5));
787 buffer+=4;
788 }
789 }
790 }
791 else
792 {
793 int i;
794 for (i = 0; i < count; i++)
795 {
796 embeddedice_write_reg_inner(tap, reg_addr, fast_target_buffer_get_u32(buffer, little));
797 buffer += 4;
798 }
799 }
800 }
801
802 int loadFile(const char *fileName, void **data, int *len);
803
804 /* boolean parameter stored on config */
805 int boolParam(char *var)
806 {
807 bool result = false;
808 char *name = alloc_printf("%s/%s", zylin_config_dir, var);
809 if (name == NULL)
810 return result;
811
812 void *data;
813 int len;
814 if (loadFile(name, &data, &len) == ERROR_OK)
815 {
816 if (len > 1)
817 len = 1;
818 result = strncmp((char *) data, "1", len) == 0;
819 free(data);
820 }
821 free(name);
822 return result;
823 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)