From ff4afda305bced717b030fca323719227d6a2292 Mon Sep 17 00:00:00 2001 From: Robert Winkler Date: Mon, 5 Oct 2020 17:02:51 +0200 Subject: [PATCH] build/xilinx/symbiflow: Add xc7a100tscg324-1 to supported devices Signed-off-by: Robert Winkler --- litex/build/xilinx/symbiflow.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litex/build/xilinx/symbiflow.py b/litex/build/xilinx/symbiflow.py index c0beb340d..ebcc07b87 100644 --- a/litex/build/xilinx/symbiflow.py +++ b/litex/build/xilinx/symbiflow.py @@ -123,6 +123,7 @@ class SymbiflowToolchain: self.symbiflow_device = { # FIXME: fine for now since only a few devices are supported, do more clever device re-mapping. "xc7a35ticsg324-1L" : "xc7a50t_test", + "xc7a100tcsg324-1" : "xc7a100t_test", }[platform.device] except KeyError: raise ValueError(f"symbiflow_device is not specified") @@ -136,6 +137,7 @@ class SymbiflowToolchain: # FIXME: prjxray-db doesn't have xc7a35ticsg324-1L - use closest replacement self._partname = { "xc7a35ticsg324-1L" : "xc7a35tcsg324-1", + "xc7a100tcsg324-1" : "xc7a100tcsg324-1", }.get(platform.device, platform.device) def _generate_makefile(self, platform, build_name):