mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
clock/efinix_trion: Minor cleanup, revert support to None cd in create_clkout.
This commit is contained in:
parent
af5167c7f0
commit
95a68609cd
1 changed files with 13 additions and 12 deletions
|
@ -39,7 +39,7 @@ class TRIONPLL(Module):
|
|||
self.comb += self.platform.add_iface_io(self.pll_name + "_rstn").eq(~self.reset)
|
||||
self.comb += self.locked.eq(self.platform.add_iface_io(self.pll_name + "_locked"))
|
||||
|
||||
def register_clkin(self, clkin, freq, name= ""):
|
||||
def register_clkin(self, clkin, freq, name=""):
|
||||
block = self.platform.toolchain.ifacewriter.get_block(self.pll_name)
|
||||
|
||||
block["input_clock_name"] = self.platform.get_pin_name(clkin)
|
||||
|
@ -85,6 +85,7 @@ class TRIONPLL(Module):
|
|||
|
||||
clk_out_name = "{}_CLKOUT{}".format(self.pll_name, self.nclkouts)
|
||||
|
||||
if cd is not None:
|
||||
self.platform.add_extension([(clk_out_name, 0, Pins(1))])
|
||||
self.comb += cd.clk.eq(self.platform.request(clk_out_name))
|
||||
if with_reset:
|
||||
|
|
Loading…
Reference in a new issue