Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize Build, Enhance Clock Control, and add FTDI serial number option to openfpgaloader #2111

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion litex/build/openfpgaloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class OpenFPGALoader(GenericProgrammer):
needs_bitreverse = False

def __init__(self, board="", cable="", freq=0, fpga_part="", index_chain=None):
def __init__(self, board="", cable="", freq=0, fpga_part="", index_chain=None, ftdi_serial=None):
# openFPGALoader base command.
self.cmd = ["openFPGALoader"]

Expand All @@ -35,6 +35,9 @@ def __init__(self, board="", cable="", freq=0, fpga_part="", index_chain=None):
# Specify index in the JTAG chain.
if index_chain is not None:
self.cmd += ["--index-chain", str(int(index_chain))]

if ftdi_serial is not None:
self.cmd += ["--ftdi-serial", str(ftdi_serial)]

def load_bitstream(self, bitstream_file):
# Load base command.
Expand Down
57 changes: 57 additions & 0 deletions litex/soc/cores/clock/xilinx_usp.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

from litex.soc.cores.clock.common import *
from litex.soc.cores.clock.xilinx_common import *
import numpy as np

# Xilinx / Ultrascale Plus -------------------------------------------------------------------------

Expand Down Expand Up @@ -108,6 +109,62 @@ def do_finalize(self):
self.params["o_CLKOUT{}".format(n)] = clk
self.specials += Instance("MMCME2_ADV", **self.params)

def compute_config(self):
config = {}
# import pdb; pdb.set_trace()
for divclk_divide in range(*self.divclk_divide_range):
config["divclk_divide"] = divclk_divide
for clkfbout_mult in reversed(np.arange(2, 128.1, 0.125).tolist()): # reversed(range(*self.clkfbout_mult_frange)):
# if clkfbout_mult == 102.625 and divclk_divide == 7:
# import pdb; pdb.set_trace()
# print (clkfbout_mult, divclk_divide)
all_valid = True
vco_freq = self.clkin_freq*clkfbout_mult/divclk_divide
breakpoint
(vco_freq_min, vco_freq_max) = self.vco_freq_range
if (vco_freq >= vco_freq_min*(1 + self.vco_margin) and
vco_freq <= vco_freq_max*(1 - self.vco_margin)):
for n, (clk, f, p, m) in sorted(self.clkouts.items()):
# import pdb; pdb.set_trace()
valid = False
d_ranges = [self.clkout_divide_range]
if getattr(self, "clkout{}_divide_range".format(n), None) is not None:
d_ranges += [getattr(self, "clkout{}_divide_range".format(n))]

if n == 0:
for d in np.arange(2, 128.1, 0.125).tolist():
clk_freq = vco_freq/d
if abs(clk_freq - f) <= f*m:
config["clkout{}_freq".format(n)] = clk_freq
config["clkout{}_divide".format(n)] = d
config["clkout{}_phase".format(n)] = p
valid = True
break
if valid:
break
else:
for d_range in d_ranges:
for d in clkdiv_range(*d_range):
clk_freq = vco_freq/d
if abs(clk_freq - f) <= f*m:
config["clkout{}_freq".format(n)] = clk_freq
config["clkout{}_divide".format(n)] = d
config["clkout{}_phase".format(n)] = p
valid = True
break
if valid:
break
if not valid:
all_valid = False
else:
all_valid = False
if all_valid:
config["vco"] = vco_freq
config["clkfbout_mult"] = clkfbout_mult
compute_config_log(self.logger, config)
# import pdb; pdb.set_trace()
return config
raise ValueError("No PLL config found")

class USPIDELAYCTRL(LiteXModule):
def __init__(self, cd_ref, cd_sys, reset_cycles=64, ready_cycles=64):
Expand Down
5 changes: 3 additions & 2 deletions litex/soc/integration/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,9 @@ def _prepare_rom_software(self):
_create_dir(os.path.join(self.software_dir, name))

def _generate_rom_software(self, compile_bios=True):
cpu_count = os.cpu_count()
# Compile all software packages.
for name, src_dir in self.software_packages:
for name, src_dir in self.software_packages:

# Skip BIOS compilation when disabled.
if name == "bios" and not compile_bios:
Expand All @@ -326,7 +327,7 @@ def _generate_rom_software(self, compile_bios=True):
dst_dir = os.path.join(self.software_dir, name)
makefile = os.path.join(src_dir, "Makefile")
if self.compile_software:
subprocess.check_call(["make", "-C", dst_dir, "-f", makefile])
subprocess.check_call(["make", f"-j{cpu_count}", "-C", dst_dir, "-f", makefile])

def _initialize_rom_software(self):
# Get BIOS data from compiled BIOS binary.
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"packaging",
"pyserial",
"requests",
"numpy",
],
extras_require = {
"develop": [
Expand Down