mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
efinix: add more valid IOStandard
This commit is contained in:
parent
12e5443489
commit
f37188c358
1 changed files with 9 additions and 1 deletions
|
@ -83,7 +83,15 @@ def _format_constraint(c, signame, fmt_r, fragment, platform):
|
|||
# IO standard property
|
||||
elif isinstance(c, IOStandard):
|
||||
prop = ""
|
||||
valid = ["3.3_V_LVTTL_/_LVCMOS", "2.5_V_LVCMOS", "1.8_V_LVCMOS"]
|
||||
valid = [ "3.3_V_LVTTL_/_LVCMOS", "2.5_V_LVCMOS", "1.8_V_LVCMOS",
|
||||
"1.2_V_Differential_HSTL", "1.2_V_Differential_SSTL",
|
||||
"1.2_V_HSTL", "1.2_V_LVCMOS", "1.2_V_SSTL", "1.5_V_Differential_HSTL",
|
||||
"1.5_V_Differential_SSTL", "1.5_V_HSTL", "1.5_V_LVCMOS", "1.5_V_SSTL",
|
||||
"1.8_V_Differential_HSTL", "1.8_V_Differential_SSTL", "1.8_V_HSTL",
|
||||
"1.8_V_LVCMOS", "1.8_V_SSTL", "2.5_V_LVCMOS", "3.0_V_LVCMOS",
|
||||
"3.0_V_LVTTL", "3.3_V_LVCMOS", "3.3_V_LVTTL"
|
||||
]
|
||||
|
||||
if c.name in valid:
|
||||
prop = "IO_STANDARD"
|
||||
|
||||
|
|
Loading…
Reference in a new issue