mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 13:30:45 -05:00
Qcom Slimbus controller driver is totally unused and dead code, there is no point in keeping this driver in the kernel without users. This patch removes the driver along with device tree bindings. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@oss.qualcomm.com> Acked-by: Rob Herring (Arm) <robh@kernel.org> Acked-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> Signed-off-by: Srinivas Kandagatla <srini@kernel.org> Link: https://lore.kernel.org/r/20250912131202.303026-2-srini@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
31 lines
994 B
Plaintext
31 lines
994 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# SLIMbus driver configuration
|
|
#
|
|
menuconfig 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 SLIMBUS
|
|
|
|
# SLIMbus controllers
|
|
config SLIM_QCOM_NGD_CTRL
|
|
tristate "Qualcomm SLIMbus Satellite Non-Generic Device Component"
|
|
depends on HAS_IOMEM && DMA_ENGINE && NET
|
|
depends on QCOM_RPROC_COMMON || (COMPILE_TEST && !QCOM_RPROC_COMMON)
|
|
depends on ARCH_QCOM || COMPILE_TEST
|
|
select QCOM_QMI_HELPERS
|
|
select QCOM_PDR_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
|