Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ad9081_fmca_ebz: common: versal_transceiver: Force progdiv_clk to float #1505

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions projects/ad9081_fmca_ebz/common/versal_transceiver.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ proc create_versal_phy {
puts "intf_cfg: ${intf_cfg}"
puts "assymmetric_mode: ${asymmetric_mode}"

set rx_progdiv_clock [format %.3f [expr $rx_lane_rate * 1000 / ${clk_divider}]]
set tx_progdiv_clock [format %.3f [expr $tx_lane_rate * 1000 / ${clk_divider}]]
set rx_progdiv_clock [format %.3f [expr $rx_lane_rate * 1000.0 / ${clk_divider}]]
set tx_progdiv_clock [format %.3f [expr $tx_lane_rate * 1000.0 / ${clk_divider}]]
set preset ${transceiver}-JESD204_64B66B

if {$intf_cfg == "RX"} {
Expand Down
Loading