Which feature would you like to have?
drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c L2489
if ((hdmi->colordepth > 8 || hdmi->colordepth == 0) && support_dc)
color_depth = 10;
else
color_depth = 8;
Auto default to 10 bit color for supported displays. Defaulting to 8bit kills ability to playback HDR content on wayland hard locking without .dtb modifications
colordepth values enum (0 Automatic, 8 8 bit, 10 10 bit)
0>8 therefore defaults to 8bit color (defaults to min)
Funding
Which feature would you like to have?
drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c L2489
Auto default to 10 bit color for supported displays. Defaulting to 8bit kills ability to playback HDR content on wayland hard locking without .dtb modifications
colordepth values enum (0 Automatic, 8 8 bit, 10 10 bit)
0>8 therefore defaults to 8bit color (defaults to min)
Funding