Telegram Web
Xilinx2017_Multipumping_Flexible.pdf
1.1 MB
Multi-Pumping approach for Resource Reduction on Xilinx FPGAs

#DSP48 #ResourceSharing #MultiPumping #MPM #Xilinx
Xilinx2013_Multi_Pumping_for_Resource.pdf
112 KB
Multi-Pumping approach for Resource Reduction on Xilinx FPGAs

#DSP48 #ResourceSharing #MultiPumping #MPM #Xilinx
Useful attributes for DSP sharing in Vivado 2018.3: DSP_FOLDING and DSP_FOLDING_FASTCLOCK

#UG901 #DSP48 #ResourceSharing #MultiPumping #MPM #Xilinx
“Golden ratio” LUT:FF from UltraFast Design Methodology #UG949 #Xilinx
Bitstream Interpretation Library (BIL) for reading and interpreting bitstream files targeted at Xilinx FPGA:

- Configuration raw data extraction from bitstream files
- XDL design regeneration out of configuration raw data
- Automated configuration mapping analyzation of a device

https://github.com/florianbenz/bil
#Xilinx #bitstream #BIL #XDL #XDLRC #RAW
Optionally run optimization if there are timing violations after placement

if {[ get_property SLACK [ get_timing_paths -max_paths 1 -nworst 1 -setup ] ] < 0 } {
puts "INFO :: Found setup timing violations. Running physical optimization once."
phys_opt_design -directive AggressiveExplore
phys_opt_design -directive AlternateReplication
phys_opt_design -directive AggressiveFanoutOpt
}


#Xilinx #Vivado #phys_opt_design #TCL #automation #slack #violation
A demo to write to BRAM from File and read from BRAM to file for JTAG2AXI IP Core

https://gist.github.com/imrickysu/a30afc117ac7397fdff6

#Xilinx #Vivado #BRAM #JTAG2AXI @fpgasic
To get eFuse DNA Device ID from Xilinx FPGA:
vivado -mode batch -source get_dna.tcl

https://gist.github.com/kylemanna/d177fd0d562f23d419553689252ceab7

#Xilinx #Vivado #DNA #DeviceID @fpgasic
Good example to start using design automation scripts to program bitstream into Xilinx FPGAs on Vivado CLI

https://github.com/lnls-dig/fpga-programming

#Xilinx #Vivado #CLI #TCL #JTAG @fpgasic
SymbiFlow is a work-in-progress FOSS Verilog-to-Bitstream (end-to-end) FPGA synthesis flow, currently targeting Xilinx 7-Series, Lattice iCE40 and Lattice ECP5 FPGAs. Think of it as the GCC of FPGAs.

https://symbiflow.github.io/
https://github.com/SymbiFlow

#xilinx #yosys #ice40 #series7 #latticesemi
Digilent Vivado Scripts contains a set of scripts for creating, maintaining, and releasing git repositories containing minimally version-controlled Vivado and Xilinx SDK projects. These scripts have been tested with Vivado 2018.2.

https://github.com/Digilent/digilent-vivado-scripts

#vivado #git #versioning
My Vivado .gitignore still uncomplete but might be useful (mostly for non-project mode):
https://gist.github.com/iDoka/6147ea6cf320f09d7ca39477b090486a

PS: Feel free to feedback in coments on github
#vivado #git #gitignore #versioning
Another approach offer Xilinx in AR#61232; they just exclude from "ignore list" (in .gitignore ) filetypes which sould be under version control:
https://www.xilinx.com/support/answers/61232.html

Additional reading:
https://www.xilinx.com/support/documentation/application_notes/xapp1165.pdf

#vivado #git #gitignore #versioning #XAPP1165 #UG1198
By default Vivado Lab setup JTAG clock speed at 15MHz. You can improve bitstream downloading time twice with help of this command:

set_property PARAM.FREQUENCY 30000000 [get_hw_targets]

preceding to doing open_hw_target.

The 30MHz is maximal frequency for MSSPE interface of FT2232H IC which used in Xilinx/Digilent USB-to-JTAG adapters.

#Xilinx #JTAG #FT2232H #Digilent #bitstream
For other RTL-editors you can run #Verilator (as Linter) directly from CLI (customize command args with adding your secret sauce):

verilator --error-limit 100 \
--default-language 1800-2012 \
--bbox-sys --bbox-unsup -Wall \
-Wno-DECLFILENAME \
-Wno-IGNINC -Wno-IGNDEF \
-Wno-WIDTH -Wno-STMTDLY \
-Wno-UNDRIVEN \
-Wno-PINCONNECTEMPTY \
-Wno-INPUTPINEMPTY \
-Wno-OUTPUTPINEMPTY


#lint #verilog #SV
Implements the Verilog Language Extension for Visual Studio Editor versions 2015, 2017, and 2019.

Download & Sources

#verilog #VisualStudio #SyntaxHiglighter
2025/07/05 07:50:18
Back to Top
HTML Embed Code: