From 5faddcdb50db33c911d668f7b03fe645585b8175 Mon Sep 17 00:00:00 2001 From: Greg Davill Date: Wed, 27 Oct 2021 20:36:31 +1030 Subject: [PATCH] soc.jtag.ecp5: Support all ECP5 devices - "LFE5UM" devices exclude these without serdes --- litex/soc/cores/jtag.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/litex/soc/cores/jtag.py b/litex/soc/cores/jtag.py index a585cea9a..03fa6b5f7 100644 --- a/litex/soc/cores/jtag.py +++ b/litex/soc/cores/jtag.py @@ -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