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
#
# SLIMbus driver configuration
#
menuconfig CONFIG_SLIMBUS
	tristate "SLIMbus support"
	help
	  SLIMbus is standard interface between System-on-Chip and audio codec,
	  and other peripheral components in typical embedded systems.

	  If unsure, choose N.

if CONFIG_SLIMBUS

# SLIMbus controllers
config CONFIG_SLIM_QCOM_CTRL
	tristate "Qualcomm SLIMbus Manager Component"
	depends on CONFIG_HAS_IOMEM
	help
	  Select driver if Qualcomm's SLIMbus Manager Component is
	  programmed using Linux kernel.

config CONFIG_SLIM_QCOM_NGD_CTRL
	tristate "Qualcomm SLIMbus Satellite Non-Generic Device Component"
	depends on CONFIG_HAS_IOMEM && CONFIG_DMA_ENGINE && CONFIG_NET
	depends on CONFIG_ARCH_QCOM || CONFIG_COMPILE_TEST
	select CONFIG_QCOM_QMI_HELPERS
	help
	  Select driver if Qualcomm's SLIMbus Satellite Non-Generic Device
	  Component is programmed using Linux kernel.
	  This is light-weight slimbus controller driver responsible for
	  communicating with slave HW directly over the bus using messaging
	  interface, and communicating with master component residing on ADSP
	  for bandwidth and data-channel management.
endif