phy/usp_gty_1000basex: Working :), remove debug.

This commit is contained in:
Florent Kermarrec 2023-06-13 17:30:20 +02:00
parent bea94efae1
commit cfe3201854
2 changed files with 0 additions and 30 deletions

View File

@ -64,9 +64,6 @@ class BenchSoC(SoCCore):
ident_version = True
)
# UARTBone ---------------------------------------------------------------------------------
self.add_uartbone()
# CRG --------------------------------------------------------------------------------------
self.crg = _CRG(platform, sys_clk_freq)
@ -86,16 +83,6 @@ class BenchSoC(SoCCore):
sys_clk_freq = sys_clk_freq
)
# Litescope --------------------------------------------------------------------------------
from litescope import LiteScopeAnalyzer
analyzer_signals = self.ethphy.debug
self.analyzer = LiteScopeAnalyzer(analyzer_signals,
depth = 256,
clock_domain = "sys",
csr_csv = "analyzer.csv"
)
# Main ---------------------------------------------------------------------------------------------
def main():

View File

@ -5,8 +5,6 @@
# Copyright (c) 2018 Sebastien Bourdeauducq <sb@m-labs.hk>
# SPDX-License-Identifier: BSD-2-Clause
# Work-In-Progress...
from migen import *
from migen.genlib.resetsync import AsyncResetSynchronizer
from migen.genlib.cdc import PulseSynchronizer
@ -958,18 +956,3 @@ class USP_GTY_1000BASEX(LiteXModule):
gearbox.tx_data.eq(pcs.tbi_tx),
pcs.tbi_rx.eq(gearbox.rx_data)
]
self.debug = [
gtpowergood,
pll_reset,
pll_locked,
tx_reset,
tx_data,
tx_reset_done,
rx_reset,
rx_data,
rx_reset_done,
self.sink,
self.source,
self.link_up
]