rename internal/external MMIO network to cbus/pbus respectively
This commit is contained in:
		@@ -65,11 +65,11 @@ abstract class BaseTopModule[+L <: BaseTop, +B <: BaseTopBundle](
 | 
			
		||||
  val coreplex = p(BuildCoreplex)(outer.c, p)
 | 
			
		||||
  val coreplexIO = coreplex.io
 | 
			
		||||
 | 
			
		||||
  val mmioNetwork =
 | 
			
		||||
    Module(new TileLinkRecursiveInterconnect(1, p(GlobalAddrMap).subMap("io:ext"))(
 | 
			
		||||
  val pBus =
 | 
			
		||||
    Module(new TileLinkRecursiveInterconnect(1, p(GlobalAddrMap).subMap("io:pbus"))(
 | 
			
		||||
      p.alterPartial({ case TLId => "L2toMMIO" })))
 | 
			
		||||
  mmioNetwork.io.in.head <> coreplexIO.master.mmio.get
 | 
			
		||||
  outer.legacy.module.io.legacy <> mmioNetwork.port("TL2")
 | 
			
		||||
  pBus.io.in.head <> coreplexIO.master.mmio.get
 | 
			
		||||
  outer.legacy.module.io.legacy <> pBus.port("TL2")
 | 
			
		||||
 | 
			
		||||
  println("Generated Address Map")
 | 
			
		||||
  for (entry <- p(GlobalAddrMap).flatten) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user