2019-03-15 13:57:58

by Neil Armstrong

[permalink] [raw]
Subject: [PATCH v2 0/2] arm64: meson-gxm: Add support for the Mali T820 GPU

This patchset adds :
- Optional reset properties in the midgard bindings
- Mali T820 Node in Amlogic Meson GXM DTSI

Changes since v1:
- Updated midgard DT wording following the recently submitted
bifrost bindings

Christian Hewitt (1):
arm64: dts: meson-gxm: Add Mali-T820 node

Neil Armstrong (1):
dt-bindings: gpu: mali-midgard: Add resets property

.../bindings/gpu/arm,mali-midgard.txt | 14 ++++++++++
arch/arm64/boot/dts/amlogic/meson-gxm.dtsi | 27 +++++++++++++++++++
2 files changed, 41 insertions(+)

--
2.20.1



2019-03-15 13:58:03

by Neil Armstrong

[permalink] [raw]
Subject: [PATCH v2 2/2] arm64: dts: meson-gxm: Add Mali-T820 node

From: Christian Hewitt <[email protected]>

The Amlogic Meson GXM SoC embeds an ARM Mali T820 GPU.

This patch adds the node with all the needed properties to power
on the GPU.

This has been tested with the work-in-progress PanFrost project
aiming support for ARM Mali Midgard and later GPUs.

Signed-off-by: Christian Hewitt <[email protected]>
Signed-off-by: Neil Armstrong <[email protected]>
---
arch/arm64/boot/dts/amlogic/meson-gxm.dtsi | 27 ++++++++++++++++++++++
1 file changed, 27 insertions(+)

diff --git a/arch/arm64/boot/dts/amlogic/meson-gxm.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxm.dtsi
index 247888d68a3a..35e59d390903 100644
--- a/arch/arm64/boot/dts/amlogic/meson-gxm.dtsi
+++ b/arch/arm64/boot/dts/amlogic/meson-gxm.dtsi
@@ -91,6 +91,33 @@
reset-names = "phy";
status = "okay";
};
+
+ mali: gpu@c0000 {
+ compatible = "amlogic,meson-gxm-mali", "arm,mali-t820";
+ reg = <0x0 0xc0000 0x0 0x40000>;
+ interrupt-parent = <&gic>;
+ interrupts = <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>,
+ <GIC_SPI 162 IRQ_TYPE_LEVEL_HIGH>;
+ interrupt-names = "gpu", "mmu", "job";
+ clocks = <&clkc CLKID_MALI>;
+ resets = <&reset RESET_MALI_CAPB3>, <&reset RESET_MALI>;
+
+ /*
+ * Mali clocking is provided by two identical clock paths
+ * MALI_0 and MALI_1 muxed to a single clock by a glitch
+ * free mux to safely change frequency while running.
+ */
+ assigned-clocks = <&clkc CLKID_MALI_0_SEL>,
+ <&clkc CLKID_MALI_0>,
+ <&clkc CLKID_MALI>; /* Glitch free mux */
+ assigned-clock-parents = <&clkc CLKID_FCLK_DIV3>,
+ <0>, /* Do Nothing */
+ <&clkc CLKID_MALI_0>;
+ assigned-clock-rates = <0>, /* Do Nothing */
+ <666666666>,
+ <0>; /* Do Nothing */
+ };
};

&clkc_AO {
--
2.20.1


2019-03-15 13:58:55

by Neil Armstrong

[permalink] [raw]
Subject: [PATCH v2 1/2] dt-bindings: gpu: mali-midgard: Add resets property

The Amlogic ARM Mali Midgard requires reset controls to power on and
software reset the GPU, adds these as optional in the bindings.

Signed-off-by: Neil Armstrong <[email protected]>
---
.../devicetree/bindings/gpu/arm,mali-midgard.txt | 14 ++++++++++++++
1 file changed, 14 insertions(+)

diff --git a/Documentation/devicetree/bindings/gpu/arm,mali-midgard.txt b/Documentation/devicetree/bindings/gpu/arm,mali-midgard.txt
index 18a2cde2e5f3..1b1a74129141 100644
--- a/Documentation/devicetree/bindings/gpu/arm,mali-midgard.txt
+++ b/Documentation/devicetree/bindings/gpu/arm,mali-midgard.txt
@@ -37,6 +37,20 @@ Optional properties:
- operating-points-v2 : Refer to Documentation/devicetree/bindings/opp/opp.txt
for details.

+- resets : Phandle of the GPU reset line.
+
+Vendor-specific bindings
+------------------------
+
+The Mali GPU is integrated very differently from one SoC to
+another. In order to accomodate those differences, you have the option
+to specify one more vendor-specific compatible, among:
+
+- "amlogic,meson-gxm-mali"
+ Required properties:
+ - resets : Should contain phandles of :
+ + GPU reset line
+ + GPU APB glue reset line

Example for a Mali-T760:

--
2.20.1


2019-03-31 06:42:19

by Rob Herring (Arm)

[permalink] [raw]
Subject: Re: [PATCH v2 1/2] dt-bindings: gpu: mali-midgard: Add resets property

On Fri, 15 Mar 2019 14:56:54 +0100, Neil Armstrong wrote:
> The Amlogic ARM Mali Midgard requires reset controls to power on and
> software reset the GPU, adds these as optional in the bindings.
>
> Signed-off-by: Neil Armstrong <[email protected]>
> ---
> .../devicetree/bindings/gpu/arm,mali-midgard.txt | 14 ++++++++++++++
> 1 file changed, 14 insertions(+)
>

Reviewed-by: Rob Herring <[email protected]>


2019-04-01 08:50:03

by Neil Armstrong

[permalink] [raw]
Subject: Re: [PATCH v2 0/2] arm64: meson-gxm: Add support for the Mali T820 GPU

On 15/03/2019 14:56, Neil Armstrong wrote:
> This patchset adds :
> - Optional reset properties in the midgard bindings
> - Mali T820 Node in Amlogic Meson GXM DTSI
>
> Changes since v1:
> - Updated midgard DT wording following the recently submitted
> bifrost bindings
>
> Christian Hewitt (1):
> arm64: dts: meson-gxm: Add Mali-T820 node
>
> Neil Armstrong (1):
> dt-bindings: gpu: mali-midgard: Add resets property
>
> .../bindings/gpu/arm,mali-midgard.txt | 14 ++++++++++
> arch/arm64/boot/dts/amlogic/meson-gxm.dtsi | 27 +++++++++++++++++++
> 2 files changed, 41 insertions(+)
>

Kevin, can you take both in your tree now the bindings are reviewed ?

Thanks,
Neil

2019-04-02 04:51:05

by Kevin Hilman

[permalink] [raw]
Subject: Re: [PATCH v2 0/2] arm64: meson-gxm: Add support for the Mali T820 GPU

Neil Armstrong <[email protected]> writes:

> On 15/03/2019 14:56, Neil Armstrong wrote:
>> This patchset adds :
>> - Optional reset properties in the midgard bindings
>> - Mali T820 Node in Amlogic Meson GXM DTSI
>>
>> Changes since v1:
>> - Updated midgard DT wording following the recently submitted
>> bifrost bindings
>>
>> Christian Hewitt (1):
>> arm64: dts: meson-gxm: Add Mali-T820 node
>>
>> Neil Armstrong (1):
>> dt-bindings: gpu: mali-midgard: Add resets property
>>
>> .../bindings/gpu/arm,mali-midgard.txt | 14 ++++++++++
>> arch/arm64/boot/dts/amlogic/meson-gxm.dtsi | 27 +++++++++++++++++++
>> 2 files changed, 41 insertions(+)
>>
>
> Kevin, can you take both in your tree now the bindings are reviewed ?

Yes.

Queud for v5.2 (branch: v5.2/dt64)

Thanks,

Kevin