Jiafei Pan | 7a810bf | 2021-09-26 11:52:00 +0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright 2018-2021 NXP |
| 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | |
| 7 | # board-specific build parameters |
| 8 | |
| 9 | BOOT_MODE ?= nor |
| 10 | BOARD := ls1043ardb |
| 11 | POVDD_ENABLE := no |
| 12 | |
| 13 | # DDR Compilation Configs |
| 14 | CONFIG_DDR_NODIMM := 1 |
| 15 | NUM_OF_DDRC := 1 |
| 16 | DDRC_NUM_DIMM := 0 |
| 17 | DDRC_NUM_CS := 4 |
| 18 | DDR_ECC_EN := no |
| 19 | CONFIG_STATIC_DDR := 0 |
| 20 | |
| 21 | # On-Board Flash Details |
| 22 | # 128MB IFC NOR Flash |
| 23 | NOR_FLASH_SZ := 0x8000000 |
| 24 | |
| 25 | # Platform specific features. |
| 26 | WARM_BOOT := no |
| 27 | |
| 28 | # Adding Platform files build files |
| 29 | BL2_SOURCES += ${BOARD_PATH}/ddr_init.c\ |
| 30 | ${BOARD_PATH}/platform.c |
| 31 | |
| 32 | SUPPORTED_BOOT_MODE := nor \ |
| 33 | sd \ |
| 34 | nand |
| 35 | |
| 36 | # Adding platform board build info |
| 37 | include plat/nxp/common/plat_make_helper/plat_common_def.mk |
| 38 | |
| 39 | # Adding SoC build info |
| 40 | include plat/nxp/soc-ls1043a/soc.mk |