It is normal for us to separately light up the HDMI interface connected to the monitor and the MIPI interface connected to the 10.1-inch screen, where HDMI is forced output. Only when using a dual screen device tree will exceptions occur; The kernel version we are using is 4.14.98. Here are our mipi and HDMI resolutions:
Mipi resolution:
display-timings {
timing {
/* Pixel CLK: 68.43MHz; MIPI CLK: 450MHz */
/* Hsync: 77.76KHz; Vsync: 60Hz */
clock-frequency = <100000000>; /* 132000000 */
hactive = <1200>;
hback-porch = <60>; /* 48 */
hfront-porch = <80>; /* 16 */
hsync-len = <1>; /* 16 */
vactive = <1920>;
vback-porch = <25>;
vfront-porch = <35>;
vsync-len = <1>;
hsync-active = <0>;
vsync-active = <0>;
de-active = <0>;
pixelclk-active = <0>;
};
};
HDMI resolution:
/* 97 - 3840x2160@60Hz */
{ DRM_MODE("3840x2160", DRM_MODE_TYPE_DRIVER, 594000,
3840, 4016, 4104, 4400, 0,
2160, 2168, 2178, 2250, 0,
DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC),
.vrefresh = 60, .picture_aspect_ratio = HDMI_PICTURE_ASPECT_16_9, },
Please help analyze it again! thank!