diff options
author | Felix Held <felix-openocd@felixheld.de> | 2016-08-10 03:09:02 +0200 |
---|---|---|
committer | Andreas Fritiofson <andreas.fritiofson@gmail.com> | 2016-08-10 09:42:37 +0100 |
commit | 5e010127e7afab8a14a3055814580f528ea40caa (patch) | |
tree | 9ee9ff3265443ad093a0e4334535573b881e1a3d /tcl | |
parent | 03942f867a0de1eff13828e15b9798a1e589b169 (diff) |
xilinx-xc7: correct Artix7 15T IDCODE
The IDCODE of Artix7 15T in the UG470 is wrong; Artix7 35T and 15T don't have the same IDCODE.
I've tested this on real hardware.
Change-Id: Iac267dc449c23454dd119126749dbeb8267c18ac
Signed-off-by: Felix Held <felix-openocd@felixheld.de>
Reviewed-on: http://openocd.zylin.com/3633
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Tested-by: jenkins
Diffstat (limited to 'tcl')
-rw-r--r-- | tcl/cpld/xilinx-xc7.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcl/cpld/xilinx-xc7.cfg b/tcl/cpld/xilinx-xc7.cfg index 5c5b0232..d5824f8a 100644 --- a/tcl/cpld/xilinx-xc7.cfg +++ b/tcl/cpld/xilinx-xc7.cfg @@ -9,7 +9,7 @@ if { [info exists CHIPNAME] } { # the 4 top bits (28:31) are the die stepping/revisions. ignore it. jtag newtap $_CHIPNAME tap -irlen 6 -ignore-version \ - -expected-id 0x0362D093 \ + -expected-id 0x0362E093 \ -expected-id 0x0362D093 \ -expected-id 0x0362C093 \ -expected-id 0x03632093 \ |