soc/cores/clock/efinix: fix input clock code for trion when the input clock comes from another PLL
This commit is contained in:
parent
d32095540a
commit
245bed7195
|
@ -88,7 +88,7 @@ class EFINIXPLL(LiteXModule):
|
|||
self.logger.info("Clock source: {}, using EXT_CLK{}".format(block["input_clock"], clock_no))
|
||||
self.platform.get_pll_resource(pll_res)
|
||||
else:
|
||||
block["input_clock"] = "INTERNAL"
|
||||
block["input_clock"] = "INTERNAL" if self.type == "TITANIUMPLL" else "CORE"
|
||||
block["resource"] = self.platform.get_free_pll_resource()
|
||||
block["input_signal"] = name
|
||||
self.logger.info("Clock source: {}".format(block["input_clock"]))
|
||||
|
|
Loading…
Reference in New Issue