Re: [PATCH v5 1/2] dt-bindings: Add DT schema for Arm Mali Valhall GPU

2021-02-05 Thread Rob Herring
On Thu, Jan 28, 2021 at 10:23:41AM +0800, Nick Fan wrote:
> Add devicetree schema for Arm Mali Valhall GPU
> 
> Define a compatible string for the Mali Valhall GPU
> for Mediatek's SoC platform.
> 
> Signed-off-by: Nick Fan 
> ---
>  .../bindings/gpu/arm,mali-valhall.yaml| 217 ++
>  1 file changed, 217 insertions(+)
>  create mode 100644 
> Documentation/devicetree/bindings/gpu/arm,mali-valhall.yaml
> 
> diff --git a/Documentation/devicetree/bindings/gpu/arm,mali-valhall.yaml 
> b/Documentation/devicetree/bindings/gpu/arm,mali-valhall.yaml
> new file mode 100644
> index ..275c14ad173a
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/gpu/arm,mali-valhall.yaml
> @@ -0,0 +1,217 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +# Copyright (c) 2020 MediaTek Inc.
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/gpu/arm,mali-valhall.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: ARM Mali Valhall GPU
> +
> +maintainers:
> +  - Rob Herring 
> +
> +properties:
> +  $nodename:
> +pattern: '^gpu@[a-f0-9]+$'
> +
> +  compatible:
> +items:
> +  - enum:
> +  - mediatek,mt8192-mali
> +  - const: arm,mali-valhall
> +
> +  reg:
> +maxItems: 1
> +
> +  interrupts:
> +items:
> +  - description: GPU interrupt
> +  - description: MMU interrupt
> +  - description: Job interrupt
> +
> +  interrupt-names:
> +items:
> +  - const: gpu
> +  - const: mmu
> +  - const: job

Please use the same order as midgard and bifrost.

> +
> +  clocks:
> +minItems: 1
> +
> +  power-domains:
> +minItems: 1
> +maxItems: 5
> +
> +  mali-supply: true
> +  sram-supply: true
> +
> +  operating-points-v2: true
> +  opp_table: true

opp-table

> +
> +  "#cooling-cells":
> +const: 2
> +
> +required:
> +  - compatible
> +  - reg
> +  - interrupts
> +  - interrupt-names
> +  - clocks
> +
> +additionalProperties: false
> +
> +allOf:
> +  - if:
> +  properties:
> +compatible:
> +  contains:
> +const: mediatek,mt8192-mali
> +then:
> +  properties:
> +power-domains:
> +  minItems: 5
> +  maxItems: 5
> +
> +power-domain-names:
> +  items:
> +- const: core0
> +- const: core1
> +- const: core2
> +- const: core3
> +- const: core4
> +
> +  required:
> +- sram-supply
> +- power-domains
> +
> +examples:
> +  - |
> +#include 
> +#include 
> +
> +gpu@1300 {
> +   compatible = "mediatek,mt8192-mali", "arm,mali-valhall";

Do 4 space indent.

> +   reg = <0x1300 0x4000>;
> +   interrupts =
> +   ,
> +   ,
> +   ;
> +   interrupt-names =
> +   "gpu",
> +   "mmu",
> +   "job";
> +
> +   clocks = < 0>;
> +
> +   power-domains =
> +   < 4>,
> +   < 5>,
> +   < 6>,
> +   < 7>,
> +   < 8>;
> +
> +   operating-points-v2 = <_opp_table>;
> +   mali-supply = <_7_vbuck1>;
> +   sram-supply = <_vsram_others_ldo_reg>;
> +   gpu_opp_table: opp_table {
> + compatible = "operating-points-v2";

And then the same here.

> + opp-shared;
> +
> + opp-35800 {
> +   opp-hz = /bits/ 64 <35800>;
> +   opp-microvolt = <606250>,
> +   <75>;

Isn't this supposed to be either a single value or ?

> + };
> +
> + opp-39900 {
> +   opp-hz = /bits/ 64 <39900>;
> +   opp-microvolt = <618750>,
> +   <75>;
> + };
> +
> + opp-44000 {
> +   opp-hz = /bits/ 64 <44000>;
> +   opp-microvolt = <631250>,
> +   <75>;
> + };
> +
> + opp-48200 {
> +   opp-hz = /bits/ 64 <48200>;
> +   opp-microvolt = <643750>,
> +   <75>;
> + };
> +
> + opp-52300 {
> +   opp-hz = /bits/ 64 <52300>;
> +   opp-microvolt = <656250>,
> +   <75>;
> + };
> +
> + opp-56400 {
> +   opp-hz = /bits/ 64 <56400>;
> +   opp-microvolt = <668750>,
> +   <75>;
> + };
> +
> + opp-60500 {
> +   opp-hz = /bits/ 64 <60500>;
> +   opp-microvolt = <681250>,
> +   <75>;
> + };
> +
> + opp-64700 {
> +   opp-hz = 

[PATCH v5 1/2] dt-bindings: Add DT schema for Arm Mali Valhall GPU

2021-01-27 Thread Nick Fan
Add devicetree schema for Arm Mali Valhall GPU

Define a compatible string for the Mali Valhall GPU
for Mediatek's SoC platform.

Signed-off-by: Nick Fan 
---
 .../bindings/gpu/arm,mali-valhall.yaml| 217 ++
 1 file changed, 217 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/gpu/arm,mali-valhall.yaml

diff --git a/Documentation/devicetree/bindings/gpu/arm,mali-valhall.yaml 
b/Documentation/devicetree/bindings/gpu/arm,mali-valhall.yaml
new file mode 100644
index ..275c14ad173a
--- /dev/null
+++ b/Documentation/devicetree/bindings/gpu/arm,mali-valhall.yaml
@@ -0,0 +1,217 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+# Copyright (c) 2020 MediaTek Inc.
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/gpu/arm,mali-valhall.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: ARM Mali Valhall GPU
+
+maintainers:
+  - Rob Herring 
+
+properties:
+  $nodename:
+pattern: '^gpu@[a-f0-9]+$'
+
+  compatible:
+items:
+  - enum:
+  - mediatek,mt8192-mali
+  - const: arm,mali-valhall
+
+  reg:
+maxItems: 1
+
+  interrupts:
+items:
+  - description: GPU interrupt
+  - description: MMU interrupt
+  - description: Job interrupt
+
+  interrupt-names:
+items:
+  - const: gpu
+  - const: mmu
+  - const: job
+
+  clocks:
+minItems: 1
+
+  power-domains:
+minItems: 1
+maxItems: 5
+
+  mali-supply: true
+  sram-supply: true
+
+  operating-points-v2: true
+  opp_table: true
+
+  "#cooling-cells":
+const: 2
+
+required:
+  - compatible
+  - reg
+  - interrupts
+  - interrupt-names
+  - clocks
+
+additionalProperties: false
+
+allOf:
+  - if:
+  properties:
+compatible:
+  contains:
+const: mediatek,mt8192-mali
+then:
+  properties:
+power-domains:
+  minItems: 5
+  maxItems: 5
+
+power-domain-names:
+  items:
+- const: core0
+- const: core1
+- const: core2
+- const: core3
+- const: core4
+
+  required:
+- sram-supply
+- power-domains
+
+examples:
+  - |
+#include 
+#include 
+
+gpu@1300 {
+   compatible = "mediatek,mt8192-mali", "arm,mali-valhall";
+   reg = <0x1300 0x4000>;
+   interrupts =
+   ,
+   ,
+   ;
+   interrupt-names =
+   "gpu",
+   "mmu",
+   "job";
+
+   clocks = < 0>;
+
+   power-domains =
+   < 4>,
+   < 5>,
+   < 6>,
+   < 7>,
+   < 8>;
+
+   operating-points-v2 = <_opp_table>;
+   mali-supply = <_7_vbuck1>;
+   sram-supply = <_vsram_others_ldo_reg>;
+   gpu_opp_table: opp_table {
+ compatible = "operating-points-v2";
+ opp-shared;
+
+ opp-35800 {
+   opp-hz = /bits/ 64 <35800>;
+   opp-microvolt = <606250>,
+   <75>;
+ };
+
+ opp-39900 {
+   opp-hz = /bits/ 64 <39900>;
+   opp-microvolt = <618750>,
+   <75>;
+ };
+
+ opp-44000 {
+   opp-hz = /bits/ 64 <44000>;
+   opp-microvolt = <631250>,
+   <75>;
+ };
+
+ opp-48200 {
+   opp-hz = /bits/ 64 <48200>;
+   opp-microvolt = <643750>,
+   <75>;
+ };
+
+ opp-52300 {
+   opp-hz = /bits/ 64 <52300>;
+   opp-microvolt = <656250>,
+   <75>;
+ };
+
+ opp-56400 {
+   opp-hz = /bits/ 64 <56400>;
+   opp-microvolt = <668750>,
+   <75>;
+ };
+
+ opp-60500 {
+   opp-hz = /bits/ 64 <60500>;
+   opp-microvolt = <681250>,
+   <75>;
+ };
+
+ opp-64700 {
+   opp-hz = /bits/ 64 <64700>;
+   opp-microvolt = <693750>,
+   <75>;
+ };
+
+ opp-68800 {
+   opp-hz = /bits/ 64 <68800>;
+   opp-microvolt = <706250>,
+   <75>;
+ };
+
+ opp-72400 {
+   opp-hz = /bits/ 64 <72400>;
+   opp-microvolt = <725000>,
+   <75>;
+ };
+
+ opp-76000 {
+   opp-hz = /bits/ 64