From: OpenOCD-Gerrit <ope...@us...> - 2022-05-27 22:51:11
|
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 390720c283992a0a6e8d7aea94924a15d3c8e900 (commit) from 9d8b98da69f1cbbce3f8963be643cc2b4d07ff56 (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 390720c283992a0a6e8d7aea94924a15d3c8e900 Author: Sean Anderson <sea...@se...> Date: Fri May 13 11:12:58 2022 -0400 tcl: Add support for Kontron SMARC-sAL28 This commit is adapted from [1]. [1] https://review.openocd.org/c/openocd/+/4999 Signed-off-by: Michael Walle <mic...@ko...> Signed-off-by: Heiko Thiery <hei...@ko...> [ adapted to use common configuration ] Signed-off-by: Sean Anderson <sea...@se...> Change-Id: I9a428371694e7864e03055b8de18a55a7843b8c2 Reviewed-on: https://review.openocd.org/c/openocd/+/6977 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/tcl/board/kontron_sl28.cfg b/tcl/board/kontron_sl28.cfg new file mode 100644 index 000000000..9816f3802 --- /dev/null +++ b/tcl/board/kontron_sl28.cfg @@ -0,0 +1,14 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# Kontron SMARC-sAL28 + +transport select jtag +reset_config srst_only srst_nogate + +jtag newtap unknown0 tap -irlen 12 + +set _CPUS 2 +source [find target/ls1028a.cfg] + +source [find tcl/cpld/altera-epm240.cfg] + +adapter speed 2000 ----------------------------------------------------------------------- Summary of changes: tcl/board/kontron_sl28.cfg | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tcl/board/kontron_sl28.cfg hooks/post-receive -- Main OpenOCD repository |