Merge pull request #378 from antmicro/add-missing-peripherals
DDR4 datacenter: add missing peripherals
This commit is contained in:
commit
e6a9f44580
|
@ -29,9 +29,10 @@ _io = [
|
|||
Subsignal("rx", Pins("F25")),
|
||||
IOStandard("LVCMOS33")
|
||||
),
|
||||
("serial", 1,
|
||||
Subsignal("tx", Pins("D26")),
|
||||
Subsignal("rx", Pins("E25")),
|
||||
|
||||
("spiflash4x", 0, # clock needs to be accessed through STARTUPE2
|
||||
Subsignal("cs_n", Pins("C23")),
|
||||
Subsignal("dq", Pins("B24", "A25", "B22", "A22")),
|
||||
IOStandard("LVCMOS33")
|
||||
),
|
||||
|
||||
|
@ -98,8 +99,7 @@ _io = [
|
|||
|
||||
# HyperRAM
|
||||
("hyperram", 0,
|
||||
Subsignal("clk_n", Pins("AE26")),
|
||||
Subsignal("clk_p", Pins("AD26")),
|
||||
Subsignal("clk", Pins("AD26")), # clk_n AE26
|
||||
Subsignal("rst_n", Pins("AC24")),
|
||||
Subsignal("cs_n", Pins("AC26")),
|
||||
Subsignal("dq", Pins("AE23 AD25 AF24 AE22 AF23 AF25 AE25 AD24")),
|
||||
|
@ -119,9 +119,21 @@ _io = [
|
|||
|
||||
# I2C
|
||||
("i2c", 0,
|
||||
Subsignal("scl", Pins("Y5")),
|
||||
Subsignal("sda", Pins("Y6")),
|
||||
IOStandard("SSTL12_T_DCI"),
|
||||
Subsignal("scl", Pins("E25")),
|
||||
Subsignal("sda", Pins("D26")),
|
||||
IOStandard("LVCMOS33"),
|
||||
),
|
||||
|
||||
# HDMI Out
|
||||
("hdmi_out", 0,
|
||||
Subsignal("clk_p", Pins("B15"), IOStandard("TMDS_33")),
|
||||
Subsignal("clk_n", Pins("A15"), IOStandard("TMDS_33")),
|
||||
Subsignal("data0_p", Pins("B14"), IOStandard("TMDS_33")),
|
||||
Subsignal("data0_n", Pins("A14"), IOStandard("TMDS_33")),
|
||||
Subsignal("data1_p", Pins("A13"), IOStandard("TMDS_33")),
|
||||
Subsignal("data1_n", Pins("A12"), IOStandard("TMDS_33")),
|
||||
Subsignal("data2_p", Pins("B10"), IOStandard("TMDS_33")),
|
||||
Subsignal("data2_n", Pins("A10"), IOStandard("TMDS_33")),
|
||||
),
|
||||
]
|
||||
|
||||
|
@ -144,7 +156,8 @@ class Platform(XilinxPlatform):
|
|||
self.add_platform_command("set_property DCI_CASCADE {{32 34}} [get_iobanks 33]")
|
||||
|
||||
def create_programmer(self):
|
||||
return OpenOCD("openocd_xc7_ft4232.cfg", "bscan_spi_xc7k100t.bit")
|
||||
bscan_spi = "bscan_spi_xc7k160t.bit" if "xc7k160t" in self.device else "bscan_spi_xc7k160t.bit"
|
||||
return OpenOCD("openocd_xc7_ft4232.cfg", bscan_spi)
|
||||
|
||||
def do_finalize(self, fragment):
|
||||
XilinxPlatform.do_finalize(self, fragment)
|
||||
|
|
|
@ -20,6 +20,7 @@ from litex.soc.integration.soc import SoCRegion
|
|||
from litex.soc.integration.builder import *
|
||||
from litex.soc.cores.led import LedChaser
|
||||
from litex.soc.cores.bitbang import I2CMaster
|
||||
from litex.soc.cores.video import VideoS7HDMIPHY
|
||||
|
||||
from litedram.modules import MTA18ASF2G72PZ
|
||||
from litedram.phy.s7ddrphy import A7DDRPHY
|
||||
|
@ -30,20 +31,29 @@ from litedram.common import PhySettings, GeomSettings, TimingSettings
|
|||
from liteeth.phy import LiteEthS7PHYRGMII
|
||||
from litex.soc.cores.hyperbus import HyperRAM
|
||||
|
||||
from litespi.modules import S25FL128S0
|
||||
from litespi.opcodes import SpiNorFlashOpCodes as Codes
|
||||
|
||||
# CRG ----------------------------------------------------------------------------------------------
|
||||
|
||||
class _CRG(Module):
|
||||
def __init__(self, platform, sys_clk_freq, iodelay_clk_freq):
|
||||
def __init__(self, platform, sys_clk_freq, iodelay_clk_freq, with_video_pll=False):
|
||||
self.clock_domains.cd_sys = ClockDomain()
|
||||
self.clock_domains.cd_sys2x = ClockDomain(reset_less=True)
|
||||
self.clock_domains.cd_sys4x = ClockDomain(reset_less=True)
|
||||
self.clock_domains.cd_sys4x_dqs = ClockDomain(reset_less=True)
|
||||
self.clock_domains.cd_idelay = ClockDomain()
|
||||
|
||||
self.clock_domains.cd_hdmi = ClockDomain()
|
||||
self.clock_domains.cd_hdmi5x = ClockDomain()
|
||||
|
||||
# # #
|
||||
|
||||
# Clk.
|
||||
clk100 = platform.request("clk100")
|
||||
|
||||
self.submodules.pll = pll = S7PLL(speedgrade=-1)
|
||||
pll.register_clkin(platform.request("clk100"), 100e6)
|
||||
pll.register_clkin(clk100, 100e6)
|
||||
pll.create_clkout(self.cd_sys, sys_clk_freq)
|
||||
pll.create_clkout(self.cd_sys2x, 2 * sys_clk_freq)
|
||||
pll.create_clkout(self.cd_sys4x, 4 * sys_clk_freq)
|
||||
|
@ -52,13 +62,21 @@ class _CRG(Module):
|
|||
|
||||
self.submodules.idelayctrl = S7IDELAYCTRL(self.cd_idelay)
|
||||
|
||||
# Video PLL.
|
||||
if with_video_pll:
|
||||
self.submodules.video_pll = video_pll = S7MMCM(speedgrade=-1)
|
||||
video_pll.register_clkin(clk100, 100e6)
|
||||
video_pll.create_clkout(self.cd_hdmi, 40e6)
|
||||
video_pll.create_clkout(self.cd_hdmi5x, 5*40e6)
|
||||
|
||||
|
||||
# BaseSoC ------------------------------------------------------------------------------------------
|
||||
|
||||
class BaseSoC(SoCCore):
|
||||
def __init__(self, *, sys_clk_freq=int(100e6), iodelay_clk_freq=200e6,
|
||||
with_ethernet=False, with_etherbone=False, eth_ip="192.168.1.50", eth_dynamic_ip=False,
|
||||
with_hyperram=False, with_sdcard=False, with_jtagbone=True, with_uartbone=False,
|
||||
with_led_chaser=True, eth_reset_time, **kwargs):
|
||||
with_ethernet=False, with_etherbone=False, eth_ip="192.168.1.50", eth_reset_time="10e-3", eth_dynamic_ip=False,
|
||||
with_hyperram=False, with_sdcard=False, with_jtagbone=True, with_uartbone=False, with_spi_flash=False,
|
||||
with_led_chaser=True, with_video_terminal=False, with_video_framebuffer=False, **kwargs):
|
||||
platform = datacenter_ddr4_test_board.Platform()
|
||||
|
||||
# SoCCore ----------------------------------------------------------------------------------
|
||||
|
@ -67,7 +85,8 @@ class BaseSoC(SoCCore):
|
|||
**kwargs)
|
||||
|
||||
# CRG --------------------------------------------------------------------------------------
|
||||
self.submodules.crg = _CRG(platform, sys_clk_freq, iodelay_clk_freq=iodelay_clk_freq)
|
||||
with_video_pll = (with_video_terminal or with_video_framebuffer)
|
||||
self.submodules.crg = _CRG(platform, sys_clk_freq, iodelay_clk_freq=iodelay_clk_freq, with_video_pll=with_video_pll)
|
||||
|
||||
# DDR4 SDRAM RDIMM -------------------------------------------------------------------------
|
||||
if not self.integrated_main_ram_size:
|
||||
|
@ -120,6 +139,18 @@ class BaseSoC(SoCCore):
|
|||
pads = platform.request_all("user_led"),
|
||||
sys_clk_freq = sys_clk_freq)
|
||||
|
||||
# Video ------------------------------------------------------------------------------------
|
||||
if with_video_terminal or with_video_framebuffer:
|
||||
self.submodules.videophy = VideoS7HDMIPHY(platform.request("hdmi_out"), clock_domain="hdmi")
|
||||
if with_video_terminal:
|
||||
self.add_video_terminal(phy=self.videophy, timings="800x600@60Hz", clock_domain="hdmi")
|
||||
if with_video_framebuffer:
|
||||
self.add_video_framebuffer(phy=self.videophy, timings="800x600@60Hz", clock_domain="hdmi")
|
||||
|
||||
# SPI Flash --------------------------------------------------------------------------------
|
||||
if with_spi_flash:
|
||||
self.add_spi_flash(mode="4x", module=S25FL128S0(Codes.READ_1_1_4), with_master=True)
|
||||
|
||||
# System I2C (behing multiplexer) ----------------------------------------------------------
|
||||
i2c_pads = platform.request('i2c')
|
||||
self.submodules.i2c = I2CMaster(i2c_pads)
|
||||
|
@ -149,23 +180,26 @@ class LiteDRAMSettingsEncoder(json.JSONEncoder):
|
|||
|
||||
def main():
|
||||
from litex.soc.integration.soc import LiteXSoCArgumentParser
|
||||
parser = LiteXSoCArgumentParser(description="LiteX SoC on LPDDR4 Test Board")
|
||||
parser = LiteXSoCArgumentParser(description="LiteX SoC on DDR4 Datacenter Test Board")
|
||||
target_group = parser.add_argument_group(title="Target options")
|
||||
target_group.add_argument("--build", action="store_true", help="Build bitstream.")
|
||||
target_group.add_argument("--load", action="store_true", help="Load bitstream.")
|
||||
target_group.add_argument("--flash", action="store_true", help="Flash bitstream.")
|
||||
target_group.add_argument("--sys-clk-freq", default=100e6, help="System clock frequency.")
|
||||
target_group.add_argument("--iodelay-clk-freq", default=200e6, help="IODELAYCTRL frequency.")
|
||||
target_group.add_argument("--build", action="store_true", help="Build bitstream")
|
||||
target_group.add_argument("--load", action="store_true", help="Load bitstream")
|
||||
target_group.add_argument("--flash", action="store_true", help="Flash bitstream")
|
||||
target_group.add_argument("--sys-clk-freq", default=100e6, help="System clock frequency")
|
||||
target_group.add_argument("--iodelay-clk-freq", default=200e6, help="IODELAYCTRL frequency")
|
||||
ethopts = target_group.add_mutually_exclusive_group()
|
||||
ethopts.add_argument("--with-ethernet", action="store_true", help="Add Ethernet.")
|
||||
ethopts.add_argument("--with-etherbone", action="store_true", help="Add EtherBone.")
|
||||
target_group.add_argument("--eth-ip", default="192.168.1.50", help="Ethernet/Etherbone IP address.")
|
||||
target_group.add_argument("--eth-dynamic-ip", action="store_true", help="Enable dynamic Ethernet IP addresses setting.")
|
||||
target_group.add_argument("--eth-reset-time", default="10e-3", help="Duration of Ethernet PHY reset")
|
||||
target_group.add_argument("--with-hyperram", action="store_true", help="Add HyperRAM.")
|
||||
target_group.add_argument("--with-sdcard", action="store_true", help="Add SDCard.")
|
||||
target_group.add_argument("--with-jtagbone", action="store_true", help="Add JTAGBone.")
|
||||
target_group.add_argument("--with-uartbone", action="store_true", help="Add UartBone on 2nd serial.")
|
||||
ethopts.add_argument("--with-ethernet", action="store_true", help="Add Ethernet")
|
||||
ethopts.add_argument("--with-etherbone", action="store_true", help="Add EtherBone")
|
||||
target_group.add_argument("--eth-ip", default="192.168.1.50", help="Ethernet/Etherbone IP address")
|
||||
target_group.add_argument("--eth-dynamic-ip", action="store_true", help="Enable dynamic Ethernet IP addresses setting")
|
||||
target_group.add_argument("--eth-reset-time", default="10e-3", help="Duration of Ethernet PHY reset")
|
||||
target_group.add_argument("--with-hyperram", action="store_true", help="Add HyperRAM")
|
||||
target_group.add_argument("--with-sdcard", action="store_true", help="Add SDCard")
|
||||
target_group.add_argument("--with-jtagbone", action="store_true", help="Add JTAGBone")
|
||||
target_group.add_argument("--with-uartbone", action="store_true", help="Add UartBone on 2nd serial")
|
||||
target_group.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (HDMI)")
|
||||
target_group.add_argument("--with-video-framebuffer", action="store_true", help="Enable Video Framebuffer (HDMI)")
|
||||
target_group.add_argument("--with-spi-flash", action="store_true", help="Enable SPI Flash (MMAPed).")
|
||||
builder_args(parser)
|
||||
soc_core_args(parser)
|
||||
vivado_build_args(parser)
|
||||
|
@ -174,17 +208,19 @@ def main():
|
|||
assert not (args.with_etherbone and args.eth_dynamic_ip)
|
||||
|
||||
soc = BaseSoC(
|
||||
sys_clk_freq = int(float(args.sys_clk_freq)),
|
||||
iodelay_clk_freq = int(float(args.iodelay_clk_freq)),
|
||||
with_ethernet = args.with_ethernet,
|
||||
with_etherbone = args.with_etherbone,
|
||||
eth_ip = args.eth_ip,
|
||||
eth_dynamic_ip = args.eth_dynamic_ip,
|
||||
eth_reset_time = args.eth_reset_time,
|
||||
with_hyperram = args.with_hyperram,
|
||||
with_sdcard = args.with_sdcard,
|
||||
with_jtagbone = args.with_jtagbone,
|
||||
with_uartbone = args.with_uartbone,
|
||||
sys_clk_freq = int(float(args.sys_clk_freq)),
|
||||
iodelay_clk_freq = int(float(args.iodelay_clk_freq)),
|
||||
with_ethernet = args.with_ethernet,
|
||||
with_etherbone = args.with_etherbone,
|
||||
eth_ip = args.eth_ip,
|
||||
eth_dynamic_ip = args.eth_dynamic_ip,
|
||||
with_hyperram = args.with_hyperram,
|
||||
with_sdcard = args.with_sdcard,
|
||||
with_jtagbone = args.with_jtagbone,
|
||||
with_uartbone = args.with_uartbone,
|
||||
with_spi_flash = args.with_spi_flash,
|
||||
with_video_terminal = args.with_video_terminal,
|
||||
with_video_framebuffer = args.with_video_framebuffer,
|
||||
**soc_core_argdict(args))
|
||||
builder = Builder(soc, **builder_argdict(args))
|
||||
vns = builder.build(**vivado_build_argdict(args), run=args.build)
|
||||
|
|
Loading…
Reference in New Issue