Skip to content

Commit

Permalink
Merge pull request #2076 from trabucayre/xc7s_jtag
Browse files Browse the repository at this point in the history
Spartan7 jtag support
  • Loading branch information
enjoy-digital authored Sep 19, 2024
2 parents 6e9dffd + e072156 commit 033ec13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion litex/build/xilinx/platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class XilinxPlatform(GenericPlatform):

_jtag_support = [
"xc6",
"xc7a", "xc7k", "xc7v", "xc7z",
"xc7a", "xc7k", "xc7s", "xc7v", "xc7z",
"xcau", "xcku", "xcvu", "xczu"
]

Expand Down
2 changes: 1 addition & 1 deletion litex/soc/cores/jtag.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def get_primitive(device):
prim_dict = {
# Primitive Name Ðevice (startswith)
"BSCAN_SPARTAN6" : ["xc6"],
"BSCANE2" : ["xc7a", "xc7k", "xc7v", "xc7z"] + ["xcau", "xcku", "xcvu", "xczu"],
"BSCANE2" : ["xc7a", "xc7k", "xc7s", "xc7v", "xc7z"] + ["xcau", "xcku", "xcvu", "xczu"],
}
for prim, prim_devs in prim_dict.items():
for prim_dev in prim_devs:
Expand Down

0 comments on commit 033ec13

Please sign in to comment.