mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
5a6338cce9
This adds driver for the ARM MHUv2 (Message Handling Unit) mailbox controller. This is based on the accepted DT bindings of the controller and supports combination of both transport protocols, i.e. doorbell and data-transfer. Transmitting and receiving data through the mailbox framework is done through struct arm_mhuv2_mbox_msg. Based on the initial work done by Morten Borup Petersen from ARM. Co-developed-by: Tushar Khandelwal <tushar.khandelwal@arm.com> Signed-off-by: Tushar Khandelwal <tushar.khandelwal@arm.com> Tested-by: Usama Arif <usama.arif@arm.com> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Generic MAILBOX API
|
|
|
|
obj-$(CONFIG_MAILBOX) += mailbox.o
|
|
|
|
obj-$(CONFIG_MAILBOX_TEST) += mailbox-test.o
|
|
|
|
obj-$(CONFIG_ARM_MHU) += arm_mhu.o arm_mhu_db.o
|
|
|
|
obj-$(CONFIG_ARM_MHU_V2) += arm_mhuv2.o
|
|
|
|
obj-$(CONFIG_IMX_MBOX) += imx-mailbox.o
|
|
|
|
obj-$(CONFIG_ARMADA_37XX_RWTM_MBOX) += armada-37xx-rwtm-mailbox.o
|
|
|
|
obj-$(CONFIG_PLATFORM_MHU) += platform_mhu.o
|
|
|
|
obj-$(CONFIG_PL320_MBOX) += pl320-ipc.o
|
|
|
|
obj-$(CONFIG_OMAP2PLUS_MBOX) += omap-mailbox.o
|
|
|
|
obj-$(CONFIG_ROCKCHIP_MBOX) += rockchip-mailbox.o
|
|
|
|
obj-$(CONFIG_PCC) += pcc.o
|
|
|
|
obj-$(CONFIG_ALTERA_MBOX) += mailbox-altera.o
|
|
|
|
obj-$(CONFIG_BCM2835_MBOX) += bcm2835-mailbox.o
|
|
|
|
obj-$(CONFIG_STI_MBOX) += mailbox-sti.o
|
|
|
|
obj-$(CONFIG_TI_MESSAGE_MANAGER) += ti-msgmgr.o
|
|
|
|
obj-$(CONFIG_XGENE_SLIMPRO_MBOX) += mailbox-xgene-slimpro.o
|
|
|
|
obj-$(CONFIG_HI3660_MBOX) += hi3660-mailbox.o
|
|
|
|
obj-$(CONFIG_HI6220_MBOX) += hi6220-mailbox.o
|
|
|
|
obj-$(CONFIG_BCM_PDC_MBOX) += bcm-pdc-mailbox.o
|
|
|
|
obj-$(CONFIG_BCM_FLEXRM_MBOX) += bcm-flexrm-mailbox.o
|
|
|
|
obj-$(CONFIG_QCOM_APCS_IPC) += qcom-apcs-ipc-mailbox.o
|
|
|
|
obj-$(CONFIG_TEGRA_HSP_MBOX) += tegra-hsp.o
|
|
|
|
obj-$(CONFIG_STM32_IPCC) += stm32-ipcc.o
|
|
|
|
obj-$(CONFIG_MTK_CMDQ_MBOX) += mtk-cmdq-mailbox.o
|
|
|
|
obj-$(CONFIG_ZYNQMP_IPI_MBOX) += zynqmp-ipi-mailbox.o
|
|
|
|
obj-$(CONFIG_SUN6I_MSGBOX) += sun6i-msgbox.o
|
|
|
|
obj-$(CONFIG_SPRD_MBOX) += sprd-mailbox.o
|
|
|
|
obj-$(CONFIG_QCOM_IPCC) += qcom-ipcc.o
|