Suman Anna | 3e79bfd | 2018-05-31 12:10:59 -0500 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | |
Kees Cook | 860514e | 2012-10-02 11:18:50 -0700 | [diff] [blame] | 3 | menu "Rpmsg drivers" |
Ohad Ben-Cohen | f8289ed | 2011-12-14 13:03:55 +0200 | [diff] [blame] | 4 | |
Ohad Ben-Cohen | bcabbcc | 2011-10-20 21:10:55 +0200 | [diff] [blame] | 5 | # RPMSG always gets selected by whoever wants it |
| 6 | config RPMSG |
| 7 | tristate |
Bjorn Andersson | 026dad4 | 2016-09-01 15:27:59 -0700 | [diff] [blame] | 8 | |
Bjorn Andersson | c0cdc19 | 2017-01-11 06:35:12 -0800 | [diff] [blame] | 9 | config RPMSG_CHAR |
| 10 | tristate "RPMSG device interface" |
| 11 | depends on RPMSG |
Arnd Bergmann | b70ea16 | 2017-01-19 15:54:55 +0100 | [diff] [blame] | 12 | depends on NET |
Bjorn Andersson | c0cdc19 | 2017-01-11 06:35:12 -0800 | [diff] [blame] | 13 | 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 | |
Pi-Hsun Shih | 7017996 | 2019-11-12 19:03:26 +0800 | [diff] [blame] | 18 | config RPMSG_MTK_SCP |
| 19 | tristate "MediaTek SCP" |
| 20 | depends on MTK_SCP |
| 21 | select RPMSG |
| 22 | help |
| 23 | Say y here to enable support providing communication channels to |
| 24 | remote processors in MediaTek platforms. |
| 25 | This use IPI and IPC to communicate with remote processors. |
| 26 | |
Bjorn Andersson | 835764dd | 2017-08-24 12:51:26 +0530 | [diff] [blame] | 27 | config RPMSG_QCOM_GLINK_NATIVE |
| 28 | tristate |
| 29 | select RPMSG |
| 30 | |
Bjorn Andersson | b4f8e52 | 2017-05-27 16:23:35 -0700 | [diff] [blame] | 31 | config RPMSG_QCOM_GLINK_RPM |
| 32 | tristate "Qualcomm RPM Glink driver" |
Krzysztof Kozlowski | 8cf9b61 | 2019-11-20 21:39:44 +0800 | [diff] [blame] | 33 | select RPMSG_QCOM_GLINK_NATIVE |
Bjorn Andersson | b4f8e52 | 2017-05-27 16:23:35 -0700 | [diff] [blame] | 34 | depends on HAS_IOMEM |
| 35 | depends on MAILBOX |
| 36 | help |
| 37 | Say y here to enable support for the GLINK RPM communication driver, |
| 38 | which serves as a channel for communication with the RPM in GLINK |
| 39 | enabled systems. |
| 40 | |
Bjorn Andersson | caf989c | 2017-08-24 12:51:30 +0530 | [diff] [blame] | 41 | config RPMSG_QCOM_GLINK_SMEM |
| 42 | tristate "Qualcomm SMEM Glink driver" |
| 43 | select RPMSG_QCOM_GLINK_NATIVE |
| 44 | depends on MAILBOX |
| 45 | depends on QCOM_SMEM |
| 46 | help |
| 47 | Say y here to enable support for the GLINK SMEM communication driver, |
| 48 | which provides support for using the GLINK communication protocol |
| 49 | over SMEM. |
| 50 | |
Bjorn Andersson | 53e2822 | 2016-09-01 15:28:09 -0700 | [diff] [blame] | 51 | config RPMSG_QCOM_SMD |
| 52 | tristate "Qualcomm Shared Memory Driver (SMD)" |
Bjorn Andersson | ab460a2 | 2018-04-19 18:17:57 -0700 | [diff] [blame] | 53 | depends on MAILBOX |
Bjorn Andersson | 53e2822 | 2016-09-01 15:28:09 -0700 | [diff] [blame] | 54 | depends on QCOM_SMEM |
Bjorn Andersson | 53e2822 | 2016-09-01 15:28:09 -0700 | [diff] [blame] | 55 | select RPMSG |
| 56 | help |
| 57 | Say y here to enable support for the Qualcomm Shared Memory Driver |
| 58 | providing communication channels to remote processors in Qualcomm |
| 59 | platforms. |
| 60 | |
Bjorn Andersson | 026dad4 | 2016-09-01 15:27:59 -0700 | [diff] [blame] | 61 | config RPMSG_VIRTIO |
Anup Patel | 4d91d7b | 2017-10-05 22:13:20 +0530 | [diff] [blame] | 62 | tristate "Virtio RPMSG bus driver" |
| 63 | depends on HAS_DMA |
Bjorn Andersson | 026dad4 | 2016-09-01 15:27:59 -0700 | [diff] [blame] | 64 | select RPMSG |
Ohad Ben-Cohen | bcabbcc | 2011-10-20 21:10:55 +0200 | [diff] [blame] | 65 | select VIRTIO |
Ohad Ben-Cohen | f8289ed | 2011-12-14 13:03:55 +0200 | [diff] [blame] | 66 | |
| 67 | endmenu |