Swap order of ITIM WidthWidget and Fragmenter
e99fa057ac
accidentally reversed them
This commit is contained in:
parent
8c10caeef9
commit
99de42d34c
@ -113,9 +113,9 @@ trait CanHaveScratchpad extends HasHellaCache with HasICacheFrontend with HasCor
|
|||||||
// 1) Frontend always exists, but may or may not have a scratchpad node
|
// 1) Frontend always exists, but may or may not have a scratchpad node
|
||||||
val fg = LazyModule(new TLFragmenter(fetchWidth*coreInstBytes, p(CacheBlockBytes), true))
|
val fg = LazyModule(new TLFragmenter(fetchWidth*coreInstBytes, p(CacheBlockBytes), true))
|
||||||
val ww = LazyModule(new TLWidthWidget(xLen/8))
|
val ww = LazyModule(new TLWidthWidget(xLen/8))
|
||||||
frontend.slaveNode :*= ww.node
|
frontend.slaveNode :*= fg.node
|
||||||
ww.node :*= fg.node
|
fg.node :*= ww.node
|
||||||
fg.node :*= slaveNode
|
ww.node :*= slaveNode
|
||||||
|
|
||||||
// 2) ScratchpadSlavePort always has a node, but only exists when the HellaCache has a scratchpad
|
// 2) ScratchpadSlavePort always has a node, but only exists when the HellaCache has a scratchpad
|
||||||
val scratch = tileParams.dcache.flatMap(d => d.scratch.map(s =>
|
val scratch = tileParams.dcache.flatMap(d => d.scratch.map(s =>
|
||||||
|
Loading…
Reference in New Issue
Block a user