blob: 0b4407abdf13867106b2039a9fe60e26cc6b50f0 [file] [log] [blame]
Suman Anna3e79bfd2018-05-31 12:10:59 -05001# SPDX-License-Identifier: GPL-2.0
2
Kees Cook860514e2012-10-02 11:18:50 -07003menu "Rpmsg drivers"
Ohad Ben-Cohenf8289ed2011-12-14 13:03:55 +02004
Ohad Ben-Cohenbcabbcc2011-10-20 21:10:55 +02005# RPMSG always gets selected by whoever wants it
6config RPMSG
7 tristate
Bjorn Andersson026dad42016-09-01 15:27:59 -07008
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -08009config RPMSG_CHAR
10 tristate "RPMSG device interface"
11 depends on RPMSG
Arnd Bergmannb70ea162017-01-19 15:54:55 +010012 depends on NET
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -080013 help
14 Say Y here to export rpmsg endpoints as device files, usually found
15 in /dev. They make it possible for user-space programs to send and
16 receive rpmsg packets.
17
Arnaud Pouliquen950a7382020-11-20 14:42:45 -070018config RPMSG_NS
19 tristate "RPMSG name service announcement"
20 depends on RPMSG
21 help
22 Say Y here to enable the support of the name service announcement
23 channel that probes the associated RPMsg device on remote endpoint
24 service announcement.
25
Pi-Hsun Shih70179962019-11-12 19:03:26 +080026config RPMSG_MTK_SCP
27 tristate "MediaTek SCP"
28 depends on MTK_SCP
29 select RPMSG
30 help
31 Say y here to enable support providing communication channels to
32 remote processors in MediaTek platforms.
33 This use IPI and IPC to communicate with remote processors.
34
Bjorn Andersson93bc3fe2020-04-22 17:37:35 -070035config RPMSG_QCOM_GLINK
Bjorn Andersson835764dd2017-08-24 12:51:26 +053036 tristate
37 select RPMSG
38
Bjorn Anderssonb4f8e522017-05-27 16:23:35 -070039config RPMSG_QCOM_GLINK_RPM
40 tristate "Qualcomm RPM Glink driver"
Bjorn Andersson93bc3fe2020-04-22 17:37:35 -070041 select RPMSG_QCOM_GLINK
Bjorn Anderssonb4f8e522017-05-27 16:23:35 -070042 depends on HAS_IOMEM
43 depends on MAILBOX
44 help
45 Say y here to enable support for the GLINK RPM communication driver,
46 which serves as a channel for communication with the RPM in GLINK
47 enabled systems.
48
Bjorn Anderssoncaf989c2017-08-24 12:51:30 +053049config RPMSG_QCOM_GLINK_SMEM
50 tristate "Qualcomm SMEM Glink driver"
Bjorn Andersson93bc3fe2020-04-22 17:37:35 -070051 select RPMSG_QCOM_GLINK
Bjorn Anderssoncaf989c2017-08-24 12:51:30 +053052 depends on MAILBOX
53 depends on QCOM_SMEM
54 help
55 Say y here to enable support for the GLINK SMEM communication driver,
56 which provides support for using the GLINK communication protocol
57 over SMEM.
58
Bjorn Andersson53e28222016-09-01 15:28:09 -070059config RPMSG_QCOM_SMD
60 tristate "Qualcomm Shared Memory Driver (SMD)"
Bjorn Anderssonab460a22018-04-19 18:17:57 -070061 depends on MAILBOX
Bjorn Andersson53e28222016-09-01 15:28:09 -070062 depends on QCOM_SMEM
Bjorn Andersson53e28222016-09-01 15:28:09 -070063 select RPMSG
64 help
65 Say y here to enable support for the Qualcomm Shared Memory Driver
66 providing communication channels to remote processors in Qualcomm
67 platforms.
68
Bjorn Andersson026dad42016-09-01 15:27:59 -070069config RPMSG_VIRTIO
Anup Patel4d91d7b2017-10-05 22:13:20 +053070 tristate "Virtio RPMSG bus driver"
71 depends on HAS_DMA
Bjorn Andersson026dad42016-09-01 15:27:59 -070072 select RPMSG
Arnaud Pouliquen950a7382020-11-20 14:42:45 -070073 select RPMSG_NS
Ohad Ben-Cohenbcabbcc2011-10-20 21:10:55 +020074 select VIRTIO
Ohad Ben-Cohenf8289ed2011-12-14 13:03:55 +020075
76endmenu