targets/arty: use sys_clk_freq = 60MHz for Symbiflow toolchain

This commit is contained in:
Mariusz Glebocki 2020-06-02 14:56:20 +02:00
parent 5071ef3ef7
commit 635a61e306
1 changed files with 3 additions and 0 deletions

View File

@ -72,6 +72,9 @@ class BaseSoC(SoCCore):
platform = arty.Platform(toolchain=toolchain) platform = arty.Platform(toolchain=toolchain)
# SoCCore ---------------------------------------------------------------------------------- # SoCCore ----------------------------------------------------------------------------------
if toolchain == "symbiflow":
sys_clk_freq=int(60e6)
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs) SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
# CRG -------------------------------------------------------------------------------------- # CRG --------------------------------------------------------------------------------------