forked from pulp-platform/axi
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
axi_xp: Add ATOPs parameter for xbar
- Loading branch information
1 parent
3f7ea9d
commit 31aa3e4
Showing
1 changed file
with
4 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,14 @@ | |
// | ||
// Authors: | ||
// - Andreas Kurth <[email protected]> | ||
// - Vikram Jain <[email protected]> | ||
|
||
`include "axi/typedef.svh" | ||
|
||
/// AXI Crosspoint (XP) with homomorphous slave and master ports. | ||
module axi_xp #( | ||
// Atomic operations settings | ||
parameter bit ATOPs = 1'b1, | ||
/// Number of slave ports. | ||
parameter int unsigned NumSlvPorts = 32'd0, | ||
/// Number of master ports. | ||
|
@@ -123,6 +126,7 @@ module axi_xp #( | |
|
||
axi_xbar #( | ||
.Cfg ( xbar_cfg ), | ||
.ATOPs ( ATOPs ), | ||
.Connectivity ( Connectivity ), | ||
.slv_aw_chan_t ( aw_t ), | ||
.mst_aw_chan_t ( xbar_aw_t ), | ||
|