From: Kaustabh Chakraborty <kauschluss@disroot.org>
To: Inki Dae <daeinki@gmail.com>
Cc: Jagan Teki <jagan@amarulasolutions.com>,
Marek Szyprowski <m.szyprowski@samsung.com>,
Andrzej Hajda <andrzej.hajda@intel.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Robert Foss <rfoss@kernel.org>,
Laurent Pinchart <Laurent.pinchart@ideasonboard.com>,
Jonas Karlman <jonas@kwiboo.se>,
Jernej Skrabec <jernej.skrabec@gmail.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>,
Seung-Woo Kim <sw0312.kim@samsung.com>,
Kyungmin Park <kyungmin.park@samsung.com>,
Krzysztof Kozlowski <krzk@kernel.org>,
Alim Akhtar <alim.akhtar@samsung.com>,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org
Subject: Re: [PATCH v3 10/13] drm/bridge: samsung-dsim: add ability to define clock names for every variant
Date: Tue, 29 Jul 2025 16:29:52 +0000 [thread overview]
Message-ID: <080f567245829dba8572be649a46cc93@disroot.org> (raw)
In-Reply-To: <CAAQKjZNfb6LkShtCvan__ew=H7CaquTqn5DLcP1agtkG6B5mSw@mail.gmail.com>
On 2025-07-29 07:02, Inki Dae wrote:
> 2025년 7월 7일 (월) 오전 3:28, Kaustabh Chakraborty
> <kauschluss@disroot.org>님이 작성:
>>
>> - dsi->clks = devm_kcalloc(dev, dsi->driver_data->num_clks,
>> - sizeof(*dsi->clks), GFP_KERNEL);
>> - if (!dsi->clks)
>> - return -ENOMEM;
>> -
>> - for (i = 0; i < dsi->driver_data->num_clks; i++) {
>> - dsi->clks[i] = devm_clk_get(dev, clk_names[i]);
>> - if (IS_ERR(dsi->clks[i])) {
>> - if (strcmp(clk_names[i], "sclk_mipi") == 0) {
>> - dsi->clks[i] = devm_clk_get(dev,
>> OLD_SCLK_MIPI_CLK_NAME);
>> - if (!IS_ERR(dsi->clks[i]))
>> - continue;
>> - }
>> -
>> - dev_info(dev, "failed to get the clock: %s\n",
>> clk_names[i]);
>> - return PTR_ERR(dsi->clks[i]);
>> - }
>> + ret = devm_clk_bulk_get(dev, dsi->driver_data->num_clks,
>> + dsi->driver_data->clk_data);
>> + if (ret) {
>> + dev_err(dev, "failed to get clocks in bulk (%d)\n",
>> ret);
>> + return ret;
>
> Above change modifies the existing behavior.
>
> Previously, when devm_clk_get() failed and the clock name was
> "sclk_mipi", the code included a fallback mechanism to try "pll_clk"
> instead. This fallback logic has been removed in the current patch.
>
> While changing this behavior may raise concerns, the benefits of
> refactoring—specifically, defining clock names per SoC and adopting
> the clk_bulk_* API for improved maintainability—appear to outweigh the
> potential downsides.
I have checked all devices which use this driver.
Here is a mapping of all compatible -> clock names in the driver:
- fsl,imx8mm-mipi-dsim: bus_clk, sclk_mipi
- fsl,imx8mp-mipi-dsim: bus_clk, sclk_mipi
- samsung,exynos3250-mipi-dsi: bus_clk, pll_clk
- samsung,exynos4210-mipi-dsi: bus_clk, sclk_mipi
- samsung,exynos5410-mipi-dsi: bus_clk, pll_clk
- samsung,exynos5422-mipi-dsi: bus_clk, pll_clk
- samsung,exynos5433-mipi-dsi: bus_clk, sclk_mipi,
phyclk_mipidphy0_bitclkdiv8,
phyclk_mipidphy0_rxclkesc0,
sclk_rgb_vclk_to_dsim0
And here is what I found by grep-ing all devicetrees:
arm/boot/dts/nxp/imx/imx7s.dtsi
compatible = "fsl,imx7d-mipi-dsim", "fsl,imx8mm-mipi-dsim";
(uses bus_clk, sclk_mipi)
arm/boot/dts/samsung/exynos3250.dtsi
compatible = "samsung,exynos3250-mipi-dsi";
(uses bus_clk, pll_clk)
arm/boot/dts/samsung/exynos4.dtsi
compatible = "samsung,exynos4210-mipi-dsi";
(uses bus_clk, sclk_mipi)
arm/boot/dts/samsung/exynos5420.dtsi
compatible = "samsung,exynos5410-mipi-dsi";
(uses bus_clk, pll_clk)
arm/boot/dts/samsung/exynos5800.dtsi
compatible = "samsung,exynos5422-mipi-dsi";
(uses bus_clk, pll_clk - uses node from exynos5420.dtsi)
arm64/boot/dts/exynos/exynos5433.dtsi
compatible = "samsung,exynos5433-mipi-dsi";
(uses bus_clk, sclk_mipi, and 3 others as mentioned above)
arm64/boot/dts/freescale/imx8mm.dtsi
compatible = "fsl,imx8mm-mipi-dsim";
(uses bus_clk, sclk_mipi)
arm64/boot/dts/freescale/imx8mn.dtsi
compatible = "fsl,imx8mn-mipi-dsim", "fsl,imx8mm-mipi-dsim";
(uses bus_clk, sclk_mipi)
arm64/boot/dts/freescale/imx8mp.dtsi
compatible = "fsl,imx8mp-mipi-dsim";
(uses bus_clk, sclk_mipi)
So, there shouldn't be any regressions.
>
> Unless there are objections from other reviewers, I intend to proceed
> with merging this patch.
> If anyone has concerns or sees potential issues with this change,
> please share your thoughts.
>
> Thanks,
> Inki Dae
>
next prev parent reply other threads:[~2025-07-29 16:29 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-06 18:25 [PATCH v3 00/13] Support for Exynos7870 DSIM bridge Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 01/13] drm/bridge: samsung-dsim: support separate LINK and DPHY status registers Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 02/13] drm/bridge: samsung-dsim: add SFRCTRL register Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 03/13] drm/bridge: samsung-dsim: add flag to control header FIFO wait Kaustabh Chakraborty
2025-07-29 3:55 ` Inki Dae
2025-07-06 18:25 ` [PATCH v3 04/13] drm/bridge: samsung-dsim: allow configuring bits and offsets of CLKCTRL register Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 05/13] drm/bridge: samsung-dsim: allow configuring the MAIN_VSA offset Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 06/13] drm/bridge: samsung-dsim: allow configuring the VIDEO_MODE bit Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 07/13] drm/bridge: samsung-dsim: allow configuring PLL_M and PLL_S offsets Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 08/13] drm/bridge: samsung-dsim: allow configuring the PLL_STABLE bit Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 09/13] drm/bridge: samsung-dsim: increase timeout value for PLL_STABLE Kaustabh Chakraborty
2025-07-29 5:44 ` Inki Dae
2025-07-29 15:44 ` Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 10/13] drm/bridge: samsung-dsim: add ability to define clock names for every variant Kaustabh Chakraborty
2025-07-29 7:02 ` Inki Dae
2025-07-29 16:29 ` Kaustabh Chakraborty [this message]
2025-07-06 18:25 ` [PATCH v3 11/13] dt-bindings: samsung,mipi-dsim: document exynos7870 DSIM compatible Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 12/13] drm/bridge: samsung-dsim: add driver support for exynos7870 DSIM bridge Kaustabh Chakraborty
2025-07-06 18:25 ` [PATCH v3 13/13] drm/exynos: dsi: add support for exynos7870 Kaustabh Chakraborty
2025-07-29 7:35 ` [PATCH v3 00/13] Support for Exynos7870 DSIM bridge Inki Dae
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=080f567245829dba8572be649a46cc93@disroot.org \
--to=kauschluss@disroot.org \
--cc=Laurent.pinchart@ideasonboard.com \
--cc=airlied@gmail.com \
--cc=alim.akhtar@samsung.com \
--cc=andrzej.hajda@intel.com \
--cc=conor+dt@kernel.org \
--cc=daeinki@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=jagan@amarulasolutions.com \
--cc=jernej.skrabec@gmail.com \
--cc=jonas@kwiboo.se \
--cc=krzk+dt@kernel.org \
--cc=krzk@kernel.org \
--cc=kyungmin.park@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=m.szyprowski@samsung.com \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=neil.armstrong@linaro.org \
--cc=rfoss@kernel.org \
--cc=robh@kernel.org \
--cc=simona@ffwll.ch \
--cc=sw0312.kim@samsung.com \
--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;
as well as URLs for NNTP newsgroup(s).