PCM1771/3 is a simple audio codec that can be enabled through an enable-gpio.
Signed-off-by: H. Nikolaus Schaller <[email protected]> --- .../devicetree/bindings/sound/pcm1773.yaml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/pcm1773.yaml diff --git a/Documentation/devicetree/bindings/sound/pcm1773.yaml b/Documentation/devicetree/bindings/sound/pcm1773.yaml new file mode 100644 index 0000000000000..f3e640705bf70 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/pcm1773.yaml @@ -0,0 +1,32 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/bindings/sound/pcm1773.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Texas Instruments pcm1773 audio codec + +maintainers: + - [email protected] + +description: |+ + PCM1771 is a simple audio codec that can be enabled + through a gpio. + +properties: + compatible: + const: ti,pcm1773 + +required: + - compatible + +additionalProperties: false + +examples: + - | + audio-codec { + compatible = "ti,pcm1773"; + enable-gpios = <&gpio4 22 GPIO_ACTIVE_LOW>; + }; + +... -- 2.50.1 (Apple Git-155)
