linux/sound/soc/pxa/Kconfig
<<
>>
Prefs
   1# SPDX-License-Identifier: GPL-2.0-only
   2menu "PXA"
   3
   4config SND_PXA2XX_SOC
   5        tristate "SoC Audio for the Intel PXA2xx chip"
   6        depends on ARCH_PXA || COMPILE_TEST
   7        select SND_PXA2XX_LIB
   8        help
   9          Say Y or M if you want to add support for codecs attached to
  10          the PXA2xx AC97, I2S or SSP interface. You will also need
  11          to select the audio interfaces to support below.
  12
  13config SND_PXA2XX_SOC_AC97
  14        tristate "SoC AC97 support for PXA2xx"
  15        depends on SND_PXA2XX_SOC
  16        depends on AC97_BUS=n
  17        default y
  18        select AC97_BUS_NEW
  19        select SND_PXA2XX_LIB
  20        select SND_PXA2XX_LIB_AC97
  21        select SND_SOC_AC97_BUS_NEW
  22
  23config SND_PXA2XX_SOC_I2S
  24        select SND_PXA2XX_LIB
  25        tristate
  26
  27config SND_PXA_SOC_SSP
  28        tristate "Soc Audio via PXA2xx/PXA3xx SSP ports"
  29        depends on PLAT_PXA
  30        select PXA_SSP
  31        select SND_PXA2XX_LIB
  32
  33config SND_MMP_SOC_SSPA
  34        tristate "SoC Audio via MMP SSPA ports"
  35        depends on ARCH_MMP
  36        select SND_SOC_GENERIC_DMAENGINE_PCM
  37        help
  38          Say Y if you want to add support for codecs attached to
  39          the MMP SSPA interface.
  40
  41config SND_PXA2XX_SOC_SPITZ
  42        tristate "SoC Audio support for Sharp Zaurus SL-Cxx00"
  43        depends on SND_PXA2XX_SOC && PXA_SHARP_Cxx00 && I2C
  44        select SND_PXA2XX_SOC_I2S
  45        select SND_SOC_WM8750
  46        help
  47          Say Y if you want to add support for SoC audio on Sharp
  48          Zaurus SL-Cxx00 models (Spitz, Borzoi and Akita).
  49
  50config SND_PXA910_SOC
  51        tristate "SoC Audio for Marvell PXA910 chip"
  52        depends on ARCH_MMP && SND
  53        select SND_PCM
  54        help
  55          Say Y if you want to add support for SoC audio on the
  56          Marvell PXA910 reference platform.
  57
  58endmenu
  59