diff mbox series

[6/8] dt-bindings: mediatek: mt8195: add audio afe document

Message ID 20210617054740.8081-7-trevor.wu@mediatek.com
State New
Headers show
Series ASoC: mediatek: Add support for MT8195 SoC | expand

Commit Message

Trevor Wu June 17, 2021, 5:47 a.m. UTC
This patch adds mt8195 audio afe document.

Signed-off-by: Trevor Wu <trevor.wu@mediatek.com>
---
 .../bindings/sound/mt8195-afe-pcm.yaml        | 72 +++++++++++++++++++
 1 file changed, 72 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/sound/mt8195-afe-pcm.yaml

Comments

Trevor Wu June 23, 2021, 8:10 a.m. UTC | #1
On Thu, 2021-06-17 at 15:26 -0600, Rob Herring wrote:
> On Thu, 17 Jun 2021 13:47:37 +0800, Trevor Wu wrote:

> > This patch adds mt8195 audio afe document.

> > 

> > Signed-off-by: Trevor Wu <trevor.wu@mediatek.com>

> > ---

> >  .../bindings/sound/mt8195-afe-pcm.yaml        | 72

> > +++++++++++++++++++

> >  1 file changed, 72 insertions(+)

> >  create mode 100644 Documentation/devicetree/bindings/sound/mt8195-

> > afe-pcm.yaml

> > 

> 

> My bot found errors running 'make DT_CHECKER_FLAGS=-m

> dt_binding_check'

> on your patch (DT_CHECKER_FLAGS is new in v5.13):

> 

> yamllint warnings/errors:

> ./Documentation/devicetree/bindings/sound/mt8195-afe-pcm.yaml:10:4:

> [warning] wrong indentation: expected 2 but found 3 (indentation)

> ./Documentation/devicetree/bindings/sound/mt8195-afe-pcm.yaml:14:7:

> [warning] wrong indentation: expected 4 but found 6 (indentation)

> 

> dtschema/dtc warnings/errors:

> Documentation/devicetree/bindings/sound/mt8195-afe-

> pcm.example.dts:19:18: fatal error: dt-bindings/clock/mt8195-clk.h:

> No such file or directory

>    19 |         #include <dt-bindings/clock/mt8195-clk.h>

>       |                  ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

> compilation terminated.

> make[1]: *** [scripts/Makefile.lib:380:

> Documentation/devicetree/bindings/sound/mt8195-afe-

> pcm.example.dt.yaml] Error 1

> make[1]: *** Waiting for unfinished jobs....

> make: *** [Makefile:1416: dt_binding_check] Error 2

> \ndoc reference errors (make refcheckdocs):

> 

> See https://patchwork.ozlabs.org/patch/1493197

> 

> This check can fail if there are any dependencies. The base for a

> patch

> series is generally the most recent rc1.

> 

> If you already ran 'make dt_binding_check' and didn't see the above

> error(s), then make sure 'yamllint' is installed and dt-schema is up

> to

> date:

> 

> pip3 install dtschema --upgrade

> 

> Please check and re-submit.

> 


Sorry, I missed the dependency declaration in the patch and I didn't
install ymallint, so I couldn't find indentation problems.
I will fix all binding problems on v2.

Thanks,
Trevor
diff mbox series

Patch

diff --git a/Documentation/devicetree/bindings/sound/mt8195-afe-pcm.yaml b/Documentation/devicetree/bindings/sound/mt8195-afe-pcm.yaml
new file mode 100644
index 000000000000..9a7f80248bb4
--- /dev/null
+++ b/Documentation/devicetree/bindings/sound/mt8195-afe-pcm.yaml
@@ -0,0 +1,72 @@ 
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/sound/mt8195-afe-pcm.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Mediatek AFE PCM controller for mt8195
+
+maintainers:
+   - Trevor Wu <trevor.wu@mediatek.com>
+
+properties:
+  compatible:
+      const: mediatek,mt8195-audio
+
+  interrupts:
+    maxItems: 1
+
+  mediatek,topckgen:
+    $ref: "/schemas/types.yaml#/definitions/phandle"
+    description: The phandle of the mediatek topckgen controller
+
+  power-domains:
+    maxItems: 1
+
+  clocks:
+    items:
+      - description: AFE clock
+      - description: audio infra sys clock
+      - description: audio infra 26M clock
+      - description: audio 26M clock
+
+  clock-names:
+    items:
+      - const: aud_afe
+      - const: infra_ao_audio
+      - const: infra_ao_audio_26m_b
+      - const: clk26m
+
+required:
+  - compatible
+  - interrupts
+  - mediatek,topckgen
+  - power-domains
+  - clocks
+  - clock-names
+
+additionalProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/clock/mt8195-clk.h>
+    #include <dt-bindings/interrupt-controller/arm-gic.h>
+    #include <dt-bindings/interrupt-controller/irq.h>
+    #include <dt-bindings/power/mt8195-power.h>
+
+    afe: mt8195-afe-pcm {
+        compatible = "mediatek,mt8195-audio";
+        interrupts = <GIC_SPI 822 IRQ_TYPE_LEVEL_HIGH 0>;
+        mediatek,topckgen = <&topckgen>;
+        power-domains = <&spm MT8195_POWER_DOMAIN_AUDIO>;
+        clocks = <&clk26m>,
+                 <&audsys CLK_AUD_AFE>,
+                 <&infracfg_ao CLK_INFRA_AO_AUDIO>,
+                 <&infracfg_ao CLK_INFRA_AO_AUDIO_26M_B>,
+        clock-names = "clk26m",
+                      "aud_afe",
+                      "infra_ao_audio",
+                      "infra_ao_audio_26m_b";
+    };
+
+...