2019-06-24 06:38:58 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
# This file is Copyright (c) 2014-2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# This file is Copyright (c) 2013-2014 Sebastien Bourdeauducq <sb@m-labs.hk>
|
|
|
|
# License: BSD
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import importlib
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.io import CRG
|
|
|
|
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
|
|
|
|
|
|
|
from liteeth.phy import LiteEthPHY
|
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2020-03-21 13:29:52 -04:00
|
|
|
def __init__(self, platform, with_ethernet=False, **kwargs):
|
2019-06-24 06:38:58 -04:00
|
|
|
sys_clk_freq = int(1e9/platform.default_clk_period)
|
2019-12-03 03:07:09 -05:00
|
|
|
|
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
2020-01-13 09:20:37 -05:00
|
|
|
SoCCore.__init__(self, platform, clk_freq=sys_clk_freq, **kwargs)
|
2020-01-16 04:28:09 -05:00
|
|
|
|
2019-12-03 03:07:09 -05:00
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2019-06-24 06:38:58 -04:00
|
|
|
self.submodules.crg = CRG(platform.request(platform.default_clk_name))
|
|
|
|
|
2020-01-16 04:28:09 -05:00
|
|
|
# Ethernet ---------------------------------------------------------------------------------
|
2020-03-21 13:29:52 -04:00
|
|
|
if with_ethernet:
|
|
|
|
self.submodules.ethphy = LiteEthPHY(
|
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
|
|
|
pads = self.platform.request("eth"),
|
|
|
|
clk_freq = self.clk_freq)
|
|
|
|
self.add_csr("ethphy")
|
|
|
|
self.add_ethernet(phy=self.ethphy)
|
2019-06-24 06:38:58 -04:00
|
|
|
|
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description="Generic LiteX SoC")
|
|
|
|
builder_args(parser)
|
|
|
|
soc_core_args(parser)
|
|
|
|
parser.add_argument("--with-ethernet", action="store_true",
|
|
|
|
help="enable Ethernet support")
|
|
|
|
parser.add_argument("platform",
|
|
|
|
help="module name of the platform to build for")
|
|
|
|
parser.add_argument("--gateware-toolchain", default=None,
|
|
|
|
help="FPGA gateware toolchain used for build")
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
platform_module = importlib.import_module(args.platform)
|
|
|
|
if args.gateware_toolchain is not None:
|
|
|
|
platform = platform_module.Platform(toolchain=args.gateware_toolchain)
|
|
|
|
else:
|
|
|
|
platform = platform_module.Platform()
|
2020-03-21 13:29:52 -04:00
|
|
|
soc = BaseSoC(platform, with_ethernet=args.with_ethernet, **soc_core_argdict(args))
|
2019-06-24 06:38:58 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
|
|
|
builder.build()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|