Hi, On 4/26/22 19:55, Ville Syrjälä wrote: > On Tue, Apr 26, 2022 at 11:35:02AM +0300, Pekka Paalanen wrote: >> Hi all, >> >> I'm working on setting HDR & WCG video modes in Weston, and I thought >> setting "max bpc" KMS property on the connector would be a good idea. >> I'm confused about how it works though. >> >> I did some digging in https://gitlab.freedesktop.org/wayland/weston/-/issues/612 >> >> Summary: >> >> - Apparently the property was originally added as a manual workaround >> for sink hardware behaving badly with high depth. A simple end user >> setting for "max bpc" would suffice for this use. >> >> - Drivers will sometimes automatically choose a lower bpc than the "max >> bpc" value, but never bigger. >> >> - amdgpu seems to (did?) default "max bpc" to 8, meaning that I >> definitely want to raise it. > > I've occasionally pondered about doing the same for i915, just to have > the safest default possible. But I'd hate to lose the deep color testing > coverage knowing very few people would in practice raise the limit. > Also the number of systems where deep color doesn't work reliably > (or can't be made to work by not using a crap cable) seems to be quite > low. I got pointed to this thread by Jonas Ådahl while asking some questions the "max bpc" property related to: https://gitlab.freedesktop.org/plymouth/plymouth/-/issues/102#note_1382328 The current i915 behavior which you describe here, which if I understand things correctly is for "max bpc" to default to as high as possible is causing problems with flickerfree boot in plymouth. Plymouth does a modeset on the monitor's native resolution in case the BIOS/GOP setup the monitor in a non native mode. Plymouth does not touch the "max bpc" property when doing this modeset. Normally this works fine and when the BIOS/GOP has already configured the monitor at the native resolution the i915 driver will do a fastset and all is well. Still the modeset is causing the screen to go black for multiple seconds, despite the resolution being unchanged. What is happening according to the on screen mode info from the monitor is that on plymouth's modeset the link is being configured changes from 8 bpc to 10 bpc. Is there anyway to avoid this without hardcoding "max bpc" to 8 in plymouth (which would cause the same problem in the other direction if the firmware sets up the link for 10bpc I believe) ? Regards, Hans