blob: 716e14a82f37acda2e786e1d0e201c58753bf36c [file] [log] [blame]
Pankaj Gupta0d2d3c22020-12-09 14:02:38 +05301#
Pankaj Gupta7834b462021-03-25 15:15:52 +05302# Copyright 2021 NXP
Pankaj Gupta0d2d3c22020-12-09 14:02:38 +05303#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7ifeq (${ADD_I2C},)
8
9ADD_I2C := 1
Pankaj Gupta7834b462021-03-25 15:15:52 +053010
11I2C_SOURCES += $(PLAT_DRIVERS_PATH)/i2c/i2c.c
Pankaj Gupta0d2d3c22020-12-09 14:02:38 +053012
Pankaj Gupta7834b462021-03-25 15:15:52 +053013PLAT_INCLUDES += -I$(PLAT_DRIVERS_INCLUDE_PATH)/i2c
Pankaj Gupta0d2d3c22020-12-09 14:02:38 +053014
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