Hi,
I now have my Dell 1600x1200@60hz monitor working with my Rock64 , I've not done a lot of testing and I know there is already an issue when I use my KVM switch to move to my PC, when I move back the display dose not work. Also I've only tested in command line mode and not in a desktop mode, but it's a step in the right direction.
I found this http://wiki.radxa.com/Rock/Hdmi_Resolution witch pointed me in the right direction
How to:
edit the source file linux-kernel-release-4.4/drivers/video/rockchip/rockchip-hdmi-lcdc.c and create a new hdmi_video_timing entry at the bottom of the existing list
Then edit linux-kernel-release-4.4/drivers/video/rockchip/rockchip-hdmi.h to set the display mode as default. not tested without this yet...
Will post again once I've done some more testing....
I now have my Dell 1600x1200@60hz monitor working with my Rock64 , I've not done a lot of testing and I know there is already an issue when I use my KVM switch to move to my PC, when I move back the display dose not work. Also I've only tested in command line mode and not in a desktop mode, but it's a step in the right direction.
I found this http://wiki.radxa.com/Rock/Hdmi_Resolution witch pointed me in the right direction
How to:
edit the source file linux-kernel-release-4.4/drivers/video/rockchip/rockchip-hdmi-lcdc.c and create a new hdmi_video_timing entry at the bottom of the existing list
Code:
{
/* Dell 2700FP */
.mode = {
.name = "1600x1200@60Hz",
.refresh = 60,
.xres = 1600,
.yres = 1200,
.pixclock = 162000000,
.left_margin = 64,
.right_margin = 80,
.upper_margin = 50,
.lower_margin = 6,
.hsync_len = 20,
.vsync_len = 8,
.sync = 0,
.vmode = 0,
.flag = 0,
},
.vic = HDMI_VIDEO_DMT | 11, //512 | 11 = 523 remember this for defaulting the screen res
.vic_2nd = 0,
.pixelrepeat = 1,
.interface = OUT_P888,
},
Then edit linux-kernel-release-4.4/drivers/video/rockchip/rockchip-hdmi.h to set the display mode as default. not tested without this yet...
Code:
//#define HDMI_VIDEO_DEFAULT_MODE HDMI_1280X720P_60HZ
#define HDMI_VIDEO_DEFAULT_MODE 523 //1600x1200@60hz
Will post again once I've done some more testing....