Kconfig (d8f797c60661a90ee26ca9330cf85ede9aa2ec17) | Kconfig (b4f8e52b89f69f5563ac4cb9ffdacc4418917af1) |
---|---|
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 | 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_GLINK_RPM 17 tristate "Qualcomm RPM Glink driver" 18 select RPMSG 19 depends on HAS_IOMEM 20 depends on MAILBOX 21 help 22 Say y here to enable support for the GLINK RPM communication driver, 23 which serves as a channel for communication with the RPM in GLINK 24 enabled systems. 25 |
|
16config RPMSG_QCOM_SMD 17 tristate "Qualcomm Shared Memory Driver (SMD)" 18 depends on QCOM_SMEM 19 select RPMSG 20 help 21 Say y here to enable support for the Qualcomm Shared Memory Driver 22 providing communication channels to remote processors in Qualcomm 23 platforms. 24 25config RPMSG_VIRTIO 26 tristate 27 select RPMSG 28 select VIRTIO 29 select VIRTUALIZATION 30 31endmenu | 26config RPMSG_QCOM_SMD 27 tristate "Qualcomm Shared Memory Driver (SMD)" 28 depends on QCOM_SMEM 29 select RPMSG 30 help 31 Say y here to enable support for the Qualcomm Shared Memory Driver 32 providing communication channels to remote processors in Qualcomm 33 platforms. 34 35config RPMSG_VIRTIO 36 tristate 37 select RPMSG 38 select VIRTIO 39 select VIRTUALIZATION 40 41endmenu |