Skip to content
Permalink
Browse files
ASoC: apple-mca: Add platform driver for Apple SoCs
Add ASoC platform driver for the MCA block found on Apple SoCs
from the "Apple Silicon" family.
  • Loading branch information
povik authored and marcan committed Jan 18, 2022
1 parent 726a810 commit 3bd1b7277353e3c32b737543b6e95de54f11600e
Show file tree
Hide file tree
Showing 5 changed files with 935 additions and 0 deletions.
@@ -61,6 +61,7 @@ config SND_SOC_ACPI
# All the supported SoCs
source "sound/soc/adi/Kconfig"
source "sound/soc/amd/Kconfig"
source "sound/soc/apple/Kconfig"
source "sound/soc/atmel/Kconfig"
source "sound/soc/au1x/Kconfig"
source "sound/soc/bcm/Kconfig"
@@ -29,6 +29,7 @@ obj-$(CONFIG_SND_SOC_ACPI) += snd-soc-acpi.o
obj-$(CONFIG_SND_SOC) += snd-soc-core.o
obj-$(CONFIG_SND_SOC) += codecs/
obj-$(CONFIG_SND_SOC) += generic/
obj-$(CONFIG_SND_SOC) += apple/
obj-$(CONFIG_SND_SOC) += adi/
obj-$(CONFIG_SND_SOC) += amd/
obj-$(CONFIG_SND_SOC) += atmel/
@@ -0,0 +1,6 @@
config SND_SOC_APPLE_MCA
tristate "Apple Silicon MCA driver"
select SND_DMAENGINE_PCM
select CONFIG_COMMON_CLK
help
This option enables an ASoC platform driver for Apple Silicon SoCs.
@@ -0,0 +1,3 @@
snd-soc-apple-mca-objs := mca.o

obj-$(CONFIG_SND_SOC_APPLE_MCA) += snd-soc-apple-mca.o

0 comments on commit 3bd1b72

Please sign in to comment.