-
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-3.7' of git://git.kernel.org/pub/scm/linux/kernel/git…
…/broonie/sound into for-next ASoC: Additional updates for v3.7 A couple more updates for 3.7, enhancements to the ux500 and wm2000 drivers, a new driver for DA9055 and the support for regulator bypass mode. With the exception of the DA9055 this has all had a chance to soak in -next (the driver was added on Friday so should be in -next today).
- Loading branch information
Showing
40 changed files
with
2,307 additions
and
174 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
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,36 @@ | ||
Cirrus Logic CS4271 DT bindings | ||
|
||
This driver supports both the I2C and the SPI bus. | ||
|
||
Required properties: | ||
|
||
- compatible: "cirrus,cs4271" | ||
|
||
For required properties on SPI, please consult | ||
Documentation/devicetree/bindings/spi/spi-bus.txt | ||
|
||
Required properties on I2C: | ||
|
||
- reg: the i2c address | ||
|
||
|
||
Optional properties: | ||
|
||
- reset-gpio: a GPIO spec to define which pin is connected to the chip's | ||
!RESET pin | ||
|
||
Examples: | ||
|
||
codec_i2c: cs4271@10 { | ||
compatible = "cirrus,cs4271"; | ||
reg = <0x10>; | ||
reset-gpio = <&gpio 23 0>; | ||
}; | ||
|
||
codec_spi: cs4271@0 { | ||
compatible = "cirrus,cs4271"; | ||
reg = <0x0>; | ||
reset-gpio = <&gpio 23 0>; | ||
spi-max-frequency = <6000000>; | ||
}; | ||
|
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,39 @@ | ||
* MOP500 Audio Machine Driver | ||
|
||
This node is responsible for linking together all ux500 Audio Driver components. | ||
|
||
Required properties: | ||
- compatible : "stericsson,snd-soc-mop500" | ||
|
||
Non-standard properties: | ||
- stericsson,cpu-dai : Phandle to the CPU-side DAI | ||
- stericsson,audio-codec : Phandle to the Audio CODEC | ||
- stericsson,card-name : Over-ride default card name | ||
|
||
Example: | ||
|
||
sound { | ||
compatible = "stericsson,snd-soc-mop500"; | ||
|
||
stericsson,cpu-dai = <&msp1 &msp3>; | ||
stericsson,audio-codec = <&codec>; | ||
}; | ||
|
||
msp1: msp@80124000 { | ||
compatible = "stericsson,ux500-msp-i2s"; | ||
reg = <0x80124000 0x1000>; | ||
interrupts = <0 62 0x4>; | ||
v-ape-supply = <&db8500_vape_reg>; | ||
}; | ||
|
||
msp3: msp@80125000 { | ||
compatible = "stericsson,ux500-msp-i2s"; | ||
reg = <0x80125000 0x1000>; | ||
interrupts = <0 62 0x4>; | ||
v-ape-supply = <&db8500_vape_reg>; | ||
}; | ||
|
||
codec: ab8500-codec { | ||
compatible = "stericsson,ab8500-codec"; | ||
stericsson,earpeice-cmv = <950>; /* Units in mV. */ | ||
}; |
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,43 @@ | ||
* ux500 MSP (CPU-side Digital Audio Interface) | ||
|
||
Required properties: | ||
- compatible :"stericsson,ux500-msp-i2s" | ||
- reg : Physical base address and length of the device's registers. | ||
|
||
Optional properties: | ||
- interrupts : The interrupt output from the device. | ||
- interrupt-parent : The parent interrupt controller. | ||
- <name>-supply : Phandle to the regulator <name> supply | ||
|
||
Example: | ||
|
||
sound { | ||
compatible = "stericsson,snd-soc-mop500"; | ||
|
||
stericsson,platform-pcm-dma = <&pcm>; | ||
stericsson,cpu-dai = <&msp1 &msp3>; | ||
stericsson,audio-codec = <&codec>; | ||
}; | ||
|
||
pcm: ux500-pcm { | ||
compatible = "stericsson,ux500-pcm"; | ||
}; | ||
|
||
msp1: msp@80124000 { | ||
compatible = "stericsson,ux500-msp-i2s"; | ||
reg = <0x80124000 0x1000>; | ||
interrupts = <0 62 0x4>; | ||
v-ape-supply = <&db8500_vape_reg>; | ||
}; | ||
|
||
msp3: msp@80125000 { | ||
compatible = "stericsson,ux500-msp-i2s"; | ||
reg = <0x80125000 0x1000>; | ||
interrupts = <0 62 0x4>; | ||
v-ape-supply = <&db8500_vape_reg>; | ||
}; | ||
|
||
codec: ab8500-codec { | ||
compatible = "stericsson,ab8500-codec"; | ||
stericsson,earpeice-cmv = <950>; /* Units in mV. */ | ||
}; |
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
Oops, something went wrong.