mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-29 13:57:58 -04:00
The pxa2xx sound library modules are only used by the ASoC driver since
commit b094de7810 ("ASoC: codec: Remove pxa2xx-ac97.c"), so move the
code into the one module that uses as a simpliciation.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://patch.msgid.link/20260505202426.3605262-3-arnd@kernel.org
Signed-off-by: Mark Brown <broonie@kernel.org>
64 lines
1.6 KiB
Plaintext
64 lines
1.6 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
menu "PXA"
|
|
|
|
config SND_PXA2XX_SOC
|
|
tristate "SoC Audio for the Intel PXA2xx chip"
|
|
depends on ARCH_PXA || (COMPILE_TEST && GPIOLIB_LEGACY)
|
|
select SND_PXA2XX_LIB
|
|
help
|
|
Say Y or M if you want to add support for codecs attached to
|
|
the PXA2xx AC97, I2S or SSP interface. You will also need
|
|
to select the audio interfaces to support below.
|
|
|
|
config SND_PXA2XX_SOC_AC97
|
|
tristate "SoC AC97 support for PXA2xx"
|
|
depends on SND_PXA2XX_SOC
|
|
depends on AC97_BUS=n
|
|
default y
|
|
select AC97_BUS_NEW
|
|
select SND_PXA2XX_LIB
|
|
select SND_PXA2XX_LIB_AC97
|
|
|
|
config SND_PXA2XX_SOC_I2S
|
|
select SND_PXA2XX_LIB
|
|
tristate
|
|
|
|
config SND_PXA_SOC_SSP
|
|
tristate "Soc Audio via PXA2xx/PXA3xx SSP ports"
|
|
depends on ARCH_PXA
|
|
select PXA_SSP
|
|
select SND_PXA2XX_LIB
|
|
|
|
config SND_MMP_SOC_SSPA
|
|
tristate "SoC Audio via MMP SSPA ports"
|
|
depends on ARCH_MMP
|
|
select SND_SOC_GENERIC_DMAENGINE_PCM
|
|
help
|
|
Say Y if you want to add support for codecs attached to
|
|
the MMP SSPA interface.
|
|
|
|
config SND_PXA2XX_SOC_SPITZ
|
|
tristate "SoC Audio support for Sharp Zaurus SL-Cxx00"
|
|
depends on SND_PXA2XX_SOC && PXA_SHARP_Cxx00 && I2C
|
|
select SND_PXA2XX_SOC_I2S
|
|
select SND_SOC_WM8750
|
|
help
|
|
Say Y if you want to add support for SoC audio on Sharp
|
|
Zaurus SL-Cxx00 models (Spitz, Borzoi and Akita).
|
|
|
|
config SND_PXA910_SOC
|
|
tristate "SoC Audio for Marvell PXA910 chip"
|
|
depends on ARCH_MMP && SND
|
|
select SND_PCM
|
|
help
|
|
Say Y if you want to add support for SoC audio on the
|
|
Marvell PXA910 reference platform.
|
|
|
|
config SND_PXA2XX_LIB
|
|
tristate
|
|
select SND_DMAENGINE_PCM
|
|
|
|
config SND_PXA2XX_LIB_AC97
|
|
bool
|
|
endmenu
|