-
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 branches 'asoc/topic/samsung', 'asoc/topic/sgtl…
…5000', 'asoc/topic/sti' and 'asoc/topic/sunxi' into asoc-next
- Loading branch information
Showing
23 changed files
with
943 additions
and
621 deletions.
There are no files selected for viewing
35 changes: 0 additions & 35 deletions
35
Documentation/devicetree/bindings/sound/samsung,odroidx2-max98090.txt
This file was deleted.
Oops, something went wrong.
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,34 @@ | ||
* Allwinner A10 I2S controller | ||
|
||
The I2S bus (Inter-IC sound bus) is a serial link for digital | ||
audio data transfer between devices in the system. | ||
|
||
Required properties: | ||
|
||
- compatible: should be one of the followings | ||
- "allwinner,sun4i-a10-i2s" | ||
- reg: physical base address of the controller and length of memory mapped | ||
region. | ||
- interrupts: should contain the I2S interrupt. | ||
- dmas: DMA specifiers for tx and rx dma. See the DMA client binding, | ||
Documentation/devicetree/bindings/dma/dma.txt | ||
- dma-names: should include "tx" and "rx". | ||
- clocks: a list of phandle + clock-specifer pairs, one for each entry in clock-names. | ||
- clock-names: should contain followings: | ||
- "apb" : clock for the I2S bus interface | ||
- "mod" : module clock for the I2S controller | ||
- #sound-dai-cells : Must be equal to 0 | ||
|
||
Example: | ||
|
||
i2s0: i2s@01c22400 { | ||
#sound-dai-cells = <0>; | ||
compatible = "allwinner,sun4i-a10-i2s"; | ||
reg = <0x01c22400 0x400>; | ||
interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>; | ||
clocks = <&apb0_gates 3>, <&i2s0_clk>; | ||
clock-names = "apb", "mod"; | ||
dmas = <&dma SUN4I_DMA_NORMAL 3>, | ||
<&dma SUN4I_DMA_NORMAL 3>; | ||
dma-names = "rx", "tx"; | ||
}; |
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.