From 5a9c673f41893905cd48efac4850e4d370470696 Mon Sep 17 00:00:00 2001 From: Andrew Waterman Date: Wed, 26 Jul 2017 02:20:41 -0700 Subject: [PATCH] Fix L2 TLB response bug Sometimes, it would inform the L1 TLB that the translation was for a superpage, even though that's never the case. --- src/main/scala/rocket/PTW.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/scala/rocket/PTW.scala b/src/main/scala/rocket/PTW.scala index 01d284ae..1b0ba9f9 100644 --- a/src/main/scala/rocket/PTW.scala +++ b/src/main/scala/rocket/PTW.scala @@ -261,6 +261,7 @@ class PTW(n: Int)(implicit edge: TLEdgeOut, p: Parameters) extends CoreModule()( resp_valid(r_req_dest) := true resp_ae := false r_pte := l2_pte + count := pgLevels-1 } }