Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0-only
#
# SoundWire subsystem configuration
#

menuconfig CONFIG_SOUNDWIRE
	tristate "SoundWire support"
	depends on CONFIG_ACPI || CONFIG_OF
	help
	  SoundWire is a 2-Pin interface with data and clock line ratified
	  by the MIPI Alliance. SoundWire is used for transporting data
	  typically related to audio functions. SoundWire interface is
	  optimized to integrate audio devices in mobile or mobile inspired
	  systems. Say Y to enable this subsystem, N if you do not have such
	  a device

if CONFIG_SOUNDWIRE

comment "SoundWire Devices"

config CONFIG_SOUNDWIRE_CADENCE
	tristate

config CONFIG_SOUNDWIRE_INTEL
	tristate "Intel SoundWire Master driver"
	select CONFIG_SOUNDWIRE_CADENCE
	depends on CONFIG_X86 && CONFIG_ACPI && CONFIG_SND_SOC
	help
	  SoundWire Intel Master driver.
	  If you have an Intel platform which has a SoundWire Master then
	  enable this config option to get the SoundWire support for that
	  device.

endif