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