Kconfig 2.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
config SND_SOC_INTEL_SST_TOPLEVEL
	bool "Intel ASoC SST drivers"
	default y
	depends on X86 || COMPILE_TEST
	select SND_SOC_INTEL_MACH
	help
	  Intel ASoC SST Platform Drivers. If you have a Intel machine that
	  has an audio controller with a DSP and I2S or DMIC port, then
	  enable this option by saying Y

	  Note that the answer to this question doesn't directly affect the
	  kernel: saying N will just cause the configurator to skip all
	  the questions about Intel SST drivers.

if SND_SOC_INTEL_SST_TOPLEVEL

17 18 19
config SND_SST_IPC
	tristate

20 21 22 23
config SND_SST_IPC_PCI
	tristate
	select SND_SST_IPC

V
Vinod Koul 已提交
24 25 26
config SND_SST_IPC_ACPI
	tristate
	select SND_SST_IPC
27
	select SND_SOC_INTEL_SST
28
	select IOSF_MBI
V
Vinod Koul 已提交
29

30
config SND_SOC_INTEL_SST
31
	tristate
32 33
	select SND_SOC_INTEL_SST_ACPI if ACPI

34 35
config SND_SOC_INTEL_SST_FIRMWARE
	tristate
36
	select DW_DMAC_CORE
37

38 39 40
config SND_SOC_INTEL_SST_ACPI
	tristate

41
config SND_SOC_INTEL_HASWELL
42
	tristate "Intel ASoC SST driver for Haswell/Broadwell"
43
	depends on SND_DMA_SGBUF
44
	depends on DMADEVICES
45
	select SND_SOC_INTEL_SST
46
	select SND_SOC_INTEL_SST_FIRMWARE
47 48 49 50 51
	select SND_SOC_ACPI_INTEL_MATCH
	help
	  If you have a Intel Haswell or Broadwell platform connected to
	  an I2S codec, then enable this option by saying Y or m. This is
	  typically used for Chromebooks. This is a recommended option.
52

53
config SND_SOC_INTEL_BAYTRAIL
54
	tristate "Intel ASoC SST driver for Baytrail (legacy)"
55
	depends on DMADEVICES
56 57
	select SND_SOC_INTEL_SST
	select SND_SOC_INTEL_SST_FIRMWARE
58 59 60 61 62 63
	select SND_SOC_ACPI_INTEL_MATCH
	help
	  If you have a Intel Baytrail platform connected to an I2S codec,
	  then enable this option by saying Y or m. This was typically used
	  for Baytrail Chromebooks but this option is now deprecated and is
	  not recommended, use SND_SST_ATOM_HIFI2_PLATFORM instead.
64

65 66
config SND_SST_ATOM_HIFI2_PLATFORM
	tristate "Intel ASoC SST driver for HiFi2 platforms (*field, *trail)"
67
	depends on X86
68
	select SND_SOC_COMPRESS
69
	select SND_SOC_ACPI_INTEL_MATCH
70

71
config SND_SOC_INTEL_SKYLAKE
72
	tristate "Intel ASoC SST driver for SKL/BXT/KBL/GLK/CNL"
73
	depends on PCI && ACPI
74
	select SND_HDA_EXT_CORE
75
	select SND_HDA_DSP_LOADER
76
	select SND_SOC_TOPOLOGY
77
	select SND_SOC_INTEL_SST
78 79 80 81 82 83 84 85 86 87 88 89 90
	select SND_SOC_ACPI_INTEL_MATCH
	help
	  If you have a Intel Skylake/Broxton/ApolloLake/KabyLake/
	  GeminiLake or CannonLake platform with the DSP enabled in the BIOS
	  then enable this option by saying Y or m.

config SND_SOC_ACPI_INTEL_MATCH
	tristate
	select SND_SOC_ACPI if ACPI
	# this option controls the compilation of ACPI matching tables and
	# helpers and is not meant to be selected by the user.

endif ## SND_SOC_INTEL_SST_TOPLEVEL
91

92 93
# ASoC codec drivers
source "sound/soc/intel/boards/Kconfig"