From 8f1c15bdb84264d6d57840c677469d1c9947c12b Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 31 Aug 2021 18:56:47 +0200 Subject: [PATCH] ebaz4205: Remove PS7 support for now (since untested and we'll avoid the .xci in LiteX-Boards repository). --- litex_boards/targets/ebaz4205.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/litex_boards/targets/ebaz4205.py b/litex_boards/targets/ebaz4205.py index 772b741..2a24278 100755 --- a/litex_boards/targets/ebaz4205.py +++ b/litex_boards/targets/ebaz4205.py @@ -56,15 +56,7 @@ class BaseSoC(SoCCore): # Zynq7000 Integration --------------------------------------------------------------------- if kwargs.get("cpu_type", None) == "zynq7000": - self.cpu.set_ps7_xci("xci/ebaz4205_ps7.xci") - - # Connect AXI GP0 to the SoC with base address of 0x43c00000 (default one) - wb_gp0 = wishbone.Interface() - self.submodules += axi.AXI2Wishbone( - axi = self.cpu.add_axi_gp_master(), - wishbone = wb_gp0, - base_address = 0x43c00000) - self.add_wb_master(wb_gp0) + raise NotImplementedError # CRG -------------------------------------------------------------------------------------- self.submodules.crg = _CRG(platform, sys_clk_freq)