From: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
To: Chen-Yu Tsai <wenst@chromium.org>
Cc: matthias.bgg@gmail.com, robh+dt@kernel.org,
krzysztof.kozlowski+dt@linaro.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org,
"Alyssa Rosenzweig" <alyssa.rosenzweig@collabora.com>,
"Nícolas F . R . A . Prado" <nfraprado@collabora.com>
Subject: Re: [PATCH v2 07/16] arm64: dts: mediatek: mt8192: Add GPU nodes
Date: Fri, 24 Feb 2023 14:04:04 +0100 [thread overview]
Message-ID: <b195aa1d-c88e-5a20-de64-e4de9406a656@collabora.com> (raw)
In-Reply-To: <CAGXv+5H4a686nZPWjd7yFXSDCjttg0OPz1VD_8ppGASKgTWc7g@mail.gmail.com>
Il 24/02/23 10:55, Chen-Yu Tsai ha scritto:
> On Thu, Feb 23, 2023 at 9:44 PM AngeloGioacchino Del Regno
> <angelogioacchino.delregno@collabora.com> wrote:
>>
>> From: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
>>
>> The MediaTek MT8192 includes a Mali-G57 GPU supported in Panfrost. Add
>> the GPU node to the device tree to enable 3D acceleration.
>>
>> The GPU node is disabled by default. It should be enabled by board with
>> its power supplies correctly assigned.
>>
>> Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
>> [nfraprado: removed sram supply, tweaked opp node name, adjusted commit message]
>> Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>
>> [wenst@: disable GPU by default; adjusted prefix; split out board change]
>> Signed-off-by: Chen-Yu Tsai <wenst@chromium.org>
>> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
>> ---
>> arch/arm64/boot/dts/mediatek/mt8192.dtsi | 109 +++++++++++++++++++++++
>> 1 file changed, 109 insertions(+)
>>
>> diff --git a/arch/arm64/boot/dts/mediatek/mt8192.dtsi b/arch/arm64/boot/dts/mediatek/mt8192.dtsi
>> index 87b91c8feaf9..2a3606f68ae4 100644
>> --- a/arch/arm64/boot/dts/mediatek/mt8192.dtsi
>> +++ b/arch/arm64/boot/dts/mediatek/mt8192.dtsi
>> @@ -312,6 +312,91 @@ timer: timer {
>> clock-frequency = <13000000>;
>> };
>>
>> + gpu_opp_table: opp-table-0 {
>> + compatible = "operating-points-v2";
>> + opp-shared;
>> +
>> + opp-358000000 {
>> + opp-hz = /bits/ 64 <358000000>;
>> + opp-microvolt = <606250>;
>> + };
>> +
>> + opp-399000000 {
>> + opp-hz = /bits/ 64 <399000000>;
>> + opp-microvolt = <618750>;
>> + };
>> +
>> + opp-440000000 {
>> + opp-hz = /bits/ 64 <440000000>;
>> + opp-microvolt = <631250>;
>> + };
>> +
>> + opp-482000000 {
>> + opp-hz = /bits/ 64 <482000000>;
>> + opp-microvolt = <643750>;
>> + };
>> +
>> + opp-523000000 {
>> + opp-hz = /bits/ 64 <523000000>;
>> + opp-microvolt = <656250>;
>> + };
>> +
>> + opp-564000000 {
>> + opp-hz = /bits/ 64 <564000000>;
>> + opp-microvolt = <668750>;
>> + };
>> +
>> + opp-605000000 {
>> + opp-hz = /bits/ 64 <605000000>;
>> + opp-microvolt = <681250>;
>> + };
>> +
>> + opp-647000000 {
>> + opp-hz = /bits/ 64 <647000000>;
>> + opp-microvolt = <693750>;
>> + };
>> +
>> + opp-688000000 {
>> + opp-hz = /bits/ 64 <688000000>;
>> + opp-microvolt = <706250>;
>> + };
>> +
>> + opp-724000000 {
>> + opp-hz = /bits/ 64 <724000000>;
>> + opp-microvolt = <725000>;
>> + };
>> +
>> + opp-748000000 {
>> + opp-hz = /bits/ 64 <748000000>;
>> + opp-microvolt = <737500>;
>> + };
>> +
>> + opp-772000000 {
>> + opp-hz = /bits/ 64 <772000000>;
>> + opp-microvolt = <750000>;
>> + };
>> +
>> + opp-795000000 {
>> + opp-hz = /bits/ 64 <795000000>;
>> + opp-microvolt = <762500>;
>> + };
>> +
>> + opp-819000000 {
>> + opp-hz = /bits/ 64 <819000000>;
>> + opp-microvolt = <775000>;
>> + };
>> +
>> + opp-843000000 {
>> + opp-hz = /bits/ 64 <843000000>;
>> + opp-microvolt = <787500>;
>> + };
>> +
>> + opp-866000000 {
>> + opp-hz = /bits/ 64 <866000000>;
>> + opp-microvolt = <800000>;
>> + };
>> + };
>> +
>> soc {
>> #address-cells = <2>;
>> #size-cells = <2>;
>> @@ -1266,6 +1351,30 @@ mmc1: mmc@11f70000 {
>> status = "disabled";
>> };
>>
>> + gpu: gpu@13000000 {
>> + compatible = "mediatek,mt8192-mali", "arm,mali-valhall-jm";
>> + reg = <0 0x13000000 0 0x4000>;
>> + interrupts =
>> + <GIC_SPI 365 IRQ_TYPE_LEVEL_HIGH 0>,
>> + <GIC_SPI 364 IRQ_TYPE_LEVEL_HIGH 0>,
>> + <GIC_SPI 363 IRQ_TYPE_LEVEL_HIGH 0>;
>
> Nit: Move the first entry to the same line as the property, and align
> the following lines' angle brackets?
> > Same for the power-domains.
>
Makes sense, yes, I should've paid more attention to that.
Regards,
Angelo
> Otherwise,
>
> Reviewed-by: Chen-Yu Tsai <wenst@chromium.org>
>
>> + interrupt-names = "job", "mmu", "gpu";
>> +
>> + clocks = <&apmixedsys CLK_APMIXED_MFGPLL>;
>> +
>> + power-domains =
>> + <&spm MT8192_POWER_DOMAIN_MFG2>,
>> + <&spm MT8192_POWER_DOMAIN_MFG3>,
>> + <&spm MT8192_POWER_DOMAIN_MFG4>,
>> + <&spm MT8192_POWER_DOMAIN_MFG5>,
>> + <&spm MT8192_POWER_DOMAIN_MFG6>;
>> + power-domain-names = "core0", "core1", "core2", "core3", "core4";
>> +
>> + operating-points-v2 = <&gpu_opp_table>;
>> +
>> + status = "disabled";
>> + };
>> +
>> mfgcfg: clock-controller@13fbf000 {
>> compatible = "mediatek,mt8192-mfgcfg";
>> reg = <0 0x13fbf000 0 0x1000>;
>> --
>> 2.39.2
>>
--
AngeloGioacchino Del Regno
Software Engineer
Collabora Ltd.
Platinum Building, St John's Innovation Park, Cambridge CB4 0DS, UK
Registered in England & Wales, no. 5513718
next prev parent reply other threads:[~2023-02-24 13:04 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-23 13:43 [PATCH v2 00/16] Enable GPU with DVFS support on MediaTek SoCs AngeloGioacchino Del Regno
2023-02-23 13:43 ` [PATCH v2 01/16] arm64: dts: mediatek: mt8183-kukui: Couple VGPU and VSRAM_GPU regulators AngeloGioacchino Del Regno
2023-02-24 9:48 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 02/16] arm64: dts: mediatek: mt8183-kukui: Override vgpu/vsram_gpu constraints AngeloGioacchino Del Regno
2023-02-24 9:50 ` Chen-Yu Tsai
2023-02-24 13:02 ` AngeloGioacchino Del Regno
2023-02-23 13:43 ` [PATCH v2 03/16] arm64: dts: mediatek: mt8183: Remove second opp-microvolt entries from gpu table AngeloGioacchino Del Regno
2023-02-24 9:51 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 04/16] arm64: dts: mt8183-pumpkin: Couple VGPU and VSRAM_GPU regulators AngeloGioacchino Del Regno
2023-02-24 9:51 ` Chen-Yu Tsai
2023-02-24 9:53 ` Chen-Yu Tsai
2023-02-24 13:03 ` AngeloGioacchino Del Regno
2023-02-23 13:43 ` [PATCH v2 05/16] arm64: dts: mediatek: mt8183-evb: " AngeloGioacchino Del Regno
2023-02-24 9:54 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 06/16] arm64: dts: mediatek: mt8183: Use mediatek,mt8183b-mali as GPU compatible AngeloGioacchino Del Regno
2023-02-24 9:54 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 07/16] arm64: dts: mediatek: mt8192: Add GPU nodes AngeloGioacchino Del Regno
2023-02-24 9:55 ` Chen-Yu Tsai
2023-02-24 13:04 ` AngeloGioacchino Del Regno [this message]
2023-02-24 13:04 ` AngeloGioacchino Del Regno
2023-02-23 13:43 ` [PATCH v2 08/16] arm64: dts: mediatek: mt8192: Add mfg_ref_sel clock to MFG0 domain AngeloGioacchino Del Regno
2023-02-24 9:57 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 09/16] arm64: dts: mediatek: mt8192-asurada: Add MFG0 domain supply AngeloGioacchino Del Regno
2023-02-24 9:57 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 10/16] arm64: dts: mediatek: mt8192-asurada: Assign sram supply to MFG1 pd AngeloGioacchino Del Regno
2023-02-24 9:57 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 11/16] arm64: dts: mediatek: mt8192-asurada: Couple VGPU and VSRAM_OTHER regulators AngeloGioacchino Del Regno
2023-02-24 9:58 ` Chen-Yu Tsai
2023-02-24 13:05 ` AngeloGioacchino Del Regno
2023-02-23 13:43 ` [PATCH v2 12/16] arm64: dts: mediatek: mt8192-asurada: Enable GPU AngeloGioacchino Del Regno
2023-02-24 9:59 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 13/16] arm64: dts: mediatek: mt8195: Add mfg_core_tmp clock to MFG1 domain AngeloGioacchino Del Regno
2023-02-24 9:59 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 14/16] arm64: dts: mt8195: Add panfrost node for Mali-G57 Valhall Natt GPU AngeloGioacchino Del Regno
2023-02-24 10:01 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 15/16] arm64: dts: mediatek: mt8195-cherry: Enable Mali-G57 GPU AngeloGioacchino Del Regno
2023-02-24 10:02 ` Chen-Yu Tsai
2023-02-23 13:43 ` [PATCH v2 16/16] arm64: dts: mediatek: mt8186: Add GPU node AngeloGioacchino Del Regno
2023-02-24 10:02 ` Chen-Yu Tsai
2023-02-24 9:41 ` [PATCH v2 00/16] Enable GPU with DVFS support on MediaTek SoCs 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=b195aa1d-c88e-5a20-de64-e4de9406a656@collabora.com \
--to=angelogioacchino.delregno@collabora.com \
--cc=alyssa.rosenzweig@collabora.com \
--cc=devicetree@vger.kernel.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=nfraprado@collabora.com \
--cc=robh+dt@kernel.org \
--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