FreeCalypso > hg > fc-pcm-if
view fpga/mcsi-rx/sync_inputs.v @ 4:1dacfe7d5b3d
sw: add top Makefile
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 11 Oct 2024 23:56:48 +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