2015-02-28 04:24:49 -05:00
|
|
|
from migen.bank.description import *
|
2015-03-17 06:52:54 -04:00
|
|
|
from migen.genlib.io import CRG
|
2015-02-28 04:24:49 -05:00
|
|
|
|
2015-02-28 16:14:02 -05:00
|
|
|
from misoclib.soc import SoC
|
2015-02-28 04:27:16 -05:00
|
|
|
from misoclib.tools.litescope.common import *
|
|
|
|
from misoclib.tools.litescope.bridge.uart2wb import LiteScopeUART2WB
|
|
|
|
from misoclib.tools.litescope.frontend.io import LiteScopeIO
|
|
|
|
from misoclib.tools.litescope.frontend.la import LiteScopeLA
|
|
|
|
from misoclib.tools.litescope.core.port import LiteScopeTerm
|
2015-02-28 04:24:49 -05:00
|
|
|
|
2015-02-28 05:36:15 -05:00
|
|
|
class LiteScopeSoC(SoC, AutoCSR):
|
2015-02-28 04:24:49 -05:00
|
|
|
csr_map = {
|
2015-02-28 16:14:02 -05:00
|
|
|
"io": 16,
|
|
|
|
"la": 17
|
2015-02-28 04:24:49 -05:00
|
|
|
}
|
2015-02-28 05:36:15 -05:00
|
|
|
csr_map.update(SoC.csr_map)
|
2015-02-28 04:24:49 -05:00
|
|
|
def __init__(self, platform):
|
2015-02-28 16:14:02 -05:00
|
|
|
clk_freq = int((1/(platform.default_clk_period))*1000000000)
|
2015-04-01 16:45:57 -04:00
|
|
|
SoC.__init__(self, platform, clk_freq,
|
|
|
|
cpu_type="none",
|
2015-02-28 16:14:02 -05:00
|
|
|
with_csr=True, csr_data_width=32,
|
|
|
|
with_uart=False,
|
|
|
|
with_identifier=True,
|
|
|
|
with_timer=False
|
|
|
|
)
|
2015-04-01 16:45:57 -04:00
|
|
|
self.add_cpu_or_bridge(LiteScopeUART2WB(platform.request("serial"), clk_freq, baudrate=115200))
|
|
|
|
self.add_wb_master(self.cpu_or_bridge.wishbone)
|
2015-03-17 06:52:54 -04:00
|
|
|
self.submodules.crg = CRG(platform.request(platform.default_clk_name))
|
2015-02-28 04:24:49 -05:00
|
|
|
|
|
|
|
self.submodules.io = LiteScopeIO(8)
|
2015-02-28 16:14:02 -05:00
|
|
|
for i in range(8):
|
|
|
|
try:
|
|
|
|
self.comb += platform.request("user_led", i).eq(self.io.o[i])
|
|
|
|
except:
|
|
|
|
pass
|
2015-02-28 04:24:49 -05:00
|
|
|
|
2015-03-01 10:45:50 -05:00
|
|
|
self.submodules.counter0 = counter0 = Counter(8)
|
|
|
|
self.submodules.counter1 = counter1 = Counter(8)
|
2015-02-28 04:24:49 -05:00
|
|
|
self.comb += [
|
|
|
|
counter0.ce.eq(1),
|
|
|
|
If(counter0.value == 16,
|
|
|
|
counter0.reset.eq(1),
|
|
|
|
counter1.ce.eq(1)
|
|
|
|
)
|
|
|
|
]
|
|
|
|
|
|
|
|
self.debug = (
|
|
|
|
counter1.value
|
|
|
|
)
|
|
|
|
self.submodules.la = LiteScopeLA(self.debug, 512, with_rle=True, with_subsampler=True)
|
|
|
|
self.la.trigger.add_port(LiteScopeTerm(self.la.dw))
|
|
|
|
|
|
|
|
def do_exit(self, vns):
|
|
|
|
self.la.export(vns, "test/la.csv")
|
|
|
|
|
|
|
|
default_subtarget = LiteScopeSoC
|