File tree 7 files changed +17
-16
lines changed
7 files changed +17
-16
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ packages:
7
7
dependencies:
8
8
- common_cells
9
9
axi:
10
- revision: fed6a2f3a92ad7d7b7ef42840901eb218a3c5532
11
- version: null
10
+ revision: 39f5f2d51c5e524f6fc5cf8b6e901f7dcc5622d7
11
+ version: 0.39.6
12
12
source:
13
13
Git: https://github.com/pulp-platform/axi.git
14
14
dependencies:
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ dependencies:
13
13
idma : { git: "https://github.com/pulp-platform/iDMA.git", version: 0.6.2 }
14
14
common_cells : { git: "https://github.com/pulp-platform/common_cells.git", version: 1.35.0 }
15
15
common_verification : { git: "https://github.com/pulp-platform/common_verification.git", version: 0.2.3 }
16
- axi : { git: "https://github.com/pulp-platform/axi.git", rev: "feature/multicast-xbar" } # TODO: Use release once merged
16
+ axi : { git: "https://github.com/pulp-platform/axi.git", version: 0.39.3 } # TODO: Use release once merged
17
17
axi_riscv_atomics : { git: "https://github.com/pulp-platform/axi_riscv_atomics.git", version: 0.8.2 }
18
18
19
19
export_include_dirs :
Original file line number Diff line number Diff line change @@ -164,7 +164,8 @@ module floo_router
164
164
assign acc_masked_ready_d[in][v] = (in_ready[in][v]) ? '0 :
165
165
(acc_masked_ready_q[in][v] | masked_all_ready[in][v]);
166
166
assign current_accumulated[in][v] = acc_masked_ready_q[in][v] | masked_all_ready[in][v];
167
- assign in_ready[in][v] = & (current_accumulated[in][v] | ~ (NoLoopback? (route_mask[in][v] & ~ (1 << in)) : route_mask[in][v]));
167
+ assign in_ready[in][v] = & (current_accumulated[in][v] |
168
+ ~ (NoLoopback? (route_mask[in][v] & ~ (1 << in)) : route_mask[in][v]));
168
169
end
169
170
end
170
171
end
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ floo_wave_init
8
8
9
9
for {set i 0} {$i < 2} {incr i} {
10
10
set name [list " Chimney $i " ]
11
- floo_nw_chimney_wave tb_floo_narrow_wide_chimney/i_floo_narrow_wide_chimney_ ${i} $name
11
+ floo_nw_chimney_wave tb_floo_nw_chimney/i_floo_nw_chimney_ ${i} $name
12
12
}
13
13
14
14
floo_wave_style
Original file line number Diff line number Diff line change @@ -74,9 +74,9 @@ module floo_axi_rand_slave #(
74
74
UniqueIds : 0 ,
75
75
AxiAddrWidth : AxiCfg.AddrWidth,
76
76
AxiDataWidth : AxiCfg.DataWidth,
77
- NoAddrRules : NumSlaves,
78
- NoMulticastPorts : 0 ,
79
- NoMulticastRules : 0
77
+ NoAddrRules : NumSlaves
78
+ // NoMulticastPorts: 0,
79
+ // NoMulticastRules: 0
80
80
} ;
81
81
82
82
axi_xbar_req_t xbar_in_req;
Original file line number Diff line number Diff line change @@ -69,8 +69,8 @@ module floo_axi_test_node #(
69
69
.W_MIN_WAIT_CYCLES ( 0 ),
70
70
.W_MAX_WAIT_CYCLES ( 0 ),
71
71
.RESP_MIN_WAIT_CYCLES ( 0 ),
72
- .RESP_MAX_WAIT_CYCLES ( 0 ),
73
- .ENABLE_MULTICAST ( EnMultiCast )
72
+ .RESP_MAX_WAIT_CYCLES ( 0 )
73
+ // .ENABLE_MULTICAST ( EnMultiCast )
74
74
) axi_rand_master_t ;
75
75
76
76
AXI_BUS_DV # (
@@ -105,9 +105,9 @@ module floo_axi_test_node #(
105
105
AddrRegions[i].end_addr,
106
106
axi_pkg :: DEVICE_NONBUFFERABLE );
107
107
end
108
- if (EnMultiCast) begin
109
- axi_rand_master.set_multicast_probability (50 );
110
- end
108
+ // if(EnMultiCast) begin
109
+ // axi_rand_master.set_multicast_probability(50);
110
+ // end
111
111
axi_rand_master.reset ();
112
112
@ (posedge rst_ni)
113
113
axi_rand_master.run (NumReads, NumWrites);
Original file line number Diff line number Diff line change @@ -152,9 +152,9 @@ module floo_dma_test_node #(
152
152
AxiAddrWidth : AxiCfg.AddrWidth,
153
153
AxiDataWidth : AxiCfg.DataWidth,
154
154
NoAddrRules : 1 ,
155
- PipelineStages : 0 ,
156
- NoMulticastPorts : 0 ,
157
- NoMulticastRules : 0
155
+ PipelineStages : 0
156
+ // NoMulticastPorts: 0,
157
+ // NoMulticastRules: 0
158
158
} ;
159
159
160
160
// --------------------------------------
You can’t perform that action at this time.
0 commit comments