mirror of
https://github.com/lowRISC/ibex.git
synced 2025-04-20 03:47:15 -04:00
Revert "[rtl] Fix counter reset value on FPGA"
This reverts commit 54985d21b0
.
This commit is contained in:
parent
54985d21b0
commit
b30abd4eb2
1 changed files with 9 additions and 12 deletions
|
@ -51,17 +51,12 @@ module ibex_counter #(
|
|||
end
|
||||
|
||||
`ifdef FPGA_XILINX
|
||||
// On Xilinx FPGAs, 48-bit DSPs are available that can be used for the
|
||||
// counter.
|
||||
if (CounterWidth < 49) begin : g_dsp_counter
|
||||
// Set DSP pragma for supported xilinx FPGAs
|
||||
(* use_dsp = "yes" *) logic [CounterWidth-1:0] counter_q;
|
||||
// DSP output register requires synchronous reset.
|
||||
`define COUNTER_FLOP_RST posedge clk_i
|
||||
end else begin : g_no_dsp_counter
|
||||
(* use_dsp = "no" *) logic [CounterWidth-1:0] counter_q;
|
||||
`define COUNTER_FLOP_RST posedge clk_i or negedge rst_ni
|
||||
end
|
||||
// Set DSP pragma for supported xilinx FPGAs
|
||||
localparam int DspPragma = CounterWidth < 49 ? "yes" : "no";
|
||||
(* use_dsp = DspPragma *) logic [CounterWidth-1:0] counter_q;
|
||||
|
||||
// DSP output register requires synchronous reset.
|
||||
`define COUNTER_FLOP_RST posedge clk_i
|
||||
`else
|
||||
logic [CounterWidth-1:0] counter_q;
|
||||
|
||||
|
@ -70,7 +65,6 @@ module ibex_counter #(
|
|||
|
||||
// Counter flop
|
||||
always_ff @(`COUNTER_FLOP_RST) begin
|
||||
`undef COUNTER_FLOP_RST
|
||||
if (!rst_ni) begin
|
||||
counter_q <= '0;
|
||||
end else begin
|
||||
|
@ -104,3 +98,6 @@ module ibex_counter #(
|
|||
assign counter_val_o = counter;
|
||||
|
||||
endmodule
|
||||
|
||||
// Keep helper defines file-local.
|
||||
`undef COUNTER_FLOP_RST
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue