2020-11-13 06:16:59 -05:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
|
|
|
# Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
|
|
|
# Build/Use ----------------------------------------------------------------------------------------
|
|
|
|
# Build/Load bitstream:
|
2023-10-06 13:25:22 -04:00
|
|
|
# ./siglent_sds1104xe.py --with-etherbone --uart-name=crossover --csr-csv=csr.csv --build --load
|
2020-11-13 06:16:59 -05:00
|
|
|
#
|
|
|
|
# Test Ethernet:
|
|
|
|
# ping 192.168.1.50
|
|
|
|
#
|
|
|
|
# Test Console:
|
|
|
|
# litex_server --udp
|
2020-12-10 07:56:01 -05:00
|
|
|
# litex_term crossover
|
2020-11-13 06:16:59 -05:00
|
|
|
# --------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
from migen import *
|
|
|
|
|
2023-02-23 03:09:33 -05:00
|
|
|
from litex.gen import *
|
2022-10-27 10:58:55 -04:00
|
|
|
|
2022-05-02 06:42:04 -04:00
|
|
|
from litex_boards.platforms import siglent_sds1104xe
|
2020-11-13 06:16:59 -05:00
|
|
|
|
|
|
|
from litex.soc.cores.clock import *
|
|
|
|
from litex.soc.integration.soc_core import *
|
|
|
|
from litex.soc.integration.builder import *
|
2021-04-29 04:41:19 -04:00
|
|
|
from litex.soc.cores.video import VideoVGAPHY
|
2020-11-13 06:16:59 -05:00
|
|
|
|
2022-02-16 11:59:27 -05:00
|
|
|
from litedram.common import PHYPadsReducer
|
2020-11-13 06:16:59 -05:00
|
|
|
from litedram.modules import MT41K64M16
|
|
|
|
from litedram.phy import s7ddrphy
|
|
|
|
|
|
|
|
from liteeth.phy.mii import LiteEthPHYMII
|
|
|
|
|
|
|
|
# CRG ----------------------------------------------------------------------------------------------
|
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
class _CRG(LiteXModule):
|
2021-03-26 18:25:42 -04:00
|
|
|
def __init__(self, platform, sys_clk_freq, with_ethernet=False):
|
2022-10-27 10:58:55 -04:00
|
|
|
self.rst = Signal()
|
|
|
|
self.cd_sys = ClockDomain()
|
|
|
|
self.cd_sys4x = ClockDomain()
|
|
|
|
self.cd_sys4x_dqs = ClockDomain()
|
|
|
|
self.cd_idelay = ClockDomain()
|
|
|
|
self.cd_dvi = ClockDomain()
|
2020-11-13 06:16:59 -05:00
|
|
|
|
|
|
|
# # #
|
|
|
|
|
2021-03-26 18:25:42 -04:00
|
|
|
# Clk / Rst
|
|
|
|
clk25 = ClockSignal("eth_tx") if with_ethernet else platform.request("eth_clocks").rx
|
|
|
|
|
|
|
|
# PLL
|
2022-10-27 10:58:55 -04:00
|
|
|
self.pll = pll = S7PLL(speedgrade=-1)
|
2021-03-26 18:25:42 -04:00
|
|
|
pll.register_clkin(clk25, 25e6)
|
2020-11-13 06:16:59 -05:00
|
|
|
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys4x, 4*sys_clk_freq)
|
|
|
|
pll.create_clkout(self.cd_sys4x_dqs, 4*sys_clk_freq, phase=90)
|
|
|
|
pll.create_clkout(self.cd_idelay, 200e6)
|
2021-04-29 04:41:19 -04:00
|
|
|
pll.create_clkout(self.cd_dvi, 33.3e6)
|
2021-01-07 02:00:40 -05:00
|
|
|
platform.add_false_path_constraints(self.cd_sys.clk, pll.clkin) # Ignore sys_clk to pll.clkin path created by SoC's rst.
|
2020-11-13 06:16:59 -05:00
|
|
|
|
2022-10-27 10:58:55 -04:00
|
|
|
self.idelayctrl = S7IDELAYCTRL(self.cd_idelay)
|
2020-11-13 06:16:59 -05:00
|
|
|
|
|
|
|
# BaseSoC ------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class BaseSoC(SoCCore):
|
2022-11-08 06:29:11 -05:00
|
|
|
def __init__(self, sys_clk_freq=100e6,
|
|
|
|
with_etherbone = True,
|
|
|
|
eth_ip = "192.168.1.50",
|
|
|
|
with_video_terminal = False,
|
|
|
|
with_video_framebuffer = False,
|
|
|
|
**kwargs):
|
2022-05-02 06:42:04 -04:00
|
|
|
platform = siglent_sds1104xe.Platform()
|
2020-11-13 06:16:59 -05:00
|
|
|
|
2022-04-21 06:17:26 -04:00
|
|
|
# CRG --------------------------------------------------------------------------------------
|
2022-10-27 10:58:55 -04:00
|
|
|
self.crg = _CRG(platform, sys_clk_freq, with_ethernet=with_etherbone)
|
2022-04-21 06:17:26 -04:00
|
|
|
|
2020-11-13 06:16:59 -05:00
|
|
|
# SoCCore ----------------------------------------------------------------------------------
|
2021-02-18 13:30:05 -05:00
|
|
|
if kwargs.get("uart_name", "serial") == "serial":
|
2021-01-08 13:00:41 -05:00
|
|
|
kwargs["uart_name"] = "crossover" # Defaults to Crossover UART.
|
2022-04-21 06:17:26 -04:00
|
|
|
SoCCore.__init__(self, platform, sys_clk_freq, ident="LiteX SoC on Siglent SDS1104X-E", **kwargs)
|
2020-11-13 06:16:59 -05:00
|
|
|
|
|
|
|
# DDR3 SDRAM -------------------------------------------------------------------------------
|
|
|
|
if not self.integrated_main_ram_size:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ddrphy = s7ddrphy.A7DDRPHY(
|
2022-02-18 05:47:08 -05:00
|
|
|
pads = PHYPadsReducer(platform.request("ddram"), [0, 1, 2, 3]),
|
2020-11-13 06:16:59 -05:00
|
|
|
memtype = "DDR3",
|
|
|
|
nphases = 4,
|
|
|
|
sys_clk_freq = sys_clk_freq)
|
|
|
|
self.add_sdram("sdram",
|
2022-01-18 05:37:55 -05:00
|
|
|
phy = self.ddrphy,
|
|
|
|
module = MT41K64M16(sys_clk_freq, "1:4"),
|
|
|
|
l2_cache_size = kwargs.get("l2_size", 8192)
|
2020-11-13 06:16:59 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
# Etherbone --------------------------------------------------------------------------------
|
|
|
|
if with_etherbone:
|
2023-10-23 13:07:37 -04:00
|
|
|
from litex.soc.integration.soc import SoCRegion
|
2021-02-23 09:26:40 -05:00
|
|
|
|
|
|
|
# Ethernet PHY
|
2022-10-27 10:58:55 -04:00
|
|
|
self.ethphy = LiteEthPHYMII(
|
2020-11-13 06:16:59 -05:00
|
|
|
clock_pads = self.platform.request("eth_clocks"),
|
|
|
|
pads = self.platform.request("eth"))
|
2023-10-23 13:07:37 -04:00
|
|
|
|
2023-10-23 13:25:12 -04:00
|
|
|
# Etherbone.
|
2023-10-23 13:07:37 -04:00
|
|
|
self.add_etherbone(
|
|
|
|
phy = self.ethphy,
|
|
|
|
ip_address = "192.168.1.51",
|
|
|
|
mac_address = 0x10e2d5000001,
|
|
|
|
data_width = 8,
|
|
|
|
interface = "hybrid",
|
|
|
|
endianness = self.cpu.endianness)
|
|
|
|
|
2023-10-23 13:25:12 -04:00
|
|
|
# Software Interface.
|
2023-10-23 13:07:37 -04:00
|
|
|
ethmac = self.get_module("ethcore_etherbone").mac
|
|
|
|
ethmac_region_size = (ethmac.rx_slots.constant + ethmac.tx_slots.constant)*ethmac.slot_size.constant
|
|
|
|
ethmac_region = SoCRegion(origin=self.mem_map.get("ethmac", None), size=ethmac_region_size, cached=False)
|
|
|
|
self.bus.add_slave(name="ethmac", slave=ethmac.bus, region=ethmac_region)
|
|
|
|
# Add IRQs (if enabled).
|
2021-02-23 09:26:40 -05:00
|
|
|
if self.irq.enabled:
|
|
|
|
self.irq.add("ethmac", use_loc_if_exists=True)
|
|
|
|
|
2021-04-29 05:52:41 -04:00
|
|
|
self.add_constant("ETH_PHY_NO_RESET") # Disable reset from BIOS to avoid disabling Hardware Interface.
|
2021-02-23 09:26:40 -05:00
|
|
|
|
2021-03-26 17:55:25 -04:00
|
|
|
# Video ------------------------------------------------------------------------------------
|
2021-04-28 10:59:09 -04:00
|
|
|
video_timings = ("800x480@60Hz", {
|
2021-04-29 04:41:19 -04:00
|
|
|
"pix_clk" : 33.3e6,
|
2021-04-28 10:59:09 -04:00
|
|
|
"h_active" : 800,
|
|
|
|
"h_blanking" : 256,
|
2021-04-29 04:41:19 -04:00
|
|
|
"h_sync_offset" : 210,
|
|
|
|
"h_sync_width" : 1,
|
2021-04-28 10:59:09 -04:00
|
|
|
"v_active" : 480,
|
2021-04-29 04:41:19 -04:00
|
|
|
"v_blanking" : 45,
|
|
|
|
"v_sync_offset" : 22,
|
|
|
|
"v_sync_width" : 1,
|
2021-04-28 10:59:09 -04:00
|
|
|
})
|
2021-03-26 17:55:25 -04:00
|
|
|
if with_video_terminal or with_video_framebuffer:
|
2022-10-27 10:58:55 -04:00
|
|
|
self.videophy = VideoVGAPHY(platform.request("lcd"), clock_domain="dvi")
|
2021-03-26 17:55:25 -04:00
|
|
|
if with_video_terminal:
|
2021-04-28 10:59:09 -04:00
|
|
|
self.add_video_terminal(phy=self.videophy, timings=video_timings, clock_domain="dvi")
|
2021-03-26 17:55:25 -04:00
|
|
|
if with_video_framebuffer:
|
2021-04-28 10:59:09 -04:00
|
|
|
self.add_video_framebuffer(phy=self.videophy, timings=video_timings, clock_domain="dvi")
|
2021-03-26 17:55:25 -04:00
|
|
|
|
2020-11-13 06:16:59 -05:00
|
|
|
# Build --------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
def main():
|
2022-11-06 15:39:52 -05:00
|
|
|
from litex.build.parser import LiteXArgumentParser
|
2022-11-08 04:41:35 -05:00
|
|
|
parser = LiteXArgumentParser(platform=siglent_sds1104xe.Platform, description="LiteX SoC on SDS1104X-E.")
|
|
|
|
parser.add_target_argument("--sys-clk-freq", default=100e6, type=float, help="System clock frequency.")
|
|
|
|
parser.add_target_argument("--with-etherbone", action="store_true", help="Enable Etherbone support.")
|
|
|
|
parser.add_target_argument("--eth-ip", default="192.168.1.50", help="Ethernet/Etherbone IP address.")
|
2022-11-05 03:07:14 -04:00
|
|
|
viopts = parser.target_group.add_mutually_exclusive_group()
|
2022-01-05 11:06:22 -05:00
|
|
|
viopts.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (HDMI).")
|
|
|
|
viopts.add_argument("--with-video-framebuffer", action="store_true", help="Enable Video Framebuffer (HDMI).")
|
2020-11-13 06:16:59 -05:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
soc = BaseSoC(
|
2022-11-08 04:41:35 -05:00
|
|
|
sys_clk_freq = args.sys_clk_freq,
|
2020-11-13 06:16:59 -05:00
|
|
|
with_etherbone = args.with_etherbone,
|
2021-01-07 18:44:15 -05:00
|
|
|
eth_ip = args.eth_ip,
|
2021-03-26 17:55:25 -04:00
|
|
|
with_video_terminal = args.with_video_terminal,
|
|
|
|
with_video_framebuffer = args.with_video_framebuffer,
|
2022-11-07 02:43:26 -05:00
|
|
|
**parser.soc_argdict
|
2020-11-13 06:16:59 -05:00
|
|
|
)
|
2021-01-07 18:44:15 -05:00
|
|
|
|
2022-11-05 03:07:14 -04:00
|
|
|
builder = Builder(soc, **parser.builder_argdict)
|
2022-05-06 09:14:32 -04:00
|
|
|
if args.build:
|
2022-11-05 03:07:14 -04:00
|
|
|
builder.build(**parser.toolchain_argdict)
|
2020-11-13 06:16:59 -05:00
|
|
|
|
|
|
|
if args.load:
|
|
|
|
prog = soc.platform.create_programmer()
|
2022-03-17 04:21:05 -04:00
|
|
|
prog.load_bitstream(builder.get_bitstream_filename(mode="sram"), device=1)
|
2020-11-13 06:16:59 -05:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|