1menu "Rpmsg drivers" 2 3# RPMSG always gets selected by whoever wants it 4config RPMSG 5 tristate 6 7config RPMSG_CHAR 8 tristate "RPMSG device interface" 9 depends on RPMSG 10 depends on NET 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 16config RPMSG_QCOM_SMD 17 tristate "Qualcomm Shared Memory Driver (SMD)" 18 depends on QCOM_SMEM 19 depends on QCOM_SMD=n 20 select RPMSG 21 help 22 Say y here to enable support for the Qualcomm Shared Memory Driver 23 providing communication channels to remote processors in Qualcomm 24 platforms. 25 26config RPMSG_VIRTIO 27 tristate 28 select RPMSG 29 select VIRTIO 30 select VIRTUALIZATION 31 32endmenu 33