Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: amd: acp: add Kconfig options for acp7.0 based platform driver

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>

authored by

Syed Saba Kareem and committed by
Mark Brown
d3534684 a55ea47b

+14
+12
sound/soc/amd/acp/Kconfig
··· 73 73 Say Y if you want to enable AUDIO on ACP6.3 74 74 If unsure select "N". 75 75 76 + config SND_AMD_ASOC_ACP70 77 + tristate "AMD ACP ASOC Acp7.0 Support" 78 + depends on X86 && PCI 79 + depends on ACPI 80 + select SND_SOC_AMD_ACP_PCM 81 + select SND_SOC_AMD_ACP_I2S 82 + select SND_SOC_AMD_ACP_PDM 83 + help 84 + This option enables Acp7.0 PDM support on AMD platform. 85 + Say Y if you want to enable AUDIO on ACP7.0 86 + If unsure select "N". 87 + 76 88 config SND_SOC_AMD_MACH_COMMON 77 89 tristate 78 90 depends on X86 && PCI && I2C
+2
sound/soc/amd/acp/Makefile
··· 15 15 snd-acp-renoir-objs := acp-renoir.o 16 16 snd-acp-rembrandt-objs := acp-rembrandt.o 17 17 snd-acp63-objs := acp63.o 18 + snd-acp70-objs := acp70.o 18 19 19 20 #machine specific driver 20 21 snd-acp-mach-objs := acp-mach-common.o ··· 31 30 obj-$(CONFIG_SND_AMD_ASOC_RENOIR) += snd-acp-renoir.o 32 31 obj-$(CONFIG_SND_AMD_ASOC_REMBRANDT) += snd-acp-rembrandt.o 33 32 obj-$(CONFIG_SND_AMD_ASOC_ACP63) += snd-acp63.o 33 + obj-$(CONFIG_SND_AMD_ASOC_ACP70) += snd-acp70.o 34 34 35 35 obj-$(CONFIG_SND_SOC_AMD_MACH_COMMON) += snd-acp-mach.o 36 36 obj-$(CONFIG_SND_SOC_AMD_LEGACY_MACH) += snd-acp-legacy-mach.o