922561002585f3826f1dc16f9853200211680579
[openocd.git] / src / flash / nor / stmsmi.c
1 /***************************************************************************
2 * Copyright (C) 2010 by Antonio Borneo <borneo.antonio@gmail.com> *
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, see <http://www.gnu.org/licenses/>. *
16 ***************************************************************************/
17
18 /* STM Serial Memory Interface (SMI) controller is a SPI bus controller
19 * specifically designed for SPI memories.
20 * Only SPI "mode 3" (CPOL=1 and CPHA=1) is supported.
21 * Two working modes are available:
22 * - SW mode: the SPI is controlled by SW. Any custom commands can be sent
23 * on the bus.
24 * - HW mode: the SPI but is under SMI control. Memory content is directly
25 * accessible in CPU memory space. CPU can read, write and execute memory
26 * content. */
27
28 /* ATTENTION:
29 * To have flash memory mapped in CPU memory space, the SMI controller
30 * have to be in "HW mode". This requires following constraints:
31 * 1) The command "reset init" have to initialize SMI controller and put
32 * it in HW mode;
33 * 2) every command in this file have to return to prompt in HW mode. */
34
35 #ifdef HAVE_CONFIG_H
36 #include "config.h"
37 #endif
38
39 #include "imp.h"
40 #include "spi.h"
41 #include <jtag/jtag.h>
42 #include <helper/time_support.h>
43
44 #define SMI_READ_REG(a) (_SMI_READ_REG(a))
45 #define _SMI_READ_REG(a) \
46 { \
47 int __a; \
48 uint32_t __v; \
49 \
50 __a = target_read_u32(target, io_base + (a), &__v); \
51 if (__a != ERROR_OK) \
52 return __a; \
53 __v; \
54 }
55
56 #define SMI_WRITE_REG(a, v) \
57 { \
58 int __r; \
59 \
60 __r = target_write_u32(target, io_base + (a), (v)); \
61 if (__r != ERROR_OK) \
62 return __r; \
63 }
64
65 #define SMI_POLL_TFF(timeout) \
66 { \
67 int __r; \
68 \
69 __r = poll_tff(target, io_base, timeout); \
70 if (__r != ERROR_OK) \
71 return __r; \
72 }
73
74 #define SMI_SET_SW_MODE() SMI_WRITE_REG(SMI_CR1, \
75 SMI_READ_REG(SMI_CR1) | SMI_SW_MODE)
76 #define SMI_SET_HWWB_MODE() SMI_WRITE_REG(SMI_CR1, \
77 (SMI_READ_REG(SMI_CR1) | SMI_WB_MODE) & ~SMI_SW_MODE)
78 #define SMI_SET_HW_MODE() SMI_WRITE_REG(SMI_CR1, \
79 SMI_READ_REG(SMI_CR1) & ~(SMI_SW_MODE | SMI_WB_MODE))
80 #define SMI_CLEAR_TFF() SMI_WRITE_REG(SMI_SR, ~SMI_TFF)
81
82 #define SMI_BANK_SIZE (0x01000000)
83
84 #define SMI_CR1 (0x00) /* Control register 1 */
85 #define SMI_CR2 (0x04) /* Control register 2 */
86 #define SMI_SR (0x08) /* Status register */
87 #define SMI_TR (0x0c) /* TX */
88 #define SMI_RR (0x10) /* RX */
89
90 /* fields in SMI_CR1 */
91 #define SMI_SW_MODE 0x10000000 /* set to enable SW Mode */
92 #define SMI_WB_MODE 0x20000000 /* Write Burst Mode */
93
94 /* fields in SMI_CR2 */
95 #define SMI_TX_LEN_1 0x00000001 /* data length = 1 byte */
96 #define SMI_TX_LEN_4 0x00000004 /* data length = 4 byte */
97 #define SMI_RX_LEN_3 0x00000030 /* data length = 3 byte */
98 #define SMI_SEND 0x00000080 /* Send data */
99 #define SMI_RSR 0x00000400 /* reads status reg */
100 #define SMI_WE 0x00000800 /* Write Enable */
101 #define SMI_SEL_BANK0 0x00000000 /* Select Bank0 */
102 #define SMI_SEL_BANK1 0x00001000 /* Select Bank1 */
103 #define SMI_SEL_BANK2 0x00002000 /* Select Bank2 */
104 #define SMI_SEL_BANK3 0x00003000 /* Select Bank3 */
105
106 /* fields in SMI_SR */
107 #define SMI_TFF 0x00000100 /* Transfer Finished Flag */
108
109 /* Commands */
110 #define SMI_READ_ID 0x0000009F /* Read Flash Identification */
111
112 /* Timeout in ms */
113 #define SMI_CMD_TIMEOUT (100)
114 #define SMI_PROBE_TIMEOUT (100)
115 #define SMI_MAX_TIMEOUT (3000)
116
117 struct stmsmi_flash_bank {
118 int probed;
119 uint32_t io_base;
120 uint32_t bank_num;
121 const struct flash_device *dev;
122 };
123
124 struct stmsmi_target {
125 char *name;
126 uint32_t tap_idcode;
127 uint32_t smi_base;
128 uint32_t io_base;
129 };
130
131 static const struct stmsmi_target target_devices[] = {
132 /* name, tap_idcode, smi_base, io_base */
133 { "SPEAr3xx/6xx", 0x07926041, 0xf8000000, 0xfc000000 },
134 { "STR75x", 0x4f1f0041, 0x80000000, 0x90000000 },
135 { NULL, 0, 0, 0 }
136 };
137
138 FLASH_BANK_COMMAND_HANDLER(stmsmi_flash_bank_command)
139 {
140 struct stmsmi_flash_bank *stmsmi_info;
141
142 LOG_DEBUG("%s", __func__);
143
144 if (CMD_ARGC < 6)
145 return ERROR_COMMAND_SYNTAX_ERROR;
146
147 stmsmi_info = malloc(sizeof(struct stmsmi_flash_bank));
148 if (stmsmi_info == NULL) {
149 LOG_ERROR("not enough memory");
150 return ERROR_FAIL;
151 }
152
153 bank->driver_priv = stmsmi_info;
154 stmsmi_info->probed = 0;
155
156 return ERROR_OK;
157 }
158
159 /* Poll transmit finished flag */
160 /* timeout in ms */
161 static int poll_tff(struct target *target, uint32_t io_base, int timeout)
162 {
163 int64_t endtime;
164
165 if (SMI_READ_REG(SMI_SR) & SMI_TFF)
166 return ERROR_OK;
167
168 endtime = timeval_ms() + timeout;
169 do {
170 alive_sleep(1);
171 if (SMI_READ_REG(SMI_SR) & SMI_TFF)
172 return ERROR_OK;
173 } while (timeval_ms() < endtime);
174
175 LOG_ERROR("Timeout while polling TFF");
176 return ERROR_FLASH_OPERATION_FAILED;
177 }
178
179 /* Read the status register of the external SPI flash chip.
180 * The operation is triggered by setting SMI_RSR bit.
181 * SMI sends the proper SPI command (0x05) and returns value in SMI_SR */
182 static int read_status_reg(struct flash_bank *bank, uint32_t *status)
183 {
184 struct target *target = bank->target;
185 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
186 uint32_t io_base = stmsmi_info->io_base;
187
188 /* clear transmit finished flag */
189 SMI_CLEAR_TFF();
190
191 /* Read status */
192 SMI_WRITE_REG(SMI_CR2, stmsmi_info->bank_num | SMI_RSR);
193
194 /* Poll transmit finished flag */
195 SMI_POLL_TFF(SMI_CMD_TIMEOUT);
196
197 /* clear transmit finished flag */
198 SMI_CLEAR_TFF();
199
200 *status = SMI_READ_REG(SMI_SR) & 0x0000ffff;
201
202 /* clean-up SMI_CR2 */
203 SMI_WRITE_REG(SMI_CR2, 0); /* AB: Required ? */
204
205 return ERROR_OK;
206 }
207
208 /* check for WIP (write in progress) bit in status register */
209 /* timeout in ms */
210 static int wait_till_ready(struct flash_bank *bank, int timeout)
211 {
212 uint32_t status;
213 int retval;
214 int64_t endtime;
215
216 endtime = timeval_ms() + timeout;
217 do {
218 /* read flash status register */
219 retval = read_status_reg(bank, &status);
220 if (retval != ERROR_OK)
221 return retval;
222
223 if ((status & SPIFLASH_BSY_BIT) == 0)
224 return ERROR_OK;
225 alive_sleep(1);
226 } while (timeval_ms() < endtime);
227
228 LOG_ERROR("timeout");
229 return ERROR_FAIL;
230 }
231
232 /* Send "write enable" command to SPI flash chip.
233 * The operation is triggered by setting SMI_WE bit, and SMI sends
234 * the proper SPI command (0x06) */
235 static int smi_write_enable(struct flash_bank *bank)
236 {
237 struct target *target = bank->target;
238 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
239 uint32_t io_base = stmsmi_info->io_base;
240 uint32_t status;
241 int retval;
242
243 /* Enter in HW mode */
244 SMI_SET_HW_MODE(); /* AB: is this correct ?*/
245
246 /* clear transmit finished flag */
247 SMI_CLEAR_TFF();
248
249 /* Send write enable command */
250 SMI_WRITE_REG(SMI_CR2, stmsmi_info->bank_num | SMI_WE);
251
252 /* Poll transmit finished flag */
253 SMI_POLL_TFF(SMI_CMD_TIMEOUT);
254
255 /* read flash status register */
256 retval = read_status_reg(bank, &status);
257 if (retval != ERROR_OK)
258 return retval;
259
260 /* Check write enabled */
261 if ((status & SPIFLASH_WE_BIT) == 0) {
262 LOG_ERROR("Cannot enable write to flash. Status=0x%08" PRIx32, status);
263 return ERROR_FAIL;
264 }
265
266 return ERROR_OK;
267 }
268
269 static uint32_t erase_command(struct stmsmi_flash_bank *stmsmi_info,
270 uint32_t offset)
271 {
272 union {
273 uint32_t command;
274 uint8_t x[4];
275 } cmd;
276
277 cmd.x[0] = stmsmi_info->dev->erase_cmd;
278 cmd.x[1] = offset >> 16;
279 cmd.x[2] = offset >> 8;
280 cmd.x[3] = offset;
281
282 return cmd.command;
283 }
284
285 static int smi_erase_sector(struct flash_bank *bank, int sector)
286 {
287 struct target *target = bank->target;
288 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
289 uint32_t io_base = stmsmi_info->io_base;
290 uint32_t cmd;
291 int retval;
292
293 retval = smi_write_enable(bank);
294 if (retval != ERROR_OK)
295 return retval;
296
297 /* Switch to SW mode to send sector erase command */
298 SMI_SET_SW_MODE();
299
300 /* clear transmit finished flag */
301 SMI_CLEAR_TFF();
302
303 /* send SPI command "block erase" */
304 cmd = erase_command(stmsmi_info, bank->sectors[sector].offset);
305 SMI_WRITE_REG(SMI_TR, cmd);
306 SMI_WRITE_REG(SMI_CR2, stmsmi_info->bank_num | SMI_SEND | SMI_TX_LEN_4);
307
308 /* Poll transmit finished flag */
309 SMI_POLL_TFF(SMI_CMD_TIMEOUT);
310
311 /* poll WIP for end of self timed Sector Erase cycle */
312 retval = wait_till_ready(bank, SMI_MAX_TIMEOUT);
313 if (retval != ERROR_OK)
314 return retval;
315
316 return ERROR_OK;
317 }
318
319 static int stmsmi_erase(struct flash_bank *bank, int first, int last)
320 {
321 struct target *target = bank->target;
322 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
323 uint32_t io_base = stmsmi_info->io_base;
324 int retval = ERROR_OK;
325 int sector;
326
327 LOG_DEBUG("%s: from sector %d to sector %d", __func__, first, last);
328
329 if (target->state != TARGET_HALTED) {
330 LOG_ERROR("Target not halted");
331 return ERROR_TARGET_NOT_HALTED;
332 }
333
334 if ((first < 0) || (last < first) || (last >= bank->num_sectors)) {
335 LOG_ERROR("Flash sector invalid");
336 return ERROR_FLASH_SECTOR_INVALID;
337 }
338
339 if (!(stmsmi_info->probed)) {
340 LOG_ERROR("Flash bank not probed");
341 return ERROR_FLASH_BANK_NOT_PROBED;
342 }
343
344 for (sector = first; sector <= last; sector++) {
345 if (bank->sectors[sector].is_protected) {
346 LOG_ERROR("Flash sector %d protected", sector);
347 return ERROR_FAIL;
348 }
349 }
350
351 if (stmsmi_info->dev->erase_cmd == 0x00)
352 return ERROR_FLASH_OPER_UNSUPPORTED;
353
354 for (sector = first; sector <= last; sector++) {
355 retval = smi_erase_sector(bank, sector);
356 if (retval != ERROR_OK)
357 break;
358 keep_alive();
359 }
360
361 /* Switch to HW mode before return to prompt */
362 SMI_SET_HW_MODE();
363 return retval;
364 }
365
366 static int stmsmi_protect(struct flash_bank *bank, int set,
367 int first, int last)
368 {
369 int sector;
370
371 for (sector = first; sector <= last; sector++)
372 bank->sectors[sector].is_protected = set;
373 return ERROR_OK;
374 }
375
376 static int smi_write_buffer(struct flash_bank *bank, const uint8_t *buffer,
377 uint32_t address, uint32_t len)
378 {
379 struct target *target = bank->target;
380 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
381 uint32_t io_base = stmsmi_info->io_base;
382 int retval;
383
384 LOG_DEBUG("%s: address=0x%08" PRIx32 " len=0x%08" PRIx32,
385 __func__, address, len);
386
387 retval = smi_write_enable(bank);
388 if (retval != ERROR_OK)
389 return retval;
390
391 /* HW mode, write burst mode */
392 SMI_SET_HWWB_MODE();
393
394 retval = target_write_buffer(target, address, len, buffer);
395 if (retval != ERROR_OK)
396 return retval;
397
398 return ERROR_OK;
399 }
400
401 static int stmsmi_write(struct flash_bank *bank, const uint8_t *buffer,
402 uint32_t offset, uint32_t count)
403 {
404 struct target *target = bank->target;
405 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
406 uint32_t io_base = stmsmi_info->io_base;
407 uint32_t cur_count, page_size, page_offset;
408 int sector;
409 int retval = ERROR_OK;
410
411 LOG_DEBUG("%s: offset=0x%08" PRIx32 " count=0x%08" PRIx32,
412 __func__, offset, count);
413
414 if (target->state != TARGET_HALTED) {
415 LOG_ERROR("Target not halted");
416 return ERROR_TARGET_NOT_HALTED;
417 }
418
419 if (offset + count > stmsmi_info->dev->size_in_bytes) {
420 LOG_WARNING("Write pasts end of flash. Extra data discarded.");
421 count = stmsmi_info->dev->size_in_bytes - offset;
422 }
423
424 /* Check sector protection */
425 for (sector = 0; sector < bank->num_sectors; sector++) {
426 /* Start offset in or before this sector? */
427 /* End offset in or behind this sector? */
428 if ((offset <
429 (bank->sectors[sector].offset + bank->sectors[sector].size))
430 && ((offset + count - 1) >= bank->sectors[sector].offset)
431 && bank->sectors[sector].is_protected) {
432 LOG_ERROR("Flash sector %d protected", sector);
433 return ERROR_FAIL;
434 }
435 }
436
437 /* if no valid page_size, use reasonable default */
438 page_size = stmsmi_info->dev->pagesize ?
439 stmsmi_info->dev->pagesize : SPIFLASH_DEF_PAGESIZE;
440
441 /* unaligned buffer head */
442 if (count > 0 && (offset & 3) != 0) {
443 cur_count = 4 - (offset & 3);
444 if (cur_count > count)
445 cur_count = count;
446 retval = smi_write_buffer(bank, buffer, bank->base + offset,
447 cur_count);
448 if (retval != ERROR_OK)
449 goto err;
450 offset += cur_count;
451 buffer += cur_count;
452 count -= cur_count;
453 }
454
455 page_offset = offset % page_size;
456 /* central part, aligned words */
457 while (count >= 4) {
458 /* clip block at page boundary */
459 if (page_offset + count > page_size)
460 cur_count = page_size - page_offset;
461 else
462 cur_count = count & ~3;
463
464 retval = smi_write_buffer(bank, buffer, bank->base + offset,
465 cur_count);
466 if (retval != ERROR_OK)
467 goto err;
468
469 page_offset = 0;
470 buffer += cur_count;
471 offset += cur_count;
472 count -= cur_count;
473
474 keep_alive();
475 }
476
477 /* buffer tail */
478 if (count > 0)
479 retval = smi_write_buffer(bank, buffer, bank->base + offset, count);
480
481 err:
482 /* Switch to HW mode before return to prompt */
483 SMI_SET_HW_MODE();
484 return retval;
485 }
486
487 /* Return ID of flash device */
488 /* On exit, SW mode is kept */
489 static int read_flash_id(struct flash_bank *bank, uint32_t *id)
490 {
491 struct target *target = bank->target;
492 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
493 uint32_t io_base = stmsmi_info->io_base;
494 int retval;
495
496 if (target->state != TARGET_HALTED) {
497 LOG_ERROR("Target not halted");
498 return ERROR_TARGET_NOT_HALTED;
499 }
500
501 /* poll WIP */
502 retval = wait_till_ready(bank, SMI_PROBE_TIMEOUT);
503 if (retval != ERROR_OK)
504 return retval;
505
506 /* enter in SW mode */
507 SMI_SET_SW_MODE();
508
509 /* clear transmit finished flag */
510 SMI_CLEAR_TFF();
511
512 /* Send SPI command "read ID" */
513 SMI_WRITE_REG(SMI_TR, SMI_READ_ID);
514 SMI_WRITE_REG(SMI_CR2,
515 stmsmi_info->bank_num | SMI_SEND | SMI_RX_LEN_3 | SMI_TX_LEN_1);
516
517 /* Poll transmit finished flag */
518 SMI_POLL_TFF(SMI_CMD_TIMEOUT);
519
520 /* clear transmit finished flag */
521 SMI_CLEAR_TFF();
522
523 /* read ID from Receive Register */
524 *id = SMI_READ_REG(SMI_RR) & 0x00ffffff;
525 return ERROR_OK;
526 }
527
528 static int stmsmi_probe(struct flash_bank *bank)
529 {
530 struct target *target = bank->target;
531 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
532 uint32_t io_base, sectorsize;
533 struct flash_sector *sectors;
534 uint32_t id = 0; /* silence uninitialized warning */
535 const struct stmsmi_target *target_device;
536 int retval;
537
538 if (stmsmi_info->probed)
539 free(bank->sectors);
540 stmsmi_info->probed = 0;
541
542 for (target_device = target_devices ; target_device->name ; ++target_device)
543 if (target_device->tap_idcode == target->tap->idcode)
544 break;
545 if (!target_device->name) {
546 LOG_ERROR("Device ID 0x%" PRIx32 " is not known as SMI capable",
547 target->tap->idcode);
548 return ERROR_FAIL;
549 }
550
551 switch (bank->base - target_device->smi_base) {
552 case 0:
553 stmsmi_info->bank_num = SMI_SEL_BANK0;
554 break;
555 case SMI_BANK_SIZE:
556 stmsmi_info->bank_num = SMI_SEL_BANK1;
557 break;
558 case 2*SMI_BANK_SIZE:
559 stmsmi_info->bank_num = SMI_SEL_BANK2;
560 break;
561 case 3*SMI_BANK_SIZE:
562 stmsmi_info->bank_num = SMI_SEL_BANK3;
563 break;
564 default:
565 LOG_ERROR("Invalid SMI base address 0x%" PRIx32, bank->base);
566 return ERROR_FAIL;
567 }
568 io_base = target_device->io_base;
569 stmsmi_info->io_base = io_base;
570
571 LOG_DEBUG("Valid SMI on device %s at address 0x%" PRIx32,
572 target_device->name, bank->base);
573
574 /* read and decode flash ID; returns in SW mode */
575 retval = read_flash_id(bank, &id);
576 SMI_SET_HW_MODE();
577 if (retval != ERROR_OK)
578 return retval;
579
580 stmsmi_info->dev = NULL;
581 for (const struct flash_device *p = flash_devices; p->name ; p++)
582 if (p->device_id == id) {
583 stmsmi_info->dev = p;
584 break;
585 }
586
587 if (!stmsmi_info->dev) {
588 LOG_ERROR("Unknown flash device (ID 0x%08" PRIx32 ")", id);
589 return ERROR_FAIL;
590 }
591
592 LOG_INFO("Found flash device \'%s\' (ID 0x%08" PRIx32 ")",
593 stmsmi_info->dev->name, stmsmi_info->dev->device_id);
594
595 /* Set correct size value */
596 bank->size = stmsmi_info->dev->size_in_bytes;
597 if (bank->size <= (1UL << 16))
598 LOG_WARNING("device needs 2-byte addresses - not implemented");
599 if (bank->size > (1UL << 24))
600 LOG_WARNING("device needs paging or 4-byte addresses - not implemented");
601
602 /* if no sectors, treat whole bank as single sector */
603 sectorsize = stmsmi_info->dev->sectorsize ?
604 stmsmi_info->dev->sectorsize : stmsmi_info->dev->size_in_bytes;
605
606 /* create and fill sectors array */
607 bank->num_sectors =
608 stmsmi_info->dev->size_in_bytes / sectorsize;
609 sectors = malloc(sizeof(struct flash_sector) * bank->num_sectors);
610 if (sectors == NULL) {
611 LOG_ERROR("not enough memory");
612 return ERROR_FAIL;
613 }
614
615 for (int sector = 0; sector < bank->num_sectors; sector++) {
616 sectors[sector].offset = sector * sectorsize;
617 sectors[sector].size = sectorsize;
618 sectors[sector].is_erased = -1;
619 sectors[sector].is_protected = 1;
620 }
621
622 bank->sectors = sectors;
623 stmsmi_info->probed = 1;
624 return ERROR_OK;
625 }
626
627 static int stmsmi_auto_probe(struct flash_bank *bank)
628 {
629 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
630 if (stmsmi_info->probed)
631 return ERROR_OK;
632 return stmsmi_probe(bank);
633 }
634
635 static int stmsmi_protect_check(struct flash_bank *bank)
636 {
637 /* Nothing to do. Protection is only handled in SW. */
638 return ERROR_OK;
639 }
640
641 static int get_stmsmi_info(struct flash_bank *bank, char *buf, int buf_size)
642 {
643 struct stmsmi_flash_bank *stmsmi_info = bank->driver_priv;
644
645 if (!(stmsmi_info->probed)) {
646 snprintf(buf, buf_size,
647 "\nSMI flash bank not probed yet\n");
648 return ERROR_OK;
649 }
650
651 snprintf(buf, buf_size, "\nSMI flash information:\n"
652 " Device \'%s\' (ID 0x%08" PRIx32 ")\n",
653 stmsmi_info->dev->name, stmsmi_info->dev->device_id);
654
655 return ERROR_OK;
656 }
657
658 struct flash_driver stmsmi_flash = {
659 .name = "stmsmi",
660 .flash_bank_command = stmsmi_flash_bank_command,
661 .erase = stmsmi_erase,
662 .protect = stmsmi_protect,
663 .write = stmsmi_write,
664 .read = default_flash_read,
665 .probe = stmsmi_probe,
666 .auto_probe = stmsmi_auto_probe,
667 .erase_check = default_flash_blank_check,
668 .protect_check = stmsmi_protect_check,
669 .info = get_stmsmi_info,
670 .free_driver_priv = default_flash_free_driver_priv,
671 };

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)