diff options
author | Peter Rosin <peda@axentia.se> | 2016-05-14 17:09:38 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-05-30 11:15:55 -0400 |
commit | e1f90fc2d2767145c64fad838e29d1a43abb4792 (patch) | |
tree | dccde4a54ffb81d3ad7179f76a24e94cff63f723 | |
parent | 1a695a905c18548062509178b98bc91e67510864 (diff) |
ASoC: max8960: add bindings for the max9860 codec
This adds the device tree binding documentation for the Maxim Integrated
MAX9860 mono audio voice codec.
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | Documentation/devicetree/bindings/sound/max9860.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sound/max9860.txt b/Documentation/devicetree/bindings/sound/max9860.txt new file mode 100644 index 000000000000..e0d4e95e31b3 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/max9860.txt | |||
@@ -0,0 +1,28 @@ | |||
1 | MAX9860 Mono Audio Voice Codec | ||
2 | |||
3 | Required properties: | ||
4 | |||
5 | - compatible : "maxim,max9860" | ||
6 | |||
7 | - reg : the I2C address of the device | ||
8 | |||
9 | - AVDD-supply, DVDD-supply and DVDDIO-supply : power supplies for | ||
10 | the device, as covered in bindings/regulator/regulator.txt | ||
11 | |||
12 | - clock-names : Required element: "mclk". | ||
13 | |||
14 | - clocks : A clock specifier for the clock connected as MCLK. | ||
15 | |||
16 | Examples: | ||
17 | |||
18 | max9860: max9860@10 { | ||
19 | compatible = "maxim,max9860"; | ||
20 | reg = <0x10>; | ||
21 | |||
22 | AVDD-supply = <®_1v8>; | ||
23 | DVDD-supply = <®_1v8>; | ||
24 | DVDDIO-supply = <®_3v0>; | ||
25 | |||
26 | clock-names = "mclk"; | ||
27 | clocks = <&pck2>; | ||
28 | }; | ||