soc/interconnect/axi: fix valid signal in connect_to_pads for axi lite

This commit is contained in:
Ilia Sergachev 2021-06-28 11:50:45 +02:00
parent 4d959bbc81
commit 65babd6500
1 changed files with 4 additions and 4 deletions

View File

@ -92,10 +92,10 @@ def connect_to_pads(bus, pads, mode="master", axi_full=False):
}
for channel, mode in channel_modes.items():
ch = getattr(bus, channel)
for name, width in (
[("valid", 1)] +
[("last", 1)] if (ch in ["w", "r"] and axi_full) else [] +
ch.description.payload_layout):
sig_list = [("valid", 1)] + ch.description.payload_layout
if ch in ["w", "r"] and axi_full:
sig_list += [("last", 1)]
for name, width in sig_list:
sig = getattr(ch, name)
pad = getattr(pads, channel + name)
if mode == "master":