From ef18fa4c6d1797596effc476099e032e7754eef2 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 15 Feb 2021 19:56:59 +0800 Subject: [PATCH] kasli_soc: add RTIO log channel --- src/gateware/kasli_soc.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gateware/kasli_soc.py b/src/gateware/kasli_soc.py index ac21a454..245ff5e9 100755 --- a/src/gateware/kasli_soc.py +++ b/src/gateware/kasli_soc.py @@ -120,6 +120,8 @@ class GenericStandalone(SoCCore): if has_grabber: self.grabber_csr_group = [] eem_7series.add_peripherals(self, description["peripherals"], iostandard=eem_iostandard) + self.config["RTIO_LOG_CHANNEL"] = len(self.rtio_channels) + self.rtio_channels.append(rtio.LogChannel()) self.submodules.rtio_tsc = rtio.TSC("async", glbl_fine_ts_width=3) self.submodules.rtio_core = rtio.Core(self.rtio_tsc, self.rtio_channels)