Commit 3baf58d
committed
fix(ad9081_fmc): sync HMC7044 channel dividers with XSA builder
The eval-board class declared different dividers for DEV_REFCLK /
CORE_CLK_* / FPGA_REFCLK* than the XSA builder and the stock Kuiper
``zynqmp-zcu102-rev10-ad9081-m8-l4`` reference DTS. With PLL2 at
3000 MHz this gave:
CORE_CLK_{RX,TX} 3000/8 = 375 MHz (expected 250 MHz)
DEV_REFCLK 3000/4 = 750 MHz (expected 250 MHz)
FPGA_REFCLK{1,2} 3000/4 = 750 MHz (expected 500 MHz)
DEV_SYSREF 3000/1024 ≈ 2.93 MHz (expected ~1.95 MHz)
Two downstream failures fell out of this:
- AD9081 internal PLL couldn't lock 4 GHz ADC from dev_clk=750 MHz
(750 × 5.333 = 4 GHz, not integer). The earlier pll2_output_hz
change to 3000 MHz was partial — without also moving DEV_REFCLK to
div=12, 750 MHz is still produced.
- With div=8 on CORE_CLK_*, kernel JESD reported
"Measured Link Clock: 375 MHz / Reported: 250 MHz" and left the
link disabled.
Adopt the XSA builder's divider set across all channels so the
declarative System flow produces the same clock tree as the
XSA-pipeline (and reference Kuiper) DTB.1 parent 945b954 commit 3baf58d
1 file changed
Lines changed: 24 additions & 8 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
22 | 38 | | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
31 | 47 | | |
32 | 48 | | |
33 | 49 | | |
| |||
0 commit comments