soc/integration/core: Connect SoCController's reset to CRG.rs do full reset of the SoC with reboot when signals are presents.
This commit is contained in:
parent
2c504783ca
commit
ffc554dede
|
@ -914,6 +914,12 @@ class SoC(Module):
|
|||
"axi-lite": axi.AXILiteInterconnectShared,
|
||||
}[self.bus.standard]
|
||||
|
||||
# SoC Reset --------------------------------------------------------------------------------
|
||||
# Connect SoCController's reset to CRG's reset if presents.
|
||||
if hasattr(self, "ctrl") and hasattr(self, "crg"):
|
||||
if hasattr(self.ctrl, "_reset") and hasattr(self.crg, "rst"):
|
||||
self.comb += self.crg.rst.eq(self.ctrl._reset.re)
|
||||
|
||||
# SoC CSR bridge ---------------------------------------------------------------------------
|
||||
# FIXME: for now, use registered CSR bridge when SDRAM is present; find the best compromise.
|
||||
self.add_csr_bridge(self.mem_map["csr"], register=hasattr(self, "sdram"))
|
||||
|
|
Loading…
Reference in New Issue