From: Martin Povišer Date: Thu, 11 May 2023 15:05:45 +0000 (+0200) Subject: ASoC: dt-bindings: Add adi,ssm3515 amp schema X-Git-Tag: v6.6.17~3959^2~32^2~170^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51208a4d303b78642c5d5b35fb9ce963a84d21d0;p=platform%2Fkernel%2Flinux-rpi.git ASoC: dt-bindings: Add adi,ssm3515 amp schema Add a DT schema for the SSM3515 amp by Analog Devices. It's a simple mono amplifier with digital input. Signed-off-by: Martin Povišer + +description: | + SSM3515 is a mono Class-D audio amplifier with digital input. + + https://www.analog.com/media/en/technical-documentation/data-sheets/SSM3515.pdf + +allOf: + - $ref: dai-common.yaml# + +properties: + compatible: + enum: + - adi,ssm3515 + + reg: + maxItems: 1 + + '#sound-dai-cells': + const: 0 + +required: + - compatible + - reg + +unevaluatedProperties: false + +examples: + - | + i2c { + #address-cells = <1>; + #size-cells = <0>; + + codec@14 { + compatible = "adi,ssm3515"; + reg = <0x14>; + #sound-dai-cells = <0>; + sound-name-prefix = "Left Tweeter"; + }; + };