mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
soc.jtag.ecp5: Support all ECP5 devices
- "LFE5UM" devices exclude these without serdes
This commit is contained in:
parent
296688b2d8
commit
5faddcdb50
1 changed files with 2 additions and 1 deletions
|
@ -176,9 +176,10 @@ class JTAGPHY(Module):
|
|||
jtag = S7JTAG(chain=chain)
|
||||
elif device[:4] in ["xcku", "xcvu"]:
|
||||
jtag = USJTAG(chain=chain)
|
||||
elif device[:6] == "LFE5UM":
|
||||
elif device[:5] == "LFE5U":
|
||||
jtag = ECP5JTAG()
|
||||
else:
|
||||
print(device)
|
||||
raise NotImplementedError
|
||||
self.submodules.jtag = jtag
|
||||
|
||||
|
|
Loading…
Reference in a new issue