Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

axi_pkg::LenWidth not compatible with vivado IP packager #292

Closed
CyrilKoe opened this issue Mar 29, 2023 · 0 comments · Fixed by #293
Closed

axi_pkg::LenWidth not compatible with vivado IP packager #292

CyrilKoe opened this issue Mar 29, 2023 · 0 comments · Fixed by #293

Comments

@CyrilKoe
Copy link
Contributor

CyrilKoe commented Mar 29, 2023

Since commit fe4e020 the typedefaxi_pkg::burst_t now relies on a Verilog parameter BurstWidth.

typedef logic [BurstWidth-1:0] burst_t;

In Occamy emulation we use these typedefs at the ports of a custom packaged Vivado IP.

But Vivado requires that "the IP ports are contained within the port description of the HDL file" (c.f. doc page 14).
So custom Vivado IPs can't use axi_pkg::burst_t at their top anymore (similar issue on this support thread)

We could maybe define the typdef with a numerical value and then the parameter based on the $size of this typedef.
See proposition in d2f98d6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant