-
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/twl6040', 'asoc/topic/uda1…
…380', 'asoc/topic/uniphier', 'asoc/topic/utils' and 'asoc/topic/ux500' into asoc-next
- Loading branch information
Showing
12 changed files
with
666 additions
and
30 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Socionext EVEA - UniPhier SoC internal codec driver | ||
|
||
Required properties: | ||
- compatible : should be "socionext,uniphier-evea". | ||
- reg : offset and length of the register set for the device. | ||
- clock-names : should include following entries: | ||
"evea", "exiv" | ||
- clocks : a list of phandle, should contain an entry for each | ||
entries in clock-names. | ||
- reset-names : should include following entries: | ||
"evea", "exiv", "adamv" | ||
- resets : a list of phandle, should contain reset entries of | ||
reset-names. | ||
- #sound-dai-cells: should be 1. | ||
|
||
Example: | ||
|
||
codec { | ||
compatible = "socionext,uniphier-evea"; | ||
reg = <0x57900000 0x1000>; | ||
clock-names = "evea", "exiv"; | ||
clocks = <&sys_clk 41>, <&sys_clk 42>; | ||
reset-names = "evea", "exiv", "adamv"; | ||
resets = <&sys_rst 41>, <&sys_rst 42>, <&adamv_rst 0>; | ||
#sound-dai-cells = <1>; | ||
}; |
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,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.