GeneratriX wrote:
BTW: anyone knows if it is possible 1920x1080 @ 60 Hz for Octane / MardiGras stuff?
Depending on your monitor it might prove to be a tight fit. You might also want to obtain EDID info for your monitor - it might prove to be helpful.
The maximum pixel clock for MGRAS graphics is 160MHz. I tried to create a 1920x1080_60 MGRAS format using the VFC block sync script with the MGRAS chip and board definition files. The default timing used by VFC at 1920x1080_60 exceeded the MGRAS 160MHz pixel clock ceiling and produced a "no format created" error:
Code:
ERROR: Pixel Clock too fast. Maximum allowed pixel clock is 160MHz.
Not knowing anything specific about your monitor, I used
CVT
to generate a generic 1920x1080_60 modeline with VESA standard timing (likely very similar to what the VFC Block Sync tool produces). That resulted a too-high-for-MGRAS pixel clock of 173MHz:
Code:
cvt 1920 1080 60
# 1920x1080 @ 60.00 Hz (CVT)
# field rate 59.96 Hz; hsync: 67.16 kHz; pclk: 173.00 MHz
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -HSync +Vsync
If all else fails,
and *if* your monitor will support a format with reduced blanking
, you may still be able to get around the 160MHz pixel clock limitation by creating a format with reduced blanking. Here's another 1920x1080_60 CVT modeline, asking for reduced blanking lowers the pixel clock to 138.5MHz:
Code:
cvt 1920 1080 60 -r
# 1920x1080 @ 60.00 Hz Reduced Blank (CVT)
# field rate 59.93 Hz; hsync: 66.59 kHz; pclk: 138.50 MHz
Modeline "1920x1080_60.00_rb" 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +HSync -Vsync
VFOs with reduced blanking haven't always been successful, so perhaps the EDID info will show that right out of the box your monitor uses a pixel clock lower than 160MHz at 1920x1080_60.