- Mbox is a dedicate hardware of a tinysys consists of: 1) a share memory tightly coupled to the tinysys 2) several IRQs - MTK tinysys common IPI framework is for remote processors communication, mbox driver is called by rpmsg to do the physical control of the share memory and IRQs. - Support queue layer transferr by linux mailbox framework MTK-Commit-Id: e8c8b57bd4b43e51ffc94c62f20b675c02f96399 Change-Id: I8e00e9604e691ac27256d35cb7283ba2aa9a88c8 Signed-off-by: jiachiam.liu <jiachiam.liu@mediatek.com> CR-Id: ALPS04384652 Feature: TinySys
10 lines
417 B
Makefile
10 lines
417 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_RPMSG) += rpmsg_core.o
|
|
obj-$(CONFIG_RPMSG_CHAR) += rpmsg_char.o
|
|
obj-$(CONFIG_RPMSG_MTK) += mtk_rpmsg.o
|
|
obj-$(CONFIG_RPMSG_QCOM_GLINK_RPM) += qcom_glink_rpm.o
|
|
obj-$(CONFIG_RPMSG_QCOM_GLINK_NATIVE) += qcom_glink_native.o
|
|
obj-$(CONFIG_RPMSG_QCOM_GLINK_SMEM) += qcom_glink_smem.o
|
|
obj-$(CONFIG_RPMSG_QCOM_SMD) += qcom_smd.o
|
|
obj-$(CONFIG_RPMSG_VIRTIO) += virtio_rpmsg_bus.o
|