1# SPDX-License-Identifier: GPL-2.0+
2#
3# Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
4#
5# Authors:
6#   Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
7
8# build the generic FF-A methods
9obj-y += arm-ffa-uclass.o
10ifeq ($(CONFIG_SANDBOX),y)
11# build the FF-A sandbox emulator and driver
12obj-y += ffa-emul-uclass.o sandbox_ffa.o
13else
14# build the Arm64 FF-A driver
15obj-y += arm-ffa.o
16endif
17