From: Steven Price <steven.price@arm.com>
To: Andre Przywara <andre.przywara@arm.com>
Cc: "Philippe Simons" <simons.philippe@gmail.com>,
"Boris Brezillon" <boris.brezillon@collabora.com>,
"Rob Herring" <robh@kernel.org>,
"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>,
"Philipp Zabel" <p.zabel@pengutronix.de>,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
linux-sunxi@lists.linux.dev,
"Jernej Škrabec" <jernej.skrabec@gmail.com>
Subject: Re: [PATCH 2/2] drm/panfrost: add h616 compatible string
Date: Mon, 31 Mar 2025 12:02:33 +0100 [thread overview]
Message-ID: <db129e7b-896a-4f0d-8c69-d20b58c370cc@arm.com> (raw)
In-Reply-To: <20250331115729.33e54615@donnerap.manchester.arm.com>
On 31/03/2025 11:57, Andre Przywara wrote:
> On Mon, 31 Mar 2025 11:32:58 +0100
> Steven Price <steven.price@arm.com> wrote:
>
> Hi Steven,
>
> thanks for having a look!
>
>> On 12/03/2025 23:23, Philippe Simons wrote:
>>> Tie the Allwinner compatible string to the two features bits that will
>>> toggle the clocks and the reset line whenever the power domain is changing
>>> state.
>>
>> This looks fine, but we need the new compatible string to be documented
>> in the bindings:
>>
>> Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml
>>
>> I'm not sure what the situation is for the device tree for this
>> platform, but it would be good to get that all sorted before we merge
>> the compatible into panfrost.
>
> The binding addition was sent earlier, as part of my power-domain driver
> series:
> https://lore.kernel.org/linux-sunxi/20250221005802.11001-1-andre.przywara@arm.com/T/#m083df99cf34ddfd06a6a4b8fbb49636a51b05112
>
> Rob took that one already, and it landed in Linus' tree last week, so
> that would be covered.
Ah, cool. I realised now I was looking in drm-misc-next not linux-next
(too many Linux checkouts!) which is why I didn't find it.
Thanks,
Steve
> Cheers,
> Andre
>
>>
>> Thanks,
>> Steve
>>
>>> Signed-off-by: Philippe Simons <simons.philippe@gmail.com>
>>> ---
>>> drivers/gpu/drm/panfrost/panfrost_drv.c | 8 ++++++++
>>> 1 file changed, 8 insertions(+)
>>>
>>> diff --git a/drivers/gpu/drm/panfrost/panfrost_drv.c b/drivers/gpu/drm/panfrost/panfrost_drv.c
>>> index 0f3935556ac7..f13743fe6bad 100644
>>> --- a/drivers/gpu/drm/panfrost/panfrost_drv.c
>>> +++ b/drivers/gpu/drm/panfrost/panfrost_drv.c
>>> @@ -776,6 +776,13 @@ static const struct panfrost_compatible default_data = {
>>> .pm_domain_names = NULL,
>>> };
>>>
>>> +static const struct panfrost_compatible allwinner_h616_data = {
>>> + .num_supplies = ARRAY_SIZE(default_supplies) - 1,
>>> + .supply_names = default_supplies,
>>> + .num_pm_domains = 1,
>>> + .pm_features = BIT(GPU_PM_RT_CLK_DIS) | BIT(GPU_PM_RT_RST_ASRT),
>>> +};
>>> +
>>> static const struct panfrost_compatible amlogic_data = {
>>> .num_supplies = ARRAY_SIZE(default_supplies) - 1,
>>> .supply_names = default_supplies,
>>> @@ -859,6 +866,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 = "allwinner,sun50i-h616-mali", .data = &allwinner_h616_data },
>>> {}
>>> };
>>> MODULE_DEVICE_TABLE(of, dt_match);
>>
>
prev parent reply other threads:[~2025-03-31 11:02 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-12 23:23 [PATCH 0/2] drm/panfrost: Philippe Simons
2025-03-12 23:23 ` [PATCH 1/2] drm/panfrost: Add PM runtime flags Philippe Simons
2025-03-27 12:36 ` Andre Przywara
2025-03-31 10:32 ` Steven Price
2025-03-31 10:49 ` Philippe Simons
2025-03-31 11:02 ` Steven Price
2025-03-31 11:13 ` Andre Przywara
2025-03-12 23:23 ` [PATCH 2/2] drm/panfrost: add h616 compatible string Philippe Simons
2025-03-31 10:32 ` Steven Price
2025-03-31 10:57 ` Andre Przywara
2025-03-31 11:02 ` Steven Price [this message]
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=db129e7b-896a-4f0d-8c69-d20b58c370cc@arm.com \
--to=steven.price@arm.com \
--cc=airlied@gmail.com \
--cc=andre.przywara@arm.com \
--cc=boris.brezillon@collabora.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jernej.skrabec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sunxi@lists.linux.dev \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=p.zabel@pengutronix.de \
--cc=robh@kernel.org \
--cc=simona@ffwll.ch \
--cc=simons.philippe@gmail.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