From 521eb43c607ea45380f02a95f2a8a5c2e1eb21d2 Mon Sep 17 00:00:00 2001 From: Alexey Brodkin Date: Wed, 12 Feb 2020 12:23:55 +0300 Subject: [PATCH] board: arc: emsdp: Fix JTAG TAP id 0x200444b1 -> 0x200044b1 Otherwise we this annoying message which might mislead people looking at some unrelated failures: ----------------------------->8--------------------------- JTAG tap: arc-em.cpu tap/device found: 0x200044b1 JTAG tap: arc-em.cpu UNEXPECTED: 0x200044b1 JTAG tap: arc-em.cpu expected 1 of 1: 0x200444b1 ----------------------------->8--------------------------- Signed-off-by: Alexey Brodkin --- boards/arc/emsdp/support/openocd.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/arc/emsdp/support/openocd.cfg b/boards/arc/emsdp/support/openocd.cfg index d4a5244d9f0..f3367e43ff6 100644 --- a/boards/arc/emsdp/support/openocd.cfg +++ b/boards/arc/emsdp/support/openocd.cfg @@ -33,7 +33,7 @@ set _CHIPNAME arc-em set _TARGETNAME $_CHIPNAME.cpu # EM SDP IDENTITY is 0x200444b1 -jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -expected-id 0x200444b1 +jtag newtap $_CHIPNAME cpu -irlen 4 -ircapture 0x1 -expected-id 0x200044b1 set _coreid 0 set _dbgbase [expr 0x00000000 | ($_coreid << 13)]