From: Florent Kermarrec Date: Tue, 7 Jul 2020 12:58:06 +0000 (+0200) Subject: integration/soc: move pads.rst control to PHY. X-Git-Tag: 24jan2021_ls180~98 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7602977c16db28ed85ef25fa8b1ebc95a5e6ded5;p=litex.git integration/soc: move pads.rst control to PHY. --- diff --git a/litex/soc/integration/soc.py b/litex/soc/integration/soc.py index f36f344f..a92faa6a 100644 --- a/litex/soc/integration/soc.py +++ b/litex/soc/integration/soc.py @@ -1259,8 +1259,6 @@ class LiteXSoC(SoC): sdcard_pads = self.platform.request(name) # Core - if hasattr(sdcard_pads, "rst"): - self.comb += sdcard_pads.rst.eq(0) self.submodules.sdphy = SDPHY(sdcard_pads, self.platform.device, self.clk_freq) self.submodules.sdcore = SDCore(self.sdphy) self.add_csr("sdphy")