[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250218121749.1382322-1-liujianfeng1994@gmail.com>
Date: Tue, 18 Feb 2025 20:17:46 +0800
From: Jianfeng Liu <liujianfeng1994@...il.com>
To: heiko@...ech.de
Cc: airlied@...il.com,
andy.yan@...k-chips.com,
conor+dt@...nel.org,
cristian.ciocaltea@...labora.com,
devicetree@...r.kernel.org,
dri-devel@...ts.freedesktop.org,
hjc@...k-chips.com,
kernel@...labora.com,
krzk+dt@...nel.org,
linux-arm-kernel@...ts.infradead.org,
linux-kernel@...r.kernel.org,
linux-rockchip@...ts.infradead.org,
liujianfeng1994@...il.com,
maarten.lankhorst@...ux.intel.com,
mripard@...nel.org,
robh@...nel.org,
simona@...ll.ch,
tzimmermann@...e.de
Subject: Re: [PATCH 3/4] arm64: dts: rockchip: Add HDMI1 PHY PLL clock source to VOP2 on RK3588
Hi Heiko,
On Tue, 18 Feb 2025 11:00:57 +0100, Heiko Stübnerwrote:
>So I guess step1, check what error is actually returned.
I have checked that the return value is -517:
rockchip-drm display-subsystem: [drm] *ERROR* failed to get pll_hdmiphy1 with -517
>Step2 check if clk_get_optional need to be adapted or alternatively
>catch the error in the vop2 and set the clock to NULL ourself in that case.
I tried the following patch to set the clock to NULL when clk_get_optional
failed with value -517, and hdmi0 is working now. There are also some
boards like rock 5 itx which only use hdmi1, I think we should also add
this logic to vop2->pll_hdmiphy0.
@@ -3733,6 +3751,15 @@ static int vop2_bind(struct device *dev, struct device *master, void *data)
return PTR_ERR(vop2->pll_hdmiphy0);
}
+ vop2->pll_hdmiphy1 = devm_clk_get_optional(vop2->dev, "pll_hdmiphy1");
+ if (IS_ERR(vop2->pll_hdmiphy1)) {
+ drm_err(vop2->drm, "failed to get pll_hdmiphy1 with %d\n", vop2->pll_hdmiphy1);
+ if (vop2->pll_hdmiphy1 == -EPROBE_DEFER)
+ vop2->pll_hdmiphy1 = NULL;
+ else
+ return PTR_ERR(vop2->pll_hdmiphy1);
+ }
+
vop2->irq = platform_get_irq(pdev, 0);
if (vop2->irq < 0) {
drm_err(vop2->drm, "cannot find irq for vop2\n");
Best regards,
Jianfeng
Powered by blists - more mailing lists