You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: comp/base/misc/crossbarx/crossbarx.vhd
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -511,10 +511,16 @@ begin
511
511
TX_TRANS_DST_RDY => trsr_trans_comp_dst_rdy(s)
512
512
);
513
513
514
-
-- psl assert_trcg :
515
-
-- assert always (((or trcg_trans_vld)='1' and trcg_trans_src_rdy='1' and trcg_trans_dst_rdy='1' and trsr_trans_dst_rdy(s)='0')=false) @rising_edge(CLK)
516
-
-- report "WARNING: CROSSBARX: Internal Transaction FIFO is FULL causing a decrease in throughput! Consider increasing value of generic TRANS_FIFO_ITEMS (currently to_string(TRANS_FIFO_ITEMS)).";
517
-
514
+
-- synthesis translate_off
515
+
process(CLK)
516
+
begin
517
+
if (rising_edge(CLK)) then
518
+
if (not (((or trcg_trans_vld)='1'and trcg_trans_src_rdy='1'and trcg_trans_dst_rdy='1'and trsr_trans_dst_rdy(s)='0')=false)) then
519
+
report"WARNING: CROSSBARX: Internal Transaction FIFO is FULL causing a decrease in throughput! Consider increasing value of generic TRANS_FIFO_ITEMS currently ("& to_string(TRANS_FIFO_ITEMS) &")."severitywarning;
-- report "WARNING: EVENT COUNTER MI WRAPPER: The width of register for counting number of events (to_string(total_events'length)) is higher or equal to the total width of the connected MI interface (to_string(MI_WIDTH))! This might cause overflow of the value read from this register!";
190
+
-- synthesis translate_off
191
+
process(CLK)
192
+
begin
193
+
if (rising_edge(CLK)) then
194
+
if (total_events'length+1> MI_WIDTH) then
195
+
report"WARNING: EVENT COUNTER MI WRAPPER: The width of register for counting number of events "& to_string(total_events'length) &" is higher or equal to the total width of the connected MI interface "& to_string(MI_WIDTH) &"! This might cause overflow of the value read from this register!"severitywarning;
0 commit comments