change the tlb arbiter to a round robing one
This commit is contained in:
parent
1cddd5de56
commit
7d7d7f49f9
@ -37,7 +37,7 @@ class rocketProc(resetSignal: Bool = null) extends Component(resetSignal)
|
|||||||
{
|
{
|
||||||
vu = new vu()
|
vu = new vu()
|
||||||
// cpu, vector prefetch, and vector use the DTLB
|
// cpu, vector prefetch, and vector use the DTLB
|
||||||
val dtlbarb = new Arbiter(3)({new ioDTLB_CPU_req_bundle()})
|
val dtlbarb = new RRArbiter(3)({new ioDTLB_CPU_req_bundle()})
|
||||||
val dtlbchosen = Reg(resetVal=Bits(DTLB_CPU,log2up(3)))
|
val dtlbchosen = Reg(resetVal=Bits(DTLB_CPU,log2up(3)))
|
||||||
when( dtlb.io.cpu_req.ready && dtlbarb.io.out.valid ) { dtlbchosen := dtlbarb.io.chosen }
|
when( dtlb.io.cpu_req.ready && dtlbarb.io.out.valid ) { dtlbchosen := dtlbarb.io.chosen }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user