downconn GW: remove unused debug prot

This commit is contained in:
morgan 2025-01-16 11:14:16 +08:00
parent a918fec3b0
commit 423b3dbc8d

View File

@ -13,7 +13,7 @@ from functools import reduce
from operator import add
class CXP_RXPHYs(Module, AutoCSR):
def __init__(self, refclk, pads, sys_clk_freq, debug_sma, pmod_pads, master=0):
def __init__(self, refclk, pads, sys_clk_freq, master=0):
self.qpll_reset = CSR()
self.qpll_locked = CSRStatus()
self.gtx_start_init = CSRStorage()
@ -22,7 +22,7 @@ class CXP_RXPHYs(Module, AutoCSR):
self.phys = []
# # #
# For speed higher than 6.6Gbps, QPLL need to be used instead of CPLL
# For speed higher than 6.6Gbps, QPLL need to be used instead of CPLL - DS191 (v1.18.1) Table 9.1
self.submodules.qpll = qpll = QPLL(refclk, sys_clk_freq)
self.sync += [
qpll.reset.eq(self.qpll_reset.re),