brintos

brintos / linux-shallow public Read only

0
0
Text · 866 B · b36c35e Raw
49 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/irondevice,sma1303.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Iron Device SMA1303 Audio Amplifier8 9maintainers:10  - Kiseok Jo <kiseok.jo@irondevice.com>11 12description:13  SMA1303 digital class-D audio amplifier14  with an integrated boost converter.15 16allOf:17  - $ref: dai-common.yaml#18 19properties:20  compatible:21    enum:22      - irondevice,sma130323 24  reg:25    maxItems: 126 27  '#sound-dai-cells':28    const: 129 30required:31  - compatible32  - reg33  - '#sound-dai-cells'34 35additionalProperties: false36 37examples:38  - |39    i2c {40        #address-cells = <1>;41        #size-cells = <0>;42 43        amplifier@1e {44            compatible = "irondevice,sma1303";45            reg = <0x1e>;46            #sound-dai-cells = <1>;47        };48    };49