Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

drm/rockchip: dw_hdmi_qp: Provide CEC IRQ in dw_hdmi_qp_plat_data

In order to support the CEC interface of the DesignWare HDMI QP IP
block, setup platform data to include the required IRQ number.

Reviewed-by: Daniel Stone <daniels@collabora.com>
Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Link: https://lore.kernel.org/r/20250903-rk3588-hdmi-cec-v4-4-fa25163c4b08@collabora.com

authored by

Cristian Ciocaltea and committed by
Heiko Stuebner
9baa0232 b6736a4e

+4
+4
drivers/gpu/drm/rockchip/dw_hdmi_qp-rockchip.c
··· 525 525 if (plat_data.main_irq < 0) 526 526 return plat_data.main_irq; 527 527 528 + plat_data.cec_irq = platform_get_irq_byname(pdev, "cec"); 529 + if (plat_data.cec_irq < 0) 530 + return plat_data.cec_irq; 531 + 528 532 irq = platform_get_irq_byname(pdev, "hpd"); 529 533 if (irq < 0) 530 534 return irq;