WIP FPC-III support
[linux/fpc-iii.git] / Documentation / devicetree / bindings / sound / rohm,bd28623.yaml
blob859ce64da1526ac6722175138509bd2277ca487c
1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/sound/rohm,bd28623.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: ROHM BD28623MUV Class D speaker amplifier for digital input
9 description:
10   This codec does not have any control buses such as I2C, it detect
11   format and rate of I2S signal automatically. It has two signals
12   that can be connected to GPIOs reset and mute.
14 maintainers:
15   - Katsuhiro Suzuki <katsuhiro@katsuster.net>
17 properties:
18   compatible:
19     const: rohm,bd28623
21   "#sound-dai-cells":
22     const: 0
24   VCCA-supply:
25     description:
26       regulator phandle for the VCCA (for analog) power supply
28   VCCP1-supply:
29     description:
30       regulator phandle for the VCCP1 (for ch1) power supply
32   VCCP2-supply:
33     description:
34       regulator phandle for the VCCP2 (for ch2) power supply
36   reset-gpios:
37     maxItems: 1
38     description:
39       GPIO specifier for the active low reset line
41   mute-gpios:
42     maxItems: 1
43     description:
44       GPIO specifier for the active low mute line
46 required:
47   - compatible
48   - VCCA-supply
49   - VCCP1-supply
50   - VCCP2-supply
51   - "#sound-dai-cells"
53 additionalProperties: false
55 examples:
56   - |
57     #include <dt-bindings/gpio/gpio.h>
58     codec {
59       compatible = "rohm,bd28623";
60       #sound-dai-cells = <0>;
62       VCCA-supply = <&vcc_reg>;
63       VCCP1-supply = <&vcc_reg>;
64       VCCP2-supply = <&vcc_reg>;
65       reset-gpios = <&gpio 0 GPIO_ACTIVE_LOW>;
66       mute-gpios = <&gpio 1 GPIO_ACTIVE_LOW>;
67     };