projects
/
nmigen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
730eff5
)
vendor: yosys is a required tool for all Verilog-based flows.
author
whitequark
<whitequark@whitequark.org>
Thu, 10 Oct 2019 14:38:09 +0000
(14:38 +0000)
committer
whitequark
<whitequark@whitequark.org>
Thu, 10 Oct 2019 14:38:09 +0000
(14:38 +0000)
nmigen/vendor/lattice_ecp5.py
patch
|
blob
|
history
nmigen/vendor/lattice_ice40.py
patch
|
blob
|
history
nmigen/vendor/xilinx_7series.py
patch
|
blob
|
history
nmigen/vendor/xilinx_spartan_3_6.py
patch
|
blob
|
history
diff --git
a/nmigen/vendor/lattice_ecp5.py
b/nmigen/vendor/lattice_ecp5.py
index 8852fb82eab61d8a69f6440ef9e352c5375496fe..e6d447a74750c477ac5c4f0ab70480d56c6b7b21 100644
(file)
--- a/
nmigen/vendor/lattice_ecp5.py
+++ b/
nmigen/vendor/lattice_ecp5.py
@@
-165,6
+165,7
@@
class LatticeECP5Platform(TemplatedPlatform):
# Diamond templates
_diamond_required_tools = [
+ "yosys",
"pnmainc",
"ddtcmd"
]
diff --git
a/nmigen/vendor/lattice_ice40.py
b/nmigen/vendor/lattice_ice40.py
index cc395c081bb353ebb09e48a4687de4dfc9d3153f..d3fa8c71e04719688e6cbc87966aef73897460b8 100644
(file)
--- a/
nmigen/vendor/lattice_ice40.py
+++ b/
nmigen/vendor/lattice_ice40.py
@@
-170,6
+170,7
@@
class LatticeICE40Platform(TemplatedPlatform):
# iCECube2 templates
_icecube2_required_tools = [
+ "yosys",
"synthesis",
"synpwrap",
"tclsh",
diff --git
a/nmigen/vendor/xilinx_7series.py
b/nmigen/vendor/xilinx_7series.py
index 0d64e3e939d374e6a7636f3e3e46c0e22655f157..d26c438a1bfc5fda7f416bf3e5cc1ff76174e01b 100644
(file)
--- a/
nmigen/vendor/xilinx_7series.py
+++ b/
nmigen/vendor/xilinx_7series.py
@@
-51,7
+51,10
@@
class Xilinx7SeriesPlatform(TemplatedPlatform):
package = abstractproperty()
speed = abstractproperty()
- required_tools = ["vivado"]
+ required_tools = [
+ "yosys",
+ "vivado"
+ ]
file_templates = {
**TemplatedPlatform.build_script_templates,
diff --git
a/nmigen/vendor/xilinx_spartan_3_6.py
b/nmigen/vendor/xilinx_spartan_3_6.py
index 65f4a0a5ad3be36b5e628cedf6236547f962e830..929b81d022035f0f990c32d7e7fd641049fc3c01 100644
(file)
--- a/
nmigen/vendor/xilinx_spartan_3_6.py
+++ b/
nmigen/vendor/xilinx_spartan_3_6.py
@@
-59,6
+59,7
@@
class XilinxSpartan3Or6Platform(TemplatedPlatform):
speed = abstractproperty()
required_tools = [
+ "yosys",
"xst",
"ngdbuild",
"map",