Update ecp5_evn.py

The system clock was driven directly while it should be driven by the PLL.
This commit is contained in:
Arnaud Durand 2019-08-22 02:27:50 +02:00 committed by GitHub
parent e31360b1c6
commit 618f41bb1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -39,7 +39,6 @@ class _CRG(Module):
pll.register_clkin(clk, x5_clk_freq or 12e6) pll.register_clkin(clk, x5_clk_freq or 12e6)
pll.create_clkout(self.cd_sys, sys_clk_freq) pll.create_clkout(self.cd_sys, sys_clk_freq)
self.specials += AsyncResetSynchronizer(self.cd_sys, ~rst_n) self.specials += AsyncResetSynchronizer(self.cd_sys, ~rst_n)
self.comb += self.cd_sys.clk.eq(clk)
# BaseSoC ------------------------------------------------------------------------------------------ # BaseSoC ------------------------------------------------------------------------------------------