1
0

state machine bug on uncached write hits

This commit is contained in:
Henry Cook 2015-01-05 19:48:49 -08:00
parent f58f8bf385
commit 973eb43128

View File

@ -870,7 +870,9 @@ class L2AcquireTracker(trackerId: Int, bankId: Int, innerId: String, outerId: St
xact_data(local_data_resp_cnt) := mergeData(xact, xact_data(local_data_resp_cnt),
io.data.resp.bits.data)
}
when(local_data_resp_done) { state := s_meta_write }
when(local_data_resp_done) {
state := Mux(co.messageHasData(xact), s_data_write, s_meta_write)
}
}
is(s_data_write) {
io.data.write.valid := Bool(true)