2 Commits

Author SHA1 Message Date
Oliver Bruendler
5390c0c3c0 BUGFIX: Workaround for ISE tools implementing memory as FFs in case of 1 stream 2019-11-25 10:23:36 +01:00
Oliver Bruendler
cec193edca DEVEL: Updated documentation for release 2019-11-19 10:58:25 +01:00
2 changed files with 13 additions and 1 deletions

View File

@@ -1,3 +1,15 @@
## 1.2.2.
* Bugfixes
* Workaround for ISE tools implementing memory as FFs in case of 1 stream
## 1.2.1
* Bugfixes
* Optimized timing between input FIFO and DMA
* Fix data unwrapping in driver
* Corrected several issues in documentation
* Made driver C++ tolerant
* Made code working for only one streamgit
## 1.2.0
* First Open Source Release (older versions not kept in history)
* Added license and copyright headers

View File

@@ -398,7 +398,7 @@ begin
AxiDataWidth_g => AxiDataWidth_g,
AxiMaxBeats_g => AxiMaxBurstBeats_g,
AxiMaxOpenTrasactions_g => AxiMaxOpenTrasactions_g,
MaxOpenCommands_g => Streams_g,
MaxOpenCommands_g => max(2, Streams_g), -- ISE tools implement memory as FFs for one stream. Reason is unkown, so we always implement two streams for resource optimization reasons.
DataFifoDepth_g => 1024,
AxiFifoDepth_g => AxiFifoDepth_g,
RamBehavior_g => "RBW" -- Okay for Xilinx chips