Kconfig 3.8 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
config SND_SST_IPC
	tristate
19
	# This option controls the IPC core for HiFi2 platforms
20

21 22 23
config SND_SST_IPC_PCI
	tristate
	select SND_SST_IPC
24 25
	# This option controls the PCI-based IPC for HiFi2 platforms
	#  (Medfield, Merrifield).
26

V
Vinod Koul 已提交
27 28 29
config SND_SST_IPC_ACPI
	tristate
	select SND_SST_IPC
30 31 32 33 34 35 36 37
	# This option controls the ACPI-based IPC for HiFi2 platforms
	# (Baytrail, Cherrytrail)

config SND_SOC_INTEL_SST_ACPI
	tristate
	# This option controls ACPI-based probing on
	# Haswell/Broadwell/Baytrail legacy and will be set
	# when these platforms are enabled
V
Vinod Koul 已提交
38

39
config SND_SOC_INTEL_SST
40
	tristate
41

42 43
config SND_SOC_INTEL_SST_FIRMWARE
	tristate
44
	select DW_DMAC_CORE
45 46 47
	# This option controls firmware download on
	# Haswell/Broadwell/Baytrail legacy and will be set
	# when these platforms are enabled
48

49
config SND_SOC_INTEL_HASWELL
50
	tristate "Haswell/Broadwell Platforms"
51
	depends on SND_DMA_SGBUF
52
	depends on DMADEVICES && ACPI
53
	select SND_SOC_INTEL_SST
54
	select SND_SOC_INTEL_SST_ACPI
55
	select SND_SOC_INTEL_SST_FIRMWARE
56 57 58 59 60
	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.
61

62
config SND_SOC_INTEL_BAYTRAIL
63
	tristate "Baytrail (legacy) Platforms"
64
	depends on DMADEVICES && ACPI
65
	select SND_SOC_INTEL_SST
66
	select SND_SOC_INTEL_SST_ACPI
67
	select SND_SOC_INTEL_SST_FIRMWARE
68 69 70 71 72 73
	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.
74

75
config SND_SST_ATOM_HIFI2_PLATFORM_PCI
76
	tristate "PCI HiFi2 (Medfield, Merrifield) Platforms"
77 78 79 80 81 82 83 84 85 86 87
	depends on X86 && PCI
	select SND_SST_IPC_PCI
	select SND_SOC_COMPRESS
	help
	  If you have a Intel Medfield or Merrifield/Edison platform, then
	  enable this option by saying Y or m. Distros will typically not
	  enable this option: Medfield devices are not available to
	  developers and while Merrifield/Edison can run a mainline kernel with
	  limited functionality it will require a firmware file which
	  is not in the standard firmware tree

88
config SND_SST_ATOM_HIFI2_PLATFORM
89
	tristate "ACPI HiFi2 (Baytrail, Cherrytrail) Platforms"
90 91
	depends on X86 && ACPI
	select SND_SST_IPC_ACPI
92
	select SND_SOC_COMPRESS
93
	select SND_SOC_ACPI_INTEL_MATCH
94
	select IOSF_MBI
95 96 97 98
	help
	  If you have a Intel Baytrail or Cherrytrail platform with an I2S
	  codec, then enable this option by saying Y or m. This is a
	  recommended option
99

100
config SND_SOC_INTEL_SKYLAKE
101
	tristate "SKL/BXT/KBL/GLK/CNL... Platforms"
102
	depends on PCI && ACPI
103
	select SND_HDA_EXT_CORE
104
	select SND_HDA_DSP_LOADER
105
	select SND_SOC_TOPOLOGY
106
	select SND_SOC_INTEL_SST
107 108 109 110 111 112 113 114 115 116 117 118 119
	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
120

121 122
# ASoC codec drivers
source "sound/soc/intel/boards/Kconfig"