Skip to content

Commit

Permalink
TYPE->PROP
Browse files Browse the repository at this point in the history
  • Loading branch information
gadfort committed Jul 30, 2024
1 parent ff7236b commit befbb27
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions umi/lumi/rtl/lumi_rx.v
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ module lumi_rx
.CHAOS(0), // generates random full logic when set
.CTRLW(1), // width of asic ctrl interface
.TESTW(1), // width of asic test interface
.TYPE("DEFAULT")) // Pass through variable for hard macro
.PROP("DEFAULT")) // Pass through variable for hard macro
req_fifo_i(// Outputs
.wr_full (req_fifo_full[j]),
.rd_dout (req_fifo_dout[j*RXFIFOW+:RXFIFOW]),
Expand Down Expand Up @@ -598,7 +598,7 @@ module lumi_rx
.CHAOS(0), // generates random full logic when set
.CTRLW(1), // width of asic ctrl interface
.TESTW(1), // width of asic test interface
.TYPE("DEFAULT")) // Pass through variable for hard macro
.PROP("DEFAULT")) // Pass through variable for hard macro
resp_fifo_i(// Outputs
.wr_full (resp_fifo_full[k]),
.rd_dout (resp_fifo_dout[k*RXFIFOW+:RXFIFOW]),
Expand Down Expand Up @@ -663,7 +663,7 @@ module lumi_rx
.CHAOS(0), // generates random full logic when set
.CTRLW(1), // width of asic ctrl interface
.TESTW(1), // width of asic test interface
.TYPE("DEFAULT")) // Pass through variable for hard macro
.PROP("DEFAULT")) // Pass through variable for hard macro
lnk_fifo_i(// Outputs
.wr_full (),
.rd_dout (lnk_fifo_dout[CW-1:0]),
Expand Down Expand Up @@ -782,7 +782,7 @@ module lumi_rx
.CHAOS(0), // generates random full logic when set
.CTRLW(1), // width of asic ctrl interface
.TESTW(1), // width of asic test interface
.TYPE("DEFAULT")) // Pass through variable for hard macro
.PROP("DEFAULT")) // Pass through variable for hard macro
req_syncfifo_i(// Outputs
.wr_full (sync_fifo_full[0]),
.rd_dout (sync_fifo_dout[IOW-1:0]),
Expand Down Expand Up @@ -810,7 +810,7 @@ module lumi_rx
.CHAOS(0), // generates random full logic when set
.CTRLW(1), // width of asic ctrl interface
.TESTW(1), // width of asic test interface
.TYPE("DEFAULT")) // Pass through variable for hard macro
.PROP("DEFAULT")) // Pass through variable for hard macro
resp_syncfifo_i(// Outputs
.wr_full (sync_fifo_full[1]),
.rd_dout (sync_fifo_dout[2*IOW-1:IOW]),
Expand Down
2 changes: 1 addition & 1 deletion umi/lumi/rtl/lumi_tx.v
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ module lumi_tx
.CHAOS(0), // generates random full logic when set
.CTRLW(1), // width of asic ctrl interface
.TESTW(1), // width of asic test interface
.TYPE("DEFAULT")) // Pass through variable for hard macro
.PROP("DEFAULT")) // Pass through variable for hard macro
phy_fifo_i(// Outputs
.wr_full (phy_fifo_full),
.rd_dout (phy_txdata[IOW-1:0]),
Expand Down
2 changes: 1 addition & 1 deletion umi/umi/rtl/umi_mem_agent.v
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ module umi_mem_agent

la_spram #(.DW (DW), // Memory width
.AW ($clog2(RAMDEPTH)), // Address width (derived)
.TYPE (SRAMTYPE), // Pass through variable for hard macro
.PROP (SRAMTYPE), // Pass through variable for hard macro
.CTRLW (CTRLW), // Width of asic ctrl interface
.TESTW (128) // Width of asic test interface
)
Expand Down
2 changes: 1 addition & 1 deletion umi/utils/rtl/tl2umi_np.v
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ module tl2umi_np #(
la_syncfifo #(
.DW (CW + AW + AW + DW),
.DEPTH (2),
.TYPE ("DEFAULT")
.PROP ("DEFAULT")
) tl2umi_req_fifo (
.clk (clk),
.nreset (nreset),
Expand Down

0 comments on commit befbb27

Please sign in to comment.