]>
Commit | Line | Data |
---|---|---|
860514e0 | 1 | menu "Rpmsg drivers" |
f8289eda | 2 | |
bcabbcca OBC |
3 | # RPMSG always gets selected by whoever wants it |
4 | config RPMSG | |
5 | tristate | |
026dad47 | 6 | |
c0cdc19f BA |
7 | config RPMSG_CHAR |
8 | tristate "RPMSG device interface" | |
9 | depends on RPMSG | |
b70ea16d | 10 | depends on NET |
c0cdc19f BA |
11 | help |
12 | Say Y here to export rpmsg endpoints as device files, usually found | |
13 | in /dev. They make it possible for user-space programs to send and | |
14 | receive rpmsg packets. | |
15 | ||
835764dd BA |
16 | config RPMSG_QCOM_GLINK_NATIVE |
17 | tristate | |
18 | select RPMSG | |
19 | ||
b4f8e52b BA |
20 | config RPMSG_QCOM_GLINK_RPM |
21 | tristate "Qualcomm RPM Glink driver" | |
835764dd | 22 | select RPMSG_QCOM_GLINK_NATIVE |
b4f8e52b BA |
23 | depends on HAS_IOMEM |
24 | depends on MAILBOX | |
25 | help | |
26 | Say y here to enable support for the GLINK RPM communication driver, | |
27 | which serves as a channel for communication with the RPM in GLINK | |
28 | enabled systems. | |
29 | ||
caf989c3 BA |
30 | config RPMSG_QCOM_GLINK_SMEM |
31 | tristate "Qualcomm SMEM Glink driver" | |
32 | select RPMSG_QCOM_GLINK_NATIVE | |
33 | depends on MAILBOX | |
34 | depends on QCOM_SMEM | |
35 | help | |
36 | Say y here to enable support for the GLINK SMEM communication driver, | |
37 | which provides support for using the GLINK communication protocol | |
38 | over SMEM. | |
39 | ||
53e2822e BA |
40 | config RPMSG_QCOM_SMD |
41 | tristate "Qualcomm Shared Memory Driver (SMD)" | |
42 | depends on QCOM_SMEM | |
53e2822e BA |
43 | select RPMSG |
44 | help | |
45 | Say y here to enable support for the Qualcomm Shared Memory Driver | |
46 | providing communication channels to remote processors in Qualcomm | |
47 | platforms. | |
48 | ||
026dad47 | 49 | config RPMSG_VIRTIO |
4d91d7b0 AP |
50 | tristate "Virtio RPMSG bus driver" |
51 | depends on HAS_DMA | |
026dad47 | 52 | select RPMSG |
bcabbcca | 53 | select VIRTIO |
f8289eda OBC |
54 | |
55 | endmenu |