Skip to content

Commit

Permalink
axi_xp: Add ATOPs parameter for xbar
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog authored and thommythomaso committed Sep 27, 2022
1 parent 3f7ea9d commit 31aa3e4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/axi_xp.sv
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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 ),
Expand Down

0 comments on commit 31aa3e4

Please sign in to comment.