build/xilinx/symbiflow: remap part name
This commit is contained in:
parent
55723f138b
commit
5071ef3ef7
|
@ -112,6 +112,7 @@ class SymbiflowToolchain:
|
||||||
self.false_paths = set()
|
self.false_paths = set()
|
||||||
self.symbiflow_device = None
|
self.symbiflow_device = None
|
||||||
self.bitstream_device = None
|
self.bitstream_device = None
|
||||||
|
self._partname = None
|
||||||
|
|
||||||
def _check_properties(self, platform):
|
def _check_properties(self, platform):
|
||||||
if not self.symbiflow_device:
|
if not self.symbiflow_device:
|
||||||
|
@ -129,6 +130,10 @@ class SymbiflowToolchain:
|
||||||
}[platform.device[:4]]
|
}[platform.device[:4]]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
raise ValueError(f"Unsupported device: {platform.device}")
|
raise ValueError(f"Unsupported device: {platform.device}")
|
||||||
|
# FIXME: prjxray-db doesn't have xc7a35ticsg324-1L - use closest replacement
|
||||||
|
self._partname = {
|
||||||
|
"xc7a35ticsg324-1L" : "xc7a35tcsg324-1",
|
||||||
|
}.get(platform.device, platform.device)
|
||||||
|
|
||||||
def _generate_makefile(self, platform, build_name):
|
def _generate_makefile(self, platform, build_name):
|
||||||
Var = _MakefileGenerator.Var
|
Var = _MakefileGenerator.Var
|
||||||
|
@ -137,7 +142,7 @@ class SymbiflowToolchain:
|
||||||
makefile = _MakefileGenerator([
|
makefile = _MakefileGenerator([
|
||||||
"# Autogenerated by LiteX / git: " + tools.get_litex_git_revision() + "\n",
|
"# Autogenerated by LiteX / git: " + tools.get_litex_git_revision() + "\n",
|
||||||
Var("TOP", build_name),
|
Var("TOP", build_name),
|
||||||
Var("PARTNAME", platform.device),
|
Var("PARTNAME", self._partname),
|
||||||
Var("DEVICE", self.symbiflow_device),
|
Var("DEVICE", self.symbiflow_device),
|
||||||
Var("BITSTREAM_DEVICE", self.bitstream_device),
|
Var("BITSTREAM_DEVICE", self.bitstream_device),
|
||||||
"",
|
"",
|
||||||
|
|
Loading…
Reference in New Issue