-
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.
ASoC: add driver for Rockchip RK3xxx I2S controller
Add driver for i2s controller found on rk3066, rk3168 and rk3288 processors from rockchip. Tested on the RK3288 SDK board. Signed-off-by: Jianqun Xu <xjq@rock-chips.com> Signed-off-by: Mark Brown <broonie@linaro.org>
- Loading branch information
Jianqun Xu
authored and
Mark Brown
committed
Jul 9, 2014
1 parent
d4796e3
commit 4495c89
Showing
6 changed files
with
771 additions
and
0 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
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,12 @@ | ||
config SND_SOC_ROCKCHIP | ||
tristate "ASoC support for Rockchip" | ||
depends on COMPILE_TEST || ARCH_ROCKCHIP | ||
select SND_SOC_GENERIC_DMAENGINE_PCM | ||
select SND_ROCKCHIP_I2S | ||
help | ||
Say Y or M if you want to add support for codecs attached to | ||
the Rockchip SoCs' Audio interfaces. You will also need to | ||
select the audio interfaces to support below. | ||
|
||
config SND_ROCKCHIP_I2S | ||
tristate |
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,4 @@ | ||
# ROCKCHIP Platform Support | ||
snd-soc-i2s-objs := rockchip_i2s.o | ||
|
||
obj-$(CONFIG_SND_ROCKCHIP_I2S) += snd-soc-i2s.o |
Oops, something went wrong.