2016-03-31 05:37:00 -04:00
|
|
|
from litex.gen import *
|
2015-11-13 09:46:08 -05:00
|
|
|
from litex.gen.genlib.io import CRG
|
2015-09-07 05:49:54 -04:00
|
|
|
|
2015-11-11 18:56:49 -05:00
|
|
|
from litex.soc.integration.soc_core import SoCCore
|
2017-04-19 04:46:17 -04:00
|
|
|
from litex.soc.cores.uart import UARTWishboneBridge
|
2015-09-07 05:49:54 -04:00
|
|
|
|
2016-03-31 05:37:00 -04:00
|
|
|
from litescope import LiteScopeIO, LiteScopeAnalyzer
|
|
|
|
|
|
|
|
|
2015-11-11 18:56:49 -05:00
|
|
|
class LiteScopeSoC(SoCCore):
|
2015-09-07 05:49:54 -04:00
|
|
|
csr_map = {
|
2016-03-31 05:37:00 -04:00
|
|
|
"io": 16,
|
|
|
|
"analyzer": 17
|
2015-09-07 05:49:54 -04:00
|
|
|
}
|
2015-11-11 18:56:49 -05:00
|
|
|
csr_map.update(SoCCore.csr_map)
|
2015-09-07 05:49:54 -04:00
|
|
|
|
|
|
|
def __init__(self, platform):
|
|
|
|
clk_freq = int((1/(platform.default_clk_period))*1000000000)
|
2015-11-11 18:56:49 -05:00
|
|
|
SoCCore.__init__(self, platform, clk_freq,
|
|
|
|
cpu_type=None,
|
|
|
|
csr_data_width=32,
|
2015-09-07 05:49:54 -04:00
|
|
|
with_uart=False,
|
2015-11-11 18:56:49 -05:00
|
|
|
ident="Litescope example design",
|
2015-09-07 05:49:54 -04:00
|
|
|
with_timer=False
|
|
|
|
)
|
|
|
|
self.add_cpu_or_bridge(UARTWishboneBridge(platform.request("serial"), clk_freq, baudrate=115200))
|
|
|
|
self.add_wb_master(self.cpu_or_bridge.wishbone)
|
|
|
|
self.submodules.crg = CRG(platform.request(platform.default_clk_name))
|
|
|
|
|
2016-03-31 05:37:00 -04:00
|
|
|
self.submodules.io = LiteScopeIO(8)
|
2015-09-07 05:49:54 -04:00
|
|
|
for i in range(8):
|
|
|
|
try:
|
2016-03-31 05:37:00 -04:00
|
|
|
self.comb += platform.request("user_led", i).eq(self.io.output[i])
|
2015-09-07 05:49:54 -04:00
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2015-11-24 15:13:23 -05:00
|
|
|
counter = Signal(16)
|
|
|
|
self.sync += counter.eq(counter + 1)
|
2016-03-31 05:37:00 -04:00
|
|
|
self.submodules.analyzer = LiteScopeAnalyzer(counter, 512)
|
2015-09-07 05:49:54 -04:00
|
|
|
|
|
|
|
def do_exit(self, vns):
|
2016-03-31 05:37:00 -04:00
|
|
|
self.analyzer.export_csv(vns, "test/analyzer.csv")
|
2015-09-07 05:49:54 -04:00
|
|
|
|
|
|
|
default_subtarget = LiteScopeSoC
|