-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
axi_dmac: fix 2d transfer address width
The index on MSB of addresses was set to 31, but the width of address in the axi_dmac depends on a parameter. The mismatch causes issues in the Xilinx simulator which does not extends the narrower width signal with zeros, instead the wider signal gets 'Z' on its MSBs. When the address was incremented with the stride it became 'X' due the uninitialized MSBs.
- Loading branch information
Showing
2 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters