brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · d412531 Raw
63 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/sound/asahi-kasei,ak4619.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: AK4619 I2C transmitter8 9maintainers:10  - Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>11  - Khanh Le <khanh.le.xr@renesas.com>12 13allOf:14  - $ref: dai-common.yaml#15 16properties:17  compatible:18    const: asahi-kasei,ak461919 20  reg:21    maxItems: 122 23  clocks:24    maxItems: 125 26  clock-names:27    items:28      - const: mclk29 30  "#sound-dai-cells":31    const: 032 33  port:34    $ref: audio-graph-port.yaml#35    unevaluatedProperties: false36 37required:38  - compatible39  - reg40 41unevaluatedProperties: false42 43examples:44  - |45    i2c {46        #address-cells = <1>;47        #size-cells = <0>;48        codec@10 {49            compatible = "asahi-kasei,ak4619";50            reg = <0x10>;51 52            clocks = <&rcar_sound>;53            clock-names = "mclk";54 55            #sound-dai-cells = <0>;56            port {57                 ak4619_endpoint: endpoint {58                       remote-endpoint = <&rsnd_endpoint>;59                  };60            };61        };62    };63