Kconfig 9.59 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0-only
2
menuconfig SND_SOC_SOF_TOPLEVEL
3 4
	bool "Sound Open Firmware Support"
	help
5
	  This adds support for Sound Open Firmware (SOF). SOF is free and
6 7 8 9 10 11
	  generic open source audio DSP firmware for multiple devices.
	  Say Y if you have such a device that is supported by SOF.
	  If unsure select "N".

if SND_SOC_SOF_TOPLEVEL

12 13 14
config SND_SOC_SOF_PCI_DEV
	tristate

15 16
config SND_SOC_SOF_PCI
	tristate "SOF PCI enumeration support"
17
	depends on PCI
18 19
	help
	  This adds support for PCI enumeration. This option is
20
	  required to enable Intel Skylake+ devices.
21 22
	  For backwards-compatibility with previous configurations the selection will
	  be used as default for platform-specific drivers.
23
	  Say Y if you need this option.
24 25 26 27 28 29 30
	  If unsure select "N".

config SND_SOC_SOF_ACPI
	tristate "SOF ACPI enumeration support"
	depends on ACPI || COMPILE_TEST
	help
	  This adds support for ACPI enumeration. This option is required
31
	  to enable Intel Broadwell/Baytrail/Cherrytrail devices.
32 33
	  For backwards-compatibility with previous configurations the selection will
	  be used as default for platform-specific drivers.
34
	  Say Y if you need this option.
35 36
	  If unsure select "N".

37 38 39
config SND_SOC_SOF_ACPI_DEV
	tristate

40 41 42 43 44
config SND_SOC_SOF_OF
	tristate "SOF OF enumeration support"
	depends on OF || COMPILE_TEST
	help
	  This adds support for Device Tree enumeration. This option is
45
	  required to enable i.MX8 or Mediatek devices.
46 47
	  Say Y if you need this option. If unsure select "N".

48 49 50
config SND_SOC_SOF_OF_DEV
	tristate

51
config SND_SOC_SOF_COMPRESS
52
	bool
53 54
	select SND_SOC_COMPRESS

55
config SND_SOC_SOF_DEBUG_PROBES
56 57
	tristate
	select SND_SOC_SOF_CLIENT
58
	select SND_SOC_COMPRESS
59 60 61
	help
	  This option enables the data probing feature that can be used to
	  gather data directly from specific points of the audio pipeline.
62 63
	  This option is not user-selectable but automagically handled by
	  'select' statements at a higher level.
64

65 66 67 68 69 70 71
config SND_SOC_SOF_CLIENT
	tristate
	select AUXILIARY_BUS
	help
	  This option is not user-selectable but automagically handled by
	  'select' statements at a higher level.

72 73
config SND_SOC_SOF_DEVELOPER_SUPPORT
	bool "SOF developer options support"
74
	depends on EXPERT && SND_SOC_SOF
75
	help
76
	  This option unlocks SOF developer options for debug/performance/
77 78 79
	  code hardening.
	  Distributions should not select this option, only SOF development
	  teams should select it.
80 81
	  Say Y if you are involved in SOF development and need this option.
	  If not, select N.
82

83
if SND_SOC_SOF_DEVELOPER_SUPPORT
84

85 86 87 88 89 90 91 92 93 94 95
config SND_SOC_SOF_FORCE_PROBE_WORKQUEUE
	bool "SOF force probe workqueue"
	select SND_SOC_SOF_PROBE_WORK_QUEUE
	help
	  This option forces the use of a probe workqueue, which is only used
	  when HDaudio is enabled due to module dependencies. Forcing this
	  option is intended for debug only, but this should not add any
	  functional issues in nominal cases.
	  Say Y if you are involved in SOF development and need this option.
	  If not, select N.

96
config SND_SOC_SOF_NOCODEC
97 98 99
	tristate

config SND_SOC_SOF_NOCODEC_SUPPORT
100
	bool "SOF nocodec static mode support"
101 102 103 104
	help
	  This adds support for a dummy/nocodec machine driver fallback
	  option if no known codec is detected. This is typically only
	  enabled for developers or devices where the sound card is
105
	  controlled externally.
106
	  This option is mutually exclusive at build time with the Intel HDAudio support.
107
	  Selecting it may have negative impacts and prevent e.g. microphone
108 109 110
	  functionality from being enabled on Intel CoffeeLake and later
	  platforms.
	  Distributions should not select this option!
111
	  Say Y if you need this nocodec fallback option.
112 113
	  If unsure select "N".

114 115 116 117 118 119 120 121 122 123 124
config SND_SOC_SOF_STRICT_ABI_CHECKS
	bool "SOF strict ABI checks"
	help
	  This option enables strict ABI checks for firmware and topology
	  files.
	  When these files are more recent than the kernel, the kernel
	  will handle the functionality it supports and may report errors
	  during topology creation or run-time usage if new functionality
	  is invoked.
	  This option will stop topology creation and firmware load upfront.
	  It is intended for SOF CI/releases and not for users or distros.
125 126
	  Say Y if you want strict ABI checks for an SOF release.
	  If you are not involved in SOF releases and CI development,
127 128
	  select "N".

129 130 131 132 133 134 135 136 137 138
config SND_SOC_SOF_DEBUG
	bool "SOF debugging features"
	help
	  This option can be used to enable or disable individual SOF firmware
	  and driver debugging options.
	  Say Y if you are debugging SOF FW or drivers.
	  If unsure select "N".

if SND_SOC_SOF_DEBUG

139 140 141 142 143 144 145 146 147 148 149 150 151
config SND_SOC_SOF_NOCODEC_DEBUG_SUPPORT
	bool "SOF nocodec debug mode support"
	depends on !SND_SOC_SOF_NOCODEC_SUPPORT
	help
	  This adds support for a dummy/nocodec machine driver fallback
	  option.
	  Unlike the SND_SOC_SOF_NOCODEC_SUPPORT, this option is NOT
	  mutually exclusive at build with the Intel HDAudio support. The
	  selection will be done depending on command line or modprobe.d settings
	  Distributions should not select this option!
	  Say Y if you need this nocodec debug fallback option.
	  If unsure select "N".

152 153
config SND_SOC_SOF_FORCE_NOCODEC_MODE
	bool "SOF force nocodec Mode"
154
	depends on SND_SOC_SOF_NOCODEC_SUPPORT
155 156 157 158 159
	help
	  This forces SOF to use dummy/nocodec as machine driver, even
	  though there is a codec detected on the real platform. This is
	  typically only enabled for developers for debug purposes, before
	  codec/machine driver is ready, or to exclude the impact of those
160 161
	  drivers.
	  Say Y if you need this force nocodec mode option.
162 163 164 165 166 167
	  If unsure select "N".

config SND_SOC_SOF_DEBUG_XRUN_STOP
	bool "SOF stop on XRUN"
	help
	  This option forces PCMs to stop on any XRUN event. This is useful to
168
	  preserve any trace data and pipeline status prior to the XRUN.
169 170 171 172 173 174 175 176 177 178 179 180 181 182
	  Say Y if you are debugging SOF FW pipeline XRUNs.
	  If unsure select "N".

config SND_SOC_SOF_DEBUG_VERBOSE_IPC
	bool "SOF verbose IPC logs"
	help
	  This option enables more verbose IPC logs, with command types in
	  human-readable form instead of just 32-bit hex dumps. This is useful
	  if you are trying to debug IPC with the DSP firmware.
	  If unsure select "N".

config SND_SOC_SOF_DEBUG_FORCE_IPC_POSITION
	bool "SOF force to use IPC for position update on SKL+"
	help
183
	  This option forces to handle stream position update IPCs and run PCM
184 185 186 187
	  elapse to inform ALSA about that, on platforms (e.g. Intel SKL+) that
	  with other approach (e.g. HDAC DPIB/posbuf) to elapse PCM.
	  On platforms (e.g. Intel SKL-) where position update IPC is the only
	  one choice, this setting won't impact anything.
188
	  If you are trying to debug pointer update with position IPCs or where
189 190 191 192 193 194 195 196 197 198 199 200 201
	  DPIB/posbuf is not ready, select "Y".
	  If unsure select "N".

config SND_SOC_SOF_DEBUG_ENABLE_DEBUGFS_CACHE
	bool "SOF enable debugfs caching"
	help
	  This option enables caching of debugfs
	  memory -> DSP resource (memory, register, etc)
	  before the audio DSP is suspended. This will increase the suspend
	  latency and therefore should be used for debug purposes only.
	  Say Y if you want to enable caching the memory windows.
	  If unsure, select "N".

202 203 204 205 206
config SND_SOC_SOF_DEBUG_ENABLE_FIRMWARE_TRACE
	bool "SOF enable firmware trace"
	help
	  The firmware trace can be enabled either at build-time with
	  this option, or dynamically by setting flags in the SOF core
207
	  module parameter (similar to dynamic debug).
208 209
	  If unsure, select "N".

210
config SND_SOC_SOF_DEBUG_IPC_FLOOD_TEST
211
	tristate "SOF enable IPC flood test"
212
	depends on SND_SOC_SOF
213
	select SND_SOC_SOF_CLIENT
214
	help
215 216 217
	  This option enables a separate client device for IPC flood test
	  which can be used to flood the DSP with test IPCs and gather stats
	  about response times.
218 219 220
	  Say Y if you want to enable IPC flood test.
	  If unsure, select "N".

221 222 223 224 225 226 227 228
config SND_SOC_SOF_DEBUG_IPC_FLOOD_TEST_NUM
	int "Number of IPC flood test clients"
	range 1 32
	default 2
	depends on SND_SOC_SOF_DEBUG_IPC_FLOOD_TEST
	help
	  Select the number of IPC flood test clients to be created.

229
config SND_SOC_SOF_DEBUG_IPC_MSG_INJECTOR
230
	tristate "SOF enable IPC message injector"
231
	depends on SND_SOC_SOF
232
	select SND_SOC_SOF_CLIENT
233 234 235 236 237 238
	help
	  This option enables the IPC message injector which can be used to send
	  crafted IPC messages to the DSP to test its robustness.
	  Say Y if you want to enable the IPC message injector.
	  If unsure, select "N".

239 240 241 242 243 244 245 246
config SND_SOC_SOF_DEBUG_RETAIN_DSP_CONTEXT
	bool "SOF retain DSP context on any FW exceptions"
	help
	  This option keeps the DSP in D0 state so that firmware debug
	  information can be retained and dumped to userspace.
	  Say Y if you want to retain DSP context for FW exceptions.
	  If unsure, select "N".

247 248
endif ## SND_SOC_SOF_DEBUG

249
endif ## SND_SOC_SOF_DEVELOPER_SUPPORT
250 251 252 253

config SND_SOC_SOF
	tristate
	select SND_SOC_TOPOLOGY
254
	select SND_SOC_SOF_NOCODEC if SND_SOC_SOF_NOCODEC_SUPPORT
255
	select SND_SOC_SOF_NOCODEC if SND_SOC_SOF_NOCODEC_DEBUG_SUPPORT
256 257
	help
	  This option is not user-selectable but automagically handled by
258
	  'select' statements at a higher level.
259 260 261 262 263 264 265 266
	  The selection is made at the top level and does not exactly follow
	  module dependencies but since the module or built-in type is decided
	  at the top level it doesn't matter.

config SND_SOC_SOF_PROBE_WORK_QUEUE
	bool
	help
	  This option is not user-selectable but automagically handled by
267
	  'select' statements at a higher level.
268 269 270
	  When selected, the probe is handled in two steps, for example to
	  avoid lockdeps if request_module is used in the probe.

271 272 273 274 275 276 277
# Supported IPC versions
config SND_SOC_SOF_IPC3
	bool

config SND_SOC_SOF_INTEL_IPC4
	bool

278
source "sound/soc/sof/amd/Kconfig"
279
source "sound/soc/sof/imx/Kconfig"
280
source "sound/soc/sof/intel/Kconfig"
281
source "sound/soc/sof/mediatek/Kconfig"
282 283 284
source "sound/soc/sof/xtensa/Kconfig"

endif