1#
2# Copyright (c) 2022, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7$(warning "RSS driver is an experimental feature")
8
9RSS_COMMS_SOURCES	:=	$(addprefix drivers/arm/rss/,			\
10					rss_comms.c				\
11					rss_comms_protocol.c			\
12					rss_comms_protocol_embed.c		\
13					rss_comms_protocol_pointer_access.c	\
14				)
15
16RSS_COMMS_SOURCES	+=	$(addprefix drivers/arm/mhu/,			\
17					mhu_v2_x.c				\
18					mhu_wrapper_v2_x.c			\
19				)
20
21PLAT_INCLUDES		+=	-Idrivers/arm/rss		\
22				-Idrivers/arm/mhu
23