Pankaj Gupta | 74f7b14 | 2020-12-09 14:02:38 +0530 | [diff] [blame] | 1 | # |
Pankaj Gupta | 7834b46 | 2021-03-25 15:15:52 +0530 | [diff] [blame] | 2 | # Copyright 2021 NXP |
Pankaj Gupta | 74f7b14 | 2020-12-09 14:02:38 +0530 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | ifeq (${ADD_DCFG},) |
| 8 | |
| 9 | ADD_DCFG := 1 |
| 10 | |
Pankaj Gupta | 7834b46 | 2021-03-25 15:15:52 +0530 | [diff] [blame] | 11 | PLAT_INCLUDES += -I$(PLAT_DRIVERS_INCLUDE_PATH)/dcfg |
Pankaj Gupta | 74f7b14 | 2020-12-09 14:02:38 +0530 | [diff] [blame] | 12 | |
Pankaj Gupta | 7834b46 | 2021-03-25 15:15:52 +0530 | [diff] [blame] | 13 | DCFG_SOURCES += $(PLAT_DRIVERS_PATH)/dcfg/dcfg.c |
Pankaj Gupta | 74f7b14 | 2020-12-09 14:02:38 +0530 | [diff] [blame] | 14 | |
| 15 | ifeq (${BL_COMM_DCFG_NEEDED},yes) |
| 16 | BL_COMMON_SOURCES += ${DCFG_SOURCES} |
| 17 | else |
| 18 | ifeq (${BL2_DCFG_NEEDED},yes) |
| 19 | BL2_SOURCES += ${DCFG_SOURCES} |
| 20 | endif |
| 21 | ifeq (${BL31_DCFG_NEEDED},yes) |
| 22 | BL31_SOURCES += ${DCFG_SOURCES} |
| 23 | endif |
| 24 | endif |
| 25 | |
| 26 | endif |