跨時(shí)鐘域是FPGA設(shè)計(jì)中最容易出錯(cuò)的設(shè)計(jì)模塊,而且一旦跨時(shí)鐘域出現(xiàn)問題,定位排查會(huì)非常困難,因?yàn)榭鐣r(shí)鐘域問題一般是偶現(xiàn)的,而且除非是構(gòu)造特殊用例一般的仿真是發(fā)現(xiàn)不了這類問題的。
優(yōu)秀的FPGA工程,系統(tǒng)工程師一定會(huì)進(jìn)行合理的時(shí)鐘域劃分,理想的情況是整個(gè)工程只有一個(gè)時(shí)鐘,完全不考慮跨時(shí)鐘域的問題,但是實(shí)際的工程中一般是不存在的,因此合理的跨時(shí)鐘域設(shè)計(jì)是很有必要的。
單bit慢變信號(hào)跨時(shí)鐘域方法:
1、信號(hào)展寬
2、跨時(shí)鐘打兩拍
3、取沿
// ============================================================
// File Name: cm_cdc_1bit
// VERSION : V1.0
// DATA : 2022/9/28
// Author : FPGA干貨分享
// ============================================================
// 功能:?jiǎn)蝏it慢變信號(hào)跨時(shí)鐘域模塊
// ============================================================
`timescale 1ns/1ps
module cm_cdc_1bit (
input wire I_clk_a , ///輸入時(shí)鐘a
input wire I_clk_b , ///輸入時(shí)鐘b
input wire I_single_a , ///a時(shí)鐘輸入信號(hào)
output reg O_single_b ///b時(shí)鐘輸出信號(hào)
);
// ============================================================
// wire reg
// ============================================================
reg S_clr_flag_a_d0 ;
reg S_clr_flag_a_d1 ;
reg S_clr_flag_a_all ;
reg S_clr_flag_b_d0 ;
reg S_clr_flag_b_d1 ;
reg S_clr_flag_b_d2 ;
reg S_clr_b_posedge ;
// ============================================================
// a時(shí)鐘域
// ============================================================
always @(posedge I_clk_a)
begin
S_clr_flag_a_d0 <= I_single_a;
S_clr_flag_a_d1 <= S_clr_flag_a_d0;
end
///跨時(shí)鐘域之前先擴(kuò)展
always @(posedge I_clk_a)
S_clr_flag_a_all <= I_single_a|S_clr_flag_a_d0|S_clr_flag_a_d1 ;
// ============================================================
// b時(shí)鐘域
// ============================================================
///使用第二個(gè)時(shí)鐘進(jìn)行打拍
always @(posedge I_clk_b)
begin
S_clr_flag_b_d0 <= S_clr_flag_a_all;
S_clr_flag_b_d1 <= S_clr_flag_b_d0 ;
S_clr_flag_b_d2 <= S_clr_flag_b_d1 ;
end
//打兩拍之后的信號(hào)進(jìn)行處理
always @(posedge I_clk_b)
O_single_b <= (!S_clr_flag_b_d2)&(S_clr_flag_b_d1);
endmodule
-
FPGA
+關(guān)注
關(guān)注
1625文章
21620瀏覽量
601231 -
FPGA設(shè)計(jì)
+關(guān)注
關(guān)注
9文章
428瀏覽量
26465 -
信號(hào)
+關(guān)注
關(guān)注
11文章
2773瀏覽量
76538 -
bit
+關(guān)注
關(guān)注
0文章
47瀏覽量
31966 -
時(shí)鐘域
+關(guān)注
關(guān)注
0文章
51瀏覽量
9524
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論