mirror of
https://git.code.sf.net/p/openocd/code
synced 2024-11-22 03:46:27 +00:00
96924dda01
Have verified with JLink: openocd -f interface/jlink.cfg -f board/nxp_imx8mp-evk.cfg -c "gdb_breakpoint_override hard" Change-Id: I74f8766b8c5334ca5758c2672c283ff2405de4c3 Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com> Reviewed-on: https://review.openocd.org/c/openocd/+/8352 Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Tested-by: jenkins
25 lines
501 B
INI
25 lines
501 B
INI
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
#
|
|
# configuration file for NXP IMX8M Plus EVK
|
|
#
|
|
|
|
# only JTAG supported
|
|
transport select jtag
|
|
|
|
# set a safe JTAG clock speed, can be overridden
|
|
adapter speed 1000
|
|
|
|
# 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.MX8MP with 4 Cortex-A55 cores
|
|
set CHIPNAME imx8mp
|
|
set CHIPCORES 4
|
|
|
|
# source SoC configuration
|
|
source [find target/imx8mp.cfg]
|