2020-04-22 10:31:07 -04:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-04-22 10:31:07 -04:00
|
|
|
|
2020-05-05 09:11:38 -04:00
|
|
|
import os
|
2020-04-22 10:31:07 -04:00
|
|
|
import argparse
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
from migen.genlib.resetsync import AsyncResetSynchronizer
|
|
|
|
|
|
|
|
from litex_boards.platforms import ecpix5
|
|
|
|
|
|
|
|
from litex.build.lattice.trellis import trellis_args, trellis_argdict
|
|
|
|
|
|
|
|
from litex.soc.cores.clock import *
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
2021-01-28 08:27:09 -05:00
|
|
|
from litex.soc.cores.led import LedChaser
|
2020-04-22 10:31:07 -04:00
|
|
|
|
2020-04-22 11:03:22 -04:00
|
|
|
from litedram.modules import MT41K256M16
|
|
|
|
from litedram.phy import ECP5DDRPHY
|
|
|
|
|
2020-04-22 14:21:59 -04:00
|
|
|
from liteeth.phy.ecp5rgmii import LiteEthPHYRGMII
|
|
|
|
|
2020-04-22 10:31:07 -04:00
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class _CRG(Module):
|
|
|
|
def __init__(self, platform, sys_clk_freq):
|
2020-11-04 05:09:30 -05:00
|
|
|
self.rst = Signal()
|
2020-04-22 11:03:22 -04:00
|
|
|
self.clock_domains.cd_init = ClockDomain()
|
|
|
|
self.clock_domains.cd_por = ClockDomain(reset_less=True)
|
|
|
|
self.clock_domains.cd_sys = ClockDomain()
|
|
|
|
self.clock_domains.cd_sys2x = ClockDomain()
|
|
|
|
self.clock_domains.cd_sys2x_i = ClockDomain(reset_less=True)
|
2020-04-22 10:31:07 -04:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2020-06-29 10:28:28 -04:00
|
|
|
self.stop = Signal()
|
|
|
|
self.reset = Signal()
|
2020-04-22 11:03:22 -04:00
|
|
|
|
2020-04-22 10:31:07 -04:00
|
|
|
# Clk / Rst
|
|
|
|
clk100 = platform.request("clk100")
|
|
|
|
rst_n = platform.request("rst_n")
|
|
|
|
|
2020-04-22 11:03:22 -04:00
|
|
|
# Power on reset
|
|
|
|
por_count = Signal(16, reset=2**16-1)
|
|
|
|
por_done = Signal()
|
2020-06-29 10:28:28 -04:00
|
|
|
self.comb += self.cd_por.clk.eq(clk100)
|
2020-04-22 11:03:22 -04:00
|
|
|
self.comb += por_done.eq(por_count == 0)
|
|
|
|
self.sync.por += If(~por_done, por_count.eq(por_count - 1))
|
|
|
|
|
2020-04-22 10:31:07 -04:00
|
|
|
# PLL
|
|
|
|
self.submodules.pll = pll = ECP5PLL()
|
2020-11-04 05:09:30 -05:00
|
|
|
self.comb += pll.reset.eq(~por_done | ~rst_n | self.rst)
|
2020-04-22 10:31:07 -04:00
|
|
|
pll.register_clkin(clk100, 100e6)
|
2020-04-22 11:03:22 -04:00
|
|
|
pll.create_clkout(self.cd_sys2x_i, 2*sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_init, 25e6)
|
|
|
|
self.specials += [
|
|
|
|
Instance("ECLKSYNCB",
|
|
|
|
i_ECLKI = self.cd_sys2x_i.clk,
|
|
|
|
i_STOP = self.stop,
|
|
|
|
o_ECLKO = self.cd_sys2x.clk),
|
|
|
|
Instance("CLKDIVF",
|
|
|
|
p_DIV = "2.0",
|
|
|
|
i_ALIGNWD = 0,
|
|
|
|
i_CLKI = self.cd_sys2x.clk,
|
2020-06-29 10:28:28 -04:00
|
|
|
i_RST = self.reset,
|
2020-04-22 11:03:22 -04:00
|
|
|
o_CDIVX = self.cd_sys.clk),
|
2020-11-04 05:09:30 -05:00
|
|
|
AsyncResetSynchronizer(self.cd_sys, ~pll.locked | self.reset | self.rst),
|
|
|
|
AsyncResetSynchronizer(self.cd_sys2x, ~pll.locked | self.reset | self.rst),
|
2020-04-22 11:03:22 -04:00
|
|
|
]
|
2020-04-22 10:31:07 -04:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2021-07-06 17:39:37 -04:00
|
|
|
def __init__(self, device="85F", sys_clk_freq=int(75e6), with_ethernet=False,
|
|
|
|
with_etherbone=False, with_led_chaser=True, **kwargs):
|
2021-01-18 17:22:52 -05:00
|
|
|
platform = ecpix5.Platform(device=device, toolchain="trellis")
|
2020-04-22 10:31:07 -04:00
|
|
|
|
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
2020-06-30 12:11:04 -04:00
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq,
|
|
|
|
ident = "LiteX SoC on ECPIX-5",
|
|
|
|
ident_version = True,
|
|
|
|
**kwargs)
|
2020-04-22 10:31:07 -04:00
|
|
|
|
|
|
|
# CRG --------------------------------------------------------------------------------------
|
|
|
|
self.submodules.crg = _CRG(platform, sys_clk_freq)
|
|
|
|
|
2020-04-22 11:03:22 -04:00
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
|
|
|
self.submodules.ddrphy = ECP5DDRPHY(
|
|
|
|
platform.request("ddram"),
|
|
|
|
sys_clk_freq=sys_clk_freq)
|
|
|
|
self.comb += self.crg.stop.eq(self.ddrphy.init.stop)
|
2020-06-29 10:28:28 -04:00
|
|
|
self.comb += self.crg.reset.eq(self.ddrphy.init.reset)
|
2020-04-22 11:03:22 -04:00
|
|
|
self.add_sdram("sdram",
|
2021-03-29 09:28:04 -04:00
|
|
|
phy = self.ddrphy,
|
|
|
|
module = MT41K256M16(sys_clk_freq, "1:2"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-04-22 11:03:22 -04:00
|
|
|
)
|
|
|
|
|
2021-03-08 07:43:50 -05:00
|
|
|
# Ethernet / Etherbone ---------------------------------------------------------------------
|
|
|
|
if with_ethernet or with_etherbone:
|
2020-04-22 14:21:59 -04:00
|
|
|
self.submodules.ethphy = LiteEthPHYRGMII(
|
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
2020-12-29 10:00:59 -05:00
|
|
|
pads = self.platform.request("eth"),
|
|
|
|
rx_delay = 0e-9)
|
2021-03-08 07:43:50 -05:00
|
|
|
if with_ethernet:
|
|
|
|
self.add_ethernet(phy=self.ethphy)
|
|
|
|
if with_etherbone:
|
|
|
|
self.add_etherbone(phy=self.ethphy)
|
2020-04-22 14:21:59 -04:00
|
|
|
|
2021-01-28 08:27:09 -05:00
|
|
|
# Leds -------------------------------------------------------------------------------------
|
2021-07-06 17:39:37 -04:00
|
|
|
if with_led_chaser:
|
|
|
|
leds_pads = []
|
|
|
|
for i in range(4):
|
|
|
|
rgb_led_pads = platform.request("rgb_led", i)
|
|
|
|
self.comb += [getattr(rgb_led_pads, n).eq(1) for n in "gb"] # Disable Green/Blue Leds.
|
|
|
|
leds_pads += [getattr(rgb_led_pads, n) for n in "r"]
|
|
|
|
self.submodules.leds = LedChaser(
|
|
|
|
pads = Cat(leds_pads),
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
2020-04-22 11:03:22 -04:00
|
|
|
|
2020-04-22 10:31:07 -04:00
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser(description="LiteX SoC on ECPIX-5")
|
2021-03-08 07:43:50 -05:00
|
|
|
parser.add_argument("--build", action="store_true", help="Build bitstream")
|
|
|
|
parser.add_argument("--load", action="store_true", help="Load bitstream")
|
|
|
|
parser.add_argument("--flash", action="store_true", help="Flash bitstream to SPI Flash")
|
|
|
|
parser.add_argument("--device", default="85F", help="ECP5 device (default: 85F)")
|
|
|
|
parser.add_argument("--sys-clk-freq", default=75e6, help="System clock frequency (default: 75MHz)")
|
|
|
|
parser.add_argument("--with-sdcard", action="store_true", help="Enable SDCard support")
|
|
|
|
ethopts = parser.add_mutually_exclusive_group()
|
|
|
|
ethopts.add_argument("--with-ethernet", action="store_true", help="Enable Ethernet support")
|
|
|
|
ethopts.add_argument("--with-etherbone", action="store_true", help="Enable Etherbone support")
|
|
|
|
|
2020-04-22 10:31:07 -04:00
|
|
|
builder_args(parser)
|
|
|
|
soc_core_args(parser)
|
|
|
|
trellis_args(parser)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2020-11-12 12:07:28 -05:00
|
|
|
soc = BaseSoC(
|
2021-03-08 07:43:50 -05:00
|
|
|
device = args.device,
|
|
|
|
sys_clk_freq = int(float(args.sys_clk_freq)),
|
|
|
|
with_ethernet = args.with_ethernet,
|
|
|
|
with_etherbone = args.with_etherbone,
|
2020-11-12 12:07:28 -05:00
|
|
|
**soc_core_argdict(args)
|
|
|
|
)
|
2020-07-28 11:45:49 -04:00
|
|
|
if args.with_sdcard:
|
|
|
|
soc.add_sdcard()
|
2020-04-22 10:31:07 -04:00
|
|
|
builder = Builder(soc, **builder_argdict(args))
|
2020-05-05 09:11:38 -04:00
|
|
|
builder.build(**trellis_argdict(args), run=args.build)
|
|
|
|
|
|
|
|
if args.load:
|
|
|
|
prog = soc.platform.create_programmer()
|
2021-01-30 07:19:08 -05:00
|
|
|
prog.load_bitstream(os.path.join(builder.gateware_dir, soc.build_name + ".bit"))
|
|
|
|
|
|
|
|
if args.flash:
|
|
|
|
prog = soc.platform.create_programmer()
|
|
|
|
prog.flash(None, os.path.join(builder.gateware_dir, soc.build_name + ".bit"))
|
2020-04-22 10:31:07 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|