2014-09-20 16:48:53 -04:00
|
|
|
from migen.fhdl.std import *
|
|
|
|
from migen.bus import wishbone
|
2015-03-16 20:07:44 -04:00
|
|
|
from migen.genlib.io import CRG
|
2014-09-20 16:48:53 -04:00
|
|
|
|
2015-02-28 05:36:15 -05:00
|
|
|
from misoclib.soc import SoC, mem_decoder
|
2015-03-06 04:10:58 -05:00
|
|
|
from misoclib.com.liteeth.phy import LiteEthPHY
|
|
|
|
from misoclib.com.liteeth.mac import LiteEthMAC
|
2014-09-20 16:48:53 -04:00
|
|
|
|
2015-03-06 04:10:58 -05:00
|
|
|
class BaseSoC(SoC):
|
2015-02-27 09:28:37 -05:00
|
|
|
def __init__(self, platform, **kwargs):
|
2015-02-28 05:36:15 -05:00
|
|
|
SoC.__init__(self, platform,
|
2015-02-26 06:53:52 -05:00
|
|
|
clk_freq=int((1/(platform.default_clk_period))*1000000000),
|
2015-03-21 15:51:26 -04:00
|
|
|
with_integrated_rom=True,
|
|
|
|
with_integrated_main_ram=True, main_ram_size=16*1024,
|
2015-02-27 09:28:37 -05:00
|
|
|
**kwargs)
|
2015-03-16 20:07:44 -04:00
|
|
|
self.submodules.crg = CRG(platform.request(platform.default_clk_name))
|
2014-09-20 16:48:53 -04:00
|
|
|
|
2015-03-06 04:10:58 -05:00
|
|
|
class MiniSoC(BaseSoC):
|
|
|
|
csr_map = {
|
|
|
|
"ethphy": 20,
|
|
|
|
"ethmac": 21
|
|
|
|
}
|
|
|
|
csr_map.update(BaseSoC.csr_map)
|
|
|
|
|
|
|
|
interrupt_map = {
|
|
|
|
"ethmac": 2,
|
|
|
|
}
|
|
|
|
interrupt_map.update(BaseSoC.interrupt_map)
|
|
|
|
|
|
|
|
mem_map = {
|
|
|
|
"ethmac": 0x30000000, # (shadow @0xb0000000)
|
|
|
|
}
|
|
|
|
mem_map.update(BaseSoC.mem_map)
|
|
|
|
|
|
|
|
def __init__(self, platform, **kwargs):
|
|
|
|
BaseSoC.__init__(self, platform, **kwargs)
|
|
|
|
|
|
|
|
self.submodules.ethphy = LiteEthPHY(platform.request("eth_clocks"), platform.request("eth"))
|
|
|
|
self.submodules.ethmac = LiteEthMAC(phy=self.ethphy, dw=32, interface="wishbone", with_hw_preamble_crc=False)
|
|
|
|
self.add_wb_slave(mem_decoder(self.mem_map["ethmac"]), self.ethmac.bus)
|
|
|
|
self.add_memory_region("ethmac", self.mem_map["ethmac"]+0x80000000, 0x2000)
|
|
|
|
|
|
|
|
default_subtarget = BaseSoC
|