From: <ge...@op...> - 2020-11-30 14:22:20
|
This is an automated email from Gerrit. Nishanth Menon (nm...@ti...) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5951 -- gerrit commit 419ce647caeaec549be997da7f3832d0ffb036e2 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...> diff --git a/tcl/board/j7200evm.cfg b/tcl/board/j7200evm.cfg new file mode 100644 index 0000000..257d697 --- /dev/null +++ b/tcl/board/j7200evm.cfg @@ -0,0 +1,22 @@ +# +# 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 j7200 +} + +source [find target/ti-k3.cfg] + +adapter_khz 2500 -- |