mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
msm: Move adsprpc into drivers
Move RPC driver that allows for clients to make remote invocation calls between apps and adsp into drivers. Change-Id: I045da6163968066c954f448572c94a133181e1f4 Acked-by: Sathish Ambley <sambley@qualcomm.com> Signed-off-by: Mitchel Humpherys <mitchelh@codeaurora.org> Signed-off-by: Ram Kumar Chakravarthy Chebathini <rcheba@codeaurora.org>
This commit is contained in:
parent
cae496334d
commit
10833882f0
6 changed files with 11 additions and 1 deletions
|
@ -26,4 +26,3 @@ obj-$(CONFIG_MSM_QDSP6V2_CODECS) += rtac_v2.o q6audio_v2.o q6audio_v2_aio.o
|
|||
obj-$(CONFIG_MSM_QDSP6V2_CODECS) += audio_mp3.o audio_amrnb.o audio_amrwb.o audio_evrc.o audio_qcelp.o amrwb_in.o
|
||||
obj-$(CONFIG_MSM_ADSP_LOADER) += adsp-loader.o
|
||||
obj-$(CONFIG_MSM_ULTRASOUND) += ultrasound/
|
||||
obj-m += adsprpc.o
|
||||
|
|
|
@ -649,6 +649,16 @@ config MSM_ROTATOR_USE_IMEM
|
|||
block. Or some systems may want the iMem to be dedicated to a
|
||||
different function.
|
||||
|
||||
config MSM_ADSPRPC
|
||||
tristate "Qualcomm ADSP RPC driver"
|
||||
depends on MSM_AUDIO_QDSP6 || MSM_AUDIO_QDSP6V2
|
||||
default m
|
||||
help
|
||||
Provides a communication mechanism that allows for clients to
|
||||
make remote method invocations across processor boundary to
|
||||
applications DSP processor. Say M if you want to enable this
|
||||
module.
|
||||
|
||||
config MMC_GENERIC_CSDIO
|
||||
tristate "Generic sdio driver"
|
||||
default n
|
||||
|
|
|
@ -67,3 +67,4 @@ obj-$(CONFIG_TILE_SROM) += tile-srom.o
|
|||
obj-$(CONFIG_MSM_ROTATOR) += msm_rotator.o
|
||||
obj-$(CONFIG_MMC_GENERIC_CSDIO) += csdio.o
|
||||
obj-$(CONFIG_DIAG_CHAR) += diag/
|
||||
obj-$(CONFIG_MSM_ADSPRPC) += adsprpc.o
|
||||
|
|
Loading…
Reference in a new issue