Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0

menu "Rpmsg drivers"

# CONFIG_RPMSG always gets selected by whoever wants it
config CONFIG_RPMSG
	tristate

config CONFIG_RPMSG_CHAR
	tristate "RPMSG device interface"
	depends on CONFIG_RPMSG
	depends on CONFIG_NET
	help
	  Say Y here to export rpmsg endpoints as device files, usually found
	  in /dev. They make it possible for user-space programs to send and
	  receive rpmsg packets.

config CONFIG_RPMSG_QCOM_GLINK_NATIVE
	tristate
	select CONFIG_RPMSG

config CONFIG_RPMSG_QCOM_GLINK_RPM
	tristate "Qualcomm RPM Glink driver"
        select CONFIG_RPMSG_QCOM_GLINK_NATIVE
	depends on CONFIG_HAS_IOMEM
	depends on CONFIG_MAILBOX
	help
	  Say y here to enable support for the GLINK RPM communication driver,
	  which serves as a channel for communication with the RPM in GLINK
	  enabled systems.

config CONFIG_RPMSG_QCOM_GLINK_SMEM
	tristate "Qualcomm SMEM Glink driver"
	select CONFIG_RPMSG_QCOM_GLINK_NATIVE
	depends on CONFIG_MAILBOX
	depends on CONFIG_QCOM_SMEM
	help
	  Say y here to enable support for the GLINK SMEM communication driver,
	  which provides support for using the GLINK communication protocol
	  over SMEM.

config CONFIG_RPMSG_QCOM_SMD
	tristate "Qualcomm Shared Memory Driver (SMD)"
	depends on CONFIG_MAILBOX
	depends on CONFIG_QCOM_SMEM
	select CONFIG_RPMSG
	help
	  Say y here to enable support for the Qualcomm Shared Memory Driver
	  providing communication channels to remote processors in Qualcomm
	  platforms.

config CONFIG_RPMSG_VIRTIO
	tristate "Virtio RPMSG bus driver"
	depends on CONFIG_HAS_DMA
	select CONFIG_RPMSG
	select CONFIG_VIRTIO

endmenu