The Allwinner H616 SoC contains a Mali-G31 MP2 GPU, which is of the Mali
Bifrost family. There is a power domain specifically for that GPU, which
needs to be enabled to make use of the it.

Add the DT nodes for those two devices, and link them together through
the "power-domains" property.
Any board wishing to use the GPU would need to enable the GPU node and
specify the "mali-supply" regulator.

Signed-off-by: Andre Przywara <andre.przyw...@arm.com>
---
 .../arm64/boot/dts/allwinner/sun50i-h616.dtsi | 21 +++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi 
b/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi
index cdce3dcb8ec02..ceedae9e399b6 100644
--- a/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi
+++ b/arch/arm64/boot/dts/allwinner/sun50i-h616.dtsi
@@ -150,6 +150,21 @@ soc {
                #size-cells = <1>;
                ranges = <0x0 0x0 0x0 0x40000000>;
 
+               gpu: gpu@1800000 {
+                       compatible = "allwinner,sun50i-h616-mali",
+                                    "arm,mali-bifrost";
+                       reg = <0x1800000 0x40000>;
+                       interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>,
+                                    <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>,
+                                    <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
+                       interrupt-names = "job", "mmu", "gpu";
+                       clocks = <&ccu CLK_GPU0>, <&ccu CLK_BUS_GPU>;
+                       clock-names = "core", "bus";
+                       power-domains = <&prcm_ppu 2>;
+                       resets = <&ccu RST_BUS_GPU>;
+                       status = "disabled";
+               };
+
                crypto: crypto@1904000 {
                        compatible = "allwinner,sun50i-h616-crypto";
                        reg = <0x01904000 0x800>;
@@ -874,6 +889,12 @@ r_ccu: clock@7010000 {
                        #reset-cells = <1>;
                };
 
+               prcm_ppu: power-controller@7010250 {
+                       compatible = "allwinner,sun50i-h616-prcm-ppu";
+                       reg = <0x07010250 0x10>;
+                       #power-domain-cells = <1>;
+               };
+
                nmi_intc: interrupt-controller@7010320 {
                        compatible = "allwinner,sun50i-h616-nmi",
                                     "allwinner,sun9i-a80-nmi";
-- 
2.46.3

Reply via email to