Merge pull request #1526 from gsomlo/gls-mem-axi-width-warn

integration/soc: Warn on MemBus <-> LiteDRAM AXI width conversion
This commit is contained in:
enjoy-digital 2022-12-03 21:58:54 +01:00 committed by GitHub
commit 85f762cd1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -1529,6 +1529,10 @@ class LiteXSoC(SoC):
# Check if bus is an AXI bus and connect it.
if isinstance(mem_bus, axi.AXIInterface):
data_width_ratio = int(port.data_width/mem_bus.data_width)
if data_width_ratio != 1:
self.logger.warning("Converting MemBus({}) data width to LiteDRAM({}).".format(
colorer(mem_bus.data_width, color="yellow"),
colorer(port.data_width, color="yellow")))
# If same data_width, connect it directly.
if data_width_ratio == 1:
self.submodules += LiteDRAMAXI2Native(