interconnect/axi/axi_lite: Add prot signal.

Not directly used by LiteX but useful for wrapping AXI-Lite RTL code.
This commit is contained in:
Florent Kermarrec 2022-09-08 12:06:35 +02:00
parent 3b714c8145
commit e5de4b356a
1 changed files with 5 additions and 1 deletions

View File

@ -19,7 +19,11 @@ from litex.soc.interconnect.axi.axi_common import *
# AXI-Lite Definition ------------------------------------------------------------------------------
def ax_lite_description(address_width):
return [("addr", address_width)]
return [
("addr", address_width),
("prot", 3), # *
]
# * present for interconnect with others cores but not used by LiteX.
def w_lite_description(data_width):
return [