mirror of
https://git.code.sf.net/p/openocd/code
synced 2024-11-24 19:56:23 +00:00
573a39b36c
For historical reasons, no license information was added to the tcl files. This makes trivial adding the SPDX tag through script: fgrep -rL SPDX tcl | while read a;do \ sed -i '1{i# SPDX-License-Identifier: GPL-2.0-or-later\n }' $a;done With no specific license information from the author, let's extend the OpenOCD project license GPL-2.0-or-later to the files. Change-Id: Ief3da306a6e1978de7dfb8f552f9ff23151f9944 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7030 Tested-by: jenkins
21 lines
532 B
INI
21 lines
532 B
INI
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
if { [info exists CHIPNAME] } {
|
|
set _CHIPNAME $CHIPNAME
|
|
} else {
|
|
set _CHIPNAME xcf
|
|
}
|
|
|
|
# IDs acquired from Xilinx's DS123.pdf
|
|
# XCF01S <v>5044093
|
|
# XCF02S <v>5045093
|
|
# XCF04S <v>5046093
|
|
# The 4 top bits (28:31) are the device revision. Ignore it.
|
|
jtag newtap $_CHIPNAME flash -irlen 8 -ignore-version \
|
|
-expected-id 0x05044093 \
|
|
-expected-id 0x05045093 \
|
|
-expected-id 0x05046093
|
|
|
|
target create xcf.flash testee -chain-position $_CHIPNAME.flash
|
|
flash bank XCF_S xcf 0 0 0 0 xcf.flash
|