brintos

brintos / linux-shallow public Read only

0
0
Text · 790 B · 5db1f98 Raw
46 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/sound/simple-audio-amplifier.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Simple Audio Amplifier8 9maintainers:10  - Jerome Brunet <jbrunet@baylibre.com>11 12allOf:13  - $ref: dai-common.yaml#14 15properties:16  compatible:17    enum:18      - dioo,dio212519      - simple-audio-amplifier20 21  enable-gpios:22    maxItems: 123 24  VCC-supply:25    description: >26      power supply for the device27 28  sound-name-prefix: true29 30required:31  - compatible32 33additionalProperties: false34 35examples:36  - |37    #include <dt-bindings/gpio/meson8-gpio.h>38 39    analog-amplifier {40        compatible = "simple-audio-amplifier";41        VCC-supply = <&regulator>;42        enable-gpios = <&gpio GPIOH_3 0>;43    };44 45...46