From 672d1dd7417753e2403c03fddf719ec0a707fcd8 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 17 Jan 2022 08:17:04 +0100 Subject: [PATCH] build/xilinx/symbiflow: Align devices. --- litex/build/xilinx/symbiflow.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/litex/build/xilinx/symbiflow.py b/litex/build/xilinx/symbiflow.py index c7ca76bbd..b808af0ec 100644 --- a/litex/build/xilinx/symbiflow.py +++ b/litex/build/xilinx/symbiflow.py @@ -108,9 +108,9 @@ class SymbiflowToolchain: try: self.symbiflow_device = { # FIXME: fine for now since only a few devices are supported, do more clever device re-mapping. - "xc7a35tcpg236-1" : "xc7a50t_test", + "xc7a35tcpg236-1" : "xc7a50t_test", "xc7a35ticsg324-1L" : "xc7a50t_test", - "xc7a100tcsg324-1" : "xc7a100t_test", + "xc7a100tcsg324-1" : "xc7a100t_test", "xc7a200t-sbg484-1" : "xc7a200t_test", }[platform.device] except KeyError: @@ -127,7 +127,7 @@ class SymbiflowToolchain: # FIXME: prjxray-db doesn't have xc7a35ticsg324-1L - use closest replacement self._partname = { "xc7a35ticsg324-1L" : "xc7a35tcsg324-1", - "xc7a100tcsg324-1" : "xc7a100tcsg324-1", + "xc7a100tcsg324-1" : "xc7a100tcsg324-1", "xc7a200t-sbg484-1" : "xc7a200tsbg484-1", }.get(platform.device, platform.device)