1
0
Fork 0

Merge pull request #329 from ucb-bar/fragmenter

tilelink2 Fragmenter: Mask low bits of D channel addr_lo
This commit is contained in:
Wesley W. Terpstra 2016-09-22 14:42:55 -07:00 committed by GitHub
commit 3f3defb130
1 changed files with 1 additions and 0 deletions

View File

@ -168,6 +168,7 @@ class TLFragmenter(minSize: Int, maxSize: Int, alwaysMin: Boolean = false) exten
out.d.ready := in.d.ready || drop
in.d.valid := out.d.valid && !drop
in.d.bits := out.d.bits // pass most stuff unchanged
in.d.bits.addr_lo := out.d.bits.addr_lo & ~dsizeOH1
in.d.bits.source := out.d.bits.source >> fragmentBits
in.d.bits.size := Mux(dFirst, dFirst_size, dOrig)