From: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
To: Jonas Karlman <jonas@kwiboo.se>
Cc: "Sandy Huang" <hjc@rock-chips.com>,
"Heiko Stübner" <heiko@sntech.de>,
"Andy Yan" <andy.yan@rock-chips.com>,
"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
"Maxime Ripard" <mripard@kernel.org>,
"Thomas Zimmermann" <tzimmermann@suse.de>,
"David Airlie" <airlied@gmail.com>,
"Simona Vetter" <simona@ffwll.ch>,
"Rob Herring" <robh@kernel.org>,
"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
"Conor Dooley" <conor+dt@kernel.org>,
kernel@collabora.com, dri-devel@lists.freedesktop.org,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/5] drm/rockchip: vop2: Improve display modes handling on RK3588 HDMI0
Date: Sun, 17 Nov 2024 01:22:13 +0200 [thread overview]
Message-ID: <3d330c00-cdf0-4103-ac4b-b3d4e5c81335@collabora.com> (raw)
In-Reply-To: <c79c1878-370d-45fa-a802-1d175498bb1c@kwiboo.se>
Hi Jonas,
On 11/16/24 9:12 PM, Jonas Karlman wrote:
> Hi Cristian,
>
> On 2024-11-16 19:22, Cristian Ciocaltea wrote:
>> The RK3588 specific implementation is currently quite limited in terms
>> of handling the full range of display modes supported by the connected
>> screens, e.g. 2560x1440@75Hz, 2048x1152@60Hz, 1024x768@60Hz are just a
>> few of them.
>>
>> Additionally, it doesn't cope well with non-integer refresh rates like
>> 59.94, 29.97, 23.98, etc.
>>
>> Make use of HDMI0 PHY PLL as a more accurate DCLK source to handle
>> all display modes up to 4K@60Hz.
>>
>> Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com>
>> ---
>> drivers/gpu/drm/rockchip/rockchip_drm_vop2.c | 34 ++++++++++++++++++++++++++++
>> 1 file changed, 34 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
>> index 3e4c1cfd0bac6fa90f4cab85e27c2a69b86fc9aa..dfe1a50132d596f036430d7db3631398d0802972 100644
>> --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
>> +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c
[...]
>> + /*
>> + * Switch to HDMI PHY PLL as DCLK source for display modes up
>> + * to 4K@60Hz, if available, otherwise keep using the system CRU.
>> + */
>> + if (vop2->pll_hdmiphy0 && mode->crtc_clock <= VOP2_MAX_DCLK_RATE) {
>> + drm_for_each_encoder_mask(encoder, crtc->dev, crtc_state->encoder_mask) {
>> + struct rockchip_encoder *rkencoder = to_rockchip_encoder(encoder);
>> +
>> + if (rkencoder->crtc_endpoint_id == ROCKCHIP_VOP2_EP_HDMI0) {
>> + if (!vp->dclk_src)
>> + vp->dclk_src = clk_get_parent(vp->dclk);
>> +
>> + ret = clk_set_parent(vp->dclk, vop2->pll_hdmiphy0);
>> + if (ret < 0)
>> + drm_warn(vop2->drm,
>> + "Could not switch to HDMI0 PHY PLL: %d\n", ret);
>> + break;
>> + }
>> + }
>> + }
>
> Why do we need to do this dynamically here?
>
> The device tree set PLL_HPLL as parent:
>
> &vop {
> assigned-clocks = <&cru DCLK_VOP0>, <&cru DCLK_VOP1>;
> assigned-clock-parents = <&pmucru PLL_HPLL>, <&cru PLL_VPLL>;
> status = "okay";
> };
>
> Could this not just be changed to assign hdptxphy_hdmi0 as parent?
>
> &vop {
> assigned-clocks = <&cru DCLK_VOP0>, <&cru DCLK_VOP1>;
> assigned-clock-parents = <&hdptxphy_hdmi0>, <&cru PLL_VPLL>;
> status = "okay";
> };
>
> or something similar?
>
> For RK3328 the vop dclk parent is assigned to hdmiphy using DT.
Yes, that would normally work. The problem is that the PHY PLLs cannot
provide pixel clocks for resolutions above 4K@60Hz (hence limited to
HDMI 2.0), while VOP2 on RK3588 supports up to 8K@60Hz (making use of
HDMI 2.1).
On top of that, the 2 PLLs are shared between 3 out of the 4 video ports
of the display controller. There is quite a bit of complexity in
downstream driver to handle all possible usecases - see [1] for a brief
description on how is that supposed to work.
Regards,
Cristian
[1] https://github.com/radxa/kernel/blob/linux-6.1-stan-rkr4.1/drivers/gpu/drm/rockchip/rockchip_drm_vop2.c#L4742
next prev parent reply other threads:[~2024-11-16 23:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-16 18:22 [PATCH 0/5] Improve Rockchip VOP2 " Cristian Ciocaltea
2024-11-16 18:22 ` [PATCH 1/5] dt-bindings: display: vop2: Add optional PLL clock properties Cristian Ciocaltea
2024-11-19 17:14 ` Rob Herring (Arm)
2024-11-16 18:22 ` [PATCH 2/5] drm/rockchip: vop2: Drop unnecessary if_pixclk_rate computation Cristian Ciocaltea
2024-11-16 18:22 ` [PATCH 3/5] drm/rockchip: vop2: Improve display modes handling on RK3588 HDMI0 Cristian Ciocaltea
2024-11-16 19:12 ` Jonas Karlman
2024-11-16 23:22 ` Cristian Ciocaltea [this message]
2024-11-16 18:22 ` [PATCH 4/5] arm64: dts: rockchip: Enable HDMI0 PHY clk provider on RK3588 Cristian Ciocaltea
2024-11-16 18:22 ` [PATCH 5/5] arm64: dts: rockchip: Add HDMI0 PHY PLL clock source to VOP2 " Cristian Ciocaltea
2024-11-20 22:16 ` [PATCH 0/5] Improve Rockchip VOP2 display modes handling on RK3588 HDMI0 FUKAUMI Naoki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3d330c00-cdf0-4103-ac4b-b3d4e5c81335@collabora.com \
--to=cristian.ciocaltea@collabora.com \
--cc=airlied@gmail.com \
--cc=andy.yan@rock-chips.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=heiko@sntech.de \
--cc=hjc@rock-chips.com \
--cc=jonas@kwiboo.se \
--cc=kernel@collabora.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=robh@kernel.org \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®