mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-24 19:02:14 +01:00
This patch provides a driver for i.MX Messaging Unit (MU) using the
commom mailbox framework.
This is ported from Linux (v6.12.8) driver
drivers/mailbox/imx-mailbox.c. Its commit SHA is:
39d7d6177f0c ("mailbox: imx: use device name in interrupt name")
Signed-off-by: Viorel Suman <viorel.suman@nxp.com>
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Signed-off-by: Alice Guo <alice.guo@nxp.com>
Reviewed-by: Ye Li <ye.li@nxp.com>
15 lines
479 B
Makefile
15 lines
479 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (c) 2016, NVIDIA CORPORATION.
|
|
#
|
|
|
|
obj-$(CONFIG_$(XPL_)DM_MAILBOX) += mailbox-uclass.o
|
|
obj-$(CONFIG_APPLE_MBOX) += apple-mbox.o
|
|
obj-$(CONFIG_IMX_MU_MBOX) += imx-mailbox.o
|
|
obj-$(CONFIG_SANDBOX_MBOX) += sandbox-mbox.o
|
|
obj-$(CONFIG_SANDBOX_MBOX) += sandbox-mbox-test.o
|
|
obj-$(CONFIG_STM32_IPCC) += stm32-ipcc.o
|
|
obj-$(CONFIG_TEGRA_HSP) += tegra-hsp.o
|
|
obj-$(CONFIG_K3_SEC_PROXY) += k3-sec-proxy.o
|
|
obj-$(CONFIG_ZYNQMP_IPI) += zynqmp-ipi.o
|