1# 2# Copyright 2021 NXP 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6 7ifeq (${ADD_I2C},) 8 9ADD_I2C := 1 10 11I2C_SOURCES += $(PLAT_DRIVERS_PATH)/i2c/i2c.c 12 13PLAT_INCLUDES += -I$(PLAT_DRIVERS_INCLUDE_PATH)/i2c 14 15ifeq (${BL_COMM_I2C_NEEDED},yes) 16BL_COMMON_SOURCES += ${I2C_SOURCES} 17else 18ifeq (${BL2_I2C_NEEDED},yes) 19BL2_SOURCES += ${I2C_SOURCES} 20endif 21ifeq (${BL31_I2C_NEEDED},yes) 22BL31_SOURCES += ${I2C_SOURCES} 23endif 24endif 25endif 26