Skip to content

Commit

Permalink
Add some missing top IO modes
Browse files Browse the repository at this point in the history
Signed-off-by: gatecat <[email protected]>
  • Loading branch information
gatecat committed Apr 29, 2022
1 parent 48486eb commit 64b38df
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 7 deletions.
2 changes: 1 addition & 1 deletion database
31 changes: 25 additions & 6 deletions fuzzers/ECP5/051-pio_ioconfig/fuzzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,32 @@ def get_io_types(dir, pio, side):
"LVCMOS15",
"LVCMOS12"
]
if pio == "A" and side == "T" and dir == "OUTPUT":
if side == "T" and dir == "OUTPUT":
if pio == "A":
types += [
"LVCMOS33D",
"LVCMOS25D",
"LVCMOS18D",
"LVCMOS15D",
"LVCMOS12D",
"SSTL18D_I",
"SSTL18D_II",
"SSTL15D_I",
"SSTL15D_II",
"SSTL135D_I",
"SSTL135D_II",
"LVDS25E",
"LVPECL33E",
"HSUL12D",
]
types += [
"LVCMOS33D",
"LVCMOS25D",
"LVCMOS18D",
"LVCMOS15D",
"LVCMOS12D"
"SSTL18_I",
"SSTL18_II",
"SSTL15_I",
"SSTL15_II",
"SSTL135_I",
"SSTL135_II",
"HSUL12",
]
if side in ('L', 'R'):
types += [
Expand Down

0 comments on commit 64b38df

Please sign in to comment.