phy/a7_gtp: Add additionnal comment to #163 and express delay in us.

This commit is contained in:
Florent Kermarrec 2024-08-19 09:16:20 +02:00
parent 32df4523ba
commit d4fa6a2f4a
1 changed files with 2 additions and 2 deletions

View File

@ -88,9 +88,9 @@ class GTPTxInit(Module):
self.specials += MultiReg(self.qpll_lock, qpll_lock)
# After configuration, transceiver resets have to stay low for
# at least 500ns.
# at least 500ns (Here extended to 10us).
# See https://www.xilinx.com/support/answers/43482.html
timer_max = ceil(10000e-9*sys_clk_freq)
timer_max = ceil(10e-6*sys_clk_freq)
timer = Signal(max=timer_max+1)
tick = Signal()
self.sync += [