Devicetree
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzk@kernel.org>
To: Louis-Alexis Eyraud <louisalexis.eyraud@collabora.com>
Cc: 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>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	AngeloGioacchino Del Regno
	<angelogioacchino.delregno@collabora.com>,
	Boris Brezillon <boris.brezillon@collabora.com>,
	Steven Price <steven.price@arm.com>,
	kernel <kernel@collabora.com>,
	dri-devel <dri-devel@lists.freedesktop.org>,
	devicetree <devicetree@vger.kernel.org>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>,
	linux-mediatek <linux-mediatek@lists.infradead.org>
Subject: Re: [PATCH 2/3] drm/panfrost: Add support for Mali on the MT8370 SoC
Date: Thu, 30 Jan 2025 14:20:21 +0100	[thread overview]
Message-ID: <f397d8e3-0ec2-4b76-a7b4-5c816a334831@kernel.org> (raw)
In-Reply-To: <194b7237128.10f9923a41656565.5574753983898665940@collabora.com>

On 30/01/2025 13:15, Louis-Alexis Eyraud wrote:
> Hello,
> 
> sorry for the delay,
> 
>  ---- On Sat, 18 Jan 2025 17:08:10 +0100  Krzysztof Kozlowski  wrote --- 
>  > On Thu, Jan 16, 2025 at 03:25:58PM +0100, Louis-Alexis Eyraud wrote:
>  > > This commit adds a compatible for the MediaTek MT8370 SoC, with an
>  > > integrated ARM Mali G57 MC2 GPU (Valhall-JM, dual core), and adds
>  > > platform data using the same supplies and the same power domain lists
>  > > as MT8186 (one regulator, two power domains).
>  > > 
>  > > Signed-off-by: Louis-Alexis Eyraud louisalexis.eyraud@collabora.com>
>  > > ---
>  > >  drivers/gpu/drm/panfrost/panfrost_drv.c | 10 ++++++++++
>  > >  1 file changed, 10 insertions(+)
>  > > 
>  > > diff --git a/drivers/gpu/drm/panfrost/panfrost_drv.c b/drivers/gpu/drm/panfrost/panfrost_drv.c
>  > > index 0f3935556ac761adcd80197d87e8e478df436fd5..1d51b64ed0f0660cc95263a289d5dad204540cfd 100644
>  > > --- a/drivers/gpu/drm/panfrost/panfrost_drv.c
>  > > +++ b/drivers/gpu/drm/panfrost/panfrost_drv.c
>  > > @@ -837,6 +837,15 @@ static const struct panfrost_compatible mediatek_mt8192_data = {
>  > >      .pm_features = BIT(GPU_PM_CLK_DIS) | BIT(GPU_PM_VREG_OFF),
>  > >  };
>  > >  
>  > > +/* MT8370 uses the same power domains and power supplies as MT8186 */
>  > > +static const struct panfrost_compatible mediatek_mt8370_data = {
>  > > +    .num_supplies = ARRAY_SIZE(mediatek_mt8183_b_supplies) - 1,
>  > > +    .supply_names = mediatek_mt8183_b_supplies,
>  > > +    .num_pm_domains = ARRAY_SIZE(mediatek_mt8186_pm_domains),
>  > > +    .pm_domain_names = mediatek_mt8186_pm_domains,
>  > > +    .pm_features = BIT(GPU_PM_CLK_DIS) | BIT(GPU_PM_VREG_OFF),
>  > > +};
>  > 
>  > No, people, stop this nonsense. This is exactly the same as previous.
>  > Don't duplicate entries just because you want a commit.
>  > 
> I added this new compatible in bindings and panfrost driver because there were no other matching compatible 
> Using another mali-vallhal-jm compatible would make the driver probe fail because of power domains number difference. 
> Using mt8186-mali compatible would work without modifications but as it is not the same architecture (mali-bifrost), it would be incorrect.

Fix your email app, so it won't add spaces before quote and will wrap
the text properly.

> 
> I've also misguessed on the dt_match array modifications, sorry.
> I'll amend this patch in order to reuse the mt8186 platform data instead.
> 
>  > > +
>  > >  static const struct of_device_id dt_match[] = {
>  > >      /* Set first to probe before the generic compatibles */
>  > >      { .compatible = "amlogic,meson-gxm-mali",
>  > > @@ -859,6 +868,7 @@ static const struct of_device_id dt_match[] = {
>  > >      { .compatible = "mediatek,mt8186-mali", .data = &mediatek_mt8186_data },
>  > >      { .compatible = "mediatek,mt8188-mali", .data = &mediatek_mt8188_data },
>  > >      { .compatible = "mediatek,mt8192-mali", .data = &mediatek_mt8192_data },
>  > > +    { .compatible = "mediatek,mt8370-mali", .data = &mediatek_mt8370_data },
>  > 
>  > No, express properly compatibility or say in bindings commit msg why
>  > devices are not compatible.
>  > 
> I'll reword in V2 the commit messages to make the compatible need more explicit.

Your commit msg should then explain that this is not compatible with
mt8186 because programming model or architecture is different. Number of
power domains rarely matters for actual compatibility and as easily
visible in panfrost driver: does not matter here, either.

Best regards,
Krzysztof

  reply	other threads:[~2025-01-30 13:20 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-16 14:25 [PATCH 0/3] Add Mali GPU support for Mediatek MT8370 SoC Louis-Alexis Eyraud
2025-01-16 14:25 ` [PATCH 1/3] dt-bindings: gpu: mali-bifrost: Add compatible for " Louis-Alexis Eyraud
2025-01-18 16:01   ` Krzysztof Kozlowski
2025-01-16 14:25 ` [PATCH 2/3] drm/panfrost: Add support for Mali on the " Louis-Alexis Eyraud
2025-01-16 14:50   ` Steven Price
2025-01-18 16:08   ` Krzysztof Kozlowski
2025-01-30 12:15     ` Louis-Alexis Eyraud
2025-01-30 13:20       ` Krzysztof Kozlowski [this message]
2025-01-30 13:21       ` Krzysztof Kozlowski
2025-01-31 11:01         ` Louis-Alexis Eyraud
2025-01-16 14:25 ` [PATCH 3/3] arm64: dts: mediatek: mt8370: Enable gpu support Louis-Alexis Eyraud
2025-01-17 14:32 ` [PATCH 0/3] Add Mali GPU support for Mediatek MT8370 SoC Rob Herring (Arm)

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=f397d8e3-0ec2-4b76-a7b4-5c816a334831@kernel.org \
    --to=krzk@kernel.org \
    --cc=airlied@gmail.com \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=boris.brezillon@collabora.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=kernel@collabora.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=louisalexis.eyraud@collabora.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=matthias.bgg@gmail.com \
    --cc=mripard@kernel.org \
    --cc=robh@kernel.org \
    --cc=simona@ffwll.ch \
    --cc=steven.price@arm.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