blob: f9948b036957886b41f8b760624bfa2d0c14527f [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
//
// Generic double-synchronizer flop
// This may need to be moved to prim_generic if libraries have a specific cell
// for synchronization
module prim_flop_2sync #(
parameter int Width = 16,
parameter logic [Width-1:0] ResetValue = '0
) (
input clk_i,
input rst_ni,
input [Width-1:0] d_i,
output logic [Width-1:0] q_o
);
// TODO(#10432): Add CDC instrumentation for simulations
logic [Width-1:0] intq;
prim_flop #(
.Width(Width),
.ResetValue(ResetValue)
) u_sync_1 (
.clk_i,
.rst_ni,
.d_i,
.q_o(intq)
);
prim_flop #(
.Width(Width),
.ResetValue(ResetValue)
) u_sync_2 (
.clk_i,
.rst_ni,
.d_i(intq),
.q_o
);
endmodule : prim_flop_2sync