build/efinix: Minor initial cleanups.
This commit is contained in:
parent
eafa0fe83e
commit
a99b4cac48
|
@ -10,24 +10,24 @@ from migen.genlib.resetsync import AsyncResetSynchronizer
|
|||
|
||||
from litex.build.io import *
|
||||
|
||||
# Efinix AsyncResetSynchronizer ---------------------------------------------------------------------
|
||||
# Efinix AsyncResetSynchronizer --------------------------------------------------------------------
|
||||
|
||||
class EfinixAsyncResetSynchronizerImpl(Module):
|
||||
def __init__(self, cd, async_reset):
|
||||
rst1 = Signal()
|
||||
self.specials += [
|
||||
Instance("EFX_FF",
|
||||
i_D = 0,
|
||||
i_SR = async_reset,
|
||||
i_CLK = cd.clk,
|
||||
i_CE = 1,
|
||||
o_Q = rst1),
|
||||
i_D = 0,
|
||||
i_SR = async_reset,
|
||||
i_CLK = cd.clk,
|
||||
i_CE = 1,
|
||||
o_Q = rst1),
|
||||
Instance("EFX_FF",
|
||||
i_D = rst1,
|
||||
i_SR = async_reset,
|
||||
i_CLK = cd.clk,
|
||||
i_CE = 1,
|
||||
o_Q = cd.rst)
|
||||
i_D = rst1,
|
||||
i_SR = async_reset,
|
||||
i_CLK = cd.clk,
|
||||
i_CE = 1,
|
||||
o_Q = cd.rst)
|
||||
]
|
||||
|
||||
|
||||
|
@ -36,7 +36,7 @@ class EfinixAsyncResetSynchronizer:
|
|||
def lower(dr):
|
||||
return EfinixAsyncResetSynchronizerImpl(dr.cd, dr.async_reset)
|
||||
|
||||
# Gowin Special Overrides --------------------------------------------------------------------------
|
||||
# Efinix Special Overrides -------------------------------------------------------------------------
|
||||
|
||||
efinix_special_overrides = {
|
||||
AsyncResetSynchronizer: EfinixAsyncResetSynchronizer
|
||||
|
|
|
@ -1,13 +1,24 @@
|
|||
#
|
||||
# This file is part of LiteX.
|
||||
#
|
||||
# Copyright (c) 2021 Franck Jullien <franck.jullien@collshade.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
import os
|
||||
import csv
|
||||
import re
|
||||
|
||||
import xml.etree.ElementTree as et
|
||||
|
||||
namespaces = { 'efxpt' : 'http://www.efinixinc.com/peri_device_db',
|
||||
'xi' : 'http://www.w3.org/2001/XInclude'
|
||||
# NameSpaces ---------------------------------------------------------------------------------------
|
||||
|
||||
namespaces = {
|
||||
'efxpt' : "http://www.efinixinc.com/peri_device_db",
|
||||
'xi' : "http://www.w3.org/2001/XInclude"
|
||||
}
|
||||
|
||||
# Efinix Database Parser ---------------------------------------------------------------------------
|
||||
|
||||
class EfinixDbParser():
|
||||
def __init__(self, efinity_path, device):
|
||||
self.efinity_db_path = efinity_path + '/pt/db/'
|
||||
|
|
|
@ -1,3 +1,11 @@
|
|||
#
|
||||
# This file is part of LiteX.
|
||||
#
|
||||
# Copyright (c) 2021 Franck Jullien <franck.jullien@collshade.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
# FIXME: Cleanup/Move.
|
||||
|
||||
import os
|
||||
|
||||
from migen import *
|
||||
|
@ -9,15 +17,17 @@ from litex.soc.interconnect import axi
|
|||
|
||||
from litex.build import tools
|
||||
|
||||
# Efinix DDR ---------------------------------------------------------------------------------------
|
||||
|
||||
class EfinixDDR(Module):
|
||||
def __init__(self, platform, config, cd):
|
||||
self.blocks = []
|
||||
self.blocks = []
|
||||
self.platform = platform
|
||||
self.config = config
|
||||
self.config = config
|
||||
self.nb_ports = 1
|
||||
|
||||
if config['ports'] != None:
|
||||
self.nb_ports = self.config['ports']
|
||||
if config["ports"] != None:
|
||||
self.nb_ports = self.config["ports"]
|
||||
|
||||
# TODO: set clock_domain ?
|
||||
self.port0 = port0 = axi.AXIInterface(data_width=256, address_width=32, id_width=8)
|
||||
|
@ -25,32 +35,32 @@ class EfinixDDR(Module):
|
|||
if self.nb_ports == 2:
|
||||
self.port1 = port1 = axi.AXIInterface(data_width=256, address_width=32, id_width=8)
|
||||
|
||||
for i in range (0, self.nb_ports):
|
||||
for i in range(self.nb_ports):
|
||||
ios = [('axi', i,
|
||||
Subsignal('wdata', Pins(256)),
|
||||
Subsignal('wready', Pins(1)),
|
||||
Subsignal('wid', Pins(8)),
|
||||
Subsignal('bready', Pins(1)),
|
||||
Subsignal('rdata', Pins(256)),
|
||||
Subsignal('aid', Pins(8)),
|
||||
Subsignal('bvalid', Pins(1)),
|
||||
Subsignal('rlast', Pins(1)),
|
||||
Subsignal('bid', Pins(8)),
|
||||
Subsignal('asize', Pins(3)),
|
||||
Subsignal('atype', Pins(1)),
|
||||
Subsignal('aburst', Pins(2)),
|
||||
Subsignal('wvalid', Pins(1)),
|
||||
Subsignal('aaddr', Pins(32)),
|
||||
Subsignal('rid', Pins(8)),
|
||||
Subsignal('avalid', Pins(1)),
|
||||
Subsignal('rvalid', Pins(1)),
|
||||
Subsignal('alock', Pins(2)),
|
||||
Subsignal('rready', Pins(1)),
|
||||
Subsignal('rresp', Pins(2)),
|
||||
Subsignal('wstrb', Pins(32)),
|
||||
Subsignal('aready', Pins(1)),
|
||||
Subsignal('alen', Pins(8)),
|
||||
Subsignal('wlast', Pins(1)),
|
||||
Subsignal('wdata', Pins(256)),
|
||||
Subsignal('wready', Pins(1)),
|
||||
Subsignal('wid', Pins(8)),
|
||||
Subsignal('bready', Pins(1)),
|
||||
Subsignal('rdata', Pins(256)),
|
||||
Subsignal('aid', Pins(8)),
|
||||
Subsignal('bvalid', Pins(1)),
|
||||
Subsignal('rlast', Pins(1)),
|
||||
Subsignal('bid', Pins(8)),
|
||||
Subsignal('asize', Pins(3)),
|
||||
Subsignal('atype', Pins(1)),
|
||||
Subsignal('aburst', Pins(2)),
|
||||
Subsignal('wvalid', Pins(1)),
|
||||
Subsignal('aaddr', Pins(32)),
|
||||
Subsignal('rid', Pins(8)),
|
||||
Subsignal('avalid', Pins(1)),
|
||||
Subsignal('rvalid', Pins(1)),
|
||||
Subsignal('alock', Pins(2)),
|
||||
Subsignal('rready', Pins(1)),
|
||||
Subsignal('rresp', Pins(2)),
|
||||
Subsignal('wstrb', Pins(32)),
|
||||
Subsignal('aready', Pins(1)),
|
||||
Subsignal('alen', Pins(8)),
|
||||
Subsignal('wlast', Pins(1)),
|
||||
)]
|
||||
|
||||
io = platform.add_iface_ios(ios)
|
||||
|
@ -60,34 +70,35 @@ class EfinixDDR(Module):
|
|||
port = port1
|
||||
|
||||
is_read = port.ar.valid
|
||||
self.comb += [io.aaddr.eq(Mux(is_read, port.ar.addr, port.aw.addr)),
|
||||
io.aid.eq(Mux(is_read, port.ar.id, port.aw.id)),
|
||||
io.alen.eq(Mux(is_read, port.ar.len, port.aw.len)),
|
||||
io.asize.eq(Mux(is_read, port.ar.size[0:4], port.aw.size[0:4])), #TODO: check
|
||||
io.aburst.eq(Mux(is_read, port.ar.burst, port.aw.burst)),
|
||||
io.alock.eq(Mux(is_read, port.ar.lock, port.aw.lock)),
|
||||
io.avalid.eq(Mux(is_read, port.ar.valid, port.aw.valid)),
|
||||
self.comb += [
|
||||
io.aaddr.eq(Mux(is_read, port.ar.addr, port.aw.addr)),
|
||||
io.aid.eq(Mux(is_read, port.ar.id, port.aw.id)),
|
||||
io.alen.eq(Mux(is_read, port.ar.len, port.aw.len)),
|
||||
io.asize.eq(Mux(is_read, port.ar.size[0:4], port.aw.size[0:4])), #TODO: check
|
||||
io.aburst.eq(Mux(is_read, port.ar.burst, port.aw.burst)),
|
||||
io.alock.eq(Mux(is_read, port.ar.lock, port.aw.lock)),
|
||||
io.avalid.eq(Mux(is_read, port.ar.valid, port.aw.valid)),
|
||||
|
||||
io.atype.eq(~is_read),
|
||||
port.aw.ready.eq(io.aready),
|
||||
port.ar.ready.eq(io.aready),
|
||||
io.atype.eq(~is_read),
|
||||
port.aw.ready.eq(io.aready),
|
||||
port.ar.ready.eq(io.aready),
|
||||
|
||||
io.wid.eq(port.w.id),
|
||||
io.wstrb.eq(port.w.strb),
|
||||
io.wdata.eq(port.w.data),
|
||||
io.wlast.eq(port.w.last),
|
||||
io.wvalid.eq(port.w.valid),
|
||||
port.w.ready.eq(io.wready),
|
||||
io.wid.eq(port.w.id),
|
||||
io.wstrb.eq(port.w.strb),
|
||||
io.wdata.eq(port.w.data),
|
||||
io.wlast.eq(port.w.last),
|
||||
io.wvalid.eq(port.w.valid),
|
||||
port.w.ready.eq(io.wready),
|
||||
|
||||
port.r.id.eq(io.rid),
|
||||
port.r.data.eq(io.rdata),
|
||||
port.r.last.eq(io.rlast),
|
||||
port.r.resp.eq(io.rresp),
|
||||
port.r.valid.eq(io.rvalid),
|
||||
io.rready.eq(port.r.ready),
|
||||
port.r.id.eq(io.rid),
|
||||
port.r.data.eq(io.rdata),
|
||||
port.r.last.eq(io.rlast),
|
||||
port.r.resp.eq(io.rresp),
|
||||
port.r.valid.eq(io.rvalid),
|
||||
io.rready.eq(port.r.ready),
|
||||
|
||||
port.b.id.eq(io.bid),
|
||||
port.b.valid.eq(io.bvalid),
|
||||
io.bready.eq(port.b.ready),
|
||||
# port.b.resp ??
|
||||
port.b.id.eq(io.bid),
|
||||
port.b.valid.eq(io.bvalid),
|
||||
io.bready.eq(port.b.ready),
|
||||
# port.b.resp ??
|
||||
]
|
||||
|
|
|
@ -29,6 +29,8 @@ from litex.build import tools
|
|||
|
||||
from litex.build.efinix import InterfaceWriter
|
||||
|
||||
# FIXME: Avoid duplication with verilog.py.
|
||||
|
||||
_reserved_keywords = {
|
||||
"always", "and", "assign", "automatic", "begin", "buf", "bufif0", "bufif1",
|
||||
"case", "casex", "casez", "cell", "cmos", "config", "deassign", "default",
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
#
|
||||
# This file is part of LiteX.
|
||||
#
|
||||
# Copyright (c) 2021 Franck Jullien <franck.jullien@collshade.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
import os
|
||||
import csv
|
||||
import re
|
||||
|
@ -8,17 +14,20 @@ import xml.etree.ElementTree as et
|
|||
|
||||
from litex.build import tools
|
||||
|
||||
namespaces = { 'efxpt' : 'http://www.efinixinc.com/peri_design_db',
|
||||
'xi' : 'http://www.w3.org/2001/XInclude'
|
||||
namespaces = {
|
||||
"efxpt" : "http://www.efinixinc.com/peri_design_db",
|
||||
"xi" : "http://www.w3.org/2001/XInclude"
|
||||
}
|
||||
|
||||
# Interface Writer --------------------------------------------------------------------------------
|
||||
|
||||
class InterfaceWriter():
|
||||
def __init__(self, efinity_path):
|
||||
self.efinity_path = efinity_path
|
||||
self.blocks = []
|
||||
self.xml_blocks = []
|
||||
self.filename = ''
|
||||
self.platform = None
|
||||
self.blocks = []
|
||||
self.xml_blocks = []
|
||||
self.filename = ''
|
||||
self.platform = None
|
||||
|
||||
def set_build_params(self, platform, build_name):
|
||||
self.filename = build_name
|
||||
|
@ -47,10 +56,10 @@ class InterfaceWriter():
|
|||
def add_ddr_lvds(self, root, params):
|
||||
lvds_info = root.find('efxpt:lvds_info', namespaces)
|
||||
if params['mode'] == 'OUTPUT':
|
||||
dir = 'tx'
|
||||
dir = 'tx'
|
||||
mode = 'out'
|
||||
else:
|
||||
dir = 'rx'
|
||||
dir = 'rx'
|
||||
mode = 'in'
|
||||
|
||||
pad = self.platform.parser.get_gpio_instance_from_pin(params['location'][0])
|
||||
|
@ -64,38 +73,42 @@ class InterfaceWriter():
|
|||
pad = pad.rsplit('_', 1)[0]
|
||||
|
||||
lvds = et.SubElement(lvds_info, 'efxpt:lvds',
|
||||
name = params['name'],
|
||||
lvds_def = pad,
|
||||
ops_type = dir)
|
||||
name = params['name'],
|
||||
lvds_def = pad,
|
||||
ops_type = dir
|
||||
)
|
||||
|
||||
et.SubElement(lvds, 'efxpt:ltx_info', pll_instance = '',
|
||||
fast_clock_name = '{}'.format(params['fast_clk']),
|
||||
slow_clock_name = '{}'.format(params['slow_clk']),
|
||||
reset_name = '',
|
||||
out_bname = '{}'.format(params['name']),
|
||||
oe_name = '',
|
||||
clock_div = '1',
|
||||
mode = '{}'.format(mode),
|
||||
serialization = '{}'.format(params['serialisation']),
|
||||
reduced_swing = 'false',
|
||||
load = '3')
|
||||
et.SubElement(lvds, 'efxpt:ltx_info',
|
||||
pll_instance = '',
|
||||
fast_clock_name = '{}'.format(params['fast_clk']),
|
||||
slow_clock_name = '{}'.format(params['slow_clk']),
|
||||
reset_name = '',
|
||||
out_bname = '{}'.format(params['name']),
|
||||
oe_name = '',
|
||||
clock_div = '1',
|
||||
mode = '{}'.format(mode),
|
||||
serialization = '{}'.format(params['serialisation']),
|
||||
reduced_swing = 'false',
|
||||
load = '3'
|
||||
)
|
||||
|
||||
|
||||
def add_ddr_xml(self, root, params):
|
||||
ddr_info = root.find('efxpt:ddr_info', namespaces)
|
||||
|
||||
ddr = et.SubElement(ddr_info, 'efxpt:ddr',
|
||||
name = 'ddr_inst1',
|
||||
ddr_def = 'DDR_0',
|
||||
cs_preset_id = '173',
|
||||
cs_mem_type = 'LPDDR3',
|
||||
cs_ctrl_width = 'x32',
|
||||
cs_dram_width = 'x32',
|
||||
cs_dram_density = '8G',
|
||||
cs_speedbin = '800',
|
||||
target0_enable = 'true',
|
||||
target1_enable = 'false',
|
||||
ctrl_type = 'none')
|
||||
name = 'ddr_inst1',
|
||||
ddr_def = 'DDR_0',
|
||||
cs_preset_id = '173',
|
||||
cs_mem_type = 'LPDDR3',
|
||||
cs_ctrl_width = 'x32',
|
||||
cs_dram_width = 'x32',
|
||||
cs_dram_density = '8G',
|
||||
cs_speedbin = '800',
|
||||
target0_enable = 'true',
|
||||
target1_enable = 'false',
|
||||
ctrl_type = 'none'
|
||||
)
|
||||
|
||||
axi_suffix = '' # '_1' for second port
|
||||
type_suffix = '_0' # '_1' for second port
|
||||
|
|
|
@ -10,6 +10,8 @@ import subprocess
|
|||
|
||||
from litex.build.generic_programmer import GenericProgrammer
|
||||
|
||||
# EfinixProgrammer ---------------------------------------------------------------------------------
|
||||
|
||||
class EfinixProgrammer(GenericProgrammer):
|
||||
|
||||
def __init__(self, cable_name=""):
|
||||
|
|
|
@ -5,7 +5,9 @@
|
|||
# Copyright (c) 2015-2020 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
# RGMII PHY for 7-Series Xilinx FPGA
|
||||
# RGMII PHY for Efinix FPGAs
|
||||
|
||||
# FIXME: Cleanup/Move.
|
||||
|
||||
from migen import *
|
||||
from migen.genlib.resetsync import AsyncResetSynchronizer
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
# Copyright (c) 2021 Florent Kermarrec <florent@enjoy-digital.fr>
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
# FIXME: Cleanup/Move, integrate in soc.cores.video.
|
||||
|
||||
import os
|
||||
import math
|
||||
|
||||
|
|
Loading…
Reference in New Issue