From: OpenOCD-Gerrit <ope...@us...> - 2022-05-27 22:49:14
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 9d8b98da69f1cbbce3f8963be643cc2b4d07ff56 (commit) from 32b3859258abb97248a52e4c65b1fbce7581fab5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 9d8b98da69f1cbbce3f8963be643cc2b4d07ff56 Author: Sean Anderson <sea...@se...> Date: Fri May 13 11:07:29 2022 -0400 target: Add LS1028A The LS1028A is similar to the LS1088A, except that it has 2 CPUs (and different ethernet capabilities). From a JTAG perspective, all that's different is the number of CPUs and the TAPID. Signed-off-by: Sean Anderson <sea...@se...> Change-Id: Iba3a0ecfbf82cfcfeb7eea42d52121c3b9dc93a2 Reviewed-on: https://review.openocd.org/c/openocd/+/6976 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/tcl/target/ls1028a.cfg b/tcl/target/ls1028a.cfg new file mode 100644 index 000000000..463ec7dda --- /dev/null +++ b/tcl/target/ls1028a.cfg @@ -0,0 +1,18 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# NXP LS1028A + +if { [info exists CHIPNAME] } { + set _CHIPNAME $CHIPNAME +} else { + set _CHIPNAME ls1028a +} + +if { [info exists DAP_TAPID] } { + set _DAP_TAPID $DAP_TAPID +} else { + set _DAP_TAPID 0x6ba00477 +} + +set _CPUS 2 + +source [find target/lsch3_common.cfg] ----------------------------------------------------------------------- Summary of changes: tcl/target/{ls1088a.cfg => ls1028a.cfg} | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) copy tcl/target/{ls1088a.cfg => ls1028a.cfg} (63%) hooks/post-receive -- Main OpenOCD repository |