]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
drm/bridge: dw-hdmi: add max bpc connector property
authorJonas Karlman <jonas@kwiboo.se>
Wed, 4 Mar 2020 10:40:43 +0000 (11:40 +0100)
committerNeil Armstrong <narmstrong@baylibre.com>
Tue, 10 Mar 2020 09:51:24 +0000 (10:51 +0100)
Add the max_bpc property to the dw-hdmi connector to prepare support
for 10, 12 & 16bit output support.

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jernej Škrabec <jernej.skrabec@siol.net>
Link: https://patchwork.freedesktop.org/patch/msgid/20200304104052.17196-3-narmstrong@baylibre.com
drivers/gpu/drm/bridge/synopsys/dw-hdmi.c

index 10f98c9ee77e4c48f62b67fa2a1e02687edc9b4f..e097f60e643121ca153596125453e5a7e0e07fa2 100644 (file)
@@ -2414,6 +2414,14 @@ static int dw_hdmi_bridge_attach(struct drm_bridge *bridge,
                                    DRM_MODE_CONNECTOR_HDMIA,
                                    hdmi->ddc);
 
+       /*
+        * drm_connector_attach_max_bpc_property() requires the
+        * connector to have a state.
+        */
+       drm_atomic_helper_connector_reset(connector);
+
+       drm_connector_attach_max_bpc_property(connector, 8, 16);
+
        if (hdmi->version >= 0x200a && hdmi->plat_data->use_drm_infoframe)
                drm_object_attach_property(&connector->base,
                        connector->dev->mode_config.hdr_output_metadata_property, 0);