-
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: uniphier: add support for UniPhier EVEA codec
This patch adds EVEA codec driver. This codec core is in inside of UniPhier SoC. Signed-off-by: Katsuhiro Suzuki <suzuki.katsuhiro@socionext.com> Signed-off-by: Mark Brown <broonie@kernel.org>
- Loading branch information
Katsuhiro Suzuki
authored and
Mark Brown
committed
Dec 4, 2017
1 parent
e85c8d3
commit 3a47b1d
Showing
5 changed files
with
591 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,19 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
config SND_SOC_UNIPHIER | ||
tristate "ASoC support for UniPhier" | ||
depends on (ARCH_UNIPHIER || COMPILE_TEST) | ||
help | ||
Say Y or M if you want to add support for the Socionext | ||
UniPhier SoC audio interfaces. You will also need to select the | ||
audio interfaces to support below. | ||
If unsure select "N". | ||
|
||
config SND_SOC_UNIPHIER_EVEA_CODEC | ||
tristate "UniPhier SoC internal audio codec" | ||
depends on SND_SOC_UNIPHIER | ||
select REGMAP_MMIO | ||
help | ||
This adds Codec driver for Socionext UniPhier LD11/20 SoC | ||
internal DAC. This driver supports Line In / Out and HeadPhone. | ||
Select Y if you use such device. | ||
If unsure select "N". |
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,3 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
snd-soc-uniphier-evea-objs := evea.o | ||
obj-$(CONFIG_SND_SOC_UNIPHIER_EVEA_CODEC) += snd-soc-uniphier-evea.o |
Oops, something went wrong.