Skip to content

Commit

Permalink
build/openocd: adding Efinix Titanium support
Browse files Browse the repository at this point in the history
  • Loading branch information
trabucayre committed Oct 17, 2023
1 parent aad8311 commit 7e64189
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions litex/build/openocd.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ def get_ir(self, chain, config):
3: 0x922, # USER3.
4: 0x923, # USER4.
}[chain]
# Efinix titanium
elif "titanium" in cfg_str:
chain = {
1: 0x08,
}[chain]
# Xilinx 7-Series.
else:
chain = {
Expand Down

0 comments on commit 7e64189

Please sign in to comment.