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

WIP: AXI_DEMUX parameters #166

Draft
wants to merge 19 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `axi_lite_to_apb`: Make pipeline registers on request and response path optional (can be enabled
with the new `PipelineRequest` and `PipelineResponse` `parameter`s), and disable those pipeline
registers by default.
- `axi_xbar`: Flatten and update parameter and ports according to (#153). Add inline documentation.
- Remove `doc/axi_xbar.md`.
- Move `doc/svg/axi_xbar.svg` and `doc/axi_xbar.png` to `docs/`.
- `axi_demux`: Flatten and update parameter and ports according to (#153). Add inline documentation.
- Remove `doc/axi_demux.md`.
- Move `doc/svg/axi_demux.svg` and `doc/axi_demux.png` to `docs/`.

### Fixed

Expand Down
76 changes: 0 additions & 76 deletions doc/axi_demux.md

This file was deleted.

108 changes: 0 additions & 108 deletions doc/axi_xbar.md

This file was deleted.

File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
20 changes: 20 additions & 0 deletions scripts/run_vsim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,26 @@ exec_test() {
done
done
;;
axi_xbar)
for GEN_ATOP in 0 1; do
for NUM_MST in 1 6; do
for NUM_SLV in 2 9; do
for MST_ID_USE in 3 5; do
MST_ID=5
for DATA_WIDTH in 64 256; do
call_vsim tb_axi_xbar -t 1ns -voptargs="+acc" \
-gTbNumMasters=$NUM_MST \
-gTbNumSlaves=$NUM_SLV \
-gTbAxiIdWidthMasters=$MST_ID \
-gTbAxiIdUsed=$MST_ID_USE \
-gTbAxiDataWidth=$DATA_WIDTH \
-gTbEnableAtops=$GEN_ATOP
done
done
done
done
done
;;
*)
call_vsim tb_$1 -t 1ns -coverage -voptargs="+acc +cover=bcesfx"
;;
Expand Down
Loading