Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 029bfbee authored by Tharun Kumar Merugu's avatar Tharun Kumar Merugu
Browse files

msm: adsprpc: add fastrpc driver files



Add fastrpc driver files, which provide a communication
mechanism that allows clients to make remote method
invocations across processor boundary to application, compute
and sensors DSP processors.

Change-Id: If08460c5d9875e2cbcaa099d11b2ebe86bc0655f
Acked-by: default avatarThyagarajan Venkatanarayanan <venkatan@qti.qualcomm.com>
Signed-off-by: default avatarTharun Kumar Merugu <mtharu@codeaurora.org>
parent 439ef570
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -545,6 +545,23 @@ source "drivers/s390/char/Kconfig"

source "drivers/char/xillybus/Kconfig"

config MSM_ADSPRPC
	tristate "QTI FastRPC driver"
	depends on QCOM_GLINK
	help
		Provides a communication mechanism that allows clients to
		make remote method invocations across processor boundary to
		applications/compute DSP processor.
		Say M if you want to enable this module.

config ADSPRPC_DEBUG
	bool "Debug logs in FastRPC driver"
	help
		Enable debug logs in the fastrpc driver. Flag will be
		disabled by default to maximize RPC performance as debug
		logging will impact RPC overhead.
		Say Y here if you want to enable the logs.

config ADI
	tristate "SPARC Privileged ADI driver"
	depends on SPARC64
+4 −0
Original line number Diff line number Diff line
@@ -53,4 +53,8 @@ js-rtc-y = rtc.o

obj-$(CONFIG_XILLYBUS)		+= xillybus/
obj-$(CONFIG_POWERNV_OP_PANEL)	+= powernv-op-panel.o
obj-$(CONFIG_MSM_ADSPRPC)	+= adsprpc.o
ifdef CONFIG_COMPAT
  obj-$(CONFIG_MSM_ADSPRPC)	+= adsprpc_compat.o
endif
obj-$(CONFIG_ADI)		+= adi.o
Loading