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

Commit d5c40c85 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: Idca98e5304f61ca7462d82f1252fe51982907d1c
Acked-by: default avatarThyagarajan Venkatanarayanan <venkatan@qti.qualcomm.com>
Signed-off-by: default avatarTharun Kumar Merugu <mtharu@codeaurora.org>
parent 89131f67
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -540,6 +540,15 @@ source "drivers/s390/char/Kconfig"

source "drivers/char/xillybus/Kconfig"

config MSM_ADSPRPC
        tristate "QTI ADSP RPC 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 ADI
	tristate "SPARC Privileged ADI driver"
	depends on SPARC64
+4 −0
Original line number Diff line number Diff line
@@ -57,4 +57,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