blob: 7182ac4f1e6588fd502e42171b892dc04fc13b6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Simple Amplifier Audio Driver
Required properties:
- compatible : "dioo,dio2125" or "simple-audio-amplifier"
- enable-gpios : the gpio connected to the enable pin of the simple amplifier
Optional properties:
- VCC-supply : power supply for the device, as covered
in Documentation/devicetree/bindings/regulator/regulator.txt
Example:
amp: analog-amplifier {
compatible = "simple-audio-amplifier";
VCC-supply = <®ulator>;
enable-gpios = <&gpio GPIOH_3 0>;
};
|