From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: Chen-Yu Tsai <wenst@chromium.org>
Cc: airlied@gmail.com, tomeu.vizoso@collabora.com,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
dri-devel@lists.freedesktop.org, steven.price@arm.com,
robh+dt@kernel.org, linux-mediatek@lists.infradead.org,
alyssa.rosenzweig@collabora.com,
krzysztof.kozlowski+dt@linaro.org, matthias.bgg@gmail.com,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/9] dt-bindings: gpu: mali-bifrost: Don't allow sram-supply by default
Date: Thu, 9 Feb 2023 10:15:33 +0100 [thread overview]
Message-ID: <0faf89cb-4709-17c9-0d67-da7ef2ddb7e6@collabora.com> (raw)
In-Reply-To: <CAGXv+5Gm=Onu2RK+skLgN4Kzo9yP1n5Zb48oQNkQ019838QeEQ@mail.gmail.com>
Il 09/02/23 03:50, Chen-Yu Tsai ha scritto:
> On Wed, Feb 8, 2023 at 6:37 PM AngeloGioacchino Del Regno
> <angelogioacchino.delregno@collabora.com> wrote:
>>
>> The sram-supply is MediaTek-specific, it is and will ever be used
>> only for the mediatek,mt8183-mali compatible due to the addition of
>> the mediatek-regulator-coupler driver: change the binding to add
>> this supply when mediatek,mt8183-mali is present as a compatible
>> instead of disabling it when not present.
>>
>> This is done in preparation for adding new bindings for other
>> MediaTek SoCs, such as MT8192 and others.
>>
>> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
>> ---
>> Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml | 4 +---
>> 1 file changed, 1 insertion(+), 3 deletions(-)
>>
>> diff --git a/Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml b/Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml
>> index 78964c140b46..69212f3b1328 100644
>> --- a/Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml
>> +++ b/Documentation/devicetree/bindings/gpu/arm,mali-bifrost.yaml
>> @@ -57,8 +57,6 @@ properties:
>>
>> mali-supply: true
>>
>> - sram-supply: true
>> -
>
> Have you tried actually validating the device trees against this?
> Based on my previous tests this gives out errors.
I did... and I didn't get any complaint... but perhaps something went wrong
on my side?
I mean, I can retry just to be sure.
>
> The reason is that each conditional is a separate sub-schema, and the
> validator is run against each schema and sub-schema separately, instead
> of collapsing matching schemas and sub-schemas together and validating
> once. So we'll get a validation error on sram-supply not being a valid
> property when validating current mt8183 against the base schema.
>
> We have a similar issue with power-domain-names, for which I'll send
> a patch to fix. See the following for the fix:
>
> http://git.kernel.org/wens/c/d1adb38ab2ad0442755607c2bcc726cc17cce2c7
>
> and the following for what I did for MT8192 on top of the previous patch:
>
> http://git.kernel.org/wens/c/049bd164884398d7e5f72c710da6aaa9a95bc10a
>
Thanks for the pointer, btw
Cheers,
Angelo
>
> Regards
> ChenYu
>
>> operating-points-v2: true
>>
>> power-domains:
>> @@ -157,6 +155,7 @@ allOf:
>> - const: core0
>> - const: core1
>> - const: core2
>> + sram-supply: true
>>
>> required:
>> - sram-supply
>> @@ -166,7 +165,6 @@ allOf:
>> properties:
>> power-domains:
>> maxItems: 1
>> - sram-supply: false
>> - if:
>> properties:
>> compatible:
>> --
>> 2.39.1
>>
next prev parent reply other threads:[~2023-02-09 9:15 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-08 10:37 [PATCH 0/9] Panfrost: Improve and add MediaTek SoCs support AngeloGioacchino Del Regno
2023-02-08 10:37 ` [PATCH 1/9] dt-bindings: gpu: mali-bifrost: Don't allow sram-supply by default AngeloGioacchino Del Regno
2023-02-09 2:50 ` Chen-Yu Tsai
2023-02-09 9:15 ` AngeloGioacchino Del Regno [this message]
2023-02-09 18:11 ` Rob Herring
2023-02-08 10:37 ` [PATCH 2/9] dt-bindings: gpu: mali-bifrost: Allow up to 5 power domains for MT8192 AngeloGioacchino Del Regno
2023-02-09 8:33 ` Chen-Yu Tsai
2023-02-09 9:17 ` AngeloGioacchino Del Regno
2023-02-09 18:13 ` Rob Herring
2023-02-08 10:37 ` [PATCH 3/9] dt-bindings: gpu: mali-bifrost: Add compatible for MT8195 SoC AngeloGioacchino Del Regno
2023-02-09 18:15 ` Rob Herring
2023-02-08 10:37 ` [PATCH 4/9] dt-bindings: gpu: mali-bifrost: Add new MT8183 compatible AngeloGioacchino Del Regno
2023-02-09 18:15 ` Rob Herring
2023-02-08 10:37 ` [PATCH 5/9] dt-bindings: gpu: mali-bifrost: Add a compatible for MediaTek MT8186 AngeloGioacchino Del Regno
2023-02-09 8:49 ` Chen-Yu Tsai
2023-02-09 9:20 ` AngeloGioacchino Del Regno
2023-02-09 9:45 ` Chen-Yu Tsai
2023-02-09 9:58 ` AngeloGioacchino Del Regno
2023-02-08 10:37 ` [PATCH 6/9] drm/panfrost: Increase MAX_PM_DOMAINS to 5 AngeloGioacchino Del Regno
2023-02-08 10:37 ` [PATCH 7/9] drm/panfrost: Add the MT8192 GPU ID AngeloGioacchino Del Regno
2023-02-08 10:37 ` [PATCH 8/9] drm/panfrost: Add mediatek,mt8192-mali compatible AngeloGioacchino Del Regno
2023-02-08 10:37 ` [PATCH 9/9] drm/panfrost: Add new compatible for Mali on the MT8183 SoC AngeloGioacchino Del Regno
2023-02-08 15:11 ` [PATCH 0/9] Panfrost: Improve and add MediaTek SoCs support Steven Price
2023-02-09 9:10 ` Chen-Yu Tsai
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=0faf89cb-4709-17c9-0d67-da7ef2ddb7e6@collabora.com \
--to=angelogioacchino.delregno@collabora.com \
--cc=airlied@gmail.com \
--cc=alyssa.rosenzweig@collabora.com \
--cc=devicetree@vger.kernel.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=robh+dt@kernel.org \
--cc=steven.price@arm.com \
--cc=tomeu.vizoso@collabora.com \
--cc=wenst@chromium.org \
/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®