-
Notifications
You must be signed in to change notification settings - Fork 271
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
Add random user signal generation for llc-partition test #315
Conversation
b08e825
to
61f2617
Compare
src/axi_test.sv
Outdated
@@ -712,7 +712,8 @@ package axi_test; | |||
// same direction | |||
// Dependent parameters, do not override. | |||
parameter int AXI_STRB_WIDTH = DW/8, | |||
parameter int N_AXI_IDS = 2**IW | |||
parameter int N_AXI_IDS = 2**IW, | |||
parameter int MAXTHREAD = 0 // the number of partitions supported for cache |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we make this generic? This could be used with other IPs than the cache.
61f2617
to
ebb53d0
Compare
@DiyouS, is this still active? |
This commit is still used for the functional verification of axi_llc partitioning. Maybe we can close the merge request but kept it as a branch. What's your thought? |
We should definitively upstream it. Can you rebase it on master? |
Yes I can do it |
…ompatible version. Add two ports for axi_rand_master class: AX_USER_RANGE for configuring the range of randomizing the aw/ar user signal, and AX_USER_RAND to turn on/off the random user signal functionality. The function is set as default-off.
3540fe4
to
158aa6f
Compare
No description provided.