Merge pull request #2076 from trabucayre/xc7s_jtag

Spartan7 jtag support
This commit is contained in:
enjoy-digital 2024-09-19 11:53:55 +02:00 committed by GitHub
commit 033ec13f08
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class XilinxPlatform(GenericPlatform):
_jtag_support = [
"xc6",
"xc7a", "xc7k", "xc7v", "xc7z",
"xc7a", "xc7k", "xc7s", "xc7v", "xc7z",
"xcau", "xcku", "xcvu", "xczu"
]

View File

@ -321,7 +321,7 @@ class XilinxJTAG(LiteXModule):
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: