Merge pull request #664 from antmicro/symbiflow_a100T

build/xilinx/symbiflow: Add xc7a100tscg324-1 to supported devices
This commit is contained in:
enjoy-digital 2020-10-05 19:25:18 +02:00 committed by GitHub
commit 6916674ff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -123,6 +123,7 @@ class SymbiflowToolchain:
self.symbiflow_device = { self.symbiflow_device = {
# FIXME: fine for now since only a few devices are supported, do more clever device re-mapping. # FIXME: fine for now since only a few devices are supported, do more clever device re-mapping.
"xc7a35ticsg324-1L" : "xc7a50t_test", "xc7a35ticsg324-1L" : "xc7a50t_test",
"xc7a100tcsg324-1" : "xc7a100t_test",
}[platform.device] }[platform.device]
except KeyError: except KeyError:
raise ValueError(f"symbiflow_device is not specified") 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 # FIXME: prjxray-db doesn't have xc7a35ticsg324-1L - use closest replacement
self._partname = { self._partname = {
"xc7a35ticsg324-1L" : "xc7a35tcsg324-1", "xc7a35ticsg324-1L" : "xc7a35tcsg324-1",
"xc7a100tcsg324-1" : "xc7a100tcsg324-1",
}.get(platform.device, platform.device) }.get(platform.device, platform.device)
def _generate_makefile(self, platform, build_name): def _generate_makefile(self, platform, build_name):