From: Florent Kermarrec Date: Thu, 12 Oct 2017 09:30:56 +0000 (+0200) Subject: soc/interconnect/stream: don't use reset less on last and first signals (not reseting... X-Git-Tag: 24jan2021_ls180~1801 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=db6c88bbef0bdd64890e38aacf069f1f29d675ee;p=litex.git soc/interconnect/stream: don't use reset less on last and first signals (not reseting these signals can cause troubles in some specific cases) --- diff --git a/litex/soc/interconnect/stream.py b/litex/soc/interconnect/stream.py index 4d8f89dd..4c56b06e 100644 --- a/litex/soc/interconnect/stream.py +++ b/litex/soc/interconnect/stream.py @@ -32,8 +32,8 @@ class EndpointDescription: full_layout = [ ("valid", 1, DIR_M_TO_S), ("ready", 1, DIR_S_TO_M), - ("first", 1, DIR_M_TO_S, True), - ("last", 1, DIR_M_TO_S, True), + ("first", 1, DIR_M_TO_S), + ("last", 1, DIR_M_TO_S), ("payload", _make_m2s(self.payload_layout, True)), ("param", _make_m2s(self.param_layout, True)) ]