7 * Must contain one of the following:
17 * which must be preceded by one of the following vendor specifics:
18 + "amlogic,meson-gxm-mali"
19 + "rockchip,rk3288-mali"
20 + "rockchip,rk3399-mali"
22 - reg : Physical base address of the device and length of the register area.
24 - interrupts : Contains the three IRQ lines required by Mali Midgard devices.
26 - interrupt-names : Contains the names of IRQ resources in the order they were
27 provided in the interrupts property. Must contain: "job", "mmu", "gpu".
32 - clocks : Phandle to clock for the Mali Midgard device.
34 - mali-supply : Phandle to regulator for the Mali device. Refer to
35 Documentation/devicetree/bindings/regulator/regulator.txt for details.
37 - operating-points-v2 : Refer to Documentation/devicetree/bindings/opp/opp.txt
40 - resets : Phandle of the GPU reset line.
42 Vendor-specific bindings
43 ------------------------
45 The Mali GPU is integrated very differently from one SoC to
46 another. In order to accomodate those differences, you have the option
47 to specify one more vendor-specific compatible, among:
49 - "amlogic,meson-gxm-mali"
51 - resets : Should contain phandles of :
53 + GPU APB glue reset line
55 Example for a Mali-T760:
58 compatible = "rockchip,rk3288-mali", "arm,mali-t760";
59 reg = <0xffa30000 0x10000>;
60 interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>,
61 <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
62 <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>;
63 interrupt-names = "job", "mmu", "gpu";
64 clocks = <&cru ACLK_GPU>;
65 mali-supply = <&vdd_gpu>;
66 operating-points-v2 = <&gpu_opp_table>;
67 power-domains = <&power RK3288_PD_GPU>;
70 gpu_opp_table: opp_table0 {
71 compatible = "operating-points-v2";
74 opp-hz = /bits/ 64 <533000000>;
75 opp-microvolt = <1250000>;
78 opp-hz = /bits/ 64 <450000000>;
79 opp-microvolt = <1150000>;
82 opp-hz = /bits/ 64 <400000000>;
83 opp-microvolt = <1125000>;
86 opp-hz = /bits/ 64 <350000000>;
87 opp-microvolt = <1075000>;
90 opp-hz = /bits/ 64 <266000000>;
91 opp-microvolt = <1025000>;
94 opp-hz = /bits/ 64 <160000000>;
95 opp-microvolt = <925000>;
98 opp-hz = /bits/ 64 <100000000>;
99 opp-microvolt = <912500>;