Commit 816bc50 1 parent 928805e commit 816bc50 Copy full SHA for 816bc50
File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,15 @@ trait CanHaveTLUCIAdapter { this: BaseSubsystem =>
29
29
protoParams = params.proto,
30
30
fdiParams = params.fdi
31
31
))
32
+ uciTL.clockNode := bus.fixedClockNode
32
33
bus.coupleTo(s " ucie_tl_man_port " ) {
33
- uciTL.managerNode :* = TLWidthWidget (bus.beatBytes) :*= TLFragmenter (bus.beatBytes, p(CacheBlockBytes )) :* = _
34
+ uciTL.managerNode := TLWidthWidget (bus.beatBytes) := TLSourceShrinker (params.tl.sourceIDWidth) := TLFragmenter (bus.beatBytes, p(CacheBlockBytes )) := _
34
35
} // manager node because SBUS is making request?
35
- bus.coupleFrom(s " ucie_tl_cl_port " ) { _ :*= TLFragmenter (bus.beatBytes, p(CacheBlockBytes )) :*= TLWidthWidget (bus.beatBytes) :*= uciTL.clientNode }
36
+ bus.coupleFrom(s " ucie_tl_cl_port " ) { _ := TLWidthWidget (bus.beatBytes) := uciTL.clientNode }
37
+ bus.coupleTo(s " ucie_tl_ctrl_port " ) { uciTL.regNode.node := TLWidthWidget (bus.beatBytes) := TLFragmenter (bus.beatBytes, bus.blockBytes) := _ }
36
38
}
37
39
}
38
40
39
41
class WithUCITLAdapter (params : UCITLParams ) extends Config ((site, here, up) => {
40
42
case UCITLKey => Some (params)
41
- })
42
-
43
+ })
You can’t perform that action at this time.
0 commit comments