util_gtlb: updates for latest axi_jesd_gt

main
Rejeesh Kutty 2015-10-30 18:47:36 -04:00
parent 92b7570864
commit 88568c21e1
2 changed files with 6 additions and 4 deletions

View File

@ -47,7 +47,6 @@ module util_gtlb (
output qpll0_rst,
output qpll0_ref_clk_in,
input pll_rst_0,
output cpll_rst_m_0,
output cpll_ref_clk_in_0,
@ -66,6 +65,7 @@ module util_gtlb (
output rx_0_n,
input rx_rst_0,
output rx_rst_m_0,
input rx_pll_rst_0,
input rx_gt_rst_0,
output rx_gt_rst_m_0,
input rx_pll_locked_0,
@ -99,6 +99,7 @@ module util_gtlb (
input tx_0_n,
input tx_rst_0,
output tx_rst_m_0,
input tx_pll_rst_0,
input tx_gt_rst_0,
output tx_gt_rst_m_0,
input tx_pll_locked_0,
@ -201,9 +202,9 @@ module util_gtlb (
// defaults
assign qpll0_rst = pll_rst_0;
assign qpll0_rst = tx_pll_rst_0 | rx_pll_rst_0;
assign qpll0_ref_clk_in = qpll_ref_clk;
assign cpll_rst_m_0 = pll_rst_0;
assign cpll_rst_m_0 = tx_pll_rst_0 | rx_pll_rst_0;
assign cpll_ref_clk_in_0 = cpll_ref_clk;
assign rx_0_p = rx_p;

View File

@ -22,7 +22,6 @@ adi_if_infer_bus ADI:user:if_gt_qpll master gt_qpll_0 [list \
for {set n 0} {$n < 1} {incr n} {
adi_if_infer_bus ADI:user:if_gt_pll master gt_pll_${n} [list \
"pll_rst pll_rst_${n} "\
"cpll_rst_m cpll_rst_m_${n} "\
"cpll_ref_clk_in cpll_ref_clk_in_${n} "]
@ -37,6 +36,7 @@ for {set n 0} {$n < 1} {incr n} {
"rx_n rx_${n}_n "\
"rx_rst rx_rst_${n} "\
"rx_rst_m rx_rst_m_${n} "\
"rx_pll_rst rx_pll_rst_${n} "\
"rx_gt_rst rx_gt_rst_${n} "\
"rx_gt_rst_m rx_gt_rst_m_${n} "\
"rx_pll_locked rx_pll_locked_${n} "\
@ -67,6 +67,7 @@ for {set n 0} {$n < 1} {incr n} {
"tx_n tx_${n}_n "\
"tx_rst tx_rst_${n} "\
"tx_rst_m tx_rst_m_${n} "\
"tx_pll_rst tx_pll_rst_${n} "\
"tx_gt_rst tx_gt_rst_${n} "\
"tx_gt_rst_m tx_gt_rst_m_${n} "\
"tx_pll_locked tx_pll_locked_${n} "\