mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Fix ECP5PLL VCO frequency range
See https://www.latticesemi.com/view_document?document_id=50461 ("ECP5 and ECP5-5G Family Data Sheet"), section 3.19 "sysCLOCK PLL Timing".
This commit is contained in:
parent
0c7e0bf025
commit
7a87d4e262
1 changed files with 1 additions and 1 deletions
|
@ -507,7 +507,7 @@ class ECP5PLL(Module):
|
|||
clko_div_range = (1, 128+1)
|
||||
clki_freq_range = ( 8e6, 400e6)
|
||||
clko_freq_range = (3.125e6, 400e6)
|
||||
vco_freq_range = ( 550e6, 1250e6)
|
||||
vco_freq_range = ( 400e6, 800e6)
|
||||
|
||||
def __init__(self):
|
||||
self.reset = Signal()
|
||||
|
|
Loading…
Reference in a new issue