Pankaj Gupta | 7d2f40f | 2020-12-09 14:02:39 +0530 | [diff] [blame] | 1 | # |
Pankaj Gupta | 7834b46 | 2021-03-25 15:15:52 +0530 | [diff] [blame] | 2 | # Copyright 2021 NXP |
Pankaj Gupta | 7d2f40f | 2020-12-09 14:02:39 +0530 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | ifeq (${ADD_SD_MMC},) |
| 8 | |
| 9 | ADD_SD_MMC := 1 |
| 10 | |
Pankaj Gupta | 7834b46 | 2021-03-25 15:15:52 +0530 | [diff] [blame] | 11 | SD_MMC_BOOT_SOURCES += ${PLAT_DRIVERS_PATH}/sd/sd_mmc.c \ |
Pankaj Gupta | 7d2f40f | 2020-12-09 14:02:39 +0530 | [diff] [blame] | 12 | drivers/io/io_block.c |
| 13 | |
Pankaj Gupta | 7834b46 | 2021-03-25 15:15:52 +0530 | [diff] [blame] | 14 | PLAT_INCLUDES += -I$(PLAT_DRIVERS_INCLUDE_PATH)/sd |
Pankaj Gupta | 7d2f40f | 2020-12-09 14:02:39 +0530 | [diff] [blame] | 15 | |
| 16 | ifeq (${BL_COMM_SD_MMC_NEEDED},yes) |
| 17 | BL_COMMON_SOURCES += ${SD_MMC_BOOT_SOURCES} |
| 18 | else |
| 19 | ifeq (${BL2_SD_MMC_NEEDED},yes) |
| 20 | BL2_SOURCES += ${SD_MMC_BOOT_SOURCES} |
| 21 | endif |
| 22 | ifeq (${BL3_SD_MMC_NEEDED},yes) |
| 23 | BL31_SOURCES += ${SD_MMC_BOOT_SOURCES} |
| 24 | endif |
| 25 | endif |
| 26 | endif |