From 94f06dc85c60cac6b15e4bf25d4ffdf8bc61cbca Mon Sep 17 00:00:00 2001 From: Megan Wachs Date: Wed, 30 Aug 2017 19:23:18 -0700 Subject: [PATCH] pbus: turn down overkill buffering between PBus and SBus --- src/main/scala/coreplex/PeripheryBus.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/coreplex/PeripheryBus.scala b/src/main/scala/coreplex/PeripheryBus.scala index 22eab1b2..7e51691e 100644 --- a/src/main/scala/coreplex/PeripheryBus.scala +++ b/src/main/scala/coreplex/PeripheryBus.scala @@ -48,5 +48,5 @@ trait HasPeripheryBus extends HasSystemBus { val pbus = new PeripheryBus(pbusParams) // The peripheryBus hangs off of systemBus; here we convert TL-UH -> TL-UL - pbus.fromSystemBus := sbus.toPeripheryBus(nBuffers = 4) + pbus.fromSystemBus := sbus.toPeripheryBus(nBuffers = 1) }