cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Kconfig (1299B)


      1# SPDX-License-Identifier: GPL-2.0-only
      2#
      3# SoundWire subsystem configuration
      4#
      5
      6menuconfig SOUNDWIRE
      7	tristate "SoundWire support"
      8	depends on ACPI || OF
      9	help
     10	  SoundWire is a 2-Pin interface with data and clock line ratified
     11	  by the MIPI Alliance. SoundWire is used for transporting data
     12	  typically related to audio functions. SoundWire interface is
     13	  optimized to integrate audio devices in mobile or mobile inspired
     14	  systems. Say Y to enable this subsystem, N if you do not have such
     15	  a device
     16
     17if SOUNDWIRE
     18
     19comment "SoundWire Devices"
     20
     21config SOUNDWIRE_CADENCE
     22	tristate
     23
     24config SOUNDWIRE_INTEL
     25	tristate "Intel SoundWire Master driver"
     26	select SOUNDWIRE_CADENCE
     27	select SOUNDWIRE_GENERIC_ALLOCATION
     28	select AUXILIARY_BUS
     29	depends on ACPI && SND_SOC
     30	help
     31	  SoundWire Intel Master driver.
     32	  If you have an Intel platform which has a SoundWire Master then
     33	  enable this config option to get the SoundWire support for that
     34	  device.
     35
     36config SOUNDWIRE_QCOM
     37	tristate "Qualcomm SoundWire Master driver"
     38	imply SLIMBUS
     39	depends on SND_SOC
     40	help
     41	  SoundWire Qualcomm Master driver.
     42	  If you have an Qualcomm platform which has a SoundWire Master then
     43	  enable this config option to get the SoundWire support for that
     44	  device
     45
     46config SOUNDWIRE_GENERIC_ALLOCATION
     47	tristate
     48
     49endif