2013-11-24 07:37:32 -05:00
|
|
|
import os
|
2012-02-16 12:02:37 -05:00
|
|
|
from fractions import Fraction
|
|
|
|
|
2013-05-22 11:10:13 -04:00
|
|
|
from migen.fhdl.std import *
|
2013-07-04 13:19:39 -04:00
|
|
|
from mibuild.generic_platform import ConstraintError
|
2011-12-16 10:02:49 -05:00
|
|
|
|
2014-11-26 04:37:50 -05:00
|
|
|
from misoclib import sdram, mxcrg, norflash16, minimac3, framebuffer, gpio
|
|
|
|
from misoclib.sdram.phy import s6ddrphy
|
2013-11-24 04:30:02 -05:00
|
|
|
from misoclib.gensoc import SDRAMSoC
|
2014-11-20 21:01:48 -05:00
|
|
|
from misoclib.ethmac.phy import mii
|
2011-12-13 11:33:12 -05:00
|
|
|
|
2013-11-24 04:30:02 -05:00
|
|
|
class _MXClockPads:
|
2013-03-26 12:57:17 -04:00
|
|
|
def __init__(self, platform):
|
|
|
|
self.clk50 = platform.request("clk50")
|
2013-07-04 13:19:39 -04:00
|
|
|
self.trigger_reset = 0
|
|
|
|
try:
|
|
|
|
self.trigger_reset = platform.request("user_btn", 1)
|
|
|
|
except ConstraintError:
|
|
|
|
pass
|
2013-03-26 12:57:17 -04:00
|
|
|
self.norflash_rst_n = platform.request("norflash_rst_n")
|
|
|
|
ddram_clock = platform.request("ddram_clock")
|
|
|
|
self.ddr_clk_p = ddram_clock.p
|
|
|
|
self.ddr_clk_n = ddram_clock.n
|
2012-05-16 19:41:41 -04:00
|
|
|
|
2014-08-03 00:30:15 -04:00
|
|
|
class BaseSoC(SDRAMSoC):
|
2014-02-16 08:51:52 -05:00
|
|
|
default_platform = "mixxeo" # also supports m1
|
|
|
|
|
2014-05-14 09:02:07 -04:00
|
|
|
def __init__(self, platform, **kwargs):
|
2013-11-24 04:30:02 -05:00
|
|
|
SDRAMSoC.__init__(self, platform,
|
|
|
|
clk_freq=(83 + Fraction(1, 3))*1000000,
|
2013-11-24 13:50:17 -05:00
|
|
|
cpu_reset_address=0x00180000,
|
2014-05-14 04:24:56 -04:00
|
|
|
**kwargs)
|
2013-07-17 07:58:58 -04:00
|
|
|
|
2014-11-26 04:37:50 -05:00
|
|
|
sdram_geom = sdram.GeomSettings(
|
2013-11-24 04:30:02 -05:00
|
|
|
bank_a=2,
|
|
|
|
row_a=13,
|
|
|
|
col_a=10
|
|
|
|
)
|
2014-11-26 04:37:50 -05:00
|
|
|
sdram_timing = sdram.TimingSettings(
|
2013-11-24 04:30:02 -05:00
|
|
|
tRP=self.ns(15),
|
|
|
|
tRCD=self.ns(15),
|
|
|
|
tWR=self.ns(15),
|
|
|
|
tWTR=2,
|
|
|
|
tREFI=self.ns(7800, False),
|
|
|
|
tRFC=self.ns(70),
|
2013-07-17 07:58:58 -04:00
|
|
|
|
2013-11-24 04:30:02 -05:00
|
|
|
req_queue_size=8,
|
|
|
|
read_time=32,
|
|
|
|
write_time=16
|
|
|
|
)
|
|
|
|
self.submodules.ddrphy = s6ddrphy.S6DDRPHY(platform.request("ddram"), memtype="DDR",
|
2014-05-14 10:08:40 -04:00
|
|
|
rd_bitslip=0, wr_bitslip=3, dqs_ddr_alignment="C1")
|
2013-11-24 14:16:19 -05:00
|
|
|
self.register_sdram_phy(self.ddrphy.dfi, self.ddrphy.phy_settings, sdram_geom, sdram_timing)
|
2012-02-17 17:50:10 -05:00
|
|
|
|
2013-11-30 14:37:56 -05:00
|
|
|
self.submodules.norflash = norflash16.NorFlash16(platform.request("norflash"),
|
|
|
|
self.ns(110), self.ns(50))
|
2014-02-21 11:55:05 -05:00
|
|
|
self.flash_boot_address = 0x001a0000
|
2013-11-24 14:16:19 -05:00
|
|
|
self.register_rom(self.norflash.bus)
|
2014-02-21 11:55:05 -05:00
|
|
|
|
2013-11-24 04:30:02 -05:00
|
|
|
self.submodules.crg = mxcrg.MXCRG(_MXClockPads(platform), self.clk_freq)
|
2013-03-10 14:32:38 -04:00
|
|
|
self.comb += [
|
2013-02-11 12:23:06 -05:00
|
|
|
self.ddrphy.clk4x_wr_strb.eq(self.crg.clk4x_wr_strb),
|
|
|
|
self.ddrphy.clk4x_rd_strb.eq(self.crg.clk4x_rd_strb)
|
|
|
|
]
|
2013-11-24 07:37:32 -05:00
|
|
|
platform.add_platform_command("""
|
|
|
|
INST "mxcrg/wr_bufpll" LOC = "BUFPLL_X0Y2";
|
|
|
|
INST "mxcrg/rd_bufpll" LOC = "BUFPLL_X0Y3";
|
|
|
|
|
|
|
|
PIN "mxcrg/bufg_x1.O" CLOCK_DEDICATED_ROUTE = FALSE;
|
|
|
|
""")
|
2014-08-03 00:30:15 -04:00
|
|
|
platform.add_source_dir(os.path.join("verilog", "mxcrg"))
|
|
|
|
|
|
|
|
class MiniSoC(BaseSoC):
|
|
|
|
csr_map = {
|
2014-11-20 19:47:11 -05:00
|
|
|
"ethphy": 10,
|
|
|
|
"ethmac": 11,
|
2014-08-03 00:30:15 -04:00
|
|
|
}
|
|
|
|
csr_map.update(BaseSoC.csr_map)
|
|
|
|
|
|
|
|
interrupt_map = {
|
2014-11-20 19:47:11 -05:00
|
|
|
"ethmac": 2,
|
2014-08-03 00:30:15 -04:00
|
|
|
}
|
|
|
|
interrupt_map.update(BaseSoC.interrupt_map)
|
|
|
|
|
|
|
|
def __init__(self, platform, **kwargs):
|
|
|
|
BaseSoC.__init__(self, platform, **kwargs)
|
|
|
|
|
|
|
|
if platform.name == "mixxeo":
|
|
|
|
self.submodules.leds = gpio.GPIOOut(platform.request("user_led"))
|
|
|
|
if platform.name == "m1":
|
|
|
|
self.submodules.buttons = gpio.GPIOIn(Cat(platform.request("user_btn", 0), platform.request("user_btn", 2)))
|
|
|
|
self.submodules.leds = gpio.GPIOOut(Cat(platform.request("user_led", i) for i in range(2)))
|
2013-11-24 07:37:32 -05:00
|
|
|
|
2014-11-20 19:47:11 -05:00
|
|
|
self.submodules.ethphy = mii.MIIPHY(platform.request("eth_clocks"), platform.request("eth"))
|
|
|
|
self.submodules.ethmac = ethmac.EthMAC(phy=self.ethphy, with_hw_preamble_crc=False)
|
|
|
|
self.add_wb_slave(lambda a: a[26:29] == 3, self.ethmac.bus)
|
|
|
|
self.add_cpu_memory_region("ethmac_mem", 0xb0000000, 0x2000)
|
2014-08-03 00:30:15 -04:00
|
|
|
|
|
|
|
def get_vga_dvi(platform):
|
2013-11-24 04:30:02 -05:00
|
|
|
try:
|
|
|
|
pads_vga = platform.request("vga_out")
|
|
|
|
except ConstraintError:
|
|
|
|
pads_vga = None
|
|
|
|
try:
|
|
|
|
pads_dvi = platform.request("dvi_out")
|
|
|
|
except ConstraintError:
|
|
|
|
pads_dvi = None
|
2013-11-24 07:37:32 -05:00
|
|
|
else:
|
|
|
|
platform.add_platform_command("""
|
|
|
|
PIN "dviout_pix_bufg.O" CLOCK_DEDICATED_ROUTE = FALSE;
|
|
|
|
""")
|
2013-11-24 04:30:02 -05:00
|
|
|
return pads_vga, pads_dvi
|
|
|
|
|
2014-08-03 00:30:15 -04:00
|
|
|
def add_vga_tig(platform, fb):
|
2013-11-24 07:37:32 -05:00
|
|
|
platform.add_platform_command("""
|
|
|
|
NET "{vga_clk}" TNM_NET = "GRPvga_clk";
|
|
|
|
NET "sys_clk" TNM_NET = "GRPsys_clk";
|
|
|
|
TIMESPEC "TSise_sucks1" = FROM "GRPvga_clk" TO "GRPsys_clk" TIG;
|
|
|
|
TIMESPEC "TSise_sucks2" = FROM "GRPsys_clk" TO "GRPvga_clk" TIG;
|
|
|
|
""", vga_clk=fb.driver.clocking.cd_pix.clk)
|
|
|
|
|
2013-11-24 04:30:02 -05:00
|
|
|
class FramebufferSoC(MiniSoC):
|
2014-08-03 00:30:15 -04:00
|
|
|
csr_map = {
|
|
|
|
"fb": 11,
|
|
|
|
}
|
|
|
|
csr_map.update(MiniSoC.csr_map)
|
|
|
|
|
2014-05-14 09:02:07 -04:00
|
|
|
def __init__(self, platform, **kwargs):
|
|
|
|
MiniSoC.__init__(self, platform, **kwargs)
|
2014-08-03 00:30:15 -04:00
|
|
|
pads_vga, pads_dvi = get_vga_dvi(platform)
|
2013-11-24 04:30:02 -05:00
|
|
|
self.submodules.fb = framebuffer.Framebuffer(pads_vga, pads_dvi, self.lasmixbar.get_master())
|
2014-08-03 00:30:15 -04:00
|
|
|
add_vga_tig(platform, self.fb)
|
2013-11-24 04:30:02 -05:00
|
|
|
|
2014-08-03 00:30:15 -04:00
|
|
|
default_subtarget = FramebufferSoC
|