From 621ad8a5759ca10899125ecf6999993354ec33a6 Mon Sep 17 00:00:00 2001 From: John McMaster Date: Mon, 3 Dec 2018 17:47:40 -0800 Subject: [PATCH] tilegrid: add note about potential issue Signed-off-by: John McMaster --- fuzzers/005-tilegrid/util.tcl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fuzzers/005-tilegrid/util.tcl b/fuzzers/005-tilegrid/util.tcl index e43b3eea..e57dd641 100644 --- a/fuzzers/005-tilegrid/util.tcl +++ b/fuzzers/005-tilegrid/util.tcl @@ -120,6 +120,8 @@ proc assign_iobs {} { # All possible IOs set iopad [make_iob_pads] # Basic pins + # XXX: not all pads are valid, but seems to be working for now + # Maybe better to set to XRAY_PIN_* and take out of the list? set_property -dict "PACKAGE_PIN [lindex $iopad 0] IOSTANDARD LVCMOS33" [get_ports clk] set_property -dict "PACKAGE_PIN [lindex $iopad 1] IOSTANDARD LVCMOS33" [get_ports do] set_property -dict "PACKAGE_PIN [lindex $iopad 2] IOSTANDARD LVCMOS33" [get_ports stb]