ASoC: amd: acp: add Kconfig options for acp7.0 based platform driver
authorSyed Saba Kareem <Syed.SabaKareem@amd.com>
Mon, 13 Nov 2023 12:33:42 +0000 (18:03 +0530)
committerMark Brown <broonie@kernel.org>
Mon, 13 Nov 2023 19:45:21 +0000 (19:45 +0000)
ACP7.0 based platform legacy drivers can be built by selecting
necessary kernel config option. This patch enables build support
of the same.

Signed-off-by: Syed Saba Kareem <Syed.SabaKareem@amd.com>
Link: https://lore.kernel.org/r/20231113123345.2196504-1-Syed.SabaKareem@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/amd/acp/Kconfig
sound/soc/amd/acp/Makefile

index 5fb3222..c8ac002 100644 (file)
@@ -73,6 +73,18 @@ config SND_AMD_ASOC_ACP63
          Say Y if you want to enable AUDIO on ACP6.3
          If unsure select "N".
 
+config SND_AMD_ASOC_ACP70
+       tristate "AMD ACP ASOC Acp7.0 Support"
+       depends on X86 && PCI
+       depends on ACPI
+       select SND_SOC_AMD_ACP_PCM
+       select SND_SOC_AMD_ACP_I2S
+       select SND_SOC_AMD_ACP_PDM
+       help
+       This option enables Acp7.0 PDM support on AMD platform.
+       Say Y if you want to enable AUDIO on ACP7.0
+          If unsure select "N".
+
 config SND_SOC_AMD_MACH_COMMON
        tristate
        depends on X86 && PCI && I2C
index dd85700..ff5f789 100644 (file)
@@ -15,6 +15,7 @@ snd-acp-pci-objs     := acp-pci.o
 snd-acp-renoir-objs     := acp-renoir.o
 snd-acp-rembrandt-objs  := acp-rembrandt.o
 snd-acp63-objs := acp63.o
+snd-acp70-objs := acp70.o
 
 #machine specific driver
 snd-acp-mach-objs     := acp-mach-common.o
@@ -30,6 +31,7 @@ obj-$(CONFIG_SND_SOC_AMD_ACP_PCI) += snd-acp-pci.o
 obj-$(CONFIG_SND_AMD_ASOC_RENOIR) += snd-acp-renoir.o
 obj-$(CONFIG_SND_AMD_ASOC_REMBRANDT) += snd-acp-rembrandt.o
 obj-$(CONFIG_SND_AMD_ASOC_ACP63) += snd-acp63.o
+obj-$(CONFIG_SND_AMD_ASOC_ACP70) += snd-acp70.o
 
 obj-$(CONFIG_SND_SOC_AMD_MACH_COMMON) += snd-acp-mach.o
 obj-$(CONFIG_SND_SOC_AMD_LEGACY_MACH) += snd-acp-legacy-mach.o