-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'asoc/fix/arizona' into asoc-linus
- Loading branch information
Showing
133 changed files
with
4,209 additions
and
3,037 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
CS42L73 audio CODEC | ||
|
||
Required properties: | ||
|
||
- compatible : "cirrus,cs42l73" | ||
|
||
- reg : the I2C address of the device for I2C | ||
|
||
Optional properties: | ||
|
||
- reset_gpio : a GPIO spec for the reset pin. | ||
- chgfreq : Charge Pump Frequency values 0x00-0x0F | ||
|
||
|
||
Example: | ||
|
||
codec: cs42l73@4a { | ||
compatible = "cirrus,cs42l73"; | ||
reg = <0x4a>; | ||
reset_gpio = <&gpio 10 0>; | ||
chgfreq = <0x05>; | ||
}; |
42 changes: 42 additions & 0 deletions
42
Documentation/devicetree/bindings/sound/davinci-evm-audio.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
* Texas Instruments SoC audio setups with TLV320AIC3X Codec | ||
|
||
Required properties: | ||
- compatible : "ti,da830-evm-audio" : forDM365/DA8xx/OMAPL1x/AM33xx | ||
- ti,model : The user-visible name of this sound complex. | ||
- ti,audio-codec : The phandle of the TLV320AIC3x audio codec | ||
- ti,mcasp-controller : The phandle of the McASP controller | ||
- ti,codec-clock-rate : The Codec Clock rate (in Hz) applied to the Codec | ||
- ti,audio-routing : A list of the connections between audio components. | ||
Each entry is a pair of strings, the first being the connection's sink, | ||
the second being the connection's source. Valid names for sources and | ||
sinks are the codec's pins, and the jacks on the board: | ||
|
||
Board connectors: | ||
|
||
* Headphone Jack | ||
* Line Out | ||
* Mic Jack | ||
* Line In | ||
|
||
|
||
Example: | ||
|
||
sound { | ||
compatible = "ti,da830-evm-audio"; | ||
ti,model = "DA830 EVM"; | ||
ti,audio-codec = <&tlv320aic3x>; | ||
ti,mcasp-controller = <&mcasp1>; | ||
ti,codec-clock-rate = <12000000>; | ||
ti,audio-routing = | ||
"Headphone Jack", "HPLOUT", | ||
"Headphone Jack", "HPROUT", | ||
"Line Out", "LLOUT", | ||
"Line Out", "RLOUT", | ||
"MIC3L", "Mic Bias 2V", | ||
"MIC3R", "Mic Bias 2V", | ||
"Mic Bias 2V", "Mic Jack", | ||
"LINE1L", "Line In", | ||
"LINE2L", "Line In", | ||
"LINE1R", "Line In", | ||
"LINE2R", "Line In"; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Texas Instruments - tpa6130a2 Codec module | ||
|
||
The tpa6130a2 serial control bus communicates through I2C protocols | ||
|
||
Required properties: | ||
|
||
- compatible - "string" - One of: | ||
"ti,tpa6130a2" - TPA6130A2 | ||
"ti,tpa6140a2" - TPA6140A2 | ||
|
||
|
||
- reg - <int> - I2C slave address | ||
|
||
- Vdd-supply - <phandle> - power supply regulator | ||
|
||
Optional properties: | ||
|
||
- power-gpio - gpio pin to power the device | ||
|
||
Example: | ||
|
||
tpa6130a2: tpa6130a2@60 { | ||
compatible = "ti,tpa6130a2"; | ||
reg = <0x60>; | ||
Vdd-supply = <&vmmc2>; | ||
power-gpio = <&gpio4 2 GPIO_ACTIVE_HIGH>; | ||
}; |
Oops, something went wrong.