brintos

brintos / linux-shallow public Read only

0
0
Text · 1.4 KiB · 9852776 Raw
76 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/socionext,uniphier-evea.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: UniPhier EVEA SoC-internal sound codec8 9maintainers:10  - <alsa-devel@alsa-project.org>11 12allOf:13  - $ref: dai-common.yaml#14 15properties:16  compatible:17    const: socionext,uniphier-evea18 19  reg:20    maxItems: 121 22  clock-names:23    items:24      - const: evea25      - const: exiv26 27  clocks:28    minItems: 229    maxItems: 230 31  reset-names:32    items:33      - const: evea34      - const: exiv35      - const: adamv36 37  resets:38    minItems: 339    maxItems: 340 41  "#sound-dai-cells":42    const: 143 44patternProperties:45  "^port@[0-9]$":46    description: |47      Port number of DT node is specified by the following DAI channels.48        0: line149        1: hp50        2: line251    $ref: audio-graph-port.yaml#52    unevaluatedProperties: false53 54unevaluatedProperties: false55 56required:57  - compatible58  - reg59  - clock-names60  - clocks61  - reset-names62  - resets63  - "#sound-dai-cells"64 65examples:66  - |67    codec@57900000 {68        compatible = "socionext,uniphier-evea";69        reg = <0x57900000 0x1000>;70        clock-names = "evea", "exiv";71        clocks = <&sys_clk 41>, <&sys_clk 42>;72        reset-names = "evea", "exiv", "adamv";73        resets = <&sys_rst 41>, <&sys_rst 42>, <&adamv_rst 0>;74        #sound-dai-cells = <1>;75    };76