From: OpenOCD-Gerrit <ope...@us...> - 2021-03-10 21:25:26
|
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 7e16194828a38382d4cf80604cd547b884f4ad97 (commit) via fe09811ea4d34c2ed50a38a956facf45be197214 (commit) via e8c7689c61686489bf273f5d61b0b257e6aa52f1 (commit) from 39f8327639f005353e905002abd492e9616b217d (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 7e16194828a38382d4cf80604cd547b884f4ad97 Author: Nishanth Menon <nm...@ti...> Date: Mon Nov 30 08:18:32 2020 -0600 tcl/board: Add AM642 EVM basic support Add basic connection details with AM642 EVM Change-Id: I95dcf6afadb61bfd8456b79274eae863b834167d Signed-off-by: Nishanth Menon <nm...@ti...> Reviewed-on: http://openocd.zylin.com/5952 Reviewed-by: Antonio Borneo <bor...@gm...> Reviewed-by: Vignesh Raghavendra Tested-by: jenkins diff --git a/tcl/board/ti_am642evm.cfg b/tcl/board/ti_am642evm.cfg new file mode 100644 index 000000000..e97fdcf13 --- /dev/null +++ b/tcl/board/ti_am642evm.cfg @@ -0,0 +1,24 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# Copyright (C) 2019-2021 Texas Instruments Incorporated - http://www.ti.com/ +# +# Texas Instruments AM642 EVM +# + +# AM642 EVM has an xds110 onboard. +source [find interface/xds110.cfg] + +transport select jtag + +# default JTAG configuration has only SRST and no TRST +reset_config srst_only srst_push_pull + +# delay after SRST goes inactive +adapter srst delay 20 + +if { ![info exists SOC] } { + set SOC am642 +} + +source [find target/ti_k3.cfg] + +adapter speed 250 commit fe09811ea4d34c2ed50a38a956facf45be197214 Author: Nishanth Menon <nm...@ti...> Date: Sun Nov 29 21:01:24 2020 -0600 tcl/board: Add J7200 EVM basic support Add basic connection details with J7200 EVM Change-Id: Ia8fa5033a693ac09849d33693c81b8cb206f17c1 Signed-off-by: Nishanth Menon <nm...@ti...> Reviewed-on: http://openocd.zylin.com/5951 Reviewed-by: Antonio Borneo <bor...@gm...> Tested-by: jenkins diff --git a/tcl/board/ti_j7200evm.cfg b/tcl/board/ti_j7200evm.cfg new file mode 100644 index 000000000..cc70056fb --- /dev/null +++ b/tcl/board/ti_j7200evm.cfg @@ -0,0 +1,24 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# Copyright (C) 2019-2021 Texas Instruments Incorporated - http://www.ti.com/ +# +# Texas Instruments J7200 EVM +# + +# J7200 EVM has an xds110 onboard. +source [find interface/xds110.cfg] + +transport select jtag + +# default JTAG configuration has only SRST and no TRST +reset_config srst_only srst_push_pull + +# delay after SRST goes inactive +adapter srst delay 20 + +if { ![info exists SOC] } { + set SOC j7200 +} + +source [find target/ti_k3.cfg] + +adapter speed 2500 commit e8c7689c61686489bf273f5d61b0b257e6aa52f1 Author: Nishanth Menon <nm...@ti...> Date: Sat May 11 03:15:39 2019 -0500 tcl/board: Add J721E EVM basic support Add basic connection details with J721E EVM Change-Id: I0c2d25252432914d8e371e81761a59c05924bd8e Signed-off-by: Nishanth Menon <nm...@ti...> Reviewed-on: http://openocd.zylin.com/5185 Reviewed-by: Antonio Borneo <bor...@gm...> Tested-by: jenkins diff --git a/tcl/board/ti_j721evm.cfg b/tcl/board/ti_j721evm.cfg new file mode 100644 index 000000000..d0c4b7496 --- /dev/null +++ b/tcl/board/ti_j721evm.cfg @@ -0,0 +1,24 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# Copyright (C) 2019-2021 Texas Instruments Incorporated - http://www.ti.com/ +# +# Texas Instruments J721E EVM +# + +# J721E EVM has an xds110 onboard. +source [find interface/xds110.cfg] + +transport select jtag + +# default JTAG configuration has only SRST and no TRST +reset_config srst_only srst_push_pull + +# delay after SRST goes inactive +adapter srst delay 20 + +if { ![info exists SOC] } { + set SOC j721e +} + +source [find target/ti_k3.cfg] + +adapter speed 2500 ----------------------------------------------------------------------- Summary of changes: tcl/board/{ti_am654evm.cfg => ti_am642evm.cfg} | 10 +++++----- tcl/board/{ti_am654evm.cfg => ti_j7200evm.cfg} | 8 ++++---- tcl/board/{ti_am654evm.cfg => ti_j721evm.cfg} | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-) copy tcl/board/{ti_am654evm.cfg => ti_am642evm.cfg} (73%) copy tcl/board/{ti_am654evm.cfg => ti_j7200evm.cfg} (77%) copy tcl/board/{ti_am654evm.cfg => ti_j721evm.cfg} (77%) hooks/post-receive -- Main OpenOCD repository |