From 7e6418900abcf693d27cea7d508610195eb3f114 Mon Sep 17 00:00:00 2001 From: Gwenhael Goavec-Merou Date: Tue, 17 Oct 2023 17:37:34 +0200 Subject: [PATCH] build/openocd: adding Efinix Titanium support --- litex/build/openocd.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/litex/build/openocd.py b/litex/build/openocd.py index 0a2c8004d..76a709644 100644 --- a/litex/build/openocd.py +++ b/litex/build/openocd.py @@ -56,6 +56,11 @@ class OpenOCD(GenericProgrammer): 3: 0x922, # USER3. 4: 0x923, # USER4. }[chain] + # Efinix titanium + elif "titanium" in cfg_str: + chain = { + 1: 0x08, + }[chain] # Xilinx 7-Series. else: chain = {