1#
2# Copyright 2021 NXP
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-----------------------------------------------------------------------------
7
8ifeq (${GPIO_ADDED},)
9
10GPIO_ADDED		:= 1
11
12PLAT_INCLUDES		+= -I$(PLAT_DRIVERS_INCLUDE_PATH)/gpio
13
14GPIO_SOURCES		:= $(PLAT_DRIVERS_PATH)/gpio/nxp_gpio.c
15
16ifeq (${BL_COMM_GPIO_NEEDED},yes)
17BL_COMMON_SOURCES	+= ${GPIO_SOURCES}
18else
19ifeq (${BL2_GPIO_NEEDED},yes)
20BL2_SOURCES		+= ${GPIO_SOURCES}
21endif
22ifeq (${BL31_GPIO_NEEDED},yes)
23BL31_SOURCES		+= ${GPIO_SOURCES}
24endif
25endif
26
27endif
28#------------------------------------------------
29