On Monday, 23 March 2026 15:38:58 Central European Standard Time Michel Dänzer wrote: > On 3/23/26 13:05, Nicolas Frattaroli wrote: > > On Monday, 23 March 2026 11:55:34 Central European Standard Time Michel > > Dänzer wrote: > >> On 3/20/26 19:02, Nicolas Frattaroli wrote: > >>> On Friday, 20 March 2026 15:32:37 Central European Standard Time Michel > >>> Dänzer wrote: > >>>> On 3/19/26 13:28, Nicolas Frattaroli wrote: > >>>>> This series adds a new "link bpc" DRM property. It reflects the display > >>>>> link's actual achieved output bits per component, considering any > >>>>> degradation of the bit depth done by drivers for bandwidth or other > >>>>> reasons. The property's value is updated during an atomic commit, which > >>>>> is also when it fires an uevent if it changed to let userspace know. > >>>>> > >>>>> There's a weston implementation at [1] which makes use of this new > >>>>> property to warn when a user's requested bpc could not be reached. > >>>>> > >>>>> [1]: https://gitlab.freedesktop.org/wayland/weston/-/merge_requests/1850 > >>>> > >>>> I see no description of a real-world use case, either in this series > >>>> or in the weston MR, beyond logging a message when the "link bpc" & > >>>> "max bpc" property values don't match. They are not expected to match > >>>> in general, so I have a hard time seeing the usefulness of that. > >>> > >>> Hello, > >>> > >>> these are valid concerns. The problem being addressed is related to > >>> userspace being able to detect whether the link has degraded due to, > >>> say, a sketchy cable. > >>> > >>> This patch started out as a method of forcing the output link's BPC > >>> value to a certain value, but this is not desirable. The max bpc > >>> property is already used to restrict the link's bpc due to sketchy > >>> hardware that advertises a higher max bpc than it can actually > >>> achieve. > >> > >> Not really. > >> > >> The "max bpc" property is simply an upper limit for the effective bpc that > >> can be used by the driver; nothing more or less. The driver is free to use > >> any lower bpc value though, that doesn't mean anything's wrong. > >> > >> It doesn't imply that the "max bpc" value can actually be achieved under > >> any circumstances. > >> > >> The practical purpose is mainly to restrict bpc in cases where higher bpc > >> would prevent e.g. higher refresh rate. > > > > The max bpc property's upper limit is an arbitrary driver-set value as > > you stated, but that's not what I'm talking about here. > > I'm not talking about the maximum value of the property itself either. > > The value of the "max bpc" property, which can be modified by user space, > defines the upper limit for the effective bpc used by the driver.
Yes, I know what the max bpc property does. I do not think it defines a fixed bpc the driver was required to use, as if it did, the link bpc property would be useless. > >>> I agree that the weston implementation isn't a great showcase, > >>> but it's actually supposed to compare link bpc with an explicitly > >>> set max bpc config value, not the property value. The config value > >>> exists to request a certain bpc. > >> > >> Per above, the "max bpc" property isn't really useful for that. > > > > This is straight up false. Setting a max bpc value in weston's config > > sets the max bpc DRM property to that value, which in turn sets > > max_requested_bpc. On atomic_check, the minimum of state->max_bpc > > and state->max_requested_bpc is taken for the new value of > > state->max_bpc, i.e. what is set through the property does constrain > > the max bpc. > > What I mean is that the "max bpc" property isn't useful for the purpose of > "request a certain bpc". Yes it is? It requests an upper limit for BPC and every driver will try to pick the highest that's practically possible. > It only affects the upper limit, not the effective value, which can > legitimately be lower. I am aware, that is why the link bpc property is added, to evaluate what the driver ended up picking. See "practically possible" above. > Logging a message in that case may be a false positive which may result in a > spurious issue report. That is not what any of this is used for. In the MR, it acts on the weston option of the name max-bpc, which incidentally sets the max bpc property, but is an explicit request by a user made through a config file. The use here is just a basic userspace use of it, the point is not to create a new warning out of nothing for the fun of it. The whole point of this property is to close the feedback loop between requesting a new bpc with max-bpc and seeing what comes out the other end with link-bpc. This answers all questions you should have about the definition of what bits per component is (same as with max bpc), and why this property should exist. "Someone might not understand its purpose" is, in my eyes, not a valid reason to not have this property, as this argument applies to every property.
