Move more options to config file

This commit is contained in:
Xiretza 2020-02-12 15:09:57 +01:00
parent eea1086654
commit ca9cbd1555
No known key found for this signature in database
GPG Key ID: E51A6C6A1EB378ED
3 changed files with 27 additions and 30 deletions

View File

@ -1,12 +1,12 @@
# This file is Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr> # This file is Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD # License: BSD
{ # PHY ----------------------------------------------------------------------
# PHY ---------------------------------------------------------------------- phy: LiteEthS7PHYRGMII
"phy": "LiteEthS7PHYRGMII", vendor: xilinx
"vendor": "xilinx", # Core ---------------------------------------------------------------------
# Core --------------------------------------------------------------------- clk_freq: 100e6
"core": "udp", core: udp
"mac_address": 0x10e2d5000000, mac_address: 0x10e2d5000000
"ip_address": "192.168.1.50", ip_address: 192.168.1.50
} port: 6000

View File

@ -1,11 +1,10 @@
# This file is Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr> # This file is Copyright (c) 2020 Florent Kermarrec <florent@enjoy-digital.fr>
# License: BSD # License: BSD
{ # PHY ----------------------------------------------------------------------
# PHY ---------------------------------------------------------------------- phy: LiteEthPHYMII
"phy": "LiteEthPHYMII", vendor: xilinx
"vendor": "xilinx", # Core ---------------------------------------------------------------------
# Core --------------------------------------------------------------------- clk_freq: 100e6
"core": "wishbone", core: wishbone
"endianness": "big", endianness: big
}

View File

@ -203,10 +203,10 @@ class MACCore(PHYCore):
"ethmac": 0x50000000 "ethmac": 0x50000000
}) })
def __init__(self, phy, clk_freq, platform, endianness): def __init__(self, platform, core_config):
PHYCore.__init__(self, phy, clk_freq, platform) PHYCore.__init__(self, core_config["phy"], core_config["clk_freq"], platform)
self.submodules.ethmac = LiteEthMAC(phy=self.ethphy, dw=32, interface="wishbone", endianness=endianness) self.submodules.ethmac = LiteEthMAC(phy=self.ethphy, dw=32, interface="wishbone", endianness=core_config["endianness"])
self.add_wb_slave(self.mem_map["ethmac"], self.ethmac.bus) self.add_wb_slave(self.mem_map["ethmac"], self.ethmac.bus)
self.add_memory_region("ethmac", self.mem_map["ethmac"], 0x2000, type="io") self.add_memory_region("ethmac", self.mem_map["ethmac"], 0x2000, type="io")
self.add_csr("ethmac") self.add_csr("ethmac")
@ -225,11 +225,11 @@ class MACCore(PHYCore):
# UDP Core ----------------------------------------------------------------------------------------- # UDP Core -----------------------------------------------------------------------------------------
class UDPCore(PHYCore): class UDPCore(PHYCore):
def __init__(self, phy, clk_freq, mac_address, ip_address, port, platform): def __init__(self, platform, core_config):
PHYCore.__init__(self, phy, clk_freq, platform) PHYCore.__init__(self, core_config["phy"], core_config["clk_freq"], platform)
self.submodules.core = LiteEthUDPIPCore(self.ethphy, mac_address, convert_ip(ip_address), clk_freq) self.submodules.core = LiteEthUDPIPCore(self.ethphy, core_config["mac_address"], convert_ip(core_config["ip_address"]), core_config["clk_freq"])
udp_port = self.core.udp.crossbar.get_port(port, 8) udp_port = self.core.udp.crossbar.get_port(core_config["port"], 8)
# XXX avoid manual connect # XXX avoid manual connect
udp_sink = self.platform.request("udp_sink") udp_sink = self.platform.request("udp_sink")
self.comb += [ self.comb += [
@ -284,6 +284,8 @@ def main():
core_config[k] = replaces[r] core_config[k] = replaces[r]
if k == "phy": if k == "phy":
core_config[k] = getattr(liteeth_phys, core_config[k]) core_config[k] = getattr(liteeth_phys, core_config[k])
if k == "clk_freq":
core_config[k] = int(float(core_config[k]))
# Generate core -------------------------------------------------------------------------------- # Generate core --------------------------------------------------------------------------------
if core_config["vendor"] == "lattice": if core_config["vendor"] == "lattice":
@ -295,13 +297,9 @@ def main():
platform.add_extension(_io) platform.add_extension(_io)
if core_config["core"] == "wishbone": if core_config["core"] == "wishbone":
soc = MACCore(phy=core_config["phy"], clk_freq=int(100e6), platform=platform, endianness=core_config["endianness"]) soc = MACCore(platform, core_config)
elif core_config["core"] == "udp": elif core_config["core"] == "udp":
soc = UDPCore(phy=core_config["phy"], clk_freq=int(100e6), soc = UDPCore(platform, core_config)
mac_address = core_config["mac_address"],
ip_address = core_config["ip_address"],
port = 6000,
platform = platform)
else: else:
raise ValueError("Unknown core: {}".format(core_config["core"])) raise ValueError("Unknown core: {}".format(core_config["core"]))