litex_acorn_baseboard/video: Switch to 800x600@60Hz.

This commit is contained in:
Florent Kermarrec 2021-10-19 16:34:28 +02:00
parent a53f17380f
commit 7525132907
1 changed files with 3 additions and 3 deletions

View File

@ -57,8 +57,8 @@ class _CRG(Module):
video_pll.register_clkin(clk50, 50e6) video_pll.register_clkin(clk50, 50e6)
self.clock_domains.cd_hdmi = ClockDomain() self.clock_domains.cd_hdmi = ClockDomain()
self.clock_domains.cd_hdmi5x = ClockDomain() self.clock_domains.cd_hdmi5x = ClockDomain()
video_pll.create_clkout(self.cd_hdmi, 25e6, margin=0) video_pll.create_clkout(self.cd_hdmi, 40e6, margin=0)
video_pll.create_clkout(self.cd_hdmi5x, 125e6, margin=0) video_pll.create_clkout(self.cd_hdmi5x, 200e6, margin=0)
# BaseSoC ------------------------------------------------------------------------------------------ # BaseSoC ------------------------------------------------------------------------------------------
@ -101,7 +101,7 @@ class BaseSoC(SoCCore):
# Video ------------------------------------------------------------------------------------ # Video ------------------------------------------------------------------------------------
if with_video_terminal: if with_video_terminal:
self.submodules.videophy = VideoHDMIPHY(platform.request("hdmi"), clock_domain="hdmi", pn_swap=["g", "b"]) self.submodules.videophy = VideoHDMIPHY(platform.request("hdmi"), clock_domain="hdmi", pn_swap=["g", "b"])
self.add_video_terminal(phy=self.videophy, timings="640x480@75Hz", clock_domain="hdmi") self.add_video_terminal(phy=self.videophy, timings="800x600@60Hz", clock_domain="hdmi")
# LCD -------------------------------------------------------------------------------------- # LCD --------------------------------------------------------------------------------------
if with_lcd: if with_lcd: