integration/soc/add_video_framebuffer: Modify default framebuffer base address.
This commit is contained in:
parent
bf999cfeac
commit
99a26fc710
|
@ -1711,7 +1711,7 @@ class LiteXSoC(SoC):
|
||||||
setattr(self.submodules, f"{name}_vtg", vtg)
|
setattr(self.submodules, f"{name}_vtg", vtg)
|
||||||
|
|
||||||
# Video FrameBuffer.
|
# Video FrameBuffer.
|
||||||
base = self.mem_map.get(name, 0x48000000)
|
base = self.mem_map.get(name, 0x40c00000)
|
||||||
hres = int(timings.split("@")[0].split("x")[0])
|
hres = int(timings.split("@")[0].split("x")[0])
|
||||||
vres = int(timings.split("@")[0].split("x")[1])
|
vres = int(timings.split("@")[0].split("x")[1])
|
||||||
vfb = VideoFrameBuffer(self.sdram.crossbar.get_port(),
|
vfb = VideoFrameBuffer(self.sdram.crossbar.get_port(),
|
||||||
|
|
Loading…
Reference in New Issue