blob: 5e6040c2c2e9c34019dceb93e439504e4e5af9ad [file] [log] [blame]
Hebbar, Gururajac24fdc82012-08-27 18:56:44 +05301Texas Instruments - tlv320aic3x Codec module
2
3The tlv320aic3x serial control bus communicates through I2C protocols
4
5Required properties:
Mark Brownf2c4fa62013-07-16 13:36:05 +01006
7- compatible - "string" - One of:
8 "ti,tlv320aic3x" - Generic TLV320AIC3x device
9 "ti,tlv320aic33" - TLV320AIC33
10 "ti,tlv320aic3007" - TLV320AIC3007
Mark Browncbaa5682013-07-16 13:39:52 +010011 "ti,tlv320aic3106" - TLV320AIC3106
Mark Brownf2c4fa62013-07-16 13:36:05 +010012
13
Hebbar, Gururajac24fdc82012-08-27 18:56:44 +053014- reg - <int> - I2C slave address
15
16
17Optional properties:
18
19- gpio-reset - gpio pin number used for codec reset
20- ai3x-gpio-func - <array of 2 int> - AIC3X_GPIO1 & AIC3X_GPIO2 Functionality
Hebbar Gururajae2e8bfd2013-01-31 18:23:04 +053021- ai3x-micbias-vg - MicBias Voltage required.
22 1 - MICBIAS output is powered to 2.0V,
23 2 - MICBIAS output is powered to 2.5V,
24 3 - MICBIAS output is connected to AVDD,
25 If this node is not mentioned or if the value is incorrect, then MicBias
26 is powered down.
Jyri Sarhabe7c5922013-09-17 12:26:06 +030027- AVDD-supply, IOVDD-supply, DRVDD-supply, DVDD-supply : power supplies for the
28 device as covered in Documentation/devicetree/bindings/regulator/regulator.txt
Hebbar, Gururajac24fdc82012-08-27 18:56:44 +053029
Jyri Sarhac9f3de42013-09-17 12:26:07 +030030CODEC output pins:
31 * LLOUT
32 * RLOUT
33 * MONO_LOUT
34 * HPLOUT
35 * HPROUT
36 * HPLCOM
37 * HPRCOM
38
39CODEC input pins:
40 * MIC3L
41 * MIC3R
42 * LINE1L
43 * LINE2L
44 * LINE1R
45 * LINE2R
46
47The pins can be used in referring sound node's audio-routing property.
48
Hebbar, Gururajac24fdc82012-08-27 18:56:44 +053049Example:
50
51tlv320aic3x: tlv320aic3x@1b {
52 compatible = "ti,tlv320aic3x";
53 reg = <0x1b>;
Jyri Sarhabe7c5922013-09-17 12:26:06 +030054
55 AVDD-supply = <&regulator>;
56 IOVDD-supply = <&regulator>;
57 DRVDD-supply = <&regulator>;
58 DVDD-supply = <&regulator>;
Hebbar, Gururajac24fdc82012-08-27 18:56:44 +053059};