mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-04 18:08:42 +00:00

NXP's i.MX8 SoCs have system controller (M4 core) which takes control of misc functions like temperature alarm, dma etc., other Cortex-A clusters can send out command via MU (Message Unit) to system controller for misc operation etc.. This patch adds misc IPC(inter-processor communication) support. Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
13 lines
448 B
Makefile
13 lines
448 B
Makefile
#
|
|
# Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
BL31_SOURCES += plat/imx/common/sci/ipc.c \
|
|
plat/imx/common/sci/imx8_mu.c \
|
|
plat/imx/common/sci/svc/pad/pad_rpc_clnt.c \
|
|
plat/imx/common/sci/svc/pm/pm_rpc_clnt.c \
|
|
plat/imx/common/sci/svc/rm/rm_rpc_clnt.c \
|
|
plat/imx/common/sci/svc/timer/timer_rpc_clnt.c \
|
|
plat/imx/common/sci/svc/misc/misc_rpc_clnt.c
|