Hello
I have IMX6 module plugged into the custom board which has HDMI output to monitor and LVDS display
I am trying to get both displays simultaneously using following reference Display Output, Resolution and Timings (Linux) | Toradex Developer Center
Setting UBoot commands can activate either of panels in my case e.g.
LVDS display
setenv vidargs 'video=mxcfb0:dev=ldb,if=RGB24 fbmem=32M'
HDMI Display
setenv vidargs ‘mxc_hdmi.only_cea=1 video=mxcfb1:dev=hdmi,1920x1080M@60,if=RGB24 video=mxcfb0:off video=mxcfb2:off video=mxcfb3:off fbmem=32M’
But when I try to pass display arguments in UBoot for both displays (below command), I can see display on LVDS and black display on HDMI monitor. Please help me out. Thanks
setenv vidargs 'video=mxcfb0:dev=ldb,if=RGB24 mxc_hdmi.only_cea=1 video=mxcfb1:dev=hdmi,1920x1080M@60,if=RGB24 video=mxcfb2:off video=mxcfb3:off fbmem=32M' && saveenv && bootd
corresponding xrandr
command output
root@apalis-imx6:~# xrandr
Screen 0: minimum 240 x 240, current 1280 x 800, maximum 8192 x 8192
DISP4 BG - DI1 connected primary 1280x800+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
U:1280x800p-59 60.00*+
U:1920x1080p-59 59.94
U:1024x768p-60 60.01
U:800x600p-86 86.08
root@apalis-imx6:~#
Yocto version is thud (2.6.4)
root@apalis-imx6:~# uname -a
Linux apalis-imx6 4.14.170-3.0.4+gbaa6c24240a4 #1 SMP Thu Jul 11 11:39:01 UTC 2024 armv7l armv7l armv7l GNU/Linux
DTS file is also attached which we use for our custom board. It has been patched with custom changes as compared to standard eval board dts file
imx6q-apalis-ixora-v1.1.dts (8.6 KB)