From: <ge...@op...> - 2020-11-30 14:22:23
|
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/5952 -- gerrit commit 5d60cc540e1afa70cd663e1228f4af6421933ada 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...> diff --git a/tcl/board/am642evm.cfg b/tcl/board/am642evm.cfg new file mode 100644 index 0000000..e003390 --- /dev/null +++ b/tcl/board/am642evm.cfg @@ -0,0 +1,22 @@ +# +# 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_khz 2500 -- |