Skip to content

Commit

Permalink
targets/digilent_genesys2.py: added toolchain option (#624)
Browse files Browse the repository at this point in the history
  • Loading branch information
trabucayre committed Dec 14, 2024
1 parent a3b3816 commit b2b8a3c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions litex_boards/targets/digilent_genesys2.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ def __init__(self, platform, sys_clk_freq):
# BaseSoC ------------------------------------------------------------------------------------------

class BaseSoC(SoCCore):
def __init__(self, sys_clk_freq=100e6,
def __init__(self, sys_clk_freq=100e6, toolchain="vivado",
with_ethernet = False,
with_etherbone = False,
with_led_chaser = True,
with_can = False,
**kwargs):
platform = digilent_genesys2.Platform()
platform = digilent_genesys2.Platform(toolchain=toolchain)

# CRG --------------------------------------------------------------------------------------
self.crg = _CRG(platform, sys_clk_freq)
Expand Down Expand Up @@ -115,6 +115,7 @@ def main():

soc = BaseSoC(
sys_clk_freq = args.sys_clk_freq,
toolchain = args.toolchain,
with_ethernet = args.with_ethernet,
with_etherbone = args.with_etherbone,
with_can = args.with_can,
Expand Down

0 comments on commit b2b8a3c

Please sign in to comment.