view fpga/mcsi-rx/sync_inputs.v @ 14:f908a782cff9 default tip

fc-mcsi-rxtx: pcm_fill_word can be static
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 28 Oct 2024 07:25:31 +0000
parents b3190839cce3
children
line wrap: on
line source

/*
 * This Verilog module captures the input synchronizer logic: passing
 * all 3 MCSI inputs through double-DFF synchronizers to bring them into
 * our internal clock domain.
 */

module sync_inputs (IntClk, MCSI_CLK_raw, MCSI_CLK_sync, MCSI_FS_raw,
		    MCSI_FS_sync, MCSI_Din_raw, MCSI_Din_sync);

input IntClk;
input MCSI_CLK_raw, MCSI_FS_raw, MCSI_Din_raw;
output MCSI_CLK_sync, MCSI_FS_sync, MCSI_Din_sync;
reg MCSI_CLK_sync, MCSI_FS_sync, MCSI_Din_sync;

reg MCSI_CLK_sync1, MCSI_FS_sync1, MCSI_Din_sync1;

always @(posedge IntClk)
	MCSI_CLK_sync1 <= MCSI_CLK_raw;

always @(posedge IntClk)
	MCSI_CLK_sync <= MCSI_CLK_sync1;

always @(posedge IntClk)
	MCSI_FS_sync1 <= MCSI_FS_raw;

always @(posedge IntClk)
	MCSI_FS_sync <= MCSI_FS_sync1;

always @(posedge IntClk)
	MCSI_Din_sync1 <= MCSI_Din_raw;

always @(posedge IntClk)
	MCSI_Din_sync <= MCSI_Din_sync1;

endmodule