This is an automated email from Gerrit. "Peter pan <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9028
-- gerrit commit f6e4903a3cc746ffa0b8b2cd66d23ac5f34964e7 Author: Jiafei Pan <[email protected]> Date: Mon Nov 3 16:13:54 2025 +0800 target: add NXP frdm-imx93 board support Add frdm-imx93 board file. Have verified with JLink: openocd -f interface/jlink.cfg -f board/nxp/frdm-imx93.cfg Change-Id: I01dce52c6ea588ed2a12c6e468592e7c775eb1a1 Signed-off-by: Jiafei Pan <[email protected]> diff --git a/tcl/board/nxp/frdm-imx93.cfg b/tcl/board/nxp/frdm-imx93.cfg new file mode 100644 index 0000000000..602b756ab8 --- /dev/null +++ b/tcl/board/nxp/frdm-imx93.cfg @@ -0,0 +1,20 @@ +# SPDX-License-Identifier: GPL-2.0-or-later +# +# configuration file for NXP frdm-imx93 +# + +transport select swd + +# default JTAG configuration has only SRST and no TRST +reset_config srst_only srst_push_pull + +# delay after SRST goes inactive +adapter srst delay 70 + + +# board has an i.MX93 with 2 Cortex-A55 cores +set CHIPNAME imx93 +set CHIPCORES 2 + +# source SoC configuration +source [find target/nxp/imx93.cfg] --
