1
0

axi4: ToTL supporting pipelined MMIO

This commit is contained in:
Wesley W. Terpstra
2017-04-21 12:30:41 -07:00
parent ca2cb033cd
commit b4188ee625
2 changed files with 68 additions and 82 deletions

View File

@ -32,7 +32,9 @@ trait CoreplexNetwork extends HasCoreplexParameters {
// Allows a variable number of inputs from outside to the Xbar
private val l2in_buffer = LazyModule(new TLBuffer)
l1tol2.node :=* l2in_buffer.node
private val l2in_fifo = LazyModule(new TLFIFOFixer)
l1tol2.node :=* l2in_fifo.node
l2in_fifo.node :=* l2in_buffer.node
l2in_buffer.node :=* l2in
private val l2out_buffer = LazyModule(new TLBuffer(BufferParams.flow, BufferParams.none))