integration/soc/add_video_framebuffer: Modify default framebuffer base address.

This commit is contained in:
Florent Kermarrec 2021-03-29 10:59:32 +02:00
parent bf999cfeac
commit 99a26fc710
1 changed files with 1 additions and 1 deletions

View File

@ -1711,7 +1711,7 @@ class LiteXSoC(SoC):
setattr(self.submodules, f"{name}_vtg", vtg)
# Video FrameBuffer.
base = self.mem_map.get(name, 0x48000000)
base = self.mem_map.get(name, 0x40c00000)
hres = int(timings.split("@")[0].split("x")[0])
vres = int(timings.split("@")[0].split("x")[1])
vfb = VideoFrameBuffer(self.sdram.crossbar.get_port(),