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.7' of git://git.kernel.org/pub/scm/linux/kernel/gi…
…t/broonie/sound into for-linus ASoC: Updates for v4.7 The updates this time around are almost all driver code: - Further slow progress on the topology code. - Substantial updates and improvements for the da7219, es8328, fsl-ssi Intel and rcar drivers.
- Loading branch information
Showing
461 changed files
with
7,248 additions
and
2,394 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 |
---|---|---|
|
@@ -48,6 +48,9 @@ Felix Kuhling <[email protected]> | |
Felix Moeller <[email protected]> | ||
Filipe Lautert <[email protected]> | ||
Franck Bui-Huu <[email protected]> | ||
Frank Rowand <[email protected]> <[email protected]> | ||
Frank Rowand <[email protected]> <[email protected]> | ||
Frank Rowand <[email protected]> <[email protected]> | ||
Frank Zago <[email protected]> | ||
Greg Kroah-Hartman <greg@echidna.(none)> | ||
Greg Kroah-Hartman <[email protected]> | ||
|
@@ -66,6 +69,7 @@ Jean Tourrilhes <[email protected]> | |
Jeff Garzik <[email protected]> | ||
Jens Axboe <[email protected]> | ||
Jens Osterkamp <[email protected]> | ||
John Paul Adrian Glaubitz <[email protected]> | ||
John Stultz <[email protected]> | ||
<[email protected]> <[email protected]> | ||
<[email protected]> <[email protected]> | ||
|
@@ -79,6 +83,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]> | ||
Kuninori Morimoto <[email protected]> | ||
Leonid I Ananiev <[email protected]> | ||
Linas Vepstas <[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
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,51 @@ | ||
Texas Instruments DaVinci McBSP module | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
This binding describes the "Multi-channel Buffered Serial Port" (McBSP) | ||
audio interface found in some TI DaVinci processors like the OMAP-L138 or AM180x. | ||
|
||
|
||
Required properties: | ||
~~~~~~~~~~~~~~~~~~~~ | ||
- compatible : | ||
"ti,da850-mcbsp" : for DA850, AM180x and OPAM-L138 platforms | ||
|
||
- reg : physical base address and length of the controller memory mapped | ||
region(s). | ||
- reg-names : Should contain: | ||
* "mpu" for the main registers (required). | ||
* "dat" for the data FIFO (optional). | ||
|
||
- dmas: three element list of DMA controller phandles, DMA request line and | ||
TC channel ordered triplets. | ||
- dma-names: identifier string for each DMA request line in the dmas property. | ||
These strings correspond 1:1 with the ordered pairs in dmas. The dma | ||
identifiers must be "rx" and "tx". | ||
|
||
Optional properties: | ||
~~~~~~~~~~~~~~~~~~~~ | ||
- interrupts : Interrupt numbers for McBSP | ||
- interrupt-names : Known interrupt names are "rx" and "tx" | ||
|
||
- pinctrl-0: Should specify pin control group used for this controller. | ||
- pinctrl-names: Should contain only one value - "default", for more details | ||
please refer to pinctrl-bindings.txt | ||
|
||
Example (AM1808): | ||
~~~~~~~~~~~~~~~~~ | ||
|
||
mcbsp0: mcbsp@1d10000 { | ||
compatible = "ti,da850-mcbsp"; | ||
pinctrl-names = "default"; | ||
pinctrl-0 = <&mcbsp0_pins>; | ||
|
||
reg = <0x00110000 0x1000>, | ||
<0x00310000 0x1000>; | ||
reg-names = "mpu", "dat"; | ||
interrupts = <97 98>; | ||
interrupts-names = "rx", "tx"; | ||
dmas = <&edma0 3 1 | ||
&edma0 2 1>; | ||
dma-names = "tx", "rx"; | ||
status = "okay"; | ||
}; |
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,13 @@ | ||
PCM5102a audio CODECs | ||
|
||
These devices does not use I2C or SPI. | ||
|
||
Required properties: | ||
|
||
- compatible : set as "ti,pcm5102a" | ||
|
||
Examples: | ||
|
||
pcm5102a: pcm5102a { | ||
compatible = "ti,pcm5102a"; | ||
}; |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ Krisztian <[email protected]> and others and additional patches | |
from Jamal <[email protected]>. | ||
|
||
The end goal for syncing is to be able to insert attributes + generate | ||
events so that the an SA can be safely moved from one machine to another | ||
events so that the SA can be safely moved from one machine to another | ||
for HA purposes. | ||
The idea is to synchronize the SA so that the takeover machine can do | ||
the processing of the SA as accurate as possible if it has access to it. | ||
|
@@ -13,7 +13,7 @@ We already have the ability to generate SA add/del/upd events. | |
These patches add ability to sync and have accurate lifetime byte (to | ||
ensure proper decay of SAs) and replay counters to avoid replay attacks | ||
with as minimal loss at failover time. | ||
This way a backup stays as closely uptodate as an active member. | ||
This way a backup stays as closely up-to-date as an active member. | ||
|
||
Because the above items change for every packet the SA receives, | ||
it is possible for a lot of the events to be generated. | ||
|
@@ -163,7 +163,7 @@ If you have an SA that is getting hit by traffic in bursts such that | |
there is a period where the timer threshold expires with no packets | ||
seen, then an odd behavior is seen as follows: | ||
The first packet arrival after a timer expiry will trigger a timeout | ||
aevent; i.e we dont wait for a timeout period or a packet threshold | ||
event; i.e we don't wait for a timeout period or a packet threshold | ||
to be reached. This is done for simplicity and efficiency reasons. | ||
|
||
-JHS |
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
Oops, something went wrong.