soc/interconnect/axi: generate wishbone.sel for reads.
This commit is contained in:
parent
4f82a36afd
commit
511832a911
|
@ -365,6 +365,7 @@ class AXILite2Wishbone(Module):
|
||||||
wishbone.stb.eq(1),
|
wishbone.stb.eq(1),
|
||||||
wishbone.cyc.eq(1),
|
wishbone.cyc.eq(1),
|
||||||
wishbone.adr.eq(_r_addr[wishbone_adr_shift:]),
|
wishbone.adr.eq(_r_addr[wishbone_adr_shift:]),
|
||||||
|
wishbone.sel.eq(2**len(wishbone.sel) - 1),
|
||||||
If(wishbone.ack,
|
If(wishbone.ack,
|
||||||
axi_lite.ar.ready.eq(1),
|
axi_lite.ar.ready.eq(1),
|
||||||
NextValue(_data, wishbone.dat_r),
|
NextValue(_data, wishbone.dat_r),
|
||||||
|
|
Loading…
Reference in New Issue