fix x's on unused t1 strands

pd
openpowerwtf 2 years ago
parent 7d5b53f672
commit 173e1ad5f1

@ -121,7 +121,7 @@
`define LQ_REL_PIPE_START 2
`define LQ_REL_PIPE_END 4
`define LOAD_CREDITS 8
`define STORE_CREDITS 4
`define STORE_CREDITS 4 //wtf 32 is normal; fpga bug needed 4
`define IUQ_ENTRIES 4 // Instruction Fetch Queue Size
`define MMQ_ENTRIES 2 // MMU Queue Size
`define CR_WIDTH 4

@ -2318,8 +2318,13 @@ tri_xor2 sq_cmdq_send_cnt_t1_one (sq_cmdq_send_cnt_one[1], sq_cmdq_send_cnt[1][
end
endgenerate

//wtf (THREADS1 is def'd)
// iverilog sez: ../../verilog/work/iuq_dispatch.v:2322: warning: @* found no sensitivities so it will never trigger.
// seems to be correct behavior - block won't be entered without a value change
// make it initial, or a generate?
`ifdef THREADS1
always @(*)
//always @(*)
initial
begin: thread1_credit_proc
fx0_credit_cnt_minus_1[1] = 1'b0;
fx0_credit_cnt_minus_2[1] = 1'b0;

@ -786,6 +786,7 @@ module iuq_spr(
.dout(ppr32_l2[i])
);

//wtf these need INITs DEFINE'd!!
// hex 0A0A0E0A = 168431114
tri_rlmreg_p #(.WIDTH(32), .INIT(168431114)) cpcr2_reg(
.vd(vdd),

Loading…
Cancel
Save