core: cosmetic
This commit is contained in:
parent
c85c25bb78
commit
c1b52f1887
|
@ -13,6 +13,7 @@ from litex.soc.interconnect.csr import *
|
|||
from litex.soc.cores.gpio import GPIOInOut
|
||||
from litex.soc.interconnect import stream
|
||||
|
||||
# LiteScope IO -------------------------------------------------------------------------------------
|
||||
|
||||
class LiteScopeIO(Module, AutoCSR):
|
||||
def __init__(self, data_width):
|
||||
|
@ -27,6 +28,7 @@ class LiteScopeIO(Module, AutoCSR):
|
|||
def get_csrs(self):
|
||||
return self.gpio.get_csrs()
|
||||
|
||||
# LiteScope Analyzer -------------------------------------------------------------------------------
|
||||
|
||||
def core_layout(data_width):
|
||||
return [("data", data_width), ("hit", 1)]
|
||||
|
@ -47,17 +49,17 @@ class _Trigger(Module, AutoCSR):
|
|||
|
||||
# # #
|
||||
|
||||
# control re-synchronization
|
||||
# Control re-synchronization
|
||||
enable = Signal()
|
||||
enable_d = Signal()
|
||||
self.specials += MultiReg(self.enable.storage, enable, "scope")
|
||||
self.sync.scope += enable_d.eq(enable)
|
||||
|
||||
# status re-synchronization
|
||||
# Status re-synchronization
|
||||
done = Signal()
|
||||
self.specials += MultiReg(done, self.done.status)
|
||||
|
||||
# memory and configuration
|
||||
# Memory and configuration
|
||||
mem = stream.AsyncFIFO([("mask", data_width), ("value", data_width)], depth)
|
||||
mem = ClockDomainsRenamer({"write": "sys", "read": "scope"})(mem)
|
||||
self.submodules += mem
|
||||
|
@ -68,7 +70,7 @@ class _Trigger(Module, AutoCSR):
|
|||
self.mem_full.status.eq(~mem.sink.ready)
|
||||
]
|
||||
|
||||
# hit and memory read/flush
|
||||
# Hit and memory read/flush
|
||||
hit = Signal()
|
||||
flush = WaitTimer(2*depth)
|
||||
self.submodules += flush
|
||||
|
@ -78,10 +80,10 @@ class _Trigger(Module, AutoCSR):
|
|||
mem.source.ready.eq((enable & hit) | ~flush.done),
|
||||
]
|
||||
|
||||
# output
|
||||
# Output
|
||||
self.comb += [
|
||||
sink.connect(source),
|
||||
# we are done when mem is empty
|
||||
# Done when all triggers have been consumed
|
||||
done.eq(~mem.source.valid),
|
||||
source.hit.eq(done)
|
||||
]
|
||||
|
@ -101,7 +103,6 @@ class _SubSampler(Module, AutoCSR):
|
|||
|
||||
counter = Signal(16)
|
||||
done = Signal()
|
||||
|
||||
self.sync.scope += \
|
||||
If(source.ready,
|
||||
If(done,
|
||||
|
@ -151,11 +152,7 @@ class _Storage(Module, AutoCSR):
|
|||
|
||||
# # #
|
||||
|
||||
|
||||
# control re-synchronization
|
||||
enable = Signal()
|
||||
enable_d = Signal()
|
||||
|
||||
# Control re-synchronization
|
||||
enable = Signal()
|
||||
enable_d = Signal()
|
||||
self.specials += MultiReg(self.enable.storage, enable, "scope")
|
||||
|
@ -168,11 +165,11 @@ class _Storage(Module, AutoCSR):
|
|||
MultiReg(self.offset.storage, offset, "scope")
|
||||
]
|
||||
|
||||
# status re-synchronization
|
||||
# Status re-synchronization
|
||||
done = Signal()
|
||||
self.specials += MultiReg(done, self.done.status)
|
||||
|
||||
# memory
|
||||
# Memory
|
||||
mem = stream.SyncFIFO([("data", data_width)], depth, buffered=True)
|
||||
mem = ClockDomainsRenamer("scope")(mem)
|
||||
cdc = stream.AsyncFIFO([("data", data_width)], 4)
|
||||
|
@ -180,12 +177,12 @@ class _Storage(Module, AutoCSR):
|
|||
{"write": "scope", "read": "sys"})(cdc)
|
||||
self.submodules += mem, cdc
|
||||
|
||||
# flush
|
||||
# Flush
|
||||
mem_flush = WaitTimer(depth)
|
||||
mem_flush = ClockDomainsRenamer("scope")(mem_flush)
|
||||
self.submodules += mem_flush
|
||||
|
||||
# fsm
|
||||
# FSM
|
||||
fsm = FSM(reset_state="IDLE")
|
||||
fsm = ClockDomainsRenamer("scope")(fsm)
|
||||
self.submodules += fsm
|
||||
|
@ -219,7 +216,7 @@ class _Storage(Module, AutoCSR):
|
|||
)
|
||||
)
|
||||
|
||||
# memory read
|
||||
# Memory read
|
||||
self.comb += [
|
||||
self.mem_valid.status.eq(cdc.source.valid),
|
||||
cdc.source.ready.eq(self.mem_data.we | ~self.enable.storage),
|
||||
|
@ -237,18 +234,17 @@ class LiteScopeAnalyzer(Module, AutoCSR):
|
|||
self.groups = groups = self.format_groups(groups)
|
||||
self.depth = depth
|
||||
|
||||
self.data_width = data_width = max([sum([len(s)
|
||||
for s in g]) for g in groups.values()])
|
||||
self.data_width = data_width = max([sum([len(s) for s in g]) for g in groups.values()])
|
||||
|
||||
self.csr_csv = csr_csv
|
||||
|
||||
# # #
|
||||
|
||||
# create scope clock domain
|
||||
# Create scope clock domain
|
||||
self.clock_domains.cd_scope = ClockDomain()
|
||||
self.comb += self.cd_scope.clk.eq(ClockSignal(clock_domain))
|
||||
|
||||
# mux
|
||||
# Mux
|
||||
self.submodules.mux = _Mux(data_width, len(groups))
|
||||
for i, signals in groups.items():
|
||||
self.comb += [
|
||||
|
@ -256,14 +252,14 @@ class LiteScopeAnalyzer(Module, AutoCSR):
|
|||
self.mux.sinks[i].data.eq(Cat(signals))
|
||||
]
|
||||
|
||||
# frontend
|
||||
# Frontend
|
||||
self.submodules.trigger = _Trigger(data_width, depth=trigger_depth)
|
||||
self.submodules.subsampler = _SubSampler(data_width)
|
||||
|
||||
# storage
|
||||
# Storage
|
||||
self.submodules.storage = _Storage(data_width, depth)
|
||||
|
||||
# pipeline
|
||||
# Pipeline
|
||||
self.submodules.pipeline = stream.Pipeline(
|
||||
self.mux.source,
|
||||
self.trigger,
|
||||
|
|
Loading…
Reference in New Issue