Addition of boot address parameter for trellis builds
This commit is contained in:
parent
79ee135f56
commit
dc1d452008
|
@ -118,10 +118,10 @@ _build_template = [
|
||||||
"yosys -l {build_name}.rpt {build_name}.ys",
|
"yosys -l {build_name}.rpt {build_name}.ys",
|
||||||
"nextpnr-ecp5 --json {build_name}.json --lpf {build_name}.lpf --textcfg {build_name}.config \
|
"nextpnr-ecp5 --json {build_name}.json --lpf {build_name}.lpf --textcfg {build_name}.config \
|
||||||
--{architecture} --package {package} --speed {speed_grade} {timefailarg} {ignoreloops}",
|
--{architecture} --package {package} --speed {speed_grade} {timefailarg} {ignoreloops}",
|
||||||
"ecppack {build_name}.config --svf {build_name}.svf --bit {build_name}.bit"
|
"ecppack {build_name}.config --svf {build_name}.svf --bit {build_name}.bit --bootaddr={bootaddr}"
|
||||||
]
|
]
|
||||||
|
|
||||||
def _build_script(source, build_template, build_name, architecture, package, speed_grade, timingstrict, ignoreloops):
|
def _build_script(source, build_template, build_name, architecture, package, speed_grade, timingstrict, ignoreloops, bootaddr):
|
||||||
if sys.platform in ("win32", "cygwin"):
|
if sys.platform in ("win32", "cygwin"):
|
||||||
script_ext = ".bat"
|
script_ext = ".bat"
|
||||||
script_contents = "@echo off\nrem Autogenerated by LiteX / git: " + tools.get_litex_git_revision() + "\n\n"
|
script_contents = "@echo off\nrem Autogenerated by LiteX / git: " + tools.get_litex_git_revision() + "\n\n"
|
||||||
|
@ -140,6 +140,7 @@ def _build_script(source, build_template, build_name, architecture, package, spe
|
||||||
speed_grade = speed_grade,
|
speed_grade = speed_grade,
|
||||||
timefailarg = "--timing-allow-fail" if not timingstrict else "",
|
timefailarg = "--timing-allow-fail" if not timingstrict else "",
|
||||||
ignoreloops = "--ignore-loops" if ignoreloops else "",
|
ignoreloops = "--ignore-loops" if ignoreloops else "",
|
||||||
|
bootaddr = bootaddr,
|
||||||
fail_stmt = fail_stmt)
|
fail_stmt = fail_stmt)
|
||||||
|
|
||||||
script_file = "build_" + build_name + script_ext
|
script_file = "build_" + build_name + script_ext
|
||||||
|
@ -186,6 +187,7 @@ class LatticeTrellisToolchain:
|
||||||
nowidelut = False,
|
nowidelut = False,
|
||||||
timingstrict = False,
|
timingstrict = False,
|
||||||
ignoreloops = False,
|
ignoreloops = False,
|
||||||
|
bootaddr = 0,
|
||||||
**kwargs):
|
**kwargs):
|
||||||
|
|
||||||
# Create build directory
|
# Create build directory
|
||||||
|
@ -217,7 +219,7 @@ class LatticeTrellisToolchain:
|
||||||
|
|
||||||
# Generate build script
|
# Generate build script
|
||||||
script = _build_script(False, self.build_template, build_name, architecture, package,
|
script = _build_script(False, self.build_template, build_name, architecture, package,
|
||||||
speed_grade, timingstrict, ignoreloops)
|
speed_grade, timingstrict, ignoreloops, bootaddr)
|
||||||
|
|
||||||
# Run
|
# Run
|
||||||
if run:
|
if run:
|
||||||
|
@ -244,10 +246,13 @@ def trellis_args(parser):
|
||||||
help="fail if timing not met, i.e., do NOT pass '--timing-allow-fail' to nextpnr")
|
help="fail if timing not met, i.e., do NOT pass '--timing-allow-fail' to nextpnr")
|
||||||
parser.add_argument("--nextpnr-ignoreloops", action="store_true",
|
parser.add_argument("--nextpnr-ignoreloops", action="store_true",
|
||||||
help="ignore combinational loops in timing analysis, i.e. pass '--ignore-loops' to nextpnr")
|
help="ignore combinational loops in timing analysis, i.e. pass '--ignore-loops' to nextpnr")
|
||||||
|
parser.add_argument("--ecppack-bootaddr", default=0,
|
||||||
|
help="Set boot address for next image, i.e. pass '--bootaddr xxx' to ecppack")
|
||||||
|
|
||||||
def trellis_argdict(args):
|
def trellis_argdict(args):
|
||||||
return {
|
return {
|
||||||
"nowidelut": args.yosys_nowidelut,
|
"nowidelut": args.yosys_nowidelut,
|
||||||
"timingstrict": args.nextpnr_timingstrict,
|
"timingstrict": args.nextpnr_timingstrict,
|
||||||
"ignoreloops": args.nextpnr_ignoreloops,
|
"ignoreloops": args.nextpnr_ignoreloops,
|
||||||
|
"bootaddr": args.ecppack_bootaddr
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue