From: Kaustabh Chakraborty <kauschluss@disroot.org>
To: Krzysztof Kozlowski <krzk@kernel.org>
Cc: Inki Dae <inki.dae@samsung.com>,
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>,
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 10/12] dt-bindings: samsung,mipi-dsim: document exynos7870 DSIM compatible
Date: Wed, 18 Jun 2025 14:27:17 +0000 [thread overview]
Message-ID: <9e2f29d3763ea50b30e5a493551627cd@disroot.org> (raw)
In-Reply-To: <5672e2ee-a828-4555-bf78-9d75c58840bd@kernel.org>
On 2025-06-18 10:00, Krzysztof Kozlowski wrote:
> On 12/06/2025 17:18, Kaustabh Chakraborty wrote:
>> Add compatible string for Exynos7870 DSIM bridge controller. The
>> devicetree node requires four clock sources, named:
>> - bus_clk
>> - phyclk_mipidphy0_bitclkdiv8
>> - phyclk_mipidphy0_rxclkesc0
>> - sclk_mipi
>>
>> Signed-off-by: Kaustabh Chakraborty <kauschluss@disroot.org>
>> ---
>> .../bindings/display/bridge/samsung,mipi-dsim.yaml | 26 ++++++++++++++++++++++
>> 1 file changed, 26 insertions(+)
>>
>> diff --git a/Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml b/Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml
>> index 1acad99f396527192b6853f0096cfb8ae5669e6b..887f3ba1edd24a177a766b1b523d0c197ff1123a 100644
>> --- a/Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml
>> +++ b/Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml
>> @@ -24,6 +24,7 @@ properties:
>> - samsung,exynos5410-mipi-dsi
>> - samsung,exynos5422-mipi-dsi
>> - samsung,exynos5433-mipi-dsi
>> + - samsung,exynos7870-mipi-dsi
>> - fsl,imx8mm-mipi-dsim
>> - fsl,imx8mp-mipi-dsim
>> - items:
>> @@ -144,6 +145,31 @@ required:
>>
>> allOf:
>> - $ref: ../dsi-controller.yaml#
>> + - if:
>> + properties:
>> + compatible:
>> + contains:
>> + const: samsung,exynos7870-mipi-dsi
>> +
>> + then:
>> + properties:
>> + clocks:
>> + minItems: 4
>
> maxItems: 4
Will replace. maxItems == minItems implicit if maxItems present and
minItems absent.
>
>> +
>> + clock-names:
>> + items:
>> + - const: bus_clk
>> + - const: phyclk_mipidphy0_bitclkdiv8
>> + - const: phyclk_mipidphy0_rxclkesc0
>> + - const: sclk_mipi
>
> Does any existing driver code actually depends on the names? If not, we
> switched in Samsung in general to names matching the input or the
> function, not the name of provider. bus, bit (or bitdiv?), rx or esc0, sclk
Yeah, Exynos5433 uses it. Code is here [1].
Though, I could get around this if you would like to. Would need to add
a few more patches.
PS: bitdiv8 should actually be byte. bit clock frequency used in data
transmission divided by 8 covers a byte.
[1] https://elixir.bootlin.com/linux/v6.16-rc2/source/drivers/gpu/drm/bridge/samsung-dsim.c#L227
>
>
> Best regards,
> Krzysztof
next prev parent reply other threads:[~2025-06-18 14:27 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-12 15:18 [PATCH 00/12] Support for Exynos7870 DSIM bridge Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 01/12] drm/bridge: samsung-dsim: separate LINK and DPHY status registers Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 02/12] drm/bridge: samsung-dsim: add SFRCTRL register Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 03/12] drm/bridge: samsung-dsim: add flag to control header FIFO wait Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 04/12] drm/bridge: samsung-dsim: allow configuring bits and offsets of CLKCTRL register Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 05/12] drm/bridge: samsung-dsim: allow configuring the MAIN_VSA offset Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 06/12] drm/bridge: samsung-dsim: allow configuring the VIDEO_MODE bit Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 07/12] drm/bridge: samsung-dsim: allow configuring PLL_M and PLL_S offsets Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 08/12] drm/bridge: samsung-dsim: allow configuring the PLL_STABLE bit Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 09/12] drm/bridge: samsung-dsim: increase timeout value for PLL_STABLE Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 10/12] dt-bindings: samsung,mipi-dsim: document exynos7870 DSIM compatible Kaustabh Chakraborty
2025-06-18 10:00 ` Krzysztof Kozlowski
2025-06-18 14:27 ` Kaustabh Chakraborty [this message]
2025-06-18 14:40 ` Krzysztof Kozlowski
2025-06-12 15:18 ` [PATCH 11/12] drm/bridge: samsung-dsim: add driver support for exynos7870 DSIM bridge Kaustabh Chakraborty
2025-06-12 15:18 ` [PATCH 12/12] drm/exynos: dsi: add support for exynos7870 Kaustabh Chakraborty
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=9e2f29d3763ea50b30e5a493551627cd@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=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=inki.dae@samsung.com \
--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).