aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorS.J.R. van Schaik <stephan@synkhronix.com>2021-06-07 13:17:23 -0400
committerwhitequark <whitequark@whitequark.org>2021-06-07 17:23:27 +0000
commit4aa9eeeb16f12a850e361673d4a7ce68829a3ba9 (patch)
treeb24075b0bba37a31e7909adfb33b718b41264742
parent732406c8e133baf1739177c5ef809263e6b75f11 (diff)
arrow_deca: the assignments should be appended to what is originally in the QSF
-rw-r--r--nmigen_boards/arrow_deca.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/nmigen_boards/arrow_deca.py b/nmigen_boards/arrow_deca.py
index 53fff8c..b364bc8 100644
--- a/nmigen_boards/arrow_deca.py
+++ b/nmigen_boards/arrow_deca.py
@@ -62,7 +62,9 @@ class ArrowDECAPlatform(IntelPlatform):
# file templates before modifying them to avoid modifying the original.
return {
**super().file_templates,
- "{{name}}.qsf": r"""
+ "{{name}}.qsf":
+ super().file_templates.get("{{name}}.qsf") +
+ r"""
set_global_assignment -name IOBANK_VCCIO 2.5V -section_id 1A
set_global_assignment -name IOBANK_VCCIO 2.5V -section_id 1B
set_global_assignment -name IOBANK_VCCIO 2.5V -section_id 2
@@ -77,7 +79,7 @@ class ArrowDECAPlatform(IntelPlatform):
set_global_assignment -name AUTO_RESTART_CONFIGURATION OFF
set_global_assignment -name ENABLE_CONFIGURATION_PINS OFF
set_global_assignment -name ENABLE_BOOT_SEL_PIN OFF
- """
+ """
}