From 096dbb3c2d226b87c033e2dd50458d342701d66f Mon Sep 17 00:00:00 2001 From: Howard Mao Date: Mon, 26 Oct 2015 14:14:53 -0700 Subject: [PATCH] get rid of NastiTopInterconnect --- junctions/src/main/scala/nasti.scala | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/junctions/src/main/scala/nasti.scala b/junctions/src/main/scala/nasti.scala index df1a1bd1..0e9a4ee8 100644 --- a/junctions/src/main/scala/nasti.scala +++ b/junctions/src/main/scala/nasti.scala @@ -556,20 +556,3 @@ class NastiRecursiveInterconnect( } } } - -class NastiTopInterconnect(val nMasters: Int, val nSlaves: Int, addrMap: AddrMap) - (implicit p: Parameters) extends NastiInterconnect { - val temp = Module(new NastiRecursiveInterconnect(nMasters, nSlaves, addrMap)) - - temp.io.masters.zip(io.masters).foreach { case (t, i) => - t.ar <> i.ar - t.aw <> i.aw - // this queue is necessary to break up the aw - w dependence - // introduced by the TileLink -> Nasti converter - t.w <> Queue(i.w) - i.b <> t.b - i.r <> t.r - } - //temp.io.masters <> io.masters - io.slaves <> temp.io.slaves -}