1
0

tilelink2: tie off unused channels

This commit is contained in:
Wesley W. Terpstra
2016-09-04 16:47:18 -07:00
parent 68e64a9859
commit cb54df0a8a
7 changed files with 45 additions and 0 deletions

View File

@ -227,6 +227,14 @@ class TLFragmenter(minSize: Int, maxSize: Int, alwaysMin: Boolean = false) exten
out.a.bits := in.a.bits
out.a.bits.source := Cat(in.a.bits.source, aFragnum)
out.a.bits.size := aFrag
// Tie off unused channels
in.b.valid := Bool(false)
in.c.ready := Bool(true)
in.e.ready := Bool(true)
out.b.ready := Bool(true)
out.c.valid := Bool(false)
out.e.valid := Bool(false)
}
}