forked from torvalds/linux
-
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 tag 'asoc-v4.9' of git://git.kernel.org/pub/scm/linux/kernel/gi…
…t/broonie/sound into for-next ASoC: Updates for v4.9 Apart from the cleanups done by Morimoto-san this has very much been a driver focused release with very little generic change: - A big factoring out of the simple-card code to allow it to be shared more with the rcar generic card from Kuninori Morimoto. - Removal of some operations duplicated on the CODEC level, again by Kuninori Morimoto. - Lots more machine support for x86 systems. - New drivers for Nuvoton NAU88C10, Realtek RT5660 and RT5663.
- Loading branch information
Showing
1,364 changed files
with
24,708 additions
and
8,897 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 |
---|---|---|
|
@@ -88,6 +88,7 @@ Kay Sievers <[email protected]> | |
Kenneth W Chen <[email protected]> | ||
Konstantin Khlebnikov <[email protected]> <[email protected]> | ||
Koushik <[email protected]> | ||
Krzysztof Kozlowski <[email protected]> <[email protected]> | ||
Krzysztof Kozlowski <[email protected]> <[email protected]> | ||
Kuninori Morimoto <[email protected]> | ||
Leonid I Ananiev <[email protected]> | ||
|
@@ -158,6 +159,8 @@ Valdis Kletnieks <[email protected]> | |
Viresh Kumar <[email protected]> <[email protected]> | ||
Viresh Kumar <[email protected]> <[email protected]> | ||
Viresh Kumar <[email protected]> <[email protected]> | ||
Vladimir Davydov <[email protected]> <[email protected]> | ||
Vladimir Davydov <[email protected]> <[email protected]> | ||
Takashi YOSHII <[email protected]> | ||
Yusuke Goda <[email protected]> | ||
Gustavo Padovan <[email protected]> | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# Note: This documents additional properties of any device beyond what | ||
# is documented in Documentation/sysfs-rules.txt | ||
|
||
What: /sys/devices/*/of_path | ||
What: /sys/devices/*/of_node | ||
Date: February 2015 | ||
Contact: Device Tree mailing list <[email protected]> | ||
Description: | ||
|
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
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
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
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,16 @@ | ||
NAU8810 audio CODEC | ||
|
||
This device supports I2C only. | ||
|
||
Required properties: | ||
|
||
- compatible : "nuvoton,nau8810" | ||
|
||
- reg : the I2C address of the device. | ||
|
||
Example: | ||
|
||
codec: nau8810@1a { | ||
compatible = "nuvoton,nau8810"; | ||
reg = <0x1a>; | ||
}; |
42 changes: 42 additions & 0 deletions
42
Documentation/devicetree/bindings/sound/nvidia,tegra-audio-sgtl5000.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 @@ | ||
NVIDIA Tegra audio complex, with SGTL5000 CODEC | ||
|
||
Required properties: | ||
- compatible : "nvidia,tegra-audio-sgtl5000" | ||
- clocks : Must contain an entry for each entry in clock-names. | ||
See ../clocks/clock-bindings.txt for details. | ||
- clock-names : Must include the following entries: | ||
- pll_a | ||
- pll_a_out0 | ||
- mclk (The Tegra cdev1/extern1 clock, which feeds the CODEC's mclk) | ||
- nvidia,model : The user-visible name of this sound complex. | ||
- nvidia,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 SGTL5000's pins (as documented in its binding), and the jacks | ||
on the board: | ||
|
||
* Headphone Jack | ||
* Line In Jack | ||
* Mic Jack | ||
|
||
- nvidia,i2s-controller : The phandle of the Tegra I2S controller that's | ||
connected to the CODEC. | ||
- nvidia,audio-codec : The phandle of the SGTL5000 audio codec. | ||
|
||
Example: | ||
|
||
sound { | ||
compatible = "toradex,tegra-audio-sgtl5000-apalis_t30", | ||
"nvidia,tegra-audio-sgtl5000"; | ||
nvidia,model = "Toradex Apalis T30"; | ||
nvidia,audio-routing = | ||
"Headphone Jack", "HP_OUT", | ||
"LINE_IN", "Line In Jack", | ||
"MIC_IN", "Mic Jack"; | ||
nvidia,i2s-controller = <&tegra_i2s2>; | ||
nvidia,audio-codec = <&sgtl5000>; | ||
clocks = <&tegra_car TEGRA30_CLK_PLL_A>, | ||
<&tegra_car TEGRA30_CLK_PLL_A_OUT0>, | ||
<&tegra_car TEGRA30_CLK_EXTERN1>; | ||
clock-names = "pll_a", "pll_a_out0", "mclk"; | ||
}; |
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
75 changes: 0 additions & 75 deletions
75
Documentation/devicetree/bindings/sound/renesas,rsrc-card.txt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.