liteeth/example_designs/targets/tty.py

42 lines
1.3 KiB
Python
Raw Normal View History

2015-09-08 03:50:45 -04:00
from liteeth.common import *
2015-09-07 07:28:02 -04:00
from targets.base import BaseSoC
2015-09-08 03:50:45 -04:00
from liteeth.frontend.tty import LiteEthTTY
2015-09-07 07:28:02 -04:00
class TTYSoC(BaseSoC):
default_platform = "kc705"
def __init__(self, platform):
BaseSoC.__init__(self, platform,
mac_address=0x10e2d5000000,
ip_address="192.168.0.42")
self.submodules.tty = LiteEthTTY(self.core.udp, convert_ip("192.168.0.14"), 10000)
self.comb += Record.connect(self.tty.source, self.tty.sink)
class TTYSoCDevel(TTYSoC):
csr_map = {
"logic_analyzer": 20
2015-09-07 07:28:02 -04:00
}
csr_map.update(TTYSoC.csr_map)
def __init__(self, platform):
from litescope.frontend.logic_analyzer import LiteScopeLogicAnalyzer
from litescope.core.port import LiteScopeTerm
2015-09-07 07:28:02 -04:00
TTYSoC.__init__(self, platform)
debug = (
self.tty.sink.stb,
self.tty.sink.ack,
self.tty.sink.data,
self.tty.source.stb,
self.tty.source.ack,
self.tty.source.data
)
self.submodules.logic_analyzer = LiteScopeLogicAnalyzer(debug, 4096)
self.logic_analyzer.trigger.add_port(LiteScopeTerm(self.logic_analyzer.dw))
2015-09-07 07:28:02 -04:00
def do_exit(self, vns):
self.logic_analyzer.export(vns, "test/logic_analyzer.csv")
2015-09-07 07:28:02 -04:00
default_subtarget = TTYSoC