mirror of
https://git.code.sf.net/p/openocd/code
synced 2024-11-25 02:56:23 +00:00
e84be7088d
This adds a board file for the NXP LS1088ARDB. This only covers the "primary" JTAG header J55, and not the PCIe header (J91). The only oddity is that the LS1088A and CPLD are muxed by adding/removing a jumper from J48. Unfortunately, it doesn't look like OpenOCD supports this CPLD beyond determining the irlen, so it's not very useful. Those who are interested in experimenting can define CWTAP to access the CPLD, but the default is to access the CPU. Signed-off-by: Sean Anderson <sean.anderson@seco.com> Change-Id: Ia07436a534f86bd907aa5fe2a78a326a27855a24 Reviewed-on: https://review.openocd.org/c/openocd/+/6849 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
15 lines
432 B
INI
15 lines
432 B
INI
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# NXP LS1088ARDB (Reference Design Board)
|
|
# This is for the "main" JTAG connector J55
|
|
|
|
transport select jtag
|
|
reset_config srst_only
|
|
|
|
# To access the CPLD, populate J48 and add `-c 'set CWTAP 1'` to your command
|
|
# line. At the time of this writing, programming is unsupported.
|
|
if { [info exists CWTAP] } {
|
|
source [find cpld/altera-epm240.cfg]
|
|
} else {
|
|
source [find target/ls1088a.cfg]
|
|
}
|