Skip to content

Commit b139557

Browse files
AngeloGioacchino Del RegnoChun-Kuang Hu
authored andcommitted
drm/mediatek: mtk_hdmi_common: Add OP_HDMI if helper funcs assigned
In preparation for adding the HDMI TX v2 driver, and to allow a future modernization of the HDMI v1 one, perform changes that enable the usage of the HDMI Helpers provided by DRM. Check if the HDMI driver provides the function pointers to hdmi_{clear,write}_infoframe used by the HDMI Helper API and, if present, add DRM_BRIDGE_OP_HDMI to the drm_bridge ops, enabling the drm API to register the bridge as HDMI and to use the HDMI Helper functions. If the hdmi_{write,clear}_infoframe pointers are not assigned, vendor and product strings and HDMI helpers will not be used, hence this commit brings no functional changes to drivers that have not been refactored to use the new helpers. This also means that, in the current state, there is effectively no functional change to mtk_hdmi and its other components. Reviewed-by: CK Hu <ck.hu@mediatek.com> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com> Signed-off-by: Louis-Alexis Eyraud <louisalexis.eyraud@collabora.com> Link: https://patchwork.kernel.org/project/linux-mediatek/patch/20251023-mediatek-drm-hdmi-v2-v11-7-7873ec4a1edf@collabora.com/ Signed-off-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>
1 parent 06e2d1d commit b139557

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

drivers/gpu/drm/mediatek/mtk_hdmi_common.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,10 @@ struct mtk_hdmi *mtk_hdmi_common_probe(struct platform_device *pdev)
429429
hdmi->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID
430430
| DRM_BRIDGE_OP_HPD;
431431

432+
if (ver_conf->bridge_funcs->hdmi_write_infoframe &&
433+
ver_conf->bridge_funcs->hdmi_clear_infoframe)
434+
hdmi->bridge.ops |= DRM_BRIDGE_OP_HDMI;
435+
432436
hdmi->bridge.type = DRM_MODE_CONNECTOR_HDMIA;
433437
hdmi->bridge.ddc = hdmi->ddc_adpt;
434438
hdmi->bridge.vendor = "MediaTek";

0 commit comments

Comments
 (0)