From 47c19933fa8b184eb96b7ace75f2b556f988d432 Mon Sep 17 00:00:00 2001 From: Raptor Engineering Development Team Date: Mon, 7 Jun 2021 14:25:24 -0500 Subject: [PATCH] Add 1920x1200@60 RBv2 to LiteX video modes Tested on Raptor Sparrowhawk --- litex/soc/cores/video.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/litex/soc/cores/video.py b/litex/soc/cores/video.py index 202bff480..d5e8db2bf 100644 --- a/litex/soc/cores/video.py +++ b/litex/soc/cores/video.py @@ -123,6 +123,17 @@ video_timings = { "v_sync_offset" : 4, "v_sync_width" : 5, }, + "1920x1200@60Hz": { + "pix_clk" : 148.2e6, + "h_active" : 1920, + "h_blanking" : 80, + "h_sync_offset" : 8, + "h_sync_width" : 32, + "v_active" : 1200, + "v_blanking" : 35, + "v_sync_offset" : 21, + "v_sync_width" : 8, + }, } # Video Timing Generator ---------------------------------------------------------------------------